]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blob - gdb/gdbserver/tracepoint.c
Replace some xmalloc-family functions with XNEW-family ones
[thirdparty/binutils-gdb.git] / gdb / gdbserver / tracepoint.c
1 /* Tracepoint code for remote server for GDB.
2 Copyright (C) 2009-2015 Free Software Foundation, Inc.
3
4 This file is part of GDB.
5
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 3 of the License, or
9 (at your option) any later version.
10
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
15
16 You should have received a copy of the GNU General Public License
17 along with this program. If not, see <http://www.gnu.org/licenses/>. */
18
19 #include "server.h"
20 #include "tracepoint.h"
21 #include "gdbthread.h"
22 #include "agent.h"
23 #include "rsp-low.h"
24
25 #include <ctype.h>
26 #include <fcntl.h>
27 #include <unistd.h>
28 #include "gdb_sys_time.h"
29 #include <inttypes.h>
30 #include "ax.h"
31 #include "tdesc.h"
32
33 #define DEFAULT_TRACE_BUFFER_SIZE 5242880 /* 5*1024*1024 */
34
35 /* This file is built for both GDBserver, and the in-process
36 agent (IPA), a shared library that includes a tracing agent that is
37 loaded by the inferior to support fast tracepoints. Fast
38 tracepoints (or more accurately, jump based tracepoints) are
39 implemented by patching the tracepoint location with a jump into a
40 small trampoline function whose job is to save the register state,
41 call the in-process tracing agent, and then execute the original
42 instruction that was under the tracepoint jump (possibly adjusted,
43 if PC-relative, or some such).
44
45 The current synchronization design is pull based. That means,
46 GDBserver does most of the work, by peeking/poking at the inferior
47 agent's memory directly for downloading tracepoint and associated
48 objects, and for uploading trace frames. Whenever the IPA needs
49 something from GDBserver (trace buffer is full, tracing stopped for
50 some reason, etc.) the IPA calls a corresponding hook function
51 where GDBserver has placed a breakpoint.
52
53 Each of the agents has its own trace buffer. When browsing the
54 trace frames built from slow and fast tracepoints from GDB (tfind
55 mode), there's no guarantee the user is seeing the trace frames in
56 strict chronological creation order, although, GDBserver tries to
57 keep the order relatively reasonable, by syncing the trace buffers
58 at appropriate times.
59
60 */
61
62 #ifdef IN_PROCESS_AGENT
63
64 static void trace_vdebug (const char *, ...) ATTRIBUTE_PRINTF (1, 2);
65
66 static void
67 trace_vdebug (const char *fmt, ...)
68 {
69 char buf[1024];
70 va_list ap;
71
72 va_start (ap, fmt);
73 vsprintf (buf, fmt, ap);
74 fprintf (stderr, PROG "/tracepoint: %s\n", buf);
75 va_end (ap);
76 }
77
78 #define trace_debug_1(level, fmt, args...) \
79 do { \
80 if (level <= debug_threads) \
81 trace_vdebug ((fmt), ##args); \
82 } while (0)
83
84 #else
85
86 #define trace_debug_1(level, fmt, args...) \
87 do { \
88 if (level <= debug_threads) \
89 { \
90 debug_printf ((fmt), ##args); \
91 debug_printf ("\n"); \
92 } \
93 } while (0)
94
95 #endif
96
97 #define trace_debug(FMT, args...) \
98 trace_debug_1 (1, FMT, ##args)
99
100 /* Prefix exported symbols, for good citizenship. All the symbols
101 that need exporting are defined in this module. Note that all
102 these symbols must be tagged with IP_AGENT_EXPORT_*. */
103 #ifdef IN_PROCESS_AGENT
104 # define gdb_tp_heap_buffer IPA_SYM_EXPORTED_NAME (gdb_tp_heap_buffer)
105 # define gdb_jump_pad_buffer IPA_SYM_EXPORTED_NAME (gdb_jump_pad_buffer)
106 # define gdb_jump_pad_buffer_end IPA_SYM_EXPORTED_NAME (gdb_jump_pad_buffer_end)
107 # define gdb_trampoline_buffer IPA_SYM_EXPORTED_NAME (gdb_trampoline_buffer)
108 # define gdb_trampoline_buffer_end IPA_SYM_EXPORTED_NAME (gdb_trampoline_buffer_end)
109 # define gdb_trampoline_buffer_error IPA_SYM_EXPORTED_NAME (gdb_trampoline_buffer_error)
110 # define collecting IPA_SYM_EXPORTED_NAME (collecting)
111 # define gdb_collect IPA_SYM_EXPORTED_NAME (gdb_collect)
112 # define stop_tracing IPA_SYM_EXPORTED_NAME (stop_tracing)
113 # define flush_trace_buffer IPA_SYM_EXPORTED_NAME (flush_trace_buffer)
114 # define about_to_request_buffer_space IPA_SYM_EXPORTED_NAME (about_to_request_buffer_space)
115 # define trace_buffer_is_full IPA_SYM_EXPORTED_NAME (trace_buffer_is_full)
116 # define stopping_tracepoint IPA_SYM_EXPORTED_NAME (stopping_tracepoint)
117 # define expr_eval_result IPA_SYM_EXPORTED_NAME (expr_eval_result)
118 # define error_tracepoint IPA_SYM_EXPORTED_NAME (error_tracepoint)
119 # define tracepoints IPA_SYM_EXPORTED_NAME (tracepoints)
120 # define tracing IPA_SYM_EXPORTED_NAME (tracing)
121 # define trace_buffer_ctrl IPA_SYM_EXPORTED_NAME (trace_buffer_ctrl)
122 # define trace_buffer_ctrl_curr IPA_SYM_EXPORTED_NAME (trace_buffer_ctrl_curr)
123 # define trace_buffer_lo IPA_SYM_EXPORTED_NAME (trace_buffer_lo)
124 # define trace_buffer_hi IPA_SYM_EXPORTED_NAME (trace_buffer_hi)
125 # define traceframe_read_count IPA_SYM_EXPORTED_NAME (traceframe_read_count)
126 # define traceframe_write_count IPA_SYM_EXPORTED_NAME (traceframe_write_count)
127 # define traceframes_created IPA_SYM_EXPORTED_NAME (traceframes_created)
128 # define trace_state_variables IPA_SYM_EXPORTED_NAME (trace_state_variables)
129 # define get_raw_reg IPA_SYM_EXPORTED_NAME (get_raw_reg)
130 # define get_trace_state_variable_value \
131 IPA_SYM_EXPORTED_NAME (get_trace_state_variable_value)
132 # define set_trace_state_variable_value \
133 IPA_SYM_EXPORTED_NAME (set_trace_state_variable_value)
134 # define ust_loaded IPA_SYM_EXPORTED_NAME (ust_loaded)
135 # define helper_thread_id IPA_SYM_EXPORTED_NAME (helper_thread_id)
136 # define cmd_buf IPA_SYM_EXPORTED_NAME (cmd_buf)
137 #endif
138
139 #ifndef IN_PROCESS_AGENT
140
141 /* Addresses of in-process agent's symbols GDBserver cares about. */
142
143 struct ipa_sym_addresses
144 {
145 CORE_ADDR addr_gdb_tp_heap_buffer;
146 CORE_ADDR addr_gdb_jump_pad_buffer;
147 CORE_ADDR addr_gdb_jump_pad_buffer_end;
148 CORE_ADDR addr_gdb_trampoline_buffer;
149 CORE_ADDR addr_gdb_trampoline_buffer_end;
150 CORE_ADDR addr_gdb_trampoline_buffer_error;
151 CORE_ADDR addr_collecting;
152 CORE_ADDR addr_gdb_collect;
153 CORE_ADDR addr_stop_tracing;
154 CORE_ADDR addr_flush_trace_buffer;
155 CORE_ADDR addr_about_to_request_buffer_space;
156 CORE_ADDR addr_trace_buffer_is_full;
157 CORE_ADDR addr_stopping_tracepoint;
158 CORE_ADDR addr_expr_eval_result;
159 CORE_ADDR addr_error_tracepoint;
160 CORE_ADDR addr_tracepoints;
161 CORE_ADDR addr_tracing;
162 CORE_ADDR addr_trace_buffer_ctrl;
163 CORE_ADDR addr_trace_buffer_ctrl_curr;
164 CORE_ADDR addr_trace_buffer_lo;
165 CORE_ADDR addr_trace_buffer_hi;
166 CORE_ADDR addr_traceframe_read_count;
167 CORE_ADDR addr_traceframe_write_count;
168 CORE_ADDR addr_traceframes_created;
169 CORE_ADDR addr_trace_state_variables;
170 CORE_ADDR addr_get_raw_reg;
171 CORE_ADDR addr_get_trace_state_variable_value;
172 CORE_ADDR addr_set_trace_state_variable_value;
173 CORE_ADDR addr_ust_loaded;
174 };
175
176 static struct
177 {
178 const char *name;
179 int offset;
180 } symbol_list[] = {
181 IPA_SYM(gdb_tp_heap_buffer),
182 IPA_SYM(gdb_jump_pad_buffer),
183 IPA_SYM(gdb_jump_pad_buffer_end),
184 IPA_SYM(gdb_trampoline_buffer),
185 IPA_SYM(gdb_trampoline_buffer_end),
186 IPA_SYM(gdb_trampoline_buffer_error),
187 IPA_SYM(collecting),
188 IPA_SYM(gdb_collect),
189 IPA_SYM(stop_tracing),
190 IPA_SYM(flush_trace_buffer),
191 IPA_SYM(about_to_request_buffer_space),
192 IPA_SYM(trace_buffer_is_full),
193 IPA_SYM(stopping_tracepoint),
194 IPA_SYM(expr_eval_result),
195 IPA_SYM(error_tracepoint),
196 IPA_SYM(tracepoints),
197 IPA_SYM(tracing),
198 IPA_SYM(trace_buffer_ctrl),
199 IPA_SYM(trace_buffer_ctrl_curr),
200 IPA_SYM(trace_buffer_lo),
201 IPA_SYM(trace_buffer_hi),
202 IPA_SYM(traceframe_read_count),
203 IPA_SYM(traceframe_write_count),
204 IPA_SYM(traceframes_created),
205 IPA_SYM(trace_state_variables),
206 IPA_SYM(get_raw_reg),
207 IPA_SYM(get_trace_state_variable_value),
208 IPA_SYM(set_trace_state_variable_value),
209 IPA_SYM(ust_loaded),
210 };
211
212 static struct ipa_sym_addresses ipa_sym_addrs;
213
214 static int read_inferior_integer (CORE_ADDR symaddr, int *val);
215
216 /* Returns true if both the in-process agent library and the static
217 tracepoints libraries are loaded in the inferior, and agent has
218 capability on static tracepoints. */
219
220 static int
221 in_process_agent_supports_ust (void)
222 {
223 int loaded = 0;
224
225 if (!agent_loaded_p ())
226 {
227 warning ("In-process agent not loaded");
228 return 0;
229 }
230
231 if (agent_capability_check (AGENT_CAPA_STATIC_TRACE))
232 {
233 /* Agent understands static tracepoint, then check whether UST is in
234 fact loaded in the inferior. */
235 if (read_inferior_integer (ipa_sym_addrs.addr_ust_loaded, &loaded))
236 {
237 warning ("Error reading ust_loaded in lib");
238 return 0;
239 }
240
241 return loaded;
242 }
243 else
244 return 0;
245 }
246
247 static void
248 write_e_ipa_not_loaded (char *buffer)
249 {
250 sprintf (buffer,
251 "E.In-process agent library not loaded in process. "
252 "Fast and static tracepoints unavailable.");
253 }
254
255 /* Write an error to BUFFER indicating that UST isn't loaded in the
256 inferior. */
257
258 static void
259 write_e_ust_not_loaded (char *buffer)
260 {
261 #ifdef HAVE_UST
262 sprintf (buffer,
263 "E.UST library not loaded in process. "
264 "Static tracepoints unavailable.");
265 #else
266 sprintf (buffer, "E.GDBserver was built without static tracepoints support");
267 #endif
268 }
269
270 /* If the in-process agent library isn't loaded in the inferior, write
271 an error to BUFFER, and return 1. Otherwise, return 0. */
272
273 static int
274 maybe_write_ipa_not_loaded (char *buffer)
275 {
276 if (!agent_loaded_p ())
277 {
278 write_e_ipa_not_loaded (buffer);
279 return 1;
280 }
281 return 0;
282 }
283
284 /* If the in-process agent library and the ust (static tracepoints)
285 library aren't loaded in the inferior, write an error to BUFFER,
286 and return 1. Otherwise, return 0. */
287
288 static int
289 maybe_write_ipa_ust_not_loaded (char *buffer)
290 {
291 if (!agent_loaded_p ())
292 {
293 write_e_ipa_not_loaded (buffer);
294 return 1;
295 }
296 else if (!in_process_agent_supports_ust ())
297 {
298 write_e_ust_not_loaded (buffer);
299 return 1;
300 }
301 return 0;
302 }
303
304 /* Cache all future symbols that the tracepoints module might request.
305 We can not request symbols at arbitrary states in the remote
306 protocol, only when the client tells us that new symbols are
307 available. So when we load the in-process library, make sure to
308 check the entire list. */
309
310 void
311 tracepoint_look_up_symbols (void)
312 {
313 int i;
314
315 if (agent_loaded_p ())
316 return;
317
318 for (i = 0; i < sizeof (symbol_list) / sizeof (symbol_list[0]); i++)
319 {
320 CORE_ADDR *addrp =
321 (CORE_ADDR *) ((char *) &ipa_sym_addrs + symbol_list[i].offset);
322
323 if (look_up_one_symbol (symbol_list[i].name, addrp, 1) == 0)
324 {
325 if (debug_threads)
326 debug_printf ("symbol `%s' not found\n", symbol_list[i].name);
327 return;
328 }
329 }
330
331 agent_look_up_symbols (NULL);
332 }
333
334 #endif
335
336 /* GDBserver places a breakpoint on the IPA's version (which is a nop)
337 of the "stop_tracing" function. When this breakpoint is hit,
338 tracing stopped in the IPA for some reason. E.g., due to
339 tracepoint reaching the pass count, hitting conditional expression
340 evaluation error, etc.
341
342 The IPA's trace buffer is never in circular tracing mode: instead,
343 GDBserver's is, and whenever the in-process buffer fills, it calls
344 "flush_trace_buffer", which triggers an internal breakpoint.
345 GDBserver reacts to this breakpoint by pulling the meanwhile
346 collected data. Old frames discarding is always handled on the
347 GDBserver side. */
348
349 #ifdef IN_PROCESS_AGENT
350 int
351 read_inferior_memory (CORE_ADDR memaddr, unsigned char *myaddr, int len)
352 {
353 memcpy (myaddr, (void *) (uintptr_t) memaddr, len);
354 return 0;
355 }
356
357 /* Call this in the functions where GDBserver places a breakpoint, so
358 that the compiler doesn't try to be clever and skip calling the
359 function at all. This is necessary, even if we tell the compiler
360 to not inline said functions. */
361
362 #if defined(__GNUC__)
363 # define UNKNOWN_SIDE_EFFECTS() asm ("")
364 #else
365 # define UNKNOWN_SIDE_EFFECTS() do {} while (0)
366 #endif
367
368 IP_AGENT_EXPORT_FUNC void
369 stop_tracing (void)
370 {
371 /* GDBserver places breakpoint here. */
372 UNKNOWN_SIDE_EFFECTS();
373 }
374
375 IP_AGENT_EXPORT_FUNC void
376 flush_trace_buffer (void)
377 {
378 /* GDBserver places breakpoint here. */
379 UNKNOWN_SIDE_EFFECTS();
380 }
381
382 #endif
383
384 #ifndef IN_PROCESS_AGENT
385 static int
386 tracepoint_handler (CORE_ADDR address)
387 {
388 trace_debug ("tracepoint_handler: tracepoint at 0x%s hit",
389 paddress (address));
390 return 0;
391 }
392
393 /* Breakpoint at "stop_tracing" in the inferior lib. */
394 struct breakpoint *stop_tracing_bkpt;
395 static int stop_tracing_handler (CORE_ADDR);
396
397 /* Breakpoint at "flush_trace_buffer" in the inferior lib. */
398 struct breakpoint *flush_trace_buffer_bkpt;
399 static int flush_trace_buffer_handler (CORE_ADDR);
400
401 static void download_trace_state_variables (void);
402 static void upload_fast_traceframes (void);
403
404 static int run_inferior_command (char *cmd, int len);
405
406 static int
407 read_inferior_integer (CORE_ADDR symaddr, int *val)
408 {
409 return read_inferior_memory (symaddr, (unsigned char *) val,
410 sizeof (*val));
411 }
412
413 struct tracepoint;
414 static int tracepoint_send_agent (struct tracepoint *tpoint);
415
416 static int
417 read_inferior_uinteger (CORE_ADDR symaddr, unsigned int *val)
418 {
419 return read_inferior_memory (symaddr, (unsigned char *) val,
420 sizeof (*val));
421 }
422
423 static int
424 read_inferior_data_pointer (CORE_ADDR symaddr, CORE_ADDR *val)
425 {
426 void *pval = (void *) (uintptr_t) val;
427 int ret;
428
429 ret = read_inferior_memory (symaddr, (unsigned char *) &pval, sizeof (pval));
430 *val = (uintptr_t) pval;
431 return ret;
432 }
433
434 static int
435 write_inferior_data_pointer (CORE_ADDR symaddr, CORE_ADDR val)
436 {
437 void *pval = (void *) (uintptr_t) val;
438 return write_inferior_memory (symaddr,
439 (unsigned char *) &pval, sizeof (pval));
440 }
441
442 static int
443 write_inferior_integer (CORE_ADDR symaddr, int val)
444 {
445 return write_inferior_memory (symaddr, (unsigned char *) &val, sizeof (val));
446 }
447
448 static int
449 write_inferior_uinteger (CORE_ADDR symaddr, unsigned int val)
450 {
451 return write_inferior_memory (symaddr, (unsigned char *) &val, sizeof (val));
452 }
453
454 static CORE_ADDR target_malloc (ULONGEST size);
455 static int write_inferior_data_ptr (CORE_ADDR where, CORE_ADDR ptr);
456
457 #define COPY_FIELD_TO_BUF(BUF, OBJ, FIELD) \
458 do { \
459 memcpy (BUF, &(OBJ)->FIELD, sizeof ((OBJ)->FIELD)); \
460 BUF += sizeof ((OBJ)->FIELD); \
461 } while (0)
462
463 #endif
464
465 /* Operations on various types of tracepoint actions. */
466
467 struct tracepoint_action;
468
469 struct tracepoint_action_ops
470 {
471 /* Download tracepoint action ACTION to IPA. Return the address of action
472 in IPA/inferior. */
473 CORE_ADDR (*download) (const struct tracepoint_action *action);
474
475 /* Send ACTION to agent via command buffer started from BUFFER. Return
476 updated head of command buffer. */
477 char* (*send) (char *buffer, const struct tracepoint_action *action);
478 };
479
480 /* Base action. Concrete actions inherit this. */
481
482 struct tracepoint_action
483 {
484 #ifndef IN_PROCESS_AGENT
485 const struct tracepoint_action_ops *ops;
486 #endif
487 char type;
488 };
489
490 /* An 'M' (collect memory) action. */
491 struct collect_memory_action
492 {
493 struct tracepoint_action base;
494
495 ULONGEST addr;
496 ULONGEST len;
497 int32_t basereg;
498 };
499
500 /* An 'R' (collect registers) action. */
501
502 struct collect_registers_action
503 {
504 struct tracepoint_action base;
505 };
506
507 /* An 'X' (evaluate expression) action. */
508
509 struct eval_expr_action
510 {
511 struct tracepoint_action base;
512
513 struct agent_expr *expr;
514 };
515
516 /* An 'L' (collect static trace data) action. */
517 struct collect_static_trace_data_action
518 {
519 struct tracepoint_action base;
520 };
521
522 #ifndef IN_PROCESS_AGENT
523 static CORE_ADDR
524 m_tracepoint_action_download (const struct tracepoint_action *action)
525 {
526 int size_in_ipa = (sizeof (struct collect_memory_action)
527 - offsetof (struct tracepoint_action, type));
528 CORE_ADDR ipa_action = target_malloc (size_in_ipa);
529
530 write_inferior_memory (ipa_action, (unsigned char *) &action->type,
531 size_in_ipa);
532
533 return ipa_action;
534 }
535 static char *
536 m_tracepoint_action_send (char *buffer, const struct tracepoint_action *action)
537 {
538 struct collect_memory_action *maction
539 = (struct collect_memory_action *) action;
540
541 COPY_FIELD_TO_BUF (buffer, maction, addr);
542 COPY_FIELD_TO_BUF (buffer, maction, len);
543 COPY_FIELD_TO_BUF (buffer, maction, basereg);
544
545 return buffer;
546 }
547
548 static const struct tracepoint_action_ops m_tracepoint_action_ops =
549 {
550 m_tracepoint_action_download,
551 m_tracepoint_action_send,
552 };
553
554 static CORE_ADDR
555 r_tracepoint_action_download (const struct tracepoint_action *action)
556 {
557 int size_in_ipa = (sizeof (struct collect_registers_action)
558 - offsetof (struct tracepoint_action, type));
559 CORE_ADDR ipa_action = target_malloc (size_in_ipa);
560
561 write_inferior_memory (ipa_action, (unsigned char *) &action->type,
562 size_in_ipa);
563
564 return ipa_action;
565 }
566
567 static char *
568 r_tracepoint_action_send (char *buffer, const struct tracepoint_action *action)
569 {
570 return buffer;
571 }
572
573 static const struct tracepoint_action_ops r_tracepoint_action_ops =
574 {
575 r_tracepoint_action_download,
576 r_tracepoint_action_send,
577 };
578
579 static CORE_ADDR download_agent_expr (struct agent_expr *expr);
580
581 static CORE_ADDR
582 x_tracepoint_action_download (const struct tracepoint_action *action)
583 {
584 int size_in_ipa = (sizeof (struct eval_expr_action)
585 - offsetof (struct tracepoint_action, type));
586 CORE_ADDR ipa_action = target_malloc (size_in_ipa);
587 CORE_ADDR expr;
588
589 write_inferior_memory (ipa_action, (unsigned char *) &action->type,
590 size_in_ipa);
591 expr = download_agent_expr (((struct eval_expr_action *)action)->expr);
592 write_inferior_data_ptr (ipa_action + offsetof (struct eval_expr_action, expr)
593 - offsetof (struct tracepoint_action, type),
594 expr);
595
596 return ipa_action;
597 }
598
599 /* Copy agent expression AEXPR to buffer pointed by P. If AEXPR is NULL,
600 copy 0 to P. Return updated header of buffer. */
601
602 static char *
603 agent_expr_send (char *p, const struct agent_expr *aexpr)
604 {
605 /* Copy the length of condition first, and then copy its
606 content. */
607 if (aexpr == NULL)
608 {
609 memset (p, 0, 4);
610 p += 4;
611 }
612 else
613 {
614 memcpy (p, &aexpr->length, 4);
615 p +=4;
616
617 memcpy (p, aexpr->bytes, aexpr->length);
618 p += aexpr->length;
619 }
620 return p;
621 }
622
623 static char *
624 x_tracepoint_action_send ( char *buffer, const struct tracepoint_action *action)
625 {
626 struct eval_expr_action *eaction = (struct eval_expr_action *) action;
627
628 return agent_expr_send (buffer, eaction->expr);
629 }
630
631 static const struct tracepoint_action_ops x_tracepoint_action_ops =
632 {
633 x_tracepoint_action_download,
634 x_tracepoint_action_send,
635 };
636
637 static CORE_ADDR
638 l_tracepoint_action_download (const struct tracepoint_action *action)
639 {
640 int size_in_ipa = (sizeof (struct collect_static_trace_data_action)
641 - offsetof (struct tracepoint_action, type));
642 CORE_ADDR ipa_action = target_malloc (size_in_ipa);
643
644 write_inferior_memory (ipa_action, (unsigned char *) &action->type,
645 size_in_ipa);
646
647 return ipa_action;
648 }
649
650 static char *
651 l_tracepoint_action_send (char *buffer, const struct tracepoint_action *action)
652 {
653 return buffer;
654 }
655
656 static const struct tracepoint_action_ops l_tracepoint_action_ops =
657 {
658 l_tracepoint_action_download,
659 l_tracepoint_action_send,
660 };
661 #endif
662
663 /* This structure describes a piece of the source-level definition of
664 the tracepoint. The contents are not interpreted by the target,
665 but preserved verbatim for uploading upon reconnection. */
666
667 struct source_string
668 {
669 /* The type of string, such as "cond" for a conditional. */
670 char *type;
671
672 /* The source-level string itself. For the sake of target
673 debugging, we store it in plaintext, even though it is always
674 transmitted in hex. */
675 char *str;
676
677 /* Link to the next one in the list. We link them in the order
678 received, in case some make up an ordered list of commands or
679 some such. */
680 struct source_string *next;
681 };
682
683 enum tracepoint_type
684 {
685 /* Trap based tracepoint. */
686 trap_tracepoint,
687
688 /* A fast tracepoint implemented with a jump instead of a trap. */
689 fast_tracepoint,
690
691 /* A static tracepoint, implemented by a program call into a tracing
692 library. */
693 static_tracepoint
694 };
695
696 struct tracepoint_hit_ctx;
697
698 typedef enum eval_result_type (*condfn) (struct tracepoint_hit_ctx *,
699 ULONGEST *);
700
701 /* The definition of a tracepoint. */
702
703 /* Tracepoints may have multiple locations, each at a different
704 address. This can occur with optimizations, template
705 instantiation, etc. Since the locations may be in different
706 scopes, the conditions and actions may be different for each
707 location. Our target version of tracepoints is more like GDB's
708 notion of "breakpoint locations", but we have almost nothing that
709 is not per-location, so we bother having two kinds of objects. The
710 key consequence is that numbers are not unique, and that it takes
711 both number and address to identify a tracepoint uniquely. */
712
713 struct tracepoint
714 {
715 /* The number of the tracepoint, as specified by GDB. Several
716 tracepoint objects here may share a number. */
717 uint32_t number;
718
719 /* Address at which the tracepoint is supposed to trigger. Several
720 tracepoints may share an address. */
721 CORE_ADDR address;
722
723 /* Tracepoint type. */
724 enum tracepoint_type type;
725
726 /* True if the tracepoint is currently enabled. */
727 int8_t enabled;
728
729 /* The number of single steps that will be performed after each
730 tracepoint hit. */
731 uint64_t step_count;
732
733 /* The number of times the tracepoint may be hit before it will
734 terminate the entire tracing run. */
735 uint64_t pass_count;
736
737 /* Pointer to the agent expression that is the tracepoint's
738 conditional, or NULL if the tracepoint is unconditional. */
739 struct agent_expr *cond;
740
741 /* The list of actions to take when the tracepoint triggers. */
742 uint32_t numactions;
743 struct tracepoint_action **actions;
744
745 /* Count of the times we've hit this tracepoint during the run.
746 Note that while-stepping steps are not counted as "hits". */
747 uint64_t hit_count;
748
749 /* Cached sum of the sizes of traceframes created by this point. */
750 uint64_t traceframe_usage;
751
752 CORE_ADDR compiled_cond;
753
754 /* Link to the next tracepoint in the list. */
755 struct tracepoint *next;
756
757 #ifndef IN_PROCESS_AGENT
758 /* The list of actions to take when the tracepoint triggers, in
759 string/packet form. */
760 char **actions_str;
761
762 /* The collection of strings that describe the tracepoint as it was
763 entered into GDB. These are not used by the target, but are
764 reported back to GDB upon reconnection. */
765 struct source_string *source_strings;
766
767 /* The number of bytes displaced by fast tracepoints. It may subsume
768 multiple instructions, for multi-byte fast tracepoints. This
769 field is only valid for fast tracepoints. */
770 uint32_t orig_size;
771
772 /* Only for fast tracepoints. */
773 CORE_ADDR obj_addr_on_target;
774
775 /* Address range where the original instruction under a fast
776 tracepoint was relocated to. (_end is actually one byte past
777 the end). */
778 CORE_ADDR adjusted_insn_addr;
779 CORE_ADDR adjusted_insn_addr_end;
780
781 /* The address range of the piece of the jump pad buffer that was
782 assigned to this fast tracepoint. (_end is actually one byte
783 past the end).*/
784 CORE_ADDR jump_pad;
785 CORE_ADDR jump_pad_end;
786
787 /* The address range of the piece of the trampoline buffer that was
788 assigned to this fast tracepoint. (_end is actually one byte
789 past the end). */
790 CORE_ADDR trampoline;
791 CORE_ADDR trampoline_end;
792
793 /* The list of actions to take while in a stepping loop. These
794 fields are only valid for patch-based tracepoints. */
795 int num_step_actions;
796 struct tracepoint_action **step_actions;
797 /* Same, but in string/packet form. */
798 char **step_actions_str;
799
800 /* Handle returned by the breakpoint or tracepoint module when we
801 inserted the trap or jump, or hooked into a static tracepoint.
802 NULL if we haven't inserted it yet. */
803 void *handle;
804 #endif
805
806 };
807
808 #ifndef IN_PROCESS_AGENT
809
810 /* Given `while-stepping', a thread may be collecting data for more
811 than one tracepoint simultaneously. On the other hand, the same
812 tracepoint with a while-stepping action may be hit by more than one
813 thread simultaneously (but not quite, each thread could be handling
814 a different step). Each thread holds a list of these objects,
815 representing the current step of each while-stepping action being
816 collected. */
817
818 struct wstep_state
819 {
820 struct wstep_state *next;
821
822 /* The tracepoint number. */
823 int tp_number;
824 /* The tracepoint's address. */
825 CORE_ADDR tp_address;
826
827 /* The number of the current step in this 'while-stepping'
828 action. */
829 long current_step;
830 };
831
832 #endif
833
834 EXTERN_C_PUSH
835
836 /* The linked list of all tracepoints. Marked explicitly as used as
837 the in-process library doesn't use it for the fast tracepoints
838 support. */
839 IP_AGENT_EXPORT_VAR struct tracepoint *tracepoints;
840
841 /* The first tracepoint to exceed its pass count. */
842
843 IP_AGENT_EXPORT_VAR struct tracepoint *stopping_tracepoint;
844
845 /* True if the trace buffer is full or otherwise no longer usable. */
846
847 IP_AGENT_EXPORT_VAR int trace_buffer_is_full;
848
849 /* The first error that occurred during expression evaluation. */
850
851 /* Stored as an int to avoid the IPA ABI being dependent on whatever
852 the compiler decides to use for the enum's underlying type. Holds
853 enum eval_result_type values. */
854 IP_AGENT_EXPORT_VAR int expr_eval_result = expr_eval_no_error;
855
856 EXTERN_C_POP
857
858 #ifndef IN_PROCESS_AGENT
859
860 /* Pointer to the last tracepoint in the list, new tracepoints are
861 linked in at the end. */
862
863 static struct tracepoint *last_tracepoint;
864
865 static const char *eval_result_names[] =
866 {
867 "terror:in the attic", /* this should never be reported */
868 "terror:empty expression",
869 "terror:empty stack",
870 "terror:stack overflow",
871 "terror:stack underflow",
872 "terror:unhandled opcode",
873 "terror:unrecognized opcode",
874 "terror:divide by zero"
875 };
876
877 #endif
878
879 /* The tracepoint in which the error occurred. */
880
881 EXTERN_C_PUSH
882 IP_AGENT_EXPORT_VAR struct tracepoint *error_tracepoint;
883 EXTERN_C_POP
884
885 struct trace_state_variable
886 {
887 /* This is the name of the variable as used in GDB. The target
888 doesn't use the name, but needs to have it for saving and
889 reconnection purposes. */
890 char *name;
891
892 /* This number identifies the variable uniquely. Numbers may be
893 assigned either by the target (in the case of builtin variables),
894 or by GDB, and are presumed unique during the course of a trace
895 experiment. */
896 int number;
897
898 /* The variable's initial value, a 64-bit signed integer always. */
899 LONGEST initial_value;
900
901 /* The variable's value, a 64-bit signed integer always. */
902 LONGEST value;
903
904 /* Pointer to a getter function, used to supply computed values. */
905 LONGEST (*getter) (void);
906
907 /* Link to the next variable. */
908 struct trace_state_variable *next;
909 };
910
911 /* Linked list of all trace state variables. */
912
913 #ifdef IN_PROCESS_AGENT
914 struct trace_state_variable *alloced_trace_state_variables;
915 #endif
916
917 IP_AGENT_EXPORT_VAR struct trace_state_variable *trace_state_variables;
918
919 /* The results of tracing go into a fixed-size space known as the
920 "trace buffer". Because usage follows a limited number of
921 patterns, we manage it ourselves rather than with malloc. Basic
922 rules are that we create only one trace frame at a time, each is
923 variable in size, they are never moved once created, and we only
924 discard if we are doing a circular buffer, and then only the oldest
925 ones. Each trace frame includes its own size, so we don't need to
926 link them together, and the trace frame number is relative to the
927 first one, so we don't need to record numbers. A trace frame also
928 records the number of the tracepoint that created it. The data
929 itself is a series of blocks, each introduced by a single character
930 and with a defined format. Each type of block has enough
931 type/length info to allow scanners to jump quickly from one block
932 to the next without reading each byte in the block. */
933
934 /* Trace buffer management would be simple - advance a free pointer
935 from beginning to end, then stop - were it not for the circular
936 buffer option, which is a useful way to prevent a trace run from
937 stopping prematurely because the buffer filled up. In the circular
938 case, the location of the first trace frame (trace_buffer_start)
939 moves as old trace frames are discarded. Also, since we grow trace
940 frames incrementally as actions are performed, we wrap around to
941 the beginning of the trace buffer. This is per-block, so each
942 block within a trace frame remains contiguous. Things get messy
943 when the wrapped-around trace frame is the one being discarded; the
944 free space ends up in two parts at opposite ends of the buffer. */
945
946 #ifndef ATTR_PACKED
947 # if defined(__GNUC__)
948 # define ATTR_PACKED __attribute__ ((packed))
949 # else
950 # define ATTR_PACKED /* nothing */
951 # endif
952 #endif
953
954 /* The data collected at a tracepoint hit. This object should be as
955 small as possible, since there may be a great many of them. We do
956 not need to keep a frame number, because they are all sequential
957 and there are no deletions; so the Nth frame in the buffer is
958 always frame number N. */
959
960 struct traceframe
961 {
962 /* Number of the tracepoint that collected this traceframe. A value
963 of 0 indicates the current end of the trace buffer. We make this
964 a 16-bit field because it's never going to happen that GDB's
965 numbering of tracepoints reaches 32,000. */
966 int tpnum : 16;
967
968 /* The size of the data in this trace frame. We limit this to 32
969 bits, even on a 64-bit target, because it's just implausible that
970 one is validly going to collect 4 gigabytes of data at a single
971 tracepoint hit. */
972 unsigned int data_size : 32;
973
974 /* The base of the trace data, which is contiguous from this point. */
975 unsigned char data[0];
976
977 } ATTR_PACKED;
978
979 /* The size of the EOB marker, in bytes. A traceframe with zeroed
980 fields (and no data) marks the end of trace data. */
981 #define TRACEFRAME_EOB_MARKER_SIZE offsetof (struct traceframe, data)
982
983 /* The traceframe to be used as the source of data to send back to
984 GDB. A value of -1 means to get data from the live program. */
985
986 int current_traceframe = -1;
987
988 /* This flag is true if the trace buffer is circular, meaning that
989 when it fills, the oldest trace frames are discarded in order to
990 make room. */
991
992 #ifndef IN_PROCESS_AGENT
993 static int circular_trace_buffer;
994 #endif
995
996 /* Size of the trace buffer. */
997
998 static LONGEST trace_buffer_size;
999
1000 EXTERN_C_PUSH
1001
1002 /* Pointer to the block of memory that traceframes all go into. */
1003
1004 IP_AGENT_EXPORT_VAR unsigned char *trace_buffer_lo;
1005
1006 /* Pointer to the end of the trace buffer, more precisely to the byte
1007 after the end of the buffer. */
1008
1009 IP_AGENT_EXPORT_VAR unsigned char *trace_buffer_hi;
1010
1011 EXTERN_C_POP
1012
1013 /* Control structure holding the read/write/etc. pointers into the
1014 trace buffer. We need more than one of these to implement a
1015 transaction-like mechanism to garantees that both GDBserver and the
1016 in-process agent can try to change the trace buffer
1017 simultaneously. */
1018
1019 struct trace_buffer_control
1020 {
1021 /* Pointer to the first trace frame in the buffer. In the
1022 non-circular case, this is equal to trace_buffer_lo, otherwise it
1023 moves around in the buffer. */
1024 unsigned char *start;
1025
1026 /* Pointer to the free part of the trace buffer. Note that we clear
1027 several bytes at and after this pointer, so that traceframe
1028 scans/searches terminate properly. */
1029 unsigned char *free;
1030
1031 /* Pointer to the byte after the end of the free part. Note that
1032 this may be smaller than trace_buffer_free in the circular case,
1033 and means that the free part is in two pieces. Initially it is
1034 equal to trace_buffer_hi, then is generally equivalent to
1035 trace_buffer_start. */
1036 unsigned char *end_free;
1037
1038 /* Pointer to the wraparound. If not equal to trace_buffer_hi, then
1039 this is the point at which the trace data breaks, and resumes at
1040 trace_buffer_lo. */
1041 unsigned char *wrap;
1042 };
1043
1044 /* Same as above, to be used by GDBserver when updating the in-process
1045 agent. */
1046 struct ipa_trace_buffer_control
1047 {
1048 uintptr_t start;
1049 uintptr_t free;
1050 uintptr_t end_free;
1051 uintptr_t wrap;
1052 };
1053
1054
1055 /* We have possibly both GDBserver and an inferior thread accessing
1056 the same IPA trace buffer memory. The IPA is the producer (tries
1057 to put new frames in the buffer), while GDBserver occasionally
1058 consumes them, that is, flushes the IPA's buffer into its own
1059 buffer. Both sides need to update the trace buffer control
1060 pointers (current head, tail, etc.). We can't use a global lock to
1061 synchronize the accesses, as otherwise we could deadlock GDBserver
1062 (if the thread holding the lock stops for a signal, say). So
1063 instead of that, we use a transaction scheme where GDBserver writes
1064 always prevail over the IPAs writes, and, we have the IPA detect
1065 the commit failure/overwrite, and retry the whole attempt. This is
1066 mainly implemented by having a global token object that represents
1067 who wrote last to the buffer control structure. We need to freeze
1068 any inferior writing to the buffer while GDBserver touches memory,
1069 so that the inferior can correctly detect that GDBserver had been
1070 there, otherwise, it could mistakingly think its commit was
1071 successful; that's implemented by simply having GDBserver set a
1072 breakpoint the inferior hits if it is the critical region.
1073
1074 There are three cycling trace buffer control structure copies
1075 (buffer head, tail, etc.), with the token object including an index
1076 indicating which is current live copy. The IPA tentatively builds
1077 an updated copy in a non-current control structure, while GDBserver
1078 always clobbers the current version directly. The IPA then tries
1079 to atomically "commit" its version; if GDBserver clobbered the
1080 structure meanwhile, that will fail, and the IPA restarts the
1081 allocation process.
1082
1083 Listing the step in further detail, we have:
1084
1085 In-process agent (producer):
1086
1087 - passes by `about_to_request_buffer_space' breakpoint/lock
1088
1089 - reads current token, extracts current trace buffer control index,
1090 and starts tentatively updating the rightmost one (0->1, 1->2,
1091 2->0). Note that only one inferior thread is executing this code
1092 at any given time, due to an outer lock in the jump pads.
1093
1094 - updates counters, and tries to commit the token.
1095
1096 - passes by second `about_to_request_buffer_space' breakpoint/lock,
1097 leaving the sync region.
1098
1099 - checks if the update was effective.
1100
1101 - if trace buffer was found full, hits flush_trace_buffer
1102 breakpoint, and restarts later afterwards.
1103
1104 GDBserver (consumer):
1105
1106 - sets `about_to_request_buffer_space' breakpoint/lock.
1107
1108 - updates the token unconditionally, using the current buffer
1109 control index, since it knows that the IP agent always writes to
1110 the rightmost, and due to the breakpoint, at most one IP thread
1111 can try to update the trace buffer concurrently to GDBserver, so
1112 there will be no danger of trace buffer control index wrap making
1113 the IPA write to the same index as GDBserver.
1114
1115 - flushes the IP agent's trace buffer completely, and updates the
1116 current trace buffer control structure. GDBserver *always* wins.
1117
1118 - removes the `about_to_request_buffer_space' breakpoint.
1119
1120 The token is stored in the `trace_buffer_ctrl_curr' variable.
1121 Internally, it's bits are defined as:
1122
1123 |-------------+-----+-------------+--------+-------------+--------------|
1124 | Bit offsets | 31 | 30 - 20 | 19 | 18-8 | 7-0 |
1125 |-------------+-----+-------------+--------+-------------+--------------|
1126 | What | GSB | PC (11-bit) | unused | CC (11-bit) | TBCI (8-bit) |
1127 |-------------+-----+-------------+--------+-------------+--------------|
1128
1129 GSB - GDBserver Stamp Bit
1130 PC - Previous Counter
1131 CC - Current Counter
1132 TBCI - Trace Buffer Control Index
1133
1134
1135 An IPA update of `trace_buffer_ctrl_curr' does:
1136
1137 - read CC from the current token, save as PC.
1138 - updates pointers
1139 - atomically tries to write PC+1,CC
1140
1141 A GDBserver update of `trace_buffer_ctrl_curr' does:
1142
1143 - reads PC and CC from the current token.
1144 - updates pointers
1145 - writes GSB,PC,CC
1146 */
1147
1148 /* These are the bits of `trace_buffer_ctrl_curr' that are reserved
1149 for the counters described below. The cleared bits are used to
1150 hold the index of the items of the `trace_buffer_ctrl' array that
1151 is "current". */
1152 #define GDBSERVER_FLUSH_COUNT_MASK 0xfffffff0
1153
1154 /* `trace_buffer_ctrl_curr' contains two counters. The `previous'
1155 counter, and the `current' counter. */
1156
1157 #define GDBSERVER_FLUSH_COUNT_MASK_PREV 0x7ff00000
1158 #define GDBSERVER_FLUSH_COUNT_MASK_CURR 0x0007ff00
1159
1160 /* When GDBserver update the IP agent's `trace_buffer_ctrl_curr', it
1161 always stamps this bit as set. */
1162 #define GDBSERVER_UPDATED_FLUSH_COUNT_BIT 0x80000000
1163
1164 #ifdef IN_PROCESS_AGENT
1165 IP_AGENT_EXPORT_VAR struct trace_buffer_control trace_buffer_ctrl[3];
1166 IP_AGENT_EXPORT_VAR unsigned int trace_buffer_ctrl_curr;
1167
1168 # define TRACE_BUFFER_CTRL_CURR \
1169 (trace_buffer_ctrl_curr & ~GDBSERVER_FLUSH_COUNT_MASK)
1170
1171 #else
1172
1173 /* The GDBserver side agent only needs one instance of this object, as
1174 it doesn't need to sync with itself. Define it as array anyway so
1175 that the rest of the code base doesn't need to care for the
1176 difference. */
1177 struct trace_buffer_control trace_buffer_ctrl[1];
1178 # define TRACE_BUFFER_CTRL_CURR 0
1179 #endif
1180
1181 /* These are convenience macros used to access the current trace
1182 buffer control in effect. */
1183 #define trace_buffer_start (trace_buffer_ctrl[TRACE_BUFFER_CTRL_CURR].start)
1184 #define trace_buffer_free (trace_buffer_ctrl[TRACE_BUFFER_CTRL_CURR].free)
1185 #define trace_buffer_end_free \
1186 (trace_buffer_ctrl[TRACE_BUFFER_CTRL_CURR].end_free)
1187 #define trace_buffer_wrap (trace_buffer_ctrl[TRACE_BUFFER_CTRL_CURR].wrap)
1188
1189
1190 /* Macro that returns a pointer to the first traceframe in the buffer. */
1191
1192 #define FIRST_TRACEFRAME() ((struct traceframe *) trace_buffer_start)
1193
1194 /* Macro that returns a pointer to the next traceframe in the buffer.
1195 If the computed location is beyond the wraparound point, subtract
1196 the offset of the wraparound. */
1197
1198 #define NEXT_TRACEFRAME_1(TF) \
1199 (((unsigned char *) (TF)) + sizeof (struct traceframe) + (TF)->data_size)
1200
1201 #define NEXT_TRACEFRAME(TF) \
1202 ((struct traceframe *) (NEXT_TRACEFRAME_1 (TF) \
1203 - ((NEXT_TRACEFRAME_1 (TF) >= trace_buffer_wrap) \
1204 ? (trace_buffer_wrap - trace_buffer_lo) \
1205 : 0)))
1206
1207 /* The difference between these counters represents the total number
1208 of complete traceframes present in the trace buffer. The IP agent
1209 writes to the write count, GDBserver writes to read count. */
1210
1211 IP_AGENT_EXPORT_VAR unsigned int traceframe_write_count;
1212 IP_AGENT_EXPORT_VAR unsigned int traceframe_read_count;
1213
1214 /* Convenience macro. */
1215
1216 #define traceframe_count \
1217 ((unsigned int) (traceframe_write_count - traceframe_read_count))
1218
1219 /* The count of all traceframes created in the current run, including
1220 ones that were discarded to make room. */
1221
1222 IP_AGENT_EXPORT_VAR int traceframes_created;
1223
1224 #ifndef IN_PROCESS_AGENT
1225
1226 /* Read-only regions are address ranges whose contents don't change,
1227 and so can be read from target memory even while looking at a trace
1228 frame. Without these, disassembly for instance will likely fail,
1229 because the program code is not usually collected into a trace
1230 frame. This data structure does not need to be very complicated or
1231 particularly efficient, it's only going to be used occasionally,
1232 and only by some commands. */
1233
1234 struct readonly_region
1235 {
1236 /* The bounds of the region. */
1237 CORE_ADDR start, end;
1238
1239 /* Link to the next one. */
1240 struct readonly_region *next;
1241 };
1242
1243 /* Linked list of readonly regions. This list stays in effect from
1244 one tstart to the next. */
1245
1246 static struct readonly_region *readonly_regions;
1247
1248 #endif
1249
1250 /* The global that controls tracing overall. */
1251
1252 IP_AGENT_EXPORT_VAR int tracing;
1253
1254 #ifndef IN_PROCESS_AGENT
1255
1256 /* Controls whether tracing should continue after GDB disconnects. */
1257
1258 int disconnected_tracing;
1259
1260 /* The reason for the last tracing run to have stopped. We initialize
1261 to a distinct string so that GDB can distinguish between "stopped
1262 after running" and "stopped because never run" cases. */
1263
1264 static const char *tracing_stop_reason = "tnotrun";
1265
1266 static int tracing_stop_tpnum;
1267
1268 /* 64-bit timestamps for the trace run's start and finish, expressed
1269 in microseconds from the Unix epoch. */
1270
1271 LONGEST tracing_start_time;
1272 LONGEST tracing_stop_time;
1273
1274 /* The (optional) user-supplied name of the user that started the run.
1275 This is an arbitrary string, and may be NULL. */
1276
1277 char *tracing_user_name;
1278
1279 /* Optional user-supplied text describing the run. This is
1280 an arbitrary string, and may be NULL. */
1281
1282 char *tracing_notes;
1283
1284 /* Optional user-supplied text explaining a tstop command. This is an
1285 arbitrary string, and may be NULL. */
1286
1287 char *tracing_stop_note;
1288
1289 #endif
1290
1291 /* Functions local to this file. */
1292
1293 /* Base "class" for tracepoint type specific data to be passed down to
1294 collect_data_at_tracepoint. */
1295 struct tracepoint_hit_ctx
1296 {
1297 enum tracepoint_type type;
1298 };
1299
1300 #ifdef IN_PROCESS_AGENT
1301
1302 /* Fast/jump tracepoint specific data to be passed down to
1303 collect_data_at_tracepoint. */
1304 struct fast_tracepoint_ctx
1305 {
1306 struct tracepoint_hit_ctx base;
1307
1308 struct regcache regcache;
1309 int regcache_initted;
1310 unsigned char *regspace;
1311
1312 unsigned char *regs;
1313 struct tracepoint *tpoint;
1314 };
1315
1316 /* Static tracepoint specific data to be passed down to
1317 collect_data_at_tracepoint. */
1318 struct static_tracepoint_ctx
1319 {
1320 struct tracepoint_hit_ctx base;
1321
1322 /* The regcache corresponding to the registers state at the time of
1323 the tracepoint hit. Initialized lazily, from REGS. */
1324 struct regcache regcache;
1325 int regcache_initted;
1326
1327 /* The buffer space REGCACHE above uses. We use a separate buffer
1328 instead of letting the regcache malloc for both signal safety and
1329 performance reasons; this is allocated on the stack instead. */
1330 unsigned char *regspace;
1331
1332 /* The register buffer as passed on by lttng/ust. */
1333 struct registers *regs;
1334
1335 /* The "printf" formatter and the args the user passed to the marker
1336 call. We use this to be able to collect "static trace data"
1337 ($_sdata). */
1338 const char *fmt;
1339 va_list *args;
1340
1341 /* The GDB tracepoint matching the probed marker that was "hit". */
1342 struct tracepoint *tpoint;
1343 };
1344
1345 #else
1346
1347 /* Static tracepoint specific data to be passed down to
1348 collect_data_at_tracepoint. */
1349 struct trap_tracepoint_ctx
1350 {
1351 struct tracepoint_hit_ctx base;
1352
1353 struct regcache *regcache;
1354 };
1355
1356 #endif
1357
1358 #ifndef IN_PROCESS_AGENT
1359 static CORE_ADDR traceframe_get_pc (struct traceframe *tframe);
1360 static int traceframe_read_tsv (int num, LONGEST *val);
1361 #endif
1362
1363 static int condition_true_at_tracepoint (struct tracepoint_hit_ctx *ctx,
1364 struct tracepoint *tpoint);
1365
1366 #ifndef IN_PROCESS_AGENT
1367 static void clear_readonly_regions (void);
1368 static void clear_installed_tracepoints (void);
1369 #endif
1370
1371 static void collect_data_at_tracepoint (struct tracepoint_hit_ctx *ctx,
1372 CORE_ADDR stop_pc,
1373 struct tracepoint *tpoint);
1374 #ifndef IN_PROCESS_AGENT
1375 static void collect_data_at_step (struct tracepoint_hit_ctx *ctx,
1376 CORE_ADDR stop_pc,
1377 struct tracepoint *tpoint, int current_step);
1378 static void compile_tracepoint_condition (struct tracepoint *tpoint,
1379 CORE_ADDR *jump_entry);
1380 #endif
1381 static void do_action_at_tracepoint (struct tracepoint_hit_ctx *ctx,
1382 CORE_ADDR stop_pc,
1383 struct tracepoint *tpoint,
1384 struct traceframe *tframe,
1385 struct tracepoint_action *taction);
1386
1387 #ifndef IN_PROCESS_AGENT
1388 static struct tracepoint *fast_tracepoint_from_ipa_tpoint_address (CORE_ADDR);
1389
1390 static void install_tracepoint (struct tracepoint *, char *own_buf);
1391 static void download_tracepoint (struct tracepoint *);
1392 static int install_fast_tracepoint (struct tracepoint *, char *errbuf);
1393 static void clone_fast_tracepoint (struct tracepoint *to,
1394 const struct tracepoint *from);
1395 #endif
1396
1397 static LONGEST get_timestamp (void);
1398
1399 #if defined(__GNUC__)
1400 # define memory_barrier() asm volatile ("" : : : "memory")
1401 #else
1402 # define memory_barrier() do {} while (0)
1403 #endif
1404
1405 /* We only build the IPA if this builtin is supported, and there are
1406 no uses of this in GDBserver itself, so we're safe in defining this
1407 unconditionally. */
1408 #define cmpxchg(mem, oldval, newval) \
1409 __sync_val_compare_and_swap (mem, oldval, newval)
1410
1411 /* Record that an error occurred during expression evaluation. */
1412
1413 static void
1414 record_tracepoint_error (struct tracepoint *tpoint, const char *which,
1415 enum eval_result_type rtype)
1416 {
1417 trace_debug ("Tracepoint %d at %s %s eval reports error %d",
1418 tpoint->number, paddress (tpoint->address), which, rtype);
1419
1420 #ifdef IN_PROCESS_AGENT
1421 /* Only record the first error we get. */
1422 if (cmpxchg (&expr_eval_result,
1423 expr_eval_no_error,
1424 rtype) != expr_eval_no_error)
1425 return;
1426 #else
1427 if (expr_eval_result != expr_eval_no_error)
1428 return;
1429 #endif
1430
1431 error_tracepoint = tpoint;
1432 }
1433
1434 /* Trace buffer management. */
1435
1436 static void
1437 clear_trace_buffer (void)
1438 {
1439 trace_buffer_start = trace_buffer_lo;
1440 trace_buffer_free = trace_buffer_lo;
1441 trace_buffer_end_free = trace_buffer_hi;
1442 trace_buffer_wrap = trace_buffer_hi;
1443 /* A traceframe with zeroed fields marks the end of trace data. */
1444 ((struct traceframe *) trace_buffer_free)->tpnum = 0;
1445 ((struct traceframe *) trace_buffer_free)->data_size = 0;
1446 traceframe_read_count = traceframe_write_count = 0;
1447 traceframes_created = 0;
1448 }
1449
1450 #ifndef IN_PROCESS_AGENT
1451
1452 static void
1453 clear_inferior_trace_buffer (void)
1454 {
1455 CORE_ADDR ipa_trace_buffer_lo;
1456 CORE_ADDR ipa_trace_buffer_hi;
1457 struct traceframe ipa_traceframe = { 0 };
1458 struct ipa_trace_buffer_control ipa_trace_buffer_ctrl;
1459
1460 read_inferior_data_pointer (ipa_sym_addrs.addr_trace_buffer_lo,
1461 &ipa_trace_buffer_lo);
1462 read_inferior_data_pointer (ipa_sym_addrs.addr_trace_buffer_hi,
1463 &ipa_trace_buffer_hi);
1464
1465 ipa_trace_buffer_ctrl.start = ipa_trace_buffer_lo;
1466 ipa_trace_buffer_ctrl.free = ipa_trace_buffer_lo;
1467 ipa_trace_buffer_ctrl.end_free = ipa_trace_buffer_hi;
1468 ipa_trace_buffer_ctrl.wrap = ipa_trace_buffer_hi;
1469
1470 /* A traceframe with zeroed fields marks the end of trace data. */
1471 write_inferior_memory (ipa_sym_addrs.addr_trace_buffer_ctrl,
1472 (unsigned char *) &ipa_trace_buffer_ctrl,
1473 sizeof (ipa_trace_buffer_ctrl));
1474
1475 write_inferior_uinteger (ipa_sym_addrs.addr_trace_buffer_ctrl_curr, 0);
1476
1477 /* A traceframe with zeroed fields marks the end of trace data. */
1478 write_inferior_memory (ipa_trace_buffer_lo,
1479 (unsigned char *) &ipa_traceframe,
1480 sizeof (ipa_traceframe));
1481
1482 write_inferior_uinteger (ipa_sym_addrs.addr_traceframe_write_count, 0);
1483 write_inferior_uinteger (ipa_sym_addrs.addr_traceframe_read_count, 0);
1484 write_inferior_integer (ipa_sym_addrs.addr_traceframes_created, 0);
1485 }
1486
1487 #endif
1488
1489 static void
1490 init_trace_buffer (LONGEST bufsize)
1491 {
1492 size_t alloc_size;
1493
1494 trace_buffer_size = bufsize;
1495
1496 /* Make sure to internally allocate at least space for the EOB
1497 marker. */
1498 alloc_size = (bufsize < TRACEFRAME_EOB_MARKER_SIZE
1499 ? TRACEFRAME_EOB_MARKER_SIZE : bufsize);
1500 trace_buffer_lo = xrealloc (trace_buffer_lo, alloc_size);
1501
1502 trace_buffer_hi = trace_buffer_lo + trace_buffer_size;
1503
1504 clear_trace_buffer ();
1505 }
1506
1507 #ifdef IN_PROCESS_AGENT
1508
1509 IP_AGENT_EXPORT_FUNC void
1510 about_to_request_buffer_space (void)
1511 {
1512 /* GDBserver places breakpoint here while it goes about to flush
1513 data at random times. */
1514 UNKNOWN_SIDE_EFFECTS();
1515 }
1516
1517 #endif
1518
1519 /* Carve out a piece of the trace buffer, returning NULL in case of
1520 failure. */
1521
1522 static void *
1523 trace_buffer_alloc (size_t amt)
1524 {
1525 unsigned char *rslt;
1526 struct trace_buffer_control *tbctrl;
1527 unsigned int curr;
1528 #ifdef IN_PROCESS_AGENT
1529 unsigned int prev, prev_filtered;
1530 unsigned int commit_count;
1531 unsigned int commit;
1532 unsigned int readout;
1533 #else
1534 struct traceframe *oldest;
1535 unsigned char *new_start;
1536 #endif
1537
1538 trace_debug ("Want to allocate %ld+%ld bytes in trace buffer",
1539 (long) amt, (long) sizeof (struct traceframe));
1540
1541 /* Account for the EOB marker. */
1542 amt += TRACEFRAME_EOB_MARKER_SIZE;
1543
1544 #ifdef IN_PROCESS_AGENT
1545 again:
1546 memory_barrier ();
1547
1548 /* Read the current token and extract the index to try to write to,
1549 storing it in CURR. */
1550 prev = trace_buffer_ctrl_curr;
1551 prev_filtered = prev & ~GDBSERVER_FLUSH_COUNT_MASK;
1552 curr = prev_filtered + 1;
1553 if (curr > 2)
1554 curr = 0;
1555
1556 about_to_request_buffer_space ();
1557
1558 /* Start out with a copy of the current state. GDBserver may be
1559 midway writing to the PREV_FILTERED TBC, but, that's OK, we won't
1560 be able to commit anyway if that happens. */
1561 trace_buffer_ctrl[curr]
1562 = trace_buffer_ctrl[prev_filtered];
1563 trace_debug ("trying curr=%u", curr);
1564 #else
1565 /* The GDBserver's agent doesn't need all that syncing, and always
1566 updates TCB 0 (there's only one, mind you). */
1567 curr = 0;
1568 #endif
1569 tbctrl = &trace_buffer_ctrl[curr];
1570
1571 /* Offsets are easier to grok for debugging than raw addresses,
1572 especially for the small trace buffer sizes that are useful for
1573 testing. */
1574 trace_debug ("Trace buffer [%d] start=%d free=%d endfree=%d wrap=%d hi=%d",
1575 curr,
1576 (int) (tbctrl->start - trace_buffer_lo),
1577 (int) (tbctrl->free - trace_buffer_lo),
1578 (int) (tbctrl->end_free - trace_buffer_lo),
1579 (int) (tbctrl->wrap - trace_buffer_lo),
1580 (int) (trace_buffer_hi - trace_buffer_lo));
1581
1582 /* The algorithm here is to keep trying to get a contiguous block of
1583 the requested size, possibly discarding older traceframes to free
1584 up space. Since free space might come in one or two pieces,
1585 depending on whether discarded traceframes wrapped around at the
1586 high end of the buffer, we test both pieces after each
1587 discard. */
1588 while (1)
1589 {
1590 /* First, if we have two free parts, try the upper one first. */
1591 if (tbctrl->end_free < tbctrl->free)
1592 {
1593 if (tbctrl->free + amt <= trace_buffer_hi)
1594 /* We have enough in the upper part. */
1595 break;
1596 else
1597 {
1598 /* Our high part of free space wasn't enough. Give up
1599 on it for now, set wraparound. We will recover the
1600 space later, if/when the wrapped-around traceframe is
1601 discarded. */
1602 trace_debug ("Upper part too small, setting wraparound");
1603 tbctrl->wrap = tbctrl->free;
1604 tbctrl->free = trace_buffer_lo;
1605 }
1606 }
1607
1608 /* The normal case. */
1609 if (tbctrl->free + amt <= tbctrl->end_free)
1610 break;
1611
1612 #ifdef IN_PROCESS_AGENT
1613 /* The IP Agent's buffer is always circular. It isn't used
1614 currently, but `circular_trace_buffer' could represent
1615 GDBserver's mode. If we didn't find space, ask GDBserver to
1616 flush. */
1617
1618 flush_trace_buffer ();
1619 memory_barrier ();
1620 if (tracing)
1621 {
1622 trace_debug ("gdbserver flushed buffer, retrying");
1623 goto again;
1624 }
1625
1626 /* GDBserver cancelled the tracing. Bail out as well. */
1627 return NULL;
1628 #else
1629 /* If we're here, then neither part is big enough, and
1630 non-circular trace buffers are now full. */
1631 if (!circular_trace_buffer)
1632 {
1633 trace_debug ("Not enough space in the trace buffer");
1634 return NULL;
1635 }
1636
1637 trace_debug ("Need more space in the trace buffer");
1638
1639 /* If we have a circular buffer, we can try discarding the
1640 oldest traceframe and see if that helps. */
1641 oldest = FIRST_TRACEFRAME ();
1642 if (oldest->tpnum == 0)
1643 {
1644 /* Not good; we have no traceframes to free. Perhaps we're
1645 asking for a block that is larger than the buffer? In
1646 any case, give up. */
1647 trace_debug ("No traceframes to discard");
1648 return NULL;
1649 }
1650
1651 /* We don't run this code in the in-process agent currently.
1652 E.g., we could leave the in-process agent in autonomous
1653 circular mode if we only have fast tracepoints. If we do
1654 that, then this bit becomes racy with GDBserver, which also
1655 writes to this counter. */
1656 --traceframe_write_count;
1657
1658 new_start = (unsigned char *) NEXT_TRACEFRAME (oldest);
1659 /* If we freed the traceframe that wrapped around, go back
1660 to the non-wrap case. */
1661 if (new_start < tbctrl->start)
1662 {
1663 trace_debug ("Discarding past the wraparound");
1664 tbctrl->wrap = trace_buffer_hi;
1665 }
1666 tbctrl->start = new_start;
1667 tbctrl->end_free = tbctrl->start;
1668
1669 trace_debug ("Discarded a traceframe\n"
1670 "Trace buffer [%d], start=%d free=%d "
1671 "endfree=%d wrap=%d hi=%d",
1672 curr,
1673 (int) (tbctrl->start - trace_buffer_lo),
1674 (int) (tbctrl->free - trace_buffer_lo),
1675 (int) (tbctrl->end_free - trace_buffer_lo),
1676 (int) (tbctrl->wrap - trace_buffer_lo),
1677 (int) (trace_buffer_hi - trace_buffer_lo));
1678
1679 /* Now go back around the loop. The discard might have resulted
1680 in either one or two pieces of free space, so we want to try
1681 both before freeing any more traceframes. */
1682 #endif
1683 }
1684
1685 /* If we get here, we know we can provide the asked-for space. */
1686
1687 rslt = tbctrl->free;
1688
1689 /* Adjust the request back down, now that we know we have space for
1690 the marker, but don't commit to AMT yet, we may still need to
1691 restart the operation if GDBserver touches the trace buffer
1692 (obviously only important in the in-process agent's version). */
1693 tbctrl->free += (amt - sizeof (struct traceframe));
1694
1695 /* Or not. If GDBserver changed the trace buffer behind our back,
1696 we get to restart a new allocation attempt. */
1697
1698 #ifdef IN_PROCESS_AGENT
1699 /* Build the tentative token. */
1700 commit_count = (((prev & GDBSERVER_FLUSH_COUNT_MASK_CURR) + 0x100)
1701 & GDBSERVER_FLUSH_COUNT_MASK_CURR);
1702 commit = (((prev & GDBSERVER_FLUSH_COUNT_MASK_CURR) << 12)
1703 | commit_count
1704 | curr);
1705
1706 /* Try to commit it. */
1707 readout = cmpxchg (&trace_buffer_ctrl_curr, prev, commit);
1708 if (readout != prev)
1709 {
1710 trace_debug ("GDBserver has touched the trace buffer, restarting."
1711 " (prev=%08x, commit=%08x, readout=%08x)",
1712 prev, commit, readout);
1713 goto again;
1714 }
1715
1716 /* Hold your horses here. Even if that change was committed,
1717 GDBserver could come in, and clobber it. We need to hold to be
1718 able to tell if GDBserver clobbers before or after we committed
1719 the change. Whenever GDBserver goes about touching the IPA
1720 buffer, it sets a breakpoint in this routine, so we have a sync
1721 point here. */
1722 about_to_request_buffer_space ();
1723
1724 /* Check if the change has been effective, even if GDBserver stopped
1725 us at the breakpoint. */
1726
1727 {
1728 unsigned int refetch;
1729
1730 memory_barrier ();
1731
1732 refetch = trace_buffer_ctrl_curr;
1733
1734 if (refetch == commit
1735 || ((refetch & GDBSERVER_FLUSH_COUNT_MASK_PREV) >> 12) == commit_count)
1736 {
1737 /* effective */
1738 trace_debug ("change is effective: (prev=%08x, commit=%08x, "
1739 "readout=%08x, refetch=%08x)",
1740 prev, commit, readout, refetch);
1741 }
1742 else
1743 {
1744 trace_debug ("GDBserver has touched the trace buffer, not effective."
1745 " (prev=%08x, commit=%08x, readout=%08x, refetch=%08x)",
1746 prev, commit, readout, refetch);
1747 goto again;
1748 }
1749 }
1750 #endif
1751
1752 /* We have a new piece of the trace buffer. Hurray! */
1753
1754 /* Add an EOB marker just past this allocation. */
1755 ((struct traceframe *) tbctrl->free)->tpnum = 0;
1756 ((struct traceframe *) tbctrl->free)->data_size = 0;
1757
1758 /* Adjust the request back down, now that we know we have space for
1759 the marker. */
1760 amt -= sizeof (struct traceframe);
1761
1762 if (debug_threads)
1763 {
1764 trace_debug ("Allocated %d bytes", (int) amt);
1765 trace_debug ("Trace buffer [%d] start=%d free=%d "
1766 "endfree=%d wrap=%d hi=%d",
1767 curr,
1768 (int) (tbctrl->start - trace_buffer_lo),
1769 (int) (tbctrl->free - trace_buffer_lo),
1770 (int) (tbctrl->end_free - trace_buffer_lo),
1771 (int) (tbctrl->wrap - trace_buffer_lo),
1772 (int) (trace_buffer_hi - trace_buffer_lo));
1773 }
1774
1775 return rslt;
1776 }
1777
1778 #ifndef IN_PROCESS_AGENT
1779
1780 /* Return the total free space. This is not necessarily the largest
1781 block we can allocate, because of the two-part case. */
1782
1783 static int
1784 free_space (void)
1785 {
1786 if (trace_buffer_free <= trace_buffer_end_free)
1787 return trace_buffer_end_free - trace_buffer_free;
1788 else
1789 return ((trace_buffer_end_free - trace_buffer_lo)
1790 + (trace_buffer_hi - trace_buffer_free));
1791 }
1792
1793 /* An 'S' in continuation packets indicates remainder are for
1794 while-stepping. */
1795
1796 static int seen_step_action_flag;
1797
1798 /* Create a tracepoint (location) with given number and address. Add this
1799 new tracepoint to list and sort this list. */
1800
1801 static struct tracepoint *
1802 add_tracepoint (int num, CORE_ADDR addr)
1803 {
1804 struct tracepoint *tpoint, **tp_next;
1805
1806 tpoint = XNEW (struct tracepoint);
1807 tpoint->number = num;
1808 tpoint->address = addr;
1809 tpoint->numactions = 0;
1810 tpoint->actions = NULL;
1811 tpoint->actions_str = NULL;
1812 tpoint->cond = NULL;
1813 tpoint->num_step_actions = 0;
1814 tpoint->step_actions = NULL;
1815 tpoint->step_actions_str = NULL;
1816 /* Start all off as regular (slow) tracepoints. */
1817 tpoint->type = trap_tracepoint;
1818 tpoint->orig_size = -1;
1819 tpoint->source_strings = NULL;
1820 tpoint->compiled_cond = 0;
1821 tpoint->handle = NULL;
1822 tpoint->next = NULL;
1823
1824 /* Find a place to insert this tracepoint into list in order to keep
1825 the tracepoint list still in the ascending order. There may be
1826 multiple tracepoints at the same address as TPOINT's, and this
1827 guarantees TPOINT is inserted after all the tracepoints which are
1828 set at the same address. For example, fast tracepoints A, B, C are
1829 set at the same address, and D is to be insert at the same place as
1830 well,
1831
1832 -->| A |--> | B |-->| C |->...
1833
1834 One jump pad was created for tracepoint A, B, and C, and the target
1835 address of A is referenced/used in jump pad. So jump pad will let
1836 inferior jump to A. If D is inserted in front of A, like this,
1837
1838 -->| D |-->| A |--> | B |-->| C |->...
1839
1840 without updating jump pad, D is not reachable during collect, which
1841 is wrong. As we can see, the order of B, C and D doesn't matter, but
1842 A should always be the `first' one. */
1843 for (tp_next = &tracepoints;
1844 (*tp_next) != NULL && (*tp_next)->address <= tpoint->address;
1845 tp_next = &(*tp_next)->next)
1846 ;
1847 tpoint->next = *tp_next;
1848 *tp_next = tpoint;
1849 last_tracepoint = tpoint;
1850
1851 seen_step_action_flag = 0;
1852
1853 return tpoint;
1854 }
1855
1856 #ifndef IN_PROCESS_AGENT
1857
1858 /* Return the tracepoint with the given number and address, or NULL. */
1859
1860 static struct tracepoint *
1861 find_tracepoint (int id, CORE_ADDR addr)
1862 {
1863 struct tracepoint *tpoint;
1864
1865 for (tpoint = tracepoints; tpoint; tpoint = tpoint->next)
1866 if (tpoint->number == id && tpoint->address == addr)
1867 return tpoint;
1868
1869 return NULL;
1870 }
1871
1872 /* Remove TPOINT from global list. */
1873
1874 static void
1875 remove_tracepoint (struct tracepoint *tpoint)
1876 {
1877 struct tracepoint *tp, *tp_prev;
1878
1879 for (tp = tracepoints, tp_prev = NULL; tp && tp != tpoint;
1880 tp_prev = tp, tp = tp->next)
1881 ;
1882
1883 if (tp)
1884 {
1885 if (tp_prev)
1886 tp_prev->next = tp->next;
1887 else
1888 tracepoints = tp->next;
1889
1890 xfree (tp);
1891 }
1892 }
1893
1894 /* There may be several tracepoints with the same number (because they
1895 are "locations", in GDB parlance); return the next one after the
1896 given tracepoint, or search from the beginning of the list if the
1897 first argument is NULL. */
1898
1899 static struct tracepoint *
1900 find_next_tracepoint_by_number (struct tracepoint *prev_tp, int num)
1901 {
1902 struct tracepoint *tpoint;
1903
1904 if (prev_tp)
1905 tpoint = prev_tp->next;
1906 else
1907 tpoint = tracepoints;
1908 for (; tpoint; tpoint = tpoint->next)
1909 if (tpoint->number == num)
1910 return tpoint;
1911
1912 return NULL;
1913 }
1914
1915 #endif
1916
1917 /* Append another action to perform when the tracepoint triggers. */
1918
1919 static void
1920 add_tracepoint_action (struct tracepoint *tpoint, char *packet)
1921 {
1922 char *act;
1923
1924 if (*packet == 'S')
1925 {
1926 seen_step_action_flag = 1;
1927 ++packet;
1928 }
1929
1930 act = packet;
1931
1932 while (*act)
1933 {
1934 char *act_start = act;
1935 struct tracepoint_action *action = NULL;
1936
1937 switch (*act)
1938 {
1939 case 'M':
1940 {
1941 struct collect_memory_action *maction =
1942 XNEW (struct collect_memory_action);
1943 ULONGEST basereg;
1944 int is_neg;
1945
1946 maction->base.type = *act;
1947 maction->base.ops = &m_tracepoint_action_ops;
1948 action = &maction->base;
1949
1950 ++act;
1951 is_neg = (*act == '-');
1952 if (*act == '-')
1953 ++act;
1954 act = unpack_varlen_hex (act, &basereg);
1955 ++act;
1956 act = unpack_varlen_hex (act, &maction->addr);
1957 ++act;
1958 act = unpack_varlen_hex (act, &maction->len);
1959 maction->basereg = (is_neg
1960 ? - (int) basereg
1961 : (int) basereg);
1962 trace_debug ("Want to collect %s bytes at 0x%s (basereg %d)",
1963 pulongest (maction->len),
1964 paddress (maction->addr), maction->basereg);
1965 break;
1966 }
1967 case 'R':
1968 {
1969 struct collect_registers_action *raction =
1970 XNEW (struct collect_registers_action);
1971
1972 raction->base.type = *act;
1973 raction->base.ops = &r_tracepoint_action_ops;
1974 action = &raction->base;
1975
1976 trace_debug ("Want to collect registers");
1977 ++act;
1978 /* skip past hex digits of mask for now */
1979 while (isxdigit(*act))
1980 ++act;
1981 break;
1982 }
1983 case 'L':
1984 {
1985 struct collect_static_trace_data_action *raction =
1986 XNEW (struct collect_static_trace_data_action);
1987
1988 raction->base.type = *act;
1989 raction->base.ops = &l_tracepoint_action_ops;
1990 action = &raction->base;
1991
1992 trace_debug ("Want to collect static trace data");
1993 ++act;
1994 break;
1995 }
1996 case 'S':
1997 trace_debug ("Unexpected step action, ignoring");
1998 ++act;
1999 break;
2000 case 'X':
2001 {
2002 struct eval_expr_action *xaction = XNEW (struct eval_expr_action);
2003
2004 xaction->base.type = *act;
2005 xaction->base.ops = &x_tracepoint_action_ops;
2006 action = &xaction->base;
2007
2008 trace_debug ("Want to evaluate expression");
2009 xaction->expr = gdb_parse_agent_expr (&act);
2010 break;
2011 }
2012 default:
2013 trace_debug ("unknown trace action '%c', ignoring...", *act);
2014 break;
2015 case '-':
2016 break;
2017 }
2018
2019 if (action == NULL)
2020 break;
2021
2022 if (seen_step_action_flag)
2023 {
2024 tpoint->num_step_actions++;
2025
2026 tpoint->step_actions
2027 = xrealloc (tpoint->step_actions,
2028 (sizeof (*tpoint->step_actions)
2029 * tpoint->num_step_actions));
2030 tpoint->step_actions_str
2031 = xrealloc (tpoint->step_actions_str,
2032 (sizeof (*tpoint->step_actions_str)
2033 * tpoint->num_step_actions));
2034 tpoint->step_actions[tpoint->num_step_actions - 1] = action;
2035 tpoint->step_actions_str[tpoint->num_step_actions - 1]
2036 = savestring (act_start, act - act_start);
2037 }
2038 else
2039 {
2040 tpoint->numactions++;
2041 tpoint->actions
2042 = xrealloc (tpoint->actions,
2043 sizeof (*tpoint->actions) * tpoint->numactions);
2044 tpoint->actions_str
2045 = xrealloc (tpoint->actions_str,
2046 sizeof (*tpoint->actions_str) * tpoint->numactions);
2047 tpoint->actions[tpoint->numactions - 1] = action;
2048 tpoint->actions_str[tpoint->numactions - 1]
2049 = savestring (act_start, act - act_start);
2050 }
2051 }
2052 }
2053
2054 #endif
2055
2056 /* Find or create a trace state variable with the given number. */
2057
2058 static struct trace_state_variable *
2059 get_trace_state_variable (int num)
2060 {
2061 struct trace_state_variable *tsv;
2062
2063 #ifdef IN_PROCESS_AGENT
2064 /* Search for an existing variable. */
2065 for (tsv = alloced_trace_state_variables; tsv; tsv = tsv->next)
2066 if (tsv->number == num)
2067 return tsv;
2068 #endif
2069
2070 /* Search for an existing variable. */
2071 for (tsv = trace_state_variables; tsv; tsv = tsv->next)
2072 if (tsv->number == num)
2073 return tsv;
2074
2075 return NULL;
2076 }
2077
2078 /* Find or create a trace state variable with the given number. */
2079
2080 static struct trace_state_variable *
2081 create_trace_state_variable (int num, int gdb)
2082 {
2083 struct trace_state_variable *tsv;
2084
2085 tsv = get_trace_state_variable (num);
2086 if (tsv != NULL)
2087 return tsv;
2088
2089 /* Create a new variable. */
2090 tsv = XNEW (struct trace_state_variable);
2091 tsv->number = num;
2092 tsv->initial_value = 0;
2093 tsv->value = 0;
2094 tsv->getter = NULL;
2095 tsv->name = NULL;
2096 #ifdef IN_PROCESS_AGENT
2097 if (!gdb)
2098 {
2099 tsv->next = alloced_trace_state_variables;
2100 alloced_trace_state_variables = tsv;
2101 }
2102 else
2103 #endif
2104 {
2105 tsv->next = trace_state_variables;
2106 trace_state_variables = tsv;
2107 }
2108 return tsv;
2109 }
2110
2111 IP_AGENT_EXPORT_FUNC LONGEST
2112 get_trace_state_variable_value (int num)
2113 {
2114 struct trace_state_variable *tsv;
2115
2116 tsv = get_trace_state_variable (num);
2117
2118 if (!tsv)
2119 {
2120 trace_debug ("No trace state variable %d, skipping value get", num);
2121 return 0;
2122 }
2123
2124 /* Call a getter function if we have one. While it's tempting to
2125 set up something to only call the getter once per tracepoint hit,
2126 it could run afoul of thread races. Better to let the getter
2127 handle it directly, if necessary to worry about it. */
2128 if (tsv->getter)
2129 tsv->value = (tsv->getter) ();
2130
2131 trace_debug ("get_trace_state_variable_value(%d) ==> %s",
2132 num, plongest (tsv->value));
2133
2134 return tsv->value;
2135 }
2136
2137 IP_AGENT_EXPORT_FUNC void
2138 set_trace_state_variable_value (int num, LONGEST val)
2139 {
2140 struct trace_state_variable *tsv;
2141
2142 tsv = get_trace_state_variable (num);
2143
2144 if (!tsv)
2145 {
2146 trace_debug ("No trace state variable %d, skipping value set", num);
2147 return;
2148 }
2149
2150 tsv->value = val;
2151 }
2152
2153 LONGEST
2154 agent_get_trace_state_variable_value (int num)
2155 {
2156 return get_trace_state_variable_value (num);
2157 }
2158
2159 void
2160 agent_set_trace_state_variable_value (int num, LONGEST val)
2161 {
2162 set_trace_state_variable_value (num, val);
2163 }
2164
2165 static void
2166 set_trace_state_variable_name (int num, const char *name)
2167 {
2168 struct trace_state_variable *tsv;
2169
2170 tsv = get_trace_state_variable (num);
2171
2172 if (!tsv)
2173 {
2174 trace_debug ("No trace state variable %d, skipping name set", num);
2175 return;
2176 }
2177
2178 tsv->name = (char *) name;
2179 }
2180
2181 static void
2182 set_trace_state_variable_getter (int num, LONGEST (*getter) (void))
2183 {
2184 struct trace_state_variable *tsv;
2185
2186 tsv = get_trace_state_variable (num);
2187
2188 if (!tsv)
2189 {
2190 trace_debug ("No trace state variable %d, skipping getter set", num);
2191 return;
2192 }
2193
2194 tsv->getter = getter;
2195 }
2196
2197 /* Add a raw traceframe for the given tracepoint. */
2198
2199 static struct traceframe *
2200 add_traceframe (struct tracepoint *tpoint)
2201 {
2202 struct traceframe *tframe;
2203
2204 tframe = trace_buffer_alloc (sizeof (struct traceframe));
2205
2206 if (tframe == NULL)
2207 return NULL;
2208
2209 tframe->tpnum = tpoint->number;
2210 tframe->data_size = 0;
2211
2212 return tframe;
2213 }
2214
2215 /* Add a block to the traceframe currently being worked on. */
2216
2217 static unsigned char *
2218 add_traceframe_block (struct traceframe *tframe,
2219 struct tracepoint *tpoint, int amt)
2220 {
2221 unsigned char *block;
2222
2223 if (!tframe)
2224 return NULL;
2225
2226 block = trace_buffer_alloc (amt);
2227
2228 if (!block)
2229 return NULL;
2230
2231 gdb_assert (tframe->tpnum == tpoint->number);
2232
2233 tframe->data_size += amt;
2234 tpoint->traceframe_usage += amt;
2235
2236 return block;
2237 }
2238
2239 /* Flag that the current traceframe is finished. */
2240
2241 static void
2242 finish_traceframe (struct traceframe *tframe)
2243 {
2244 ++traceframe_write_count;
2245 ++traceframes_created;
2246 }
2247
2248 #ifndef IN_PROCESS_AGENT
2249
2250 /* Given a traceframe number NUM, find the NUMth traceframe in the
2251 buffer. */
2252
2253 static struct traceframe *
2254 find_traceframe (int num)
2255 {
2256 struct traceframe *tframe;
2257 int tfnum = 0;
2258
2259 for (tframe = FIRST_TRACEFRAME ();
2260 tframe->tpnum != 0;
2261 tframe = NEXT_TRACEFRAME (tframe))
2262 {
2263 if (tfnum == num)
2264 return tframe;
2265 ++tfnum;
2266 }
2267
2268 return NULL;
2269 }
2270
2271 static CORE_ADDR
2272 get_traceframe_address (struct traceframe *tframe)
2273 {
2274 CORE_ADDR addr;
2275 struct tracepoint *tpoint;
2276
2277 addr = traceframe_get_pc (tframe);
2278
2279 if (addr)
2280 return addr;
2281
2282 /* Fallback strategy, will be incorrect for while-stepping frames
2283 and multi-location tracepoints. */
2284 tpoint = find_next_tracepoint_by_number (NULL, tframe->tpnum);
2285 return tpoint->address;
2286 }
2287
2288 /* Search for the next traceframe whose address is inside or outside
2289 the given range. */
2290
2291 static struct traceframe *
2292 find_next_traceframe_in_range (CORE_ADDR lo, CORE_ADDR hi, int inside_p,
2293 int *tfnump)
2294 {
2295 struct traceframe *tframe;
2296 CORE_ADDR tfaddr;
2297
2298 *tfnump = current_traceframe + 1;
2299 tframe = find_traceframe (*tfnump);
2300 /* The search is not supposed to wrap around. */
2301 if (!tframe)
2302 {
2303 *tfnump = -1;
2304 return NULL;
2305 }
2306
2307 for (; tframe->tpnum != 0; tframe = NEXT_TRACEFRAME (tframe))
2308 {
2309 tfaddr = get_traceframe_address (tframe);
2310 if (inside_p
2311 ? (lo <= tfaddr && tfaddr <= hi)
2312 : (lo > tfaddr || tfaddr > hi))
2313 return tframe;
2314 ++*tfnump;
2315 }
2316
2317 *tfnump = -1;
2318 return NULL;
2319 }
2320
2321 /* Search for the next traceframe recorded by the given tracepoint.
2322 Note that for multi-location tracepoints, this will find whatever
2323 location appears first. */
2324
2325 static struct traceframe *
2326 find_next_traceframe_by_tracepoint (int num, int *tfnump)
2327 {
2328 struct traceframe *tframe;
2329
2330 *tfnump = current_traceframe + 1;
2331 tframe = find_traceframe (*tfnump);
2332 /* The search is not supposed to wrap around. */
2333 if (!tframe)
2334 {
2335 *tfnump = -1;
2336 return NULL;
2337 }
2338
2339 for (; tframe->tpnum != 0; tframe = NEXT_TRACEFRAME (tframe))
2340 {
2341 if (tframe->tpnum == num)
2342 return tframe;
2343 ++*tfnump;
2344 }
2345
2346 *tfnump = -1;
2347 return NULL;
2348 }
2349
2350 #endif
2351
2352 #ifndef IN_PROCESS_AGENT
2353
2354 /* Clear all past trace state. */
2355
2356 static void
2357 cmd_qtinit (char *packet)
2358 {
2359 struct trace_state_variable *tsv, *prev, *next;
2360
2361 /* Can't do this command without a pid attached. */
2362 if (current_thread == NULL)
2363 {
2364 write_enn (packet);
2365 return;
2366 }
2367
2368 /* Make sure we don't try to read from a trace frame. */
2369 current_traceframe = -1;
2370
2371 stop_tracing ();
2372
2373 trace_debug ("Initializing the trace");
2374
2375 clear_installed_tracepoints ();
2376 clear_readonly_regions ();
2377
2378 tracepoints = NULL;
2379 last_tracepoint = NULL;
2380
2381 /* Clear out any leftover trace state variables. Ones with target
2382 defined getters should be kept however. */
2383 prev = NULL;
2384 tsv = trace_state_variables;
2385 while (tsv)
2386 {
2387 trace_debug ("Looking at var %d", tsv->number);
2388 if (tsv->getter == NULL)
2389 {
2390 next = tsv->next;
2391 if (prev)
2392 prev->next = next;
2393 else
2394 trace_state_variables = next;
2395 trace_debug ("Deleting var %d", tsv->number);
2396 free (tsv);
2397 tsv = next;
2398 }
2399 else
2400 {
2401 prev = tsv;
2402 tsv = tsv->next;
2403 }
2404 }
2405
2406 clear_trace_buffer ();
2407 clear_inferior_trace_buffer ();
2408
2409 write_ok (packet);
2410 }
2411
2412 /* Unprobe the UST marker at ADDRESS. */
2413
2414 static void
2415 unprobe_marker_at (CORE_ADDR address)
2416 {
2417 char cmd[IPA_CMD_BUF_SIZE];
2418
2419 sprintf (cmd, "unprobe_marker_at:%s", paddress (address));
2420 run_inferior_command (cmd, strlen (cmd) + 1);
2421 }
2422
2423 /* Restore the program to its pre-tracing state. This routine may be called
2424 in error situations, so it needs to be careful about only restoring
2425 from known-valid bits. */
2426
2427 static void
2428 clear_installed_tracepoints (void)
2429 {
2430 struct tracepoint *tpoint;
2431 struct tracepoint *prev_stpoint;
2432
2433 pause_all (1);
2434
2435 prev_stpoint = NULL;
2436
2437 /* Restore any bytes overwritten by tracepoints. */
2438 for (tpoint = tracepoints; tpoint; tpoint = tpoint->next)
2439 {
2440 /* Catch the case where we might try to remove a tracepoint that
2441 was never actually installed. */
2442 if (tpoint->handle == NULL)
2443 {
2444 trace_debug ("Tracepoint %d at 0x%s was "
2445 "never installed, nothing to clear",
2446 tpoint->number, paddress (tpoint->address));
2447 continue;
2448 }
2449
2450 switch (tpoint->type)
2451 {
2452 case trap_tracepoint:
2453 delete_breakpoint (tpoint->handle);
2454 break;
2455 case fast_tracepoint:
2456 delete_fast_tracepoint_jump (tpoint->handle);
2457 break;
2458 case static_tracepoint:
2459 if (prev_stpoint != NULL
2460 && prev_stpoint->address == tpoint->address)
2461 /* Nothing to do. We already unprobed a tracepoint set at
2462 this marker address (and there can only be one probe
2463 per marker). */
2464 ;
2465 else
2466 {
2467 unprobe_marker_at (tpoint->address);
2468 prev_stpoint = tpoint;
2469 }
2470 break;
2471 }
2472
2473 tpoint->handle = NULL;
2474 }
2475
2476 unpause_all (1);
2477 }
2478
2479 /* Parse a packet that defines a tracepoint. */
2480
2481 static void
2482 cmd_qtdp (char *own_buf)
2483 {
2484 int tppacket;
2485 /* Whether there is a trailing hyphen at the end of the QTDP packet. */
2486 int trail_hyphen = 0;
2487 ULONGEST num;
2488 ULONGEST addr;
2489 ULONGEST count;
2490 struct tracepoint *tpoint;
2491 char *actparm;
2492 char *packet = own_buf;
2493
2494 packet += strlen ("QTDP:");
2495
2496 /* A hyphen at the beginning marks a packet specifying actions for a
2497 tracepoint already supplied. */
2498 tppacket = 1;
2499 if (*packet == '-')
2500 {
2501 tppacket = 0;
2502 ++packet;
2503 }
2504 packet = unpack_varlen_hex (packet, &num);
2505 ++packet; /* skip a colon */
2506 packet = unpack_varlen_hex (packet, &addr);
2507 ++packet; /* skip a colon */
2508
2509 /* See if we already have this tracepoint. */
2510 tpoint = find_tracepoint (num, addr);
2511
2512 if (tppacket)
2513 {
2514 /* Duplicate tracepoints are never allowed. */
2515 if (tpoint)
2516 {
2517 trace_debug ("Tracepoint error: tracepoint %d"
2518 " at 0x%s already exists",
2519 (int) num, paddress (addr));
2520 write_enn (own_buf);
2521 return;
2522 }
2523
2524 tpoint = add_tracepoint (num, addr);
2525
2526 tpoint->enabled = (*packet == 'E');
2527 ++packet; /* skip 'E' */
2528 ++packet; /* skip a colon */
2529 packet = unpack_varlen_hex (packet, &count);
2530 tpoint->step_count = count;
2531 ++packet; /* skip a colon */
2532 packet = unpack_varlen_hex (packet, &count);
2533 tpoint->pass_count = count;
2534 /* See if we have any of the additional optional fields. */
2535 while (*packet == ':')
2536 {
2537 ++packet;
2538 if (*packet == 'F')
2539 {
2540 tpoint->type = fast_tracepoint;
2541 ++packet;
2542 packet = unpack_varlen_hex (packet, &count);
2543 tpoint->orig_size = count;
2544 }
2545 else if (*packet == 'S')
2546 {
2547 tpoint->type = static_tracepoint;
2548 ++packet;
2549 }
2550 else if (*packet == 'X')
2551 {
2552 actparm = (char *) packet;
2553 tpoint->cond = gdb_parse_agent_expr (&actparm);
2554 packet = actparm;
2555 }
2556 else if (*packet == '-')
2557 break;
2558 else if (*packet == '\0')
2559 break;
2560 else
2561 trace_debug ("Unknown optional tracepoint field");
2562 }
2563 if (*packet == '-')
2564 {
2565 trail_hyphen = 1;
2566 trace_debug ("Also has actions\n");
2567 }
2568
2569 trace_debug ("Defined %stracepoint %d at 0x%s, "
2570 "enabled %d step %" PRIu64 " pass %" PRIu64,
2571 tpoint->type == fast_tracepoint ? "fast "
2572 : tpoint->type == static_tracepoint ? "static " : "",
2573 tpoint->number, paddress (tpoint->address), tpoint->enabled,
2574 tpoint->step_count, tpoint->pass_count);
2575 }
2576 else if (tpoint)
2577 add_tracepoint_action (tpoint, packet);
2578 else
2579 {
2580 trace_debug ("Tracepoint error: tracepoint %d at 0x%s not found",
2581 (int) num, paddress (addr));
2582 write_enn (own_buf);
2583 return;
2584 }
2585
2586 /* Install tracepoint during tracing only once for each tracepoint location.
2587 For each tracepoint loc, GDB may send multiple QTDP packets, and we can
2588 determine the last QTDP packet for one tracepoint location by checking
2589 trailing hyphen in QTDP packet. */
2590 if (tracing && !trail_hyphen)
2591 {
2592 struct tracepoint *tp = NULL;
2593
2594 /* Pause all threads temporarily while we patch tracepoints. */
2595 pause_all (0);
2596
2597 /* download_tracepoint will update global `tracepoints'
2598 list, so it is unsafe to leave threads in jump pad. */
2599 stabilize_threads ();
2600
2601 /* Freeze threads. */
2602 pause_all (1);
2603
2604
2605 if (tpoint->type != trap_tracepoint)
2606 {
2607 /* Find another fast or static tracepoint at the same address. */
2608 for (tp = tracepoints; tp; tp = tp->next)
2609 {
2610 if (tp->address == tpoint->address && tp->type == tpoint->type
2611 && tp->number != tpoint->number)
2612 break;
2613 }
2614
2615 /* TPOINT is installed at the same address as TP. */
2616 if (tp)
2617 {
2618 if (tpoint->type == fast_tracepoint)
2619 clone_fast_tracepoint (tpoint, tp);
2620 else if (tpoint->type == static_tracepoint)
2621 tpoint->handle = (void *) -1;
2622 }
2623 }
2624
2625 if (use_agent && tpoint->type == fast_tracepoint
2626 && agent_capability_check (AGENT_CAPA_FAST_TRACE))
2627 {
2628 /* Download and install fast tracepoint by agent. */
2629 if (tracepoint_send_agent (tpoint) == 0)
2630 write_ok (own_buf);
2631 else
2632 {
2633 write_enn (own_buf);
2634 remove_tracepoint (tpoint);
2635 }
2636 }
2637 else
2638 {
2639 download_tracepoint (tpoint);
2640
2641 if (tpoint->type == trap_tracepoint || tp == NULL)
2642 {
2643 install_tracepoint (tpoint, own_buf);
2644 if (strcmp (own_buf, "OK") != 0)
2645 remove_tracepoint (tpoint);
2646 }
2647 else
2648 write_ok (own_buf);
2649 }
2650
2651 unpause_all (1);
2652 return;
2653 }
2654
2655 write_ok (own_buf);
2656 }
2657
2658 static void
2659 cmd_qtdpsrc (char *own_buf)
2660 {
2661 ULONGEST num, addr, start, slen;
2662 struct tracepoint *tpoint;
2663 char *packet = own_buf;
2664 char *saved, *srctype, *src;
2665 size_t nbytes;
2666 struct source_string *last, *newlast;
2667
2668 packet += strlen ("QTDPsrc:");
2669
2670 packet = unpack_varlen_hex (packet, &num);
2671 ++packet; /* skip a colon */
2672 packet = unpack_varlen_hex (packet, &addr);
2673 ++packet; /* skip a colon */
2674
2675 /* See if we already have this tracepoint. */
2676 tpoint = find_tracepoint (num, addr);
2677
2678 if (!tpoint)
2679 {
2680 trace_debug ("Tracepoint error: tracepoint %d at 0x%s not found",
2681 (int) num, paddress (addr));
2682 write_enn (own_buf);
2683 return;
2684 }
2685
2686 saved = packet;
2687 packet = strchr (packet, ':');
2688 srctype = xmalloc (packet - saved + 1);
2689 memcpy (srctype, saved, packet - saved);
2690 srctype[packet - saved] = '\0';
2691 ++packet;
2692 packet = unpack_varlen_hex (packet, &start);
2693 ++packet; /* skip a colon */
2694 packet = unpack_varlen_hex (packet, &slen);
2695 ++packet; /* skip a colon */
2696 src = xmalloc (slen + 1);
2697 nbytes = hex2bin (packet, (gdb_byte *) src, strlen (packet) / 2);
2698 src[nbytes] = '\0';
2699
2700 newlast = XNEW (struct source_string);
2701 newlast->type = srctype;
2702 newlast->str = src;
2703 newlast->next = NULL;
2704 /* Always add a source string to the end of the list;
2705 this keeps sequences of actions/commands in the right
2706 order. */
2707 if (tpoint->source_strings)
2708 {
2709 for (last = tpoint->source_strings; last->next; last = last->next)
2710 ;
2711 last->next = newlast;
2712 }
2713 else
2714 tpoint->source_strings = newlast;
2715
2716 write_ok (own_buf);
2717 }
2718
2719 static void
2720 cmd_qtdv (char *own_buf)
2721 {
2722 ULONGEST num, val, builtin;
2723 char *varname;
2724 size_t nbytes;
2725 struct trace_state_variable *tsv;
2726 char *packet = own_buf;
2727
2728 packet += strlen ("QTDV:");
2729
2730 packet = unpack_varlen_hex (packet, &num);
2731 ++packet; /* skip a colon */
2732 packet = unpack_varlen_hex (packet, &val);
2733 ++packet; /* skip a colon */
2734 packet = unpack_varlen_hex (packet, &builtin);
2735 ++packet; /* skip a colon */
2736
2737 nbytes = strlen (packet) / 2;
2738 varname = xmalloc (nbytes + 1);
2739 nbytes = hex2bin (packet, (gdb_byte *) varname, nbytes);
2740 varname[nbytes] = '\0';
2741
2742 tsv = create_trace_state_variable (num, 1);
2743 tsv->initial_value = (LONGEST) val;
2744 tsv->name = varname;
2745
2746 set_trace_state_variable_value (num, (LONGEST) val);
2747
2748 write_ok (own_buf);
2749 }
2750
2751 static void
2752 cmd_qtenable_disable (char *own_buf, int enable)
2753 {
2754 char *packet = own_buf;
2755 ULONGEST num, addr;
2756 struct tracepoint *tp;
2757
2758 packet += strlen (enable ? "QTEnable:" : "QTDisable:");
2759 packet = unpack_varlen_hex (packet, &num);
2760 ++packet; /* skip a colon */
2761 packet = unpack_varlen_hex (packet, &addr);
2762
2763 tp = find_tracepoint (num, addr);
2764
2765 if (tp)
2766 {
2767 if ((enable && tp->enabled) || (!enable && !tp->enabled))
2768 {
2769 trace_debug ("Tracepoint %d at 0x%s is already %s",
2770 (int) num, paddress (addr),
2771 enable ? "enabled" : "disabled");
2772 write_ok (own_buf);
2773 return;
2774 }
2775
2776 trace_debug ("%s tracepoint %d at 0x%s",
2777 enable ? "Enabling" : "Disabling",
2778 (int) num, paddress (addr));
2779
2780 tp->enabled = enable;
2781
2782 if (tp->type == fast_tracepoint || tp->type == static_tracepoint)
2783 {
2784 int ret;
2785 int offset = offsetof (struct tracepoint, enabled);
2786 CORE_ADDR obj_addr = tp->obj_addr_on_target + offset;
2787
2788 ret = prepare_to_access_memory ();
2789 if (ret)
2790 {
2791 trace_debug ("Failed to temporarily stop inferior threads");
2792 write_enn (own_buf);
2793 return;
2794 }
2795
2796 ret = write_inferior_integer (obj_addr, enable);
2797 done_accessing_memory ();
2798
2799 if (ret)
2800 {
2801 trace_debug ("Cannot write enabled flag into "
2802 "inferior process memory");
2803 write_enn (own_buf);
2804 return;
2805 }
2806 }
2807
2808 write_ok (own_buf);
2809 }
2810 else
2811 {
2812 trace_debug ("Tracepoint %d at 0x%s not found",
2813 (int) num, paddress (addr));
2814 write_enn (own_buf);
2815 }
2816 }
2817
2818 static void
2819 cmd_qtv (char *own_buf)
2820 {
2821 ULONGEST num;
2822 LONGEST val = 0;
2823 int err;
2824 char *packet = own_buf;
2825
2826 packet += strlen ("qTV:");
2827 unpack_varlen_hex (packet, &num);
2828
2829 if (current_traceframe >= 0)
2830 {
2831 err = traceframe_read_tsv ((int) num, &val);
2832 if (err)
2833 {
2834 strcpy (own_buf, "U");
2835 return;
2836 }
2837 }
2838 /* Only make tsv's be undefined before the first trace run. After a
2839 trace run is over, the user might want to see the last value of
2840 the tsv, and it might not be available in a traceframe. */
2841 else if (!tracing && strcmp (tracing_stop_reason, "tnotrun") == 0)
2842 {
2843 strcpy (own_buf, "U");
2844 return;
2845 }
2846 else
2847 val = get_trace_state_variable_value (num);
2848
2849 sprintf (own_buf, "V%s", phex_nz (val, 0));
2850 }
2851
2852 /* Clear out the list of readonly regions. */
2853
2854 static void
2855 clear_readonly_regions (void)
2856 {
2857 struct readonly_region *roreg;
2858
2859 while (readonly_regions)
2860 {
2861 roreg = readonly_regions;
2862 readonly_regions = readonly_regions->next;
2863 free (roreg);
2864 }
2865 }
2866
2867 /* Parse the collection of address ranges whose contents GDB believes
2868 to be unchanging and so can be read directly from target memory
2869 even while looking at a traceframe. */
2870
2871 static void
2872 cmd_qtro (char *own_buf)
2873 {
2874 ULONGEST start, end;
2875 struct readonly_region *roreg;
2876 char *packet = own_buf;
2877
2878 trace_debug ("Want to mark readonly regions");
2879
2880 clear_readonly_regions ();
2881
2882 packet += strlen ("QTro");
2883
2884 while (*packet == ':')
2885 {
2886 ++packet; /* skip a colon */
2887 packet = unpack_varlen_hex (packet, &start);
2888 ++packet; /* skip a comma */
2889 packet = unpack_varlen_hex (packet, &end);
2890
2891 roreg = XNEW (struct readonly_region);
2892 roreg->start = start;
2893 roreg->end = end;
2894 roreg->next = readonly_regions;
2895 readonly_regions = roreg;
2896 trace_debug ("Added readonly region from 0x%s to 0x%s",
2897 paddress (roreg->start), paddress (roreg->end));
2898 }
2899
2900 write_ok (own_buf);
2901 }
2902
2903 /* Test to see if the given range is in our list of readonly ranges.
2904 We only test for being entirely within a range, GDB is not going to
2905 send a single memory packet that spans multiple regions. */
2906
2907 int
2908 in_readonly_region (CORE_ADDR addr, ULONGEST length)
2909 {
2910 struct readonly_region *roreg;
2911
2912 for (roreg = readonly_regions; roreg; roreg = roreg->next)
2913 if (roreg->start <= addr && (addr + length - 1) <= roreg->end)
2914 return 1;
2915
2916 return 0;
2917 }
2918
2919 /* The maximum size of a jump pad entry. */
2920 static const int max_jump_pad_size = 0x100;
2921
2922 static CORE_ADDR gdb_jump_pad_head;
2923
2924 /* Return the address of the next free jump space. */
2925
2926 static CORE_ADDR
2927 get_jump_space_head (void)
2928 {
2929 if (gdb_jump_pad_head == 0)
2930 {
2931 if (read_inferior_data_pointer (ipa_sym_addrs.addr_gdb_jump_pad_buffer,
2932 &gdb_jump_pad_head))
2933 {
2934 internal_error (__FILE__, __LINE__,
2935 "error extracting jump_pad_buffer");
2936 }
2937 }
2938
2939 return gdb_jump_pad_head;
2940 }
2941
2942 /* Reserve USED bytes from the jump space. */
2943
2944 static void
2945 claim_jump_space (ULONGEST used)
2946 {
2947 trace_debug ("claim_jump_space reserves %s bytes at %s",
2948 pulongest (used), paddress (gdb_jump_pad_head));
2949 gdb_jump_pad_head += used;
2950 }
2951
2952 static CORE_ADDR trampoline_buffer_head = 0;
2953 static CORE_ADDR trampoline_buffer_tail;
2954
2955 /* Reserve USED bytes from the trampoline buffer and return the
2956 address of the start of the reserved space in TRAMPOLINE. Returns
2957 non-zero if the space is successfully claimed. */
2958
2959 int
2960 claim_trampoline_space (ULONGEST used, CORE_ADDR *trampoline)
2961 {
2962 if (!trampoline_buffer_head)
2963 {
2964 if (read_inferior_data_pointer (ipa_sym_addrs.addr_gdb_trampoline_buffer,
2965 &trampoline_buffer_tail))
2966 {
2967 internal_error (__FILE__, __LINE__,
2968 "error extracting trampoline_buffer");
2969 }
2970
2971 if (read_inferior_data_pointer (ipa_sym_addrs.addr_gdb_trampoline_buffer_end,
2972 &trampoline_buffer_head))
2973 {
2974 internal_error (__FILE__, __LINE__,
2975 "error extracting trampoline_buffer_end");
2976 }
2977 }
2978
2979 /* Start claiming space from the top of the trampoline space. If
2980 the space is located at the bottom of the virtual address space,
2981 this reduces the possibility that corruption will occur if a null
2982 pointer is used to write to memory. */
2983 if (trampoline_buffer_head - trampoline_buffer_tail < used)
2984 {
2985 trace_debug ("claim_trampoline_space failed to reserve %s bytes",
2986 pulongest (used));
2987 return 0;
2988 }
2989
2990 trampoline_buffer_head -= used;
2991
2992 trace_debug ("claim_trampoline_space reserves %s bytes at %s",
2993 pulongest (used), paddress (trampoline_buffer_head));
2994
2995 *trampoline = trampoline_buffer_head;
2996 return 1;
2997 }
2998
2999 /* Returns non-zero if there is space allocated for use in trampolines
3000 for fast tracepoints. */
3001
3002 int
3003 have_fast_tracepoint_trampoline_buffer (char *buf)
3004 {
3005 CORE_ADDR trampoline_end, errbuf;
3006
3007 if (read_inferior_data_pointer (ipa_sym_addrs.addr_gdb_trampoline_buffer_end,
3008 &trampoline_end))
3009 {
3010 internal_error (__FILE__, __LINE__,
3011 "error extracting trampoline_buffer_end");
3012 }
3013
3014 if (buf)
3015 {
3016 buf[0] = '\0';
3017 strcpy (buf, "was claiming");
3018 if (read_inferior_data_pointer (ipa_sym_addrs.addr_gdb_trampoline_buffer_error,
3019 &errbuf))
3020 {
3021 internal_error (__FILE__, __LINE__,
3022 "error extracting errbuf");
3023 }
3024
3025 read_inferior_memory (errbuf, (unsigned char *) buf, 100);
3026 }
3027
3028 return trampoline_end != 0;
3029 }
3030
3031 /* Ask the IPA to probe the marker at ADDRESS. Returns -1 if running
3032 the command fails, or 0 otherwise. If the command ran
3033 successfully, but probing the marker failed, ERROUT will be filled
3034 with the error to reply to GDB, and -1 is also returned. This
3035 allows directly passing IPA errors to GDB. */
3036
3037 static int
3038 probe_marker_at (CORE_ADDR address, char *errout)
3039 {
3040 char cmd[IPA_CMD_BUF_SIZE];
3041 int err;
3042
3043 sprintf (cmd, "probe_marker_at:%s", paddress (address));
3044 err = run_inferior_command (cmd, strlen (cmd) + 1);
3045
3046 if (err == 0)
3047 {
3048 if (*cmd == 'E')
3049 {
3050 strcpy (errout, cmd);
3051 return -1;
3052 }
3053 }
3054
3055 return err;
3056 }
3057
3058 static void
3059 clone_fast_tracepoint (struct tracepoint *to, const struct tracepoint *from)
3060 {
3061 to->jump_pad = from->jump_pad;
3062 to->jump_pad_end = from->jump_pad_end;
3063 to->trampoline = from->trampoline;
3064 to->trampoline_end = from->trampoline_end;
3065 to->adjusted_insn_addr = from->adjusted_insn_addr;
3066 to->adjusted_insn_addr_end = from->adjusted_insn_addr_end;
3067 to->handle = from->handle;
3068
3069 gdb_assert (from->handle);
3070 inc_ref_fast_tracepoint_jump ((struct fast_tracepoint_jump *) from->handle);
3071 }
3072
3073 #define MAX_JUMP_SIZE 20
3074
3075 /* Install fast tracepoint. Return 0 if successful, otherwise return
3076 non-zero. */
3077
3078 static int
3079 install_fast_tracepoint (struct tracepoint *tpoint, char *errbuf)
3080 {
3081 CORE_ADDR jentry, jump_entry;
3082 CORE_ADDR trampoline;
3083 ULONGEST trampoline_size;
3084 int err = 0;
3085 /* The jump to the jump pad of the last fast tracepoint
3086 installed. */
3087 unsigned char fjump[MAX_JUMP_SIZE];
3088 ULONGEST fjump_size;
3089
3090 if (tpoint->orig_size < target_get_min_fast_tracepoint_insn_len ())
3091 {
3092 trace_debug ("Requested a fast tracepoint on an instruction "
3093 "that is of less than the minimum length.");
3094 return 0;
3095 }
3096
3097 jentry = jump_entry = get_jump_space_head ();
3098
3099 trampoline = 0;
3100 trampoline_size = 0;
3101
3102 /* Install the jump pad. */
3103 err = install_fast_tracepoint_jump_pad (tpoint->obj_addr_on_target,
3104 tpoint->address,
3105 ipa_sym_addrs.addr_gdb_collect,
3106 ipa_sym_addrs.addr_collecting,
3107 tpoint->orig_size,
3108 &jentry,
3109 &trampoline, &trampoline_size,
3110 fjump, &fjump_size,
3111 &tpoint->adjusted_insn_addr,
3112 &tpoint->adjusted_insn_addr_end,
3113 errbuf);
3114
3115 if (err)
3116 return 1;
3117
3118 /* Wire it in. */
3119 tpoint->handle = set_fast_tracepoint_jump (tpoint->address, fjump,
3120 fjump_size);
3121
3122 if (tpoint->handle != NULL)
3123 {
3124 tpoint->jump_pad = jump_entry;
3125 tpoint->jump_pad_end = jentry;
3126 tpoint->trampoline = trampoline;
3127 tpoint->trampoline_end = trampoline + trampoline_size;
3128
3129 /* Pad to 8-byte alignment. */
3130 jentry = ((jentry + 7) & ~0x7);
3131 claim_jump_space (jentry - jump_entry);
3132 }
3133
3134 return 0;
3135 }
3136
3137
3138 /* Install tracepoint TPOINT, and write reply message in OWN_BUF. */
3139
3140 static void
3141 install_tracepoint (struct tracepoint *tpoint, char *own_buf)
3142 {
3143 tpoint->handle = NULL;
3144 *own_buf = '\0';
3145
3146 if (tpoint->type == trap_tracepoint)
3147 {
3148 /* Tracepoints are installed as memory breakpoints. Just go
3149 ahead and install the trap. The breakpoints module
3150 handles duplicated breakpoints, and the memory read
3151 routine handles un-patching traps from memory reads. */
3152 tpoint->handle = set_breakpoint_at (tpoint->address,
3153 tracepoint_handler);
3154 }
3155 else if (tpoint->type == fast_tracepoint || tpoint->type == static_tracepoint)
3156 {
3157 if (!agent_loaded_p ())
3158 {
3159 trace_debug ("Requested a %s tracepoint, but fast "
3160 "tracepoints aren't supported.",
3161 tpoint->type == static_tracepoint ? "static" : "fast");
3162 write_e_ipa_not_loaded (own_buf);
3163 return;
3164 }
3165 if (tpoint->type == static_tracepoint
3166 && !in_process_agent_supports_ust ())
3167 {
3168 trace_debug ("Requested a static tracepoint, but static "
3169 "tracepoints are not supported.");
3170 write_e_ust_not_loaded (own_buf);
3171 return;
3172 }
3173
3174 if (tpoint->type == fast_tracepoint)
3175 install_fast_tracepoint (tpoint, own_buf);
3176 else
3177 {
3178 if (probe_marker_at (tpoint->address, own_buf) == 0)
3179 tpoint->handle = (void *) -1;
3180 }
3181
3182 }
3183 else
3184 internal_error (__FILE__, __LINE__, "Unknown tracepoint type");
3185
3186 if (tpoint->handle == NULL)
3187 {
3188 if (*own_buf == '\0')
3189 write_enn (own_buf);
3190 }
3191 else
3192 write_ok (own_buf);
3193 }
3194
3195 static void download_tracepoint_1 (struct tracepoint *tpoint);
3196
3197 static void
3198 cmd_qtstart (char *packet)
3199 {
3200 struct tracepoint *tpoint, *prev_ftpoint, *prev_stpoint;
3201 CORE_ADDR tpptr = 0, prev_tpptr = 0;
3202
3203 trace_debug ("Starting the trace");
3204
3205 /* Pause all threads temporarily while we patch tracepoints. */
3206 pause_all (0);
3207
3208 /* Get threads out of jump pads. Safe to do here, since this is a
3209 top level command. And, required to do here, since we're
3210 deleting/rewriting jump pads. */
3211
3212 stabilize_threads ();
3213
3214 /* Freeze threads. */
3215 pause_all (1);
3216
3217 /* Sync the fast tracepoints list in the inferior ftlib. */
3218 if (agent_loaded_p ())
3219 download_trace_state_variables ();
3220
3221 /* No previous fast tpoint yet. */
3222 prev_ftpoint = NULL;
3223
3224 /* No previous static tpoint yet. */
3225 prev_stpoint = NULL;
3226
3227 *packet = '\0';
3228
3229 /* Start out empty. */
3230 if (agent_loaded_p ())
3231 write_inferior_data_ptr (ipa_sym_addrs.addr_tracepoints, 0);
3232
3233 /* Download and install tracepoints. */
3234 for (tpoint = tracepoints; tpoint; tpoint = tpoint->next)
3235 {
3236 /* Ensure all the hit counts start at zero. */
3237 tpoint->hit_count = 0;
3238 tpoint->traceframe_usage = 0;
3239
3240 if (tpoint->type == trap_tracepoint)
3241 {
3242 /* Tracepoints are installed as memory breakpoints. Just go
3243 ahead and install the trap. The breakpoints module
3244 handles duplicated breakpoints, and the memory read
3245 routine handles un-patching traps from memory reads. */
3246 tpoint->handle = set_breakpoint_at (tpoint->address,
3247 tracepoint_handler);
3248 }
3249 else if (tpoint->type == fast_tracepoint
3250 || tpoint->type == static_tracepoint)
3251 {
3252 if (maybe_write_ipa_not_loaded (packet))
3253 {
3254 trace_debug ("Requested a %s tracepoint, but fast "
3255 "tracepoints aren't supported.",
3256 tpoint->type == static_tracepoint
3257 ? "static" : "fast");
3258 break;
3259 }
3260
3261 if (tpoint->type == fast_tracepoint)
3262 {
3263 int use_agent_p
3264 = use_agent && agent_capability_check (AGENT_CAPA_FAST_TRACE);
3265
3266 if (prev_ftpoint != NULL
3267 && prev_ftpoint->address == tpoint->address)
3268 {
3269 if (use_agent_p)
3270 tracepoint_send_agent (tpoint);
3271 else
3272 download_tracepoint_1 (tpoint);
3273
3274 clone_fast_tracepoint (tpoint, prev_ftpoint);
3275 }
3276 else
3277 {
3278 /* Tracepoint is installed successfully? */
3279 int installed = 0;
3280
3281 /* Download and install fast tracepoint by agent. */
3282 if (use_agent_p)
3283 installed = !tracepoint_send_agent (tpoint);
3284 else
3285 {
3286 download_tracepoint_1 (tpoint);
3287 installed = !install_fast_tracepoint (tpoint, packet);
3288 }
3289
3290 if (installed)
3291 prev_ftpoint = tpoint;
3292 }
3293 }
3294 else
3295 {
3296 if (!in_process_agent_supports_ust ())
3297 {
3298 trace_debug ("Requested a static tracepoint, but static "
3299 "tracepoints are not supported.");
3300 break;
3301 }
3302
3303 download_tracepoint_1 (tpoint);
3304 /* Can only probe a given marker once. */
3305 if (prev_stpoint != NULL
3306 && prev_stpoint->address == tpoint->address)
3307 tpoint->handle = (void *) -1;
3308 else
3309 {
3310 if (probe_marker_at (tpoint->address, packet) == 0)
3311 {
3312 tpoint->handle = (void *) -1;
3313
3314 /* So that we can handle multiple static tracepoints
3315 at the same address easily. */
3316 prev_stpoint = tpoint;
3317 }
3318 }
3319 }
3320
3321 prev_tpptr = tpptr;
3322 tpptr = tpoint->obj_addr_on_target;
3323
3324 if (tpoint == tracepoints)
3325 /* First object in list, set the head pointer in the
3326 inferior. */
3327 write_inferior_data_ptr (ipa_sym_addrs.addr_tracepoints, tpptr);
3328 else
3329 write_inferior_data_ptr (prev_tpptr + offsetof (struct tracepoint,
3330 next),
3331 tpptr);
3332 }
3333
3334 /* Any failure in the inner loop is sufficient cause to give
3335 up. */
3336 if (tpoint->handle == NULL)
3337 break;
3338 }
3339
3340 /* Any error in tracepoint insertion is unacceptable; better to
3341 address the problem now, than end up with a useless or misleading
3342 trace run. */
3343 if (tpoint != NULL)
3344 {
3345 clear_installed_tracepoints ();
3346 if (*packet == '\0')
3347 write_enn (packet);
3348 unpause_all (1);
3349 return;
3350 }
3351
3352 stopping_tracepoint = NULL;
3353 trace_buffer_is_full = 0;
3354 expr_eval_result = expr_eval_no_error;
3355 error_tracepoint = NULL;
3356 tracing_start_time = get_timestamp ();
3357
3358 /* Tracing is now active, hits will now start being logged. */
3359 tracing = 1;
3360
3361 if (agent_loaded_p ())
3362 {
3363 if (write_inferior_integer (ipa_sym_addrs.addr_tracing, 1))
3364 {
3365 internal_error (__FILE__, __LINE__,
3366 "Error setting tracing variable in lib");
3367 }
3368
3369 if (write_inferior_data_pointer (ipa_sym_addrs.addr_stopping_tracepoint,
3370 0))
3371 {
3372 internal_error (__FILE__, __LINE__,
3373 "Error clearing stopping_tracepoint variable"
3374 " in lib");
3375 }
3376
3377 if (write_inferior_integer (ipa_sym_addrs.addr_trace_buffer_is_full, 0))
3378 {
3379 internal_error (__FILE__, __LINE__,
3380 "Error clearing trace_buffer_is_full variable"
3381 " in lib");
3382 }
3383
3384 stop_tracing_bkpt = set_breakpoint_at (ipa_sym_addrs.addr_stop_tracing,
3385 stop_tracing_handler);
3386 if (stop_tracing_bkpt == NULL)
3387 error ("Error setting stop_tracing breakpoint");
3388
3389 flush_trace_buffer_bkpt
3390 = set_breakpoint_at (ipa_sym_addrs.addr_flush_trace_buffer,
3391 flush_trace_buffer_handler);
3392 if (flush_trace_buffer_bkpt == NULL)
3393 error ("Error setting flush_trace_buffer breakpoint");
3394 }
3395
3396 unpause_all (1);
3397
3398 write_ok (packet);
3399 }
3400
3401 /* End a tracing run, filling in a stop reason to report back to GDB,
3402 and removing the tracepoints from the code. */
3403
3404 void
3405 stop_tracing (void)
3406 {
3407 if (!tracing)
3408 {
3409 trace_debug ("Tracing is already off, ignoring");
3410 return;
3411 }
3412
3413 trace_debug ("Stopping the trace");
3414
3415 /* Pause all threads before removing fast jumps from memory,
3416 breakpoints, and touching IPA state variables (inferior memory).
3417 Some thread may hit the internal tracing breakpoints, or be
3418 collecting this moment, but that's ok, we don't release the
3419 tpoint object's memory or the jump pads here (we only do that
3420 when we're sure we can move all threads out of the jump pads).
3421 We can't now, since we may be getting here due to the inferior
3422 agent calling us. */
3423 pause_all (1);
3424
3425 /* Stop logging. Tracepoints can still be hit, but they will not be
3426 recorded. */
3427 tracing = 0;
3428 if (agent_loaded_p ())
3429 {
3430 if (write_inferior_integer (ipa_sym_addrs.addr_tracing, 0))
3431 {
3432 internal_error (__FILE__, __LINE__,
3433 "Error clearing tracing variable in lib");
3434 }
3435 }
3436
3437 tracing_stop_time = get_timestamp ();
3438 tracing_stop_reason = "t???";
3439 tracing_stop_tpnum = 0;
3440 if (stopping_tracepoint)
3441 {
3442 trace_debug ("Stopping the trace because "
3443 "tracepoint %d was hit %" PRIu64 " times",
3444 stopping_tracepoint->number,
3445 stopping_tracepoint->pass_count);
3446 tracing_stop_reason = "tpasscount";
3447 tracing_stop_tpnum = stopping_tracepoint->number;
3448 }
3449 else if (trace_buffer_is_full)
3450 {
3451 trace_debug ("Stopping the trace because the trace buffer is full");
3452 tracing_stop_reason = "tfull";
3453 }
3454 else if (expr_eval_result != expr_eval_no_error)
3455 {
3456 trace_debug ("Stopping the trace because of an expression eval error");
3457 tracing_stop_reason = eval_result_names[expr_eval_result];
3458 tracing_stop_tpnum = error_tracepoint->number;
3459 }
3460 #ifndef IN_PROCESS_AGENT
3461 else if (!gdb_connected ())
3462 {
3463 trace_debug ("Stopping the trace because GDB disconnected");
3464 tracing_stop_reason = "tdisconnected";
3465 }
3466 #endif
3467 else
3468 {
3469 trace_debug ("Stopping the trace because of a tstop command");
3470 tracing_stop_reason = "tstop";
3471 }
3472
3473 stopping_tracepoint = NULL;
3474 error_tracepoint = NULL;
3475
3476 /* Clear out the tracepoints. */
3477 clear_installed_tracepoints ();
3478
3479 if (agent_loaded_p ())
3480 {
3481 /* Pull in fast tracepoint trace frames from the inferior lib
3482 buffer into our buffer, even if our buffer is already full,
3483 because we want to present the full number of created frames
3484 in addition to what fit in the trace buffer. */
3485 upload_fast_traceframes ();
3486 }
3487
3488 if (stop_tracing_bkpt != NULL)
3489 {
3490 delete_breakpoint (stop_tracing_bkpt);
3491 stop_tracing_bkpt = NULL;
3492 }
3493
3494 if (flush_trace_buffer_bkpt != NULL)
3495 {
3496 delete_breakpoint (flush_trace_buffer_bkpt);
3497 flush_trace_buffer_bkpt = NULL;
3498 }
3499
3500 unpause_all (1);
3501 }
3502
3503 static int
3504 stop_tracing_handler (CORE_ADDR addr)
3505 {
3506 trace_debug ("lib hit stop_tracing");
3507
3508 /* Don't actually handle it here. When we stop tracing we remove
3509 breakpoints from the inferior, and that is not allowed in a
3510 breakpoint handler (as the caller is walking the breakpoint
3511 list). */
3512 return 0;
3513 }
3514
3515 static int
3516 flush_trace_buffer_handler (CORE_ADDR addr)
3517 {
3518 trace_debug ("lib hit flush_trace_buffer");
3519 return 0;
3520 }
3521
3522 static void
3523 cmd_qtstop (char *packet)
3524 {
3525 stop_tracing ();
3526 write_ok (packet);
3527 }
3528
3529 static void
3530 cmd_qtdisconnected (char *own_buf)
3531 {
3532 ULONGEST setting;
3533 char *packet = own_buf;
3534
3535 packet += strlen ("QTDisconnected:");
3536
3537 unpack_varlen_hex (packet, &setting);
3538
3539 write_ok (own_buf);
3540
3541 disconnected_tracing = setting;
3542 }
3543
3544 static void
3545 cmd_qtframe (char *own_buf)
3546 {
3547 ULONGEST frame, pc, lo, hi, num;
3548 int tfnum, tpnum;
3549 struct traceframe *tframe;
3550 char *packet = own_buf;
3551
3552 packet += strlen ("QTFrame:");
3553
3554 if (startswith (packet, "pc:"))
3555 {
3556 packet += strlen ("pc:");
3557 unpack_varlen_hex (packet, &pc);
3558 trace_debug ("Want to find next traceframe at pc=0x%s", paddress (pc));
3559 tframe = find_next_traceframe_in_range (pc, pc, 1, &tfnum);
3560 }
3561 else if (startswith (packet, "range:"))
3562 {
3563 packet += strlen ("range:");
3564 packet = unpack_varlen_hex (packet, &lo);
3565 ++packet;
3566 unpack_varlen_hex (packet, &hi);
3567 trace_debug ("Want to find next traceframe in the range 0x%s to 0x%s",
3568 paddress (lo), paddress (hi));
3569 tframe = find_next_traceframe_in_range (lo, hi, 1, &tfnum);
3570 }
3571 else if (startswith (packet, "outside:"))
3572 {
3573 packet += strlen ("outside:");
3574 packet = unpack_varlen_hex (packet, &lo);
3575 ++packet;
3576 unpack_varlen_hex (packet, &hi);
3577 trace_debug ("Want to find next traceframe "
3578 "outside the range 0x%s to 0x%s",
3579 paddress (lo), paddress (hi));
3580 tframe = find_next_traceframe_in_range (lo, hi, 0, &tfnum);
3581 }
3582 else if (startswith (packet, "tdp:"))
3583 {
3584 packet += strlen ("tdp:");
3585 unpack_varlen_hex (packet, &num);
3586 tpnum = (int) num;
3587 trace_debug ("Want to find next traceframe for tracepoint %d", tpnum);
3588 tframe = find_next_traceframe_by_tracepoint (tpnum, &tfnum);
3589 }
3590 else
3591 {
3592 unpack_varlen_hex (packet, &frame);
3593 tfnum = (int) frame;
3594 if (tfnum == -1)
3595 {
3596 trace_debug ("Want to stop looking at traceframes");
3597 current_traceframe = -1;
3598 write_ok (own_buf);
3599 return;
3600 }
3601 trace_debug ("Want to look at traceframe %d", tfnum);
3602 tframe = find_traceframe (tfnum);
3603 }
3604
3605 if (tframe)
3606 {
3607 current_traceframe = tfnum;
3608 sprintf (own_buf, "F%xT%x", tfnum, tframe->tpnum);
3609 }
3610 else
3611 sprintf (own_buf, "F-1");
3612 }
3613
3614 static void
3615 cmd_qtstatus (char *packet)
3616 {
3617 char *stop_reason_rsp = NULL;
3618 char *buf1, *buf2, *buf3;
3619 const char *str;
3620 int slen;
3621
3622 /* Translate the plain text of the notes back into hex for
3623 transmission. */
3624
3625 str = (tracing_user_name ? tracing_user_name : "");
3626 slen = strlen (str);
3627 buf1 = (char *) alloca (slen * 2 + 1);
3628 bin2hex ((gdb_byte *) str, buf1, slen);
3629
3630 str = (tracing_notes ? tracing_notes : "");
3631 slen = strlen (str);
3632 buf2 = (char *) alloca (slen * 2 + 1);
3633 bin2hex ((gdb_byte *) str, buf2, slen);
3634
3635 str = (tracing_stop_note ? tracing_stop_note : "");
3636 slen = strlen (str);
3637 buf3 = (char *) alloca (slen * 2 + 1);
3638 bin2hex ((gdb_byte *) str, buf3, slen);
3639
3640 trace_debug ("Returning trace status as %d, stop reason %s",
3641 tracing, tracing_stop_reason);
3642
3643 if (agent_loaded_p ())
3644 {
3645 pause_all (1);
3646
3647 upload_fast_traceframes ();
3648
3649 unpause_all (1);
3650 }
3651
3652 stop_reason_rsp = (char *) tracing_stop_reason;
3653
3654 /* The user visible error string in terror needs to be hex encoded.
3655 We leave it as plain string in `tracing_stop_reason' to ease
3656 debugging. */
3657 if (startswith (stop_reason_rsp, "terror:"))
3658 {
3659 const char *result_name;
3660 int hexstr_len;
3661 char *p;
3662
3663 result_name = stop_reason_rsp + strlen ("terror:");
3664 hexstr_len = strlen (result_name) * 2;
3665 p = stop_reason_rsp = alloca (strlen ("terror:") + hexstr_len + 1);
3666 strcpy (p, "terror:");
3667 p += strlen (p);
3668 bin2hex ((gdb_byte *) result_name, p, strlen (result_name));
3669 }
3670
3671 /* If this was a forced stop, include any stop note that was supplied. */
3672 if (strcmp (stop_reason_rsp, "tstop") == 0)
3673 {
3674 stop_reason_rsp = alloca (strlen ("tstop:") + strlen (buf3) + 1);
3675 strcpy (stop_reason_rsp, "tstop:");
3676 strcat (stop_reason_rsp, buf3);
3677 }
3678
3679 sprintf (packet,
3680 "T%d;"
3681 "%s:%x;"
3682 "tframes:%x;tcreated:%x;"
3683 "tfree:%x;tsize:%s;"
3684 "circular:%d;"
3685 "disconn:%d;"
3686 "starttime:%s;stoptime:%s;"
3687 "username:%s;notes:%s:",
3688 tracing ? 1 : 0,
3689 stop_reason_rsp, tracing_stop_tpnum,
3690 traceframe_count, traceframes_created,
3691 free_space (), phex_nz (trace_buffer_hi - trace_buffer_lo, 0),
3692 circular_trace_buffer,
3693 disconnected_tracing,
3694 phex_nz (tracing_start_time, sizeof (tracing_start_time)),
3695 phex_nz (tracing_stop_time, sizeof (tracing_stop_time)),
3696 buf1, buf2);
3697 }
3698
3699 static void
3700 cmd_qtp (char *own_buf)
3701 {
3702 ULONGEST num, addr;
3703 struct tracepoint *tpoint;
3704 char *packet = own_buf;
3705
3706 packet += strlen ("qTP:");
3707
3708 packet = unpack_varlen_hex (packet, &num);
3709 ++packet; /* skip a colon */
3710 packet = unpack_varlen_hex (packet, &addr);
3711
3712 /* See if we already have this tracepoint. */
3713 tpoint = find_tracepoint (num, addr);
3714
3715 if (!tpoint)
3716 {
3717 trace_debug ("Tracepoint error: tracepoint %d at 0x%s not found",
3718 (int) num, paddress (addr));
3719 write_enn (own_buf);
3720 return;
3721 }
3722
3723 sprintf (own_buf, "V%" PRIu64 ":%" PRIu64 "", tpoint->hit_count,
3724 tpoint->traceframe_usage);
3725 }
3726
3727 /* State variables to help return all the tracepoint bits. */
3728 static struct tracepoint *cur_tpoint;
3729 static unsigned int cur_action;
3730 static unsigned int cur_step_action;
3731 static struct source_string *cur_source_string;
3732 static struct trace_state_variable *cur_tsv;
3733
3734 /* Compose a response that is an imitation of the syntax by which the
3735 tracepoint was originally downloaded. */
3736
3737 static void
3738 response_tracepoint (char *packet, struct tracepoint *tpoint)
3739 {
3740 char *buf;
3741
3742 sprintf (packet, "T%x:%s:%c:%" PRIx64 ":%" PRIx64, tpoint->number,
3743 paddress (tpoint->address),
3744 (tpoint->enabled ? 'E' : 'D'), tpoint->step_count,
3745 tpoint->pass_count);
3746 if (tpoint->type == fast_tracepoint)
3747 sprintf (packet + strlen (packet), ":F%x", tpoint->orig_size);
3748 else if (tpoint->type == static_tracepoint)
3749 sprintf (packet + strlen (packet), ":S");
3750
3751 if (tpoint->cond)
3752 {
3753 buf = gdb_unparse_agent_expr (tpoint->cond);
3754 sprintf (packet + strlen (packet), ":X%x,%s",
3755 tpoint->cond->length, buf);
3756 free (buf);
3757 }
3758 }
3759
3760 /* Compose a response that is an imitation of the syntax by which the
3761 tracepoint action was originally downloaded (with the difference
3762 that due to the way we store the actions, this will output a packet
3763 per action, while GDB could have combined more than one action
3764 per-packet. */
3765
3766 static void
3767 response_action (char *packet, struct tracepoint *tpoint,
3768 char *taction, int step)
3769 {
3770 sprintf (packet, "%c%x:%s:%s",
3771 (step ? 'S' : 'A'), tpoint->number, paddress (tpoint->address),
3772 taction);
3773 }
3774
3775 /* Compose a response that is an imitation of the syntax by which the
3776 tracepoint source piece was originally downloaded. */
3777
3778 static void
3779 response_source (char *packet,
3780 struct tracepoint *tpoint, struct source_string *src)
3781 {
3782 char *buf;
3783 int len;
3784
3785 len = strlen (src->str);
3786 buf = alloca (len * 2 + 1);
3787 bin2hex ((gdb_byte *) src->str, buf, len);
3788
3789 sprintf (packet, "Z%x:%s:%s:%x:%x:%s",
3790 tpoint->number, paddress (tpoint->address),
3791 src->type, 0, len, buf);
3792 }
3793
3794 /* Return the first piece of tracepoint definition, and initialize the
3795 state machine that will iterate through all the tracepoint
3796 bits. */
3797
3798 static void
3799 cmd_qtfp (char *packet)
3800 {
3801 trace_debug ("Returning first tracepoint definition piece");
3802
3803 cur_tpoint = tracepoints;
3804 cur_action = cur_step_action = 0;
3805 cur_source_string = NULL;
3806
3807 if (cur_tpoint)
3808 response_tracepoint (packet, cur_tpoint);
3809 else
3810 strcpy (packet, "l");
3811 }
3812
3813 /* Return additional pieces of tracepoint definition. Each action and
3814 stepping action must go into its own packet, because of packet size
3815 limits, and so we use state variables to deliver one piece at a
3816 time. */
3817
3818 static void
3819 cmd_qtsp (char *packet)
3820 {
3821 trace_debug ("Returning subsequent tracepoint definition piece");
3822
3823 if (!cur_tpoint)
3824 {
3825 /* This case would normally never occur, but be prepared for
3826 GDB misbehavior. */
3827 strcpy (packet, "l");
3828 }
3829 else if (cur_action < cur_tpoint->numactions)
3830 {
3831 response_action (packet, cur_tpoint,
3832 cur_tpoint->actions_str[cur_action], 0);
3833 ++cur_action;
3834 }
3835 else if (cur_step_action < cur_tpoint->num_step_actions)
3836 {
3837 response_action (packet, cur_tpoint,
3838 cur_tpoint->step_actions_str[cur_step_action], 1);
3839 ++cur_step_action;
3840 }
3841 else if ((cur_source_string
3842 ? cur_source_string->next
3843 : cur_tpoint->source_strings))
3844 {
3845 if (cur_source_string)
3846 cur_source_string = cur_source_string->next;
3847 else
3848 cur_source_string = cur_tpoint->source_strings;
3849 response_source (packet, cur_tpoint, cur_source_string);
3850 }
3851 else
3852 {
3853 cur_tpoint = cur_tpoint->next;
3854 cur_action = cur_step_action = 0;
3855 cur_source_string = NULL;
3856 if (cur_tpoint)
3857 response_tracepoint (packet, cur_tpoint);
3858 else
3859 strcpy (packet, "l");
3860 }
3861 }
3862
3863 /* Compose a response that is an imitation of the syntax by which the
3864 trace state variable was originally downloaded. */
3865
3866 static void
3867 response_tsv (char *packet, struct trace_state_variable *tsv)
3868 {
3869 char *buf = (char *) "";
3870 int namelen;
3871
3872 if (tsv->name)
3873 {
3874 namelen = strlen (tsv->name);
3875 buf = alloca (namelen * 2 + 1);
3876 bin2hex ((gdb_byte *) tsv->name, buf, namelen);
3877 }
3878
3879 sprintf (packet, "%x:%s:%x:%s", tsv->number, phex_nz (tsv->initial_value, 0),
3880 tsv->getter ? 1 : 0, buf);
3881 }
3882
3883 /* Return the first trace state variable definition, and initialize
3884 the state machine that will iterate through all the tsv bits. */
3885
3886 static void
3887 cmd_qtfv (char *packet)
3888 {
3889 trace_debug ("Returning first trace state variable definition");
3890
3891 cur_tsv = trace_state_variables;
3892
3893 if (cur_tsv)
3894 response_tsv (packet, cur_tsv);
3895 else
3896 strcpy (packet, "l");
3897 }
3898
3899 /* Return additional trace state variable definitions. */
3900
3901 static void
3902 cmd_qtsv (char *packet)
3903 {
3904 trace_debug ("Returning additional trace state variable definition");
3905
3906 if (cur_tsv)
3907 {
3908 cur_tsv = cur_tsv->next;
3909 if (cur_tsv)
3910 response_tsv (packet, cur_tsv);
3911 else
3912 strcpy (packet, "l");
3913 }
3914 else
3915 strcpy (packet, "l");
3916 }
3917
3918 /* Return the first static tracepoint marker, and initialize the state
3919 machine that will iterate through all the static tracepoints
3920 markers. */
3921
3922 static void
3923 cmd_qtfstm (char *packet)
3924 {
3925 if (!maybe_write_ipa_ust_not_loaded (packet))
3926 run_inferior_command (packet, strlen (packet) + 1);
3927 }
3928
3929 /* Return additional static tracepoints markers. */
3930
3931 static void
3932 cmd_qtsstm (char *packet)
3933 {
3934 if (!maybe_write_ipa_ust_not_loaded (packet))
3935 run_inferior_command (packet, strlen (packet) + 1);
3936 }
3937
3938 /* Return the definition of the static tracepoint at a given address.
3939 Result packet is the same as qTsST's. */
3940
3941 static void
3942 cmd_qtstmat (char *packet)
3943 {
3944 if (!maybe_write_ipa_ust_not_loaded (packet))
3945 run_inferior_command (packet, strlen (packet) + 1);
3946 }
3947
3948 /* Helper for gdb_agent_about_to_close.
3949 Return non-zero if thread ENTRY is in the same process in DATA. */
3950
3951 static int
3952 same_process_p (struct inferior_list_entry *entry, void *data)
3953 {
3954 int *pid = data;
3955
3956 return ptid_get_pid (entry->id) == *pid;
3957 }
3958
3959 /* Sent the agent a command to close it. */
3960
3961 void
3962 gdb_agent_about_to_close (int pid)
3963 {
3964 char buf[IPA_CMD_BUF_SIZE];
3965
3966 if (!maybe_write_ipa_not_loaded (buf))
3967 {
3968 struct thread_info *saved_thread;
3969
3970 saved_thread = current_thread;
3971
3972 /* Find any thread which belongs to process PID. */
3973 current_thread = (struct thread_info *)
3974 find_inferior (&all_threads, same_process_p, &pid);
3975
3976 strcpy (buf, "close");
3977
3978 run_inferior_command (buf, strlen (buf) + 1);
3979
3980 current_thread = saved_thread;
3981 }
3982 }
3983
3984 /* Return the minimum instruction size needed for fast tracepoints as a
3985 hexadecimal number. */
3986
3987 static void
3988 cmd_qtminftpilen (char *packet)
3989 {
3990 if (current_thread == NULL)
3991 {
3992 /* Indicate that the minimum length is currently unknown. */
3993 strcpy (packet, "0");
3994 return;
3995 }
3996
3997 sprintf (packet, "%x", target_get_min_fast_tracepoint_insn_len ());
3998 }
3999
4000 /* Respond to qTBuffer packet with a block of raw data from the trace
4001 buffer. GDB may ask for a lot, but we are allowed to reply with
4002 only as much as will fit within packet limits or whatever. */
4003
4004 static void
4005 cmd_qtbuffer (char *own_buf)
4006 {
4007 ULONGEST offset, num, tot;
4008 unsigned char *tbp;
4009 char *packet = own_buf;
4010
4011 packet += strlen ("qTBuffer:");
4012
4013 packet = unpack_varlen_hex (packet, &offset);
4014 ++packet; /* skip a comma */
4015 unpack_varlen_hex (packet, &num);
4016
4017 trace_debug ("Want to get trace buffer, %d bytes at offset 0x%s",
4018 (int) num, phex_nz (offset, 0));
4019
4020 tot = (trace_buffer_hi - trace_buffer_lo) - free_space ();
4021
4022 /* If we're right at the end, reply specially that we're done. */
4023 if (offset == tot)
4024 {
4025 strcpy (own_buf, "l");
4026 return;
4027 }
4028
4029 /* Object to any other out-of-bounds request. */
4030 if (offset > tot)
4031 {
4032 write_enn (own_buf);
4033 return;
4034 }
4035
4036 /* Compute the pointer corresponding to the given offset, accounting
4037 for wraparound. */
4038 tbp = trace_buffer_start + offset;
4039 if (tbp >= trace_buffer_wrap)
4040 tbp -= (trace_buffer_wrap - trace_buffer_lo);
4041
4042 /* Trim to the remaining bytes if we're close to the end. */
4043 if (num > tot - offset)
4044 num = tot - offset;
4045
4046 /* Trim to available packet size. */
4047 if (num >= (PBUFSIZ - 16) / 2 )
4048 num = (PBUFSIZ - 16) / 2;
4049
4050 bin2hex (tbp, own_buf, num);
4051 }
4052
4053 static void
4054 cmd_bigqtbuffer_circular (char *own_buf)
4055 {
4056 ULONGEST val;
4057 char *packet = own_buf;
4058
4059 packet += strlen ("QTBuffer:circular:");
4060
4061 unpack_varlen_hex (packet, &val);
4062 circular_trace_buffer = val;
4063 trace_debug ("Trace buffer is now %s",
4064 circular_trace_buffer ? "circular" : "linear");
4065 write_ok (own_buf);
4066 }
4067
4068 static void
4069 cmd_bigqtbuffer_size (char *own_buf)
4070 {
4071 ULONGEST val;
4072 LONGEST sval;
4073 char *packet = own_buf;
4074
4075 /* Can't change the size during a tracing run. */
4076 if (tracing)
4077 {
4078 write_enn (own_buf);
4079 return;
4080 }
4081
4082 packet += strlen ("QTBuffer:size:");
4083
4084 /* -1 is sent as literal "-1". */
4085 if (strcmp (packet, "-1") == 0)
4086 sval = DEFAULT_TRACE_BUFFER_SIZE;
4087 else
4088 {
4089 unpack_varlen_hex (packet, &val);
4090 sval = (LONGEST) val;
4091 }
4092
4093 init_trace_buffer (sval);
4094 trace_debug ("Trace buffer is now %s bytes",
4095 plongest (trace_buffer_size));
4096 write_ok (own_buf);
4097 }
4098
4099 static void
4100 cmd_qtnotes (char *own_buf)
4101 {
4102 size_t nbytes;
4103 char *saved, *user, *notes, *stopnote;
4104 char *packet = own_buf;
4105
4106 packet += strlen ("QTNotes:");
4107
4108 while (*packet)
4109 {
4110 if (startswith (packet, "user:"))
4111 {
4112 packet += strlen ("user:");
4113 saved = packet;
4114 packet = strchr (packet, ';');
4115 nbytes = (packet - saved) / 2;
4116 user = xmalloc (nbytes + 1);
4117 nbytes = hex2bin (saved, (gdb_byte *) user, nbytes);
4118 user[nbytes] = '\0';
4119 ++packet; /* skip the semicolon */
4120 trace_debug ("User is '%s'", user);
4121 xfree (tracing_user_name);
4122 tracing_user_name = user;
4123 }
4124 else if (startswith (packet, "notes:"))
4125 {
4126 packet += strlen ("notes:");
4127 saved = packet;
4128 packet = strchr (packet, ';');
4129 nbytes = (packet - saved) / 2;
4130 notes = xmalloc (nbytes + 1);
4131 nbytes = hex2bin (saved, (gdb_byte *) notes, nbytes);
4132 notes[nbytes] = '\0';
4133 ++packet; /* skip the semicolon */
4134 trace_debug ("Notes is '%s'", notes);
4135 xfree (tracing_notes);
4136 tracing_notes = notes;
4137 }
4138 else if (startswith (packet, "tstop:"))
4139 {
4140 packet += strlen ("tstop:");
4141 saved = packet;
4142 packet = strchr (packet, ';');
4143 nbytes = (packet - saved) / 2;
4144 stopnote = xmalloc (nbytes + 1);
4145 nbytes = hex2bin (saved, (gdb_byte *) stopnote, nbytes);
4146 stopnote[nbytes] = '\0';
4147 ++packet; /* skip the semicolon */
4148 trace_debug ("tstop note is '%s'", stopnote);
4149 xfree (tracing_stop_note);
4150 tracing_stop_note = stopnote;
4151 }
4152 else
4153 break;
4154 }
4155
4156 write_ok (own_buf);
4157 }
4158
4159 int
4160 handle_tracepoint_general_set (char *packet)
4161 {
4162 if (strcmp ("QTinit", packet) == 0)
4163 {
4164 cmd_qtinit (packet);
4165 return 1;
4166 }
4167 else if (startswith (packet, "QTDP:"))
4168 {
4169 cmd_qtdp (packet);
4170 return 1;
4171 }
4172 else if (startswith (packet, "QTDPsrc:"))
4173 {
4174 cmd_qtdpsrc (packet);
4175 return 1;
4176 }
4177 else if (startswith (packet, "QTEnable:"))
4178 {
4179 cmd_qtenable_disable (packet, 1);
4180 return 1;
4181 }
4182 else if (startswith (packet, "QTDisable:"))
4183 {
4184 cmd_qtenable_disable (packet, 0);
4185 return 1;
4186 }
4187 else if (startswith (packet, "QTDV:"))
4188 {
4189 cmd_qtdv (packet);
4190 return 1;
4191 }
4192 else if (startswith (packet, "QTro:"))
4193 {
4194 cmd_qtro (packet);
4195 return 1;
4196 }
4197 else if (strcmp ("QTStart", packet) == 0)
4198 {
4199 cmd_qtstart (packet);
4200 return 1;
4201 }
4202 else if (strcmp ("QTStop", packet) == 0)
4203 {
4204 cmd_qtstop (packet);
4205 return 1;
4206 }
4207 else if (startswith (packet, "QTDisconnected:"))
4208 {
4209 cmd_qtdisconnected (packet);
4210 return 1;
4211 }
4212 else if (startswith (packet, "QTFrame:"))
4213 {
4214 cmd_qtframe (packet);
4215 return 1;
4216 }
4217 else if (startswith (packet, "QTBuffer:circular:"))
4218 {
4219 cmd_bigqtbuffer_circular (packet);
4220 return 1;
4221 }
4222 else if (startswith (packet, "QTBuffer:size:"))
4223 {
4224 cmd_bigqtbuffer_size (packet);
4225 return 1;
4226 }
4227 else if (startswith (packet, "QTNotes:"))
4228 {
4229 cmd_qtnotes (packet);
4230 return 1;
4231 }
4232
4233 return 0;
4234 }
4235
4236 int
4237 handle_tracepoint_query (char *packet)
4238 {
4239 if (strcmp ("qTStatus", packet) == 0)
4240 {
4241 cmd_qtstatus (packet);
4242 return 1;
4243 }
4244 else if (startswith (packet, "qTP:"))
4245 {
4246 cmd_qtp (packet);
4247 return 1;
4248 }
4249 else if (strcmp ("qTfP", packet) == 0)
4250 {
4251 cmd_qtfp (packet);
4252 return 1;
4253 }
4254 else if (strcmp ("qTsP", packet) == 0)
4255 {
4256 cmd_qtsp (packet);
4257 return 1;
4258 }
4259 else if (strcmp ("qTfV", packet) == 0)
4260 {
4261 cmd_qtfv (packet);
4262 return 1;
4263 }
4264 else if (strcmp ("qTsV", packet) == 0)
4265 {
4266 cmd_qtsv (packet);
4267 return 1;
4268 }
4269 else if (startswith (packet, "qTV:"))
4270 {
4271 cmd_qtv (packet);
4272 return 1;
4273 }
4274 else if (startswith (packet, "qTBuffer:"))
4275 {
4276 cmd_qtbuffer (packet);
4277 return 1;
4278 }
4279 else if (strcmp ("qTfSTM", packet) == 0)
4280 {
4281 cmd_qtfstm (packet);
4282 return 1;
4283 }
4284 else if (strcmp ("qTsSTM", packet) == 0)
4285 {
4286 cmd_qtsstm (packet);
4287 return 1;
4288 }
4289 else if (startswith (packet, "qTSTMat:"))
4290 {
4291 cmd_qtstmat (packet);
4292 return 1;
4293 }
4294 else if (strcmp ("qTMinFTPILen", packet) == 0)
4295 {
4296 cmd_qtminftpilen (packet);
4297 return 1;
4298 }
4299
4300 return 0;
4301 }
4302
4303 #endif
4304 #ifndef IN_PROCESS_AGENT
4305
4306 /* Call this when thread TINFO has hit the tracepoint defined by
4307 TP_NUMBER and TP_ADDRESS, and that tracepoint has a while-stepping
4308 action. This adds a while-stepping collecting state item to the
4309 threads' collecting state list, so that we can keep track of
4310 multiple simultaneous while-stepping actions being collected by the
4311 same thread. This can happen in cases like:
4312
4313 ff0001 INSN1 <-- TP1, while-stepping 10 collect $regs
4314 ff0002 INSN2
4315 ff0003 INSN3 <-- TP2, collect $regs
4316 ff0004 INSN4 <-- TP3, while-stepping 10 collect $regs
4317 ff0005 INSN5
4318
4319 Notice that when instruction INSN5 is reached, the while-stepping
4320 actions of both TP1 and TP3 are still being collected, and that TP2
4321 had been collected meanwhile. The whole range of ff0001-ff0005
4322 should be single-stepped, due to at least TP1's while-stepping
4323 action covering the whole range. */
4324
4325 static void
4326 add_while_stepping_state (struct thread_info *tinfo,
4327 int tp_number, CORE_ADDR tp_address)
4328 {
4329 struct wstep_state *wstep = XNEW (struct wstep_state);
4330
4331 wstep->next = tinfo->while_stepping;
4332
4333 wstep->tp_number = tp_number;
4334 wstep->tp_address = tp_address;
4335 wstep->current_step = 0;
4336
4337 tinfo->while_stepping = wstep;
4338 }
4339
4340 /* Release the while-stepping collecting state WSTEP. */
4341
4342 static void
4343 release_while_stepping_state (struct wstep_state *wstep)
4344 {
4345 free (wstep);
4346 }
4347
4348 /* Release all while-stepping collecting states currently associated
4349 with thread TINFO. */
4350
4351 void
4352 release_while_stepping_state_list (struct thread_info *tinfo)
4353 {
4354 struct wstep_state *head;
4355
4356 while (tinfo->while_stepping)
4357 {
4358 head = tinfo->while_stepping;
4359 tinfo->while_stepping = head->next;
4360 release_while_stepping_state (head);
4361 }
4362 }
4363
4364 /* If TINFO was handling a 'while-stepping' action, the step has
4365 finished, so collect any step data needed, and check if any more
4366 steps are required. Return true if the thread was indeed
4367 collecting tracepoint data, false otherwise. */
4368
4369 int
4370 tracepoint_finished_step (struct thread_info *tinfo, CORE_ADDR stop_pc)
4371 {
4372 struct tracepoint *tpoint;
4373 struct wstep_state *wstep;
4374 struct wstep_state **wstep_link;
4375 struct trap_tracepoint_ctx ctx;
4376
4377 /* Pull in fast tracepoint trace frames from the inferior lib buffer into
4378 our buffer. */
4379 if (agent_loaded_p ())
4380 upload_fast_traceframes ();
4381
4382 /* Check if we were indeed collecting data for one of more
4383 tracepoints with a 'while-stepping' count. */
4384 if (tinfo->while_stepping == NULL)
4385 return 0;
4386
4387 if (!tracing)
4388 {
4389 /* We're not even tracing anymore. Stop this thread from
4390 collecting. */
4391 release_while_stepping_state_list (tinfo);
4392
4393 /* The thread had stopped due to a single-step request indeed
4394 explained by a tracepoint. */
4395 return 1;
4396 }
4397
4398 wstep = tinfo->while_stepping;
4399 wstep_link = &tinfo->while_stepping;
4400
4401 trace_debug ("Thread %s finished a single-step for tracepoint %d at 0x%s",
4402 target_pid_to_str (tinfo->entry.id),
4403 wstep->tp_number, paddress (wstep->tp_address));
4404
4405 ctx.base.type = trap_tracepoint;
4406 ctx.regcache = get_thread_regcache (tinfo, 1);
4407
4408 while (wstep != NULL)
4409 {
4410 tpoint = find_tracepoint (wstep->tp_number, wstep->tp_address);
4411 if (tpoint == NULL)
4412 {
4413 trace_debug ("NO TRACEPOINT %d at 0x%s FOR THREAD %s!",
4414 wstep->tp_number, paddress (wstep->tp_address),
4415 target_pid_to_str (tinfo->entry.id));
4416
4417 /* Unlink. */
4418 *wstep_link = wstep->next;
4419 release_while_stepping_state (wstep);
4420 wstep = *wstep_link;
4421 continue;
4422 }
4423
4424 /* We've just finished one step. */
4425 ++wstep->current_step;
4426
4427 /* Collect data. */
4428 collect_data_at_step ((struct tracepoint_hit_ctx *) &ctx,
4429 stop_pc, tpoint, wstep->current_step);
4430
4431 if (wstep->current_step >= tpoint->step_count)
4432 {
4433 /* The requested numbers of steps have occurred. */
4434 trace_debug ("Thread %s done stepping for tracepoint %d at 0x%s",
4435 target_pid_to_str (tinfo->entry.id),
4436 wstep->tp_number, paddress (wstep->tp_address));
4437
4438 /* Unlink the wstep. */
4439 *wstep_link = wstep->next;
4440 release_while_stepping_state (wstep);
4441 wstep = *wstep_link;
4442
4443 /* Only check the hit count now, which ensure that we do all
4444 our stepping before stopping the run. */
4445 if (tpoint->pass_count > 0
4446 && tpoint->hit_count >= tpoint->pass_count
4447 && stopping_tracepoint == NULL)
4448 stopping_tracepoint = tpoint;
4449 }
4450 else
4451 {
4452 /* Keep single-stepping until the requested numbers of steps
4453 have occurred. */
4454 wstep_link = &wstep->next;
4455 wstep = *wstep_link;
4456 }
4457
4458 if (stopping_tracepoint
4459 || trace_buffer_is_full
4460 || expr_eval_result != expr_eval_no_error)
4461 {
4462 stop_tracing ();
4463 break;
4464 }
4465 }
4466
4467 return 1;
4468 }
4469
4470 /* Handle any internal tracing control breakpoint hits. That means,
4471 pull traceframes from the IPA to our buffer, and syncing both
4472 tracing agents when the IPA's tracing stops for some reason. */
4473
4474 int
4475 handle_tracepoint_bkpts (struct thread_info *tinfo, CORE_ADDR stop_pc)
4476 {
4477 /* Pull in fast tracepoint trace frames from the inferior in-process
4478 agent's buffer into our buffer. */
4479
4480 if (!agent_loaded_p ())
4481 return 0;
4482
4483 upload_fast_traceframes ();
4484
4485 /* Check if the in-process agent had decided we should stop
4486 tracing. */
4487 if (stop_pc == ipa_sym_addrs.addr_stop_tracing)
4488 {
4489 int ipa_trace_buffer_is_full;
4490 CORE_ADDR ipa_stopping_tracepoint;
4491 int ipa_expr_eval_result;
4492 CORE_ADDR ipa_error_tracepoint;
4493
4494 trace_debug ("lib stopped at stop_tracing");
4495
4496 read_inferior_integer (ipa_sym_addrs.addr_trace_buffer_is_full,
4497 &ipa_trace_buffer_is_full);
4498
4499 read_inferior_data_pointer (ipa_sym_addrs.addr_stopping_tracepoint,
4500 &ipa_stopping_tracepoint);
4501 write_inferior_data_pointer (ipa_sym_addrs.addr_stopping_tracepoint, 0);
4502
4503 read_inferior_data_pointer (ipa_sym_addrs.addr_error_tracepoint,
4504 &ipa_error_tracepoint);
4505 write_inferior_data_pointer (ipa_sym_addrs.addr_error_tracepoint, 0);
4506
4507 read_inferior_integer (ipa_sym_addrs.addr_expr_eval_result,
4508 &ipa_expr_eval_result);
4509 write_inferior_integer (ipa_sym_addrs.addr_expr_eval_result, 0);
4510
4511 trace_debug ("lib: trace_buffer_is_full: %d, "
4512 "stopping_tracepoint: %s, "
4513 "ipa_expr_eval_result: %d, "
4514 "error_tracepoint: %s, ",
4515 ipa_trace_buffer_is_full,
4516 paddress (ipa_stopping_tracepoint),
4517 ipa_expr_eval_result,
4518 paddress (ipa_error_tracepoint));
4519
4520 if (debug_threads)
4521 {
4522 if (ipa_trace_buffer_is_full)
4523 trace_debug ("lib stopped due to full buffer.");
4524 if (ipa_stopping_tracepoint)
4525 trace_debug ("lib stopped due to tpoint");
4526 if (ipa_stopping_tracepoint)
4527 trace_debug ("lib stopped due to error");
4528 }
4529
4530 if (ipa_stopping_tracepoint != 0)
4531 {
4532 stopping_tracepoint
4533 = fast_tracepoint_from_ipa_tpoint_address (ipa_stopping_tracepoint);
4534 }
4535 else if (ipa_expr_eval_result != expr_eval_no_error)
4536 {
4537 expr_eval_result = ipa_expr_eval_result;
4538 error_tracepoint
4539 = fast_tracepoint_from_ipa_tpoint_address (ipa_error_tracepoint);
4540 }
4541 stop_tracing ();
4542 return 1;
4543 }
4544 else if (stop_pc == ipa_sym_addrs.addr_flush_trace_buffer)
4545 {
4546 trace_debug ("lib stopped at flush_trace_buffer");
4547 return 1;
4548 }
4549
4550 return 0;
4551 }
4552
4553 /* Return true if TINFO just hit a tracepoint. Collect data if
4554 so. */
4555
4556 int
4557 tracepoint_was_hit (struct thread_info *tinfo, CORE_ADDR stop_pc)
4558 {
4559 struct tracepoint *tpoint;
4560 int ret = 0;
4561 struct trap_tracepoint_ctx ctx;
4562
4563 /* Not tracing, don't handle. */
4564 if (!tracing)
4565 return 0;
4566
4567 ctx.base.type = trap_tracepoint;
4568 ctx.regcache = get_thread_regcache (tinfo, 1);
4569
4570 for (tpoint = tracepoints; tpoint; tpoint = tpoint->next)
4571 {
4572 /* Note that we collect fast tracepoints here as well. We'll
4573 step over the fast tracepoint jump later, which avoids the
4574 double collect. However, we don't collect for static
4575 tracepoints here, because UST markers are compiled in program,
4576 and probes will be executed in program. So static tracepoints
4577 are collected there. */
4578 if (tpoint->enabled && stop_pc == tpoint->address
4579 && tpoint->type != static_tracepoint)
4580 {
4581 trace_debug ("Thread %s at address of tracepoint %d at 0x%s",
4582 target_pid_to_str (tinfo->entry.id),
4583 tpoint->number, paddress (tpoint->address));
4584
4585 /* Test the condition if present, and collect if true. */
4586 if (!tpoint->cond
4587 || (condition_true_at_tracepoint
4588 ((struct tracepoint_hit_ctx *) &ctx, tpoint)))
4589 collect_data_at_tracepoint ((struct tracepoint_hit_ctx *) &ctx,
4590 stop_pc, tpoint);
4591
4592 if (stopping_tracepoint
4593 || trace_buffer_is_full
4594 || expr_eval_result != expr_eval_no_error)
4595 {
4596 stop_tracing ();
4597 }
4598 /* If the tracepoint had a 'while-stepping' action, then set
4599 the thread to collect this tracepoint on the following
4600 single-steps. */
4601 else if (tpoint->step_count > 0)
4602 {
4603 add_while_stepping_state (tinfo,
4604 tpoint->number, tpoint->address);
4605 }
4606
4607 ret = 1;
4608 }
4609 }
4610
4611 return ret;
4612 }
4613
4614 #endif
4615
4616 #if defined IN_PROCESS_AGENT && defined HAVE_UST
4617 struct ust_marker_data;
4618 static void collect_ust_data_at_tracepoint (struct tracepoint_hit_ctx *ctx,
4619 struct traceframe *tframe);
4620 #endif
4621
4622 /* Create a trace frame for the hit of the given tracepoint in the
4623 given thread. */
4624
4625 static void
4626 collect_data_at_tracepoint (struct tracepoint_hit_ctx *ctx, CORE_ADDR stop_pc,
4627 struct tracepoint *tpoint)
4628 {
4629 struct traceframe *tframe;
4630 int acti;
4631
4632 /* Only count it as a hit when we actually collect data. */
4633 tpoint->hit_count++;
4634
4635 /* If we've exceeded a defined pass count, record the event for
4636 later, and finish the collection for this hit. This test is only
4637 for nonstepping tracepoints, stepping tracepoints test at the end
4638 of their while-stepping loop. */
4639 if (tpoint->pass_count > 0
4640 && tpoint->hit_count >= tpoint->pass_count
4641 && tpoint->step_count == 0
4642 && stopping_tracepoint == NULL)
4643 stopping_tracepoint = tpoint;
4644
4645 trace_debug ("Making new traceframe for tracepoint %d at 0x%s, hit %" PRIu64,
4646 tpoint->number, paddress (tpoint->address), tpoint->hit_count);
4647
4648 tframe = add_traceframe (tpoint);
4649
4650 if (tframe)
4651 {
4652 for (acti = 0; acti < tpoint->numactions; ++acti)
4653 {
4654 #ifndef IN_PROCESS_AGENT
4655 trace_debug ("Tracepoint %d at 0x%s about to do action '%s'",
4656 tpoint->number, paddress (tpoint->address),
4657 tpoint->actions_str[acti]);
4658 #endif
4659
4660 do_action_at_tracepoint (ctx, stop_pc, tpoint, tframe,
4661 tpoint->actions[acti]);
4662 }
4663
4664 finish_traceframe (tframe);
4665 }
4666
4667 if (tframe == NULL && tracing)
4668 trace_buffer_is_full = 1;
4669 }
4670
4671 #ifndef IN_PROCESS_AGENT
4672
4673 static void
4674 collect_data_at_step (struct tracepoint_hit_ctx *ctx,
4675 CORE_ADDR stop_pc,
4676 struct tracepoint *tpoint, int current_step)
4677 {
4678 struct traceframe *tframe;
4679 int acti;
4680
4681 trace_debug ("Making new step traceframe for "
4682 "tracepoint %d at 0x%s, step %d of %" PRIu64 ", hit %" PRIu64,
4683 tpoint->number, paddress (tpoint->address),
4684 current_step, tpoint->step_count,
4685 tpoint->hit_count);
4686
4687 tframe = add_traceframe (tpoint);
4688
4689 if (tframe)
4690 {
4691 for (acti = 0; acti < tpoint->num_step_actions; ++acti)
4692 {
4693 trace_debug ("Tracepoint %d at 0x%s about to do step action '%s'",
4694 tpoint->number, paddress (tpoint->address),
4695 tpoint->step_actions_str[acti]);
4696
4697 do_action_at_tracepoint (ctx, stop_pc, tpoint, tframe,
4698 tpoint->step_actions[acti]);
4699 }
4700
4701 finish_traceframe (tframe);
4702 }
4703
4704 if (tframe == NULL && tracing)
4705 trace_buffer_is_full = 1;
4706 }
4707
4708 #endif
4709
4710 #ifdef IN_PROCESS_AGENT
4711 /* The target description used by the IPA. Given that the IPA library
4712 is built for a specific architecture that is loaded into the
4713 inferior, there only needs to be one such description per
4714 build. */
4715 const struct target_desc *ipa_tdesc;
4716 #endif
4717
4718 static struct regcache *
4719 get_context_regcache (struct tracepoint_hit_ctx *ctx)
4720 {
4721 struct regcache *regcache = NULL;
4722
4723 #ifdef IN_PROCESS_AGENT
4724 if (ctx->type == fast_tracepoint)
4725 {
4726 struct fast_tracepoint_ctx *fctx = (struct fast_tracepoint_ctx *) ctx;
4727 if (!fctx->regcache_initted)
4728 {
4729 fctx->regcache_initted = 1;
4730 init_register_cache (&fctx->regcache, ipa_tdesc, fctx->regspace);
4731 supply_regblock (&fctx->regcache, NULL);
4732 supply_fast_tracepoint_registers (&fctx->regcache, fctx->regs);
4733 }
4734 regcache = &fctx->regcache;
4735 }
4736 #ifdef HAVE_UST
4737 if (ctx->type == static_tracepoint)
4738 {
4739 struct static_tracepoint_ctx *sctx
4740 = (struct static_tracepoint_ctx *) ctx;
4741
4742 if (!sctx->regcache_initted)
4743 {
4744 sctx->regcache_initted = 1;
4745 init_register_cache (&sctx->regcache, ipa_tdesc, sctx->regspace);
4746 supply_regblock (&sctx->regcache, NULL);
4747 /* Pass down the tracepoint address, because REGS doesn't
4748 include the PC, but we know what it must have been. */
4749 supply_static_tracepoint_registers (&sctx->regcache,
4750 (const unsigned char *)
4751 sctx->regs,
4752 sctx->tpoint->address);
4753 }
4754 regcache = &sctx->regcache;
4755 }
4756 #endif
4757 #else
4758 if (ctx->type == trap_tracepoint)
4759 {
4760 struct trap_tracepoint_ctx *tctx = (struct trap_tracepoint_ctx *) ctx;
4761 regcache = tctx->regcache;
4762 }
4763 #endif
4764
4765 gdb_assert (regcache != NULL);
4766
4767 return regcache;
4768 }
4769
4770 static void
4771 do_action_at_tracepoint (struct tracepoint_hit_ctx *ctx,
4772 CORE_ADDR stop_pc,
4773 struct tracepoint *tpoint,
4774 struct traceframe *tframe,
4775 struct tracepoint_action *taction)
4776 {
4777 enum eval_result_type err;
4778
4779 switch (taction->type)
4780 {
4781 case 'M':
4782 {
4783 struct collect_memory_action *maction;
4784 struct eval_agent_expr_context ax_ctx;
4785
4786 maction = (struct collect_memory_action *) taction;
4787 ax_ctx.regcache = NULL;
4788 ax_ctx.tframe = tframe;
4789 ax_ctx.tpoint = tpoint;
4790
4791 trace_debug ("Want to collect %s bytes at 0x%s (basereg %d)",
4792 pulongest (maction->len),
4793 paddress (maction->addr), maction->basereg);
4794 /* (should use basereg) */
4795 agent_mem_read (&ax_ctx, NULL, (CORE_ADDR) maction->addr,
4796 maction->len);
4797 break;
4798 }
4799 case 'R':
4800 {
4801 unsigned char *regspace;
4802 struct regcache tregcache;
4803 struct regcache *context_regcache;
4804 int regcache_size;
4805
4806 trace_debug ("Want to collect registers");
4807
4808 context_regcache = get_context_regcache (ctx);
4809 regcache_size = register_cache_size (context_regcache->tdesc);
4810
4811 /* Collect all registers for now. */
4812 regspace = add_traceframe_block (tframe, tpoint, 1 + regcache_size);
4813 if (regspace == NULL)
4814 {
4815 trace_debug ("Trace buffer block allocation failed, skipping");
4816 break;
4817 }
4818 /* Identify a register block. */
4819 *regspace = 'R';
4820
4821 /* Wrap the regblock in a register cache (in the stack, we
4822 don't want to malloc here). */
4823 init_register_cache (&tregcache, context_regcache->tdesc,
4824 regspace + 1);
4825
4826 /* Copy the register data to the regblock. */
4827 regcache_cpy (&tregcache, context_regcache);
4828
4829 #ifndef IN_PROCESS_AGENT
4830 /* On some platforms, trap-based tracepoints will have the PC
4831 pointing to the next instruction after the trap, but we
4832 don't want the user or GDB trying to guess whether the
4833 saved PC needs adjusting; so always record the adjusted
4834 stop_pc. Note that we can't use tpoint->address instead,
4835 since it will be wrong for while-stepping actions. This
4836 adjustment is a nop for fast tracepoints collected from the
4837 in-process lib (but not if GDBserver is collecting one
4838 preemptively), since the PC had already been adjusted to
4839 contain the tracepoint's address by the jump pad. */
4840 trace_debug ("Storing stop pc (0x%s) in regblock",
4841 paddress (stop_pc));
4842
4843 /* This changes the regblock, not the thread's
4844 regcache. */
4845 regcache_write_pc (&tregcache, stop_pc);
4846 #endif
4847 }
4848 break;
4849 case 'X':
4850 {
4851 struct eval_expr_action *eaction;
4852 struct eval_agent_expr_context ax_ctx;
4853
4854 eaction = (struct eval_expr_action *) taction;
4855 ax_ctx.regcache = get_context_regcache (ctx);
4856 ax_ctx.tframe = tframe;
4857 ax_ctx.tpoint = tpoint;
4858
4859 trace_debug ("Want to evaluate expression");
4860
4861 err = gdb_eval_agent_expr (&ax_ctx, eaction->expr, NULL);
4862
4863 if (err != expr_eval_no_error)
4864 {
4865 record_tracepoint_error (tpoint, "action expression", err);
4866 return;
4867 }
4868 }
4869 break;
4870 case 'L':
4871 {
4872 #if defined IN_PROCESS_AGENT && defined HAVE_UST
4873 trace_debug ("Want to collect static trace data");
4874 collect_ust_data_at_tracepoint (ctx, tframe);
4875 #else
4876 trace_debug ("warning: collecting static trace data, "
4877 "but static tracepoints are not supported");
4878 #endif
4879 }
4880 break;
4881 default:
4882 trace_debug ("unknown trace action '%c', ignoring", taction->type);
4883 break;
4884 }
4885 }
4886
4887 static int
4888 condition_true_at_tracepoint (struct tracepoint_hit_ctx *ctx,
4889 struct tracepoint *tpoint)
4890 {
4891 ULONGEST value = 0;
4892 enum eval_result_type err;
4893
4894 /* Presently, gdbserver doesn't run compiled conditions, only the
4895 IPA does. If the program stops at a fast tracepoint's address
4896 (e.g., due to a breakpoint, trap tracepoint, or stepping),
4897 gdbserver preemptively collect the fast tracepoint. Later, on
4898 resume, gdbserver steps over the fast tracepoint like it steps
4899 over breakpoints, so that the IPA doesn't see that fast
4900 tracepoint. This avoids double collects of fast tracepoints in
4901 that stopping scenario. Having gdbserver itself handle the fast
4902 tracepoint gives the user a consistent view of when fast or trap
4903 tracepoints are collected, compared to an alternative where only
4904 trap tracepoints are collected on stop, and fast tracepoints on
4905 resume. When a fast tracepoint is being processed by gdbserver,
4906 it is always the non-compiled condition expression that is
4907 used. */
4908 #ifdef IN_PROCESS_AGENT
4909 if (tpoint->compiled_cond)
4910 err = ((condfn) (uintptr_t) (tpoint->compiled_cond)) (ctx, &value);
4911 else
4912 #endif
4913 {
4914 struct eval_agent_expr_context ax_ctx;
4915
4916 ax_ctx.regcache = get_context_regcache (ctx);
4917 ax_ctx.tframe = NULL;
4918 ax_ctx.tpoint = tpoint;
4919
4920 err = gdb_eval_agent_expr (&ax_ctx, tpoint->cond, &value);
4921 }
4922 if (err != expr_eval_no_error)
4923 {
4924 record_tracepoint_error (tpoint, "condition", err);
4925 /* The error case must return false. */
4926 return 0;
4927 }
4928
4929 trace_debug ("Tracepoint %d at 0x%s condition evals to %s",
4930 tpoint->number, paddress (tpoint->address),
4931 pulongest (value));
4932 return (value ? 1 : 0);
4933 }
4934
4935 /* Do memory copies for bytecodes. */
4936 /* Do the recording of memory blocks for actions and bytecodes. */
4937
4938 int
4939 agent_mem_read (struct eval_agent_expr_context *ctx,
4940 unsigned char *to, CORE_ADDR from, ULONGEST len)
4941 {
4942 unsigned char *mspace;
4943 ULONGEST remaining = len;
4944 unsigned short blocklen;
4945
4946 /* If a 'to' buffer is specified, use it. */
4947 if (to != NULL)
4948 {
4949 read_inferior_memory (from, to, len);
4950 return 0;
4951 }
4952
4953 /* Otherwise, create a new memory block in the trace buffer. */
4954 while (remaining > 0)
4955 {
4956 size_t sp;
4957
4958 blocklen = (remaining > 65535 ? 65535 : remaining);
4959 sp = 1 + sizeof (from) + sizeof (blocklen) + blocklen;
4960 mspace = add_traceframe_block (ctx->tframe, ctx->tpoint, sp);
4961 if (mspace == NULL)
4962 return 1;
4963 /* Identify block as a memory block. */
4964 *mspace = 'M';
4965 ++mspace;
4966 /* Record address and size. */
4967 memcpy (mspace, &from, sizeof (from));
4968 mspace += sizeof (from);
4969 memcpy (mspace, &blocklen, sizeof (blocklen));
4970 mspace += sizeof (blocklen);
4971 /* Record the memory block proper. */
4972 read_inferior_memory (from, mspace, blocklen);
4973 trace_debug ("%d bytes recorded", blocklen);
4974 remaining -= blocklen;
4975 from += blocklen;
4976 }
4977 return 0;
4978 }
4979
4980 int
4981 agent_mem_read_string (struct eval_agent_expr_context *ctx,
4982 unsigned char *to, CORE_ADDR from, ULONGEST len)
4983 {
4984 unsigned char *buf, *mspace;
4985 ULONGEST remaining = len;
4986 unsigned short blocklen, i;
4987
4988 /* To save a bit of space, block lengths are 16-bit, so break large
4989 requests into multiple blocks. Bordering on overkill for strings,
4990 but it could happen that someone specifies a large max length. */
4991 while (remaining > 0)
4992 {
4993 size_t sp;
4994
4995 blocklen = (remaining > 65535 ? 65535 : remaining);
4996 /* We want working space to accumulate nonzero bytes, since
4997 traceframes must have a predecided size (otherwise it gets
4998 harder to wrap correctly for the circular case, etc). */
4999 buf = (unsigned char *) xmalloc (blocklen + 1);
5000 for (i = 0; i < blocklen; ++i)
5001 {
5002 /* Read the string one byte at a time, in case the string is
5003 at the end of a valid memory area - we don't want a
5004 correctly-terminated string to engender segvio
5005 complaints. */
5006 read_inferior_memory (from + i, buf + i, 1);
5007
5008 if (buf[i] == '\0')
5009 {
5010 blocklen = i + 1;
5011 /* Make sure outer loop stops now too. */
5012 remaining = blocklen;
5013 break;
5014 }
5015 }
5016 sp = 1 + sizeof (from) + sizeof (blocklen) + blocklen;
5017 mspace = add_traceframe_block (ctx->tframe, ctx->tpoint, sp);
5018 if (mspace == NULL)
5019 {
5020 xfree (buf);
5021 return 1;
5022 }
5023 /* Identify block as a memory block. */
5024 *mspace = 'M';
5025 ++mspace;
5026 /* Record address and size. */
5027 memcpy ((void *) mspace, (void *) &from, sizeof (from));
5028 mspace += sizeof (from);
5029 memcpy ((void *) mspace, (void *) &blocklen, sizeof (blocklen));
5030 mspace += sizeof (blocklen);
5031 /* Copy the string contents. */
5032 memcpy ((void *) mspace, (void *) buf, blocklen);
5033 remaining -= blocklen;
5034 from += blocklen;
5035 xfree (buf);
5036 }
5037 return 0;
5038 }
5039
5040 /* Record the value of a trace state variable. */
5041
5042 int
5043 agent_tsv_read (struct eval_agent_expr_context *ctx, int n)
5044 {
5045 unsigned char *vspace;
5046 LONGEST val;
5047
5048 vspace = add_traceframe_block (ctx->tframe, ctx->tpoint,
5049 1 + sizeof (n) + sizeof (LONGEST));
5050 if (vspace == NULL)
5051 return 1;
5052 /* Identify block as a variable. */
5053 *vspace = 'V';
5054 /* Record variable's number and value. */
5055 memcpy (vspace + 1, &n, sizeof (n));
5056 val = get_trace_state_variable_value (n);
5057 memcpy (vspace + 1 + sizeof (n), &val, sizeof (val));
5058 trace_debug ("Variable %d recorded", n);
5059 return 0;
5060 }
5061
5062 #ifndef IN_PROCESS_AGENT
5063
5064 /* Callback for traceframe_walk_blocks, used to find a given block
5065 type in a traceframe. */
5066
5067 static int
5068 match_blocktype (char blocktype, unsigned char *dataptr, void *data)
5069 {
5070 char *wantedp = data;
5071
5072 if (*wantedp == blocktype)
5073 return 1;
5074
5075 return 0;
5076 }
5077
5078 /* Walk over all traceframe blocks of the traceframe buffer starting
5079 at DATABASE, of DATASIZE bytes long, and call CALLBACK for each
5080 block found, passing in DATA unmodified. If CALLBACK returns true,
5081 this returns a pointer to where the block is found. Returns NULL
5082 if no callback call returned true, indicating that all blocks have
5083 been walked. */
5084
5085 static unsigned char *
5086 traceframe_walk_blocks (unsigned char *database, unsigned int datasize,
5087 int tfnum,
5088 int (*callback) (char blocktype,
5089 unsigned char *dataptr,
5090 void *data),
5091 void *data)
5092 {
5093 unsigned char *dataptr;
5094
5095 if (datasize == 0)
5096 {
5097 trace_debug ("traceframe %d has no data", tfnum);
5098 return NULL;
5099 }
5100
5101 /* Iterate through a traceframe's blocks, looking for a block of the
5102 requested type. */
5103 for (dataptr = database;
5104 dataptr < database + datasize;
5105 /* nothing */)
5106 {
5107 char blocktype;
5108 unsigned short mlen;
5109
5110 if (dataptr == trace_buffer_wrap)
5111 {
5112 /* Adjust to reflect wrapping part of the frame around to
5113 the beginning. */
5114 datasize = dataptr - database;
5115 dataptr = database = trace_buffer_lo;
5116 }
5117
5118 blocktype = *dataptr++;
5119
5120 if ((*callback) (blocktype, dataptr, data))
5121 return dataptr;
5122
5123 switch (blocktype)
5124 {
5125 case 'R':
5126 /* Skip over the registers block. */
5127 dataptr += current_target_desc ()->registers_size;
5128 break;
5129 case 'M':
5130 /* Skip over the memory block. */
5131 dataptr += sizeof (CORE_ADDR);
5132 memcpy (&mlen, dataptr, sizeof (mlen));
5133 dataptr += (sizeof (mlen) + mlen);
5134 break;
5135 case 'V':
5136 /* Skip over the TSV block. */
5137 dataptr += (sizeof (int) + sizeof (LONGEST));
5138 break;
5139 case 'S':
5140 /* Skip over the static trace data block. */
5141 memcpy (&mlen, dataptr, sizeof (mlen));
5142 dataptr += (sizeof (mlen) + mlen);
5143 break;
5144 default:
5145 trace_debug ("traceframe %d has unknown block type 0x%x",
5146 tfnum, blocktype);
5147 return NULL;
5148 }
5149 }
5150
5151 return NULL;
5152 }
5153
5154 /* Look for the block of type TYPE_WANTED in the trameframe starting
5155 at DATABASE of DATASIZE bytes long. TFNUM is the traceframe
5156 number. */
5157
5158 static unsigned char *
5159 traceframe_find_block_type (unsigned char *database, unsigned int datasize,
5160 int tfnum, char type_wanted)
5161 {
5162 return traceframe_walk_blocks (database, datasize, tfnum,
5163 match_blocktype, &type_wanted);
5164 }
5165
5166 static unsigned char *
5167 traceframe_find_regblock (struct traceframe *tframe, int tfnum)
5168 {
5169 unsigned char *regblock;
5170
5171 regblock = traceframe_find_block_type (tframe->data,
5172 tframe->data_size,
5173 tfnum, 'R');
5174
5175 if (regblock == NULL)
5176 trace_debug ("traceframe %d has no register data", tfnum);
5177
5178 return regblock;
5179 }
5180
5181 /* Get registers from a traceframe. */
5182
5183 int
5184 fetch_traceframe_registers (int tfnum, struct regcache *regcache, int regnum)
5185 {
5186 unsigned char *dataptr;
5187 struct tracepoint *tpoint;
5188 struct traceframe *tframe;
5189
5190 tframe = find_traceframe (tfnum);
5191
5192 if (tframe == NULL)
5193 {
5194 trace_debug ("traceframe %d not found", tfnum);
5195 return 1;
5196 }
5197
5198 dataptr = traceframe_find_regblock (tframe, tfnum);
5199 if (dataptr == NULL)
5200 {
5201 /* Mark registers unavailable. */
5202 supply_regblock (regcache, NULL);
5203
5204 /* We can generally guess at a PC, although this will be
5205 misleading for while-stepping frames and multi-location
5206 tracepoints. */
5207 tpoint = find_next_tracepoint_by_number (NULL, tframe->tpnum);
5208 if (tpoint != NULL)
5209 regcache_write_pc (regcache, tpoint->address);
5210 }
5211 else
5212 supply_regblock (regcache, dataptr);
5213
5214 return 0;
5215 }
5216
5217 static CORE_ADDR
5218 traceframe_get_pc (struct traceframe *tframe)
5219 {
5220 struct regcache regcache;
5221 unsigned char *dataptr;
5222 const struct target_desc *tdesc = current_target_desc ();
5223
5224 dataptr = traceframe_find_regblock (tframe, -1);
5225 if (dataptr == NULL)
5226 return 0;
5227
5228 init_register_cache (&regcache, tdesc, dataptr);
5229 return regcache_read_pc (&regcache);
5230 }
5231
5232 /* Read a requested block of memory from a trace frame. */
5233
5234 int
5235 traceframe_read_mem (int tfnum, CORE_ADDR addr,
5236 unsigned char *buf, ULONGEST length,
5237 ULONGEST *nbytes)
5238 {
5239 struct traceframe *tframe;
5240 unsigned char *database, *dataptr;
5241 unsigned int datasize;
5242 CORE_ADDR maddr;
5243 unsigned short mlen;
5244
5245 trace_debug ("traceframe_read_mem");
5246
5247 tframe = find_traceframe (tfnum);
5248
5249 if (!tframe)
5250 {
5251 trace_debug ("traceframe %d not found", tfnum);
5252 return 1;
5253 }
5254
5255 datasize = tframe->data_size;
5256 database = dataptr = &tframe->data[0];
5257
5258 /* Iterate through a traceframe's blocks, looking for memory. */
5259 while ((dataptr = traceframe_find_block_type (dataptr,
5260 datasize
5261 - (dataptr - database),
5262 tfnum, 'M')) != NULL)
5263 {
5264 memcpy (&maddr, dataptr, sizeof (maddr));
5265 dataptr += sizeof (maddr);
5266 memcpy (&mlen, dataptr, sizeof (mlen));
5267 dataptr += sizeof (mlen);
5268 trace_debug ("traceframe %d has %d bytes at %s",
5269 tfnum, mlen, paddress (maddr));
5270
5271 /* If the block includes the first part of the desired range,
5272 return as much it has; GDB will re-request the remainder,
5273 which might be in a different block of this trace frame. */
5274 if (maddr <= addr && addr < (maddr + mlen))
5275 {
5276 ULONGEST amt = (maddr + mlen) - addr;
5277 if (amt > length)
5278 amt = length;
5279
5280 memcpy (buf, dataptr + (addr - maddr), amt);
5281 *nbytes = amt;
5282 return 0;
5283 }
5284
5285 /* Skip over this block. */
5286 dataptr += mlen;
5287 }
5288
5289 trace_debug ("traceframe %d has no memory data for the desired region",
5290 tfnum);
5291
5292 *nbytes = 0;
5293 return 0;
5294 }
5295
5296 static int
5297 traceframe_read_tsv (int tsvnum, LONGEST *val)
5298 {
5299 int tfnum;
5300 struct traceframe *tframe;
5301 unsigned char *database, *dataptr;
5302 unsigned int datasize;
5303 int vnum;
5304 int found = 0;
5305
5306 trace_debug ("traceframe_read_tsv");
5307
5308 tfnum = current_traceframe;
5309
5310 if (tfnum < 0)
5311 {
5312 trace_debug ("no current traceframe");
5313 return 1;
5314 }
5315
5316 tframe = find_traceframe (tfnum);
5317
5318 if (tframe == NULL)
5319 {
5320 trace_debug ("traceframe %d not found", tfnum);
5321 return 1;
5322 }
5323
5324 datasize = tframe->data_size;
5325 database = dataptr = &tframe->data[0];
5326
5327 /* Iterate through a traceframe's blocks, looking for the last
5328 matched tsv. */
5329 while ((dataptr = traceframe_find_block_type (dataptr,
5330 datasize
5331 - (dataptr - database),
5332 tfnum, 'V')) != NULL)
5333 {
5334 memcpy (&vnum, dataptr, sizeof (vnum));
5335 dataptr += sizeof (vnum);
5336
5337 trace_debug ("traceframe %d has variable %d", tfnum, vnum);
5338
5339 /* Check that this is the variable we want. */
5340 if (tsvnum == vnum)
5341 {
5342 memcpy (val, dataptr, sizeof (*val));
5343 found = 1;
5344 }
5345
5346 /* Skip over this block. */
5347 dataptr += sizeof (LONGEST);
5348 }
5349
5350 if (!found)
5351 trace_debug ("traceframe %d has no data for variable %d",
5352 tfnum, tsvnum);
5353 return !found;
5354 }
5355
5356 /* Read a requested block of static tracepoint data from a trace
5357 frame. */
5358
5359 int
5360 traceframe_read_sdata (int tfnum, ULONGEST offset,
5361 unsigned char *buf, ULONGEST length,
5362 ULONGEST *nbytes)
5363 {
5364 struct traceframe *tframe;
5365 unsigned char *database, *dataptr;
5366 unsigned int datasize;
5367 unsigned short mlen;
5368
5369 trace_debug ("traceframe_read_sdata");
5370
5371 tframe = find_traceframe (tfnum);
5372
5373 if (!tframe)
5374 {
5375 trace_debug ("traceframe %d not found", tfnum);
5376 return 1;
5377 }
5378
5379 datasize = tframe->data_size;
5380 database = &tframe->data[0];
5381
5382 /* Iterate through a traceframe's blocks, looking for static
5383 tracepoint data. */
5384 dataptr = traceframe_find_block_type (database, datasize,
5385 tfnum, 'S');
5386 if (dataptr != NULL)
5387 {
5388 memcpy (&mlen, dataptr, sizeof (mlen));
5389 dataptr += sizeof (mlen);
5390 if (offset < mlen)
5391 {
5392 if (offset + length > mlen)
5393 length = mlen - offset;
5394
5395 memcpy (buf, dataptr, length);
5396 *nbytes = length;
5397 }
5398 else
5399 *nbytes = 0;
5400 return 0;
5401 }
5402
5403 trace_debug ("traceframe %d has no static trace data", tfnum);
5404
5405 *nbytes = 0;
5406 return 0;
5407 }
5408
5409 /* Callback for traceframe_walk_blocks. Builds a traceframe-info
5410 object. DATA is pointer to a struct buffer holding the
5411 traceframe-info object being built. */
5412
5413 static int
5414 build_traceframe_info_xml (char blocktype, unsigned char *dataptr, void *data)
5415 {
5416 struct buffer *buffer = data;
5417
5418 switch (blocktype)
5419 {
5420 case 'M':
5421 {
5422 unsigned short mlen;
5423 CORE_ADDR maddr;
5424
5425 memcpy (&maddr, dataptr, sizeof (maddr));
5426 dataptr += sizeof (maddr);
5427 memcpy (&mlen, dataptr, sizeof (mlen));
5428 dataptr += sizeof (mlen);
5429 buffer_xml_printf (buffer,
5430 "<memory start=\"0x%s\" length=\"0x%s\"/>\n",
5431 paddress (maddr), phex_nz (mlen, sizeof (mlen)));
5432 break;
5433 }
5434 case 'V':
5435 {
5436 int vnum;
5437
5438 memcpy (&vnum, dataptr, sizeof (vnum));
5439 buffer_xml_printf (buffer, "<tvar id=\"%d\"/>\n", vnum);
5440 break;
5441 }
5442 case 'R':
5443 case 'S':
5444 {
5445 break;
5446 }
5447 default:
5448 warning ("Unhandled trace block type (%d) '%c ' "
5449 "while building trace frame info.",
5450 blocktype, blocktype);
5451 break;
5452 }
5453
5454 return 0;
5455 }
5456
5457 /* Build a traceframe-info object for traceframe number TFNUM into
5458 BUFFER. */
5459
5460 int
5461 traceframe_read_info (int tfnum, struct buffer *buffer)
5462 {
5463 struct traceframe *tframe;
5464
5465 trace_debug ("traceframe_read_info");
5466
5467 tframe = find_traceframe (tfnum);
5468
5469 if (!tframe)
5470 {
5471 trace_debug ("traceframe %d not found", tfnum);
5472 return 1;
5473 }
5474
5475 buffer_grow_str (buffer, "<traceframe-info>\n");
5476 traceframe_walk_blocks (tframe->data, tframe->data_size,
5477 tfnum, build_traceframe_info_xml, buffer);
5478 buffer_grow_str0 (buffer, "</traceframe-info>\n");
5479 return 0;
5480 }
5481
5482 /* Return the first fast tracepoint whose jump pad contains PC. */
5483
5484 static struct tracepoint *
5485 fast_tracepoint_from_jump_pad_address (CORE_ADDR pc)
5486 {
5487 struct tracepoint *tpoint;
5488
5489 for (tpoint = tracepoints; tpoint; tpoint = tpoint->next)
5490 if (tpoint->type == fast_tracepoint)
5491 if (tpoint->jump_pad <= pc && pc < tpoint->jump_pad_end)
5492 return tpoint;
5493
5494 return NULL;
5495 }
5496
5497 /* Return the first fast tracepoint whose trampoline contains PC. */
5498
5499 static struct tracepoint *
5500 fast_tracepoint_from_trampoline_address (CORE_ADDR pc)
5501 {
5502 struct tracepoint *tpoint;
5503
5504 for (tpoint = tracepoints; tpoint; tpoint = tpoint->next)
5505 {
5506 if (tpoint->type == fast_tracepoint
5507 && tpoint->trampoline <= pc && pc < tpoint->trampoline_end)
5508 return tpoint;
5509 }
5510
5511 return NULL;
5512 }
5513
5514 /* Return GDBserver's tracepoint that matches the IP Agent's
5515 tracepoint object that lives at IPA_TPOINT_OBJ in the IP Agent's
5516 address space. */
5517
5518 static struct tracepoint *
5519 fast_tracepoint_from_ipa_tpoint_address (CORE_ADDR ipa_tpoint_obj)
5520 {
5521 struct tracepoint *tpoint;
5522
5523 for (tpoint = tracepoints; tpoint; tpoint = tpoint->next)
5524 if (tpoint->type == fast_tracepoint)
5525 if (tpoint->obj_addr_on_target == ipa_tpoint_obj)
5526 return tpoint;
5527
5528 return NULL;
5529 }
5530
5531 #endif
5532
5533 /* The type of the object that is used to synchronize fast tracepoint
5534 collection. */
5535
5536 typedef struct collecting_t
5537 {
5538 /* The fast tracepoint number currently collecting. */
5539 uintptr_t tpoint;
5540
5541 /* A number that GDBserver can use to identify the thread that is
5542 presently holding the collect lock. This need not (and usually
5543 is not) the thread id, as getting the current thread ID usually
5544 requires a system call, which we want to avoid like the plague.
5545 Usually this is thread's TCB, found in the TLS (pseudo-)
5546 register, which is readable with a single insn on several
5547 architectures. */
5548 uintptr_t thread_area;
5549 } collecting_t;
5550
5551 #ifndef IN_PROCESS_AGENT
5552
5553 void
5554 force_unlock_trace_buffer (void)
5555 {
5556 write_inferior_data_pointer (ipa_sym_addrs.addr_collecting, 0);
5557 }
5558
5559 /* Check if the thread identified by THREAD_AREA which is stopped at
5560 STOP_PC, is presently locking the fast tracepoint collection, and
5561 if so, gather some status of said collection. Returns 0 if the
5562 thread isn't collecting or in the jump pad at all. 1, if in the
5563 jump pad (or within gdb_collect) and hasn't executed the adjusted
5564 original insn yet (can set a breakpoint there and run to it). 2,
5565 if presently executing the adjusted original insn --- in which
5566 case, if we want to move the thread out of the jump pad, we need to
5567 single-step it until this function returns 0. */
5568
5569 int
5570 fast_tracepoint_collecting (CORE_ADDR thread_area,
5571 CORE_ADDR stop_pc,
5572 struct fast_tpoint_collect_status *status)
5573 {
5574 CORE_ADDR ipa_collecting;
5575 CORE_ADDR ipa_gdb_jump_pad_buffer, ipa_gdb_jump_pad_buffer_end;
5576 CORE_ADDR ipa_gdb_trampoline_buffer;
5577 CORE_ADDR ipa_gdb_trampoline_buffer_end;
5578 struct tracepoint *tpoint;
5579 int needs_breakpoint;
5580
5581 /* The thread THREAD_AREA is either:
5582
5583 0. not collecting at all, not within the jump pad, or within
5584 gdb_collect or one of its callees.
5585
5586 1. in the jump pad and haven't reached gdb_collect
5587
5588 2. within gdb_collect (out of the jump pad) (collect is set)
5589
5590 3. we're in the jump pad, after gdb_collect having returned,
5591 possibly executing the adjusted insns.
5592
5593 For cases 1 and 3, `collecting' may or not be set. The jump pad
5594 doesn't have any complicated jump logic, so we can tell if the
5595 thread is executing the adjust original insn or not by just
5596 matching STOP_PC with known jump pad addresses. If we it isn't
5597 yet executing the original insn, set a breakpoint there, and let
5598 the thread run to it, so to quickly step over a possible (many
5599 insns) gdb_collect call. Otherwise, or when the breakpoint is
5600 hit, only a few (small number of) insns are left to be executed
5601 in the jump pad. Single-step the thread until it leaves the
5602 jump pad. */
5603
5604 again:
5605 tpoint = NULL;
5606 needs_breakpoint = 0;
5607 trace_debug ("fast_tracepoint_collecting");
5608
5609 if (read_inferior_data_pointer (ipa_sym_addrs.addr_gdb_jump_pad_buffer,
5610 &ipa_gdb_jump_pad_buffer))
5611 {
5612 internal_error (__FILE__, __LINE__,
5613 "error extracting `gdb_jump_pad_buffer'");
5614 }
5615 if (read_inferior_data_pointer (ipa_sym_addrs.addr_gdb_jump_pad_buffer_end,
5616 &ipa_gdb_jump_pad_buffer_end))
5617 {
5618 internal_error (__FILE__, __LINE__,
5619 "error extracting `gdb_jump_pad_buffer_end'");
5620 }
5621
5622 if (read_inferior_data_pointer (ipa_sym_addrs.addr_gdb_trampoline_buffer,
5623 &ipa_gdb_trampoline_buffer))
5624 {
5625 internal_error (__FILE__, __LINE__,
5626 "error extracting `gdb_trampoline_buffer'");
5627 }
5628 if (read_inferior_data_pointer (ipa_sym_addrs.addr_gdb_trampoline_buffer_end,
5629 &ipa_gdb_trampoline_buffer_end))
5630 {
5631 internal_error (__FILE__, __LINE__,
5632 "error extracting `gdb_trampoline_buffer_end'");
5633 }
5634
5635 if (ipa_gdb_jump_pad_buffer <= stop_pc
5636 && stop_pc < ipa_gdb_jump_pad_buffer_end)
5637 {
5638 /* We can tell which tracepoint(s) the thread is collecting by
5639 matching the jump pad address back to the tracepoint. */
5640 tpoint = fast_tracepoint_from_jump_pad_address (stop_pc);
5641 if (tpoint == NULL)
5642 {
5643 warning ("in jump pad, but no matching tpoint?");
5644 return 0;
5645 }
5646 else
5647 {
5648 trace_debug ("in jump pad of tpoint (%d, %s); jump_pad(%s, %s); "
5649 "adj_insn(%s, %s)",
5650 tpoint->number, paddress (tpoint->address),
5651 paddress (tpoint->jump_pad),
5652 paddress (tpoint->jump_pad_end),
5653 paddress (tpoint->adjusted_insn_addr),
5654 paddress (tpoint->adjusted_insn_addr_end));
5655 }
5656
5657 /* Definitely in the jump pad. May or may not need
5658 fast-exit-jump-pad breakpoint. */
5659 if (tpoint->jump_pad <= stop_pc
5660 && stop_pc < tpoint->adjusted_insn_addr)
5661 needs_breakpoint = 1;
5662 }
5663 else if (ipa_gdb_trampoline_buffer <= stop_pc
5664 && stop_pc < ipa_gdb_trampoline_buffer_end)
5665 {
5666 /* We can tell which tracepoint(s) the thread is collecting by
5667 matching the trampoline address back to the tracepoint. */
5668 tpoint = fast_tracepoint_from_trampoline_address (stop_pc);
5669 if (tpoint == NULL)
5670 {
5671 warning ("in trampoline, but no matching tpoint?");
5672 return 0;
5673 }
5674 else
5675 {
5676 trace_debug ("in trampoline of tpoint (%d, %s); trampoline(%s, %s)",
5677 tpoint->number, paddress (tpoint->address),
5678 paddress (tpoint->trampoline),
5679 paddress (tpoint->trampoline_end));
5680 }
5681
5682 /* Have not reached jump pad yet, but treat the trampoline as a
5683 part of the jump pad that is before the adjusted original
5684 instruction. */
5685 needs_breakpoint = 1;
5686 }
5687 else
5688 {
5689 collecting_t ipa_collecting_obj;
5690
5691 /* If `collecting' is set/locked, then the THREAD_AREA thread
5692 may or not be the one holding the lock. We have to read the
5693 lock to find out. */
5694
5695 if (read_inferior_data_pointer (ipa_sym_addrs.addr_collecting,
5696 &ipa_collecting))
5697 {
5698 trace_debug ("fast_tracepoint_collecting:"
5699 " failed reading 'collecting' in the inferior");
5700 return 0;
5701 }
5702
5703 if (!ipa_collecting)
5704 {
5705 trace_debug ("fast_tracepoint_collecting: not collecting"
5706 " (and nobody is).");
5707 return 0;
5708 }
5709
5710 /* Some thread is collecting. Check which. */
5711 if (read_inferior_memory (ipa_collecting,
5712 (unsigned char *) &ipa_collecting_obj,
5713 sizeof (ipa_collecting_obj)) != 0)
5714 goto again;
5715
5716 if (ipa_collecting_obj.thread_area != thread_area)
5717 {
5718 trace_debug ("fast_tracepoint_collecting: not collecting "
5719 "(another thread is)");
5720 return 0;
5721 }
5722
5723 tpoint
5724 = fast_tracepoint_from_ipa_tpoint_address (ipa_collecting_obj.tpoint);
5725 if (tpoint == NULL)
5726 {
5727 warning ("fast_tracepoint_collecting: collecting, "
5728 "but tpoint %s not found?",
5729 paddress ((CORE_ADDR) ipa_collecting_obj.tpoint));
5730 return 0;
5731 }
5732
5733 /* The thread is within `gdb_collect', skip over the rest of
5734 fast tracepoint collection quickly using a breakpoint. */
5735 needs_breakpoint = 1;
5736 }
5737
5738 /* The caller wants a bit of status detail. */
5739 if (status != NULL)
5740 {
5741 status->tpoint_num = tpoint->number;
5742 status->tpoint_addr = tpoint->address;
5743 status->adjusted_insn_addr = tpoint->adjusted_insn_addr;
5744 status->adjusted_insn_addr_end = tpoint->adjusted_insn_addr_end;
5745 }
5746
5747 if (needs_breakpoint)
5748 {
5749 /* Hasn't executed the original instruction yet. Set breakpoint
5750 there, and wait till it's hit, then single-step until exiting
5751 the jump pad. */
5752
5753 trace_debug ("\
5754 fast_tracepoint_collecting, returning continue-until-break at %s",
5755 paddress (tpoint->adjusted_insn_addr));
5756
5757 return 1; /* continue */
5758 }
5759 else
5760 {
5761 /* Just single-step until exiting the jump pad. */
5762
5763 trace_debug ("fast_tracepoint_collecting, returning "
5764 "need-single-step (%s-%s)",
5765 paddress (tpoint->adjusted_insn_addr),
5766 paddress (tpoint->adjusted_insn_addr_end));
5767
5768 return 2; /* single-step */
5769 }
5770 }
5771
5772 #endif
5773
5774 #ifdef IN_PROCESS_AGENT
5775
5776 /* The global fast tracepoint collect lock. Points to a collecting_t
5777 object built on the stack by the jump pad, if presently locked;
5778 NULL if it isn't locked. Note that this lock *must* be set while
5779 executing any *function other than the jump pad. See
5780 fast_tracepoint_collecting. */
5781 EXTERN_C_PUSH
5782 IP_AGENT_EXPORT_VAR collecting_t *collecting;
5783 EXTERN_C_POP
5784
5785 /* This routine, called from the jump pad (in asm) is designed to be
5786 called from the jump pads of fast tracepoints, thus it is on the
5787 critical path. */
5788
5789 IP_AGENT_EXPORT_FUNC void
5790 gdb_collect (struct tracepoint *tpoint, unsigned char *regs)
5791 {
5792 struct fast_tracepoint_ctx ctx;
5793
5794 /* Don't do anything until the trace run is completely set up. */
5795 if (!tracing)
5796 return;
5797
5798 ctx.base.type = fast_tracepoint;
5799 ctx.regs = regs;
5800 ctx.regcache_initted = 0;
5801 /* Wrap the regblock in a register cache (in the stack, we don't
5802 want to malloc here). */
5803 ctx.regspace = alloca (ipa_tdesc->registers_size);
5804 if (ctx.regspace == NULL)
5805 {
5806 trace_debug ("Trace buffer block allocation failed, skipping");
5807 return;
5808 }
5809
5810 for (ctx.tpoint = tpoint;
5811 ctx.tpoint != NULL && ctx.tpoint->address == tpoint->address;
5812 ctx.tpoint = ctx.tpoint->next)
5813 {
5814 if (!ctx.tpoint->enabled)
5815 continue;
5816
5817 /* Multiple tracepoints of different types, such as fast tracepoint and
5818 static tracepoint, can be set at the same address. */
5819 if (ctx.tpoint->type != tpoint->type)
5820 continue;
5821
5822 /* Test the condition if present, and collect if true. */
5823 if (ctx.tpoint->cond == NULL
5824 || condition_true_at_tracepoint ((struct tracepoint_hit_ctx *) &ctx,
5825 ctx.tpoint))
5826 {
5827 collect_data_at_tracepoint ((struct tracepoint_hit_ctx *) &ctx,
5828 ctx.tpoint->address, ctx.tpoint);
5829
5830 /* Note that this will cause original insns to be written back
5831 to where we jumped from, but that's OK because we're jumping
5832 back to the next whole instruction. This will go badly if
5833 instruction restoration is not atomic though. */
5834 if (stopping_tracepoint
5835 || trace_buffer_is_full
5836 || expr_eval_result != expr_eval_no_error)
5837 {
5838 stop_tracing ();
5839 break;
5840 }
5841 }
5842 else
5843 {
5844 /* If there was a condition and it evaluated to false, the only
5845 way we would stop tracing is if there was an error during
5846 condition expression evaluation. */
5847 if (expr_eval_result != expr_eval_no_error)
5848 {
5849 stop_tracing ();
5850 break;
5851 }
5852 }
5853 }
5854 }
5855
5856 #endif
5857
5858 #ifndef IN_PROCESS_AGENT
5859
5860 CORE_ADDR
5861 get_raw_reg_func_addr (void)
5862 {
5863 return ipa_sym_addrs.addr_get_raw_reg;
5864 }
5865
5866 CORE_ADDR
5867 get_get_tsv_func_addr (void)
5868 {
5869 return ipa_sym_addrs.addr_get_trace_state_variable_value;
5870 }
5871
5872 CORE_ADDR
5873 get_set_tsv_func_addr (void)
5874 {
5875 return ipa_sym_addrs.addr_set_trace_state_variable_value;
5876 }
5877
5878 static void
5879 compile_tracepoint_condition (struct tracepoint *tpoint,
5880 CORE_ADDR *jump_entry)
5881 {
5882 CORE_ADDR entry_point = *jump_entry;
5883 enum eval_result_type err;
5884
5885 trace_debug ("Starting condition compilation for tracepoint %d\n",
5886 tpoint->number);
5887
5888 /* Initialize the global pointer to the code being built. */
5889 current_insn_ptr = *jump_entry;
5890
5891 emit_prologue ();
5892
5893 err = compile_bytecodes (tpoint->cond);
5894
5895 if (err == expr_eval_no_error)
5896 {
5897 emit_epilogue ();
5898
5899 /* Record the beginning of the compiled code. */
5900 tpoint->compiled_cond = entry_point;
5901
5902 trace_debug ("Condition compilation for tracepoint %d complete\n",
5903 tpoint->number);
5904 }
5905 else
5906 {
5907 /* Leave the unfinished code in situ, but don't point to it. */
5908
5909 tpoint->compiled_cond = 0;
5910
5911 trace_debug ("Condition compilation for tracepoint %d failed, "
5912 "error code %d",
5913 tpoint->number, err);
5914 }
5915
5916 /* Update the code pointer passed in. Note that we do this even if
5917 the compile fails, so that we can look at the partial results
5918 instead of letting them be overwritten. */
5919 *jump_entry = current_insn_ptr;
5920
5921 /* Leave a gap, to aid dump decipherment. */
5922 *jump_entry += 16;
5923 }
5924
5925 /* We'll need to adjust these when we consider bi-arch setups, and big
5926 endian machines. */
5927
5928 static int
5929 write_inferior_data_ptr (CORE_ADDR where, CORE_ADDR ptr)
5930 {
5931 return write_inferior_memory (where,
5932 (unsigned char *) &ptr, sizeof (void *));
5933 }
5934
5935 /* The base pointer of the IPA's heap. This is the only memory the
5936 IPA is allowed to use. The IPA should _not_ call the inferior's
5937 `malloc' during operation. That'd be slow, and, most importantly,
5938 it may not be safe. We may be collecting a tracepoint in a signal
5939 handler, for example. */
5940 static CORE_ADDR target_tp_heap;
5941
5942 /* Allocate at least SIZE bytes of memory from the IPA heap, aligned
5943 to 8 bytes. */
5944
5945 static CORE_ADDR
5946 target_malloc (ULONGEST size)
5947 {
5948 CORE_ADDR ptr;
5949
5950 if (target_tp_heap == 0)
5951 {
5952 /* We have the pointer *address*, need what it points to. */
5953 if (read_inferior_data_pointer (ipa_sym_addrs.addr_gdb_tp_heap_buffer,
5954 &target_tp_heap))
5955 {
5956 internal_error (__FILE__, __LINE__,
5957 "couldn't get target heap head pointer");
5958 }
5959 }
5960
5961 ptr = target_tp_heap;
5962 target_tp_heap += size;
5963
5964 /* Pad to 8-byte alignment. */
5965 target_tp_heap = ((target_tp_heap + 7) & ~0x7);
5966
5967 return ptr;
5968 }
5969
5970 static CORE_ADDR
5971 download_agent_expr (struct agent_expr *expr)
5972 {
5973 CORE_ADDR expr_addr;
5974 CORE_ADDR expr_bytes;
5975
5976 expr_addr = target_malloc (sizeof (*expr));
5977 write_inferior_memory (expr_addr, (unsigned char *) expr, sizeof (*expr));
5978
5979 expr_bytes = target_malloc (expr->length);
5980 write_inferior_data_ptr (expr_addr + offsetof (struct agent_expr, bytes),
5981 expr_bytes);
5982 write_inferior_memory (expr_bytes, expr->bytes, expr->length);
5983
5984 return expr_addr;
5985 }
5986
5987 /* Align V up to N bits. */
5988 #define UALIGN(V, N) (((V) + ((N) - 1)) & ~((N) - 1))
5989
5990 /* Sync tracepoint with IPA, but leave maintenance of linked list to caller. */
5991
5992 static void
5993 download_tracepoint_1 (struct tracepoint *tpoint)
5994 {
5995 struct tracepoint target_tracepoint;
5996 CORE_ADDR tpptr = 0;
5997
5998 gdb_assert (tpoint->type == fast_tracepoint
5999 || tpoint->type == static_tracepoint);
6000
6001 if (tpoint->cond != NULL && target_emit_ops () != NULL)
6002 {
6003 CORE_ADDR jentry, jump_entry;
6004
6005 jentry = jump_entry = get_jump_space_head ();
6006
6007 if (tpoint->cond != NULL)
6008 {
6009 /* Pad to 8-byte alignment. (needed?) */
6010 /* Actually this should be left for the target to
6011 decide. */
6012 jentry = UALIGN (jentry, 8);
6013
6014 compile_tracepoint_condition (tpoint, &jentry);
6015 }
6016
6017 /* Pad to 8-byte alignment. */
6018 jentry = UALIGN (jentry, 8);
6019 claim_jump_space (jentry - jump_entry);
6020 }
6021
6022 target_tracepoint = *tpoint;
6023
6024 tpptr = target_malloc (sizeof (*tpoint));
6025 tpoint->obj_addr_on_target = tpptr;
6026
6027 /* Write the whole object. We'll fix up its pointers in a bit.
6028 Assume no next for now. This is fixed up above on the next
6029 iteration, if there's any. */
6030 target_tracepoint.next = NULL;
6031 /* Need to clear this here too, since we're downloading the
6032 tracepoints before clearing our own copy. */
6033 target_tracepoint.hit_count = 0;
6034
6035 write_inferior_memory (tpptr, (unsigned char *) &target_tracepoint,
6036 sizeof (target_tracepoint));
6037
6038 if (tpoint->cond)
6039 write_inferior_data_ptr (tpptr + offsetof (struct tracepoint,
6040 cond),
6041 download_agent_expr (tpoint->cond));
6042
6043 if (tpoint->numactions)
6044 {
6045 int i;
6046 CORE_ADDR actions_array;
6047
6048 /* The pointers array. */
6049 actions_array
6050 = target_malloc (sizeof (*tpoint->actions) * tpoint->numactions);
6051 write_inferior_data_ptr (tpptr + offsetof (struct tracepoint,
6052 actions),
6053 actions_array);
6054
6055 /* Now for each pointer, download the action. */
6056 for (i = 0; i < tpoint->numactions; i++)
6057 {
6058 struct tracepoint_action *action = tpoint->actions[i];
6059 CORE_ADDR ipa_action = action->ops->download (action);
6060
6061 if (ipa_action != 0)
6062 write_inferior_data_ptr
6063 (actions_array + i * sizeof (*tpoint->actions),
6064 ipa_action);
6065 }
6066 }
6067 }
6068
6069 #define IPA_PROTO_FAST_TRACE_FLAG 0
6070 #define IPA_PROTO_FAST_TRACE_ADDR_ON_TARGET 2
6071 #define IPA_PROTO_FAST_TRACE_JUMP_PAD 10
6072 #define IPA_PROTO_FAST_TRACE_FJUMP_SIZE 18
6073 #define IPA_PROTO_FAST_TRACE_FJUMP_INSN 22
6074
6075 /* Send a command to agent to download and install tracepoint TPOINT. */
6076
6077 static int
6078 tracepoint_send_agent (struct tracepoint *tpoint)
6079 {
6080 char buf[IPA_CMD_BUF_SIZE];
6081 char *p;
6082 int i, ret;
6083
6084 p = buf;
6085 strcpy (p, "FastTrace:");
6086 p += 10;
6087
6088 COPY_FIELD_TO_BUF (p, tpoint, number);
6089 COPY_FIELD_TO_BUF (p, tpoint, address);
6090 COPY_FIELD_TO_BUF (p, tpoint, type);
6091 COPY_FIELD_TO_BUF (p, tpoint, enabled);
6092 COPY_FIELD_TO_BUF (p, tpoint, step_count);
6093 COPY_FIELD_TO_BUF (p, tpoint, pass_count);
6094 COPY_FIELD_TO_BUF (p, tpoint, numactions);
6095 COPY_FIELD_TO_BUF (p, tpoint, hit_count);
6096 COPY_FIELD_TO_BUF (p, tpoint, traceframe_usage);
6097 COPY_FIELD_TO_BUF (p, tpoint, compiled_cond);
6098 COPY_FIELD_TO_BUF (p, tpoint, orig_size);
6099
6100 /* condition */
6101 p = agent_expr_send (p, tpoint->cond);
6102
6103 /* tracepoint_action */
6104 for (i = 0; i < tpoint->numactions; i++)
6105 {
6106 struct tracepoint_action *action = tpoint->actions[i];
6107
6108 p[0] = action->type;
6109 p = action->ops->send (&p[1], action);
6110 }
6111
6112 get_jump_space_head ();
6113 /* Copy the value of GDB_JUMP_PAD_HEAD to command buffer, so that
6114 agent can use jump pad from it. */
6115 if (tpoint->type == fast_tracepoint)
6116 {
6117 memcpy (p, &gdb_jump_pad_head, 8);
6118 p += 8;
6119 }
6120
6121 ret = run_inferior_command (buf, (int) (ptrdiff_t) (p - buf));
6122 if (ret)
6123 return ret;
6124
6125 if (!startswith (buf, "OK"))
6126 return 1;
6127
6128 /* The value of tracepoint's target address is stored in BUF. */
6129 memcpy (&tpoint->obj_addr_on_target,
6130 &buf[IPA_PROTO_FAST_TRACE_ADDR_ON_TARGET], 8);
6131
6132 if (tpoint->type == fast_tracepoint)
6133 {
6134 unsigned char *insn
6135 = (unsigned char *) &buf[IPA_PROTO_FAST_TRACE_FJUMP_INSN];
6136 int fjump_size;
6137
6138 trace_debug ("agent: read from cmd_buf 0x%x 0x%x\n",
6139 (unsigned int) tpoint->obj_addr_on_target,
6140 (unsigned int) gdb_jump_pad_head);
6141
6142 memcpy (&gdb_jump_pad_head, &buf[IPA_PROTO_FAST_TRACE_JUMP_PAD], 8);
6143
6144 /* This has been done in agent. We should also set up record for it. */
6145 memcpy (&fjump_size, &buf[IPA_PROTO_FAST_TRACE_FJUMP_SIZE], 4);
6146 /* Wire it in. */
6147 tpoint->handle
6148 = set_fast_tracepoint_jump (tpoint->address, insn, fjump_size);
6149 }
6150
6151 return 0;
6152 }
6153
6154 static void
6155 download_tracepoint (struct tracepoint *tpoint)
6156 {
6157 struct tracepoint *tp, *tp_prev;
6158
6159 if (tpoint->type != fast_tracepoint
6160 && tpoint->type != static_tracepoint)
6161 return;
6162
6163 download_tracepoint_1 (tpoint);
6164
6165 /* Find the previous entry of TPOINT, which is fast tracepoint or
6166 static tracepoint. */
6167 tp_prev = NULL;
6168 for (tp = tracepoints; tp != tpoint; tp = tp->next)
6169 {
6170 if (tp->type == fast_tracepoint || tp->type == static_tracepoint)
6171 tp_prev = tp;
6172 }
6173
6174 if (tp_prev)
6175 {
6176 CORE_ADDR tp_prev_target_next_addr;
6177
6178 /* Insert TPOINT after TP_PREV in IPA. */
6179 if (read_inferior_data_pointer (tp_prev->obj_addr_on_target
6180 + offsetof (struct tracepoint, next),
6181 &tp_prev_target_next_addr))
6182 {
6183 internal_error (__FILE__, __LINE__,
6184 "error reading `tp_prev->next'");
6185 }
6186
6187 /* tpoint->next = tp_prev->next */
6188 write_inferior_data_ptr (tpoint->obj_addr_on_target
6189 + offsetof (struct tracepoint, next),
6190 tp_prev_target_next_addr);
6191 /* tp_prev->next = tpoint */
6192 write_inferior_data_ptr (tp_prev->obj_addr_on_target
6193 + offsetof (struct tracepoint, next),
6194 tpoint->obj_addr_on_target);
6195 }
6196 else
6197 /* First object in list, set the head pointer in the
6198 inferior. */
6199 write_inferior_data_ptr (ipa_sym_addrs.addr_tracepoints,
6200 tpoint->obj_addr_on_target);
6201
6202 }
6203
6204 static void
6205 download_trace_state_variables (void)
6206 {
6207 CORE_ADDR ptr = 0, prev_ptr = 0;
6208 struct trace_state_variable *tsv;
6209
6210 /* Start out empty. */
6211 write_inferior_data_ptr (ipa_sym_addrs.addr_trace_state_variables, 0);
6212
6213 for (tsv = trace_state_variables; tsv != NULL; tsv = tsv->next)
6214 {
6215 struct trace_state_variable target_tsv;
6216
6217 /* TSV's with a getter have been initialized equally in both the
6218 inferior and GDBserver. Skip them. */
6219 if (tsv->getter != NULL)
6220 continue;
6221
6222 target_tsv = *tsv;
6223
6224 prev_ptr = ptr;
6225 ptr = target_malloc (sizeof (*tsv));
6226
6227 if (tsv == trace_state_variables)
6228 {
6229 /* First object in list, set the head pointer in the
6230 inferior. */
6231
6232 write_inferior_data_ptr (ipa_sym_addrs.addr_trace_state_variables,
6233 ptr);
6234 }
6235 else
6236 {
6237 write_inferior_data_ptr (prev_ptr
6238 + offsetof (struct trace_state_variable,
6239 next),
6240 ptr);
6241 }
6242
6243 /* Write the whole object. We'll fix up its pointers in a bit.
6244 Assume no next, fixup when needed. */
6245 target_tsv.next = NULL;
6246
6247 write_inferior_memory (ptr, (unsigned char *) &target_tsv,
6248 sizeof (target_tsv));
6249
6250 if (tsv->name != NULL)
6251 {
6252 size_t size = strlen (tsv->name) + 1;
6253 CORE_ADDR name_addr = target_malloc (size);
6254 write_inferior_memory (name_addr,
6255 (unsigned char *) tsv->name, size);
6256 write_inferior_data_ptr (ptr
6257 + offsetof (struct trace_state_variable,
6258 name),
6259 name_addr);
6260 }
6261
6262 gdb_assert (tsv->getter == NULL);
6263 }
6264
6265 if (prev_ptr != 0)
6266 {
6267 /* Fixup the next pointer in the last item in the list. */
6268 write_inferior_data_ptr (prev_ptr
6269 + offsetof (struct trace_state_variable,
6270 next), 0);
6271 }
6272 }
6273
6274 /* Upload complete trace frames out of the IP Agent's trace buffer
6275 into GDBserver's trace buffer. This always uploads either all or
6276 no trace frames. This is the counter part of
6277 `trace_alloc_trace_buffer'. See its description of the atomic
6278 synching mechanism. */
6279
6280 static void
6281 upload_fast_traceframes (void)
6282 {
6283 unsigned int ipa_traceframe_read_count, ipa_traceframe_write_count;
6284 unsigned int ipa_traceframe_read_count_racy, ipa_traceframe_write_count_racy;
6285 CORE_ADDR tf;
6286 struct ipa_trace_buffer_control ipa_trace_buffer_ctrl;
6287 unsigned int curr_tbctrl_idx;
6288 unsigned int ipa_trace_buffer_ctrl_curr;
6289 unsigned int ipa_trace_buffer_ctrl_curr_old;
6290 CORE_ADDR ipa_trace_buffer_ctrl_addr;
6291 struct breakpoint *about_to_request_buffer_space_bkpt;
6292 CORE_ADDR ipa_trace_buffer_lo;
6293 CORE_ADDR ipa_trace_buffer_hi;
6294
6295 if (read_inferior_uinteger (ipa_sym_addrs.addr_traceframe_read_count,
6296 &ipa_traceframe_read_count_racy))
6297 {
6298 /* This will happen in most targets if the current thread is
6299 running. */
6300 return;
6301 }
6302
6303 if (read_inferior_uinteger (ipa_sym_addrs.addr_traceframe_write_count,
6304 &ipa_traceframe_write_count_racy))
6305 return;
6306
6307 trace_debug ("ipa_traceframe_count (racy area): %d (w=%d, r=%d)",
6308 ipa_traceframe_write_count_racy
6309 - ipa_traceframe_read_count_racy,
6310 ipa_traceframe_write_count_racy,
6311 ipa_traceframe_read_count_racy);
6312
6313 if (ipa_traceframe_write_count_racy == ipa_traceframe_read_count_racy)
6314 return;
6315
6316 about_to_request_buffer_space_bkpt
6317 = set_breakpoint_at (ipa_sym_addrs.addr_about_to_request_buffer_space,
6318 NULL);
6319
6320 if (read_inferior_uinteger (ipa_sym_addrs.addr_trace_buffer_ctrl_curr,
6321 &ipa_trace_buffer_ctrl_curr))
6322 return;
6323
6324 ipa_trace_buffer_ctrl_curr_old = ipa_trace_buffer_ctrl_curr;
6325
6326 curr_tbctrl_idx = ipa_trace_buffer_ctrl_curr & ~GDBSERVER_FLUSH_COUNT_MASK;
6327
6328 {
6329 unsigned int prev, counter;
6330
6331 /* Update the token, with new counters, and the GDBserver stamp
6332 bit. Alway reuse the current TBC index. */
6333 prev = ipa_trace_buffer_ctrl_curr & GDBSERVER_FLUSH_COUNT_MASK_CURR;
6334 counter = (prev + 0x100) & GDBSERVER_FLUSH_COUNT_MASK_CURR;
6335
6336 ipa_trace_buffer_ctrl_curr = (GDBSERVER_UPDATED_FLUSH_COUNT_BIT
6337 | (prev << 12)
6338 | counter
6339 | curr_tbctrl_idx);
6340 }
6341
6342 if (write_inferior_uinteger (ipa_sym_addrs.addr_trace_buffer_ctrl_curr,
6343 ipa_trace_buffer_ctrl_curr))
6344 return;
6345
6346 trace_debug ("Lib: Committed %08x -> %08x",
6347 ipa_trace_buffer_ctrl_curr_old,
6348 ipa_trace_buffer_ctrl_curr);
6349
6350 /* Re-read these, now that we've installed the
6351 `about_to_request_buffer_space' breakpoint/lock. A thread could
6352 have finished a traceframe between the last read of these
6353 counters and setting the breakpoint above. If we start
6354 uploading, we never want to leave this function with
6355 traceframe_read_count != 0, otherwise, GDBserver could end up
6356 incrementing the counter tokens more than once (due to event loop
6357 nesting), which would break the IP agent's "effective" detection
6358 (see trace_alloc_trace_buffer). */
6359 if (read_inferior_uinteger (ipa_sym_addrs.addr_traceframe_read_count,
6360 &ipa_traceframe_read_count))
6361 return;
6362 if (read_inferior_uinteger (ipa_sym_addrs.addr_traceframe_write_count,
6363 &ipa_traceframe_write_count))
6364 return;
6365
6366 if (debug_threads)
6367 {
6368 trace_debug ("ipa_traceframe_count (blocked area): %d (w=%d, r=%d)",
6369 ipa_traceframe_write_count - ipa_traceframe_read_count,
6370 ipa_traceframe_write_count, ipa_traceframe_read_count);
6371
6372 if (ipa_traceframe_write_count != ipa_traceframe_write_count_racy
6373 || ipa_traceframe_read_count != ipa_traceframe_read_count_racy)
6374 trace_debug ("note that ipa_traceframe_count's parts changed");
6375 }
6376
6377 /* Get the address of the current TBC object (the IP agent has an
6378 array of 3 such objects). The index is stored in the TBC
6379 token. */
6380 ipa_trace_buffer_ctrl_addr = ipa_sym_addrs.addr_trace_buffer_ctrl;
6381 ipa_trace_buffer_ctrl_addr
6382 += sizeof (struct ipa_trace_buffer_control) * curr_tbctrl_idx;
6383
6384 if (read_inferior_memory (ipa_trace_buffer_ctrl_addr,
6385 (unsigned char *) &ipa_trace_buffer_ctrl,
6386 sizeof (struct ipa_trace_buffer_control)))
6387 return;
6388
6389 if (read_inferior_data_pointer (ipa_sym_addrs.addr_trace_buffer_lo,
6390 &ipa_trace_buffer_lo))
6391 return;
6392 if (read_inferior_data_pointer (ipa_sym_addrs.addr_trace_buffer_hi,
6393 &ipa_trace_buffer_hi))
6394 return;
6395
6396 /* Offsets are easier to grok for debugging than raw addresses,
6397 especially for the small trace buffer sizes that are useful for
6398 testing. */
6399 trace_debug ("Lib: Trace buffer [%d] start=%d free=%d "
6400 "endfree=%d wrap=%d hi=%d",
6401 curr_tbctrl_idx,
6402 (int) (ipa_trace_buffer_ctrl.start - ipa_trace_buffer_lo),
6403 (int) (ipa_trace_buffer_ctrl.free - ipa_trace_buffer_lo),
6404 (int) (ipa_trace_buffer_ctrl.end_free - ipa_trace_buffer_lo),
6405 (int) (ipa_trace_buffer_ctrl.wrap - ipa_trace_buffer_lo),
6406 (int) (ipa_trace_buffer_hi - ipa_trace_buffer_lo));
6407
6408 /* Note that the IPA's buffer is always circular. */
6409
6410 #define IPA_FIRST_TRACEFRAME() (ipa_trace_buffer_ctrl.start)
6411
6412 #define IPA_NEXT_TRACEFRAME_1(TF, TFOBJ) \
6413 ((TF) + sizeof (struct traceframe) + (TFOBJ)->data_size)
6414
6415 #define IPA_NEXT_TRACEFRAME(TF, TFOBJ) \
6416 (IPA_NEXT_TRACEFRAME_1 (TF, TFOBJ) \
6417 - ((IPA_NEXT_TRACEFRAME_1 (TF, TFOBJ) >= ipa_trace_buffer_ctrl.wrap) \
6418 ? (ipa_trace_buffer_ctrl.wrap - ipa_trace_buffer_lo) \
6419 : 0))
6420
6421 tf = IPA_FIRST_TRACEFRAME ();
6422
6423 while (ipa_traceframe_write_count - ipa_traceframe_read_count)
6424 {
6425 struct tracepoint *tpoint;
6426 struct traceframe *tframe;
6427 unsigned char *block;
6428 struct traceframe ipa_tframe;
6429
6430 if (read_inferior_memory (tf, (unsigned char *) &ipa_tframe,
6431 offsetof (struct traceframe, data)))
6432 error ("Uploading: couldn't read traceframe at %s\n", paddress (tf));
6433
6434 if (ipa_tframe.tpnum == 0)
6435 {
6436 internal_error (__FILE__, __LINE__,
6437 "Uploading: No (more) fast traceframes, but"
6438 " ipa_traceframe_count == %u??\n",
6439 ipa_traceframe_write_count
6440 - ipa_traceframe_read_count);
6441 }
6442
6443 /* Note that this will be incorrect for multi-location
6444 tracepoints... */
6445 tpoint = find_next_tracepoint_by_number (NULL, ipa_tframe.tpnum);
6446
6447 tframe = add_traceframe (tpoint);
6448 if (tframe == NULL)
6449 {
6450 trace_buffer_is_full = 1;
6451 trace_debug ("Uploading: trace buffer is full");
6452 }
6453 else
6454 {
6455 /* Copy the whole set of blocks in one go for now. FIXME:
6456 split this in smaller blocks. */
6457 block = add_traceframe_block (tframe, tpoint,
6458 ipa_tframe.data_size);
6459 if (block != NULL)
6460 {
6461 if (read_inferior_memory (tf
6462 + offsetof (struct traceframe, data),
6463 block, ipa_tframe.data_size))
6464 error ("Uploading: Couldn't read traceframe data at %s\n",
6465 paddress (tf + offsetof (struct traceframe, data)));
6466 }
6467
6468 trace_debug ("Uploading: traceframe didn't fit");
6469 finish_traceframe (tframe);
6470 }
6471
6472 tf = IPA_NEXT_TRACEFRAME (tf, &ipa_tframe);
6473
6474 /* If we freed the traceframe that wrapped around, go back
6475 to the non-wrap case. */
6476 if (tf < ipa_trace_buffer_ctrl.start)
6477 {
6478 trace_debug ("Lib: Discarding past the wraparound");
6479 ipa_trace_buffer_ctrl.wrap = ipa_trace_buffer_hi;
6480 }
6481 ipa_trace_buffer_ctrl.start = tf;
6482 ipa_trace_buffer_ctrl.end_free = ipa_trace_buffer_ctrl.start;
6483 ++ipa_traceframe_read_count;
6484
6485 if (ipa_trace_buffer_ctrl.start == ipa_trace_buffer_ctrl.free
6486 && ipa_trace_buffer_ctrl.start == ipa_trace_buffer_ctrl.end_free)
6487 {
6488 trace_debug ("Lib: buffer is fully empty. "
6489 "Trace buffer [%d] start=%d free=%d endfree=%d",
6490 curr_tbctrl_idx,
6491 (int) (ipa_trace_buffer_ctrl.start
6492 - ipa_trace_buffer_lo),
6493 (int) (ipa_trace_buffer_ctrl.free
6494 - ipa_trace_buffer_lo),
6495 (int) (ipa_trace_buffer_ctrl.end_free
6496 - ipa_trace_buffer_lo));
6497
6498 ipa_trace_buffer_ctrl.start = ipa_trace_buffer_lo;
6499 ipa_trace_buffer_ctrl.free = ipa_trace_buffer_lo;
6500 ipa_trace_buffer_ctrl.end_free = ipa_trace_buffer_hi;
6501 ipa_trace_buffer_ctrl.wrap = ipa_trace_buffer_hi;
6502 }
6503
6504 trace_debug ("Uploaded a traceframe\n"
6505 "Lib: Trace buffer [%d] start=%d free=%d "
6506 "endfree=%d wrap=%d hi=%d",
6507 curr_tbctrl_idx,
6508 (int) (ipa_trace_buffer_ctrl.start - ipa_trace_buffer_lo),
6509 (int) (ipa_trace_buffer_ctrl.free - ipa_trace_buffer_lo),
6510 (int) (ipa_trace_buffer_ctrl.end_free
6511 - ipa_trace_buffer_lo),
6512 (int) (ipa_trace_buffer_ctrl.wrap - ipa_trace_buffer_lo),
6513 (int) (ipa_trace_buffer_hi - ipa_trace_buffer_lo));
6514 }
6515
6516 if (write_inferior_memory (ipa_trace_buffer_ctrl_addr,
6517 (unsigned char *) &ipa_trace_buffer_ctrl,
6518 sizeof (struct ipa_trace_buffer_control)))
6519 return;
6520
6521 write_inferior_integer (ipa_sym_addrs.addr_traceframe_read_count,
6522 ipa_traceframe_read_count);
6523
6524 trace_debug ("Done uploading traceframes [%d]\n", curr_tbctrl_idx);
6525
6526 pause_all (1);
6527
6528 delete_breakpoint (about_to_request_buffer_space_bkpt);
6529 about_to_request_buffer_space_bkpt = NULL;
6530
6531 unpause_all (1);
6532
6533 if (trace_buffer_is_full)
6534 stop_tracing ();
6535 }
6536 #endif
6537
6538 #ifdef IN_PROCESS_AGENT
6539
6540 IP_AGENT_EXPORT_VAR int ust_loaded;
6541 IP_AGENT_EXPORT_VAR char cmd_buf[IPA_CMD_BUF_SIZE];
6542
6543 #ifdef HAVE_UST
6544
6545 /* Static tracepoints. */
6546
6547 /* UST puts a "struct tracepoint" in the global namespace, which
6548 conflicts with our tracepoint. Arguably, being a library, it
6549 shouldn't take ownership of such a generic name. We work around it
6550 here. */
6551 #define tracepoint ust_tracepoint
6552 #include <ust/ust.h>
6553 #undef tracepoint
6554
6555 extern int serialize_to_text (char *outbuf, int bufsize,
6556 const char *fmt, va_list ap);
6557
6558 #define GDB_PROBE_NAME "gdb"
6559
6560 /* We dynamically search for the UST symbols instead of linking them
6561 in. This lets the user decide if the application uses static
6562 tracepoints, instead of always pulling libust.so in. This vector
6563 holds pointers to all functions we care about. */
6564
6565 static struct
6566 {
6567 int (*serialize_to_text) (char *outbuf, int bufsize,
6568 const char *fmt, va_list ap);
6569
6570 int (*ltt_probe_register) (struct ltt_available_probe *pdata);
6571 int (*ltt_probe_unregister) (struct ltt_available_probe *pdata);
6572
6573 int (*ltt_marker_connect) (const char *channel, const char *mname,
6574 const char *pname);
6575 int (*ltt_marker_disconnect) (const char *channel, const char *mname,
6576 const char *pname);
6577
6578 void (*marker_iter_start) (struct marker_iter *iter);
6579 void (*marker_iter_next) (struct marker_iter *iter);
6580 void (*marker_iter_stop) (struct marker_iter *iter);
6581 void (*marker_iter_reset) (struct marker_iter *iter);
6582 } ust_ops;
6583
6584 #include <dlfcn.h>
6585
6586 /* Cast through typeof to catch incompatible API changes. Since UST
6587 only builds with gcc, we can freely use gcc extensions here
6588 too. */
6589 #define GET_UST_SYM(SYM) \
6590 do \
6591 { \
6592 if (ust_ops.SYM == NULL) \
6593 ust_ops.SYM = (typeof (&SYM)) dlsym (RTLD_DEFAULT, #SYM); \
6594 if (ust_ops.SYM == NULL) \
6595 return 0; \
6596 } while (0)
6597
6598 #define USTF(SYM) ust_ops.SYM
6599
6600 /* Get pointers to all libust.so functions we care about. */
6601
6602 static int
6603 dlsym_ust (void)
6604 {
6605 GET_UST_SYM (serialize_to_text);
6606
6607 GET_UST_SYM (ltt_probe_register);
6608 GET_UST_SYM (ltt_probe_unregister);
6609 GET_UST_SYM (ltt_marker_connect);
6610 GET_UST_SYM (ltt_marker_disconnect);
6611
6612 GET_UST_SYM (marker_iter_start);
6613 GET_UST_SYM (marker_iter_next);
6614 GET_UST_SYM (marker_iter_stop);
6615 GET_UST_SYM (marker_iter_reset);
6616
6617 ust_loaded = 1;
6618 return 1;
6619 }
6620
6621 /* Given an UST marker, return the matching gdb static tracepoint.
6622 The match is done by address. */
6623
6624 static struct tracepoint *
6625 ust_marker_to_static_tracepoint (const struct marker *mdata)
6626 {
6627 struct tracepoint *tpoint;
6628
6629 for (tpoint = tracepoints; tpoint; tpoint = tpoint->next)
6630 {
6631 if (tpoint->type != static_tracepoint)
6632 continue;
6633
6634 if (tpoint->address == (uintptr_t) mdata->location)
6635 return tpoint;
6636 }
6637
6638 return NULL;
6639 }
6640
6641 /* The probe function we install on lttng/ust markers. Whenever a
6642 probed ust marker is hit, this function is called. This is similar
6643 to gdb_collect, only for static tracepoints, instead of fast
6644 tracepoints. */
6645
6646 static void
6647 gdb_probe (const struct marker *mdata, void *probe_private,
6648 struct registers *regs, void *call_private,
6649 const char *fmt, va_list *args)
6650 {
6651 struct tracepoint *tpoint;
6652 struct static_tracepoint_ctx ctx;
6653
6654 /* Don't do anything until the trace run is completely set up. */
6655 if (!tracing)
6656 {
6657 trace_debug ("gdb_probe: not tracing\n");
6658 return;
6659 }
6660
6661 ctx.base.type = static_tracepoint;
6662 ctx.regcache_initted = 0;
6663 ctx.regs = regs;
6664 ctx.fmt = fmt;
6665 ctx.args = args;
6666
6667 /* Wrap the regblock in a register cache (in the stack, we don't
6668 want to malloc here). */
6669 ctx.regspace = alloca (ipa_tdesc->registers_size);
6670 if (ctx.regspace == NULL)
6671 {
6672 trace_debug ("Trace buffer block allocation failed, skipping");
6673 return;
6674 }
6675
6676 tpoint = ust_marker_to_static_tracepoint (mdata);
6677 if (tpoint == NULL)
6678 {
6679 trace_debug ("gdb_probe: marker not known: "
6680 "loc:0x%p, ch:\"%s\",n:\"%s\",f:\"%s\"",
6681 mdata->location, mdata->channel,
6682 mdata->name, mdata->format);
6683 return;
6684 }
6685
6686 if (!tpoint->enabled)
6687 {
6688 trace_debug ("gdb_probe: tracepoint disabled");
6689 return;
6690 }
6691
6692 ctx.tpoint = tpoint;
6693
6694 trace_debug ("gdb_probe: collecting marker: "
6695 "loc:0x%p, ch:\"%s\",n:\"%s\",f:\"%s\"",
6696 mdata->location, mdata->channel,
6697 mdata->name, mdata->format);
6698
6699 /* Test the condition if present, and collect if true. */
6700 if (tpoint->cond == NULL
6701 || condition_true_at_tracepoint ((struct tracepoint_hit_ctx *) &ctx,
6702 tpoint))
6703 {
6704 collect_data_at_tracepoint ((struct tracepoint_hit_ctx *) &ctx,
6705 tpoint->address, tpoint);
6706
6707 if (stopping_tracepoint
6708 || trace_buffer_is_full
6709 || expr_eval_result != expr_eval_no_error)
6710 stop_tracing ();
6711 }
6712 else
6713 {
6714 /* If there was a condition and it evaluated to false, the only
6715 way we would stop tracing is if there was an error during
6716 condition expression evaluation. */
6717 if (expr_eval_result != expr_eval_no_error)
6718 stop_tracing ();
6719 }
6720 }
6721
6722 /* Called if the gdb static tracepoint requested collecting "$_sdata",
6723 static tracepoint string data. This is a string passed to the
6724 tracing library by the user, at the time of the tracepoint marker
6725 call. E.g., in the UST marker call:
6726
6727 trace_mark (ust, bar33, "str %s", "FOOBAZ");
6728
6729 the collected data is "str FOOBAZ".
6730 */
6731
6732 static void
6733 collect_ust_data_at_tracepoint (struct tracepoint_hit_ctx *ctx,
6734 struct traceframe *tframe)
6735 {
6736 struct static_tracepoint_ctx *umd = (struct static_tracepoint_ctx *) ctx;
6737 unsigned char *bufspace;
6738 int size;
6739 va_list copy;
6740 unsigned short blocklen;
6741
6742 if (umd == NULL)
6743 {
6744 trace_debug ("Wanted to collect static trace data, "
6745 "but there's no static trace data");
6746 return;
6747 }
6748
6749 va_copy (copy, *umd->args);
6750 size = USTF(serialize_to_text) (NULL, 0, umd->fmt, copy);
6751 va_end (copy);
6752
6753 trace_debug ("Want to collect ust data");
6754
6755 /* 'S' + size + string */
6756 bufspace = add_traceframe_block (tframe, umd->tpoint,
6757 1 + sizeof (blocklen) + size + 1);
6758 if (bufspace == NULL)
6759 {
6760 trace_debug ("Trace buffer block allocation failed, skipping");
6761 return;
6762 }
6763
6764 /* Identify a static trace data block. */
6765 *bufspace = 'S';
6766
6767 blocklen = size + 1;
6768 memcpy (bufspace + 1, &blocklen, sizeof (blocklen));
6769
6770 va_copy (copy, *umd->args);
6771 USTF(serialize_to_text) ((char *) bufspace + 1 + sizeof (blocklen),
6772 size + 1, umd->fmt, copy);
6773 va_end (copy);
6774
6775 trace_debug ("Storing static tracepoint data in regblock: %s",
6776 bufspace + 1 + sizeof (blocklen));
6777 }
6778
6779 /* The probe to register with lttng/ust. */
6780 static struct ltt_available_probe gdb_ust_probe =
6781 {
6782 GDB_PROBE_NAME,
6783 NULL,
6784 gdb_probe,
6785 };
6786
6787 #endif /* HAVE_UST */
6788 #endif /* IN_PROCESS_AGENT */
6789
6790 #ifndef IN_PROCESS_AGENT
6791
6792 /* Ask the in-process agent to run a command. Since we don't want to
6793 have to handle the IPA hitting breakpoints while running the
6794 command, we pause all threads, remove all breakpoints, and then set
6795 the helper thread re-running. We communicate with the helper
6796 thread by means of direct memory xfering, and a socket for
6797 synchronization. */
6798
6799 static int
6800 run_inferior_command (char *cmd, int len)
6801 {
6802 int err = -1;
6803 int pid = ptid_get_pid (current_ptid);
6804
6805 trace_debug ("run_inferior_command: running: %s", cmd);
6806
6807 pause_all (0);
6808 uninsert_all_breakpoints ();
6809
6810 err = agent_run_command (pid, (const char *) cmd, len);
6811
6812 reinsert_all_breakpoints ();
6813 unpause_all (0);
6814
6815 return err;
6816 }
6817
6818 #else /* !IN_PROCESS_AGENT */
6819
6820 #include <sys/socket.h>
6821 #include <sys/un.h>
6822
6823 #ifndef UNIX_PATH_MAX
6824 #define UNIX_PATH_MAX sizeof(((struct sockaddr_un *) NULL)->sun_path)
6825 #endif
6826
6827 /* Where we put the socked used for synchronization. */
6828 #define SOCK_DIR P_tmpdir
6829
6830 /* Thread ID of the helper thread. GDBserver reads this to know which
6831 is the help thread. This is an LWP id on Linux. */
6832 EXTERN_C_PUSH
6833 IP_AGENT_EXPORT_VAR int helper_thread_id;
6834 EXTERN_C_POP
6835
6836 static int
6837 init_named_socket (const char *name)
6838 {
6839 int result, fd;
6840 struct sockaddr_un addr;
6841
6842 result = fd = socket (PF_UNIX, SOCK_STREAM, 0);
6843 if (result == -1)
6844 {
6845 warning ("socket creation failed: %s", strerror (errno));
6846 return -1;
6847 }
6848
6849 addr.sun_family = AF_UNIX;
6850
6851 strncpy (addr.sun_path, name, UNIX_PATH_MAX);
6852 addr.sun_path[UNIX_PATH_MAX - 1] = '\0';
6853
6854 result = access (name, F_OK);
6855 if (result == 0)
6856 {
6857 /* File exists. */
6858 result = unlink (name);
6859 if (result == -1)
6860 {
6861 warning ("unlink failed: %s", strerror (errno));
6862 close (fd);
6863 return -1;
6864 }
6865 warning ("socket %s already exists; overwriting", name);
6866 }
6867
6868 result = bind (fd, (struct sockaddr *) &addr, sizeof (addr));
6869 if (result == -1)
6870 {
6871 warning ("bind failed: %s", strerror (errno));
6872 close (fd);
6873 return -1;
6874 }
6875
6876 result = listen (fd, 1);
6877 if (result == -1)
6878 {
6879 warning ("listen: %s", strerror (errno));
6880 close (fd);
6881 return -1;
6882 }
6883
6884 return fd;
6885 }
6886
6887 static char agent_socket_name[UNIX_PATH_MAX];
6888
6889 static int
6890 gdb_agent_socket_init (void)
6891 {
6892 int result, fd;
6893
6894 result = xsnprintf (agent_socket_name, UNIX_PATH_MAX, "%s/gdb_ust%d",
6895 SOCK_DIR, getpid ());
6896 if (result >= UNIX_PATH_MAX)
6897 {
6898 trace_debug ("string overflow allocating socket name");
6899 return -1;
6900 }
6901
6902 fd = init_named_socket (agent_socket_name);
6903 if (fd < 0)
6904 warning ("Error initializing named socket (%s) for communication with the "
6905 "ust helper thread. Check that directory exists and that it "
6906 "is writable.", agent_socket_name);
6907
6908 return fd;
6909 }
6910
6911 #ifdef HAVE_UST
6912
6913 /* The next marker to be returned on a qTsSTM command. */
6914 static const struct marker *next_st;
6915
6916 /* Returns the first known marker. */
6917
6918 struct marker *
6919 first_marker (void)
6920 {
6921 struct marker_iter iter;
6922
6923 USTF(marker_iter_reset) (&iter);
6924 USTF(marker_iter_start) (&iter);
6925
6926 return iter.marker;
6927 }
6928
6929 /* Returns the marker following M. */
6930
6931 const struct marker *
6932 next_marker (const struct marker *m)
6933 {
6934 struct marker_iter iter;
6935
6936 USTF(marker_iter_reset) (&iter);
6937 USTF(marker_iter_start) (&iter);
6938
6939 for (; iter.marker != NULL; USTF(marker_iter_next) (&iter))
6940 {
6941 if (iter.marker == m)
6942 {
6943 USTF(marker_iter_next) (&iter);
6944 return iter.marker;
6945 }
6946 }
6947
6948 return NULL;
6949 }
6950
6951 /* Return an hexstr version of the STR C string, fit for sending to
6952 GDB. */
6953
6954 static char *
6955 cstr_to_hexstr (const char *str)
6956 {
6957 int len = strlen (str);
6958 char *hexstr = xmalloc (len * 2 + 1);
6959 bin2hex ((gdb_byte *) str, hexstr, len);
6960 return hexstr;
6961 }
6962
6963 /* Compose packet that is the response to the qTsSTM/qTfSTM/qTSTMat
6964 packets. */
6965
6966 static void
6967 response_ust_marker (char *packet, const struct marker *st)
6968 {
6969 char *strid, *format, *tmp;
6970
6971 next_st = next_marker (st);
6972
6973 tmp = xmalloc (strlen (st->channel) + 1 +
6974 strlen (st->name) + 1);
6975 sprintf (tmp, "%s/%s", st->channel, st->name);
6976
6977 strid = cstr_to_hexstr (tmp);
6978 free (tmp);
6979
6980 format = cstr_to_hexstr (st->format);
6981
6982 sprintf (packet, "m%s:%s:%s",
6983 paddress ((uintptr_t) st->location),
6984 strid,
6985 format);
6986
6987 free (strid);
6988 free (format);
6989 }
6990
6991 /* Return the first static tracepoint, and initialize the state
6992 machine that will iterate through all the static tracepoints. */
6993
6994 static void
6995 cmd_qtfstm (char *packet)
6996 {
6997 trace_debug ("Returning first trace state variable definition");
6998
6999 if (first_marker ())
7000 response_ust_marker (packet, first_marker ());
7001 else
7002 strcpy (packet, "l");
7003 }
7004
7005 /* Return additional trace state variable definitions. */
7006
7007 static void
7008 cmd_qtsstm (char *packet)
7009 {
7010 trace_debug ("Returning static tracepoint");
7011
7012 if (next_st)
7013 response_ust_marker (packet, next_st);
7014 else
7015 strcpy (packet, "l");
7016 }
7017
7018 /* Disconnect the GDB probe from a marker at a given address. */
7019
7020 static void
7021 unprobe_marker_at (char *packet)
7022 {
7023 char *p = packet;
7024 ULONGEST address;
7025 struct marker_iter iter;
7026
7027 p += sizeof ("unprobe_marker_at:") - 1;
7028
7029 p = unpack_varlen_hex (p, &address);
7030
7031 USTF(marker_iter_reset) (&iter);
7032 USTF(marker_iter_start) (&iter);
7033 for (; iter.marker != NULL; USTF(marker_iter_next) (&iter))
7034 if ((uintptr_t ) iter.marker->location == address)
7035 {
7036 int result;
7037
7038 result = USTF(ltt_marker_disconnect) (iter.marker->channel,
7039 iter.marker->name,
7040 GDB_PROBE_NAME);
7041 if (result < 0)
7042 warning ("could not disable marker %s/%s",
7043 iter.marker->channel, iter.marker->name);
7044 break;
7045 }
7046 }
7047
7048 /* Connect the GDB probe to a marker at a given address. */
7049
7050 static int
7051 probe_marker_at (char *packet)
7052 {
7053 char *p = packet;
7054 ULONGEST address;
7055 struct marker_iter iter;
7056 struct marker *m;
7057
7058 p += sizeof ("probe_marker_at:") - 1;
7059
7060 p = unpack_varlen_hex (p, &address);
7061
7062 USTF(marker_iter_reset) (&iter);
7063
7064 for (USTF(marker_iter_start) (&iter), m = iter.marker;
7065 m != NULL;
7066 USTF(marker_iter_next) (&iter), m = iter.marker)
7067 if ((uintptr_t ) m->location == address)
7068 {
7069 int result;
7070
7071 trace_debug ("found marker for address. "
7072 "ltt_marker_connect (marker = %s/%s)",
7073 m->channel, m->name);
7074
7075 result = USTF(ltt_marker_connect) (m->channel, m->name,
7076 GDB_PROBE_NAME);
7077 if (result && result != -EEXIST)
7078 trace_debug ("ltt_marker_connect (marker = %s/%s, errno = %d)",
7079 m->channel, m->name, -result);
7080
7081 if (result < 0)
7082 {
7083 sprintf (packet, "E.could not connect marker: channel=%s, name=%s",
7084 m->channel, m->name);
7085 return -1;
7086 }
7087
7088 strcpy (packet, "OK");
7089 return 0;
7090 }
7091
7092 sprintf (packet, "E.no marker found at 0x%s", paddress (address));
7093 return -1;
7094 }
7095
7096 static int
7097 cmd_qtstmat (char *packet)
7098 {
7099 char *p = packet;
7100 ULONGEST address;
7101 struct marker_iter iter;
7102 struct marker *m;
7103
7104 p += sizeof ("qTSTMat:") - 1;
7105
7106 p = unpack_varlen_hex (p, &address);
7107
7108 USTF(marker_iter_reset) (&iter);
7109
7110 for (USTF(marker_iter_start) (&iter), m = iter.marker;
7111 m != NULL;
7112 USTF(marker_iter_next) (&iter), m = iter.marker)
7113 if ((uintptr_t ) m->location == address)
7114 {
7115 response_ust_marker (packet, m);
7116 return 0;
7117 }
7118
7119 strcpy (packet, "l");
7120 return -1;
7121 }
7122
7123 static void
7124 gdb_ust_init (void)
7125 {
7126 if (!dlsym_ust ())
7127 return;
7128
7129 USTF(ltt_probe_register) (&gdb_ust_probe);
7130 }
7131
7132 #endif /* HAVE_UST */
7133
7134 #include <sys/syscall.h>
7135
7136 static void
7137 gdb_agent_remove_socket (void)
7138 {
7139 unlink (agent_socket_name);
7140 }
7141
7142 /* Helper thread of agent. */
7143
7144 static void *
7145 gdb_agent_helper_thread (void *arg)
7146 {
7147 int listen_fd;
7148
7149 atexit (gdb_agent_remove_socket);
7150
7151 while (1)
7152 {
7153 listen_fd = gdb_agent_socket_init ();
7154
7155 if (helper_thread_id == 0)
7156 helper_thread_id = syscall (SYS_gettid);
7157
7158 if (listen_fd == -1)
7159 {
7160 warning ("could not create sync socket\n");
7161 break;
7162 }
7163
7164 while (1)
7165 {
7166 socklen_t tmp;
7167 struct sockaddr_un sockaddr;
7168 int fd;
7169 char buf[1];
7170 int ret;
7171 int stop_loop = 0;
7172
7173 tmp = sizeof (sockaddr);
7174
7175 do
7176 {
7177 fd = accept (listen_fd, (struct sockaddr *) &sockaddr, &tmp);
7178 }
7179 /* It seems an ERESTARTSYS can escape out of accept. */
7180 while (fd == -512 || (fd == -1 && errno == EINTR));
7181
7182 if (fd < 0)
7183 {
7184 warning ("Accept returned %d, error: %s\n",
7185 fd, strerror (errno));
7186 break;
7187 }
7188
7189 do
7190 {
7191 ret = read (fd, buf, 1);
7192 } while (ret == -1 && errno == EINTR);
7193
7194 if (ret == -1)
7195 {
7196 warning ("reading socket (fd=%d) failed with %s",
7197 fd, strerror (errno));
7198 close (fd);
7199 break;
7200 }
7201
7202 if (cmd_buf[0])
7203 {
7204 if (startswith (cmd_buf, "close"))
7205 {
7206 stop_loop = 1;
7207 }
7208 #ifdef HAVE_UST
7209 else if (strcmp ("qTfSTM", cmd_buf) == 0)
7210 {
7211 cmd_qtfstm (cmd_buf);
7212 }
7213 else if (strcmp ("qTsSTM", cmd_buf) == 0)
7214 {
7215 cmd_qtsstm (cmd_buf);
7216 }
7217 else if (startswith (cmd_buf, "unprobe_marker_at:"))
7218 {
7219 unprobe_marker_at (cmd_buf);
7220 }
7221 else if (startswith (cmd_buf, "probe_marker_at:"))
7222 {
7223 probe_marker_at (cmd_buf);
7224 }
7225 else if (startswith (cmd_buf, "qTSTMat:"))
7226 {
7227 cmd_qtstmat (cmd_buf);
7228 }
7229 #endif /* HAVE_UST */
7230 }
7231
7232 /* Fix compiler's warning: ignoring return value of 'write'. */
7233 ret = write (fd, buf, 1);
7234 close (fd);
7235
7236 if (stop_loop)
7237 {
7238 close (listen_fd);
7239 unlink (agent_socket_name);
7240
7241 /* Sleep endlessly to wait the whole inferior stops. This
7242 thread can not exit because GDB or GDBserver may still need
7243 'current_thread' (representing this thread) to access
7244 inferior memory. Otherwise, this thread exits earlier than
7245 other threads, and 'current_thread' is set to NULL. */
7246 while (1)
7247 sleep (10);
7248 }
7249 }
7250 }
7251
7252 return NULL;
7253 }
7254
7255 #include <signal.h>
7256 #include <pthread.h>
7257
7258 EXTERN_C_PUSH
7259 IP_AGENT_EXPORT_VAR int gdb_agent_capability = AGENT_CAPA_STATIC_TRACE;
7260 EXTERN_C_POP
7261
7262 static void
7263 gdb_agent_init (void)
7264 {
7265 int res;
7266 pthread_t thread;
7267 sigset_t new_mask;
7268 sigset_t orig_mask;
7269
7270 /* We want the helper thread to be as transparent as possible, so
7271 have it inherit an all-signals-blocked mask. */
7272
7273 sigfillset (&new_mask);
7274 res = pthread_sigmask (SIG_SETMASK, &new_mask, &orig_mask);
7275 if (res)
7276 perror_with_name ("pthread_sigmask (1)");
7277
7278 res = pthread_create (&thread,
7279 NULL,
7280 gdb_agent_helper_thread,
7281 NULL);
7282
7283 res = pthread_sigmask (SIG_SETMASK, &orig_mask, NULL);
7284 if (res)
7285 perror_with_name ("pthread_sigmask (2)");
7286
7287 while (helper_thread_id == 0)
7288 usleep (1);
7289
7290 #ifdef HAVE_UST
7291 gdb_ust_init ();
7292 #endif
7293 }
7294
7295 #include <sys/mman.h>
7296 #include <fcntl.h>
7297
7298 IP_AGENT_EXPORT_VAR char *gdb_tp_heap_buffer;
7299 IP_AGENT_EXPORT_VAR char *gdb_jump_pad_buffer;
7300 IP_AGENT_EXPORT_VAR char *gdb_jump_pad_buffer_end;
7301 IP_AGENT_EXPORT_VAR char *gdb_trampoline_buffer;
7302 IP_AGENT_EXPORT_VAR char *gdb_trampoline_buffer_end;
7303 IP_AGENT_EXPORT_VAR char *gdb_trampoline_buffer_error;
7304
7305 /* Record the result of getting buffer space for fast tracepoint
7306 trampolines. Any error message is copied, since caller may not be
7307 using persistent storage. */
7308
7309 void
7310 set_trampoline_buffer_space (CORE_ADDR begin, CORE_ADDR end, char *errmsg)
7311 {
7312 gdb_trampoline_buffer = (char *) (uintptr_t) begin;
7313 gdb_trampoline_buffer_end = (char *) (uintptr_t) end;
7314 if (errmsg)
7315 strncpy (gdb_trampoline_buffer_error, errmsg, 99);
7316 else
7317 strcpy (gdb_trampoline_buffer_error, "no buffer passed");
7318 }
7319
7320 static void __attribute__ ((constructor))
7321 initialize_tracepoint_ftlib (void)
7322 {
7323 initialize_tracepoint ();
7324
7325 gdb_agent_init ();
7326 }
7327
7328 #endif /* IN_PROCESS_AGENT */
7329
7330 /* Return a timestamp, expressed as microseconds of the usual Unix
7331 time. (As the result is a 64-bit number, it will not overflow any
7332 time soon.) */
7333
7334 static LONGEST
7335 get_timestamp (void)
7336 {
7337 struct timeval tv;
7338
7339 if (gettimeofday (&tv, 0) != 0)
7340 return -1;
7341 else
7342 return (LONGEST) tv.tv_sec * 1000000 + tv.tv_usec;
7343 }
7344
7345 void
7346 initialize_tracepoint (void)
7347 {
7348 /* Start with the default size. */
7349 init_trace_buffer (DEFAULT_TRACE_BUFFER_SIZE);
7350
7351 /* Wire trace state variable 1 to be the timestamp. This will be
7352 uploaded to GDB upon connection and become one of its trace state
7353 variables. (In case you're wondering, if GDB already has a trace
7354 variable numbered 1, it will be renumbered.) */
7355 create_trace_state_variable (1, 0);
7356 set_trace_state_variable_name (1, "trace_timestamp");
7357 set_trace_state_variable_getter (1, get_timestamp);
7358
7359 #ifdef IN_PROCESS_AGENT
7360 {
7361 uintptr_t addr;
7362 int pagesize;
7363
7364 pagesize = sysconf (_SC_PAGE_SIZE);
7365 if (pagesize == -1)
7366 perror_with_name ("sysconf");
7367
7368 gdb_tp_heap_buffer = xmalloc (5 * 1024 * 1024);
7369
7370 #define SCRATCH_BUFFER_NPAGES 20
7371
7372 /* Allocate scratch buffer aligned on a page boundary, at a low
7373 address (close to the main executable's code). */
7374 for (addr = pagesize; addr != 0; addr += pagesize)
7375 {
7376 gdb_jump_pad_buffer = mmap ((void *) addr, pagesize * SCRATCH_BUFFER_NPAGES,
7377 PROT_READ | PROT_WRITE | PROT_EXEC,
7378 MAP_PRIVATE | MAP_ANONYMOUS | MAP_FIXED,
7379 -1, 0);
7380 if (gdb_jump_pad_buffer != MAP_FAILED)
7381 break;
7382 }
7383
7384 if (addr == 0)
7385 perror_with_name ("mmap");
7386
7387 gdb_jump_pad_buffer_end = gdb_jump_pad_buffer + pagesize * SCRATCH_BUFFER_NPAGES;
7388 }
7389
7390 gdb_trampoline_buffer = gdb_trampoline_buffer_end = 0;
7391
7392 /* It's not a fatal error for something to go wrong with trampoline
7393 buffer setup, but it can be mysterious, so create a channel to
7394 report back on what went wrong, using a fixed size since we may
7395 not be able to allocate space later when the problem occurs. */
7396 gdb_trampoline_buffer_error = xmalloc (IPA_BUFSIZ);
7397
7398 strcpy (gdb_trampoline_buffer_error, "No errors reported");
7399
7400 initialize_low_tracepoint ();
7401 #endif
7402 }