blob: 52474e44fb28e02efed8b15a1e5406f068d339d6 [file] [log] [blame]
b.liue9582032025-04-17 19:18:16 +08001// SPDX-License-Identifier: GPL-2.0-only
2/*
3 * intel_pt_decoder.c: Intel Processor Trace support
4 * Copyright (c) 2013-2014, Intel Corporation.
5 */
6
7#ifndef _GNU_SOURCE
8#define _GNU_SOURCE
9#endif
10#include <stdlib.h>
11#include <stdbool.h>
12#include <string.h>
13#include <errno.h>
14#include <stdint.h>
15#include <inttypes.h>
16#include <linux/compiler.h>
17#include <linux/string.h>
18#include <linux/zalloc.h>
19
20#include "../auxtrace.h"
21
22#include "intel-pt-insn-decoder.h"
23#include "intel-pt-pkt-decoder.h"
24#include "intel-pt-decoder.h"
25#include "intel-pt-log.h"
26
27#define INTEL_PT_BLK_SIZE 1024
28
29#define BIT63 (((uint64_t)1 << 63))
30
31#define INTEL_PT_RETURN 1
32
33/* Maximum number of loops with no packets consumed i.e. stuck in a loop */
34#define INTEL_PT_MAX_LOOPS 10000
35
36struct intel_pt_blk {
37 struct intel_pt_blk *prev;
38 uint64_t ip[INTEL_PT_BLK_SIZE];
39};
40
41struct intel_pt_stack {
42 struct intel_pt_blk *blk;
43 struct intel_pt_blk *spare;
44 int pos;
45};
46
47enum intel_pt_pkt_state {
48 INTEL_PT_STATE_NO_PSB,
49 INTEL_PT_STATE_NO_IP,
50 INTEL_PT_STATE_ERR_RESYNC,
51 INTEL_PT_STATE_IN_SYNC,
52 INTEL_PT_STATE_TNT_CONT,
53 INTEL_PT_STATE_TNT,
54 INTEL_PT_STATE_TIP,
55 INTEL_PT_STATE_TIP_PGD,
56 INTEL_PT_STATE_FUP,
57 INTEL_PT_STATE_FUP_NO_TIP,
58};
59
60static inline bool intel_pt_sample_time(enum intel_pt_pkt_state pkt_state)
61{
62 switch (pkt_state) {
63 case INTEL_PT_STATE_NO_PSB:
64 case INTEL_PT_STATE_NO_IP:
65 case INTEL_PT_STATE_ERR_RESYNC:
66 case INTEL_PT_STATE_IN_SYNC:
67 case INTEL_PT_STATE_TNT_CONT:
68 return true;
69 case INTEL_PT_STATE_TNT:
70 case INTEL_PT_STATE_TIP:
71 case INTEL_PT_STATE_TIP_PGD:
72 case INTEL_PT_STATE_FUP:
73 case INTEL_PT_STATE_FUP_NO_TIP:
74 return false;
75 default:
76 return true;
77 };
78}
79
80#ifdef INTEL_PT_STRICT
81#define INTEL_PT_STATE_ERR1 INTEL_PT_STATE_NO_PSB
82#define INTEL_PT_STATE_ERR2 INTEL_PT_STATE_NO_PSB
83#define INTEL_PT_STATE_ERR3 INTEL_PT_STATE_NO_PSB
84#define INTEL_PT_STATE_ERR4 INTEL_PT_STATE_NO_PSB
85#else
86#define INTEL_PT_STATE_ERR1 (decoder->pkt_state)
87#define INTEL_PT_STATE_ERR2 INTEL_PT_STATE_NO_IP
88#define INTEL_PT_STATE_ERR3 INTEL_PT_STATE_ERR_RESYNC
89#define INTEL_PT_STATE_ERR4 INTEL_PT_STATE_IN_SYNC
90#endif
91
92struct intel_pt_decoder {
93 int (*get_trace)(struct intel_pt_buffer *buffer, void *data);
94 int (*walk_insn)(struct intel_pt_insn *intel_pt_insn,
95 uint64_t *insn_cnt_ptr, uint64_t *ip, uint64_t to_ip,
96 uint64_t max_insn_cnt, void *data);
97 bool (*pgd_ip)(uint64_t ip, void *data);
98 int (*lookahead)(void *data, intel_pt_lookahead_cb_t cb, void *cb_data);
99 void *data;
100 struct intel_pt_state state;
101 const unsigned char *buf;
102 size_t len;
103 bool return_compression;
104 bool branch_enable;
105 bool mtc_insn;
106 bool pge;
107 bool have_tma;
108 bool have_cyc;
109 bool fixup_last_mtc;
110 bool have_last_ip;
111 bool in_psb;
112 enum intel_pt_param_flags flags;
113 uint64_t pos;
114 uint64_t last_ip;
115 uint64_t ip;
116 uint64_t cr3;
117 uint64_t timestamp;
118 uint64_t tsc_timestamp;
119 uint64_t ref_timestamp;
120 uint64_t buf_timestamp;
121 uint64_t sample_timestamp;
122 uint64_t ret_addr;
123 uint64_t ctc_timestamp;
124 uint64_t ctc_delta;
125 uint64_t cycle_cnt;
126 uint64_t cyc_ref_timestamp;
127 uint32_t last_mtc;
128 uint32_t tsc_ctc_ratio_n;
129 uint32_t tsc_ctc_ratio_d;
130 uint32_t tsc_ctc_mult;
131 uint32_t tsc_slip;
132 uint32_t ctc_rem_mask;
133 int mtc_shift;
134 struct intel_pt_stack stack;
135 enum intel_pt_pkt_state pkt_state;
136 enum intel_pt_pkt_ctx pkt_ctx;
137 enum intel_pt_pkt_ctx prev_pkt_ctx;
138 enum intel_pt_blk_type blk_type;
139 int blk_type_pos;
140 struct intel_pt_pkt packet;
141 struct intel_pt_pkt tnt;
142 int pkt_step;
143 int pkt_len;
144 int last_packet_type;
145 unsigned int cbr;
146 unsigned int cbr_seen;
147 unsigned int max_non_turbo_ratio;
148 double max_non_turbo_ratio_fp;
149 double cbr_cyc_to_tsc;
150 double calc_cyc_to_tsc;
151 bool have_calc_cyc_to_tsc;
152 int exec_mode;
153 unsigned int insn_bytes;
154 uint64_t period;
155 enum intel_pt_period_type period_type;
156 uint64_t tot_insn_cnt;
157 uint64_t period_insn_cnt;
158 uint64_t period_mask;
159 uint64_t period_ticks;
160 uint64_t last_masked_timestamp;
161 uint64_t tot_cyc_cnt;
162 uint64_t sample_tot_cyc_cnt;
163 uint64_t base_cyc_cnt;
164 uint64_t cyc_cnt_timestamp;
165 double tsc_to_cyc;
166 bool continuous_period;
167 bool overflow;
168 bool set_fup_tx_flags;
169 bool set_fup_ptw;
170 bool set_fup_mwait;
171 bool set_fup_pwre;
172 bool set_fup_exstop;
173 bool set_fup_bep;
174 bool sample_cyc;
175 unsigned int fup_tx_flags;
176 unsigned int tx_flags;
177 uint64_t fup_ptw_payload;
178 uint64_t fup_mwait_payload;
179 uint64_t fup_pwre_payload;
180 uint64_t cbr_payload;
181 uint64_t timestamp_insn_cnt;
182 uint64_t sample_insn_cnt;
183 uint64_t stuck_ip;
184 int no_progress;
185 int stuck_ip_prd;
186 int stuck_ip_cnt;
187 const unsigned char *next_buf;
188 size_t next_len;
189 unsigned char temp_buf[INTEL_PT_PKT_MAX_SZ];
190};
191
192static uint64_t intel_pt_lower_power_of_2(uint64_t x)
193{
194 int i;
195
196 for (i = 0; x != 1; i++)
197 x >>= 1;
198
199 return x << i;
200}
201
202static void intel_pt_setup_period(struct intel_pt_decoder *decoder)
203{
204 if (decoder->period_type == INTEL_PT_PERIOD_TICKS) {
205 uint64_t period;
206
207 period = intel_pt_lower_power_of_2(decoder->period);
208 decoder->period_mask = ~(period - 1);
209 decoder->period_ticks = period;
210 }
211}
212
213static uint64_t multdiv(uint64_t t, uint32_t n, uint32_t d)
214{
215 if (!d)
216 return 0;
217 return (t / d) * n + ((t % d) * n) / d;
218}
219
220struct intel_pt_decoder *intel_pt_decoder_new(struct intel_pt_params *params)
221{
222 struct intel_pt_decoder *decoder;
223
224 if (!params->get_trace || !params->walk_insn)
225 return NULL;
226
227 decoder = zalloc(sizeof(struct intel_pt_decoder));
228 if (!decoder)
229 return NULL;
230
231 decoder->get_trace = params->get_trace;
232 decoder->walk_insn = params->walk_insn;
233 decoder->pgd_ip = params->pgd_ip;
234 decoder->lookahead = params->lookahead;
235 decoder->data = params->data;
236 decoder->return_compression = params->return_compression;
237 decoder->branch_enable = params->branch_enable;
238
239 decoder->flags = params->flags;
240
241 decoder->period = params->period;
242 decoder->period_type = params->period_type;
243
244 decoder->max_non_turbo_ratio = params->max_non_turbo_ratio;
245 decoder->max_non_turbo_ratio_fp = params->max_non_turbo_ratio;
246
247 intel_pt_setup_period(decoder);
248
249 decoder->mtc_shift = params->mtc_period;
250 decoder->ctc_rem_mask = (1 << decoder->mtc_shift) - 1;
251
252 decoder->tsc_ctc_ratio_n = params->tsc_ctc_ratio_n;
253 decoder->tsc_ctc_ratio_d = params->tsc_ctc_ratio_d;
254
255 if (!decoder->tsc_ctc_ratio_n)
256 decoder->tsc_ctc_ratio_d = 0;
257
258 if (decoder->tsc_ctc_ratio_d) {
259 if (!(decoder->tsc_ctc_ratio_n % decoder->tsc_ctc_ratio_d))
260 decoder->tsc_ctc_mult = decoder->tsc_ctc_ratio_n /
261 decoder->tsc_ctc_ratio_d;
262 }
263
264 /*
265 * A TSC packet can slip past MTC packets so that the timestamp appears
266 * to go backwards. One estimate is that can be up to about 40 CPU
267 * cycles, which is certainly less than 0x1000 TSC ticks, but accept
268 * slippage an order of magnitude more to be on the safe side.
269 */
270 decoder->tsc_slip = 0x10000;
271
272 intel_pt_log("timestamp: mtc_shift %u\n", decoder->mtc_shift);
273 intel_pt_log("timestamp: tsc_ctc_ratio_n %u\n", decoder->tsc_ctc_ratio_n);
274 intel_pt_log("timestamp: tsc_ctc_ratio_d %u\n", decoder->tsc_ctc_ratio_d);
275 intel_pt_log("timestamp: tsc_ctc_mult %u\n", decoder->tsc_ctc_mult);
276 intel_pt_log("timestamp: tsc_slip %#x\n", decoder->tsc_slip);
277
278 return decoder;
279}
280
281static void intel_pt_pop_blk(struct intel_pt_stack *stack)
282{
283 struct intel_pt_blk *blk = stack->blk;
284
285 stack->blk = blk->prev;
286 if (!stack->spare)
287 stack->spare = blk;
288 else
289 free(blk);
290}
291
292static uint64_t intel_pt_pop(struct intel_pt_stack *stack)
293{
294 if (!stack->pos) {
295 if (!stack->blk)
296 return 0;
297 intel_pt_pop_blk(stack);
298 if (!stack->blk)
299 return 0;
300 stack->pos = INTEL_PT_BLK_SIZE;
301 }
302 return stack->blk->ip[--stack->pos];
303}
304
305static int intel_pt_alloc_blk(struct intel_pt_stack *stack)
306{
307 struct intel_pt_blk *blk;
308
309 if (stack->spare) {
310 blk = stack->spare;
311 stack->spare = NULL;
312 } else {
313 blk = malloc(sizeof(struct intel_pt_blk));
314 if (!blk)
315 return -ENOMEM;
316 }
317
318 blk->prev = stack->blk;
319 stack->blk = blk;
320 stack->pos = 0;
321 return 0;
322}
323
324static int intel_pt_push(struct intel_pt_stack *stack, uint64_t ip)
325{
326 int err;
327
328 if (!stack->blk || stack->pos == INTEL_PT_BLK_SIZE) {
329 err = intel_pt_alloc_blk(stack);
330 if (err)
331 return err;
332 }
333
334 stack->blk->ip[stack->pos++] = ip;
335 return 0;
336}
337
338static void intel_pt_clear_stack(struct intel_pt_stack *stack)
339{
340 while (stack->blk)
341 intel_pt_pop_blk(stack);
342 stack->pos = 0;
343}
344
345static void intel_pt_free_stack(struct intel_pt_stack *stack)
346{
347 intel_pt_clear_stack(stack);
348 zfree(&stack->blk);
349 zfree(&stack->spare);
350}
351
352void intel_pt_decoder_free(struct intel_pt_decoder *decoder)
353{
354 intel_pt_free_stack(&decoder->stack);
355 free(decoder);
356}
357
358static int intel_pt_ext_err(int code)
359{
360 switch (code) {
361 case -ENOMEM:
362 return INTEL_PT_ERR_NOMEM;
363 case -ENOSYS:
364 return INTEL_PT_ERR_INTERN;
365 case -EBADMSG:
366 return INTEL_PT_ERR_BADPKT;
367 case -ENODATA:
368 return INTEL_PT_ERR_NODATA;
369 case -EILSEQ:
370 return INTEL_PT_ERR_NOINSN;
371 case -ENOENT:
372 return INTEL_PT_ERR_MISMAT;
373 case -EOVERFLOW:
374 return INTEL_PT_ERR_OVR;
375 case -ENOSPC:
376 return INTEL_PT_ERR_LOST;
377 case -ELOOP:
378 return INTEL_PT_ERR_NELOOP;
379 default:
380 return INTEL_PT_ERR_UNK;
381 }
382}
383
384static const char *intel_pt_err_msgs[] = {
385 [INTEL_PT_ERR_NOMEM] = "Memory allocation failed",
386 [INTEL_PT_ERR_INTERN] = "Internal error",
387 [INTEL_PT_ERR_BADPKT] = "Bad packet",
388 [INTEL_PT_ERR_NODATA] = "No more data",
389 [INTEL_PT_ERR_NOINSN] = "Failed to get instruction",
390 [INTEL_PT_ERR_MISMAT] = "Trace doesn't match instruction",
391 [INTEL_PT_ERR_OVR] = "Overflow packet",
392 [INTEL_PT_ERR_LOST] = "Lost trace data",
393 [INTEL_PT_ERR_UNK] = "Unknown error!",
394 [INTEL_PT_ERR_NELOOP] = "Never-ending loop",
395};
396
397int intel_pt__strerror(int code, char *buf, size_t buflen)
398{
399 if (code < 1 || code >= INTEL_PT_ERR_MAX)
400 code = INTEL_PT_ERR_UNK;
401 strlcpy(buf, intel_pt_err_msgs[code], buflen);
402 return 0;
403}
404
405static uint64_t intel_pt_calc_ip(const struct intel_pt_pkt *packet,
406 uint64_t last_ip)
407{
408 uint64_t ip;
409
410 switch (packet->count) {
411 case 1:
412 ip = (last_ip & (uint64_t)0xffffffffffff0000ULL) |
413 packet->payload;
414 break;
415 case 2:
416 ip = (last_ip & (uint64_t)0xffffffff00000000ULL) |
417 packet->payload;
418 break;
419 case 3:
420 ip = packet->payload;
421 /* Sign-extend 6-byte ip */
422 if (ip & (uint64_t)0x800000000000ULL)
423 ip |= (uint64_t)0xffff000000000000ULL;
424 break;
425 case 4:
426 ip = (last_ip & (uint64_t)0xffff000000000000ULL) |
427 packet->payload;
428 break;
429 case 6:
430 ip = packet->payload;
431 break;
432 default:
433 return 0;
434 }
435
436 return ip;
437}
438
439static inline void intel_pt_set_last_ip(struct intel_pt_decoder *decoder)
440{
441 decoder->last_ip = intel_pt_calc_ip(&decoder->packet, decoder->last_ip);
442 decoder->have_last_ip = true;
443}
444
445static inline void intel_pt_set_ip(struct intel_pt_decoder *decoder)
446{
447 intel_pt_set_last_ip(decoder);
448 decoder->ip = decoder->last_ip;
449}
450
451static void intel_pt_decoder_log_packet(struct intel_pt_decoder *decoder)
452{
453 intel_pt_log_packet(&decoder->packet, decoder->pkt_len, decoder->pos,
454 decoder->buf);
455}
456
457static int intel_pt_bug(struct intel_pt_decoder *decoder)
458{
459 intel_pt_log("ERROR: Internal error\n");
460 decoder->pkt_state = INTEL_PT_STATE_NO_PSB;
461 return -ENOSYS;
462}
463
464static inline void intel_pt_clear_tx_flags(struct intel_pt_decoder *decoder)
465{
466 decoder->tx_flags = 0;
467}
468
469static inline void intel_pt_update_in_tx(struct intel_pt_decoder *decoder)
470{
471 decoder->tx_flags = decoder->packet.payload & INTEL_PT_IN_TX;
472}
473
474static int intel_pt_bad_packet(struct intel_pt_decoder *decoder)
475{
476 intel_pt_clear_tx_flags(decoder);
477 decoder->have_tma = false;
478 decoder->pkt_len = 1;
479 decoder->pkt_step = 1;
480 intel_pt_decoder_log_packet(decoder);
481 if (decoder->pkt_state != INTEL_PT_STATE_NO_PSB) {
482 intel_pt_log("ERROR: Bad packet\n");
483 decoder->pkt_state = INTEL_PT_STATE_ERR1;
484 }
485 return -EBADMSG;
486}
487
488static inline void intel_pt_update_sample_time(struct intel_pt_decoder *decoder)
489{
490 decoder->sample_timestamp = decoder->timestamp;
491 decoder->sample_insn_cnt = decoder->timestamp_insn_cnt;
492}
493
494static void intel_pt_reposition(struct intel_pt_decoder *decoder)
495{
496 decoder->ip = 0;
497 decoder->pkt_state = INTEL_PT_STATE_NO_PSB;
498 decoder->timestamp = 0;
499 decoder->have_tma = false;
500}
501
502static int intel_pt_get_data(struct intel_pt_decoder *decoder, bool reposition)
503{
504 struct intel_pt_buffer buffer = { .buf = 0, };
505 int ret;
506
507 decoder->pkt_step = 0;
508
509 intel_pt_log("Getting more data\n");
510 ret = decoder->get_trace(&buffer, decoder->data);
511 if (ret)
512 return ret;
513 decoder->buf = buffer.buf;
514 decoder->len = buffer.len;
515 if (!decoder->len) {
516 intel_pt_log("No more data\n");
517 return -ENODATA;
518 }
519 decoder->buf_timestamp = buffer.ref_timestamp;
520 if (!buffer.consecutive || reposition) {
521 intel_pt_reposition(decoder);
522 decoder->ref_timestamp = buffer.ref_timestamp;
523 decoder->state.trace_nr = buffer.trace_nr;
524 intel_pt_log("Reference timestamp 0x%" PRIx64 "\n",
525 decoder->ref_timestamp);
526 return -ENOLINK;
527 }
528
529 return 0;
530}
531
532static int intel_pt_get_next_data(struct intel_pt_decoder *decoder,
533 bool reposition)
534{
535 if (!decoder->next_buf)
536 return intel_pt_get_data(decoder, reposition);
537
538 decoder->buf = decoder->next_buf;
539 decoder->len = decoder->next_len;
540 decoder->next_buf = 0;
541 decoder->next_len = 0;
542 return 0;
543}
544
545static int intel_pt_get_split_packet(struct intel_pt_decoder *decoder)
546{
547 unsigned char *buf = decoder->temp_buf;
548 size_t old_len, len, n;
549 int ret;
550
551 old_len = decoder->len;
552 len = decoder->len;
553 memcpy(buf, decoder->buf, len);
554
555 ret = intel_pt_get_data(decoder, false);
556 if (ret) {
557 decoder->pos += old_len;
558 return ret < 0 ? ret : -EINVAL;
559 }
560
561 n = INTEL_PT_PKT_MAX_SZ - len;
562 if (n > decoder->len)
563 n = decoder->len;
564 memcpy(buf + len, decoder->buf, n);
565 len += n;
566
567 decoder->prev_pkt_ctx = decoder->pkt_ctx;
568 ret = intel_pt_get_packet(buf, len, &decoder->packet, &decoder->pkt_ctx);
569 if (ret < (int)old_len) {
570 decoder->next_buf = decoder->buf;
571 decoder->next_len = decoder->len;
572 decoder->buf = buf;
573 decoder->len = old_len;
574 return intel_pt_bad_packet(decoder);
575 }
576
577 decoder->next_buf = decoder->buf + (ret - old_len);
578 decoder->next_len = decoder->len - (ret - old_len);
579
580 decoder->buf = buf;
581 decoder->len = ret;
582
583 return ret;
584}
585
586struct intel_pt_pkt_info {
587 struct intel_pt_decoder *decoder;
588 struct intel_pt_pkt packet;
589 uint64_t pos;
590 int pkt_len;
591 int last_packet_type;
592 void *data;
593};
594
595typedef int (*intel_pt_pkt_cb_t)(struct intel_pt_pkt_info *pkt_info);
596
597/* Lookahead packets in current buffer */
598static int intel_pt_pkt_lookahead(struct intel_pt_decoder *decoder,
599 intel_pt_pkt_cb_t cb, void *data)
600{
601 struct intel_pt_pkt_info pkt_info;
602 const unsigned char *buf = decoder->buf;
603 enum intel_pt_pkt_ctx pkt_ctx = decoder->pkt_ctx;
604 size_t len = decoder->len;
605 int ret;
606
607 pkt_info.decoder = decoder;
608 pkt_info.pos = decoder->pos;
609 pkt_info.pkt_len = decoder->pkt_step;
610 pkt_info.last_packet_type = decoder->last_packet_type;
611 pkt_info.data = data;
612
613 while (1) {
614 do {
615 pkt_info.pos += pkt_info.pkt_len;
616 buf += pkt_info.pkt_len;
617 len -= pkt_info.pkt_len;
618
619 if (!len)
620 return INTEL_PT_NEED_MORE_BYTES;
621
622 ret = intel_pt_get_packet(buf, len, &pkt_info.packet,
623 &pkt_ctx);
624 if (!ret)
625 return INTEL_PT_NEED_MORE_BYTES;
626 if (ret < 0)
627 return ret;
628
629 pkt_info.pkt_len = ret;
630 } while (pkt_info.packet.type == INTEL_PT_PAD);
631
632 ret = cb(&pkt_info);
633 if (ret)
634 return 0;
635
636 pkt_info.last_packet_type = pkt_info.packet.type;
637 }
638}
639
640struct intel_pt_calc_cyc_to_tsc_info {
641 uint64_t cycle_cnt;
642 unsigned int cbr;
643 uint32_t last_mtc;
644 uint64_t ctc_timestamp;
645 uint64_t ctc_delta;
646 uint64_t tsc_timestamp;
647 uint64_t timestamp;
648 bool have_tma;
649 bool fixup_last_mtc;
650 bool from_mtc;
651 double cbr_cyc_to_tsc;
652};
653
654/*
655 * MTC provides a 8-bit slice of CTC but the TMA packet only provides the lower
656 * 16 bits of CTC. If mtc_shift > 8 then some of the MTC bits are not in the CTC
657 * provided by the TMA packet. Fix-up the last_mtc calculated from the TMA
658 * packet by copying the missing bits from the current MTC assuming the least
659 * difference between the two, and that the current MTC comes after last_mtc.
660 */
661static void intel_pt_fixup_last_mtc(uint32_t mtc, int mtc_shift,
662 uint32_t *last_mtc)
663{
664 uint32_t first_missing_bit = 1U << (16 - mtc_shift);
665 uint32_t mask = ~(first_missing_bit - 1);
666
667 *last_mtc |= mtc & mask;
668 if (*last_mtc >= mtc) {
669 *last_mtc -= first_missing_bit;
670 *last_mtc &= 0xff;
671 }
672}
673
674static int intel_pt_calc_cyc_cb(struct intel_pt_pkt_info *pkt_info)
675{
676 struct intel_pt_decoder *decoder = pkt_info->decoder;
677 struct intel_pt_calc_cyc_to_tsc_info *data = pkt_info->data;
678 uint64_t timestamp;
679 double cyc_to_tsc;
680 unsigned int cbr;
681 uint32_t mtc, mtc_delta, ctc, fc, ctc_rem;
682
683 switch (pkt_info->packet.type) {
684 case INTEL_PT_TNT:
685 case INTEL_PT_TIP_PGE:
686 case INTEL_PT_TIP:
687 case INTEL_PT_FUP:
688 case INTEL_PT_PSB:
689 case INTEL_PT_PIP:
690 case INTEL_PT_MODE_EXEC:
691 case INTEL_PT_MODE_TSX:
692 case INTEL_PT_PSBEND:
693 case INTEL_PT_PAD:
694 case INTEL_PT_VMCS:
695 case INTEL_PT_MNT:
696 case INTEL_PT_PTWRITE:
697 case INTEL_PT_PTWRITE_IP:
698 case INTEL_PT_BBP:
699 case INTEL_PT_BIP:
700 case INTEL_PT_BEP:
701 case INTEL_PT_BEP_IP:
702 return 0;
703
704 case INTEL_PT_MTC:
705 if (!data->have_tma)
706 return 0;
707
708 mtc = pkt_info->packet.payload;
709 if (decoder->mtc_shift > 8 && data->fixup_last_mtc) {
710 data->fixup_last_mtc = false;
711 intel_pt_fixup_last_mtc(mtc, decoder->mtc_shift,
712 &data->last_mtc);
713 }
714 if (mtc > data->last_mtc)
715 mtc_delta = mtc - data->last_mtc;
716 else
717 mtc_delta = mtc + 256 - data->last_mtc;
718 data->ctc_delta += mtc_delta << decoder->mtc_shift;
719 data->last_mtc = mtc;
720
721 if (decoder->tsc_ctc_mult) {
722 timestamp = data->ctc_timestamp +
723 data->ctc_delta * decoder->tsc_ctc_mult;
724 } else {
725 timestamp = data->ctc_timestamp +
726 multdiv(data->ctc_delta,
727 decoder->tsc_ctc_ratio_n,
728 decoder->tsc_ctc_ratio_d);
729 }
730
731 if (timestamp < data->timestamp)
732 return 1;
733
734 if (pkt_info->last_packet_type != INTEL_PT_CYC) {
735 data->timestamp = timestamp;
736 return 0;
737 }
738
739 break;
740
741 case INTEL_PT_TSC:
742 /*
743 * For now, do not support using TSC packets - refer
744 * intel_pt_calc_cyc_to_tsc().
745 */
746 if (data->from_mtc)
747 return 1;
748 timestamp = pkt_info->packet.payload |
749 (data->timestamp & (0xffULL << 56));
750 if (data->from_mtc && timestamp < data->timestamp &&
751 data->timestamp - timestamp < decoder->tsc_slip)
752 return 1;
753 if (timestamp < data->timestamp)
754 timestamp += (1ULL << 56);
755 if (pkt_info->last_packet_type != INTEL_PT_CYC) {
756 if (data->from_mtc)
757 return 1;
758 data->tsc_timestamp = timestamp;
759 data->timestamp = timestamp;
760 return 0;
761 }
762 break;
763
764 case INTEL_PT_TMA:
765 if (data->from_mtc)
766 return 1;
767
768 if (!decoder->tsc_ctc_ratio_d)
769 return 0;
770
771 ctc = pkt_info->packet.payload;
772 fc = pkt_info->packet.count;
773 ctc_rem = ctc & decoder->ctc_rem_mask;
774
775 data->last_mtc = (ctc >> decoder->mtc_shift) & 0xff;
776
777 data->ctc_timestamp = data->tsc_timestamp - fc;
778 if (decoder->tsc_ctc_mult) {
779 data->ctc_timestamp -= ctc_rem * decoder->tsc_ctc_mult;
780 } else {
781 data->ctc_timestamp -=
782 multdiv(ctc_rem, decoder->tsc_ctc_ratio_n,
783 decoder->tsc_ctc_ratio_d);
784 }
785
786 data->ctc_delta = 0;
787 data->have_tma = true;
788 data->fixup_last_mtc = true;
789
790 return 0;
791
792 case INTEL_PT_CYC:
793 data->cycle_cnt += pkt_info->packet.payload;
794 return 0;
795
796 case INTEL_PT_CBR:
797 cbr = pkt_info->packet.payload;
798 if (data->cbr && data->cbr != cbr)
799 return 1;
800 data->cbr = cbr;
801 data->cbr_cyc_to_tsc = decoder->max_non_turbo_ratio_fp / cbr;
802 return 0;
803
804 case INTEL_PT_TIP_PGD:
805 case INTEL_PT_TRACESTOP:
806 case INTEL_PT_EXSTOP:
807 case INTEL_PT_EXSTOP_IP:
808 case INTEL_PT_MWAIT:
809 case INTEL_PT_PWRE:
810 case INTEL_PT_PWRX:
811 case INTEL_PT_OVF:
812 case INTEL_PT_BAD: /* Does not happen */
813 default:
814 return 1;
815 }
816
817 if (!data->cbr && decoder->cbr) {
818 data->cbr = decoder->cbr;
819 data->cbr_cyc_to_tsc = decoder->cbr_cyc_to_tsc;
820 }
821
822 if (!data->cycle_cnt)
823 return 1;
824
825 cyc_to_tsc = (double)(timestamp - decoder->timestamp) / data->cycle_cnt;
826
827 if (data->cbr && cyc_to_tsc > data->cbr_cyc_to_tsc &&
828 cyc_to_tsc / data->cbr_cyc_to_tsc > 1.25) {
829 intel_pt_log("Timestamp: calculated %g TSC ticks per cycle too big (c.f. CBR-based value %g), pos " x64_fmt "\n",
830 cyc_to_tsc, data->cbr_cyc_to_tsc, pkt_info->pos);
831 return 1;
832 }
833
834 decoder->calc_cyc_to_tsc = cyc_to_tsc;
835 decoder->have_calc_cyc_to_tsc = true;
836
837 if (data->cbr) {
838 intel_pt_log("Timestamp: calculated %g TSC ticks per cycle c.f. CBR-based value %g, pos " x64_fmt "\n",
839 cyc_to_tsc, data->cbr_cyc_to_tsc, pkt_info->pos);
840 } else {
841 intel_pt_log("Timestamp: calculated %g TSC ticks per cycle c.f. unknown CBR-based value, pos " x64_fmt "\n",
842 cyc_to_tsc, pkt_info->pos);
843 }
844
845 return 1;
846}
847
848static void intel_pt_calc_cyc_to_tsc(struct intel_pt_decoder *decoder,
849 bool from_mtc)
850{
851 struct intel_pt_calc_cyc_to_tsc_info data = {
852 .cycle_cnt = 0,
853 .cbr = 0,
854 .last_mtc = decoder->last_mtc,
855 .ctc_timestamp = decoder->ctc_timestamp,
856 .ctc_delta = decoder->ctc_delta,
857 .tsc_timestamp = decoder->tsc_timestamp,
858 .timestamp = decoder->timestamp,
859 .have_tma = decoder->have_tma,
860 .fixup_last_mtc = decoder->fixup_last_mtc,
861 .from_mtc = from_mtc,
862 .cbr_cyc_to_tsc = 0,
863 };
864
865 /*
866 * For now, do not support using TSC packets for at least the reasons:
867 * 1) timing might have stopped
868 * 2) TSC packets within PSB+ can slip against CYC packets
869 */
870 if (!from_mtc)
871 return;
872
873 intel_pt_pkt_lookahead(decoder, intel_pt_calc_cyc_cb, &data);
874}
875
876static int intel_pt_get_next_packet(struct intel_pt_decoder *decoder)
877{
878 int ret;
879
880 decoder->last_packet_type = decoder->packet.type;
881
882 do {
883 decoder->pos += decoder->pkt_step;
884 decoder->buf += decoder->pkt_step;
885 decoder->len -= decoder->pkt_step;
886
887 if (!decoder->len) {
888 ret = intel_pt_get_next_data(decoder, false);
889 if (ret)
890 return ret;
891 }
892
893 decoder->prev_pkt_ctx = decoder->pkt_ctx;
894 ret = intel_pt_get_packet(decoder->buf, decoder->len,
895 &decoder->packet, &decoder->pkt_ctx);
896 if (ret == INTEL_PT_NEED_MORE_BYTES && BITS_PER_LONG == 32 &&
897 decoder->len < INTEL_PT_PKT_MAX_SZ && !decoder->next_buf) {
898 ret = intel_pt_get_split_packet(decoder);
899 if (ret < 0)
900 return ret;
901 }
902 if (ret <= 0)
903 return intel_pt_bad_packet(decoder);
904
905 decoder->pkt_len = ret;
906 decoder->pkt_step = ret;
907 intel_pt_decoder_log_packet(decoder);
908 } while (decoder->packet.type == INTEL_PT_PAD);
909
910 return 0;
911}
912
913static uint64_t intel_pt_next_period(struct intel_pt_decoder *decoder)
914{
915 uint64_t timestamp, masked_timestamp;
916
917 timestamp = decoder->timestamp + decoder->timestamp_insn_cnt;
918 masked_timestamp = timestamp & decoder->period_mask;
919 if (decoder->continuous_period) {
920 if (masked_timestamp > decoder->last_masked_timestamp)
921 return 1;
922 } else {
923 timestamp += 1;
924 masked_timestamp = timestamp & decoder->period_mask;
925 if (masked_timestamp > decoder->last_masked_timestamp) {
926 decoder->last_masked_timestamp = masked_timestamp;
927 decoder->continuous_period = true;
928 }
929 }
930
931 if (masked_timestamp < decoder->last_masked_timestamp)
932 return decoder->period_ticks;
933
934 return decoder->period_ticks - (timestamp - masked_timestamp);
935}
936
937static uint64_t intel_pt_next_sample(struct intel_pt_decoder *decoder)
938{
939 switch (decoder->period_type) {
940 case INTEL_PT_PERIOD_INSTRUCTIONS:
941 return decoder->period - decoder->period_insn_cnt;
942 case INTEL_PT_PERIOD_TICKS:
943 return intel_pt_next_period(decoder);
944 case INTEL_PT_PERIOD_NONE:
945 case INTEL_PT_PERIOD_MTC:
946 default:
947 return 0;
948 }
949}
950
951static void intel_pt_sample_insn(struct intel_pt_decoder *decoder)
952{
953 uint64_t timestamp, masked_timestamp;
954
955 switch (decoder->period_type) {
956 case INTEL_PT_PERIOD_INSTRUCTIONS:
957 decoder->period_insn_cnt = 0;
958 break;
959 case INTEL_PT_PERIOD_TICKS:
960 timestamp = decoder->timestamp + decoder->timestamp_insn_cnt;
961 masked_timestamp = timestamp & decoder->period_mask;
962 if (masked_timestamp > decoder->last_masked_timestamp)
963 decoder->last_masked_timestamp = masked_timestamp;
964 else
965 decoder->last_masked_timestamp += decoder->period_ticks;
966 break;
967 case INTEL_PT_PERIOD_NONE:
968 case INTEL_PT_PERIOD_MTC:
969 default:
970 break;
971 }
972
973 decoder->state.type |= INTEL_PT_INSTRUCTION;
974}
975
976static int intel_pt_walk_insn(struct intel_pt_decoder *decoder,
977 struct intel_pt_insn *intel_pt_insn, uint64_t ip)
978{
979 uint64_t max_insn_cnt, insn_cnt = 0;
980 int err;
981
982 if (!decoder->mtc_insn)
983 decoder->mtc_insn = true;
984
985 max_insn_cnt = intel_pt_next_sample(decoder);
986
987 err = decoder->walk_insn(intel_pt_insn, &insn_cnt, &decoder->ip, ip,
988 max_insn_cnt, decoder->data);
989
990 decoder->tot_insn_cnt += insn_cnt;
991 decoder->timestamp_insn_cnt += insn_cnt;
992 decoder->sample_insn_cnt += insn_cnt;
993 decoder->period_insn_cnt += insn_cnt;
994
995 if (err) {
996 decoder->no_progress = 0;
997 decoder->pkt_state = INTEL_PT_STATE_ERR2;
998 intel_pt_log_at("ERROR: Failed to get instruction",
999 decoder->ip);
1000 if (err == -ENOENT)
1001 return -ENOLINK;
1002 return -EILSEQ;
1003 }
1004
1005 if (ip && decoder->ip == ip) {
1006 err = -EAGAIN;
1007 goto out;
1008 }
1009
1010 if (max_insn_cnt && insn_cnt >= max_insn_cnt)
1011 intel_pt_sample_insn(decoder);
1012
1013 if (intel_pt_insn->branch == INTEL_PT_BR_NO_BRANCH) {
1014 decoder->state.type = INTEL_PT_INSTRUCTION;
1015 decoder->state.from_ip = decoder->ip;
1016 decoder->state.to_ip = 0;
1017 decoder->ip += intel_pt_insn->length;
1018 err = INTEL_PT_RETURN;
1019 goto out;
1020 }
1021
1022 if (intel_pt_insn->op == INTEL_PT_OP_CALL) {
1023 /* Zero-length calls are excluded */
1024 if (intel_pt_insn->branch != INTEL_PT_BR_UNCONDITIONAL ||
1025 intel_pt_insn->rel) {
1026 err = intel_pt_push(&decoder->stack, decoder->ip +
1027 intel_pt_insn->length);
1028 if (err)
1029 goto out;
1030 }
1031 } else if (intel_pt_insn->op == INTEL_PT_OP_RET) {
1032 decoder->ret_addr = intel_pt_pop(&decoder->stack);
1033 }
1034
1035 if (intel_pt_insn->branch == INTEL_PT_BR_UNCONDITIONAL) {
1036 int cnt = decoder->no_progress++;
1037
1038 decoder->state.from_ip = decoder->ip;
1039 decoder->ip += intel_pt_insn->length +
1040 intel_pt_insn->rel;
1041 decoder->state.to_ip = decoder->ip;
1042 err = INTEL_PT_RETURN;
1043
1044 /*
1045 * Check for being stuck in a loop. This can happen if a
1046 * decoder error results in the decoder erroneously setting the
1047 * ip to an address that is itself in an infinite loop that
1048 * consumes no packets. When that happens, there must be an
1049 * unconditional branch.
1050 */
1051 if (cnt) {
1052 if (cnt == 1) {
1053 decoder->stuck_ip = decoder->state.to_ip;
1054 decoder->stuck_ip_prd = 1;
1055 decoder->stuck_ip_cnt = 1;
1056 } else if (cnt > INTEL_PT_MAX_LOOPS ||
1057 decoder->state.to_ip == decoder->stuck_ip) {
1058 intel_pt_log_at("ERROR: Never-ending loop",
1059 decoder->state.to_ip);
1060 decoder->pkt_state = INTEL_PT_STATE_ERR_RESYNC;
1061 err = -ELOOP;
1062 goto out;
1063 } else if (!--decoder->stuck_ip_cnt) {
1064 decoder->stuck_ip_prd += 1;
1065 decoder->stuck_ip_cnt = decoder->stuck_ip_prd;
1066 decoder->stuck_ip = decoder->state.to_ip;
1067 }
1068 }
1069 goto out_no_progress;
1070 }
1071out:
1072 decoder->no_progress = 0;
1073out_no_progress:
1074 decoder->state.insn_op = intel_pt_insn->op;
1075 decoder->state.insn_len = intel_pt_insn->length;
1076 memcpy(decoder->state.insn, intel_pt_insn->buf,
1077 INTEL_PT_INSN_BUF_SZ);
1078
1079 if (decoder->tx_flags & INTEL_PT_IN_TX)
1080 decoder->state.flags |= INTEL_PT_IN_TX;
1081
1082 return err;
1083}
1084
1085static bool intel_pt_fup_event(struct intel_pt_decoder *decoder)
1086{
1087 bool ret = false;
1088
1089 if (decoder->set_fup_tx_flags) {
1090 decoder->set_fup_tx_flags = false;
1091 decoder->tx_flags = decoder->fup_tx_flags;
1092 decoder->state.type = INTEL_PT_TRANSACTION;
1093 if (decoder->fup_tx_flags & INTEL_PT_ABORT_TX)
1094 decoder->state.type |= INTEL_PT_BRANCH;
1095 decoder->state.from_ip = decoder->ip;
1096 decoder->state.to_ip = 0;
1097 decoder->state.flags = decoder->fup_tx_flags;
1098 return true;
1099 }
1100 if (decoder->set_fup_ptw) {
1101 decoder->set_fup_ptw = false;
1102 decoder->state.type = INTEL_PT_PTW;
1103 decoder->state.flags |= INTEL_PT_FUP_IP;
1104 decoder->state.from_ip = decoder->ip;
1105 decoder->state.to_ip = 0;
1106 decoder->state.ptw_payload = decoder->fup_ptw_payload;
1107 return true;
1108 }
1109 if (decoder->set_fup_mwait) {
1110 decoder->set_fup_mwait = false;
1111 decoder->state.type = INTEL_PT_MWAIT_OP;
1112 decoder->state.from_ip = decoder->ip;
1113 decoder->state.to_ip = 0;
1114 decoder->state.mwait_payload = decoder->fup_mwait_payload;
1115 ret = true;
1116 }
1117 if (decoder->set_fup_pwre) {
1118 decoder->set_fup_pwre = false;
1119 decoder->state.type |= INTEL_PT_PWR_ENTRY;
1120 decoder->state.type &= ~INTEL_PT_BRANCH;
1121 decoder->state.from_ip = decoder->ip;
1122 decoder->state.to_ip = 0;
1123 decoder->state.pwre_payload = decoder->fup_pwre_payload;
1124 ret = true;
1125 }
1126 if (decoder->set_fup_exstop) {
1127 decoder->set_fup_exstop = false;
1128 decoder->state.type |= INTEL_PT_EX_STOP;
1129 decoder->state.type &= ~INTEL_PT_BRANCH;
1130 decoder->state.flags |= INTEL_PT_FUP_IP;
1131 decoder->state.from_ip = decoder->ip;
1132 decoder->state.to_ip = 0;
1133 ret = true;
1134 }
1135 if (decoder->set_fup_bep) {
1136 decoder->set_fup_bep = false;
1137 decoder->state.type |= INTEL_PT_BLK_ITEMS;
1138 decoder->state.type &= ~INTEL_PT_BRANCH;
1139 decoder->state.from_ip = decoder->ip;
1140 decoder->state.to_ip = 0;
1141 ret = true;
1142 }
1143 return ret;
1144}
1145
1146static inline bool intel_pt_fup_with_nlip(struct intel_pt_decoder *decoder,
1147 struct intel_pt_insn *intel_pt_insn,
1148 uint64_t ip, int err)
1149{
1150 return decoder->flags & INTEL_PT_FUP_WITH_NLIP && !err &&
1151 intel_pt_insn->branch == INTEL_PT_BR_INDIRECT &&
1152 ip == decoder->ip + intel_pt_insn->length;
1153}
1154
1155static int intel_pt_walk_fup(struct intel_pt_decoder *decoder)
1156{
1157 struct intel_pt_insn intel_pt_insn;
1158 uint64_t ip;
1159 int err;
1160
1161 ip = decoder->last_ip;
1162
1163 while (1) {
1164 err = intel_pt_walk_insn(decoder, &intel_pt_insn, ip);
1165 if (err == INTEL_PT_RETURN)
1166 return 0;
1167 if (err == -EAGAIN ||
1168 intel_pt_fup_with_nlip(decoder, &intel_pt_insn, ip, err)) {
1169 bool no_tip = decoder->pkt_state != INTEL_PT_STATE_FUP;
1170
1171 decoder->pkt_state = INTEL_PT_STATE_IN_SYNC;
1172 if (intel_pt_fup_event(decoder) && no_tip)
1173 return 0;
1174 return -EAGAIN;
1175 }
1176 decoder->set_fup_tx_flags = false;
1177 if (err)
1178 return err;
1179
1180 if (intel_pt_insn.branch == INTEL_PT_BR_INDIRECT) {
1181 intel_pt_log_at("ERROR: Unexpected indirect branch",
1182 decoder->ip);
1183 decoder->pkt_state = INTEL_PT_STATE_ERR_RESYNC;
1184 return -ENOENT;
1185 }
1186
1187 if (intel_pt_insn.branch == INTEL_PT_BR_CONDITIONAL) {
1188 intel_pt_log_at("ERROR: Unexpected conditional branch",
1189 decoder->ip);
1190 decoder->pkt_state = INTEL_PT_STATE_ERR_RESYNC;
1191 return -ENOENT;
1192 }
1193
1194 intel_pt_bug(decoder);
1195 }
1196}
1197
1198static int intel_pt_walk_tip(struct intel_pt_decoder *decoder)
1199{
1200 struct intel_pt_insn intel_pt_insn;
1201 int err;
1202
1203 err = intel_pt_walk_insn(decoder, &intel_pt_insn, 0);
1204 if (err == INTEL_PT_RETURN &&
1205 decoder->pgd_ip &&
1206 decoder->pkt_state == INTEL_PT_STATE_TIP_PGD &&
1207 (decoder->state.type & INTEL_PT_BRANCH) &&
1208 decoder->pgd_ip(decoder->state.to_ip, decoder->data)) {
1209 /* Unconditional branch leaving filter region */
1210 decoder->no_progress = 0;
1211 decoder->pge = false;
1212 decoder->continuous_period = false;
1213 decoder->pkt_state = INTEL_PT_STATE_IN_SYNC;
1214 decoder->state.type |= INTEL_PT_TRACE_END;
1215 return 0;
1216 }
1217 if (err == INTEL_PT_RETURN)
1218 return 0;
1219 if (err)
1220 return err;
1221
1222 if (intel_pt_insn.branch == INTEL_PT_BR_INDIRECT) {
1223 if (decoder->pkt_state == INTEL_PT_STATE_TIP_PGD) {
1224 decoder->pge = false;
1225 decoder->continuous_period = false;
1226 decoder->pkt_state = INTEL_PT_STATE_IN_SYNC;
1227 decoder->state.from_ip = decoder->ip;
1228 if (decoder->packet.count == 0) {
1229 decoder->state.to_ip = 0;
1230 } else {
1231 decoder->state.to_ip = decoder->last_ip;
1232 decoder->ip = decoder->last_ip;
1233 }
1234 decoder->state.type |= INTEL_PT_TRACE_END;
1235 } else {
1236 decoder->pkt_state = INTEL_PT_STATE_IN_SYNC;
1237 decoder->state.from_ip = decoder->ip;
1238 if (decoder->packet.count == 0) {
1239 decoder->state.to_ip = 0;
1240 } else {
1241 decoder->state.to_ip = decoder->last_ip;
1242 decoder->ip = decoder->last_ip;
1243 }
1244 }
1245 return 0;
1246 }
1247
1248 if (intel_pt_insn.branch == INTEL_PT_BR_CONDITIONAL) {
1249 uint64_t to_ip = decoder->ip + intel_pt_insn.length +
1250 intel_pt_insn.rel;
1251
1252 if (decoder->pgd_ip &&
1253 decoder->pkt_state == INTEL_PT_STATE_TIP_PGD &&
1254 decoder->pgd_ip(to_ip, decoder->data)) {
1255 /* Conditional branch leaving filter region */
1256 decoder->pge = false;
1257 decoder->continuous_period = false;
1258 decoder->pkt_state = INTEL_PT_STATE_IN_SYNC;
1259 decoder->ip = to_ip;
1260 decoder->state.from_ip = decoder->ip;
1261 decoder->state.to_ip = to_ip;
1262 decoder->state.type |= INTEL_PT_TRACE_END;
1263 return 0;
1264 }
1265 intel_pt_log_at("ERROR: Conditional branch when expecting indirect branch",
1266 decoder->ip);
1267 decoder->pkt_state = INTEL_PT_STATE_ERR_RESYNC;
1268 return -ENOENT;
1269 }
1270
1271 return intel_pt_bug(decoder);
1272}
1273
1274static int intel_pt_walk_tnt(struct intel_pt_decoder *decoder)
1275{
1276 struct intel_pt_insn intel_pt_insn;
1277 int err;
1278
1279 while (1) {
1280 err = intel_pt_walk_insn(decoder, &intel_pt_insn, 0);
1281 if (err == INTEL_PT_RETURN)
1282 return 0;
1283 if (err)
1284 return err;
1285
1286 if (intel_pt_insn.op == INTEL_PT_OP_RET) {
1287 if (!decoder->return_compression) {
1288 intel_pt_log_at("ERROR: RET when expecting conditional branch",
1289 decoder->ip);
1290 decoder->pkt_state = INTEL_PT_STATE_ERR3;
1291 return -ENOENT;
1292 }
1293 if (!decoder->ret_addr) {
1294 intel_pt_log_at("ERROR: Bad RET compression (stack empty)",
1295 decoder->ip);
1296 decoder->pkt_state = INTEL_PT_STATE_ERR3;
1297 return -ENOENT;
1298 }
1299 if (!(decoder->tnt.payload & BIT63)) {
1300 intel_pt_log_at("ERROR: Bad RET compression (TNT=N)",
1301 decoder->ip);
1302 decoder->pkt_state = INTEL_PT_STATE_ERR3;
1303 return -ENOENT;
1304 }
1305 decoder->tnt.count -= 1;
1306 if (decoder->tnt.count)
1307 decoder->pkt_state = INTEL_PT_STATE_TNT_CONT;
1308 else
1309 decoder->pkt_state = INTEL_PT_STATE_IN_SYNC;
1310 decoder->tnt.payload <<= 1;
1311 decoder->state.from_ip = decoder->ip;
1312 decoder->ip = decoder->ret_addr;
1313 decoder->state.to_ip = decoder->ip;
1314 return 0;
1315 }
1316
1317 if (intel_pt_insn.branch == INTEL_PT_BR_INDIRECT) {
1318 /* Handle deferred TIPs */
1319 err = intel_pt_get_next_packet(decoder);
1320 if (err)
1321 return err;
1322 if (decoder->packet.type != INTEL_PT_TIP ||
1323 decoder->packet.count == 0) {
1324 intel_pt_log_at("ERROR: Missing deferred TIP for indirect branch",
1325 decoder->ip);
1326 decoder->pkt_state = INTEL_PT_STATE_ERR3;
1327 decoder->pkt_step = 0;
1328 return -ENOENT;
1329 }
1330 intel_pt_set_last_ip(decoder);
1331 decoder->state.from_ip = decoder->ip;
1332 decoder->state.to_ip = decoder->last_ip;
1333 decoder->ip = decoder->last_ip;
1334 return 0;
1335 }
1336
1337 if (intel_pt_insn.branch == INTEL_PT_BR_CONDITIONAL) {
1338 decoder->tnt.count -= 1;
1339 if (decoder->tnt.count)
1340 decoder->pkt_state = INTEL_PT_STATE_TNT_CONT;
1341 else
1342 decoder->pkt_state = INTEL_PT_STATE_IN_SYNC;
1343 if (decoder->tnt.payload & BIT63) {
1344 decoder->tnt.payload <<= 1;
1345 decoder->state.from_ip = decoder->ip;
1346 decoder->ip += intel_pt_insn.length +
1347 intel_pt_insn.rel;
1348 decoder->state.to_ip = decoder->ip;
1349 return 0;
1350 }
1351 /* Instruction sample for a non-taken branch */
1352 if (decoder->state.type & INTEL_PT_INSTRUCTION) {
1353 decoder->tnt.payload <<= 1;
1354 decoder->state.type = INTEL_PT_INSTRUCTION;
1355 decoder->state.from_ip = decoder->ip;
1356 decoder->state.to_ip = 0;
1357 decoder->ip += intel_pt_insn.length;
1358 return 0;
1359 }
1360 decoder->sample_cyc = false;
1361 decoder->ip += intel_pt_insn.length;
1362 if (!decoder->tnt.count) {
1363 intel_pt_update_sample_time(decoder);
1364 return -EAGAIN;
1365 }
1366 decoder->tnt.payload <<= 1;
1367 continue;
1368 }
1369
1370 return intel_pt_bug(decoder);
1371 }
1372}
1373
1374static int intel_pt_mode_tsx(struct intel_pt_decoder *decoder, bool *no_tip)
1375{
1376 unsigned int fup_tx_flags;
1377 int err;
1378
1379 fup_tx_flags = decoder->packet.payload &
1380 (INTEL_PT_IN_TX | INTEL_PT_ABORT_TX);
1381 err = intel_pt_get_next_packet(decoder);
1382 if (err)
1383 return err;
1384 if (decoder->packet.type == INTEL_PT_FUP) {
1385 decoder->fup_tx_flags = fup_tx_flags;
1386 decoder->set_fup_tx_flags = true;
1387 if (!(decoder->fup_tx_flags & INTEL_PT_ABORT_TX))
1388 *no_tip = true;
1389 } else {
1390 intel_pt_log_at("ERROR: Missing FUP after MODE.TSX",
1391 decoder->pos);
1392 intel_pt_update_in_tx(decoder);
1393 }
1394 return 0;
1395}
1396
1397static uint64_t intel_pt_8b_tsc(uint64_t timestamp, uint64_t ref_timestamp)
1398{
1399 timestamp |= (ref_timestamp & (0xffULL << 56));
1400
1401 if (timestamp < ref_timestamp) {
1402 if (ref_timestamp - timestamp > (1ULL << 55))
1403 timestamp += (1ULL << 56);
1404 } else {
1405 if (timestamp - ref_timestamp > (1ULL << 55))
1406 timestamp -= (1ULL << 56);
1407 }
1408
1409 return timestamp;
1410}
1411
1412static void intel_pt_calc_tsc_timestamp(struct intel_pt_decoder *decoder)
1413{
1414 uint64_t timestamp;
1415
1416 decoder->have_tma = false;
1417
1418 if (decoder->ref_timestamp) {
1419 timestamp = intel_pt_8b_tsc(decoder->packet.payload,
1420 decoder->ref_timestamp);
1421 decoder->tsc_timestamp = timestamp;
1422 decoder->timestamp = timestamp;
1423 decoder->ref_timestamp = 0;
1424 decoder->timestamp_insn_cnt = 0;
1425 } else if (decoder->timestamp) {
1426 timestamp = decoder->packet.payload |
1427 (decoder->timestamp & (0xffULL << 56));
1428 decoder->tsc_timestamp = timestamp;
1429 if (timestamp < decoder->timestamp &&
1430 decoder->timestamp - timestamp < decoder->tsc_slip) {
1431 intel_pt_log_to("Suppressing backwards timestamp",
1432 timestamp);
1433 timestamp = decoder->timestamp;
1434 }
1435 if (timestamp < decoder->timestamp) {
1436 intel_pt_log_to("Wraparound timestamp", timestamp);
1437 timestamp += (1ULL << 56);
1438 decoder->tsc_timestamp = timestamp;
1439 }
1440 decoder->timestamp = timestamp;
1441 decoder->timestamp_insn_cnt = 0;
1442 }
1443
1444 if (decoder->last_packet_type == INTEL_PT_CYC) {
1445 decoder->cyc_ref_timestamp = decoder->timestamp;
1446 decoder->cycle_cnt = 0;
1447 decoder->have_calc_cyc_to_tsc = false;
1448 intel_pt_calc_cyc_to_tsc(decoder, false);
1449 }
1450
1451 intel_pt_log_to("Setting timestamp", decoder->timestamp);
1452}
1453
1454static int intel_pt_overflow(struct intel_pt_decoder *decoder)
1455{
1456 intel_pt_log("ERROR: Buffer overflow\n");
1457 intel_pt_clear_tx_flags(decoder);
1458 decoder->timestamp_insn_cnt = 0;
1459 decoder->pkt_state = INTEL_PT_STATE_ERR_RESYNC;
1460 decoder->overflow = true;
1461 return -EOVERFLOW;
1462}
1463
1464static inline void intel_pt_mtc_cyc_cnt_pge(struct intel_pt_decoder *decoder)
1465{
1466 if (decoder->have_cyc)
1467 return;
1468
1469 decoder->cyc_cnt_timestamp = decoder->timestamp;
1470 decoder->base_cyc_cnt = decoder->tot_cyc_cnt;
1471}
1472
1473static inline void intel_pt_mtc_cyc_cnt_cbr(struct intel_pt_decoder *decoder)
1474{
1475 decoder->tsc_to_cyc = decoder->cbr / decoder->max_non_turbo_ratio_fp;
1476
1477 if (decoder->pge)
1478 intel_pt_mtc_cyc_cnt_pge(decoder);
1479}
1480
1481static inline void intel_pt_mtc_cyc_cnt_upd(struct intel_pt_decoder *decoder)
1482{
1483 uint64_t tot_cyc_cnt, tsc_delta;
1484
1485 if (decoder->have_cyc)
1486 return;
1487
1488 decoder->sample_cyc = true;
1489
1490 if (!decoder->pge || decoder->timestamp <= decoder->cyc_cnt_timestamp)
1491 return;
1492
1493 tsc_delta = decoder->timestamp - decoder->cyc_cnt_timestamp;
1494 tot_cyc_cnt = tsc_delta * decoder->tsc_to_cyc + decoder->base_cyc_cnt;
1495
1496 if (tot_cyc_cnt > decoder->tot_cyc_cnt)
1497 decoder->tot_cyc_cnt = tot_cyc_cnt;
1498}
1499
1500static void intel_pt_calc_tma(struct intel_pt_decoder *decoder)
1501{
1502 uint32_t ctc = decoder->packet.payload;
1503 uint32_t fc = decoder->packet.count;
1504 uint32_t ctc_rem = ctc & decoder->ctc_rem_mask;
1505
1506 if (!decoder->tsc_ctc_ratio_d)
1507 return;
1508
1509 if (decoder->pge && !decoder->in_psb)
1510 intel_pt_mtc_cyc_cnt_pge(decoder);
1511 else
1512 intel_pt_mtc_cyc_cnt_upd(decoder);
1513
1514 decoder->last_mtc = (ctc >> decoder->mtc_shift) & 0xff;
1515 decoder->ctc_timestamp = decoder->tsc_timestamp - fc;
1516 if (decoder->tsc_ctc_mult) {
1517 decoder->ctc_timestamp -= ctc_rem * decoder->tsc_ctc_mult;
1518 } else {
1519 decoder->ctc_timestamp -= multdiv(ctc_rem,
1520 decoder->tsc_ctc_ratio_n,
1521 decoder->tsc_ctc_ratio_d);
1522 }
1523 decoder->ctc_delta = 0;
1524 decoder->have_tma = true;
1525 decoder->fixup_last_mtc = true;
1526 intel_pt_log("CTC timestamp " x64_fmt " last MTC %#x CTC rem %#x\n",
1527 decoder->ctc_timestamp, decoder->last_mtc, ctc_rem);
1528}
1529
1530static void intel_pt_calc_mtc_timestamp(struct intel_pt_decoder *decoder)
1531{
1532 uint64_t timestamp;
1533 uint32_t mtc, mtc_delta;
1534
1535 if (!decoder->have_tma)
1536 return;
1537
1538 mtc = decoder->packet.payload;
1539
1540 if (decoder->mtc_shift > 8 && decoder->fixup_last_mtc) {
1541 decoder->fixup_last_mtc = false;
1542 intel_pt_fixup_last_mtc(mtc, decoder->mtc_shift,
1543 &decoder->last_mtc);
1544 }
1545
1546 if (mtc > decoder->last_mtc)
1547 mtc_delta = mtc - decoder->last_mtc;
1548 else
1549 mtc_delta = mtc + 256 - decoder->last_mtc;
1550
1551 decoder->ctc_delta += mtc_delta << decoder->mtc_shift;
1552
1553 if (decoder->tsc_ctc_mult) {
1554 timestamp = decoder->ctc_timestamp +
1555 decoder->ctc_delta * decoder->tsc_ctc_mult;
1556 } else {
1557 timestamp = decoder->ctc_timestamp +
1558 multdiv(decoder->ctc_delta,
1559 decoder->tsc_ctc_ratio_n,
1560 decoder->tsc_ctc_ratio_d);
1561 }
1562
1563 if (timestamp < decoder->timestamp)
1564 intel_pt_log("Suppressing MTC timestamp " x64_fmt " less than current timestamp " x64_fmt "\n",
1565 timestamp, decoder->timestamp);
1566 else
1567 decoder->timestamp = timestamp;
1568
1569 intel_pt_mtc_cyc_cnt_upd(decoder);
1570
1571 decoder->timestamp_insn_cnt = 0;
1572 decoder->last_mtc = mtc;
1573
1574 if (decoder->last_packet_type == INTEL_PT_CYC) {
1575 decoder->cyc_ref_timestamp = decoder->timestamp;
1576 decoder->cycle_cnt = 0;
1577 decoder->have_calc_cyc_to_tsc = false;
1578 intel_pt_calc_cyc_to_tsc(decoder, true);
1579 }
1580
1581 intel_pt_log_to("Setting timestamp", decoder->timestamp);
1582}
1583
1584static void intel_pt_calc_cbr(struct intel_pt_decoder *decoder)
1585{
1586 unsigned int cbr = decoder->packet.payload & 0xff;
1587
1588 decoder->cbr_payload = decoder->packet.payload;
1589
1590 if (decoder->cbr == cbr)
1591 return;
1592
1593 decoder->cbr = cbr;
1594 decoder->cbr_cyc_to_tsc = decoder->max_non_turbo_ratio_fp / cbr;
1595 decoder->cyc_ref_timestamp = decoder->timestamp;
1596 decoder->cycle_cnt = 0;
1597
1598 intel_pt_mtc_cyc_cnt_cbr(decoder);
1599}
1600
1601static void intel_pt_calc_cyc_timestamp(struct intel_pt_decoder *decoder)
1602{
1603 uint64_t timestamp = decoder->cyc_ref_timestamp;
1604
1605 decoder->have_cyc = true;
1606
1607 decoder->cycle_cnt += decoder->packet.payload;
1608 if (decoder->pge)
1609 decoder->tot_cyc_cnt += decoder->packet.payload;
1610 decoder->sample_cyc = true;
1611
1612 if (!decoder->cyc_ref_timestamp)
1613 return;
1614
1615 if (decoder->have_calc_cyc_to_tsc)
1616 timestamp += decoder->cycle_cnt * decoder->calc_cyc_to_tsc;
1617 else if (decoder->cbr)
1618 timestamp += decoder->cycle_cnt * decoder->cbr_cyc_to_tsc;
1619 else
1620 return;
1621
1622 if (timestamp < decoder->timestamp)
1623 intel_pt_log("Suppressing CYC timestamp " x64_fmt " less than current timestamp " x64_fmt "\n",
1624 timestamp, decoder->timestamp);
1625 else
1626 decoder->timestamp = timestamp;
1627
1628 decoder->timestamp_insn_cnt = 0;
1629
1630 intel_pt_log_to("Setting timestamp", decoder->timestamp);
1631}
1632
1633static void intel_pt_bbp(struct intel_pt_decoder *decoder)
1634{
1635 if (decoder->prev_pkt_ctx == INTEL_PT_NO_CTX) {
1636 memset(decoder->state.items.mask, 0, sizeof(decoder->state.items.mask));
1637 decoder->state.items.is_32_bit = false;
1638 }
1639 decoder->blk_type = decoder->packet.payload;
1640 decoder->blk_type_pos = intel_pt_blk_type_pos(decoder->blk_type);
1641 if (decoder->blk_type == INTEL_PT_GP_REGS)
1642 decoder->state.items.is_32_bit = decoder->packet.count;
1643 if (decoder->blk_type_pos < 0) {
1644 intel_pt_log("WARNING: Unknown block type %u\n",
1645 decoder->blk_type);
1646 } else if (decoder->state.items.mask[decoder->blk_type_pos]) {
1647 intel_pt_log("WARNING: Duplicate block type %u\n",
1648 decoder->blk_type);
1649 }
1650}
1651
1652static void intel_pt_bip(struct intel_pt_decoder *decoder)
1653{
1654 uint32_t id = decoder->packet.count;
1655 uint32_t bit = 1 << id;
1656 int pos = decoder->blk_type_pos;
1657
1658 if (pos < 0 || id >= INTEL_PT_BLK_ITEM_ID_CNT) {
1659 intel_pt_log("WARNING: Unknown block item %u type %d\n",
1660 id, decoder->blk_type);
1661 return;
1662 }
1663
1664 if (decoder->state.items.mask[pos] & bit) {
1665 intel_pt_log("WARNING: Duplicate block item %u type %d\n",
1666 id, decoder->blk_type);
1667 }
1668
1669 decoder->state.items.mask[pos] |= bit;
1670 decoder->state.items.val[pos][id] = decoder->packet.payload;
1671}
1672
1673/* Walk PSB+ packets when already in sync. */
1674static int intel_pt_walk_psbend(struct intel_pt_decoder *decoder)
1675{
1676 int err;
1677
1678 decoder->in_psb = true;
1679
1680 while (1) {
1681 err = intel_pt_get_next_packet(decoder);
1682 if (err)
1683 goto out;
1684
1685 switch (decoder->packet.type) {
1686 case INTEL_PT_PSBEND:
1687 err = 0;
1688 goto out;
1689
1690 case INTEL_PT_TIP_PGD:
1691 case INTEL_PT_TIP_PGE:
1692 case INTEL_PT_TIP:
1693 case INTEL_PT_TNT:
1694 case INTEL_PT_TRACESTOP:
1695 case INTEL_PT_BAD:
1696 case INTEL_PT_PSB:
1697 case INTEL_PT_PTWRITE:
1698 case INTEL_PT_PTWRITE_IP:
1699 case INTEL_PT_EXSTOP:
1700 case INTEL_PT_EXSTOP_IP:
1701 case INTEL_PT_MWAIT:
1702 case INTEL_PT_PWRE:
1703 case INTEL_PT_PWRX:
1704 case INTEL_PT_BBP:
1705 case INTEL_PT_BIP:
1706 case INTEL_PT_BEP:
1707 case INTEL_PT_BEP_IP:
1708 decoder->have_tma = false;
1709 intel_pt_log("ERROR: Unexpected packet\n");
1710 err = -EAGAIN;
1711 goto out;
1712
1713 case INTEL_PT_OVF:
1714 err = intel_pt_overflow(decoder);
1715 goto out;
1716
1717 case INTEL_PT_TSC:
1718 intel_pt_calc_tsc_timestamp(decoder);
1719 break;
1720
1721 case INTEL_PT_TMA:
1722 intel_pt_calc_tma(decoder);
1723 break;
1724
1725 case INTEL_PT_CBR:
1726 intel_pt_calc_cbr(decoder);
1727 break;
1728
1729 case INTEL_PT_MODE_EXEC:
1730 decoder->exec_mode = decoder->packet.payload;
1731 break;
1732
1733 case INTEL_PT_PIP:
1734 decoder->cr3 = decoder->packet.payload & (BIT63 - 1);
1735 break;
1736
1737 case INTEL_PT_FUP:
1738 decoder->pge = true;
1739 if (decoder->packet.count)
1740 intel_pt_set_last_ip(decoder);
1741 break;
1742
1743 case INTEL_PT_MODE_TSX:
1744 intel_pt_update_in_tx(decoder);
1745 break;
1746
1747 case INTEL_PT_MTC:
1748 intel_pt_calc_mtc_timestamp(decoder);
1749 if (decoder->period_type == INTEL_PT_PERIOD_MTC)
1750 decoder->state.type |= INTEL_PT_INSTRUCTION;
1751 break;
1752
1753 case INTEL_PT_CYC:
1754 intel_pt_calc_cyc_timestamp(decoder);
1755 break;
1756
1757 case INTEL_PT_VMCS:
1758 case INTEL_PT_MNT:
1759 case INTEL_PT_PAD:
1760 default:
1761 break;
1762 }
1763 }
1764out:
1765 decoder->in_psb = false;
1766
1767 return err;
1768}
1769
1770static int intel_pt_walk_fup_tip(struct intel_pt_decoder *decoder)
1771{
1772 int err;
1773
1774 if (decoder->tx_flags & INTEL_PT_ABORT_TX) {
1775 decoder->tx_flags = 0;
1776 decoder->state.flags &= ~INTEL_PT_IN_TX;
1777 decoder->state.flags |= INTEL_PT_ABORT_TX;
1778 } else {
1779 decoder->state.flags |= INTEL_PT_ASYNC;
1780 }
1781
1782 while (1) {
1783 err = intel_pt_get_next_packet(decoder);
1784 if (err)
1785 return err;
1786
1787 switch (decoder->packet.type) {
1788 case INTEL_PT_TNT:
1789 case INTEL_PT_FUP:
1790 case INTEL_PT_TRACESTOP:
1791 case INTEL_PT_PSB:
1792 case INTEL_PT_TSC:
1793 case INTEL_PT_TMA:
1794 case INTEL_PT_MODE_TSX:
1795 case INTEL_PT_BAD:
1796 case INTEL_PT_PSBEND:
1797 case INTEL_PT_PTWRITE:
1798 case INTEL_PT_PTWRITE_IP:
1799 case INTEL_PT_EXSTOP:
1800 case INTEL_PT_EXSTOP_IP:
1801 case INTEL_PT_MWAIT:
1802 case INTEL_PT_PWRE:
1803 case INTEL_PT_PWRX:
1804 case INTEL_PT_BBP:
1805 case INTEL_PT_BIP:
1806 case INTEL_PT_BEP:
1807 case INTEL_PT_BEP_IP:
1808 intel_pt_log("ERROR: Missing TIP after FUP\n");
1809 decoder->pkt_state = INTEL_PT_STATE_ERR3;
1810 decoder->pkt_step = 0;
1811 return -ENOENT;
1812
1813 case INTEL_PT_CBR:
1814 intel_pt_calc_cbr(decoder);
1815 break;
1816
1817 case INTEL_PT_OVF:
1818 return intel_pt_overflow(decoder);
1819
1820 case INTEL_PT_TIP_PGD:
1821 decoder->state.from_ip = decoder->ip;
1822 if (decoder->packet.count == 0) {
1823 decoder->state.to_ip = 0;
1824 } else {
1825 intel_pt_set_ip(decoder);
1826 decoder->state.to_ip = decoder->ip;
1827 }
1828 decoder->pge = false;
1829 decoder->continuous_period = false;
1830 decoder->state.type |= INTEL_PT_TRACE_END;
1831 return 0;
1832
1833 case INTEL_PT_TIP_PGE:
1834 decoder->pge = true;
1835 intel_pt_log("Omitting PGE ip " x64_fmt "\n",
1836 decoder->ip);
1837 decoder->state.from_ip = 0;
1838 if (decoder->packet.count == 0) {
1839 decoder->state.to_ip = 0;
1840 } else {
1841 intel_pt_set_ip(decoder);
1842 decoder->state.to_ip = decoder->ip;
1843 }
1844 decoder->state.type |= INTEL_PT_TRACE_BEGIN;
1845 intel_pt_mtc_cyc_cnt_pge(decoder);
1846 return 0;
1847
1848 case INTEL_PT_TIP:
1849 decoder->state.from_ip = decoder->ip;
1850 if (decoder->packet.count == 0) {
1851 decoder->state.to_ip = 0;
1852 } else {
1853 intel_pt_set_ip(decoder);
1854 decoder->state.to_ip = decoder->ip;
1855 }
1856 return 0;
1857
1858 case INTEL_PT_PIP:
1859 decoder->cr3 = decoder->packet.payload & (BIT63 - 1);
1860 break;
1861
1862 case INTEL_PT_MTC:
1863 intel_pt_calc_mtc_timestamp(decoder);
1864 if (decoder->period_type == INTEL_PT_PERIOD_MTC)
1865 decoder->state.type |= INTEL_PT_INSTRUCTION;
1866 break;
1867
1868 case INTEL_PT_CYC:
1869 intel_pt_calc_cyc_timestamp(decoder);
1870 break;
1871
1872 case INTEL_PT_MODE_EXEC:
1873 decoder->exec_mode = decoder->packet.payload;
1874 break;
1875
1876 case INTEL_PT_VMCS:
1877 case INTEL_PT_MNT:
1878 case INTEL_PT_PAD:
1879 break;
1880
1881 default:
1882 return intel_pt_bug(decoder);
1883 }
1884 }
1885}
1886
1887static int intel_pt_walk_trace(struct intel_pt_decoder *decoder)
1888{
1889 bool no_tip = false;
1890 int err;
1891
1892 while (1) {
1893 err = intel_pt_get_next_packet(decoder);
1894 if (err)
1895 return err;
1896next:
1897 switch (decoder->packet.type) {
1898 case INTEL_PT_TNT:
1899 if (!decoder->packet.count)
1900 break;
1901 decoder->tnt = decoder->packet;
1902 decoder->pkt_state = INTEL_PT_STATE_TNT;
1903 err = intel_pt_walk_tnt(decoder);
1904 if (err == -EAGAIN)
1905 break;
1906 return err;
1907
1908 case INTEL_PT_TIP_PGD:
1909 if (decoder->packet.count != 0)
1910 intel_pt_set_last_ip(decoder);
1911 decoder->pkt_state = INTEL_PT_STATE_TIP_PGD;
1912 return intel_pt_walk_tip(decoder);
1913
1914 case INTEL_PT_TIP_PGE: {
1915 decoder->pge = true;
1916 intel_pt_mtc_cyc_cnt_pge(decoder);
1917 if (decoder->packet.count == 0) {
1918 intel_pt_log_at("Skipping zero TIP.PGE",
1919 decoder->pos);
1920 break;
1921 }
1922 intel_pt_set_ip(decoder);
1923 decoder->state.from_ip = 0;
1924 decoder->state.to_ip = decoder->ip;
1925 decoder->state.type |= INTEL_PT_TRACE_BEGIN;
1926 return 0;
1927 }
1928
1929 case INTEL_PT_OVF:
1930 return intel_pt_overflow(decoder);
1931
1932 case INTEL_PT_TIP:
1933 if (decoder->packet.count != 0)
1934 intel_pt_set_last_ip(decoder);
1935 decoder->pkt_state = INTEL_PT_STATE_TIP;
1936 return intel_pt_walk_tip(decoder);
1937
1938 case INTEL_PT_FUP:
1939 if (decoder->packet.count == 0) {
1940 intel_pt_log_at("Skipping zero FUP",
1941 decoder->pos);
1942 no_tip = false;
1943 break;
1944 }
1945 intel_pt_set_last_ip(decoder);
1946 if (!decoder->branch_enable) {
1947 decoder->ip = decoder->last_ip;
1948 if (intel_pt_fup_event(decoder))
1949 return 0;
1950 no_tip = false;
1951 break;
1952 }
1953 if (decoder->set_fup_mwait)
1954 no_tip = true;
1955 if (no_tip)
1956 decoder->pkt_state = INTEL_PT_STATE_FUP_NO_TIP;
1957 else
1958 decoder->pkt_state = INTEL_PT_STATE_FUP;
1959 err = intel_pt_walk_fup(decoder);
1960 if (err != -EAGAIN)
1961 return err;
1962 if (no_tip) {
1963 no_tip = false;
1964 break;
1965 }
1966 return intel_pt_walk_fup_tip(decoder);
1967
1968 case INTEL_PT_TRACESTOP:
1969 decoder->pge = false;
1970 decoder->continuous_period = false;
1971 intel_pt_clear_tx_flags(decoder);
1972 decoder->have_tma = false;
1973 break;
1974
1975 case INTEL_PT_PSB:
1976 decoder->last_ip = 0;
1977 decoder->have_last_ip = true;
1978 intel_pt_clear_stack(&decoder->stack);
1979 err = intel_pt_walk_psbend(decoder);
1980 if (err == -EAGAIN)
1981 goto next;
1982 if (err)
1983 return err;
1984 /*
1985 * PSB+ CBR will not have changed but cater for the
1986 * possibility of another CBR change that gets caught up
1987 * in the PSB+.
1988 */
1989 if (decoder->cbr != decoder->cbr_seen) {
1990 decoder->state.type = 0;
1991 return 0;
1992 }
1993 break;
1994
1995 case INTEL_PT_PIP:
1996 decoder->cr3 = decoder->packet.payload & (BIT63 - 1);
1997 break;
1998
1999 case INTEL_PT_MTC:
2000 intel_pt_calc_mtc_timestamp(decoder);
2001 if (decoder->period_type != INTEL_PT_PERIOD_MTC)
2002 break;
2003 /*
2004 * Ensure that there has been an instruction since the
2005 * last MTC.
2006 */
2007 if (!decoder->mtc_insn)
2008 break;
2009 decoder->mtc_insn = false;
2010 /* Ensure that there is a timestamp */
2011 if (!decoder->timestamp)
2012 break;
2013 decoder->state.type = INTEL_PT_INSTRUCTION;
2014 decoder->state.from_ip = decoder->ip;
2015 decoder->state.to_ip = 0;
2016 decoder->mtc_insn = false;
2017 return 0;
2018
2019 case INTEL_PT_TSC:
2020 intel_pt_calc_tsc_timestamp(decoder);
2021 break;
2022
2023 case INTEL_PT_TMA:
2024 intel_pt_calc_tma(decoder);
2025 break;
2026
2027 case INTEL_PT_CYC:
2028 intel_pt_calc_cyc_timestamp(decoder);
2029 break;
2030
2031 case INTEL_PT_CBR:
2032 intel_pt_calc_cbr(decoder);
2033 if (decoder->cbr != decoder->cbr_seen) {
2034 decoder->state.type = 0;
2035 return 0;
2036 }
2037 break;
2038
2039 case INTEL_PT_MODE_EXEC:
2040 decoder->exec_mode = decoder->packet.payload;
2041 break;
2042
2043 case INTEL_PT_MODE_TSX:
2044 /* MODE_TSX need not be followed by FUP */
2045 if (!decoder->pge) {
2046 intel_pt_update_in_tx(decoder);
2047 break;
2048 }
2049 err = intel_pt_mode_tsx(decoder, &no_tip);
2050 if (err)
2051 return err;
2052 goto next;
2053
2054 case INTEL_PT_BAD: /* Does not happen */
2055 return intel_pt_bug(decoder);
2056
2057 case INTEL_PT_PSBEND:
2058 case INTEL_PT_VMCS:
2059 case INTEL_PT_MNT:
2060 case INTEL_PT_PAD:
2061 break;
2062
2063 case INTEL_PT_PTWRITE_IP:
2064 decoder->fup_ptw_payload = decoder->packet.payload;
2065 err = intel_pt_get_next_packet(decoder);
2066 if (err)
2067 return err;
2068 if (decoder->packet.type == INTEL_PT_FUP) {
2069 decoder->set_fup_ptw = true;
2070 no_tip = true;
2071 } else {
2072 intel_pt_log_at("ERROR: Missing FUP after PTWRITE",
2073 decoder->pos);
2074 }
2075 goto next;
2076
2077 case INTEL_PT_PTWRITE:
2078 decoder->state.type = INTEL_PT_PTW;
2079 decoder->state.from_ip = decoder->ip;
2080 decoder->state.to_ip = 0;
2081 decoder->state.ptw_payload = decoder->packet.payload;
2082 return 0;
2083
2084 case INTEL_PT_MWAIT:
2085 decoder->fup_mwait_payload = decoder->packet.payload;
2086 decoder->set_fup_mwait = true;
2087 break;
2088
2089 case INTEL_PT_PWRE:
2090 if (decoder->set_fup_mwait) {
2091 decoder->fup_pwre_payload =
2092 decoder->packet.payload;
2093 decoder->set_fup_pwre = true;
2094 break;
2095 }
2096 decoder->state.type = INTEL_PT_PWR_ENTRY;
2097 decoder->state.from_ip = decoder->ip;
2098 decoder->state.to_ip = 0;
2099 decoder->state.pwrx_payload = decoder->packet.payload;
2100 return 0;
2101
2102 case INTEL_PT_EXSTOP_IP:
2103 err = intel_pt_get_next_packet(decoder);
2104 if (err)
2105 return err;
2106 if (decoder->packet.type == INTEL_PT_FUP) {
2107 decoder->set_fup_exstop = true;
2108 no_tip = true;
2109 } else {
2110 intel_pt_log_at("ERROR: Missing FUP after EXSTOP",
2111 decoder->pos);
2112 }
2113 goto next;
2114
2115 case INTEL_PT_EXSTOP:
2116 decoder->state.type = INTEL_PT_EX_STOP;
2117 decoder->state.from_ip = decoder->ip;
2118 decoder->state.to_ip = 0;
2119 return 0;
2120
2121 case INTEL_PT_PWRX:
2122 decoder->state.type = INTEL_PT_PWR_EXIT;
2123 decoder->state.from_ip = decoder->ip;
2124 decoder->state.to_ip = 0;
2125 decoder->state.pwrx_payload = decoder->packet.payload;
2126 return 0;
2127
2128 case INTEL_PT_BBP:
2129 intel_pt_bbp(decoder);
2130 break;
2131
2132 case INTEL_PT_BIP:
2133 intel_pt_bip(decoder);
2134 break;
2135
2136 case INTEL_PT_BEP:
2137 decoder->state.type = INTEL_PT_BLK_ITEMS;
2138 decoder->state.from_ip = decoder->ip;
2139 decoder->state.to_ip = 0;
2140 return 0;
2141
2142 case INTEL_PT_BEP_IP:
2143 err = intel_pt_get_next_packet(decoder);
2144 if (err)
2145 return err;
2146 if (decoder->packet.type == INTEL_PT_FUP) {
2147 decoder->set_fup_bep = true;
2148 no_tip = true;
2149 } else {
2150 intel_pt_log_at("ERROR: Missing FUP after BEP",
2151 decoder->pos);
2152 }
2153 goto next;
2154
2155 default:
2156 return intel_pt_bug(decoder);
2157 }
2158 }
2159}
2160
2161static inline bool intel_pt_have_ip(struct intel_pt_decoder *decoder)
2162{
2163 return decoder->packet.count &&
2164 (decoder->have_last_ip || decoder->packet.count == 3 ||
2165 decoder->packet.count == 6);
2166}
2167
2168/* Walk PSB+ packets to get in sync. */
2169static int intel_pt_walk_psb(struct intel_pt_decoder *decoder)
2170{
2171 int err;
2172
2173 decoder->in_psb = true;
2174
2175 while (1) {
2176 err = intel_pt_get_next_packet(decoder);
2177 if (err)
2178 goto out;
2179
2180 switch (decoder->packet.type) {
2181 case INTEL_PT_TIP_PGD:
2182 decoder->continuous_period = false;
2183 __fallthrough;
2184 case INTEL_PT_TIP_PGE:
2185 case INTEL_PT_TIP:
2186 case INTEL_PT_PTWRITE:
2187 case INTEL_PT_PTWRITE_IP:
2188 case INTEL_PT_EXSTOP:
2189 case INTEL_PT_EXSTOP_IP:
2190 case INTEL_PT_MWAIT:
2191 case INTEL_PT_PWRE:
2192 case INTEL_PT_PWRX:
2193 case INTEL_PT_BBP:
2194 case INTEL_PT_BIP:
2195 case INTEL_PT_BEP:
2196 case INTEL_PT_BEP_IP:
2197 intel_pt_log("ERROR: Unexpected packet\n");
2198 err = -ENOENT;
2199 goto out;
2200
2201 case INTEL_PT_FUP:
2202 decoder->pge = true;
2203 if (intel_pt_have_ip(decoder)) {
2204 uint64_t current_ip = decoder->ip;
2205
2206 intel_pt_set_ip(decoder);
2207 if (current_ip)
2208 intel_pt_log_to("Setting IP",
2209 decoder->ip);
2210 }
2211 break;
2212
2213 case INTEL_PT_MTC:
2214 intel_pt_calc_mtc_timestamp(decoder);
2215 break;
2216
2217 case INTEL_PT_TSC:
2218 intel_pt_calc_tsc_timestamp(decoder);
2219 break;
2220
2221 case INTEL_PT_TMA:
2222 intel_pt_calc_tma(decoder);
2223 break;
2224
2225 case INTEL_PT_CYC:
2226 intel_pt_calc_cyc_timestamp(decoder);
2227 break;
2228
2229 case INTEL_PT_CBR:
2230 intel_pt_calc_cbr(decoder);
2231 break;
2232
2233 case INTEL_PT_PIP:
2234 decoder->cr3 = decoder->packet.payload & (BIT63 - 1);
2235 break;
2236
2237 case INTEL_PT_MODE_EXEC:
2238 decoder->exec_mode = decoder->packet.payload;
2239 break;
2240
2241 case INTEL_PT_MODE_TSX:
2242 intel_pt_update_in_tx(decoder);
2243 break;
2244
2245 case INTEL_PT_TRACESTOP:
2246 decoder->pge = false;
2247 decoder->continuous_period = false;
2248 intel_pt_clear_tx_flags(decoder);
2249 __fallthrough;
2250
2251 case INTEL_PT_TNT:
2252 decoder->have_tma = false;
2253 intel_pt_log("ERROR: Unexpected packet\n");
2254 if (decoder->ip)
2255 decoder->pkt_state = INTEL_PT_STATE_ERR4;
2256 else
2257 decoder->pkt_state = INTEL_PT_STATE_ERR3;
2258 err = -ENOENT;
2259 goto out;
2260
2261 case INTEL_PT_BAD: /* Does not happen */
2262 err = intel_pt_bug(decoder);
2263 goto out;
2264
2265 case INTEL_PT_OVF:
2266 err = intel_pt_overflow(decoder);
2267 goto out;
2268
2269 case INTEL_PT_PSBEND:
2270 err = 0;
2271 goto out;
2272
2273 case INTEL_PT_PSB:
2274 case INTEL_PT_VMCS:
2275 case INTEL_PT_MNT:
2276 case INTEL_PT_PAD:
2277 default:
2278 break;
2279 }
2280 }
2281out:
2282 decoder->in_psb = false;
2283
2284 return err;
2285}
2286
2287static int intel_pt_walk_to_ip(struct intel_pt_decoder *decoder)
2288{
2289 int err;
2290
2291 while (1) {
2292 err = intel_pt_get_next_packet(decoder);
2293 if (err)
2294 return err;
2295
2296 switch (decoder->packet.type) {
2297 case INTEL_PT_TIP_PGD:
2298 decoder->continuous_period = false;
2299 decoder->pge = false;
2300 if (intel_pt_have_ip(decoder))
2301 intel_pt_set_ip(decoder);
2302 if (!decoder->ip)
2303 break;
2304 decoder->state.type |= INTEL_PT_TRACE_END;
2305 return 0;
2306
2307 case INTEL_PT_TIP_PGE:
2308 decoder->pge = true;
2309 intel_pt_mtc_cyc_cnt_pge(decoder);
2310 if (intel_pt_have_ip(decoder))
2311 intel_pt_set_ip(decoder);
2312 if (!decoder->ip)
2313 break;
2314 decoder->state.type |= INTEL_PT_TRACE_BEGIN;
2315 return 0;
2316
2317 case INTEL_PT_TIP:
2318 decoder->pge = true;
2319 if (intel_pt_have_ip(decoder))
2320 intel_pt_set_ip(decoder);
2321 if (!decoder->ip)
2322 break;
2323 return 0;
2324
2325 case INTEL_PT_FUP:
2326 if (intel_pt_have_ip(decoder))
2327 intel_pt_set_ip(decoder);
2328 if (decoder->ip)
2329 return 0;
2330 break;
2331
2332 case INTEL_PT_MTC:
2333 intel_pt_calc_mtc_timestamp(decoder);
2334 break;
2335
2336 case INTEL_PT_TSC:
2337 intel_pt_calc_tsc_timestamp(decoder);
2338 break;
2339
2340 case INTEL_PT_TMA:
2341 intel_pt_calc_tma(decoder);
2342 break;
2343
2344 case INTEL_PT_CYC:
2345 intel_pt_calc_cyc_timestamp(decoder);
2346 break;
2347
2348 case INTEL_PT_CBR:
2349 intel_pt_calc_cbr(decoder);
2350 break;
2351
2352 case INTEL_PT_PIP:
2353 decoder->cr3 = decoder->packet.payload & (BIT63 - 1);
2354 break;
2355
2356 case INTEL_PT_MODE_EXEC:
2357 decoder->exec_mode = decoder->packet.payload;
2358 break;
2359
2360 case INTEL_PT_MODE_TSX:
2361 intel_pt_update_in_tx(decoder);
2362 break;
2363
2364 case INTEL_PT_OVF:
2365 return intel_pt_overflow(decoder);
2366
2367 case INTEL_PT_BAD: /* Does not happen */
2368 return intel_pt_bug(decoder);
2369
2370 case INTEL_PT_TRACESTOP:
2371 decoder->pge = false;
2372 decoder->continuous_period = false;
2373 intel_pt_clear_tx_flags(decoder);
2374 decoder->have_tma = false;
2375 break;
2376
2377 case INTEL_PT_PSB:
2378 decoder->last_ip = 0;
2379 decoder->have_last_ip = true;
2380 intel_pt_clear_stack(&decoder->stack);
2381 err = intel_pt_walk_psb(decoder);
2382 if (err)
2383 return err;
2384 if (decoder->ip) {
2385 /* Do not have a sample */
2386 decoder->state.type = 0;
2387 return 0;
2388 }
2389 break;
2390
2391 case INTEL_PT_TNT:
2392 case INTEL_PT_PSBEND:
2393 case INTEL_PT_VMCS:
2394 case INTEL_PT_MNT:
2395 case INTEL_PT_PAD:
2396 case INTEL_PT_PTWRITE:
2397 case INTEL_PT_PTWRITE_IP:
2398 case INTEL_PT_EXSTOP:
2399 case INTEL_PT_EXSTOP_IP:
2400 case INTEL_PT_MWAIT:
2401 case INTEL_PT_PWRE:
2402 case INTEL_PT_PWRX:
2403 case INTEL_PT_BBP:
2404 case INTEL_PT_BIP:
2405 case INTEL_PT_BEP:
2406 case INTEL_PT_BEP_IP:
2407 default:
2408 break;
2409 }
2410 }
2411}
2412
2413static int intel_pt_sync_ip(struct intel_pt_decoder *decoder)
2414{
2415 int err;
2416
2417 decoder->set_fup_tx_flags = false;
2418 decoder->set_fup_ptw = false;
2419 decoder->set_fup_mwait = false;
2420 decoder->set_fup_pwre = false;
2421 decoder->set_fup_exstop = false;
2422 decoder->set_fup_bep = false;
2423
2424 if (!decoder->branch_enable) {
2425 decoder->pkt_state = INTEL_PT_STATE_IN_SYNC;
2426 decoder->overflow = false;
2427 decoder->state.type = 0; /* Do not have a sample */
2428 return 0;
2429 }
2430
2431 intel_pt_log("Scanning for full IP\n");
2432 err = intel_pt_walk_to_ip(decoder);
2433 if (err)
2434 return err;
2435
2436 decoder->pkt_state = INTEL_PT_STATE_IN_SYNC;
2437 decoder->overflow = false;
2438
2439 decoder->state.from_ip = 0;
2440 decoder->state.to_ip = decoder->ip;
2441 intel_pt_log_to("Setting IP", decoder->ip);
2442
2443 return 0;
2444}
2445
2446static int intel_pt_part_psb(struct intel_pt_decoder *decoder)
2447{
2448 const unsigned char *end = decoder->buf + decoder->len;
2449 size_t i;
2450
2451 for (i = INTEL_PT_PSB_LEN - 1; i; i--) {
2452 if (i > decoder->len)
2453 continue;
2454 if (!memcmp(end - i, INTEL_PT_PSB_STR, i))
2455 return i;
2456 }
2457 return 0;
2458}
2459
2460static int intel_pt_rest_psb(struct intel_pt_decoder *decoder, int part_psb)
2461{
2462 size_t rest_psb = INTEL_PT_PSB_LEN - part_psb;
2463 const char *psb = INTEL_PT_PSB_STR;
2464
2465 if (rest_psb > decoder->len ||
2466 memcmp(decoder->buf, psb + part_psb, rest_psb))
2467 return 0;
2468
2469 return rest_psb;
2470}
2471
2472static int intel_pt_get_split_psb(struct intel_pt_decoder *decoder,
2473 int part_psb)
2474{
2475 int rest_psb, ret;
2476
2477 decoder->pos += decoder->len;
2478 decoder->len = 0;
2479
2480 ret = intel_pt_get_next_data(decoder, false);
2481 if (ret)
2482 return ret;
2483
2484 rest_psb = intel_pt_rest_psb(decoder, part_psb);
2485 if (!rest_psb)
2486 return 0;
2487
2488 decoder->pos -= part_psb;
2489 decoder->next_buf = decoder->buf + rest_psb;
2490 decoder->next_len = decoder->len - rest_psb;
2491 memcpy(decoder->temp_buf, INTEL_PT_PSB_STR, INTEL_PT_PSB_LEN);
2492 decoder->buf = decoder->temp_buf;
2493 decoder->len = INTEL_PT_PSB_LEN;
2494
2495 return 0;
2496}
2497
2498static int intel_pt_scan_for_psb(struct intel_pt_decoder *decoder)
2499{
2500 unsigned char *next;
2501 int ret;
2502
2503 intel_pt_log("Scanning for PSB\n");
2504 while (1) {
2505 if (!decoder->len) {
2506 ret = intel_pt_get_next_data(decoder, false);
2507 if (ret)
2508 return ret;
2509 }
2510
2511 next = memmem(decoder->buf, decoder->len, INTEL_PT_PSB_STR,
2512 INTEL_PT_PSB_LEN);
2513 if (!next) {
2514 int part_psb;
2515
2516 part_psb = intel_pt_part_psb(decoder);
2517 if (part_psb) {
2518 ret = intel_pt_get_split_psb(decoder, part_psb);
2519 if (ret)
2520 return ret;
2521 } else {
2522 decoder->pos += decoder->len;
2523 decoder->len = 0;
2524 }
2525 continue;
2526 }
2527
2528 decoder->pkt_step = next - decoder->buf;
2529 return intel_pt_get_next_packet(decoder);
2530 }
2531}
2532
2533static int intel_pt_sync(struct intel_pt_decoder *decoder)
2534{
2535 int err;
2536
2537 decoder->pge = false;
2538 decoder->continuous_period = false;
2539 decoder->have_last_ip = false;
2540 decoder->last_ip = 0;
2541 decoder->ip = 0;
2542 intel_pt_clear_stack(&decoder->stack);
2543
2544 err = intel_pt_scan_for_psb(decoder);
2545 if (err)
2546 return err;
2547
2548 decoder->have_last_ip = true;
2549 decoder->pkt_state = INTEL_PT_STATE_NO_IP;
2550
2551 err = intel_pt_walk_psb(decoder);
2552 if (err)
2553 return err;
2554
2555 if (decoder->ip) {
2556 decoder->state.type = 0; /* Do not have a sample */
2557 decoder->pkt_state = INTEL_PT_STATE_IN_SYNC;
2558 } else {
2559 return intel_pt_sync_ip(decoder);
2560 }
2561
2562 return 0;
2563}
2564
2565static uint64_t intel_pt_est_timestamp(struct intel_pt_decoder *decoder)
2566{
2567 uint64_t est = decoder->sample_insn_cnt << 1;
2568
2569 if (!decoder->cbr || !decoder->max_non_turbo_ratio)
2570 goto out;
2571
2572 est *= decoder->max_non_turbo_ratio;
2573 est /= decoder->cbr;
2574out:
2575 return decoder->sample_timestamp + est;
2576}
2577
2578const struct intel_pt_state *intel_pt_decode(struct intel_pt_decoder *decoder)
2579{
2580 int err;
2581
2582 do {
2583 decoder->state.type = INTEL_PT_BRANCH;
2584 decoder->state.flags = 0;
2585
2586 switch (decoder->pkt_state) {
2587 case INTEL_PT_STATE_NO_PSB:
2588 err = intel_pt_sync(decoder);
2589 break;
2590 case INTEL_PT_STATE_NO_IP:
2591 decoder->have_last_ip = false;
2592 decoder->last_ip = 0;
2593 decoder->ip = 0;
2594 __fallthrough;
2595 case INTEL_PT_STATE_ERR_RESYNC:
2596 err = intel_pt_sync_ip(decoder);
2597 break;
2598 case INTEL_PT_STATE_IN_SYNC:
2599 err = intel_pt_walk_trace(decoder);
2600 break;
2601 case INTEL_PT_STATE_TNT:
2602 case INTEL_PT_STATE_TNT_CONT:
2603 err = intel_pt_walk_tnt(decoder);
2604 if (err == -EAGAIN)
2605 err = intel_pt_walk_trace(decoder);
2606 break;
2607 case INTEL_PT_STATE_TIP:
2608 case INTEL_PT_STATE_TIP_PGD:
2609 err = intel_pt_walk_tip(decoder);
2610 break;
2611 case INTEL_PT_STATE_FUP:
2612 err = intel_pt_walk_fup(decoder);
2613 if (err == -EAGAIN)
2614 err = intel_pt_walk_fup_tip(decoder);
2615 break;
2616 case INTEL_PT_STATE_FUP_NO_TIP:
2617 err = intel_pt_walk_fup(decoder);
2618 if (err == -EAGAIN)
2619 err = intel_pt_walk_trace(decoder);
2620 break;
2621 default:
2622 err = intel_pt_bug(decoder);
2623 break;
2624 }
2625 } while (err == -ENOLINK);
2626
2627 if (err) {
2628 decoder->state.err = intel_pt_ext_err(err);
2629 decoder->state.from_ip = decoder->ip;
2630 intel_pt_update_sample_time(decoder);
2631 decoder->sample_tot_cyc_cnt = decoder->tot_cyc_cnt;
2632 } else {
2633 decoder->state.err = 0;
2634 if (decoder->cbr != decoder->cbr_seen) {
2635 decoder->cbr_seen = decoder->cbr;
2636 if (!decoder->state.type) {
2637 decoder->state.from_ip = decoder->ip;
2638 decoder->state.to_ip = 0;
2639 }
2640 decoder->state.type |= INTEL_PT_CBR_CHG;
2641 decoder->state.cbr_payload = decoder->cbr_payload;
2642 decoder->state.cbr = decoder->cbr;
2643 }
2644 if (intel_pt_sample_time(decoder->pkt_state)) {
2645 intel_pt_update_sample_time(decoder);
2646 if (decoder->sample_cyc) {
2647 decoder->sample_tot_cyc_cnt = decoder->tot_cyc_cnt;
2648 decoder->state.flags |= INTEL_PT_SAMPLE_IPC;
2649 decoder->sample_cyc = false;
2650 }
2651 }
2652 /*
2653 * When using only TSC/MTC to compute cycles, IPC can be
2654 * sampled as soon as the cycle count changes.
2655 */
2656 if (!decoder->have_cyc)
2657 decoder->state.flags |= INTEL_PT_SAMPLE_IPC;
2658 }
2659
2660 decoder->state.timestamp = decoder->sample_timestamp;
2661 decoder->state.est_timestamp = intel_pt_est_timestamp(decoder);
2662 decoder->state.cr3 = decoder->cr3;
2663 decoder->state.tot_insn_cnt = decoder->tot_insn_cnt;
2664 decoder->state.tot_cyc_cnt = decoder->sample_tot_cyc_cnt;
2665
2666 return &decoder->state;
2667}
2668
2669/**
2670 * intel_pt_next_psb - move buffer pointer to the start of the next PSB packet.
2671 * @buf: pointer to buffer pointer
2672 * @len: size of buffer
2673 *
2674 * Updates the buffer pointer to point to the start of the next PSB packet if
2675 * there is one, otherwise the buffer pointer is unchanged. If @buf is updated,
2676 * @len is adjusted accordingly.
2677 *
2678 * Return: %true if a PSB packet is found, %false otherwise.
2679 */
2680static bool intel_pt_next_psb(unsigned char **buf, size_t *len)
2681{
2682 unsigned char *next;
2683
2684 next = memmem(*buf, *len, INTEL_PT_PSB_STR, INTEL_PT_PSB_LEN);
2685 if (next) {
2686 *len -= next - *buf;
2687 *buf = next;
2688 return true;
2689 }
2690 return false;
2691}
2692
2693/**
2694 * intel_pt_step_psb - move buffer pointer to the start of the following PSB
2695 * packet.
2696 * @buf: pointer to buffer pointer
2697 * @len: size of buffer
2698 *
2699 * Updates the buffer pointer to point to the start of the following PSB packet
2700 * (skipping the PSB at @buf itself) if there is one, otherwise the buffer
2701 * pointer is unchanged. If @buf is updated, @len is adjusted accordingly.
2702 *
2703 * Return: %true if a PSB packet is found, %false otherwise.
2704 */
2705static bool intel_pt_step_psb(unsigned char **buf, size_t *len)
2706{
2707 unsigned char *next;
2708
2709 if (!*len)
2710 return false;
2711
2712 next = memmem(*buf + 1, *len - 1, INTEL_PT_PSB_STR, INTEL_PT_PSB_LEN);
2713 if (next) {
2714 *len -= next - *buf;
2715 *buf = next;
2716 return true;
2717 }
2718 return false;
2719}
2720
2721/**
2722 * intel_pt_last_psb - find the last PSB packet in a buffer.
2723 * @buf: buffer
2724 * @len: size of buffer
2725 *
2726 * This function finds the last PSB in a buffer.
2727 *
2728 * Return: A pointer to the last PSB in @buf if found, %NULL otherwise.
2729 */
2730static unsigned char *intel_pt_last_psb(unsigned char *buf, size_t len)
2731{
2732 const char *n = INTEL_PT_PSB_STR;
2733 unsigned char *p;
2734 size_t k;
2735
2736 if (len < INTEL_PT_PSB_LEN)
2737 return NULL;
2738
2739 k = len - INTEL_PT_PSB_LEN + 1;
2740 while (1) {
2741 p = memrchr(buf, n[0], k);
2742 if (!p)
2743 return NULL;
2744 if (!memcmp(p + 1, n + 1, INTEL_PT_PSB_LEN - 1))
2745 return p;
2746 k = p - buf;
2747 if (!k)
2748 return NULL;
2749 }
2750}
2751
2752/**
2753 * intel_pt_next_tsc - find and return next TSC.
2754 * @buf: buffer
2755 * @len: size of buffer
2756 * @tsc: TSC value returned
2757 * @rem: returns remaining size when TSC is found
2758 *
2759 * Find a TSC packet in @buf and return the TSC value. This function assumes
2760 * that @buf starts at a PSB and that PSB+ will contain TSC and so stops if a
2761 * PSBEND packet is found.
2762 *
2763 * Return: %true if TSC is found, false otherwise.
2764 */
2765static bool intel_pt_next_tsc(unsigned char *buf, size_t len, uint64_t *tsc,
2766 size_t *rem)
2767{
2768 enum intel_pt_pkt_ctx ctx = INTEL_PT_NO_CTX;
2769 struct intel_pt_pkt packet;
2770 int ret;
2771
2772 while (len) {
2773 ret = intel_pt_get_packet(buf, len, &packet, &ctx);
2774 if (ret <= 0)
2775 return false;
2776 if (packet.type == INTEL_PT_TSC) {
2777 *tsc = packet.payload;
2778 *rem = len;
2779 return true;
2780 }
2781 if (packet.type == INTEL_PT_PSBEND)
2782 return false;
2783 buf += ret;
2784 len -= ret;
2785 }
2786 return false;
2787}
2788
2789/**
2790 * intel_pt_tsc_cmp - compare 7-byte TSCs.
2791 * @tsc1: first TSC to compare
2792 * @tsc2: second TSC to compare
2793 *
2794 * This function compares 7-byte TSC values allowing for the possibility that
2795 * TSC wrapped around. Generally it is not possible to know if TSC has wrapped
2796 * around so for that purpose this function assumes the absolute difference is
2797 * less than half the maximum difference.
2798 *
2799 * Return: %-1 if @tsc1 is before @tsc2, %0 if @tsc1 == @tsc2, %1 if @tsc1 is
2800 * after @tsc2.
2801 */
2802static int intel_pt_tsc_cmp(uint64_t tsc1, uint64_t tsc2)
2803{
2804 const uint64_t halfway = (1ULL << 55);
2805
2806 if (tsc1 == tsc2)
2807 return 0;
2808
2809 if (tsc1 < tsc2) {
2810 if (tsc2 - tsc1 < halfway)
2811 return -1;
2812 else
2813 return 1;
2814 } else {
2815 if (tsc1 - tsc2 < halfway)
2816 return 1;
2817 else
2818 return -1;
2819 }
2820}
2821
2822#define MAX_PADDING (PERF_AUXTRACE_RECORD_ALIGNMENT - 1)
2823
2824/**
2825 * adj_for_padding - adjust overlap to account for padding.
2826 * @buf_b: second buffer
2827 * @buf_a: first buffer
2828 * @len_a: size of first buffer
2829 *
2830 * @buf_a might have up to 7 bytes of padding appended. Adjust the overlap
2831 * accordingly.
2832 *
2833 * Return: A pointer into @buf_b from where non-overlapped data starts
2834 */
2835static unsigned char *adj_for_padding(unsigned char *buf_b,
2836 unsigned char *buf_a, size_t len_a)
2837{
2838 unsigned char *p = buf_b - MAX_PADDING;
2839 unsigned char *q = buf_a + len_a - MAX_PADDING;
2840 int i;
2841
2842 for (i = MAX_PADDING; i; i--, p++, q++) {
2843 if (*p != *q)
2844 break;
2845 }
2846
2847 return p;
2848}
2849
2850/**
2851 * intel_pt_find_overlap_tsc - determine start of non-overlapped trace data
2852 * using TSC.
2853 * @buf_a: first buffer
2854 * @len_a: size of first buffer
2855 * @buf_b: second buffer
2856 * @len_b: size of second buffer
2857 * @consecutive: returns true if there is data in buf_b that is consecutive
2858 * to buf_a
2859 *
2860 * If the trace contains TSC we can look at the last TSC of @buf_a and the
2861 * first TSC of @buf_b in order to determine if the buffers overlap, and then
2862 * walk forward in @buf_b until a later TSC is found. A precondition is that
2863 * @buf_a and @buf_b are positioned at a PSB.
2864 *
2865 * Return: A pointer into @buf_b from where non-overlapped data starts, or
2866 * @buf_b + @len_b if there is no non-overlapped data.
2867 */
2868static unsigned char *intel_pt_find_overlap_tsc(unsigned char *buf_a,
2869 size_t len_a,
2870 unsigned char *buf_b,
2871 size_t len_b, bool *consecutive)
2872{
2873 uint64_t tsc_a, tsc_b;
2874 unsigned char *p;
2875 size_t len, rem_a, rem_b;
2876
2877 p = intel_pt_last_psb(buf_a, len_a);
2878 if (!p)
2879 return buf_b; /* No PSB in buf_a => no overlap */
2880
2881 len = len_a - (p - buf_a);
2882 if (!intel_pt_next_tsc(p, len, &tsc_a, &rem_a)) {
2883 /* The last PSB+ in buf_a is incomplete, so go back one more */
2884 len_a -= len;
2885 p = intel_pt_last_psb(buf_a, len_a);
2886 if (!p)
2887 return buf_b; /* No full PSB+ => assume no overlap */
2888 len = len_a - (p - buf_a);
2889 if (!intel_pt_next_tsc(p, len, &tsc_a, &rem_a))
2890 return buf_b; /* No TSC in buf_a => assume no overlap */
2891 }
2892
2893 while (1) {
2894 /* Ignore PSB+ with no TSC */
2895 if (intel_pt_next_tsc(buf_b, len_b, &tsc_b, &rem_b)) {
2896 int cmp = intel_pt_tsc_cmp(tsc_a, tsc_b);
2897
2898 /* Same TSC, so buffers are consecutive */
2899 if (!cmp && rem_b >= rem_a) {
2900 unsigned char *start;
2901
2902 *consecutive = true;
2903 start = buf_b + len_b - (rem_b - rem_a);
2904 return adj_for_padding(start, buf_a, len_a);
2905 }
2906 if (cmp < 0)
2907 return buf_b; /* tsc_a < tsc_b => no overlap */
2908 }
2909
2910 if (!intel_pt_step_psb(&buf_b, &len_b))
2911 return buf_b + len_b; /* No PSB in buf_b => no data */
2912 }
2913}
2914
2915/**
2916 * intel_pt_find_overlap - determine start of non-overlapped trace data.
2917 * @buf_a: first buffer
2918 * @len_a: size of first buffer
2919 * @buf_b: second buffer
2920 * @len_b: size of second buffer
2921 * @have_tsc: can use TSC packets to detect overlap
2922 * @consecutive: returns true if there is data in buf_b that is consecutive
2923 * to buf_a
2924 *
2925 * When trace samples or snapshots are recorded there is the possibility that
2926 * the data overlaps. Note that, for the purposes of decoding, data is only
2927 * useful if it begins with a PSB packet.
2928 *
2929 * Return: A pointer into @buf_b from where non-overlapped data starts, or
2930 * @buf_b + @len_b if there is no non-overlapped data.
2931 */
2932unsigned char *intel_pt_find_overlap(unsigned char *buf_a, size_t len_a,
2933 unsigned char *buf_b, size_t len_b,
2934 bool have_tsc, bool *consecutive)
2935{
2936 unsigned char *found;
2937
2938 /* Buffer 'b' must start at PSB so throw away everything before that */
2939 if (!intel_pt_next_psb(&buf_b, &len_b))
2940 return buf_b + len_b; /* No PSB */
2941
2942 if (!intel_pt_next_psb(&buf_a, &len_a))
2943 return buf_b; /* No overlap */
2944
2945 if (have_tsc) {
2946 found = intel_pt_find_overlap_tsc(buf_a, len_a, buf_b, len_b,
2947 consecutive);
2948 if (found)
2949 return found;
2950 }
2951
2952 /*
2953 * Buffer 'b' cannot end within buffer 'a' so, for comparison purposes,
2954 * we can ignore the first part of buffer 'a'.
2955 */
2956 while (len_b < len_a) {
2957 if (!intel_pt_step_psb(&buf_a, &len_a))
2958 return buf_b; /* No overlap */
2959 }
2960
2961 /* Now len_b >= len_a */
2962 while (1) {
2963 /* Potential overlap so check the bytes */
2964 found = memmem(buf_a, len_a, buf_b, len_a);
2965 if (found) {
2966 *consecutive = true;
2967 return adj_for_padding(buf_b + len_a, buf_a, len_a);
2968 }
2969
2970 /* Try again at next PSB in buffer 'a' */
2971 if (!intel_pt_step_psb(&buf_a, &len_a))
2972 return buf_b; /* No overlap */
2973 }
2974}
2975
2976/**
2977 * struct fast_forward_data - data used by intel_pt_ff_cb().
2978 * @timestamp: timestamp to fast forward towards
2979 * @buf_timestamp: buffer timestamp of last buffer with trace data earlier than
2980 * the fast forward timestamp.
2981 */
2982struct fast_forward_data {
2983 uint64_t timestamp;
2984 uint64_t buf_timestamp;
2985};
2986
2987/**
2988 * intel_pt_ff_cb - fast forward lookahead callback.
2989 * @buffer: Intel PT trace buffer
2990 * @data: opaque pointer to fast forward data (struct fast_forward_data)
2991 *
2992 * Determine if @buffer trace is past the fast forward timestamp.
2993 *
2994 * Return: 1 (stop lookahead) if @buffer trace is past the fast forward
2995 * timestamp, and 0 otherwise.
2996 */
2997static int intel_pt_ff_cb(struct intel_pt_buffer *buffer, void *data)
2998{
2999 struct fast_forward_data *d = data;
3000 unsigned char *buf;
3001 uint64_t tsc;
3002 size_t rem;
3003 size_t len;
3004
3005 buf = (unsigned char *)buffer->buf;
3006 len = buffer->len;
3007
3008 if (!intel_pt_next_psb(&buf, &len) ||
3009 !intel_pt_next_tsc(buf, len, &tsc, &rem))
3010 return 0;
3011
3012 tsc = intel_pt_8b_tsc(tsc, buffer->ref_timestamp);
3013
3014 intel_pt_log("Buffer 1st timestamp " x64_fmt " ref timestamp " x64_fmt "\n",
3015 tsc, buffer->ref_timestamp);
3016
3017 /*
3018 * If the buffer contains a timestamp earlier that the fast forward
3019 * timestamp, then record it, else stop.
3020 */
3021 if (tsc < d->timestamp)
3022 d->buf_timestamp = buffer->ref_timestamp;
3023 else
3024 return 1;
3025
3026 return 0;
3027}
3028
3029/**
3030 * intel_pt_fast_forward - reposition decoder forwards.
3031 * @decoder: Intel PT decoder
3032 * @timestamp: timestamp to fast forward towards
3033 *
3034 * Reposition decoder at the last PSB with a timestamp earlier than @timestamp.
3035 *
3036 * Return: 0 on success or negative error code on failure.
3037 */
3038int intel_pt_fast_forward(struct intel_pt_decoder *decoder, uint64_t timestamp)
3039{
3040 struct fast_forward_data d = { .timestamp = timestamp };
3041 unsigned char *buf;
3042 size_t len;
3043 int err;
3044
3045 intel_pt_log("Fast forward towards timestamp " x64_fmt "\n", timestamp);
3046
3047 /* Find buffer timestamp of buffer to fast forward to */
3048 err = decoder->lookahead(decoder->data, intel_pt_ff_cb, &d);
3049 if (err < 0)
3050 return err;
3051
3052 /* Walk to buffer with same buffer timestamp */
3053 if (d.buf_timestamp) {
3054 do {
3055 decoder->pos += decoder->len;
3056 decoder->len = 0;
3057 err = intel_pt_get_next_data(decoder, true);
3058 /* -ENOLINK means non-consecutive trace */
3059 if (err && err != -ENOLINK)
3060 return err;
3061 } while (decoder->buf_timestamp != d.buf_timestamp);
3062 }
3063
3064 if (!decoder->buf)
3065 return 0;
3066
3067 buf = (unsigned char *)decoder->buf;
3068 len = decoder->len;
3069
3070 if (!intel_pt_next_psb(&buf, &len))
3071 return 0;
3072
3073 /*
3074 * Walk PSBs while the PSB timestamp is less than the fast forward
3075 * timestamp.
3076 */
3077 do {
3078 uint64_t tsc;
3079 size_t rem;
3080
3081 if (!intel_pt_next_tsc(buf, len, &tsc, &rem))
3082 break;
3083 tsc = intel_pt_8b_tsc(tsc, decoder->buf_timestamp);
3084 /*
3085 * A TSC packet can slip past MTC packets but, after fast
3086 * forward, decoding starts at the TSC timestamp. That means
3087 * the timestamps may not be exactly the same as the timestamps
3088 * that would have been decoded without fast forward.
3089 */
3090 if (tsc < timestamp) {
3091 intel_pt_log("Fast forward to next PSB timestamp " x64_fmt "\n", tsc);
3092 decoder->pos += decoder->len - len;
3093 decoder->buf = buf;
3094 decoder->len = len;
3095 intel_pt_reposition(decoder);
3096 } else {
3097 break;
3098 }
3099 } while (intel_pt_step_psb(&buf, &len));
3100
3101 return 0;
3102}