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