1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427
|
//===-- LibiptDecoder.cpp --======-----------------------------------------===//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===----------------------------------------------------------------------===//
#include "LibiptDecoder.h"
#include "TraceIntelPT.h"
#include "lldb/Target/Process.h"
using namespace lldb;
using namespace lldb_private;
using namespace lldb_private::trace_intel_pt;
using namespace llvm;
/// Class that decodes a raw buffer for a single thread using the low level
/// libipt library.
///
/// Throughout this code, the status of the decoder will be used to identify
/// events needed to be processed or errors in the decoder. The values can be
/// - negative: actual errors
/// - positive or zero: not an error, but a list of bits signaling the status
/// of the decoder, e.g. whether there are events that need to be decoded or
/// not.
class LibiptDecoder {
public:
/// \param[in] decoder
/// A well configured decoder. Using the current state of that decoder,
/// decoding will start at its next valid PSB. It's not assumed that the
/// decoder is already pointing at a valid PSB.
///
/// \param[in] decoded_thread
/// A \a DecodedThread object where the decoded instructions will be
/// appended to. It might have already some instructions.
LibiptDecoder(pt_insn_decoder &decoder, DecodedThread &decoded_thread)
: m_decoder(decoder), m_decoded_thread(decoded_thread) {}
/// Decode all the instructions until the end of the trace.
/// The decoding flow is based on
/// https://github.com/intel/libipt/blob/master/doc/howto_libipt.md#the-instruction-flow-decode-loop.
void DecodeUntilEndOfTrace() {
// Multiple loops indicate gaps in the trace, which are found by the inner
// call to DecodeInstructionsAndEvents.
while (true) {
int status = pt_insn_sync_forward(&m_decoder);
if (IsLibiptError(status)) {
m_decoded_thread.AppendError(IntelPTError(status));
break;
}
DecodeInstructionsAndEvents(status);
}
}
/// Decode all the instructions that belong to the same PSB packet given its
/// offset.
void DecodePSB(uint64_t psb_offset) {
int status = pt_insn_sync_set(&m_decoder, psb_offset);
if (IsLibiptError(status)) {
m_decoded_thread.AppendError(IntelPTError(status));
return;
}
DecodeInstructionsAndEvents(status, /*stop_on_psb_change=*/true);
}
private:
/// Decode all the instructions and events until an error is found, the end
/// of the trace is reached, or optionally a new PSB is reached.
///
/// \param[in] status
/// The status that was result of synchronizing to the most recent PSB.
///
/// \param[in] stop_on_psb_change
/// If \b true, decoding stops if a different PSB is reached.
void DecodeInstructionsAndEvents(int status,
bool stop_on_psb_change = false) {
uint64_t psb_offset;
pt_insn_get_sync_offset(&m_decoder,
&psb_offset); // this can't fail because we got here
while (ProcessPTEvents(status)) {
if (stop_on_psb_change) {
uint64_t cur_psb_offset;
// this can't fail because we got here
pt_insn_get_sync_offset(&m_decoder, &cur_psb_offset);
if (cur_psb_offset != psb_offset)
break;
}
// The status returned by pt_insn_next will need to be processed
// by ProcessPTEvents in the next loop if it is not an error.
pt_insn insn;
std::memset(&insn, 0, sizeof insn);
if (IsLibiptError(status =
pt_insn_next(&m_decoder, &insn, sizeof(insn)))) {
m_decoded_thread.AppendError(IntelPTError(status, insn.ip));
break;
}
m_decoded_thread.AppendInstruction(insn);
}
}
/// Move the decoder forward to the next synchronization point (i.e. next PSB
/// packet).
///
/// Once the decoder is at that synchronization point, it can start decoding
/// instructions.
///
/// If errors are found, they will be appended to the trace.
///
/// \return
/// The libipt decoder status after moving to the next PSB. Negative if
/// no PSB was found.
int FindNextSynchronizationPoint() {
// Try to sync the decoder. If it fails, then get the decoder_offset and
// try to sync again from the next synchronization point. If the
// new_decoder_offset is same as decoder_offset then we can't move to the
// next synchronization point. Otherwise, keep resyncing until either end
// of trace stream (eos) is reached or pt_insn_sync_forward() passes.
int status = pt_insn_sync_forward(&m_decoder);
// We make this call to record any synchronization errors.
if (IsLibiptError(status))
m_decoded_thread.AppendError(IntelPTError(status));
return status;
}
/// Before querying instructions, we need to query the events associated that
/// instruction e.g. timing events like ptev_tick, or paging events like
/// ptev_paging.
///
/// \param[in] status
/// The status gotten from the previous instruction decoding or PSB
/// synchronization.
///
/// \return
/// \b true if no errors were found processing the events.
bool ProcessPTEvents(int status) {
while (status & pts_event_pending) {
pt_event event;
status = pt_insn_event(&m_decoder, &event, sizeof(event));
if (IsLibiptError(status)) {
m_decoded_thread.AppendError(IntelPTError(status));
return false;
}
if (event.has_tsc)
m_decoded_thread.NotifyTsc(event.tsc);
switch (event.type) {
case ptev_enabled:
// The kernel started or resumed tracing the program.
break;
case ptev_disabled:
// The CPU paused tracing the program, e.g. due to ip filtering.
m_decoded_thread.AppendEvent(lldb::eTraceEventDisabledHW);
break;
case ptev_async_disabled:
// The kernel or user code paused tracing the program, e.g.
// a breakpoint or a ioctl invocation pausing the trace, or a
// context switch happened.
m_decoded_thread.AppendEvent(lldb::eTraceEventDisabledSW);
break;
case ptev_overflow:
// The CPU internal buffer had an overflow error and some instructions
// were lost.
m_decoded_thread.AppendError(IntelPTError(-pte_overflow));
break;
default:
break;
}
}
return true;
}
private:
pt_insn_decoder &m_decoder;
DecodedThread &m_decoded_thread;
};
/// Callback used by libipt for reading the process memory.
///
/// More information can be found in
/// https://github.com/intel/libipt/blob/master/doc/man/pt_image_set_callback.3.md
static int ReadProcessMemory(uint8_t *buffer, size_t size,
const pt_asid * /* unused */, uint64_t pc,
void *context) {
Process *process = static_cast<Process *>(context);
Status error;
int bytes_read = process->ReadMemory(pc, buffer, size, error);
if (error.Fail())
return -pte_nomap;
return bytes_read;
}
// RAII deleter for libipt's decoder
auto DecoderDeleter = [](pt_insn_decoder *decoder) {
pt_insn_free_decoder(decoder);
};
using PtInsnDecoderUP =
std::unique_ptr<pt_insn_decoder, decltype(DecoderDeleter)>;
static Expected<PtInsnDecoderUP>
CreateInstructionDecoder(TraceIntelPT &trace_intel_pt,
ArrayRef<uint8_t> buffer) {
Expected<pt_cpu> cpu_info = trace_intel_pt.GetCPUInfo();
if (!cpu_info)
return cpu_info.takeError();
pt_config config;
pt_config_init(&config);
config.cpu = *cpu_info;
int status = pte_ok;
if (IsLibiptError(status = pt_cpu_errata(&config.errata, &config.cpu)))
return make_error<IntelPTError>(status);
// The libipt library does not modify the trace buffer, hence the
// following casts are safe.
config.begin = const_cast<uint8_t *>(buffer.data());
config.end = const_cast<uint8_t *>(buffer.data() + buffer.size());
pt_insn_decoder *decoder_ptr = pt_insn_alloc_decoder(&config);
if (!decoder_ptr)
return make_error<IntelPTError>(-pte_nomem);
return PtInsnDecoderUP(decoder_ptr, DecoderDeleter);
}
static Error SetupMemoryImage(PtInsnDecoderUP &decoder_up, Process &process) {
pt_image *image = pt_insn_get_image(decoder_up.get());
int status = pte_ok;
if (IsLibiptError(
status = pt_image_set_callback(image, ReadProcessMemory, &process)))
return make_error<IntelPTError>(status);
return Error::success();
}
Error lldb_private::trace_intel_pt::DecodeSingleTraceForThread(
DecodedThread &decoded_thread, TraceIntelPT &trace_intel_pt,
ArrayRef<uint8_t> buffer) {
Expected<PtInsnDecoderUP> decoder_up =
CreateInstructionDecoder(trace_intel_pt, buffer);
if (!decoder_up)
return decoder_up.takeError();
if (Error err = SetupMemoryImage(*decoder_up,
*decoded_thread.GetThread()->GetProcess()))
return err;
LibiptDecoder libipt_decoder(*decoder_up.get(), decoded_thread);
libipt_decoder.DecodeUntilEndOfTrace();
return Error::success();
}
Error lldb_private::trace_intel_pt::DecodeSystemWideTraceForThread(
DecodedThread &decoded_thread, TraceIntelPT &trace_intel_pt,
const DenseMap<lldb::cpu_id_t, llvm::ArrayRef<uint8_t>> &buffers,
const std::vector<IntelPTThreadContinousExecution> &executions) {
DenseMap<lldb::cpu_id_t, LibiptDecoder> decoders;
for (auto &cpu_id_buffer : buffers) {
Expected<PtInsnDecoderUP> decoder_up =
CreateInstructionDecoder(trace_intel_pt, cpu_id_buffer.second);
if (!decoder_up)
return decoder_up.takeError();
if (Error err = SetupMemoryImage(*decoder_up,
*decoded_thread.GetThread()->GetProcess()))
return err;
decoders.try_emplace(cpu_id_buffer.first,
LibiptDecoder(*decoder_up->release(), decoded_thread));
}
bool has_seen_psbs = false;
for (size_t i = 0; i < executions.size(); i++) {
const IntelPTThreadContinousExecution &execution = executions[i];
auto variant = execution.thread_execution.variant;
// We report the TSCs we are sure of
switch (variant) {
case ThreadContinuousExecution::Variant::Complete:
decoded_thread.NotifyTsc(execution.thread_execution.tscs.complete.start);
break;
case ThreadContinuousExecution::Variant::OnlyStart:
decoded_thread.NotifyTsc(
execution.thread_execution.tscs.only_start.start);
break;
default:
break;
}
decoded_thread.NotifyCPU(execution.thread_execution.cpu_id);
// If we haven't seen a PSB yet, then it's fine not to show errors
if (has_seen_psbs) {
if (execution.intelpt_subtraces.empty()) {
decoded_thread.AppendCustomError(
formatv("Unable to find intel pt data for thread "
"execution on cpu id = {0}",
execution.thread_execution.cpu_id)
.str());
}
// If the first execution is incomplete because it doesn't have a previous
// context switch in its cpu, all good, otherwise we report the error.
if (variant == ThreadContinuousExecution::Variant::OnlyEnd ||
variant == ThreadContinuousExecution::Variant::HintedStart) {
decoded_thread.AppendCustomError(
formatv("Unable to find the context switch in for the thread "
"execution starting on cpu id = {0}",
execution.thread_execution.cpu_id)
.str());
}
}
LibiptDecoder &decoder =
decoders.find(execution.thread_execution.cpu_id)->second;
for (const IntelPTThreadSubtrace &intel_pt_execution :
execution.intelpt_subtraces) {
has_seen_psbs = true;
decoder.DecodePSB(intel_pt_execution.psb_offset);
}
// We report the TSCs we are sure of
switch (variant) {
case ThreadContinuousExecution::Variant::Complete:
decoded_thread.NotifyTsc(execution.thread_execution.tscs.complete.end);
break;
case ThreadContinuousExecution::Variant::OnlyEnd:
decoded_thread.NotifyTsc(execution.thread_execution.tscs.only_end.end);
break;
default:
break;
}
// If we haven't seen a PSB yet, then it's fine not to show errors
if (has_seen_psbs) {
// If the last execution is incomplete because it doesn't have a following
// context switch in its cpu, all good.
if ((variant == ThreadContinuousExecution::Variant::OnlyStart &&
i + 1 != executions.size()) ||
variant == ThreadContinuousExecution::Variant::HintedEnd) {
decoded_thread.AppendCustomError(
formatv("Unable to find the context switch out for the thread "
"execution on cpu id = {0}",
execution.thread_execution.cpu_id)
.str());
}
}
}
return Error::success();
}
bool IntelPTThreadContinousExecution::operator<(
const IntelPTThreadContinousExecution &o) const {
// As the context switch might be incomplete, we look first for the first real
// PSB packet, which is a valid TSC. Otherwise, We query the thread execution
// itself for some tsc.
auto get_tsc = [](const IntelPTThreadContinousExecution &exec) {
return exec.intelpt_subtraces.empty()
? exec.thread_execution.GetLowestKnownTSC()
: exec.intelpt_subtraces.front().tsc;
};
return get_tsc(*this) < get_tsc(o);
}
Expected<std::vector<IntelPTThreadSubtrace>>
lldb_private::trace_intel_pt::SplitTraceInContinuousExecutions(
TraceIntelPT &trace_intel_pt, llvm::ArrayRef<uint8_t> buffer) {
Expected<PtInsnDecoderUP> decoder_up =
CreateInstructionDecoder(trace_intel_pt, buffer);
if (!decoder_up)
return decoder_up.takeError();
pt_insn_decoder *decoder = decoder_up.get().get();
std::vector<IntelPTThreadSubtrace> executions;
int status = pte_ok;
while (!IsLibiptError(status = pt_insn_sync_forward(decoder))) {
uint64_t tsc;
if (IsLibiptError(pt_insn_time(decoder, &tsc, nullptr, nullptr)))
return createStringError(inconvertibleErrorCode(),
"intel pt trace doesn't have TSC timestamps");
uint64_t psb_offset;
pt_insn_get_sync_offset(decoder,
&psb_offset); // this can't fail because we got here
executions.push_back({
psb_offset,
tsc,
});
}
return executions;
}
Expected<Optional<uint64_t>>
lldb_private::trace_intel_pt::FindLowestTSCInTrace(TraceIntelPT &trace_intel_pt,
ArrayRef<uint8_t> buffer) {
Expected<PtInsnDecoderUP> decoder_up =
CreateInstructionDecoder(trace_intel_pt, buffer);
if (!decoder_up)
return decoder_up.takeError();
pt_insn_decoder *decoder = decoder_up.get().get();
int status = pte_ok;
if (IsLibiptError(status = pt_insn_sync_forward(decoder)))
return None;
uint64_t tsc;
if (IsLibiptError(pt_insn_time(decoder, &tsc, nullptr, nullptr)))
return None;
return tsc;
}
|