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 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940
|
/*
* INSTRUMENTED CODE LAYOUT
*
* Func offset | Instrumented code
* --------------------------------
* 0x0 | Call Trampoline
* 0x6 | nop
* 0x7 | nop
*
* we must use starting address of function when
* -. store original code to hashmap
* -. find original code from hashmap
* -. unpatch function
*/
#include <link.h>
#include <stdint.h>
#include <string.h>
#include <sys/mman.h>
/* This should be defined before #include "utils.h" */
#define PR_FMT "dynamic"
#define PR_DOMAIN DBG_DYNAMIC
#include "libmcount/dynamic.h"
#include "libmcount/internal.h"
#include "libmcount/mcount.h"
#include "utils/filter.h"
#include "utils/hashmap.h"
#include "utils/list.h"
#include "utils/rbtree.h"
#include "utils/symbol.h"
#include "utils/utils.h"
static struct mcount_dynamic_info *mdinfo;
static struct mcount_dynamic_stats {
int total;
int failed;
int skipped;
int nomatch;
int unpatch;
} stats;
#define CODE_CHUNK (PAGE_SIZE * 8)
struct code_page {
struct list_head list;
void *page;
int pos;
bool frozen;
};
static LIST_HEAD(code_pages);
static struct Hashmap *code_hmap;
/* minimum function size for dynamic update */
static unsigned min_size;
/* disassembly engine for dynamic code patch (for capstone) */
static struct mcount_disasm_engine disasm;
static struct mcount_orig_insn *create_code(struct Hashmap *map, unsigned long addr)
{
struct mcount_orig_insn *entry;
entry = xmalloc(sizeof *entry);
entry->addr = addr;
if (hashmap_put(code_hmap, (void *)entry->addr, entry) == NULL)
pr_err("code map allocation failed");
return entry;
}
static struct mcount_orig_insn *lookup_code(struct Hashmap *map, unsigned long addr)
{
struct mcount_orig_insn *entry;
entry = hashmap_get(code_hmap, (void *)addr);
return entry;
}
static struct code_page *alloc_codepage(void)
{
struct code_page *cp;
cp = xzalloc(sizeof(*cp));
cp->page = mmap(NULL, CODE_CHUNK, PROT_READ | PROT_WRITE | PROT_EXEC,
MAP_PRIVATE | MAP_ANONYMOUS, -1, 0);
if (cp->page == MAP_FAILED)
pr_err("mmap code page failed");
list_add_tail(&cp->list, &code_pages);
return cp;
}
void mcount_save_code(struct mcount_disasm_info *info, unsigned call_size, void *jmp_insn,
unsigned jmp_size)
{
struct code_page *cp = NULL;
struct mcount_orig_insn *orig;
int patch_size;
if (unlikely(info->modified)) {
/* it needs to save original instructions as well */
int orig_size = ALIGN(info->orig_size, 16);
int copy_size = ALIGN(info->copy_size + jmp_size, 16);
int table_size = mcount_arch_branch_table_size(info);
patch_size = ALIGN(copy_size + orig_size + table_size, 32);
}
else {
patch_size = ALIGN(info->copy_size + jmp_size, 32);
}
if (!list_empty(&code_pages))
cp = list_last_entry(&code_pages, struct code_page, list);
if (cp == NULL || (cp->pos + patch_size > CODE_CHUNK)) {
cp = alloc_codepage();
}
orig = create_code(code_hmap, info->addr + call_size);
/*
* if dynamic patch has been processed before, cp be frozen by
* calling freeze_code. so, when reaching here from the
* mcount_handle_dlopen, cp unwriteable.
*/
if (cp->frozen) {
/* [Caution]
* even if a little memory loss occurs, it can be dangerous
* that to re-assigned write and execute permission to exist
* codepage, so be sure to allocate new memory.
*/
cp = alloc_codepage();
}
orig->insn = cp->page + cp->pos;
orig->orig = orig->insn;
orig->orig_size = info->orig_size;
orig->insn_size = info->copy_size + jmp_size;
if (info->modified) {
/* save original instructions before modification */
orig->orig = orig->insn + patch_size - ALIGN(info->orig_size, 16);
memcpy(orig->orig, (void *)info->addr, info->orig_size);
mcount_arch_patch_branch(info, orig);
}
memcpy(orig->insn, info->insns, info->copy_size);
memcpy(orig->insn + info->copy_size, jmp_insn, jmp_size);
cp->pos += patch_size;
}
void mcount_freeze_code(void)
{
struct code_page *cp;
list_for_each_entry(cp, &code_pages, list) {
if (cp->frozen)
continue;
if (mprotect(cp->page, CODE_CHUNK, PROT_READ | PROT_EXEC) < 0)
pr_err("mprotect to freeze code page failed");
cp->frozen = true;
}
}
void *mcount_find_code(unsigned long addr)
{
struct mcount_orig_insn *orig;
orig = lookup_code(code_hmap, addr);
if (orig == NULL)
return NULL;
return orig->insn;
}
struct mcount_orig_insn *mcount_find_insn(unsigned long addr)
{
return lookup_code(code_hmap, addr);
}
static bool release_code(void *key, void *value, void *ctx)
{
hashmap_remove(code_hmap, key);
free(value);
return true;
}
/* not actually called for safety reason */
void mcount_release_code(void)
{
hashmap_for_each(code_hmap, release_code, NULL);
hashmap_free(code_hmap);
while (!list_empty(&code_pages)) {
struct code_page *cp;
cp = list_first_entry(&code_pages, struct code_page, list);
list_del(&cp->list);
munmap(cp->page, CODE_CHUNK);
free(cp);
}
}
/* dummy functions (will be overridden by arch-specific code) */
__weak int mcount_setup_trampoline(struct mcount_dynamic_info *mdi)
{
return -1;
}
__weak void mcount_cleanup_trampoline(struct mcount_dynamic_info *mdi)
{
}
__weak int mcount_patch_func(struct mcount_dynamic_info *mdi, struct uftrace_symbol *sym,
struct mcount_disasm_engine *disasm, unsigned min_size)
{
return -1;
}
__weak int mcount_unpatch_func(struct mcount_dynamic_info *mdi, struct uftrace_symbol *sym,
struct mcount_disasm_engine *disasm)
{
return -1;
}
__weak void mcount_arch_find_module(struct mcount_dynamic_info *mdi, struct uftrace_symtab *symtab)
{
}
__weak void mcount_arch_dynamic_recover(struct mcount_dynamic_info *mdi,
struct mcount_disasm_engine *disasm)
{
}
__weak void mcount_disasm_init(struct mcount_disasm_engine *disasm)
{
}
__weak void mcount_disasm_finish(struct mcount_disasm_engine *disasm)
{
}
__weak int mcount_arch_branch_table_size(struct mcount_disasm_info *info)
{
return 0;
}
__weak void mcount_arch_patch_branch(struct mcount_disasm_info *info, struct mcount_orig_insn *orig)
{
}
struct find_module_data {
struct uftrace_sym_info *sinfo;
bool needs_modules;
};
static struct mcount_dynamic_info *create_mdi(struct dl_phdr_info *info)
{
struct mcount_dynamic_info *mdi;
bool base_addr_set = false;
unsigned i;
mdi = xzalloc(sizeof(*mdi));
for (i = 0; i < info->dlpi_phnum; i++) {
if (info->dlpi_phdr[i].p_type != PT_LOAD)
continue;
if (!base_addr_set) {
mdi->base_addr = info->dlpi_phdr[i].p_vaddr;
base_addr_set = true;
}
if (!(info->dlpi_phdr[i].p_flags & PF_X))
continue;
/* find address and size of code segment */
mdi->text_addr = info->dlpi_phdr[i].p_vaddr;
mdi->text_size = info->dlpi_phdr[i].p_memsz;
break;
}
mdi->base_addr += info->dlpi_addr;
mdi->text_addr += info->dlpi_addr;
INIT_LIST_HEAD(&mdi->bad_syms);
return mdi;
}
/* callback for dl_iterate_phdr() */
static int find_dynamic_module(struct dl_phdr_info *info, size_t sz, void *data)
{
struct mcount_dynamic_info *mdi;
struct find_module_data *fmd = data;
struct uftrace_sym_info *sym_info = fmd->sinfo;
struct uftrace_mmap *map;
bool is_executable = mcount_is_main_executable(info->dlpi_name, sym_info->filename);
mdi = create_mdi(info);
map = find_map(sym_info, mdi->base_addr);
if (map && map->mod) {
mdi->map = map;
mcount_arch_find_module(mdi, &map->mod->symtab);
mdi->next = mdinfo;
mdinfo = mdi;
}
else {
free(mdi);
}
return !fmd->needs_modules && is_executable;
}
static void prepare_dynamic_update(struct uftrace_sym_info *sinfo, bool needs_modules)
{
struct find_module_data fmd = {
.sinfo = sinfo,
.needs_modules = needs_modules,
};
int hash_size = sinfo->exec_map->mod->symtab.nr_sym * 3 / 4;
if (needs_modules)
hash_size *= 2;
code_hmap = hashmap_create(hash_size, hashmap_ptr_hash, hashmap_ptr_equals);
dl_iterate_phdr(find_dynamic_module, &fmd);
}
struct mcount_dynamic_info *setup_trampoline(struct uftrace_mmap *map)
{
struct mcount_dynamic_info *mdi;
for (mdi = mdinfo; mdi != NULL; mdi = mdi->next) {
if (map == mdi->map)
break;
}
if (mdi != NULL && mdi->trampoline == 0) {
if (mcount_setup_trampoline(mdi) < 0)
mdi = NULL;
}
return mdi;
}
static LIST_HEAD(patterns);
struct patt_list {
struct list_head list;
struct uftrace_pattern patt;
char *module;
bool positive;
};
static bool match_pattern_module(char *pathname)
{
struct patt_list *pl;
bool ret = false;
const char *libname = uftrace_basename(pathname);
char *soname = get_soname(pathname);
list_for_each_entry(pl, &patterns, list) {
if (!strncmp(libname, pl->module, strlen(pl->module))) {
ret = true;
break;
}
if (soname && !strncmp(soname, pl->module, strlen(pl->module))) {
ret = true;
break;
}
}
free(soname);
return ret;
}
/**
* match_pattern_list - match a symbol name against a pattern list
* @map - memory map of the symbol
* @soname - name of the module
* @sym_name - name of the symbol
* @return - -1 if match negative, 1 if match positive, 0 if no match
*/
static int match_pattern_list(struct uftrace_mmap *map, char *soname, char *sym_name)
{
struct patt_list *pl;
int ret = 0;
const char *libname = uftrace_basename(map->libname);
list_for_each_entry(pl, &patterns, list) {
int len = strlen(pl->module);
if (strncmp(libname, pl->module, len) &&
(!soname || strncmp(soname, pl->module, len)))
continue;
if (match_filter_pattern(&pl->patt, sym_name))
ret = pl->positive ? 1 : -1;
}
return ret;
}
static void parse_pattern_list(char *patch_funcs, const char *def_mod,
enum uftrace_pattern_type ptype)
{
struct strv funcs = STRV_INIT;
char *name;
int j;
struct patt_list *pl;
strv_split(&funcs, patch_funcs, ";");
strv_for_each(&funcs, name, j) {
char *delim;
pl = xzalloc(sizeof(*pl));
if (name[0] == '!')
name++;
else
pl->positive = true;
delim = strchr(name, '@');
if (delim == NULL) {
pl->module = xstrdup(def_mod);
}
else {
*delim = '\0';
pl->module = xstrdup(++delim);
}
init_filter_pattern(ptype, &pl->patt, name);
list_add_tail(&pl->list, &patterns);
}
strv_free(&funcs);
}
static void release_pattern_list(void)
{
struct patt_list *pl, *tmp;
list_for_each_entry_safe(pl, tmp, &patterns, list) {
list_del(&pl->list);
free_filter_pattern(&pl->patt);
free(pl->module);
free(pl);
}
}
static bool skip_sym(struct uftrace_symbol *sym, struct mcount_dynamic_info *mdi,
struct uftrace_mmap *map, char *soname)
{
/* skip special startup (csu) functions */
const char *csu_skip_syms[] = {
"_start",
"__libc_csu_init",
"__libc_csu_fini",
};
unsigned i;
for (i = 0; i < ARRAY_SIZE(csu_skip_syms); i++) {
if (!strcmp(sym->name, csu_skip_syms[i]))
return true;
}
if (sym->type != ST_LOCAL_FUNC && sym->type != ST_GLOBAL_FUNC && sym->type != ST_WEAK_FUNC)
return true;
return false;
}
static void mcount_patch_func_with_stats(struct mcount_dynamic_info *mdi,
struct uftrace_symbol *sym)
{
switch (mcount_patch_func(mdi, sym, &disasm, min_size)) {
case INSTRUMENT_FAILED:
stats.failed++;
break;
case INSTRUMENT_SKIPPED:
stats.skipped++;
break;
case INSTRUMENT_SUCCESS:
default:
break;
}
stats.total++;
}
static void patch_patchable_func_matched(struct mcount_dynamic_info *mdi, struct uftrace_mmap *map)
{
struct uftrace_symtab *symtab;
unsigned long *patchable_loc = mdi->patch_target;
unsigned i;
struct uftrace_symbol *sym;
char namebuf[BUFSIZ];
struct uftrace_symbol fake_sym = {
.size = UINT_MAX,
.name = namebuf,
};
bool found = false;
int match;
char *soname = get_soname(map->libname);
symtab = &map->mod->symtab;
/*
* If __patchable_function_entries is found, then apply patching
* only to the target addresses found at the section.
*/
for (i = 0; i < mdi->nr_patch_target; i++) {
uint64_t rel_addr = patchable_loc[i];
struct uftrace_symbol *searched_sym = find_sym(symtab, rel_addr);
if (searched_sym == NULL) {
sym = &fake_sym;
sym->addr = rel_addr;
snprintf(sym->name, sizeof(namebuf), "<%lx>", patchable_loc[i]);
}
else {
sym = searched_sym;
if (skip_sym(sym, mdi, map, soname))
continue;
}
found = true;
match = match_pattern_list(map, soname, sym->name);
if (!match)
continue;
else if (match == 1)
mcount_patch_func_with_stats(mdi, sym);
else
mcount_unpatch_func(mdi, sym, NULL);
}
if (!found)
stats.nomatch++;
free(soname);
}
static void patch_normal_func_matched(struct mcount_dynamic_info *mdi, struct uftrace_mmap *map)
{
struct uftrace_symtab *symtab;
unsigned i;
struct uftrace_symbol *sym;
bool found = false;
int match;
char *soname = get_soname(map->libname);
symtab = &map->mod->symtab;
for (i = 0; i < symtab->nr_sym; i++) {
sym = &symtab->sym[i];
if (skip_sym(sym, mdi, map, soname))
continue;
found = true;
match = match_pattern_list(map, soname, sym->name);
if (!match)
continue;
else if (match == 1)
mcount_patch_func_with_stats(mdi, sym);
else
mcount_unpatch_func(mdi, sym, NULL);
}
if (!found)
stats.nomatch++;
free(soname);
}
static void patch_func_matched(struct mcount_dynamic_info *mdi, struct uftrace_mmap *map)
{
/*
* In some cases, the __patchable_function_entries section can be
* removed. For example, -Wl,--gc-sections strips this section.
* In this case, we try patching in patch_normal_func_matched() by
* looping over all the symbols available and check if the function
* begins with NOP patterns for patchable function entry.
*/
if (mdi->type == DYNAMIC_PATCHABLE)
patch_patchable_func_matched(mdi, map);
else
patch_normal_func_matched(mdi, map);
}
static int do_dynamic_update(struct uftrace_sym_info *sinfo, char *patch_funcs,
enum uftrace_pattern_type ptype)
{
struct uftrace_mmap *map;
const char *def_mod;
if (patch_funcs == NULL)
return 0;
def_mod = uftrace_basename(sinfo->exec_map->libname);
parse_pattern_list(patch_funcs, def_mod, ptype);
for_each_map(sinfo, map) {
struct mcount_dynamic_info *mdi;
/* TODO: filter out unsuppported libs */
mdi = setup_trampoline(map);
if (mdi == NULL)
continue;
patch_func_matched(mdi, map);
}
if (stats.failed + stats.skipped + stats.nomatch == 0) {
pr_dbg("patched all (%d) functions in '%s'\n", stats.total,
uftrace_basename(sinfo->filename));
}
return 0;
}
static void freeze_dynamic_update(void)
{
struct mcount_dynamic_info *mdi, *tmp;
mdi = mdinfo;
while (mdi) {
tmp = mdi->next;
mcount_arch_dynamic_recover(mdi, &disasm);
mcount_cleanup_trampoline(mdi);
free(mdi);
mdi = tmp;
}
mcount_freeze_code();
}
/* do not use floating-point in libmcount */
static int calc_percent(int n, int total, int *rem)
{
int quot = 100 * n / total;
*rem = (100 * n - quot * total) * 100 / total;
return quot;
}
int mcount_dynamic_update(struct uftrace_sym_info *sinfo, char *patch_funcs,
enum uftrace_pattern_type ptype)
{
int ret = 0;
char *size_filter;
bool needs_modules = !!strchr(patch_funcs, '@');
mcount_disasm_init(&disasm);
prepare_dynamic_update(sinfo, needs_modules);
size_filter = getenv("UFTRACE_MIN_SIZE");
if (size_filter != NULL)
min_size = strtoul(size_filter, NULL, 0);
ret = do_dynamic_update(sinfo, patch_funcs, ptype);
if (stats.total && (stats.failed || stats.skipped)) {
int success = stats.total - stats.failed - stats.skipped;
int r, q;
pr_dbg("dynamic patch stats for '%s'\n", uftrace_basename(sinfo->filename));
pr_dbg(" total: %8d\n", stats.total);
q = calc_percent(success, stats.total, &r);
pr_dbg(" patched: %8d (%2d.%02d%%)\n", success, q, r);
q = calc_percent(stats.failed, stats.total, &r);
pr_dbg(" failed: %8d (%2d.%02d%%)\n", stats.failed, q, r);
q = calc_percent(stats.skipped, stats.total, &r);
pr_dbg(" skipped: %8d (%2d.%02d%%)\n", stats.skipped, q, r);
pr_dbg("no match: %8d\n", stats.nomatch);
}
freeze_dynamic_update();
return ret;
}
void mcount_dynamic_dlopen(struct uftrace_sym_info *sinfo, struct dl_phdr_info *info,
char *pathname, struct uftrace_mmap *map)
{
struct mcount_dynamic_info *mdi;
if (!match_pattern_module(pathname))
return;
mdi = create_mdi(info);
mdi->map = map;
mcount_arch_find_module(mdi, &map->mod->symtab);
if (mcount_setup_trampoline(mdi) < 0) {
pr_dbg("setup trampoline to %s failed\n", map->libname);
free(mdi);
return;
}
patch_func_matched(mdi, map);
mcount_arch_dynamic_recover(mdi, &disasm);
mcount_cleanup_trampoline(mdi);
free(mdi);
mcount_freeze_code();
}
void mcount_dynamic_finish(void)
{
release_pattern_list();
mcount_disasm_finish(&disasm);
}
struct dynamic_bad_symbol *mcount_find_badsym(struct mcount_dynamic_info *mdi, unsigned long addr)
{
struct uftrace_symbol *sym;
struct dynamic_bad_symbol *badsym;
sym = find_sym(&mdi->map->mod->symtab, addr - mdi->map->start);
if (sym == NULL)
return NULL;
list_for_each_entry(badsym, &mdi->bad_syms, list) {
if (badsym->sym == sym)
return badsym;
}
return NULL;
}
bool mcount_add_badsym(struct mcount_dynamic_info *mdi, unsigned long callsite,
unsigned long target)
{
struct uftrace_symbol *sym;
struct dynamic_bad_symbol *badsym;
if (mcount_find_badsym(mdi, target))
return true;
sym = find_sym(&mdi->map->mod->symtab, target - mdi->map->start);
if (sym == NULL)
return true;
/* only care about jumps to the middle of a function */
if (sym->addr + mdi->map->start == target)
return false;
pr_dbg2("bad jump: %s:%lx to %lx\n", sym ? sym->name : "<unknown>",
callsite - mdi->map->start, target - mdi->map->start);
badsym = xmalloc(sizeof(*badsym));
badsym->sym = sym;
badsym->reverted = false;
list_add_tail(&badsym->list, &mdi->bad_syms);
return true;
}
void mcount_free_badsym(struct mcount_dynamic_info *mdi)
{
struct dynamic_bad_symbol *badsym, *tmp;
list_for_each_entry_safe(badsym, tmp, &mdi->bad_syms, list) {
list_del(&badsym->list);
free(badsym);
}
}
#ifdef UNIT_TEST
TEST_CASE(dynamic_find_code)
{
struct mcount_disasm_info info1 = {
.addr = 0x1000,
.insns = { 0xaa, 0xbb, 0xcc, 0xdd, },
.orig_size = 4,
.copy_size = 4,
};
struct mcount_disasm_info info2 = {
.addr = 0x2000,
.insns = { 0xf1, 0xf2, 0xcc, 0xdd, },
.orig_size = 2,
.copy_size = 4,
};
uint8_t jmp_insn[] = { 0xcc };
uint8_t *insn;
pr_dbg("create hash map to search code\n");
code_hmap = hashmap_create(4, hashmap_ptr_hash, hashmap_ptr_equals);
pr_dbg("save fake code to the hash\n");
mcount_save_code(&info1, 0, jmp_insn, sizeof(jmp_insn));
mcount_save_code(&info2, 0, jmp_insn, sizeof(jmp_insn));
pr_dbg("freeze the code page\n");
mcount_freeze_code();
pr_dbg("finding the first code\n");
insn = mcount_find_code(info1.addr);
TEST_NE(insn, NULL);
TEST_MEMEQ(insn, info1.insns, info1.orig_size);
pr_dbg("finding the second code\n");
insn = mcount_find_code(info2.addr);
TEST_NE(insn, NULL);
TEST_MEMEQ(insn, info2.insns, info2.orig_size);
pr_dbg("release the code page and hash\n");
mcount_release_code();
return TEST_OK;
}
TEST_CASE(dynamic_pattern_list)
{
struct uftrace_mmap *main_map, *other_map;
main_map = xzalloc(sizeof(*main_map) + 16);
strcpy(main_map->libname, "main");
other_map = xzalloc(sizeof(*other_map) + 16);
strcpy(other_map->libname, "other");
pr_dbg("check simple match with default module\n");
parse_pattern_list("abc;!def", "main", PATT_SIMPLE);
TEST_EQ(match_pattern_list(main_map, NULL, "abc"), 1);
TEST_EQ(match_pattern_list(main_map, NULL, "def"), -1);
TEST_EQ(match_pattern_list(other_map, NULL, "xyz"), 0);
release_pattern_list();
pr_dbg("check negative regex match with default module\n");
parse_pattern_list("!^a", "main", PATT_REGEX);
TEST_EQ(match_pattern_list(main_map, NULL, "abc"), -1);
TEST_EQ(match_pattern_list(main_map, NULL, "def"), 0);
TEST_EQ(match_pattern_list(other_map, NULL, "xyz"), 0);
release_pattern_list();
pr_dbg("check wildcard match with other module\n");
parse_pattern_list("*@other", "main", PATT_GLOB);
TEST_EQ(match_pattern_list(main_map, NULL, "abc"), 0);
TEST_EQ(match_pattern_list(main_map, NULL, "def"), 0);
TEST_EQ(match_pattern_list(other_map, NULL, "xyz"), 1);
release_pattern_list();
free(main_map);
free(other_map);
return TEST_OK;
}
struct test_map_data {
struct mcount_dynamic_info *mdi;
};
/* callback for dl_iterate_phdr() */
static int setup_test_map(struct dl_phdr_info *info, size_t sz, void *data)
{
struct test_map_data *tmd = data;
struct mcount_dynamic_info *mdi;
struct uftrace_mmap *map;
struct uftrace_module *mod;
static struct uftrace_symbol syms[] = {
{ 0x100, 0x100, ST_LOCAL_FUNC, "a" },
{ 0x200, 0x100, ST_LOCAL_FUNC, "b" },
{ 0x300, 0x100, ST_LOCAL_FUNC, "c" },
};
mdi = create_mdi(info);
map = xzalloc(sizeof(*map) + 16);
map->start = info->dlpi_addr;
map->end = map->start + 0x1000;
strcpy(map->libname, "main");
map->len = strlen(map->libname);
mcount_memcpy1(map->prot, "r-xp", 4);
mod = xzalloc(sizeof(*mod) + 16);
strcpy(mod->name, "main");
mod->symtab.sym = syms;
mod->symtab.nr_sym = ARRAY_SIZE(syms);
map->mod = mod;
mdi->map = map;
tmd->mdi = mdi;
return 1;
};
static void cleanup_test_map(struct mcount_dynamic_info *mdi)
{
struct uftrace_mmap *map = mdi->map;
struct uftrace_module *mod = map->mod;
free(mod);
free(map);
free(mdi);
}
TEST_CASE(dynamic_find_badsym)
{
struct test_map_data tmd = {};
unsigned long base;
pr_dbg("setup test map info\n");
dl_iterate_phdr(setup_test_map, &tmd);
base = tmd.mdi->map->start;
pr_dbg("adding bad symbols\n");
TEST_EQ(mcount_add_badsym(tmd.mdi, 0, base + 0x100), false);
TEST_EQ(mcount_add_badsym(tmd.mdi, 0, base + 0x234), true);
pr_dbg("finding bad symbols\n");
TEST_EQ(mcount_find_badsym(tmd.mdi, base + 0x100), NULL);
TEST_NE(mcount_find_badsym(tmd.mdi, base + 0x234), NULL); /* found */
TEST_EQ(mcount_find_badsym(tmd.mdi, base + 0x369), NULL);
pr_dbg("cleanup test map info\n");
mcount_free_badsym(tmd.mdi);
cleanup_test_map(tmd.mdi);
return TEST_OK;
}
#endif /* UNIT_TEST */
|