]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blob - gdb/ctf.c
GDB copyright headers update after running GDB's copyright.py script.
[thirdparty/binutils-gdb.git] / gdb / ctf.c
1 /* CTF format support.
2
3 Copyright (C) 2012-2016 Free Software Foundation, Inc.
4 Contributed by Hui Zhu <hui_zhu@mentor.com>
5 Contributed by Yao Qi <yao@codesourcery.com>
6
7 This file is part of GDB.
8
9 This program is free software; you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
11 the Free Software Foundation; either version 3 of the License, or
12 (at your option) any later version.
13
14 This program is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 GNU General Public License for more details.
18
19 You should have received a copy of the GNU General Public License
20 along with this program. If not, see <http://www.gnu.org/licenses/>. */
21
22 #include "defs.h"
23 #include "ctf.h"
24 #include "tracepoint.h"
25 #include "regcache.h"
26 #include <sys/stat.h>
27 #include "exec.h"
28 #include "completer.h"
29 #include "inferior.h"
30 #include "gdbthread.h"
31 #include "tracefile.h"
32
33 #include <ctype.h>
34
35 /* GDB saves trace buffers and other information (such as trace
36 status) got from the remote target into Common Trace Format (CTF).
37 The following types of information are expected to save in CTF:
38
39 1. The length (in bytes) of register cache. Event "register" will
40 be defined in metadata, which includes the length.
41
42 2. Trace status. Event "status" is defined in metadata, which
43 includes all aspects of trace status.
44
45 3. Uploaded trace variables. Event "tsv_def" is defined in
46 metadata, which is about all aspects of a uploaded trace variable.
47 Uploaded tracepoints. Event "tp_def" is defined in meta, which
48 is about all aspects of an uploaded tracepoint. Note that the
49 "sequence" (a CTF type, which is a dynamically-sized array.) is
50 used for "actions" "step_actions" and "cmd_strings".
51
52 4. Trace frames. Each trace frame is composed by several blocks
53 of different types ('R', 'M', 'V'). One trace frame is saved in
54 one CTF packet and the blocks of this frame are saved as events.
55 4.1: The trace frame related information (such as the number of
56 tracepoint associated with this frame) is saved in the packet
57 context.
58 4.2: The block 'M', 'R' and 'V' are saved in event "memory",
59 "register" and "tsv" respectively.
60 4.3: When iterating over events, babeltrace can't tell iterator
61 goes to a new packet, so we need a marker or anchor to tell GDB
62 that iterator goes into a new packet or frame. We define event
63 "frame". */
64
65 #define CTF_MAGIC 0xC1FC1FC1
66 #define CTF_SAVE_MAJOR 1
67 #define CTF_SAVE_MINOR 8
68
69 #define CTF_METADATA_NAME "metadata"
70 #define CTF_DATASTREAM_NAME "datastream"
71
72 /* Reserved event id. */
73
74 #define CTF_EVENT_ID_REGISTER 0
75 #define CTF_EVENT_ID_TSV 1
76 #define CTF_EVENT_ID_MEMORY 2
77 #define CTF_EVENT_ID_FRAME 3
78 #define CTF_EVENT_ID_STATUS 4
79 #define CTF_EVENT_ID_TSV_DEF 5
80 #define CTF_EVENT_ID_TP_DEF 6
81
82 #define CTF_PID (2)
83
84 /* The state kept while writing the CTF datastream file. */
85
86 struct trace_write_handler
87 {
88 /* File descriptor of metadata. */
89 FILE *metadata_fd;
90 /* File descriptor of traceframes. */
91 FILE *datastream_fd;
92
93 /* This is the content size of the current packet. */
94 size_t content_size;
95
96 /* This is the start offset of current packet. */
97 long packet_start;
98 };
99
100 /* Write metadata in FORMAT. */
101
102 static void
103 ctf_save_write_metadata (struct trace_write_handler *handler,
104 const char *format, ...)
105 ATTRIBUTE_PRINTF (2, 3);
106
107 static void
108 ctf_save_write_metadata (struct trace_write_handler *handler,
109 const char *format, ...)
110 {
111 va_list args;
112
113 va_start (args, format);
114 if (vfprintf (handler->metadata_fd, format, args) < 0)
115 error (_("Unable to write metadata file (%s)"),
116 safe_strerror (errno));
117 va_end (args);
118 }
119
120 /* Write BUF of length SIZE to datastream file represented by
121 HANDLER. */
122
123 static int
124 ctf_save_write (struct trace_write_handler *handler,
125 const gdb_byte *buf, size_t size)
126 {
127 if (fwrite (buf, size, 1, handler->datastream_fd) != 1)
128 error (_("Unable to write file for saving trace data (%s)"),
129 safe_strerror (errno));
130
131 handler->content_size += size;
132
133 return 0;
134 }
135
136 /* Write a unsigned 32-bit integer to datastream file represented by
137 HANDLER. */
138
139 #define ctf_save_write_uint32(HANDLER, U32) \
140 ctf_save_write (HANDLER, (gdb_byte *) &U32, 4)
141
142 /* Write a signed 32-bit integer to datastream file represented by
143 HANDLER. */
144
145 #define ctf_save_write_int32(HANDLER, INT32) \
146 ctf_save_write ((HANDLER), (gdb_byte *) &(INT32), 4)
147
148 /* Set datastream file position. Update HANDLER->content_size
149 if WHENCE is SEEK_CUR. */
150
151 static int
152 ctf_save_fseek (struct trace_write_handler *handler, long offset,
153 int whence)
154 {
155 gdb_assert (whence != SEEK_END);
156 gdb_assert (whence != SEEK_SET
157 || offset <= handler->content_size + handler->packet_start);
158
159 if (fseek (handler->datastream_fd, offset, whence))
160 error (_("Unable to seek file for saving trace data (%s)"),
161 safe_strerror (errno));
162
163 if (whence == SEEK_CUR)
164 handler->content_size += offset;
165
166 return 0;
167 }
168
169 /* Change the datastream file position to align on ALIGN_SIZE,
170 and write BUF to datastream file. The size of BUF is SIZE. */
171
172 static int
173 ctf_save_align_write (struct trace_write_handler *handler,
174 const gdb_byte *buf,
175 size_t size, size_t align_size)
176 {
177 long offset
178 = (align_up (handler->content_size, align_size)
179 - handler->content_size);
180
181 if (ctf_save_fseek (handler, offset, SEEK_CUR))
182 return -1;
183
184 if (ctf_save_write (handler, buf, size))
185 return -1;
186
187 return 0;
188 }
189
190 /* Write events to next new packet. */
191
192 static void
193 ctf_save_next_packet (struct trace_write_handler *handler)
194 {
195 handler->packet_start += (handler->content_size + 4);
196 ctf_save_fseek (handler, handler->packet_start, SEEK_SET);
197 handler->content_size = 0;
198 }
199
200 /* Write the CTF metadata header. */
201
202 static void
203 ctf_save_metadata_header (struct trace_write_handler *handler)
204 {
205 const char metadata_fmt[] =
206 "\ntrace {\n"
207 " major = %u;\n"
208 " minor = %u;\n"
209 " byte_order = %s;\n" /* be or le */
210 " packet.header := struct {\n"
211 " uint32_t magic;\n"
212 " };\n"
213 "};\n"
214 "\n"
215 "stream {\n"
216 " packet.context := struct {\n"
217 " uint32_t content_size;\n"
218 " uint32_t packet_size;\n"
219 " uint16_t tpnum;\n"
220 " };\n"
221 " event.header := struct {\n"
222 " uint32_t id;\n"
223 " };\n"
224 "};\n";
225
226 ctf_save_write_metadata (handler, "/* CTF %d.%d */\n",
227 CTF_SAVE_MAJOR, CTF_SAVE_MINOR);
228 ctf_save_write_metadata (handler,
229 "typealias integer { size = 8; align = 8; "
230 "signed = false; encoding = ascii;}"
231 " := ascii;\n");
232 ctf_save_write_metadata (handler,
233 "typealias integer { size = 8; align = 8; "
234 "signed = false; }"
235 " := uint8_t;\n");
236 ctf_save_write_metadata (handler,
237 "typealias integer { size = 16; align = 16;"
238 "signed = false; } := uint16_t;\n");
239 ctf_save_write_metadata (handler,
240 "typealias integer { size = 32; align = 32;"
241 "signed = false; } := uint32_t;\n");
242 ctf_save_write_metadata (handler,
243 "typealias integer { size = 64; align = 64;"
244 "signed = false; base = hex;}"
245 " := uint64_t;\n");
246 ctf_save_write_metadata (handler,
247 "typealias integer { size = 32; align = 32;"
248 "signed = true; } := int32_t;\n");
249 ctf_save_write_metadata (handler,
250 "typealias integer { size = 64; align = 64;"
251 "signed = true; } := int64_t;\n");
252 ctf_save_write_metadata (handler,
253 "typealias string { encoding = ascii;"
254 " } := chars;\n");
255 ctf_save_write_metadata (handler, "\n");
256
257 /* Get the byte order of the host and write CTF data in this byte
258 order. */
259 #if WORDS_BIGENDIAN
260 #define HOST_ENDIANNESS "be"
261 #else
262 #define HOST_ENDIANNESS "le"
263 #endif
264
265 ctf_save_write_metadata (handler, metadata_fmt,
266 CTF_SAVE_MAJOR, CTF_SAVE_MINOR,
267 HOST_ENDIANNESS);
268 ctf_save_write_metadata (handler, "\n");
269 }
270
271 /* CTF trace writer. */
272
273 struct ctf_trace_file_writer
274 {
275 struct trace_file_writer base;
276
277 /* States related to writing CTF trace file. */
278 struct trace_write_handler tcs;
279 };
280
281 /* This is the implementation of trace_file_write_ops method
282 dtor. */
283
284 static void
285 ctf_dtor (struct trace_file_writer *self)
286 {
287 struct ctf_trace_file_writer *writer
288 = (struct ctf_trace_file_writer *) self;
289
290 if (writer->tcs.metadata_fd != NULL)
291 fclose (writer->tcs.metadata_fd);
292
293 if (writer->tcs.datastream_fd != NULL)
294 fclose (writer->tcs.datastream_fd);
295
296 }
297
298 /* This is the implementation of trace_file_write_ops method
299 target_save. */
300
301 static int
302 ctf_target_save (struct trace_file_writer *self,
303 const char *dirname)
304 {
305 /* Don't support save trace file to CTF format in the target. */
306 return 0;
307 }
308
309 #ifdef USE_WIN32API
310 #undef mkdir
311 #define mkdir(pathname, mode) mkdir (pathname)
312 #endif
313
314 /* This is the implementation of trace_file_write_ops method
315 start. It creates the directory DIRNAME, metadata and datastream
316 in the directory. */
317
318 static void
319 ctf_start (struct trace_file_writer *self, const char *dirname)
320 {
321 char *file_name;
322 struct cleanup *old_chain;
323 struct ctf_trace_file_writer *writer
324 = (struct ctf_trace_file_writer *) self;
325 int i;
326 mode_t hmode = S_IRUSR | S_IWUSR | S_IXUSR | S_IRGRP | S_IXGRP | S_IROTH;
327
328 /* Create DIRNAME. */
329 if (mkdir (dirname, hmode) && errno != EEXIST)
330 error (_("Unable to open directory '%s' for saving trace data (%s)"),
331 dirname, safe_strerror (errno));
332
333 memset (&writer->tcs, '\0', sizeof (writer->tcs));
334
335 file_name = xstrprintf ("%s/%s", dirname, CTF_METADATA_NAME);
336 old_chain = make_cleanup (xfree, file_name);
337
338 writer->tcs.metadata_fd = fopen (file_name, "w");
339 if (writer->tcs.metadata_fd == NULL)
340 error (_("Unable to open file '%s' for saving trace data (%s)"),
341 file_name, safe_strerror (errno));
342 do_cleanups (old_chain);
343
344 ctf_save_metadata_header (&writer->tcs);
345
346 file_name = xstrprintf ("%s/%s", dirname, CTF_DATASTREAM_NAME);
347 old_chain = make_cleanup (xfree, file_name);
348 writer->tcs.datastream_fd = fopen (file_name, "w");
349 if (writer->tcs.datastream_fd == NULL)
350 error (_("Unable to open file '%s' for saving trace data (%s)"),
351 file_name, safe_strerror (errno));
352 do_cleanups (old_chain);
353 }
354
355 /* This is the implementation of trace_file_write_ops method
356 write_header. Write the types of events on trace variable and
357 frame. */
358
359 static void
360 ctf_write_header (struct trace_file_writer *self)
361 {
362 struct ctf_trace_file_writer *writer
363 = (struct ctf_trace_file_writer *) self;
364
365
366 ctf_save_write_metadata (&writer->tcs, "\n");
367 ctf_save_write_metadata (&writer->tcs,
368 "event {\n\tname = \"memory\";\n\tid = %u;\n"
369 "\tfields := struct { \n"
370 "\t\tuint64_t address;\n"
371 "\t\tuint16_t length;\n"
372 "\t\tuint8_t contents[length];\n"
373 "\t};\n"
374 "};\n", CTF_EVENT_ID_MEMORY);
375
376 ctf_save_write_metadata (&writer->tcs, "\n");
377 ctf_save_write_metadata (&writer->tcs,
378 "event {\n\tname = \"tsv\";\n\tid = %u;\n"
379 "\tfields := struct { \n"
380 "\t\tuint64_t val;\n"
381 "\t\tuint32_t num;\n"
382 "\t};\n"
383 "};\n", CTF_EVENT_ID_TSV);
384
385 ctf_save_write_metadata (&writer->tcs, "\n");
386 ctf_save_write_metadata (&writer->tcs,
387 "event {\n\tname = \"frame\";\n\tid = %u;\n"
388 "\tfields := struct { \n"
389 "\t};\n"
390 "};\n", CTF_EVENT_ID_FRAME);
391
392 ctf_save_write_metadata (&writer->tcs, "\n");
393 ctf_save_write_metadata (&writer->tcs,
394 "event {\n\tname = \"tsv_def\";\n"
395 "\tid = %u;\n\tfields := struct { \n"
396 "\t\tint64_t initial_value;\n"
397 "\t\tint32_t number;\n"
398 "\t\tint32_t builtin;\n"
399 "\t\tchars name;\n"
400 "\t};\n"
401 "};\n", CTF_EVENT_ID_TSV_DEF);
402
403 ctf_save_write_metadata (&writer->tcs, "\n");
404 ctf_save_write_metadata (&writer->tcs,
405 "event {\n\tname = \"tp_def\";\n"
406 "\tid = %u;\n\tfields := struct { \n"
407 "\t\tuint64_t addr;\n"
408 "\t\tuint64_t traceframe_usage;\n"
409 "\t\tint32_t number;\n"
410 "\t\tint32_t enabled;\n"
411 "\t\tint32_t step;\n"
412 "\t\tint32_t pass;\n"
413 "\t\tint32_t hit_count;\n"
414 "\t\tint32_t type;\n"
415 "\t\tchars cond;\n"
416
417 "\t\tuint32_t action_num;\n"
418 "\t\tchars actions[action_num];\n"
419
420 "\t\tuint32_t step_action_num;\n"
421 "\t\tchars step_actions[step_action_num];\n"
422
423 "\t\tchars at_string;\n"
424 "\t\tchars cond_string;\n"
425
426 "\t\tuint32_t cmd_num;\n"
427 "\t\tchars cmd_strings[cmd_num];\n"
428 "\t};\n"
429 "};\n", CTF_EVENT_ID_TP_DEF);
430
431 gdb_assert (writer->tcs.content_size == 0);
432 gdb_assert (writer->tcs.packet_start == 0);
433
434 /* Create a new packet to contain this event. */
435 self->ops->frame_ops->start (self, 0);
436 }
437
438 /* This is the implementation of trace_file_write_ops method
439 write_regblock_type. Write the type of register event in
440 metadata. */
441
442 static void
443 ctf_write_regblock_type (struct trace_file_writer *self, int size)
444 {
445 struct ctf_trace_file_writer *writer
446 = (struct ctf_trace_file_writer *) self;
447
448 ctf_save_write_metadata (&writer->tcs, "\n");
449
450 ctf_save_write_metadata (&writer->tcs,
451 "event {\n\tname = \"register\";\n\tid = %u;\n"
452 "\tfields := struct { \n"
453 "\t\tascii contents[%d];\n"
454 "\t};\n"
455 "};\n",
456 CTF_EVENT_ID_REGISTER, size);
457 }
458
459 /* This is the implementation of trace_file_write_ops method
460 write_status. */
461
462 static void
463 ctf_write_status (struct trace_file_writer *self,
464 struct trace_status *ts)
465 {
466 struct ctf_trace_file_writer *writer
467 = (struct ctf_trace_file_writer *) self;
468 uint32_t id;
469 int32_t int32;
470
471 ctf_save_write_metadata (&writer->tcs, "\n");
472 ctf_save_write_metadata (&writer->tcs,
473 "event {\n\tname = \"status\";\n\tid = %u;\n"
474 "\tfields := struct { \n"
475 "\t\tint32_t stop_reason;\n"
476 "\t\tint32_t stopping_tracepoint;\n"
477 "\t\tint32_t traceframe_count;\n"
478 "\t\tint32_t traceframes_created;\n"
479 "\t\tint32_t buffer_free;\n"
480 "\t\tint32_t buffer_size;\n"
481 "\t\tint32_t disconnected_tracing;\n"
482 "\t\tint32_t circular_buffer;\n"
483 "\t};\n"
484 "};\n",
485 CTF_EVENT_ID_STATUS);
486
487 id = CTF_EVENT_ID_STATUS;
488 /* Event Id. */
489 ctf_save_align_write (&writer->tcs, (gdb_byte *) &id, 4, 4);
490
491 ctf_save_write_int32 (&writer->tcs, ts->stop_reason);
492 ctf_save_write_int32 (&writer->tcs, ts->stopping_tracepoint);
493 ctf_save_write_int32 (&writer->tcs, ts->traceframe_count);
494 ctf_save_write_int32 (&writer->tcs, ts->traceframes_created);
495 ctf_save_write_int32 (&writer->tcs, ts->buffer_free);
496 ctf_save_write_int32 (&writer->tcs, ts->buffer_size);
497 ctf_save_write_int32 (&writer->tcs, ts->disconnected_tracing);
498 ctf_save_write_int32 (&writer->tcs, ts->circular_buffer);
499 }
500
501 /* This is the implementation of trace_file_write_ops method
502 write_uploaded_tsv. */
503
504 static void
505 ctf_write_uploaded_tsv (struct trace_file_writer *self,
506 struct uploaded_tsv *tsv)
507 {
508 struct ctf_trace_file_writer *writer
509 = (struct ctf_trace_file_writer *) self;
510 int32_t int32;
511 int64_t int64;
512 unsigned int len;
513 const gdb_byte zero = 0;
514
515 /* Event Id. */
516 int32 = CTF_EVENT_ID_TSV_DEF;
517 ctf_save_align_write (&writer->tcs, (gdb_byte *) &int32, 4, 4);
518
519 /* initial_value */
520 int64 = tsv->initial_value;
521 ctf_save_align_write (&writer->tcs, (gdb_byte *) &int64, 8, 8);
522
523 /* number */
524 ctf_save_write_int32 (&writer->tcs, tsv->number);
525
526 /* builtin */
527 ctf_save_write_int32 (&writer->tcs, tsv->builtin);
528
529 /* name */
530 if (tsv->name != NULL)
531 ctf_save_write (&writer->tcs, (gdb_byte *) tsv->name,
532 strlen (tsv->name));
533 ctf_save_write (&writer->tcs, &zero, 1);
534 }
535
536 /* This is the implementation of trace_file_write_ops method
537 write_uploaded_tp. */
538
539 static void
540 ctf_write_uploaded_tp (struct trace_file_writer *self,
541 struct uploaded_tp *tp)
542 {
543 struct ctf_trace_file_writer *writer
544 = (struct ctf_trace_file_writer *) self;
545 int32_t int32;
546 int64_t int64;
547 uint32_t u32;
548 const gdb_byte zero = 0;
549 int a;
550 char *act;
551
552 /* Event Id. */
553 int32 = CTF_EVENT_ID_TP_DEF;
554 ctf_save_align_write (&writer->tcs, (gdb_byte *) &int32, 4, 4);
555
556 /* address */
557 int64 = tp->addr;
558 ctf_save_align_write (&writer->tcs, (gdb_byte *) &int64, 8, 8);
559
560 /* traceframe_usage */
561 int64 = tp->traceframe_usage;
562 ctf_save_align_write (&writer->tcs, (gdb_byte *) &int64, 8, 8);
563
564 /* number */
565 ctf_save_write_int32 (&writer->tcs, tp->number);
566
567 /* enabled */
568 ctf_save_write_int32 (&writer->tcs, tp->enabled);
569
570 /* step */
571 ctf_save_write_int32 (&writer->tcs, tp->step);
572
573 /* pass */
574 ctf_save_write_int32 (&writer->tcs, tp->pass);
575
576 /* hit_count */
577 ctf_save_write_int32 (&writer->tcs, tp->hit_count);
578
579 /* type */
580 ctf_save_write_int32 (&writer->tcs, tp->type);
581
582 /* condition */
583 if (tp->cond != NULL)
584 ctf_save_write (&writer->tcs, (gdb_byte *) tp->cond, strlen (tp->cond));
585 ctf_save_write (&writer->tcs, &zero, 1);
586
587 /* actions */
588 u32 = VEC_length (char_ptr, tp->actions);
589 ctf_save_align_write (&writer->tcs, (gdb_byte *) &u32, 4, 4);
590 for (a = 0; VEC_iterate (char_ptr, tp->actions, a, act); ++a)
591 ctf_save_write (&writer->tcs, (gdb_byte *) act, strlen (act) + 1);
592
593 /* step_actions */
594 u32 = VEC_length (char_ptr, tp->step_actions);
595 ctf_save_align_write (&writer->tcs, (gdb_byte *) &u32, 4, 4);
596 for (a = 0; VEC_iterate (char_ptr, tp->step_actions, a, act); ++a)
597 ctf_save_write (&writer->tcs, (gdb_byte *) act, strlen (act) + 1);
598
599 /* at_string */
600 if (tp->at_string != NULL)
601 ctf_save_write (&writer->tcs, (gdb_byte *) tp->at_string,
602 strlen (tp->at_string));
603 ctf_save_write (&writer->tcs, &zero, 1);
604
605 /* cond_string */
606 if (tp->cond_string != NULL)
607 ctf_save_write (&writer->tcs, (gdb_byte *) tp->cond_string,
608 strlen (tp->cond_string));
609 ctf_save_write (&writer->tcs, &zero, 1);
610
611 /* cmd_strings */
612 u32 = VEC_length (char_ptr, tp->cmd_strings);
613 ctf_save_align_write (&writer->tcs, (gdb_byte *) &u32, 4, 4);
614 for (a = 0; VEC_iterate (char_ptr, tp->cmd_strings, a, act); ++a)
615 ctf_save_write (&writer->tcs, (gdb_byte *) act, strlen (act) + 1);
616
617 }
618
619 /* This is the implementation of trace_file_write_ops method
620 write_definition_end. */
621
622 static void
623 ctf_write_definition_end (struct trace_file_writer *self)
624 {
625 struct ctf_trace_file_writer *writer
626 = (struct ctf_trace_file_writer *) self;
627
628 self->ops->frame_ops->end (self);
629 }
630
631 /* This is the implementation of trace_file_write_ops method
632 end. */
633
634 static void
635 ctf_end (struct trace_file_writer *self)
636 {
637 struct ctf_trace_file_writer *writer = (struct ctf_trace_file_writer *) self;
638
639 gdb_assert (writer->tcs.content_size == 0);
640 }
641
642 /* This is the implementation of trace_frame_write_ops method
643 start. */
644
645 static void
646 ctf_write_frame_start (struct trace_file_writer *self, uint16_t tpnum)
647 {
648 struct ctf_trace_file_writer *writer
649 = (struct ctf_trace_file_writer *) self;
650 uint32_t id = CTF_EVENT_ID_FRAME;
651 uint32_t u32;
652
653 /* Step 1: Write packet context. */
654 /* magic. */
655 u32 = CTF_MAGIC;
656 ctf_save_write_uint32 (&writer->tcs, u32);
657 /* content_size and packet_size.. We still don't know the value,
658 write it later. */
659 ctf_save_fseek (&writer->tcs, 4, SEEK_CUR);
660 ctf_save_fseek (&writer->tcs, 4, SEEK_CUR);
661 /* Tracepoint number. */
662 ctf_save_write (&writer->tcs, (gdb_byte *) &tpnum, 2);
663
664 /* Step 2: Write event "frame". */
665 /* Event Id. */
666 ctf_save_align_write (&writer->tcs, (gdb_byte *) &id, 4, 4);
667 }
668
669 /* This is the implementation of trace_frame_write_ops method
670 write_r_block. */
671
672 static void
673 ctf_write_frame_r_block (struct trace_file_writer *self,
674 gdb_byte *buf, int32_t size)
675 {
676 struct ctf_trace_file_writer *writer
677 = (struct ctf_trace_file_writer *) self;
678 uint32_t id = CTF_EVENT_ID_REGISTER;
679
680 /* Event Id. */
681 ctf_save_align_write (&writer->tcs, (gdb_byte *) &id, 4, 4);
682
683 /* array contents. */
684 ctf_save_align_write (&writer->tcs, buf, size, 1);
685 }
686
687 /* This is the implementation of trace_frame_write_ops method
688 write_m_block_header. */
689
690 static void
691 ctf_write_frame_m_block_header (struct trace_file_writer *self,
692 uint64_t addr, uint16_t length)
693 {
694 struct ctf_trace_file_writer *writer
695 = (struct ctf_trace_file_writer *) self;
696 uint32_t event_id = CTF_EVENT_ID_MEMORY;
697
698 /* Event Id. */
699 ctf_save_align_write (&writer->tcs, (gdb_byte *) &event_id, 4, 4);
700
701 /* Address. */
702 ctf_save_align_write (&writer->tcs, (gdb_byte *) &addr, 8, 8);
703
704 /* Length. */
705 ctf_save_align_write (&writer->tcs, (gdb_byte *) &length, 2, 2);
706 }
707
708 /* This is the implementation of trace_frame_write_ops method
709 write_m_block_memory. */
710
711 static void
712 ctf_write_frame_m_block_memory (struct trace_file_writer *self,
713 gdb_byte *buf, uint16_t length)
714 {
715 struct ctf_trace_file_writer *writer
716 = (struct ctf_trace_file_writer *) self;
717
718 /* Contents. */
719 ctf_save_align_write (&writer->tcs, (gdb_byte *) buf, length, 1);
720 }
721
722 /* This is the implementation of trace_frame_write_ops method
723 write_v_block. */
724
725 static void
726 ctf_write_frame_v_block (struct trace_file_writer *self,
727 int32_t num, uint64_t val)
728 {
729 struct ctf_trace_file_writer *writer
730 = (struct ctf_trace_file_writer *) self;
731 uint32_t id = CTF_EVENT_ID_TSV;
732
733 /* Event Id. */
734 ctf_save_align_write (&writer->tcs, (gdb_byte *) &id, 4, 4);
735
736 /* val. */
737 ctf_save_align_write (&writer->tcs, (gdb_byte *) &val, 8, 8);
738 /* num. */
739 ctf_save_align_write (&writer->tcs, (gdb_byte *) &num, 4, 4);
740 }
741
742 /* This is the implementation of trace_frame_write_ops method
743 end. */
744
745 static void
746 ctf_write_frame_end (struct trace_file_writer *self)
747 {
748 struct ctf_trace_file_writer *writer
749 = (struct ctf_trace_file_writer *) self;
750 uint32_t u32;
751 uint32_t t;
752
753 /* Write the content size to packet header. */
754 ctf_save_fseek (&writer->tcs, writer->tcs.packet_start + 4,
755 SEEK_SET);
756 u32 = writer->tcs.content_size * TARGET_CHAR_BIT;
757
758 t = writer->tcs.content_size;
759 ctf_save_write_uint32 (&writer->tcs, u32);
760
761 /* Write the packet size. */
762 u32 += 4 * TARGET_CHAR_BIT;
763 ctf_save_write_uint32 (&writer->tcs, u32);
764
765 writer->tcs.content_size = t;
766
767 /* Write zero at the end of the packet. */
768 ctf_save_fseek (&writer->tcs, writer->tcs.packet_start + t,
769 SEEK_SET);
770 u32 = 0;
771 ctf_save_write_uint32 (&writer->tcs, u32);
772 writer->tcs.content_size = t;
773
774 ctf_save_next_packet (&writer->tcs);
775 }
776
777 /* Operations to write various types of trace frames into CTF
778 format. */
779
780 static const struct trace_frame_write_ops ctf_write_frame_ops =
781 {
782 ctf_write_frame_start,
783 ctf_write_frame_r_block,
784 ctf_write_frame_m_block_header,
785 ctf_write_frame_m_block_memory,
786 ctf_write_frame_v_block,
787 ctf_write_frame_end,
788 };
789
790 /* Operations to write trace buffers into CTF format. */
791
792 static const struct trace_file_write_ops ctf_write_ops =
793 {
794 ctf_dtor,
795 ctf_target_save,
796 ctf_start,
797 ctf_write_header,
798 ctf_write_regblock_type,
799 ctf_write_status,
800 ctf_write_uploaded_tsv,
801 ctf_write_uploaded_tp,
802 ctf_write_definition_end,
803 NULL,
804 &ctf_write_frame_ops,
805 ctf_end,
806 };
807
808 /* Return a trace writer for CTF format. */
809
810 struct trace_file_writer *
811 ctf_trace_file_writer_new (void)
812 {
813 struct ctf_trace_file_writer *writer = XNEW (struct ctf_trace_file_writer);
814
815 writer->base.ops = &ctf_write_ops;
816
817 return (struct trace_file_writer *) writer;
818 }
819
820 #if HAVE_LIBBABELTRACE
821 /* Use libbabeltrace to read CTF data. The libbabeltrace provides
822 iterator to iterate over each event in CTF data and APIs to get
823 details of event and packet, so it is very convenient to use
824 libbabeltrace to access events in CTF. */
825
826 #include <babeltrace/babeltrace.h>
827 #include <babeltrace/ctf/events.h>
828 #include <babeltrace/ctf/iterator.h>
829
830 /* The struct pointer for current CTF directory. */
831 static int handle_id = -1;
832 static struct bt_context *ctx = NULL;
833 static struct bt_ctf_iter *ctf_iter = NULL;
834 /* The position of the first packet containing trace frame. */
835 static struct bt_iter_pos *start_pos;
836
837 /* The name of CTF directory. */
838 static char *trace_dirname;
839
840 static struct target_ops ctf_ops;
841
842 /* Destroy ctf iterator and context. */
843
844 static void
845 ctf_destroy (void)
846 {
847 if (ctf_iter != NULL)
848 {
849 bt_ctf_iter_destroy (ctf_iter);
850 ctf_iter = NULL;
851 }
852 if (ctx != NULL)
853 {
854 bt_context_put (ctx);
855 ctx = NULL;
856 }
857 }
858
859 /* Open CTF trace data in DIRNAME. */
860
861 static void
862 ctf_open_dir (const char *dirname)
863 {
864 struct bt_iter_pos begin_pos;
865 struct bt_iter_pos *pos;
866 unsigned int count, i;
867 struct bt_ctf_event_decl * const *list;
868
869 ctx = bt_context_create ();
870 if (ctx == NULL)
871 error (_("Unable to create bt_context"));
872 handle_id = bt_context_add_trace (ctx, dirname, "ctf", NULL, NULL, NULL);
873 if (handle_id < 0)
874 {
875 ctf_destroy ();
876 error (_("Unable to use libbabeltrace on directory \"%s\""),
877 dirname);
878 }
879
880 begin_pos.type = BT_SEEK_BEGIN;
881 ctf_iter = bt_ctf_iter_create (ctx, &begin_pos, NULL);
882 if (ctf_iter == NULL)
883 {
884 ctf_destroy ();
885 error (_("Unable to create bt_iterator"));
886 }
887
888 /* Look for the declaration of register block. Get the length of
889 array "contents" to set trace_regblock_size. */
890
891 bt_ctf_get_event_decl_list (handle_id, ctx, &list, &count);
892 for (i = 0; i < count; i++)
893 if (strcmp ("register", bt_ctf_get_decl_event_name (list[i])) == 0)
894 {
895 unsigned int j;
896 const struct bt_ctf_field_decl * const *field_list;
897 const struct bt_declaration *decl;
898
899 bt_ctf_get_decl_fields (list[i], BT_EVENT_FIELDS, &field_list,
900 &count);
901
902 gdb_assert (count == 1);
903 gdb_assert (0 == strcmp ("contents",
904 bt_ctf_get_decl_field_name (field_list[0])));
905 decl = bt_ctf_get_decl_from_field_decl (field_list[0]);
906 trace_regblock_size = bt_ctf_get_array_len (decl);
907
908 break;
909 }
910 }
911
912 #define SET_INT32_FIELD(EVENT, SCOPE, VAR, FIELD) \
913 (VAR)->FIELD = (int) bt_ctf_get_int64 (bt_ctf_get_field ((EVENT), \
914 (SCOPE), \
915 #FIELD))
916
917 #define SET_ENUM_FIELD(EVENT, SCOPE, VAR, TYPE, FIELD) \
918 (VAR)->FIELD = (TYPE) bt_ctf_get_int64 (bt_ctf_get_field ((EVENT), \
919 (SCOPE), \
920 #FIELD))
921
922
923 /* EVENT is the "status" event and TS is filled in. */
924
925 static void
926 ctf_read_status (struct bt_ctf_event *event, struct trace_status *ts)
927 {
928 const struct bt_definition *scope
929 = bt_ctf_get_top_level_scope (event, BT_EVENT_FIELDS);
930
931 SET_ENUM_FIELD (event, scope, ts, enum trace_stop_reason, stop_reason);
932 SET_INT32_FIELD (event, scope, ts, stopping_tracepoint);
933 SET_INT32_FIELD (event, scope, ts, traceframe_count);
934 SET_INT32_FIELD (event, scope, ts, traceframes_created);
935 SET_INT32_FIELD (event, scope, ts, buffer_free);
936 SET_INT32_FIELD (event, scope, ts, buffer_size);
937 SET_INT32_FIELD (event, scope, ts, disconnected_tracing);
938 SET_INT32_FIELD (event, scope, ts, circular_buffer);
939
940 bt_iter_next (bt_ctf_get_iter (ctf_iter));
941 }
942
943 /* Read the events "tsv_def" one by one, extract its contents and fill
944 in the list UPLOADED_TSVS. */
945
946 static void
947 ctf_read_tsv (struct uploaded_tsv **uploaded_tsvs)
948 {
949 gdb_assert (ctf_iter != NULL);
950
951 while (1)
952 {
953 struct bt_ctf_event *event;
954 const struct bt_definition *scope;
955 const struct bt_definition *def;
956 uint32_t event_id;
957 struct uploaded_tsv *utsv = NULL;
958
959 event = bt_ctf_iter_read_event (ctf_iter);
960 scope = bt_ctf_get_top_level_scope (event,
961 BT_STREAM_EVENT_HEADER);
962 event_id = bt_ctf_get_uint64 (bt_ctf_get_field (event, scope,
963 "id"));
964 if (event_id != CTF_EVENT_ID_TSV_DEF)
965 break;
966
967 scope = bt_ctf_get_top_level_scope (event,
968 BT_EVENT_FIELDS);
969
970 def = bt_ctf_get_field (event, scope, "number");
971 utsv = get_uploaded_tsv ((int32_t) bt_ctf_get_int64 (def),
972 uploaded_tsvs);
973
974 def = bt_ctf_get_field (event, scope, "builtin");
975 utsv->builtin = (int32_t) bt_ctf_get_int64 (def);
976 def = bt_ctf_get_field (event, scope, "initial_value");
977 utsv->initial_value = bt_ctf_get_int64 (def);
978
979 def = bt_ctf_get_field (event, scope, "name");
980 utsv->name = xstrdup (bt_ctf_get_string (def));
981
982 if (bt_iter_next (bt_ctf_get_iter (ctf_iter)) < 0)
983 break;
984 }
985
986 }
987
988 /* Read the value of element whose index is NUM from CTF and write it
989 to the corresponding VAR->ARRAY. */
990
991 #define SET_ARRAY_FIELD(EVENT, SCOPE, VAR, NUM, ARRAY) \
992 do \
993 { \
994 uint32_t u32, i; \
995 const struct bt_definition *def; \
996 \
997 u32 = (uint32_t) bt_ctf_get_uint64 (bt_ctf_get_field ((EVENT), \
998 (SCOPE), \
999 #NUM)); \
1000 def = bt_ctf_get_field ((EVENT), (SCOPE), #ARRAY); \
1001 for (i = 0; i < u32; i++) \
1002 { \
1003 const struct bt_definition *element \
1004 = bt_ctf_get_index ((EVENT), def, i); \
1005 \
1006 VEC_safe_push (char_ptr, (VAR)->ARRAY, \
1007 xstrdup (bt_ctf_get_string (element))); \
1008 } \
1009 } \
1010 while (0)
1011
1012 /* Read a string from CTF and set VAR->FIELD. If the length of string
1013 is zero, set VAR->FIELD to NULL. */
1014
1015 #define SET_STRING_FIELD(EVENT, SCOPE, VAR, FIELD) \
1016 do \
1017 { \
1018 const char *p = bt_ctf_get_string (bt_ctf_get_field ((EVENT), \
1019 (SCOPE), \
1020 #FIELD)); \
1021 \
1022 if (strlen (p) > 0) \
1023 (VAR)->FIELD = xstrdup (p); \
1024 else \
1025 (VAR)->FIELD = NULL; \
1026 } \
1027 while (0)
1028
1029 /* Read the events "tp_def" one by one, extract its contents and fill
1030 in the list UPLOADED_TPS. */
1031
1032 static void
1033 ctf_read_tp (struct uploaded_tp **uploaded_tps)
1034 {
1035 gdb_assert (ctf_iter != NULL);
1036
1037 while (1)
1038 {
1039 struct bt_ctf_event *event;
1040 const struct bt_definition *scope;
1041 uint32_t u32;
1042 int32_t int32;
1043 uint64_t u64;
1044 struct uploaded_tp *utp = NULL;
1045
1046 event = bt_ctf_iter_read_event (ctf_iter);
1047 scope = bt_ctf_get_top_level_scope (event,
1048 BT_STREAM_EVENT_HEADER);
1049 u32 = bt_ctf_get_uint64 (bt_ctf_get_field (event, scope,
1050 "id"));
1051 if (u32 != CTF_EVENT_ID_TP_DEF)
1052 break;
1053
1054 scope = bt_ctf_get_top_level_scope (event,
1055 BT_EVENT_FIELDS);
1056 int32 = (int32_t) bt_ctf_get_int64 (bt_ctf_get_field (event,
1057 scope,
1058 "number"));
1059 u64 = bt_ctf_get_uint64 (bt_ctf_get_field (event, scope,
1060 "addr"));
1061 utp = get_uploaded_tp (int32, u64, uploaded_tps);
1062
1063 SET_INT32_FIELD (event, scope, utp, enabled);
1064 SET_INT32_FIELD (event, scope, utp, step);
1065 SET_INT32_FIELD (event, scope, utp, pass);
1066 SET_INT32_FIELD (event, scope, utp, hit_count);
1067 SET_ENUM_FIELD (event, scope, utp, enum bptype, type);
1068
1069 /* Read 'cmd_strings'. */
1070 SET_ARRAY_FIELD (event, scope, utp, cmd_num, cmd_strings);
1071 /* Read 'actions'. */
1072 SET_ARRAY_FIELD (event, scope, utp, action_num, actions);
1073 /* Read 'step_actions'. */
1074 SET_ARRAY_FIELD (event, scope, utp, step_action_num,
1075 step_actions);
1076
1077 SET_STRING_FIELD(event, scope, utp, at_string);
1078 SET_STRING_FIELD(event, scope, utp, cond_string);
1079
1080 if (bt_iter_next (bt_ctf_get_iter (ctf_iter)) < 0)
1081 break;
1082 }
1083 }
1084
1085 /* This is the implementation of target_ops method to_open. Open CTF
1086 trace data, read trace status, trace state variables and tracepoint
1087 definitions from the first packet. Set the start position at the
1088 second packet which contains events on trace blocks. */
1089
1090 static void
1091 ctf_open (const char *dirname, int from_tty)
1092 {
1093 struct bt_ctf_event *event;
1094 uint32_t event_id;
1095 const struct bt_definition *scope;
1096 struct uploaded_tsv *uploaded_tsvs = NULL;
1097 struct uploaded_tp *uploaded_tps = NULL;
1098
1099 if (!dirname)
1100 error (_("No CTF directory specified."));
1101
1102 ctf_open_dir (dirname);
1103
1104 target_preopen (from_tty);
1105
1106 /* Skip the first packet which about the trace status. The first
1107 event is "frame". */
1108 event = bt_ctf_iter_read_event (ctf_iter);
1109 scope = bt_ctf_get_top_level_scope (event, BT_STREAM_EVENT_HEADER);
1110 event_id = bt_ctf_get_uint64 (bt_ctf_get_field (event, scope, "id"));
1111 if (event_id != CTF_EVENT_ID_FRAME)
1112 error (_("Wrong event id of the first event"));
1113 /* The second event is "status". */
1114 bt_iter_next (bt_ctf_get_iter (ctf_iter));
1115 event = bt_ctf_iter_read_event (ctf_iter);
1116 scope = bt_ctf_get_top_level_scope (event, BT_STREAM_EVENT_HEADER);
1117 event_id = bt_ctf_get_uint64 (bt_ctf_get_field (event, scope, "id"));
1118 if (event_id != CTF_EVENT_ID_STATUS)
1119 error (_("Wrong event id of the second event"));
1120 ctf_read_status (event, current_trace_status ());
1121
1122 ctf_read_tsv (&uploaded_tsvs);
1123
1124 ctf_read_tp (&uploaded_tps);
1125
1126 event = bt_ctf_iter_read_event (ctf_iter);
1127 /* EVENT can be NULL if we've already gone to the end of stream of
1128 events. */
1129 if (event != NULL)
1130 {
1131 scope = bt_ctf_get_top_level_scope (event,
1132 BT_STREAM_EVENT_HEADER);
1133 event_id = bt_ctf_get_uint64 (bt_ctf_get_field (event,
1134 scope, "id"));
1135 if (event_id != CTF_EVENT_ID_FRAME)
1136 error (_("Wrong event id of the first event of the second packet"));
1137 }
1138
1139 start_pos = bt_iter_get_pos (bt_ctf_get_iter (ctf_iter));
1140 gdb_assert (start_pos->type == BT_SEEK_RESTORE);
1141
1142 trace_dirname = xstrdup (dirname);
1143 push_target (&ctf_ops);
1144
1145 inferior_appeared (current_inferior (), CTF_PID);
1146 inferior_ptid = pid_to_ptid (CTF_PID);
1147 add_thread_silent (inferior_ptid);
1148
1149 merge_uploaded_trace_state_variables (&uploaded_tsvs);
1150 merge_uploaded_tracepoints (&uploaded_tps);
1151
1152 post_create_inferior (&ctf_ops, from_tty);
1153 }
1154
1155 /* This is the implementation of target_ops method to_close. Destroy
1156 CTF iterator and context. */
1157
1158 static void
1159 ctf_close (struct target_ops *self)
1160 {
1161 int pid;
1162
1163 ctf_destroy ();
1164 xfree (trace_dirname);
1165 trace_dirname = NULL;
1166
1167 pid = ptid_get_pid (inferior_ptid);
1168 inferior_ptid = null_ptid; /* Avoid confusion from thread stuff. */
1169 exit_inferior_silent (pid);
1170
1171 trace_reset_local_state ();
1172 }
1173
1174 /* This is the implementation of target_ops method to_files_info.
1175 Print the directory name of CTF trace data. */
1176
1177 static void
1178 ctf_files_info (struct target_ops *t)
1179 {
1180 printf_filtered ("\t`%s'\n", trace_dirname);
1181 }
1182
1183 /* This is the implementation of target_ops method to_fetch_registers.
1184 Iterate over events whose name is "register" in current frame,
1185 extract contents from events, and set REGCACHE with the contents.
1186 If no matched events are found, mark registers unavailable. */
1187
1188 static void
1189 ctf_fetch_registers (struct target_ops *ops,
1190 struct regcache *regcache, int regno)
1191 {
1192 struct gdbarch *gdbarch = get_regcache_arch (regcache);
1193 struct bt_ctf_event *event = NULL;
1194 struct bt_iter_pos *pos;
1195
1196 /* An uninitialized reg size says we're not going to be
1197 successful at getting register blocks. */
1198 if (trace_regblock_size == 0)
1199 return;
1200
1201 gdb_assert (ctf_iter != NULL);
1202 /* Save the current position. */
1203 pos = bt_iter_get_pos (bt_ctf_get_iter (ctf_iter));
1204 gdb_assert (pos->type == BT_SEEK_RESTORE);
1205
1206 while (1)
1207 {
1208 const char *name;
1209 struct bt_ctf_event *event1;
1210
1211 event1 = bt_ctf_iter_read_event (ctf_iter);
1212
1213 name = bt_ctf_event_name (event1);
1214
1215 if (name == NULL || strcmp (name, "frame") == 0)
1216 break;
1217 else if (strcmp (name, "register") == 0)
1218 {
1219 event = event1;
1220 break;
1221 }
1222
1223 if (bt_iter_next (bt_ctf_get_iter (ctf_iter)) < 0)
1224 break;
1225 }
1226
1227 /* Restore the position. */
1228 bt_iter_set_pos (bt_ctf_get_iter (ctf_iter), pos);
1229
1230 if (event != NULL)
1231 {
1232 int offset, regsize, regn;
1233 const struct bt_definition *scope
1234 = bt_ctf_get_top_level_scope (event,
1235 BT_EVENT_FIELDS);
1236 const struct bt_definition *array
1237 = bt_ctf_get_field (event, scope, "contents");
1238 gdb_byte *regs = (gdb_byte *) bt_ctf_get_char_array (array);
1239
1240 /* Assume the block is laid out in GDB register number order,
1241 each register with the size that it has in GDB. */
1242 offset = 0;
1243 for (regn = 0; regn < gdbarch_num_regs (gdbarch); regn++)
1244 {
1245 regsize = register_size (gdbarch, regn);
1246 /* Make sure we stay within block bounds. */
1247 if (offset + regsize >= trace_regblock_size)
1248 break;
1249 if (regcache_register_status (regcache, regn) == REG_UNKNOWN)
1250 {
1251 if (regno == regn)
1252 {
1253 regcache_raw_supply (regcache, regno, regs + offset);
1254 break;
1255 }
1256 else if (regno == -1)
1257 {
1258 regcache_raw_supply (regcache, regn, regs + offset);
1259 }
1260 }
1261 offset += regsize;
1262 }
1263 }
1264 else
1265 tracefile_fetch_registers (regcache, regno);
1266 }
1267
1268 /* This is the implementation of target_ops method to_xfer_partial.
1269 Iterate over events whose name is "memory" in
1270 current frame, extract the address and length from events. If
1271 OFFSET is within the range, read the contents from events to
1272 READBUF. */
1273
1274 static enum target_xfer_status
1275 ctf_xfer_partial (struct target_ops *ops, enum target_object object,
1276 const char *annex, gdb_byte *readbuf,
1277 const gdb_byte *writebuf, ULONGEST offset,
1278 ULONGEST len, ULONGEST *xfered_len)
1279 {
1280 /* We're only doing regular memory for now. */
1281 if (object != TARGET_OBJECT_MEMORY)
1282 return TARGET_XFER_E_IO;
1283
1284 if (readbuf == NULL)
1285 error (_("ctf_xfer_partial: trace file is read-only"));
1286
1287 if (get_traceframe_number () != -1)
1288 {
1289 struct bt_iter_pos *pos;
1290 int i = 0;
1291 enum target_xfer_status res;
1292 /* Records the lowest available address of all blocks that
1293 intersects the requested range. */
1294 ULONGEST low_addr_available = 0;
1295
1296 gdb_assert (ctf_iter != NULL);
1297 /* Save the current position. */
1298 pos = bt_iter_get_pos (bt_ctf_get_iter (ctf_iter));
1299 gdb_assert (pos->type == BT_SEEK_RESTORE);
1300
1301 /* Iterate through the traceframe's blocks, looking for
1302 memory. */
1303 while (1)
1304 {
1305 ULONGEST amt;
1306 uint64_t maddr;
1307 uint16_t mlen;
1308 enum bfd_endian byte_order
1309 = gdbarch_byte_order (target_gdbarch ());
1310 const struct bt_definition *scope;
1311 const struct bt_definition *def;
1312 struct bt_ctf_event *event
1313 = bt_ctf_iter_read_event (ctf_iter);
1314 const char *name = bt_ctf_event_name (event);
1315
1316 if (name == NULL || strcmp (name, "frame") == 0)
1317 break;
1318 else if (strcmp (name, "memory") != 0)
1319 {
1320 if (bt_iter_next (bt_ctf_get_iter (ctf_iter)) < 0)
1321 break;
1322
1323 continue;
1324 }
1325
1326 scope = bt_ctf_get_top_level_scope (event,
1327 BT_EVENT_FIELDS);
1328
1329 def = bt_ctf_get_field (event, scope, "address");
1330 maddr = bt_ctf_get_uint64 (def);
1331 def = bt_ctf_get_field (event, scope, "length");
1332 mlen = (uint16_t) bt_ctf_get_uint64 (def);
1333
1334 /* If the block includes the first part of the desired
1335 range, return as much it has; GDB will re-request the
1336 remainder, which might be in a different block of this
1337 trace frame. */
1338 if (maddr <= offset && offset < (maddr + mlen))
1339 {
1340 const struct bt_definition *array
1341 = bt_ctf_get_field (event, scope, "contents");
1342 const struct bt_declaration *decl
1343 = bt_ctf_get_decl_from_def (array);
1344 gdb_byte *contents;
1345 int k;
1346
1347 contents = (gdb_byte *) xmalloc (mlen);
1348
1349 for (k = 0; k < mlen; k++)
1350 {
1351 const struct bt_definition *element
1352 = bt_ctf_get_index (event, array, k);
1353
1354 contents[k] = (gdb_byte) bt_ctf_get_uint64 (element);
1355 }
1356
1357 amt = (maddr + mlen) - offset;
1358 if (amt > len)
1359 amt = len;
1360
1361 memcpy (readbuf, &contents[offset - maddr], amt);
1362
1363 xfree (contents);
1364
1365 /* Restore the position. */
1366 bt_iter_set_pos (bt_ctf_get_iter (ctf_iter), pos);
1367
1368 if (amt == 0)
1369 return TARGET_XFER_EOF;
1370 else
1371 {
1372 *xfered_len = amt;
1373 return TARGET_XFER_OK;
1374 }
1375 }
1376
1377 if (offset < maddr && maddr < (offset + len))
1378 if (low_addr_available == 0 || low_addr_available > maddr)
1379 low_addr_available = maddr;
1380
1381 if (bt_iter_next (bt_ctf_get_iter (ctf_iter)) < 0)
1382 break;
1383 }
1384
1385 /* Restore the position. */
1386 bt_iter_set_pos (bt_ctf_get_iter (ctf_iter), pos);
1387
1388 /* Requested memory is unavailable in the context of traceframes,
1389 and this address falls within a read-only section, fallback
1390 to reading from executable, up to LOW_ADDR_AVAILABLE */
1391 if (offset < low_addr_available)
1392 len = min (len, low_addr_available - offset);
1393 res = exec_read_partial_read_only (readbuf, offset, len, xfered_len);
1394
1395 if (res == TARGET_XFER_OK)
1396 return TARGET_XFER_OK;
1397 else
1398 {
1399 /* No use trying further, we know some memory starting
1400 at MEMADDR isn't available. */
1401 *xfered_len = len;
1402 return TARGET_XFER_UNAVAILABLE;
1403 }
1404 }
1405 else
1406 {
1407 /* Fallback to reading from read-only sections. */
1408 return section_table_read_available_memory (readbuf, offset, len, xfered_len);
1409 }
1410 }
1411
1412 /* This is the implementation of target_ops method
1413 to_get_trace_state_variable_value.
1414 Iterate over events whose name is "tsv" in current frame. When the
1415 trace variable is found, set the value of it to *VAL and return
1416 true, otherwise return false. */
1417
1418 static int
1419 ctf_get_trace_state_variable_value (struct target_ops *self,
1420 int tsvnum, LONGEST *val)
1421 {
1422 struct bt_iter_pos *pos;
1423 int found = 0;
1424
1425 gdb_assert (ctf_iter != NULL);
1426 /* Save the current position. */
1427 pos = bt_iter_get_pos (bt_ctf_get_iter (ctf_iter));
1428 gdb_assert (pos->type == BT_SEEK_RESTORE);
1429
1430 /* Iterate through the traceframe's blocks, looking for 'V'
1431 block. */
1432 while (1)
1433 {
1434 struct bt_ctf_event *event
1435 = bt_ctf_iter_read_event (ctf_iter);
1436 const char *name = bt_ctf_event_name (event);
1437
1438 if (name == NULL || strcmp (name, "frame") == 0)
1439 break;
1440 else if (strcmp (name, "tsv") == 0)
1441 {
1442 const struct bt_definition *scope;
1443 const struct bt_definition *def;
1444
1445 scope = bt_ctf_get_top_level_scope (event,
1446 BT_EVENT_FIELDS);
1447
1448 def = bt_ctf_get_field (event, scope, "num");
1449 if (tsvnum == (int32_t) bt_ctf_get_uint64 (def))
1450 {
1451 def = bt_ctf_get_field (event, scope, "val");
1452 *val = bt_ctf_get_uint64 (def);
1453
1454 found = 1;
1455 }
1456 }
1457
1458 if (bt_iter_next (bt_ctf_get_iter (ctf_iter)) < 0)
1459 break;
1460 }
1461
1462 /* Restore the position. */
1463 bt_iter_set_pos (bt_ctf_get_iter (ctf_iter), pos);
1464
1465 return found;
1466 }
1467
1468 /* Return the tracepoint number in "frame" event. */
1469
1470 static int
1471 ctf_get_tpnum_from_frame_event (struct bt_ctf_event *event)
1472 {
1473 /* The packet context of events has a field "tpnum". */
1474 const struct bt_definition *scope
1475 = bt_ctf_get_top_level_scope (event, BT_STREAM_PACKET_CONTEXT);
1476 uint64_t tpnum
1477 = bt_ctf_get_uint64 (bt_ctf_get_field (event, scope, "tpnum"));
1478
1479 return (int) tpnum;
1480 }
1481
1482 /* Return the address at which the current frame was collected. */
1483
1484 static CORE_ADDR
1485 ctf_get_traceframe_address (void)
1486 {
1487 struct bt_ctf_event *event = NULL;
1488 struct bt_iter_pos *pos;
1489 CORE_ADDR addr = 0;
1490
1491 gdb_assert (ctf_iter != NULL);
1492 pos = bt_iter_get_pos (bt_ctf_get_iter (ctf_iter));
1493 gdb_assert (pos->type == BT_SEEK_RESTORE);
1494
1495 while (1)
1496 {
1497 const char *name;
1498 struct bt_ctf_event *event1;
1499
1500 event1 = bt_ctf_iter_read_event (ctf_iter);
1501
1502 name = bt_ctf_event_name (event1);
1503
1504 if (name == NULL)
1505 break;
1506 else if (strcmp (name, "frame") == 0)
1507 {
1508 event = event1;
1509 break;
1510 }
1511
1512 if (bt_iter_next (bt_ctf_get_iter (ctf_iter)) < 0)
1513 break;
1514 }
1515
1516 if (event != NULL)
1517 {
1518 int tpnum = ctf_get_tpnum_from_frame_event (event);
1519 struct tracepoint *tp
1520 = get_tracepoint_by_number_on_target (tpnum);
1521
1522 if (tp && tp->base.loc)
1523 addr = tp->base.loc->address;
1524 }
1525
1526 /* Restore the position. */
1527 bt_iter_set_pos (bt_ctf_get_iter (ctf_iter), pos);
1528
1529 return addr;
1530 }
1531
1532 /* This is the implementation of target_ops method to_trace_find.
1533 Iterate the events whose name is "frame", extract the tracepoint
1534 number in it. Return traceframe number when matched. */
1535
1536 static int
1537 ctf_trace_find (struct target_ops *self, enum trace_find_type type, int num,
1538 CORE_ADDR addr1, CORE_ADDR addr2, int *tpp)
1539 {
1540 int ret = -1;
1541 int tfnum = 0;
1542 int found = 0;
1543 struct bt_iter_pos pos;
1544
1545 if (num == -1)
1546 {
1547 if (tpp != NULL)
1548 *tpp = -1;
1549 return -1;
1550 }
1551
1552 gdb_assert (ctf_iter != NULL);
1553 /* Set iterator back to the start. */
1554 bt_iter_set_pos (bt_ctf_get_iter (ctf_iter), start_pos);
1555
1556 while (1)
1557 {
1558 int id;
1559 struct bt_ctf_event *event;
1560 const char *name;
1561
1562 event = bt_ctf_iter_read_event (ctf_iter);
1563
1564 name = bt_ctf_event_name (event);
1565
1566 if (event == NULL || name == NULL)
1567 break;
1568
1569 if (strcmp (name, "frame") == 0)
1570 {
1571 CORE_ADDR tfaddr;
1572
1573 if (type == tfind_number)
1574 {
1575 /* Looking for a specific trace frame. */
1576 if (tfnum == num)
1577 found = 1;
1578 }
1579 else
1580 {
1581 /* Start from the _next_ trace frame. */
1582 if (tfnum > get_traceframe_number ())
1583 {
1584 switch (type)
1585 {
1586 case tfind_tp:
1587 {
1588 struct tracepoint *tp = get_tracepoint (num);
1589
1590 if (tp != NULL
1591 && (tp->number_on_target
1592 == ctf_get_tpnum_from_frame_event (event)))
1593 found = 1;
1594 break;
1595 }
1596 case tfind_pc:
1597 tfaddr = ctf_get_traceframe_address ();
1598 if (tfaddr == addr1)
1599 found = 1;
1600 break;
1601 case tfind_range:
1602 tfaddr = ctf_get_traceframe_address ();
1603 if (addr1 <= tfaddr && tfaddr <= addr2)
1604 found = 1;
1605 break;
1606 case tfind_outside:
1607 tfaddr = ctf_get_traceframe_address ();
1608 if (!(addr1 <= tfaddr && tfaddr <= addr2))
1609 found = 1;
1610 break;
1611 default:
1612 internal_error (__FILE__, __LINE__, _("unknown tfind type"));
1613 }
1614 }
1615 }
1616 if (found)
1617 {
1618 if (tpp != NULL)
1619 *tpp = ctf_get_tpnum_from_frame_event (event);
1620
1621 /* Skip the event "frame". */
1622 bt_iter_next (bt_ctf_get_iter (ctf_iter));
1623
1624 return tfnum;
1625 }
1626 tfnum++;
1627 }
1628
1629 if (bt_iter_next (bt_ctf_get_iter (ctf_iter)) < 0)
1630 break;
1631 }
1632
1633 return -1;
1634 }
1635
1636 /* This is the implementation of target_ops method to_traceframe_info.
1637 Iterate the events whose name is "memory", in current
1638 frame, extract memory range information, and return them in
1639 traceframe_info. */
1640
1641 static struct traceframe_info *
1642 ctf_traceframe_info (struct target_ops *self)
1643 {
1644 struct traceframe_info *info = XCNEW (struct traceframe_info);
1645 const char *name;
1646 struct bt_iter_pos *pos;
1647
1648 gdb_assert (ctf_iter != NULL);
1649 /* Save the current position. */
1650 pos = bt_iter_get_pos (bt_ctf_get_iter (ctf_iter));
1651 gdb_assert (pos->type == BT_SEEK_RESTORE);
1652
1653 do
1654 {
1655 struct bt_ctf_event *event
1656 = bt_ctf_iter_read_event (ctf_iter);
1657
1658 name = bt_ctf_event_name (event);
1659
1660 if (name == NULL || strcmp (name, "register") == 0
1661 || strcmp (name, "frame") == 0)
1662 ;
1663 else if (strcmp (name, "memory") == 0)
1664 {
1665 const struct bt_definition *scope
1666 = bt_ctf_get_top_level_scope (event,
1667 BT_EVENT_FIELDS);
1668 const struct bt_definition *def;
1669 struct mem_range *r;
1670
1671 r = VEC_safe_push (mem_range_s, info->memory, NULL);
1672 def = bt_ctf_get_field (event, scope, "address");
1673 r->start = bt_ctf_get_uint64 (def);
1674
1675 def = bt_ctf_get_field (event, scope, "length");
1676 r->length = (uint16_t) bt_ctf_get_uint64 (def);
1677 }
1678 else if (strcmp (name, "tsv") == 0)
1679 {
1680 int vnum;
1681 const struct bt_definition *scope
1682 = bt_ctf_get_top_level_scope (event,
1683 BT_EVENT_FIELDS);
1684 const struct bt_definition *def;
1685
1686 def = bt_ctf_get_field (event, scope, "num");
1687 vnum = (int) bt_ctf_get_int64 (def);
1688 VEC_safe_push (int, info->tvars, vnum);
1689 }
1690 else
1691 {
1692 warning (_("Unhandled trace block type (%s) "
1693 "while building trace frame info."),
1694 name);
1695 }
1696
1697 if (bt_iter_next (bt_ctf_get_iter (ctf_iter)) < 0)
1698 break;
1699 }
1700 while (name != NULL && strcmp (name, "frame") != 0);
1701
1702 /* Restore the position. */
1703 bt_iter_set_pos (bt_ctf_get_iter (ctf_iter), pos);
1704
1705 return info;
1706 }
1707
1708 static void
1709 init_ctf_ops (void)
1710 {
1711 memset (&ctf_ops, 0, sizeof (ctf_ops));
1712
1713 init_tracefile_ops (&ctf_ops);
1714 ctf_ops.to_shortname = "ctf";
1715 ctf_ops.to_longname = "CTF file";
1716 ctf_ops.to_doc = "Use a CTF directory as a target.\n\
1717 Specify the filename of the CTF directory.";
1718 ctf_ops.to_open = ctf_open;
1719 ctf_ops.to_close = ctf_close;
1720 ctf_ops.to_fetch_registers = ctf_fetch_registers;
1721 ctf_ops.to_xfer_partial = ctf_xfer_partial;
1722 ctf_ops.to_files_info = ctf_files_info;
1723 ctf_ops.to_trace_find = ctf_trace_find;
1724 ctf_ops.to_get_trace_state_variable_value
1725 = ctf_get_trace_state_variable_value;
1726 ctf_ops.to_traceframe_info = ctf_traceframe_info;
1727 }
1728
1729 #endif
1730
1731 /* -Wmissing-prototypes */
1732
1733 extern initialize_file_ftype _initialize_ctf;
1734
1735 /* module initialization */
1736
1737 void
1738 _initialize_ctf (void)
1739 {
1740 #if HAVE_LIBBABELTRACE
1741 init_ctf_ops ();
1742
1743 add_target_with_completer (&ctf_ops, filename_completer);
1744 #endif
1745 }