1 /* 2 * plugin-gen.c - TCG-related bits of plugin infrastructure 3 * 4 * Copyright (C) 2018, Emilio G. Cota <cota@braap.org> 5 * License: GNU GPL, version 2 or later. 6 * See the COPYING file in the top-level directory. 7 * 8 * We support instrumentation at an instruction granularity. That is, 9 * if a plugin wants to instrument the memory accesses performed by a 10 * particular instruction, it can just do that instead of instrumenting 11 * all memory accesses. Thus, in order to do this we first have to 12 * translate a TB, so that plugins can decide what/where to instrument. 13 * 14 * Injecting the desired instrumentation could be done with a second 15 * translation pass that combined the instrumentation requests, but that 16 * would be ugly and inefficient since we would decode the guest code twice. 17 * Instead, during TB translation we add "empty" instrumentation calls for all 18 * possible instrumentation events, and then once we collect the instrumentation 19 * requests from plugins, we either "fill in" those empty events or remove them 20 * if they have no requests. 21 * 22 * When "filling in" an event we first copy the empty callback's TCG ops. This 23 * might seem unnecessary, but it is done to support an arbitrary number 24 * of callbacks per event. Take for example a regular instruction callback. 25 * We first generate a callback to an empty helper function. Then, if two 26 * plugins register one callback each for this instruction, we make two copies 27 * of the TCG ops generated for the empty callback, substituting the function 28 * pointer that points to the empty helper function with the plugins' desired 29 * callback functions. After that we remove the empty callback's ops. 30 * 31 * Note that the location in TCGOp.args[] of the pointer to a helper function 32 * varies across different guest and host architectures. Instead of duplicating 33 * the logic that figures this out, we rely on the fact that the empty 34 * callbacks point to empty functions that are unique pointers in the program. 35 * Thus, to find the right location we just have to look for a match in 36 * TCGOp.args[]. This is the main reason why we first copy an empty callback's 37 * TCG ops and then fill them in; regardless of whether we have one or many 38 * callbacks for that event, the logic to add all of them is the same. 39 * 40 * When generating more than one callback per event, we make a small 41 * optimization to avoid generating redundant operations. For instance, for the 42 * second and all subsequent callbacks of an event, we do not need to reload the 43 * CPU's index into a TCG temp, since the first callback did it already. 44 */ 45 #include "qemu/osdep.h" 46 #include "cpu.h" 47 #include "tcg/tcg.h" 48 #include "tcg/tcg-op.h" 49 #include "trace/mem.h" 50 #include "exec/exec-all.h" 51 #include "exec/plugin-gen.h" 52 #include "exec/translator.h" 53 54 #ifdef CONFIG_SOFTMMU 55 # define CONFIG_SOFTMMU_GATE 1 56 #else 57 # define CONFIG_SOFTMMU_GATE 0 58 #endif 59 60 /* 61 * plugin_cb_start TCG op args[]: 62 * 0: enum plugin_gen_from 63 * 1: enum plugin_gen_cb 64 * 2: set to 1 for mem callback that is a write, 0 otherwise. 65 */ 66 67 enum plugin_gen_from { 68 PLUGIN_GEN_FROM_TB, 69 PLUGIN_GEN_FROM_INSN, 70 PLUGIN_GEN_FROM_MEM, 71 PLUGIN_GEN_AFTER_INSN, 72 PLUGIN_GEN_N_FROMS, 73 }; 74 75 enum plugin_gen_cb { 76 PLUGIN_GEN_CB_UDATA, 77 PLUGIN_GEN_CB_INLINE, 78 PLUGIN_GEN_CB_MEM, 79 PLUGIN_GEN_ENABLE_MEM_HELPER, 80 PLUGIN_GEN_DISABLE_MEM_HELPER, 81 PLUGIN_GEN_N_CBS, 82 }; 83 84 /* 85 * These helpers are stubs that get dynamically switched out for calls 86 * direct to the plugin if they are subscribed to. 87 */ 88 void HELPER(plugin_vcpu_udata_cb)(uint32_t cpu_index, void *udata) 89 { } 90 91 void HELPER(plugin_vcpu_mem_cb)(unsigned int vcpu_index, 92 qemu_plugin_meminfo_t info, uint64_t vaddr, 93 void *userdata) 94 { } 95 96 static void do_gen_mem_cb(TCGv vaddr, uint32_t info) 97 { 98 TCGv_i32 cpu_index = tcg_temp_new_i32(); 99 TCGv_i32 meminfo = tcg_const_i32(info); 100 TCGv_i64 vaddr64 = tcg_temp_new_i64(); 101 TCGv_ptr udata = tcg_const_ptr(NULL); 102 103 tcg_gen_ld_i32(cpu_index, cpu_env, 104 -offsetof(ArchCPU, env) + offsetof(CPUState, cpu_index)); 105 tcg_gen_extu_tl_i64(vaddr64, vaddr); 106 107 gen_helper_plugin_vcpu_mem_cb(cpu_index, meminfo, vaddr64, udata); 108 109 tcg_temp_free_ptr(udata); 110 tcg_temp_free_i64(vaddr64); 111 tcg_temp_free_i32(meminfo); 112 tcg_temp_free_i32(cpu_index); 113 } 114 115 static void gen_empty_udata_cb(void) 116 { 117 TCGv_i32 cpu_index = tcg_temp_new_i32(); 118 TCGv_ptr udata = tcg_const_ptr(NULL); /* will be overwritten later */ 119 120 tcg_gen_ld_i32(cpu_index, cpu_env, 121 -offsetof(ArchCPU, env) + offsetof(CPUState, cpu_index)); 122 gen_helper_plugin_vcpu_udata_cb(cpu_index, udata); 123 124 tcg_temp_free_ptr(udata); 125 tcg_temp_free_i32(cpu_index); 126 } 127 128 /* 129 * For now we only support addi_i64. 130 * When we support more ops, we can generate one empty inline cb for each. 131 */ 132 static void gen_empty_inline_cb(void) 133 { 134 TCGv_i64 val = tcg_temp_new_i64(); 135 TCGv_ptr ptr = tcg_const_ptr(NULL); /* overwritten later */ 136 137 tcg_gen_ld_i64(val, ptr, 0); 138 /* pass an immediate != 0 so that it doesn't get optimized away */ 139 tcg_gen_addi_i64(val, val, 0xdeadface); 140 tcg_gen_st_i64(val, ptr, 0); 141 tcg_temp_free_ptr(ptr); 142 tcg_temp_free_i64(val); 143 } 144 145 static void gen_empty_mem_cb(TCGv addr, uint32_t info) 146 { 147 do_gen_mem_cb(addr, info); 148 } 149 150 /* 151 * Share the same function for enable/disable. When enabling, the NULL 152 * pointer will be overwritten later. 153 */ 154 static void gen_empty_mem_helper(void) 155 { 156 TCGv_ptr ptr; 157 158 ptr = tcg_const_ptr(NULL); 159 tcg_gen_st_ptr(ptr, cpu_env, offsetof(CPUState, plugin_mem_cbs) - 160 offsetof(ArchCPU, env)); 161 tcg_temp_free_ptr(ptr); 162 } 163 164 static inline 165 void gen_plugin_cb_start(enum plugin_gen_from from, 166 enum plugin_gen_cb type, unsigned wr) 167 { 168 TCGOp *op; 169 170 tcg_gen_plugin_cb_start(from, type, wr); 171 op = tcg_last_op(); 172 QSIMPLEQ_INSERT_TAIL(&tcg_ctx->plugin_ops, op, plugin_link); 173 } 174 175 static void gen_wrapped(enum plugin_gen_from from, 176 enum plugin_gen_cb type, void (*func)(void)) 177 { 178 gen_plugin_cb_start(from, type, 0); 179 func(); 180 tcg_gen_plugin_cb_end(); 181 } 182 183 static inline void plugin_gen_empty_callback(enum plugin_gen_from from) 184 { 185 switch (from) { 186 case PLUGIN_GEN_AFTER_INSN: 187 gen_wrapped(from, PLUGIN_GEN_DISABLE_MEM_HELPER, 188 gen_empty_mem_helper); 189 break; 190 case PLUGIN_GEN_FROM_INSN: 191 /* 192 * Note: plugin_gen_inject() relies on ENABLE_MEM_HELPER being 193 * the first callback of an instruction 194 */ 195 gen_wrapped(from, PLUGIN_GEN_ENABLE_MEM_HELPER, 196 gen_empty_mem_helper); 197 /* fall through */ 198 case PLUGIN_GEN_FROM_TB: 199 gen_wrapped(from, PLUGIN_GEN_CB_UDATA, gen_empty_udata_cb); 200 gen_wrapped(from, PLUGIN_GEN_CB_INLINE, gen_empty_inline_cb); 201 break; 202 default: 203 g_assert_not_reached(); 204 } 205 } 206 207 union mem_gen_fn { 208 void (*mem_fn)(TCGv, uint32_t); 209 void (*inline_fn)(void); 210 }; 211 212 static void gen_mem_wrapped(enum plugin_gen_cb type, 213 const union mem_gen_fn *f, TCGv addr, 214 uint32_t info, bool is_mem) 215 { 216 int wr = !!(info & TRACE_MEM_ST); 217 218 gen_plugin_cb_start(PLUGIN_GEN_FROM_MEM, type, wr); 219 if (is_mem) { 220 f->mem_fn(addr, info); 221 } else { 222 f->inline_fn(); 223 } 224 tcg_gen_plugin_cb_end(); 225 } 226 227 void plugin_gen_empty_mem_callback(TCGv addr, uint32_t info) 228 { 229 union mem_gen_fn fn; 230 231 fn.mem_fn = gen_empty_mem_cb; 232 gen_mem_wrapped(PLUGIN_GEN_CB_MEM, &fn, addr, info, true); 233 234 fn.inline_fn = gen_empty_inline_cb; 235 gen_mem_wrapped(PLUGIN_GEN_CB_INLINE, &fn, 0, info, false); 236 } 237 238 static TCGOp *find_op(TCGOp *op, TCGOpcode opc) 239 { 240 while (op) { 241 if (op->opc == opc) { 242 return op; 243 } 244 op = QTAILQ_NEXT(op, link); 245 } 246 return NULL; 247 } 248 249 static TCGOp *rm_ops_range(TCGOp *begin, TCGOp *end) 250 { 251 TCGOp *ret = QTAILQ_NEXT(end, link); 252 253 QTAILQ_REMOVE_SEVERAL(&tcg_ctx->ops, begin, end, link); 254 return ret; 255 } 256 257 /* remove all ops until (and including) plugin_cb_end */ 258 static TCGOp *rm_ops(TCGOp *op) 259 { 260 TCGOp *end_op = find_op(op, INDEX_op_plugin_cb_end); 261 262 tcg_debug_assert(end_op); 263 return rm_ops_range(op, end_op); 264 } 265 266 static TCGOp *copy_op_nocheck(TCGOp **begin_op, TCGOp *op) 267 { 268 *begin_op = QTAILQ_NEXT(*begin_op, link); 269 tcg_debug_assert(*begin_op); 270 op = tcg_op_insert_after(tcg_ctx, op, (*begin_op)->opc); 271 memcpy(op->args, (*begin_op)->args, sizeof(op->args)); 272 return op; 273 } 274 275 static TCGOp *copy_op(TCGOp **begin_op, TCGOp *op, TCGOpcode opc) 276 { 277 op = copy_op_nocheck(begin_op, op); 278 tcg_debug_assert((*begin_op)->opc == opc); 279 return op; 280 } 281 282 static TCGOp *copy_extu_i32_i64(TCGOp **begin_op, TCGOp *op) 283 { 284 if (TCG_TARGET_REG_BITS == 32) { 285 /* mov_i32 */ 286 op = copy_op(begin_op, op, INDEX_op_mov_i32); 287 /* mov_i32 w/ $0 */ 288 op = copy_op(begin_op, op, INDEX_op_mov_i32); 289 } else { 290 /* extu_i32_i64 */ 291 op = copy_op(begin_op, op, INDEX_op_extu_i32_i64); 292 } 293 return op; 294 } 295 296 static TCGOp *copy_mov_i64(TCGOp **begin_op, TCGOp *op) 297 { 298 if (TCG_TARGET_REG_BITS == 32) { 299 /* 2x mov_i32 */ 300 op = copy_op(begin_op, op, INDEX_op_mov_i32); 301 op = copy_op(begin_op, op, INDEX_op_mov_i32); 302 } else { 303 /* mov_i64 */ 304 op = copy_op(begin_op, op, INDEX_op_mov_i64); 305 } 306 return op; 307 } 308 309 static TCGOp *copy_const_ptr(TCGOp **begin_op, TCGOp *op, void *ptr) 310 { 311 if (UINTPTR_MAX == UINT32_MAX) { 312 /* mov_i32 */ 313 op = copy_op(begin_op, op, INDEX_op_mov_i32); 314 op->args[1] = tcgv_i32_arg(tcg_constant_i32((uintptr_t)ptr)); 315 } else { 316 /* mov_i64 */ 317 op = copy_op(begin_op, op, INDEX_op_mov_i64); 318 op->args[1] = tcgv_i64_arg(tcg_constant_i64((uintptr_t)ptr)); 319 } 320 return op; 321 } 322 323 static TCGOp *copy_const_i64(TCGOp **begin_op, TCGOp *op, uint64_t v) 324 { 325 if (TCG_TARGET_REG_BITS == 32) { 326 /* 2x mov_i32 */ 327 op = copy_op(begin_op, op, INDEX_op_mov_i32); 328 op->args[1] = tcgv_i32_arg(tcg_constant_i32(v)); 329 op = copy_op(begin_op, op, INDEX_op_mov_i32); 330 op->args[1] = tcgv_i32_arg(tcg_constant_i32(v >> 32)); 331 } else { 332 /* mov_i64 */ 333 op = copy_op(begin_op, op, INDEX_op_mov_i64); 334 op->args[1] = tcgv_i64_arg(tcg_constant_i64(v)); 335 } 336 return op; 337 } 338 339 static TCGOp *copy_extu_tl_i64(TCGOp **begin_op, TCGOp *op) 340 { 341 if (TARGET_LONG_BITS == 32) { 342 /* extu_i32_i64 */ 343 op = copy_extu_i32_i64(begin_op, op); 344 } else { 345 /* mov_i64 */ 346 op = copy_mov_i64(begin_op, op); 347 } 348 return op; 349 } 350 351 static TCGOp *copy_ld_i64(TCGOp **begin_op, TCGOp *op) 352 { 353 if (TCG_TARGET_REG_BITS == 32) { 354 /* 2x ld_i32 */ 355 op = copy_op(begin_op, op, INDEX_op_ld_i32); 356 op = copy_op(begin_op, op, INDEX_op_ld_i32); 357 } else { 358 /* ld_i64 */ 359 op = copy_op(begin_op, op, INDEX_op_ld_i64); 360 } 361 return op; 362 } 363 364 static TCGOp *copy_st_i64(TCGOp **begin_op, TCGOp *op) 365 { 366 if (TCG_TARGET_REG_BITS == 32) { 367 /* 2x st_i32 */ 368 op = copy_op(begin_op, op, INDEX_op_st_i32); 369 op = copy_op(begin_op, op, INDEX_op_st_i32); 370 } else { 371 /* st_i64 */ 372 op = copy_op(begin_op, op, INDEX_op_st_i64); 373 } 374 return op; 375 } 376 377 static TCGOp *copy_add_i64(TCGOp **begin_op, TCGOp *op) 378 { 379 if (TCG_TARGET_REG_BITS == 32) { 380 /* all 32-bit backends must implement add2_i32 */ 381 g_assert(TCG_TARGET_HAS_add2_i32); 382 op = copy_op(begin_op, op, INDEX_op_add2_i32); 383 } else { 384 op = copy_op(begin_op, op, INDEX_op_add_i64); 385 } 386 return op; 387 } 388 389 static TCGOp *copy_st_ptr(TCGOp **begin_op, TCGOp *op) 390 { 391 if (UINTPTR_MAX == UINT32_MAX) { 392 /* st_i32 */ 393 op = copy_op(begin_op, op, INDEX_op_st_i32); 394 } else { 395 /* st_i64 */ 396 op = copy_st_i64(begin_op, op); 397 } 398 return op; 399 } 400 401 static TCGOp *copy_call(TCGOp **begin_op, TCGOp *op, void *empty_func, 402 void *func, unsigned tcg_flags, int *cb_idx) 403 { 404 /* copy all ops until the call */ 405 do { 406 op = copy_op_nocheck(begin_op, op); 407 } while (op->opc != INDEX_op_call); 408 409 /* fill in the op call */ 410 op->param1 = (*begin_op)->param1; 411 op->param2 = (*begin_op)->param2; 412 tcg_debug_assert(op->life == 0); 413 if (*cb_idx == -1) { 414 int i; 415 416 /* 417 * Instead of working out the position of the callback in args[], just 418 * look for @empty_func, since it should be a unique pointer. 419 */ 420 for (i = 0; i < MAX_OPC_PARAM_ARGS; i++) { 421 if ((uintptr_t)(*begin_op)->args[i] == (uintptr_t)empty_func) { 422 *cb_idx = i; 423 break; 424 } 425 } 426 tcg_debug_assert(i < MAX_OPC_PARAM_ARGS); 427 } 428 op->args[*cb_idx] = (uintptr_t)func; 429 op->args[*cb_idx + 1] = tcg_flags; 430 431 return op; 432 } 433 434 static TCGOp *append_udata_cb(const struct qemu_plugin_dyn_cb *cb, 435 TCGOp *begin_op, TCGOp *op, int *cb_idx) 436 { 437 /* const_ptr */ 438 op = copy_const_ptr(&begin_op, op, cb->userp); 439 440 /* copy the ld_i32, but note that we only have to copy it once */ 441 begin_op = QTAILQ_NEXT(begin_op, link); 442 tcg_debug_assert(begin_op && begin_op->opc == INDEX_op_ld_i32); 443 if (*cb_idx == -1) { 444 op = tcg_op_insert_after(tcg_ctx, op, INDEX_op_ld_i32); 445 memcpy(op->args, begin_op->args, sizeof(op->args)); 446 } 447 448 /* call */ 449 op = copy_call(&begin_op, op, HELPER(plugin_vcpu_udata_cb), 450 cb->f.vcpu_udata, cb->tcg_flags, cb_idx); 451 452 return op; 453 } 454 455 static TCGOp *append_inline_cb(const struct qemu_plugin_dyn_cb *cb, 456 TCGOp *begin_op, TCGOp *op, 457 int *unused) 458 { 459 /* const_ptr */ 460 op = copy_const_ptr(&begin_op, op, cb->userp); 461 462 /* ld_i64 */ 463 op = copy_ld_i64(&begin_op, op); 464 465 /* const_i64 */ 466 op = copy_const_i64(&begin_op, op, cb->inline_insn.imm); 467 468 /* add_i64 */ 469 op = copy_add_i64(&begin_op, op); 470 471 /* st_i64 */ 472 op = copy_st_i64(&begin_op, op); 473 474 return op; 475 } 476 477 static TCGOp *append_mem_cb(const struct qemu_plugin_dyn_cb *cb, 478 TCGOp *begin_op, TCGOp *op, int *cb_idx) 479 { 480 enum plugin_gen_cb type = begin_op->args[1]; 481 482 tcg_debug_assert(type == PLUGIN_GEN_CB_MEM); 483 484 /* const_i32 == mov_i32 ("info", so it remains as is) */ 485 op = copy_op(&begin_op, op, INDEX_op_mov_i32); 486 487 /* const_ptr */ 488 op = copy_const_ptr(&begin_op, op, cb->userp); 489 490 /* copy the ld_i32, but note that we only have to copy it once */ 491 begin_op = QTAILQ_NEXT(begin_op, link); 492 tcg_debug_assert(begin_op && begin_op->opc == INDEX_op_ld_i32); 493 if (*cb_idx == -1) { 494 op = tcg_op_insert_after(tcg_ctx, op, INDEX_op_ld_i32); 495 memcpy(op->args, begin_op->args, sizeof(op->args)); 496 } 497 498 /* extu_tl_i64 */ 499 op = copy_extu_tl_i64(&begin_op, op); 500 501 if (type == PLUGIN_GEN_CB_MEM) { 502 /* call */ 503 op = copy_call(&begin_op, op, HELPER(plugin_vcpu_mem_cb), 504 cb->f.vcpu_udata, cb->tcg_flags, cb_idx); 505 } 506 507 return op; 508 } 509 510 typedef TCGOp *(*inject_fn)(const struct qemu_plugin_dyn_cb *cb, 511 TCGOp *begin_op, TCGOp *op, int *intp); 512 typedef bool (*op_ok_fn)(const TCGOp *op, const struct qemu_plugin_dyn_cb *cb); 513 514 static bool op_ok(const TCGOp *op, const struct qemu_plugin_dyn_cb *cb) 515 { 516 return true; 517 } 518 519 static bool op_rw(const TCGOp *op, const struct qemu_plugin_dyn_cb *cb) 520 { 521 int w; 522 523 w = op->args[2]; 524 return !!(cb->rw & (w + 1)); 525 } 526 527 static inline 528 void inject_cb_type(const GArray *cbs, TCGOp *begin_op, inject_fn inject, 529 op_ok_fn ok) 530 { 531 TCGOp *end_op; 532 TCGOp *op; 533 int cb_idx = -1; 534 int i; 535 536 if (!cbs || cbs->len == 0) { 537 rm_ops(begin_op); 538 return; 539 } 540 541 end_op = find_op(begin_op, INDEX_op_plugin_cb_end); 542 tcg_debug_assert(end_op); 543 544 op = end_op; 545 for (i = 0; i < cbs->len; i++) { 546 struct qemu_plugin_dyn_cb *cb = 547 &g_array_index(cbs, struct qemu_plugin_dyn_cb, i); 548 549 if (!ok(begin_op, cb)) { 550 continue; 551 } 552 op = inject(cb, begin_op, op, &cb_idx); 553 } 554 rm_ops_range(begin_op, end_op); 555 } 556 557 static void 558 inject_udata_cb(const GArray *cbs, TCGOp *begin_op) 559 { 560 inject_cb_type(cbs, begin_op, append_udata_cb, op_ok); 561 } 562 563 static void 564 inject_inline_cb(const GArray *cbs, TCGOp *begin_op, op_ok_fn ok) 565 { 566 inject_cb_type(cbs, begin_op, append_inline_cb, ok); 567 } 568 569 static void 570 inject_mem_cb(const GArray *cbs, TCGOp *begin_op) 571 { 572 inject_cb_type(cbs, begin_op, append_mem_cb, op_rw); 573 } 574 575 /* we could change the ops in place, but we can reuse more code by copying */ 576 static void inject_mem_helper(TCGOp *begin_op, GArray *arr) 577 { 578 TCGOp *orig_op = begin_op; 579 TCGOp *end_op; 580 TCGOp *op; 581 582 end_op = find_op(begin_op, INDEX_op_plugin_cb_end); 583 tcg_debug_assert(end_op); 584 585 /* const ptr */ 586 op = copy_const_ptr(&begin_op, end_op, arr); 587 588 /* st_ptr */ 589 op = copy_st_ptr(&begin_op, op); 590 591 rm_ops_range(orig_op, end_op); 592 } 593 594 /* 595 * Tracking memory accesses performed from helpers requires extra work. 596 * If an instruction is emulated with helpers, we do two things: 597 * (1) copy the CB descriptors, and keep track of it so that they can be 598 * freed later on, and (2) point CPUState.plugin_mem_cbs to the descriptors, so 599 * that we can read them at run-time (i.e. when the helper executes). 600 * This run-time access is performed from qemu_plugin_vcpu_mem_cb. 601 * 602 * Note that plugin_gen_disable_mem_helpers undoes (2). Since it 603 * is possible that the code we generate after the instruction is 604 * dead, we also add checks before generating tb_exit etc. 605 */ 606 static void inject_mem_enable_helper(struct qemu_plugin_insn *plugin_insn, 607 TCGOp *begin_op) 608 { 609 GArray *cbs[2]; 610 GArray *arr; 611 size_t n_cbs, i; 612 613 cbs[0] = plugin_insn->cbs[PLUGIN_CB_MEM][PLUGIN_CB_REGULAR]; 614 cbs[1] = plugin_insn->cbs[PLUGIN_CB_MEM][PLUGIN_CB_INLINE]; 615 616 n_cbs = 0; 617 for (i = 0; i < ARRAY_SIZE(cbs); i++) { 618 n_cbs += cbs[i]->len; 619 } 620 621 plugin_insn->mem_helper = plugin_insn->calls_helpers && n_cbs; 622 if (likely(!plugin_insn->mem_helper)) { 623 rm_ops(begin_op); 624 return; 625 } 626 627 arr = g_array_sized_new(false, false, 628 sizeof(struct qemu_plugin_dyn_cb), n_cbs); 629 630 for (i = 0; i < ARRAY_SIZE(cbs); i++) { 631 g_array_append_vals(arr, cbs[i]->data, cbs[i]->len); 632 } 633 634 qemu_plugin_add_dyn_cb_arr(arr); 635 inject_mem_helper(begin_op, arr); 636 } 637 638 static void inject_mem_disable_helper(struct qemu_plugin_insn *plugin_insn, 639 TCGOp *begin_op) 640 { 641 if (likely(!plugin_insn->mem_helper)) { 642 rm_ops(begin_op); 643 return; 644 } 645 inject_mem_helper(begin_op, NULL); 646 } 647 648 /* called before finishing a TB with exit_tb, goto_tb or goto_ptr */ 649 void plugin_gen_disable_mem_helpers(void) 650 { 651 TCGv_ptr ptr; 652 653 if (likely(tcg_ctx->plugin_insn == NULL || 654 !tcg_ctx->plugin_insn->mem_helper)) { 655 return; 656 } 657 ptr = tcg_const_ptr(NULL); 658 tcg_gen_st_ptr(ptr, cpu_env, offsetof(CPUState, plugin_mem_cbs) - 659 offsetof(ArchCPU, env)); 660 tcg_temp_free_ptr(ptr); 661 tcg_ctx->plugin_insn->mem_helper = false; 662 } 663 664 static void plugin_gen_tb_udata(const struct qemu_plugin_tb *ptb, 665 TCGOp *begin_op) 666 { 667 inject_udata_cb(ptb->cbs[PLUGIN_CB_REGULAR], begin_op); 668 } 669 670 static void plugin_gen_tb_inline(const struct qemu_plugin_tb *ptb, 671 TCGOp *begin_op) 672 { 673 inject_inline_cb(ptb->cbs[PLUGIN_CB_INLINE], begin_op, op_ok); 674 } 675 676 static void plugin_gen_insn_udata(const struct qemu_plugin_tb *ptb, 677 TCGOp *begin_op, int insn_idx) 678 { 679 struct qemu_plugin_insn *insn = g_ptr_array_index(ptb->insns, insn_idx); 680 681 inject_udata_cb(insn->cbs[PLUGIN_CB_INSN][PLUGIN_CB_REGULAR], begin_op); 682 } 683 684 static void plugin_gen_insn_inline(const struct qemu_plugin_tb *ptb, 685 TCGOp *begin_op, int insn_idx) 686 { 687 struct qemu_plugin_insn *insn = g_ptr_array_index(ptb->insns, insn_idx); 688 inject_inline_cb(insn->cbs[PLUGIN_CB_INSN][PLUGIN_CB_INLINE], 689 begin_op, op_ok); 690 } 691 692 static void plugin_gen_mem_regular(const struct qemu_plugin_tb *ptb, 693 TCGOp *begin_op, int insn_idx) 694 { 695 struct qemu_plugin_insn *insn = g_ptr_array_index(ptb->insns, insn_idx); 696 inject_mem_cb(insn->cbs[PLUGIN_CB_MEM][PLUGIN_CB_REGULAR], begin_op); 697 } 698 699 static void plugin_gen_mem_inline(const struct qemu_plugin_tb *ptb, 700 TCGOp *begin_op, int insn_idx) 701 { 702 const GArray *cbs; 703 struct qemu_plugin_insn *insn = g_ptr_array_index(ptb->insns, insn_idx); 704 705 cbs = insn->cbs[PLUGIN_CB_MEM][PLUGIN_CB_INLINE]; 706 inject_inline_cb(cbs, begin_op, op_rw); 707 } 708 709 static void plugin_gen_enable_mem_helper(const struct qemu_plugin_tb *ptb, 710 TCGOp *begin_op, int insn_idx) 711 { 712 struct qemu_plugin_insn *insn = g_ptr_array_index(ptb->insns, insn_idx); 713 inject_mem_enable_helper(insn, begin_op); 714 } 715 716 static void plugin_gen_disable_mem_helper(const struct qemu_plugin_tb *ptb, 717 TCGOp *begin_op, int insn_idx) 718 { 719 struct qemu_plugin_insn *insn = g_ptr_array_index(ptb->insns, insn_idx); 720 inject_mem_disable_helper(insn, begin_op); 721 } 722 723 static void plugin_inject_cb(const struct qemu_plugin_tb *ptb, TCGOp *begin_op, 724 int insn_idx) 725 { 726 enum plugin_gen_from from = begin_op->args[0]; 727 enum plugin_gen_cb type = begin_op->args[1]; 728 729 switch (from) { 730 case PLUGIN_GEN_FROM_TB: 731 switch (type) { 732 case PLUGIN_GEN_CB_UDATA: 733 plugin_gen_tb_udata(ptb, begin_op); 734 return; 735 case PLUGIN_GEN_CB_INLINE: 736 plugin_gen_tb_inline(ptb, begin_op); 737 return; 738 default: 739 g_assert_not_reached(); 740 } 741 case PLUGIN_GEN_FROM_INSN: 742 switch (type) { 743 case PLUGIN_GEN_CB_UDATA: 744 plugin_gen_insn_udata(ptb, begin_op, insn_idx); 745 return; 746 case PLUGIN_GEN_CB_INLINE: 747 plugin_gen_insn_inline(ptb, begin_op, insn_idx); 748 return; 749 case PLUGIN_GEN_ENABLE_MEM_HELPER: 750 plugin_gen_enable_mem_helper(ptb, begin_op, insn_idx); 751 return; 752 default: 753 g_assert_not_reached(); 754 } 755 case PLUGIN_GEN_FROM_MEM: 756 switch (type) { 757 case PLUGIN_GEN_CB_MEM: 758 plugin_gen_mem_regular(ptb, begin_op, insn_idx); 759 return; 760 case PLUGIN_GEN_CB_INLINE: 761 plugin_gen_mem_inline(ptb, begin_op, insn_idx); 762 return; 763 default: 764 g_assert_not_reached(); 765 } 766 case PLUGIN_GEN_AFTER_INSN: 767 switch (type) { 768 case PLUGIN_GEN_DISABLE_MEM_HELPER: 769 plugin_gen_disable_mem_helper(ptb, begin_op, insn_idx); 770 return; 771 default: 772 g_assert_not_reached(); 773 } 774 default: 775 g_assert_not_reached(); 776 } 777 } 778 779 /* #define DEBUG_PLUGIN_GEN_OPS */ 780 static void pr_ops(void) 781 { 782 #ifdef DEBUG_PLUGIN_GEN_OPS 783 TCGOp *op; 784 int i = 0; 785 786 QTAILQ_FOREACH(op, &tcg_ctx->ops, link) { 787 const char *name = ""; 788 const char *type = ""; 789 790 if (op->opc == INDEX_op_plugin_cb_start) { 791 switch (op->args[0]) { 792 case PLUGIN_GEN_FROM_TB: 793 name = "tb"; 794 break; 795 case PLUGIN_GEN_FROM_INSN: 796 name = "insn"; 797 break; 798 case PLUGIN_GEN_FROM_MEM: 799 name = "mem"; 800 break; 801 case PLUGIN_GEN_AFTER_INSN: 802 name = "after insn"; 803 break; 804 default: 805 break; 806 } 807 switch (op->args[1]) { 808 case PLUGIN_GEN_CB_UDATA: 809 type = "udata"; 810 break; 811 case PLUGIN_GEN_CB_INLINE: 812 type = "inline"; 813 break; 814 case PLUGIN_GEN_CB_MEM: 815 type = "mem"; 816 break; 817 case PLUGIN_GEN_ENABLE_MEM_HELPER: 818 type = "enable mem helper"; 819 break; 820 case PLUGIN_GEN_DISABLE_MEM_HELPER: 821 type = "disable mem helper"; 822 break; 823 default: 824 break; 825 } 826 } 827 printf("op[%2i]: %s %s %s\n", i, tcg_op_defs[op->opc].name, name, type); 828 i++; 829 } 830 #endif 831 } 832 833 static void plugin_gen_inject(const struct qemu_plugin_tb *plugin_tb) 834 { 835 TCGOp *op; 836 int insn_idx; 837 838 pr_ops(); 839 insn_idx = -1; 840 QSIMPLEQ_FOREACH(op, &tcg_ctx->plugin_ops, plugin_link) { 841 enum plugin_gen_from from = op->args[0]; 842 enum plugin_gen_cb type = op->args[1]; 843 844 tcg_debug_assert(op->opc == INDEX_op_plugin_cb_start); 845 /* ENABLE_MEM_HELPER is the first callback of an instruction */ 846 if (from == PLUGIN_GEN_FROM_INSN && 847 type == PLUGIN_GEN_ENABLE_MEM_HELPER) { 848 insn_idx++; 849 } 850 plugin_inject_cb(plugin_tb, op, insn_idx); 851 } 852 pr_ops(); 853 } 854 855 bool plugin_gen_tb_start(CPUState *cpu, const TranslationBlock *tb) 856 { 857 struct qemu_plugin_tb *ptb = tcg_ctx->plugin_tb; 858 bool ret = false; 859 860 if (test_bit(QEMU_PLUGIN_EV_VCPU_TB_TRANS, cpu->plugin_mask)) { 861 ret = true; 862 863 QSIMPLEQ_INIT(&tcg_ctx->plugin_ops); 864 ptb->vaddr = tb->pc; 865 ptb->vaddr2 = -1; 866 get_page_addr_code_hostp(cpu->env_ptr, tb->pc, &ptb->haddr1); 867 ptb->haddr2 = NULL; 868 869 plugin_gen_empty_callback(PLUGIN_GEN_FROM_TB); 870 } 871 return ret; 872 } 873 874 void plugin_gen_insn_start(CPUState *cpu, const DisasContextBase *db) 875 { 876 struct qemu_plugin_tb *ptb = tcg_ctx->plugin_tb; 877 struct qemu_plugin_insn *pinsn; 878 879 pinsn = qemu_plugin_tb_insn_get(ptb); 880 tcg_ctx->plugin_insn = pinsn; 881 pinsn->vaddr = db->pc_next; 882 plugin_gen_empty_callback(PLUGIN_GEN_FROM_INSN); 883 884 /* 885 * Detect page crossing to get the new host address. 886 * Note that we skip this when haddr1 == NULL, e.g. when we're 887 * fetching instructions from a region not backed by RAM. 888 */ 889 if (likely(ptb->haddr1 != NULL && ptb->vaddr2 == -1) && 890 unlikely((db->pc_next & TARGET_PAGE_MASK) != 891 (db->pc_first & TARGET_PAGE_MASK))) { 892 get_page_addr_code_hostp(cpu->env_ptr, db->pc_next, 893 &ptb->haddr2); 894 ptb->vaddr2 = db->pc_next; 895 } 896 if (likely(ptb->vaddr2 == -1)) { 897 pinsn->haddr = ptb->haddr1 + pinsn->vaddr - ptb->vaddr; 898 } else { 899 pinsn->haddr = ptb->haddr2 + pinsn->vaddr - ptb->vaddr2; 900 } 901 } 902 903 void plugin_gen_insn_end(void) 904 { 905 plugin_gen_empty_callback(PLUGIN_GEN_AFTER_INSN); 906 } 907 908 void plugin_gen_tb_end(CPUState *cpu) 909 { 910 struct qemu_plugin_tb *ptb = tcg_ctx->plugin_tb; 911 int i; 912 913 /* collect instrumentation requests */ 914 qemu_plugin_tb_trans_cb(cpu, ptb); 915 916 /* inject the instrumentation at the appropriate places */ 917 plugin_gen_inject(ptb); 918 919 /* clean up */ 920 for (i = 0; i < PLUGIN_N_CB_SUBTYPES; i++) { 921 if (ptb->cbs[i]) { 922 g_array_set_size(ptb->cbs[i], 0); 923 } 924 } 925 ptb->n = 0; 926 tcg_ctx->plugin_insn = NULL; 927 } 928