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