linux/tools/perf/util/probe-event.c
<<
>>
Prefs
   1/*
   2 * probe-event.c : perf-probe definition to probe_events format converter
   3 *
   4 * Written by Masami Hiramatsu <mhiramat@redhat.com>
   5 *
   6 * This program is free software; you can redistribute it and/or modify
   7 * it under the terms of the GNU General Public License as published by
   8 * the Free Software Foundation; either version 2 of the License, or
   9 * (at your option) any later version.
  10 *
  11 * This program is distributed in the hope that it will be useful,
  12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  14 * GNU General Public License for more details.
  15 *
  16 * You should have received a copy of the GNU General Public License
  17 * along with this program; if not, write to the Free Software
  18 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
  19 *
  20 */
  21
  22#include <inttypes.h>
  23#include <sys/utsname.h>
  24#include <sys/types.h>
  25#include <sys/stat.h>
  26#include <fcntl.h>
  27#include <errno.h>
  28#include <stdio.h>
  29#include <unistd.h>
  30#include <stdlib.h>
  31#include <string.h>
  32#include <stdarg.h>
  33#include <limits.h>
  34#include <elf.h>
  35
  36#include "util.h"
  37#include "event.h"
  38#include "strlist.h"
  39#include "strfilter.h"
  40#include "debug.h"
  41#include "cache.h"
  42#include "color.h"
  43#include "symbol.h"
  44#include "thread.h"
  45#include <api/fs/fs.h>
  46#include "trace-event.h"        /* For __maybe_unused */
  47#include "probe-event.h"
  48#include "probe-finder.h"
  49#include "probe-file.h"
  50#include "session.h"
  51#include "string2.h"
  52
  53#include "sane_ctype.h"
  54
  55#define PERFPROBE_GROUP "probe"
  56
  57bool probe_event_dry_run;       /* Dry run flag */
  58struct probe_conf probe_conf;
  59
  60#define semantic_error(msg ...) pr_err("Semantic error :" msg)
  61
  62int e_snprintf(char *str, size_t size, const char *format, ...)
  63{
  64        int ret;
  65        va_list ap;
  66        va_start(ap, format);
  67        ret = vsnprintf(str, size, format, ap);
  68        va_end(ap);
  69        if (ret >= (int)size)
  70                ret = -E2BIG;
  71        return ret;
  72}
  73
  74static struct machine *host_machine;
  75
  76/* Initialize symbol maps and path of vmlinux/modules */
  77int init_probe_symbol_maps(bool user_only)
  78{
  79        int ret;
  80
  81        symbol_conf.sort_by_name = true;
  82        symbol_conf.allow_aliases = true;
  83        ret = symbol__init(NULL);
  84        if (ret < 0) {
  85                pr_debug("Failed to init symbol map.\n");
  86                goto out;
  87        }
  88
  89        if (host_machine || user_only)  /* already initialized */
  90                return 0;
  91
  92        if (symbol_conf.vmlinux_name)
  93                pr_debug("Use vmlinux: %s\n", symbol_conf.vmlinux_name);
  94
  95        host_machine = machine__new_host();
  96        if (!host_machine) {
  97                pr_debug("machine__new_host() failed.\n");
  98                symbol__exit();
  99                ret = -1;
 100        }
 101out:
 102        if (ret < 0)
 103                pr_warning("Failed to init vmlinux path.\n");
 104        return ret;
 105}
 106
 107void exit_probe_symbol_maps(void)
 108{
 109        machine__delete(host_machine);
 110        host_machine = NULL;
 111        symbol__exit();
 112}
 113
 114static struct ref_reloc_sym *kernel_get_ref_reloc_sym(void)
 115{
 116        /* kmap->ref_reloc_sym should be set if host_machine is initialized */
 117        struct kmap *kmap;
 118        struct map *map = machine__kernel_map(host_machine);
 119
 120        if (map__load(map) < 0)
 121                return NULL;
 122
 123        kmap = map__kmap(map);
 124        if (!kmap)
 125                return NULL;
 126        return kmap->ref_reloc_sym;
 127}
 128
 129static int kernel_get_symbol_address_by_name(const char *name, u64 *addr,
 130                                             bool reloc, bool reladdr)
 131{
 132        struct ref_reloc_sym *reloc_sym;
 133        struct symbol *sym;
 134        struct map *map;
 135
 136        /* ref_reloc_sym is just a label. Need a special fix*/
 137        reloc_sym = kernel_get_ref_reloc_sym();
 138        if (reloc_sym && strcmp(name, reloc_sym->name) == 0)
 139                *addr = (reloc) ? reloc_sym->addr : reloc_sym->unrelocated_addr;
 140        else {
 141                sym = machine__find_kernel_symbol_by_name(host_machine, name, &map);
 142                if (!sym)
 143                        return -ENOENT;
 144                *addr = map->unmap_ip(map, sym->start) -
 145                        ((reloc) ? 0 : map->reloc) -
 146                        ((reladdr) ? map->start : 0);
 147        }
 148        return 0;
 149}
 150
 151static struct map *kernel_get_module_map(const char *module)
 152{
 153        struct maps *maps = machine__kernel_maps(host_machine);
 154        struct map *pos;
 155
 156        /* A file path -- this is an offline module */
 157        if (module && strchr(module, '/'))
 158                return dso__new_map(module);
 159
 160        if (!module)
 161                module = "kernel";
 162
 163        for (pos = maps__first(maps); pos; pos = map__next(pos)) {
 164                /* short_name is "[module]" */
 165                if (strncmp(pos->dso->short_name + 1, module,
 166                            pos->dso->short_name_len - 2) == 0 &&
 167                    module[pos->dso->short_name_len - 2] == '\0') {
 168                        return map__get(pos);
 169                }
 170        }
 171        return NULL;
 172}
 173
 174struct map *get_target_map(const char *target, struct nsinfo *nsi, bool user)
 175{
 176        /* Init maps of given executable or kernel */
 177        if (user) {
 178                struct map *map;
 179
 180                map = dso__new_map(target);
 181                if (map && map->dso)
 182                        map->dso->nsinfo = nsinfo__get(nsi);
 183                return map;
 184        } else {
 185                return kernel_get_module_map(target);
 186        }
 187}
 188
 189static int convert_exec_to_group(const char *exec, char **result)
 190{
 191        char *ptr1, *ptr2, *exec_copy;
 192        char buf[64];
 193        int ret;
 194
 195        exec_copy = strdup(exec);
 196        if (!exec_copy)
 197                return -ENOMEM;
 198
 199        ptr1 = basename(exec_copy);
 200        if (!ptr1) {
 201                ret = -EINVAL;
 202                goto out;
 203        }
 204
 205        for (ptr2 = ptr1; *ptr2 != '\0'; ptr2++) {
 206                if (!isalnum(*ptr2) && *ptr2 != '_') {
 207                        *ptr2 = '\0';
 208                        break;
 209                }
 210        }
 211
 212        ret = e_snprintf(buf, 64, "%s_%s", PERFPROBE_GROUP, ptr1);
 213        if (ret < 0)
 214                goto out;
 215
 216        *result = strdup(buf);
 217        ret = *result ? 0 : -ENOMEM;
 218
 219out:
 220        free(exec_copy);
 221        return ret;
 222}
 223
 224static void clear_perf_probe_point(struct perf_probe_point *pp)
 225{
 226        free(pp->file);
 227        free(pp->function);
 228        free(pp->lazy_line);
 229}
 230
 231static void clear_probe_trace_events(struct probe_trace_event *tevs, int ntevs)
 232{
 233        int i;
 234
 235        for (i = 0; i < ntevs; i++)
 236                clear_probe_trace_event(tevs + i);
 237}
 238
 239static bool kprobe_blacklist__listed(unsigned long address);
 240static bool kprobe_warn_out_range(const char *symbol, unsigned long address)
 241{
 242        u64 etext_addr = 0;
 243        int ret;
 244
 245        /* Get the address of _etext for checking non-probable text symbol */
 246        ret = kernel_get_symbol_address_by_name("_etext", &etext_addr,
 247                                                false, false);
 248
 249        if (ret == 0 && etext_addr < address)
 250                pr_warning("%s is out of .text, skip it.\n", symbol);
 251        else if (kprobe_blacklist__listed(address))
 252                pr_warning("%s is blacklisted function, skip it.\n", symbol);
 253        else
 254                return false;
 255
 256        return true;
 257}
 258
 259/*
 260 * @module can be module name of module file path. In case of path,
 261 * inspect elf and find out what is actual module name.
 262 * Caller has to free mod_name after using it.
 263 */
 264static char *find_module_name(const char *module)
 265{
 266        int fd;
 267        Elf *elf;
 268        GElf_Ehdr ehdr;
 269        GElf_Shdr shdr;
 270        Elf_Data *data;
 271        Elf_Scn *sec;
 272        char *mod_name = NULL;
 273        int name_offset;
 274
 275        fd = open(module, O_RDONLY);
 276        if (fd < 0)
 277                return NULL;
 278
 279        elf = elf_begin(fd, PERF_ELF_C_READ_MMAP, NULL);
 280        if (elf == NULL)
 281                goto elf_err;
 282
 283        if (gelf_getehdr(elf, &ehdr) == NULL)
 284                goto ret_err;
 285
 286        sec = elf_section_by_name(elf, &ehdr, &shdr,
 287                        ".gnu.linkonce.this_module", NULL);
 288        if (!sec)
 289                goto ret_err;
 290
 291        data = elf_getdata(sec, NULL);
 292        if (!data || !data->d_buf)
 293                goto ret_err;
 294
 295        /*
 296         * NOTE:
 297         * '.gnu.linkonce.this_module' section of kernel module elf directly
 298         * maps to 'struct module' from linux/module.h. This section contains
 299         * actual module name which will be used by kernel after loading it.
 300         * But, we cannot use 'struct module' here since linux/module.h is not
 301         * exposed to user-space. Offset of 'name' has remained same from long
 302         * time, so hardcoding it here.
 303         */
 304        if (ehdr.e_ident[EI_CLASS] == ELFCLASS32)
 305                name_offset = 12;
 306        else    /* expect ELFCLASS64 by default */
 307                name_offset = 24;
 308
 309        mod_name = strdup((char *)data->d_buf + name_offset);
 310
 311ret_err:
 312        elf_end(elf);
 313elf_err:
 314        close(fd);
 315        return mod_name;
 316}
 317
 318#ifdef HAVE_DWARF_SUPPORT
 319
 320static int kernel_get_module_dso(const char *module, struct dso **pdso)
 321{
 322        struct dso *dso;
 323        struct map *map;
 324        const char *vmlinux_name;
 325        int ret = 0;
 326
 327        if (module) {
 328                char module_name[128];
 329
 330                snprintf(module_name, sizeof(module_name), "[%s]", module);
 331                map = map_groups__find_by_name(&host_machine->kmaps, module_name);
 332                if (map) {
 333                        dso = map->dso;
 334                        goto found;
 335                }
 336                pr_debug("Failed to find module %s.\n", module);
 337                return -ENOENT;
 338        }
 339
 340        map = machine__kernel_map(host_machine);
 341        dso = map->dso;
 342
 343        vmlinux_name = symbol_conf.vmlinux_name;
 344        dso->load_errno = 0;
 345        if (vmlinux_name)
 346                ret = dso__load_vmlinux(dso, map, vmlinux_name, false);
 347        else
 348                ret = dso__load_vmlinux_path(dso, map);
 349found:
 350        *pdso = dso;
 351        return ret;
 352}
 353
 354/*
 355 * Some binaries like glibc have special symbols which are on the symbol
 356 * table, but not in the debuginfo. If we can find the address of the
 357 * symbol from map, we can translate the address back to the probe point.
 358 */
 359static int find_alternative_probe_point(struct debuginfo *dinfo,
 360                                        struct perf_probe_point *pp,
 361                                        struct perf_probe_point *result,
 362                                        const char *target, struct nsinfo *nsi,
 363                                        bool uprobes)
 364{
 365        struct map *map = NULL;
 366        struct symbol *sym;
 367        u64 address = 0;
 368        int ret = -ENOENT;
 369
 370        /* This can work only for function-name based one */
 371        if (!pp->function || pp->file)
 372                return -ENOTSUP;
 373
 374        map = get_target_map(target, nsi, uprobes);
 375        if (!map)
 376                return -EINVAL;
 377
 378        /* Find the address of given function */
 379        map__for_each_symbol_by_name(map, pp->function, sym) {
 380                if (uprobes)
 381                        address = sym->start;
 382                else
 383                        address = map->unmap_ip(map, sym->start) - map->reloc;
 384                break;
 385        }
 386        if (!address) {
 387                ret = -ENOENT;
 388                goto out;
 389        }
 390        pr_debug("Symbol %s address found : %" PRIx64 "\n",
 391                        pp->function, address);
 392
 393        ret = debuginfo__find_probe_point(dinfo, (unsigned long)address,
 394                                          result);
 395        if (ret <= 0)
 396                ret = (!ret) ? -ENOENT : ret;
 397        else {
 398                result->offset += pp->offset;
 399                result->line += pp->line;
 400                result->retprobe = pp->retprobe;
 401                ret = 0;
 402        }
 403
 404out:
 405        map__put(map);
 406        return ret;
 407
 408}
 409
 410static int get_alternative_probe_event(struct debuginfo *dinfo,
 411                                       struct perf_probe_event *pev,
 412                                       struct perf_probe_point *tmp)
 413{
 414        int ret;
 415
 416        memcpy(tmp, &pev->point, sizeof(*tmp));
 417        memset(&pev->point, 0, sizeof(pev->point));
 418        ret = find_alternative_probe_point(dinfo, tmp, &pev->point, pev->target,
 419                                           pev->nsi, pev->uprobes);
 420        if (ret < 0)
 421                memcpy(&pev->point, tmp, sizeof(*tmp));
 422
 423        return ret;
 424}
 425
 426static int get_alternative_line_range(struct debuginfo *dinfo,
 427                                      struct line_range *lr,
 428                                      const char *target, bool user)
 429{
 430        struct perf_probe_point pp = { .function = lr->function,
 431                                       .file = lr->file,
 432                                       .line = lr->start };
 433        struct perf_probe_point result;
 434        int ret, len = 0;
 435
 436        memset(&result, 0, sizeof(result));
 437
 438        if (lr->end != INT_MAX)
 439                len = lr->end - lr->start;
 440        ret = find_alternative_probe_point(dinfo, &pp, &result,
 441                                           target, NULL, user);
 442        if (!ret) {
 443                lr->function = result.function;
 444                lr->file = result.file;
 445                lr->start = result.line;
 446                if (lr->end != INT_MAX)
 447                        lr->end = lr->start + len;
 448                clear_perf_probe_point(&pp);
 449        }
 450        return ret;
 451}
 452
 453/* Open new debuginfo of given module */
 454static struct debuginfo *open_debuginfo(const char *module, struct nsinfo *nsi,
 455                                        bool silent)
 456{
 457        const char *path = module;
 458        char reason[STRERR_BUFSIZE];
 459        struct debuginfo *ret = NULL;
 460        struct dso *dso = NULL;
 461        struct nscookie nsc;
 462        int err;
 463
 464        if (!module || !strchr(module, '/')) {
 465                err = kernel_get_module_dso(module, &dso);
 466                if (err < 0) {
 467                        if (!dso || dso->load_errno == 0) {
 468                                if (!str_error_r(-err, reason, STRERR_BUFSIZE))
 469                                        strcpy(reason, "(unknown)");
 470                        } else
 471                                dso__strerror_load(dso, reason, STRERR_BUFSIZE);
 472                        if (!silent)
 473                                pr_err("Failed to find the path for %s: %s\n",
 474                                        module ?: "kernel", reason);
 475                        return NULL;
 476                }
 477                path = dso->long_name;
 478        }
 479        nsinfo__mountns_enter(nsi, &nsc);
 480        ret = debuginfo__new(path);
 481        if (!ret && !silent) {
 482                pr_warning("The %s file has no debug information.\n", path);
 483                if (!module || !strtailcmp(path, ".ko"))
 484                        pr_warning("Rebuild with CONFIG_DEBUG_INFO=y, ");
 485                else
 486                        pr_warning("Rebuild with -g, ");
 487                pr_warning("or install an appropriate debuginfo package.\n");
 488        }
 489        nsinfo__mountns_exit(&nsc);
 490        return ret;
 491}
 492
 493/* For caching the last debuginfo */
 494static struct debuginfo *debuginfo_cache;
 495static char *debuginfo_cache_path;
 496
 497static struct debuginfo *debuginfo_cache__open(const char *module, bool silent)
 498{
 499        const char *path = module;
 500
 501        /* If the module is NULL, it should be the kernel. */
 502        if (!module)
 503                path = "kernel";
 504
 505        if (debuginfo_cache_path && !strcmp(debuginfo_cache_path, path))
 506                goto out;
 507
 508        /* Copy module path */
 509        free(debuginfo_cache_path);
 510        debuginfo_cache_path = strdup(path);
 511        if (!debuginfo_cache_path) {
 512                debuginfo__delete(debuginfo_cache);
 513                debuginfo_cache = NULL;
 514                goto out;
 515        }
 516
 517        debuginfo_cache = open_debuginfo(module, NULL, silent);
 518        if (!debuginfo_cache)
 519                zfree(&debuginfo_cache_path);
 520out:
 521        return debuginfo_cache;
 522}
 523
 524static void debuginfo_cache__exit(void)
 525{
 526        debuginfo__delete(debuginfo_cache);
 527        debuginfo_cache = NULL;
 528        zfree(&debuginfo_cache_path);
 529}
 530
 531
 532static int get_text_start_address(const char *exec, unsigned long *address,
 533                                  struct nsinfo *nsi)
 534{
 535        Elf *elf;
 536        GElf_Ehdr ehdr;
 537        GElf_Shdr shdr;
 538        int fd, ret = -ENOENT;
 539        struct nscookie nsc;
 540
 541        nsinfo__mountns_enter(nsi, &nsc);
 542        fd = open(exec, O_RDONLY);
 543        nsinfo__mountns_exit(&nsc);
 544        if (fd < 0)
 545                return -errno;
 546
 547        elf = elf_begin(fd, PERF_ELF_C_READ_MMAP, NULL);
 548        if (elf == NULL) {
 549                ret = -EINVAL;
 550                goto out_close;
 551        }
 552
 553        if (gelf_getehdr(elf, &ehdr) == NULL)
 554                goto out;
 555
 556        if (!elf_section_by_name(elf, &ehdr, &shdr, ".text", NULL))
 557                goto out;
 558
 559        *address = shdr.sh_addr - shdr.sh_offset;
 560        ret = 0;
 561out:
 562        elf_end(elf);
 563out_close:
 564        close(fd);
 565
 566        return ret;
 567}
 568
 569/*
 570 * Convert trace point to probe point with debuginfo
 571 */
 572static int find_perf_probe_point_from_dwarf(struct probe_trace_point *tp,
 573                                            struct perf_probe_point *pp,
 574                                            bool is_kprobe)
 575{
 576        struct debuginfo *dinfo = NULL;
 577        unsigned long stext = 0;
 578        u64 addr = tp->address;
 579        int ret = -ENOENT;
 580
 581        /* convert the address to dwarf address */
 582        if (!is_kprobe) {
 583                if (!addr) {
 584                        ret = -EINVAL;
 585                        goto error;
 586                }
 587                ret = get_text_start_address(tp->module, &stext, NULL);
 588                if (ret < 0)
 589                        goto error;
 590                addr += stext;
 591        } else if (tp->symbol) {
 592                /* If the module is given, this returns relative address */
 593                ret = kernel_get_symbol_address_by_name(tp->symbol, &addr,
 594                                                        false, !!tp->module);
 595                if (ret != 0)
 596                        goto error;
 597                addr += tp->offset;
 598        }
 599
 600        pr_debug("try to find information at %" PRIx64 " in %s\n", addr,
 601                 tp->module ? : "kernel");
 602
 603        dinfo = debuginfo_cache__open(tp->module, verbose <= 0);
 604        if (dinfo)
 605                ret = debuginfo__find_probe_point(dinfo,
 606                                                 (unsigned long)addr, pp);
 607        else
 608                ret = -ENOENT;
 609
 610        if (ret > 0) {
 611                pp->retprobe = tp->retprobe;
 612                return 0;
 613        }
 614error:
 615        pr_debug("Failed to find corresponding probes from debuginfo.\n");
 616        return ret ? : -ENOENT;
 617}
 618
 619/* Adjust symbol name and address */
 620static int post_process_probe_trace_point(struct probe_trace_point *tp,
 621                                           struct map *map, unsigned long offs)
 622{
 623        struct symbol *sym;
 624        u64 addr = tp->address - offs;
 625
 626        sym = map__find_symbol(map, addr);
 627        if (!sym)
 628                return -ENOENT;
 629
 630        if (strcmp(sym->name, tp->symbol)) {
 631                /* If we have no realname, use symbol for it */
 632                if (!tp->realname)
 633                        tp->realname = tp->symbol;
 634                else
 635                        free(tp->symbol);
 636                tp->symbol = strdup(sym->name);
 637                if (!tp->symbol)
 638                        return -ENOMEM;
 639        }
 640        tp->offset = addr - sym->start;
 641        tp->address -= offs;
 642
 643        return 0;
 644}
 645
 646/*
 647 * Rename DWARF symbols to ELF symbols -- gcc sometimes optimizes functions
 648 * and generate new symbols with suffixes such as .constprop.N or .isra.N
 649 * etc. Since those symbols are not recorded in DWARF, we have to find
 650 * correct generated symbols from offline ELF binary.
 651 * For online kernel or uprobes we don't need this because those are
 652 * rebased on _text, or already a section relative address.
 653 */
 654static int
 655post_process_offline_probe_trace_events(struct probe_trace_event *tevs,
 656                                        int ntevs, const char *pathname)
 657{
 658        struct map *map;
 659        unsigned long stext = 0;
 660        int i, ret = 0;
 661
 662        /* Prepare a map for offline binary */
 663        map = dso__new_map(pathname);
 664        if (!map || get_text_start_address(pathname, &stext, NULL) < 0) {
 665                pr_warning("Failed to get ELF symbols for %s\n", pathname);
 666                return -EINVAL;
 667        }
 668
 669        for (i = 0; i < ntevs; i++) {
 670                ret = post_process_probe_trace_point(&tevs[i].point,
 671                                                     map, stext);
 672                if (ret < 0)
 673                        break;
 674        }
 675        map__put(map);
 676
 677        return ret;
 678}
 679
 680static int add_exec_to_probe_trace_events(struct probe_trace_event *tevs,
 681                                          int ntevs, const char *exec,
 682                                          struct nsinfo *nsi)
 683{
 684        int i, ret = 0;
 685        unsigned long stext = 0;
 686
 687        if (!exec)
 688                return 0;
 689
 690        ret = get_text_start_address(exec, &stext, nsi);
 691        if (ret < 0)
 692                return ret;
 693
 694        for (i = 0; i < ntevs && ret >= 0; i++) {
 695                /* point.address is the address of point.symbol + point.offset */
 696                tevs[i].point.address -= stext;
 697                tevs[i].point.module = strdup(exec);
 698                if (!tevs[i].point.module) {
 699                        ret = -ENOMEM;
 700                        break;
 701                }
 702                tevs[i].uprobes = true;
 703        }
 704
 705        return ret;
 706}
 707
 708static int
 709post_process_module_probe_trace_events(struct probe_trace_event *tevs,
 710                                       int ntevs, const char *module,
 711                                       struct debuginfo *dinfo)
 712{
 713        Dwarf_Addr text_offs = 0;
 714        int i, ret = 0;
 715        char *mod_name = NULL;
 716        struct map *map;
 717
 718        if (!module)
 719                return 0;
 720
 721        map = get_target_map(module, NULL, false);
 722        if (!map || debuginfo__get_text_offset(dinfo, &text_offs, true) < 0) {
 723                pr_warning("Failed to get ELF symbols for %s\n", module);
 724                return -EINVAL;
 725        }
 726
 727        mod_name = find_module_name(module);
 728        for (i = 0; i < ntevs; i++) {
 729                ret = post_process_probe_trace_point(&tevs[i].point,
 730                                                map, (unsigned long)text_offs);
 731                if (ret < 0)
 732                        break;
 733                tevs[i].point.module =
 734                        strdup(mod_name ? mod_name : module);
 735                if (!tevs[i].point.module) {
 736                        ret = -ENOMEM;
 737                        break;
 738                }
 739        }
 740
 741        free(mod_name);
 742        map__put(map);
 743
 744        return ret;
 745}
 746
 747static int
 748post_process_kernel_probe_trace_events(struct probe_trace_event *tevs,
 749                                       int ntevs)
 750{
 751        struct ref_reloc_sym *reloc_sym;
 752        char *tmp;
 753        int i, skipped = 0;
 754
 755        /* Skip post process if the target is an offline kernel */
 756        if (symbol_conf.ignore_vmlinux_buildid)
 757                return post_process_offline_probe_trace_events(tevs, ntevs,
 758                                                symbol_conf.vmlinux_name);
 759
 760        reloc_sym = kernel_get_ref_reloc_sym();
 761        if (!reloc_sym) {
 762                pr_warning("Relocated base symbol is not found!\n");
 763                return -EINVAL;
 764        }
 765
 766        for (i = 0; i < ntevs; i++) {
 767                if (!tevs[i].point.address)
 768                        continue;
 769                if (tevs[i].point.retprobe && !kretprobe_offset_is_supported())
 770                        continue;
 771                /* If we found a wrong one, mark it by NULL symbol */
 772                if (kprobe_warn_out_range(tevs[i].point.symbol,
 773                                          tevs[i].point.address)) {
 774                        tmp = NULL;
 775                        skipped++;
 776                } else {
 777                        tmp = strdup(reloc_sym->name);
 778                        if (!tmp)
 779                                return -ENOMEM;
 780                }
 781                /* If we have no realname, use symbol for it */
 782                if (!tevs[i].point.realname)
 783                        tevs[i].point.realname = tevs[i].point.symbol;
 784                else
 785                        free(tevs[i].point.symbol);
 786                tevs[i].point.symbol = tmp;
 787                tevs[i].point.offset = tevs[i].point.address -
 788                                       reloc_sym->unrelocated_addr;
 789        }
 790        return skipped;
 791}
 792
 793void __weak
 794arch__post_process_probe_trace_events(struct perf_probe_event *pev __maybe_unused,
 795                                      int ntevs __maybe_unused)
 796{
 797}
 798
 799/* Post processing the probe events */
 800static int post_process_probe_trace_events(struct perf_probe_event *pev,
 801                                           struct probe_trace_event *tevs,
 802                                           int ntevs, const char *module,
 803                                           bool uprobe, struct debuginfo *dinfo)
 804{
 805        int ret;
 806
 807        if (uprobe)
 808                ret = add_exec_to_probe_trace_events(tevs, ntevs, module,
 809                                                     pev->nsi);
 810        else if (module)
 811                /* Currently ref_reloc_sym based probe is not for drivers */
 812                ret = post_process_module_probe_trace_events(tevs, ntevs,
 813                                                             module, dinfo);
 814        else
 815                ret = post_process_kernel_probe_trace_events(tevs, ntevs);
 816
 817        if (ret >= 0)
 818                arch__post_process_probe_trace_events(pev, ntevs);
 819
 820        return ret;
 821}
 822
 823/* Try to find perf_probe_event with debuginfo */
 824static int try_to_find_probe_trace_events(struct perf_probe_event *pev,
 825                                          struct probe_trace_event **tevs)
 826{
 827        bool need_dwarf = perf_probe_event_need_dwarf(pev);
 828        struct perf_probe_point tmp;
 829        struct debuginfo *dinfo;
 830        int ntevs, ret = 0;
 831
 832        dinfo = open_debuginfo(pev->target, pev->nsi, !need_dwarf);
 833        if (!dinfo) {
 834                if (need_dwarf)
 835                        return -ENOENT;
 836                pr_debug("Could not open debuginfo. Try to use symbols.\n");
 837                return 0;
 838        }
 839
 840        pr_debug("Try to find probe point from debuginfo.\n");
 841        /* Searching trace events corresponding to a probe event */
 842        ntevs = debuginfo__find_trace_events(dinfo, pev, tevs);
 843
 844        if (ntevs == 0) {  /* Not found, retry with an alternative */
 845                ret = get_alternative_probe_event(dinfo, pev, &tmp);
 846                if (!ret) {
 847                        ntevs = debuginfo__find_trace_events(dinfo, pev, tevs);
 848                        /*
 849                         * Write back to the original probe_event for
 850                         * setting appropriate (user given) event name
 851                         */
 852                        clear_perf_probe_point(&pev->point);
 853                        memcpy(&pev->point, &tmp, sizeof(tmp));
 854                }
 855        }
 856
 857        if (ntevs > 0) {        /* Succeeded to find trace events */
 858                pr_debug("Found %d probe_trace_events.\n", ntevs);
 859                ret = post_process_probe_trace_events(pev, *tevs, ntevs,
 860                                        pev->target, pev->uprobes, dinfo);
 861                if (ret < 0 || ret == ntevs) {
 862                        pr_debug("Post processing failed or all events are skipped. (%d)\n", ret);
 863                        clear_probe_trace_events(*tevs, ntevs);
 864                        zfree(tevs);
 865                        ntevs = 0;
 866                }
 867        }
 868
 869        debuginfo__delete(dinfo);
 870
 871        if (ntevs == 0) {       /* No error but failed to find probe point. */
 872                pr_warning("Probe point '%s' not found.\n",
 873                           synthesize_perf_probe_point(&pev->point));
 874                return -ENOENT;
 875        } else if (ntevs < 0) {
 876                /* Error path : ntevs < 0 */
 877                pr_debug("An error occurred in debuginfo analysis (%d).\n", ntevs);
 878                if (ntevs == -EBADF)
 879                        pr_warning("Warning: No dwarf info found in the vmlinux - "
 880                                "please rebuild kernel with CONFIG_DEBUG_INFO=y.\n");
 881                if (!need_dwarf) {
 882                        pr_debug("Trying to use symbols.\n");
 883                        return 0;
 884                }
 885        }
 886        return ntevs;
 887}
 888
 889#define LINEBUF_SIZE 256
 890#define NR_ADDITIONAL_LINES 2
 891
 892static int __show_one_line(FILE *fp, int l, bool skip, bool show_num)
 893{
 894        char buf[LINEBUF_SIZE], sbuf[STRERR_BUFSIZE];
 895        const char *color = show_num ? "" : PERF_COLOR_BLUE;
 896        const char *prefix = NULL;
 897
 898        do {
 899                if (fgets(buf, LINEBUF_SIZE, fp) == NULL)
 900                        goto error;
 901                if (skip)
 902                        continue;
 903                if (!prefix) {
 904                        prefix = show_num ? "%7d  " : "         ";
 905                        color_fprintf(stdout, color, prefix, l);
 906                }
 907                color_fprintf(stdout, color, "%s", buf);
 908
 909        } while (strchr(buf, '\n') == NULL);
 910
 911        return 1;
 912error:
 913        if (ferror(fp)) {
 914                pr_warning("File read error: %s\n",
 915                           str_error_r(errno, sbuf, sizeof(sbuf)));
 916                return -1;
 917        }
 918        return 0;
 919}
 920
 921static int _show_one_line(FILE *fp, int l, bool skip, bool show_num)
 922{
 923        int rv = __show_one_line(fp, l, skip, show_num);
 924        if (rv == 0) {
 925                pr_warning("Source file is shorter than expected.\n");
 926                rv = -1;
 927        }
 928        return rv;
 929}
 930
 931#define show_one_line_with_num(f,l)     _show_one_line(f,l,false,true)
 932#define show_one_line(f,l)              _show_one_line(f,l,false,false)
 933#define skip_one_line(f,l)              _show_one_line(f,l,true,false)
 934#define show_one_line_or_eof(f,l)       __show_one_line(f,l,false,false)
 935
 936/*
 937 * Show line-range always requires debuginfo to find source file and
 938 * line number.
 939 */
 940static int __show_line_range(struct line_range *lr, const char *module,
 941                             bool user)
 942{
 943        int l = 1;
 944        struct int_node *ln;
 945        struct debuginfo *dinfo;
 946        FILE *fp;
 947        int ret;
 948        char *tmp;
 949        char sbuf[STRERR_BUFSIZE];
 950
 951        /* Search a line range */
 952        dinfo = open_debuginfo(module, NULL, false);
 953        if (!dinfo)
 954                return -ENOENT;
 955
 956        ret = debuginfo__find_line_range(dinfo, lr);
 957        if (!ret) {     /* Not found, retry with an alternative */
 958                ret = get_alternative_line_range(dinfo, lr, module, user);
 959                if (!ret)
 960                        ret = debuginfo__find_line_range(dinfo, lr);
 961        }
 962        debuginfo__delete(dinfo);
 963        if (ret == 0 || ret == -ENOENT) {
 964                pr_warning("Specified source line is not found.\n");
 965                return -ENOENT;
 966        } else if (ret < 0) {
 967                pr_warning("Debuginfo analysis failed.\n");
 968                return ret;
 969        }
 970
 971        /* Convert source file path */
 972        tmp = lr->path;
 973        ret = get_real_path(tmp, lr->comp_dir, &lr->path);
 974
 975        /* Free old path when new path is assigned */
 976        if (tmp != lr->path)
 977                free(tmp);
 978
 979        if (ret < 0) {
 980                pr_warning("Failed to find source file path.\n");
 981                return ret;
 982        }
 983
 984        setup_pager();
 985
 986        if (lr->function)
 987                fprintf(stdout, "<%s@%s:%d>\n", lr->function, lr->path,
 988                        lr->start - lr->offset);
 989        else
 990                fprintf(stdout, "<%s:%d>\n", lr->path, lr->start);
 991
 992        fp = fopen(lr->path, "r");
 993        if (fp == NULL) {
 994                pr_warning("Failed to open %s: %s\n", lr->path,
 995                           str_error_r(errno, sbuf, sizeof(sbuf)));
 996                return -errno;
 997        }
 998        /* Skip to starting line number */
 999        while (l < lr->start) {
1000                ret = skip_one_line(fp, l++);
1001                if (ret < 0)
1002                        goto end;
1003        }
1004
1005        intlist__for_each_entry(ln, lr->line_list) {
1006                for (; ln->i > l; l++) {
1007                        ret = show_one_line(fp, l - lr->offset);
1008                        if (ret < 0)
1009                                goto end;
1010                }
1011                ret = show_one_line_with_num(fp, l++ - lr->offset);
1012                if (ret < 0)
1013                        goto end;
1014        }
1015
1016        if (lr->end == INT_MAX)
1017                lr->end = l + NR_ADDITIONAL_LINES;
1018        while (l <= lr->end) {
1019                ret = show_one_line_or_eof(fp, l++ - lr->offset);
1020                if (ret <= 0)
1021                        break;
1022        }
1023end:
1024        fclose(fp);
1025        return ret;
1026}
1027
1028int show_line_range(struct line_range *lr, const char *module,
1029                    struct nsinfo *nsi, bool user)
1030{
1031        int ret;
1032        struct nscookie nsc;
1033
1034        ret = init_probe_symbol_maps(user);
1035        if (ret < 0)
1036                return ret;
1037        nsinfo__mountns_enter(nsi, &nsc);
1038        ret = __show_line_range(lr, module, user);
1039        nsinfo__mountns_exit(&nsc);
1040        exit_probe_symbol_maps();
1041
1042        return ret;
1043}
1044
1045static int show_available_vars_at(struct debuginfo *dinfo,
1046                                  struct perf_probe_event *pev,
1047                                  struct strfilter *_filter)
1048{
1049        char *buf;
1050        int ret, i, nvars;
1051        struct str_node *node;
1052        struct variable_list *vls = NULL, *vl;
1053        struct perf_probe_point tmp;
1054        const char *var;
1055
1056        buf = synthesize_perf_probe_point(&pev->point);
1057        if (!buf)
1058                return -EINVAL;
1059        pr_debug("Searching variables at %s\n", buf);
1060
1061        ret = debuginfo__find_available_vars_at(dinfo, pev, &vls);
1062        if (!ret) {  /* Not found, retry with an alternative */
1063                ret = get_alternative_probe_event(dinfo, pev, &tmp);
1064                if (!ret) {
1065                        ret = debuginfo__find_available_vars_at(dinfo, pev,
1066                                                                &vls);
1067                        /* Release the old probe_point */
1068                        clear_perf_probe_point(&tmp);
1069                }
1070        }
1071        if (ret <= 0) {
1072                if (ret == 0 || ret == -ENOENT) {
1073                        pr_err("Failed to find the address of %s\n", buf);
1074                        ret = -ENOENT;
1075                } else
1076                        pr_warning("Debuginfo analysis failed.\n");
1077                goto end;
1078        }
1079
1080        /* Some variables are found */
1081        fprintf(stdout, "Available variables at %s\n", buf);
1082        for (i = 0; i < ret; i++) {
1083                vl = &vls[i];
1084                /*
1085                 * A probe point might be converted to
1086                 * several trace points.
1087                 */
1088                fprintf(stdout, "\t@<%s+%lu>\n", vl->point.symbol,
1089                        vl->point.offset);
1090                zfree(&vl->point.symbol);
1091                nvars = 0;
1092                if (vl->vars) {
1093                        strlist__for_each_entry(node, vl->vars) {
1094                                var = strchr(node->s, '\t') + 1;
1095                                if (strfilter__compare(_filter, var)) {
1096                                        fprintf(stdout, "\t\t%s\n", node->s);
1097                                        nvars++;
1098                                }
1099                        }
1100                        strlist__delete(vl->vars);
1101                }
1102                if (nvars == 0)
1103                        fprintf(stdout, "\t\t(No matched variables)\n");
1104        }
1105        free(vls);
1106end:
1107        free(buf);
1108        return ret;
1109}
1110
1111/* Show available variables on given probe point */
1112int show_available_vars(struct perf_probe_event *pevs, int npevs,
1113                        struct strfilter *_filter)
1114{
1115        int i, ret = 0;
1116        struct debuginfo *dinfo;
1117
1118        ret = init_probe_symbol_maps(pevs->uprobes);
1119        if (ret < 0)
1120                return ret;
1121
1122        dinfo = open_debuginfo(pevs->target, pevs->nsi, false);
1123        if (!dinfo) {
1124                ret = -ENOENT;
1125                goto out;
1126        }
1127
1128        setup_pager();
1129
1130        for (i = 0; i < npevs && ret >= 0; i++)
1131                ret = show_available_vars_at(dinfo, &pevs[i], _filter);
1132
1133        debuginfo__delete(dinfo);
1134out:
1135        exit_probe_symbol_maps();
1136        return ret;
1137}
1138
1139#else   /* !HAVE_DWARF_SUPPORT */
1140
1141static void debuginfo_cache__exit(void)
1142{
1143}
1144
1145static int
1146find_perf_probe_point_from_dwarf(struct probe_trace_point *tp __maybe_unused,
1147                                 struct perf_probe_point *pp __maybe_unused,
1148                                 bool is_kprobe __maybe_unused)
1149{
1150        return -ENOSYS;
1151}
1152
1153static int try_to_find_probe_trace_events(struct perf_probe_event *pev,
1154                                struct probe_trace_event **tevs __maybe_unused)
1155{
1156        if (perf_probe_event_need_dwarf(pev)) {
1157                pr_warning("Debuginfo-analysis is not supported.\n");
1158                return -ENOSYS;
1159        }
1160
1161        return 0;
1162}
1163
1164int show_line_range(struct line_range *lr __maybe_unused,
1165                    const char *module __maybe_unused,
1166                    struct nsinfo *nsi __maybe_unused,
1167                    bool user __maybe_unused)
1168{
1169        pr_warning("Debuginfo-analysis is not supported.\n");
1170        return -ENOSYS;
1171}
1172
1173int show_available_vars(struct perf_probe_event *pevs __maybe_unused,
1174                        int npevs __maybe_unused,
1175                        struct strfilter *filter __maybe_unused)
1176{
1177        pr_warning("Debuginfo-analysis is not supported.\n");
1178        return -ENOSYS;
1179}
1180#endif
1181
1182void line_range__clear(struct line_range *lr)
1183{
1184        free(lr->function);
1185        free(lr->file);
1186        free(lr->path);
1187        free(lr->comp_dir);
1188        intlist__delete(lr->line_list);
1189        memset(lr, 0, sizeof(*lr));
1190}
1191
1192int line_range__init(struct line_range *lr)
1193{
1194        memset(lr, 0, sizeof(*lr));
1195        lr->line_list = intlist__new(NULL);
1196        if (!lr->line_list)
1197                return -ENOMEM;
1198        else
1199                return 0;
1200}
1201
1202static int parse_line_num(char **ptr, int *val, const char *what)
1203{
1204        const char *start = *ptr;
1205
1206        errno = 0;
1207        *val = strtol(*ptr, ptr, 0);
1208        if (errno || *ptr == start) {
1209                semantic_error("'%s' is not a valid number.\n", what);
1210                return -EINVAL;
1211        }
1212        return 0;
1213}
1214
1215/* Check the name is good for event, group or function */
1216static bool is_c_func_name(const char *name)
1217{
1218        if (!isalpha(*name) && *name != '_')
1219                return false;
1220        while (*++name != '\0') {
1221                if (!isalpha(*name) && !isdigit(*name) && *name != '_')
1222                        return false;
1223        }
1224        return true;
1225}
1226
1227/*
1228 * Stuff 'lr' according to the line range described by 'arg'.
1229 * The line range syntax is described by:
1230 *
1231 *         SRC[:SLN[+NUM|-ELN]]
1232 *         FNC[@SRC][:SLN[+NUM|-ELN]]
1233 */
1234int parse_line_range_desc(const char *arg, struct line_range *lr)
1235{
1236        char *range, *file, *name = strdup(arg);
1237        int err;
1238
1239        if (!name)
1240                return -ENOMEM;
1241
1242        lr->start = 0;
1243        lr->end = INT_MAX;
1244
1245        range = strchr(name, ':');
1246        if (range) {
1247                *range++ = '\0';
1248
1249                err = parse_line_num(&range, &lr->start, "start line");
1250                if (err)
1251                        goto err;
1252
1253                if (*range == '+' || *range == '-') {
1254                        const char c = *range++;
1255
1256                        err = parse_line_num(&range, &lr->end, "end line");
1257                        if (err)
1258                                goto err;
1259
1260                        if (c == '+') {
1261                                lr->end += lr->start;
1262                                /*
1263                                 * Adjust the number of lines here.
1264                                 * If the number of lines == 1, the
1265                                 * the end of line should be equal to
1266                                 * the start of line.
1267                                 */
1268                                lr->end--;
1269                        }
1270                }
1271
1272                pr_debug("Line range is %d to %d\n", lr->start, lr->end);
1273
1274                err = -EINVAL;
1275                if (lr->start > lr->end) {
1276                        semantic_error("Start line must be smaller"
1277                                       " than end line.\n");
1278                        goto err;
1279                }
1280                if (*range != '\0') {
1281                        semantic_error("Tailing with invalid str '%s'.\n", range);
1282                        goto err;
1283                }
1284        }
1285
1286        file = strchr(name, '@');
1287        if (file) {
1288                *file = '\0';
1289                lr->file = strdup(++file);
1290                if (lr->file == NULL) {
1291                        err = -ENOMEM;
1292                        goto err;
1293                }
1294                lr->function = name;
1295        } else if (strchr(name, '/') || strchr(name, '.'))
1296                lr->file = name;
1297        else if (is_c_func_name(name))/* We reuse it for checking funcname */
1298                lr->function = name;
1299        else {  /* Invalid name */
1300                semantic_error("'%s' is not a valid function name.\n", name);
1301                err = -EINVAL;
1302                goto err;
1303        }
1304
1305        return 0;
1306err:
1307        free(name);
1308        return err;
1309}
1310
1311static int parse_perf_probe_event_name(char **arg, struct perf_probe_event *pev)
1312{
1313        char *ptr;
1314
1315        ptr = strpbrk_esc(*arg, ":");
1316        if (ptr) {
1317                *ptr = '\0';
1318                if (!pev->sdt && !is_c_func_name(*arg))
1319                        goto ng_name;
1320                pev->group = strdup_esc(*arg);
1321                if (!pev->group)
1322                        return -ENOMEM;
1323                *arg = ptr + 1;
1324        } else
1325                pev->group = NULL;
1326
1327        pev->event = strdup_esc(*arg);
1328        if (pev->event == NULL)
1329                return -ENOMEM;
1330
1331        if (!pev->sdt && !is_c_func_name(pev->event)) {
1332                zfree(&pev->event);
1333ng_name:
1334                zfree(&pev->group);
1335                semantic_error("%s is bad for event name -it must "
1336                               "follow C symbol-naming rule.\n", *arg);
1337                return -EINVAL;
1338        }
1339        return 0;
1340}
1341
1342/* Parse probepoint definition. */
1343static int parse_perf_probe_point(char *arg, struct perf_probe_event *pev)
1344{
1345        struct perf_probe_point *pp = &pev->point;
1346        char *ptr, *tmp;
1347        char c, nc = 0;
1348        bool file_spec = false;
1349        int ret;
1350
1351        /*
1352         * <Syntax>
1353         * perf probe [GRP:][EVENT=]SRC[:LN|;PTN]
1354         * perf probe [GRP:][EVENT=]FUNC[@SRC][+OFFS|%return|:LN|;PAT]
1355         * perf probe %[GRP:]SDT_EVENT
1356         */
1357        if (!arg)
1358                return -EINVAL;
1359
1360        if (is_sdt_event(arg)) {
1361                pev->sdt = true;
1362                if (arg[0] == '%')
1363                        arg++;
1364        }
1365
1366        ptr = strpbrk_esc(arg, ";=@+%");
1367        if (pev->sdt) {
1368                if (ptr) {
1369                        if (*ptr != '@') {
1370                                semantic_error("%s must be an SDT name.\n",
1371                                               arg);
1372                                return -EINVAL;
1373                        }
1374                        /* This must be a target file name or build id */
1375                        tmp = build_id_cache__complement(ptr + 1);
1376                        if (tmp) {
1377                                pev->target = build_id_cache__origname(tmp);
1378                                free(tmp);
1379                        } else
1380                                pev->target = strdup_esc(ptr + 1);
1381                        if (!pev->target)
1382                                return -ENOMEM;
1383                        *ptr = '\0';
1384                }
1385                ret = parse_perf_probe_event_name(&arg, pev);
1386                if (ret == 0) {
1387                        if (asprintf(&pev->point.function, "%%%s", pev->event) < 0)
1388                                ret = -errno;
1389                }
1390                return ret;
1391        }
1392
1393        if (ptr && *ptr == '=') {       /* Event name */
1394                *ptr = '\0';
1395                tmp = ptr + 1;
1396                ret = parse_perf_probe_event_name(&arg, pev);
1397                if (ret < 0)
1398                        return ret;
1399
1400                arg = tmp;
1401        }
1402
1403        /*
1404         * Check arg is function or file name and copy it.
1405         *
1406         * We consider arg to be a file spec if and only if it satisfies
1407         * all of the below criteria::
1408         * - it does not include any of "+@%",
1409         * - it includes one of ":;", and
1410         * - it has a period '.' in the name.
1411         *
1412         * Otherwise, we consider arg to be a function specification.
1413         */
1414        if (!strpbrk_esc(arg, "+@%")) {
1415                ptr = strpbrk_esc(arg, ";:");
1416                /* This is a file spec if it includes a '.' before ; or : */
1417                if (ptr && memchr(arg, '.', ptr - arg))
1418                        file_spec = true;
1419        }
1420
1421        ptr = strpbrk_esc(arg, ";:+@%");
1422        if (ptr) {
1423                nc = *ptr;
1424                *ptr++ = '\0';
1425        }
1426
1427        if (arg[0] == '\0')
1428                tmp = NULL;
1429        else {
1430                tmp = strdup_esc(arg);
1431                if (tmp == NULL)
1432                        return -ENOMEM;
1433        }
1434
1435        if (file_spec)
1436                pp->file = tmp;
1437        else {
1438                pp->function = tmp;
1439
1440                /*
1441                 * Keep pp->function even if this is absolute address,
1442                 * so it can mark whether abs_address is valid.
1443                 * Which make 'perf probe lib.bin 0x0' possible.
1444                 *
1445                 * Note that checking length of tmp is not needed
1446                 * because when we access tmp[1] we know tmp[0] is '0',
1447                 * so tmp[1] should always valid (but could be '\0').
1448                 */
1449                if (tmp && !strncmp(tmp, "0x", 2)) {
1450                        pp->abs_address = strtoul(pp->function, &tmp, 0);
1451                        if (*tmp != '\0') {
1452                                semantic_error("Invalid absolute address.\n");
1453                                return -EINVAL;
1454                        }
1455                }
1456        }
1457
1458        /* Parse other options */
1459        while (ptr) {
1460                arg = ptr;
1461                c = nc;
1462                if (c == ';') { /* Lazy pattern must be the last part */
1463                        pp->lazy_line = strdup(arg); /* let leave escapes */
1464                        if (pp->lazy_line == NULL)
1465                                return -ENOMEM;
1466                        break;
1467                }
1468                ptr = strpbrk_esc(arg, ";:+@%");
1469                if (ptr) {
1470                        nc = *ptr;
1471                        *ptr++ = '\0';
1472                }
1473                switch (c) {
1474                case ':':       /* Line number */
1475                        pp->line = strtoul(arg, &tmp, 0);
1476                        if (*tmp != '\0') {
1477                                semantic_error("There is non-digit char"
1478                                               " in line number.\n");
1479                                return -EINVAL;
1480                        }
1481                        break;
1482                case '+':       /* Byte offset from a symbol */
1483                        pp->offset = strtoul(arg, &tmp, 0);
1484                        if (*tmp != '\0') {
1485                                semantic_error("There is non-digit character"
1486                                                " in offset.\n");
1487                                return -EINVAL;
1488                        }
1489                        break;
1490                case '@':       /* File name */
1491                        if (pp->file) {
1492                                semantic_error("SRC@SRC is not allowed.\n");
1493                                return -EINVAL;
1494                        }
1495                        pp->file = strdup_esc(arg);
1496                        if (pp->file == NULL)
1497                                return -ENOMEM;
1498                        break;
1499                case '%':       /* Probe places */
1500                        if (strcmp(arg, "return") == 0) {
1501                                pp->retprobe = 1;
1502                        } else {        /* Others not supported yet */
1503                                semantic_error("%%%s is not supported.\n", arg);
1504                                return -ENOTSUP;
1505                        }
1506                        break;
1507                default:        /* Buggy case */
1508                        pr_err("This program has a bug at %s:%d.\n",
1509                                __FILE__, __LINE__);
1510                        return -ENOTSUP;
1511                        break;
1512                }
1513        }
1514
1515        /* Exclusion check */
1516        if (pp->lazy_line && pp->line) {
1517                semantic_error("Lazy pattern can't be used with"
1518                               " line number.\n");
1519                return -EINVAL;
1520        }
1521
1522        if (pp->lazy_line && pp->offset) {
1523                semantic_error("Lazy pattern can't be used with offset.\n");
1524                return -EINVAL;
1525        }
1526
1527        if (pp->line && pp->offset) {
1528                semantic_error("Offset can't be used with line number.\n");
1529                return -EINVAL;
1530        }
1531
1532        if (!pp->line && !pp->lazy_line && pp->file && !pp->function) {
1533                semantic_error("File always requires line number or "
1534                               "lazy pattern.\n");
1535                return -EINVAL;
1536        }
1537
1538        if (pp->offset && !pp->function) {
1539                semantic_error("Offset requires an entry function.\n");
1540                return -EINVAL;
1541        }
1542
1543        if ((pp->offset || pp->line || pp->lazy_line) && pp->retprobe) {
1544                semantic_error("Offset/Line/Lazy pattern can't be used with "
1545                               "return probe.\n");
1546                return -EINVAL;
1547        }
1548
1549        pr_debug("symbol:%s file:%s line:%d offset:%lu return:%d lazy:%s\n",
1550                 pp->function, pp->file, pp->line, pp->offset, pp->retprobe,
1551                 pp->lazy_line);
1552        return 0;
1553}
1554
1555/* Parse perf-probe event argument */
1556static int parse_perf_probe_arg(char *str, struct perf_probe_arg *arg)
1557{
1558        char *tmp, *goodname;
1559        struct perf_probe_arg_field **fieldp;
1560
1561        pr_debug("parsing arg: %s into ", str);
1562
1563        tmp = strchr(str, '=');
1564        if (tmp) {
1565                arg->name = strndup(str, tmp - str);
1566                if (arg->name == NULL)
1567                        return -ENOMEM;
1568                pr_debug("name:%s ", arg->name);
1569                str = tmp + 1;
1570        }
1571
1572        tmp = strchr(str, ':');
1573        if (tmp) {      /* Type setting */
1574                *tmp = '\0';
1575                arg->type = strdup(tmp + 1);
1576                if (arg->type == NULL)
1577                        return -ENOMEM;
1578                pr_debug("type:%s ", arg->type);
1579        }
1580
1581        tmp = strpbrk(str, "-.[");
1582        if (!is_c_varname(str) || !tmp) {
1583                /* A variable, register, symbol or special value */
1584                arg->var = strdup(str);
1585                if (arg->var == NULL)
1586                        return -ENOMEM;
1587                pr_debug("%s\n", arg->var);
1588                return 0;
1589        }
1590
1591        /* Structure fields or array element */
1592        arg->var = strndup(str, tmp - str);
1593        if (arg->var == NULL)
1594                return -ENOMEM;
1595        goodname = arg->var;
1596        pr_debug("%s, ", arg->var);
1597        fieldp = &arg->field;
1598
1599        do {
1600                *fieldp = zalloc(sizeof(struct perf_probe_arg_field));
1601                if (*fieldp == NULL)
1602                        return -ENOMEM;
1603                if (*tmp == '[') {      /* Array */
1604                        str = tmp;
1605                        (*fieldp)->index = strtol(str + 1, &tmp, 0);
1606                        (*fieldp)->ref = true;
1607                        if (*tmp != ']' || tmp == str + 1) {
1608                                semantic_error("Array index must be a"
1609                                                " number.\n");
1610                                return -EINVAL;
1611                        }
1612                        tmp++;
1613                        if (*tmp == '\0')
1614                                tmp = NULL;
1615                } else {                /* Structure */
1616                        if (*tmp == '.') {
1617                                str = tmp + 1;
1618                                (*fieldp)->ref = false;
1619                        } else if (tmp[1] == '>') {
1620                                str = tmp + 2;
1621                                (*fieldp)->ref = true;
1622                        } else {
1623                                semantic_error("Argument parse error: %s\n",
1624                                               str);
1625                                return -EINVAL;
1626                        }
1627                        tmp = strpbrk(str, "-.[");
1628                }
1629                if (tmp) {
1630                        (*fieldp)->name = strndup(str, tmp - str);
1631                        if ((*fieldp)->name == NULL)
1632                                return -ENOMEM;
1633                        if (*str != '[')
1634                                goodname = (*fieldp)->name;
1635                        pr_debug("%s(%d), ", (*fieldp)->name, (*fieldp)->ref);
1636                        fieldp = &(*fieldp)->next;
1637                }
1638        } while (tmp);
1639        (*fieldp)->name = strdup(str);
1640        if ((*fieldp)->name == NULL)
1641                return -ENOMEM;
1642        if (*str != '[')
1643                goodname = (*fieldp)->name;
1644        pr_debug("%s(%d)\n", (*fieldp)->name, (*fieldp)->ref);
1645
1646        /* If no name is specified, set the last field name (not array index)*/
1647        if (!arg->name) {
1648                arg->name = strdup(goodname);
1649                if (arg->name == NULL)
1650                        return -ENOMEM;
1651        }
1652        return 0;
1653}
1654
1655/* Parse perf-probe event command */
1656int parse_perf_probe_command(const char *cmd, struct perf_probe_event *pev)
1657{
1658        char **argv;
1659        int argc, i, ret = 0;
1660
1661        argv = argv_split(cmd, &argc);
1662        if (!argv) {
1663                pr_debug("Failed to split arguments.\n");
1664                return -ENOMEM;
1665        }
1666        if (argc - 1 > MAX_PROBE_ARGS) {
1667                semantic_error("Too many probe arguments (%d).\n", argc - 1);
1668                ret = -ERANGE;
1669                goto out;
1670        }
1671        /* Parse probe point */
1672        ret = parse_perf_probe_point(argv[0], pev);
1673        if (ret < 0)
1674                goto out;
1675
1676        /* Copy arguments and ensure return probe has no C argument */
1677        pev->nargs = argc - 1;
1678        pev->args = zalloc(sizeof(struct perf_probe_arg) * pev->nargs);
1679        if (pev->args == NULL) {
1680                ret = -ENOMEM;
1681                goto out;
1682        }
1683        for (i = 0; i < pev->nargs && ret >= 0; i++) {
1684                ret = parse_perf_probe_arg(argv[i + 1], &pev->args[i]);
1685                if (ret >= 0 &&
1686                    is_c_varname(pev->args[i].var) && pev->point.retprobe) {
1687                        semantic_error("You can't specify local variable for"
1688                                       " kretprobe.\n");
1689                        ret = -EINVAL;
1690                }
1691        }
1692out:
1693        argv_free(argv);
1694
1695        return ret;
1696}
1697
1698/* Returns true if *any* ARG is either C variable, $params or $vars. */
1699bool perf_probe_with_var(struct perf_probe_event *pev)
1700{
1701        int i = 0;
1702
1703        for (i = 0; i < pev->nargs; i++)
1704                if (is_c_varname(pev->args[i].var)              ||
1705                    !strcmp(pev->args[i].var, PROBE_ARG_PARAMS) ||
1706                    !strcmp(pev->args[i].var, PROBE_ARG_VARS))
1707                        return true;
1708        return false;
1709}
1710
1711/* Return true if this perf_probe_event requires debuginfo */
1712bool perf_probe_event_need_dwarf(struct perf_probe_event *pev)
1713{
1714        if (pev->point.file || pev->point.line || pev->point.lazy_line)
1715                return true;
1716
1717        if (perf_probe_with_var(pev))
1718                return true;
1719
1720        return false;
1721}
1722
1723/* Parse probe_events event into struct probe_point */
1724int parse_probe_trace_command(const char *cmd, struct probe_trace_event *tev)
1725{
1726        struct probe_trace_point *tp = &tev->point;
1727        char pr;
1728        char *p;
1729        char *argv0_str = NULL, *fmt, *fmt1_str, *fmt2_str, *fmt3_str;
1730        int ret, i, argc;
1731        char **argv;
1732
1733        pr_debug("Parsing probe_events: %s\n", cmd);
1734        argv = argv_split(cmd, &argc);
1735        if (!argv) {
1736                pr_debug("Failed to split arguments.\n");
1737                return -ENOMEM;
1738        }
1739        if (argc < 2) {
1740                semantic_error("Too few probe arguments.\n");
1741                ret = -ERANGE;
1742                goto out;
1743        }
1744
1745        /* Scan event and group name. */
1746        argv0_str = strdup(argv[0]);
1747        if (argv0_str == NULL) {
1748                ret = -ENOMEM;
1749                goto out;
1750        }
1751        fmt1_str = strtok_r(argv0_str, ":", &fmt);
1752        fmt2_str = strtok_r(NULL, "/", &fmt);
1753        fmt3_str = strtok_r(NULL, " \t", &fmt);
1754        if (fmt1_str == NULL || strlen(fmt1_str) != 1 || fmt2_str == NULL
1755            || fmt3_str == NULL) {
1756                semantic_error("Failed to parse event name: %s\n", argv[0]);
1757                ret = -EINVAL;
1758                goto out;
1759        }
1760        pr = fmt1_str[0];
1761        tev->group = strdup(fmt2_str);
1762        tev->event = strdup(fmt3_str);
1763        if (tev->group == NULL || tev->event == NULL) {
1764                ret = -ENOMEM;
1765                goto out;
1766        }
1767        pr_debug("Group:%s Event:%s probe:%c\n", tev->group, tev->event, pr);
1768
1769        tp->retprobe = (pr == 'r');
1770
1771        /* Scan module name(if there), function name and offset */
1772        p = strchr(argv[1], ':');
1773        if (p) {
1774                tp->module = strndup(argv[1], p - argv[1]);
1775                if (!tp->module) {
1776                        ret = -ENOMEM;
1777                        goto out;
1778                }
1779                tev->uprobes = (tp->module[0] == '/');
1780                p++;
1781        } else
1782                p = argv[1];
1783        fmt1_str = strtok_r(p, "+", &fmt);
1784        /* only the address started with 0x */
1785        if (fmt1_str[0] == '0') {
1786                /*
1787                 * Fix a special case:
1788                 * if address == 0, kernel reports something like:
1789                 * p:probe_libc/abs_0 /lib/libc-2.18.so:0x          (null) arg1=%ax
1790                 * Newer kernel may fix that, but we want to
1791                 * support old kernel also.
1792                 */
1793                if (strcmp(fmt1_str, "0x") == 0) {
1794                        if (!argv[2] || strcmp(argv[2], "(null)")) {
1795                                ret = -EINVAL;
1796                                goto out;
1797                        }
1798                        tp->address = 0;
1799
1800                        free(argv[2]);
1801                        for (i = 2; argv[i + 1] != NULL; i++)
1802                                argv[i] = argv[i + 1];
1803
1804                        argv[i] = NULL;
1805                        argc -= 1;
1806                } else
1807                        tp->address = strtoul(fmt1_str, NULL, 0);
1808        } else {
1809                /* Only the symbol-based probe has offset */
1810                tp->symbol = strdup(fmt1_str);
1811                if (tp->symbol == NULL) {
1812                        ret = -ENOMEM;
1813                        goto out;
1814                }
1815                fmt2_str = strtok_r(NULL, "", &fmt);
1816                if (fmt2_str == NULL)
1817                        tp->offset = 0;
1818                else
1819                        tp->offset = strtoul(fmt2_str, NULL, 10);
1820        }
1821
1822        if (tev->uprobes) {
1823                fmt2_str = strchr(p, '(');
1824                if (fmt2_str)
1825                        tp->ref_ctr_offset = strtoul(fmt2_str + 1, NULL, 0);
1826        }
1827
1828        tev->nargs = argc - 2;
1829        tev->args = zalloc(sizeof(struct probe_trace_arg) * tev->nargs);
1830        if (tev->args == NULL) {
1831                ret = -ENOMEM;
1832                goto out;
1833        }
1834        for (i = 0; i < tev->nargs; i++) {
1835                p = strchr(argv[i + 2], '=');
1836                if (p)  /* We don't need which register is assigned. */
1837                        *p++ = '\0';
1838                else
1839                        p = argv[i + 2];
1840                tev->args[i].name = strdup(argv[i + 2]);
1841                /* TODO: parse regs and offset */
1842                tev->args[i].value = strdup(p);
1843                if (tev->args[i].name == NULL || tev->args[i].value == NULL) {
1844                        ret = -ENOMEM;
1845                        goto out;
1846                }
1847        }
1848        ret = 0;
1849out:
1850        free(argv0_str);
1851        argv_free(argv);
1852        return ret;
1853}
1854
1855/* Compose only probe arg */
1856char *synthesize_perf_probe_arg(struct perf_probe_arg *pa)
1857{
1858        struct perf_probe_arg_field *field = pa->field;
1859        struct strbuf buf;
1860        char *ret = NULL;
1861        int err;
1862
1863        if (strbuf_init(&buf, 64) < 0)
1864                return NULL;
1865
1866        if (pa->name && pa->var)
1867                err = strbuf_addf(&buf, "%s=%s", pa->name, pa->var);
1868        else
1869                err = strbuf_addstr(&buf, pa->name ?: pa->var);
1870        if (err)
1871                goto out;
1872
1873        while (field) {
1874                if (field->name[0] == '[')
1875                        err = strbuf_addstr(&buf, field->name);
1876                else
1877                        err = strbuf_addf(&buf, "%s%s", field->ref ? "->" : ".",
1878                                          field->name);
1879                field = field->next;
1880                if (err)
1881                        goto out;
1882        }
1883
1884        if (pa->type)
1885                if (strbuf_addf(&buf, ":%s", pa->type) < 0)
1886                        goto out;
1887
1888        ret = strbuf_detach(&buf, NULL);
1889out:
1890        strbuf_release(&buf);
1891        return ret;
1892}
1893
1894/* Compose only probe point (not argument) */
1895char *synthesize_perf_probe_point(struct perf_probe_point *pp)
1896{
1897        struct strbuf buf;
1898        char *tmp, *ret = NULL;
1899        int len, err = 0;
1900
1901        if (strbuf_init(&buf, 64) < 0)
1902                return NULL;
1903
1904        if (pp->function) {
1905                if (strbuf_addstr(&buf, pp->function) < 0)
1906                        goto out;
1907                if (pp->offset)
1908                        err = strbuf_addf(&buf, "+%lu", pp->offset);
1909                else if (pp->line)
1910                        err = strbuf_addf(&buf, ":%d", pp->line);
1911                else if (pp->retprobe)
1912                        err = strbuf_addstr(&buf, "%return");
1913                if (err)
1914                        goto out;
1915        }
1916        if (pp->file) {
1917                tmp = pp->file;
1918                len = strlen(tmp);
1919                if (len > 30) {
1920                        tmp = strchr(pp->file + len - 30, '/');
1921                        tmp = tmp ? tmp + 1 : pp->file + len - 30;
1922                }
1923                err = strbuf_addf(&buf, "@%s", tmp);
1924                if (!err && !pp->function && pp->line)
1925                        err = strbuf_addf(&buf, ":%d", pp->line);
1926        }
1927        if (!err)
1928                ret = strbuf_detach(&buf, NULL);
1929out:
1930        strbuf_release(&buf);
1931        return ret;
1932}
1933
1934char *synthesize_perf_probe_command(struct perf_probe_event *pev)
1935{
1936        struct strbuf buf;
1937        char *tmp, *ret = NULL;
1938        int i;
1939
1940        if (strbuf_init(&buf, 64))
1941                return NULL;
1942        if (pev->event)
1943                if (strbuf_addf(&buf, "%s:%s=", pev->group ?: PERFPROBE_GROUP,
1944                                pev->event) < 0)
1945                        goto out;
1946
1947        tmp = synthesize_perf_probe_point(&pev->point);
1948        if (!tmp || strbuf_addstr(&buf, tmp) < 0)
1949                goto out;
1950        free(tmp);
1951
1952        for (i = 0; i < pev->nargs; i++) {
1953                tmp = synthesize_perf_probe_arg(pev->args + i);
1954                if (!tmp || strbuf_addf(&buf, " %s", tmp) < 0)
1955                        goto out;
1956                free(tmp);
1957        }
1958
1959        ret = strbuf_detach(&buf, NULL);
1960out:
1961        strbuf_release(&buf);
1962        return ret;
1963}
1964
1965static int __synthesize_probe_trace_arg_ref(struct probe_trace_arg_ref *ref,
1966                                            struct strbuf *buf, int depth)
1967{
1968        int err;
1969        if (ref->next) {
1970                depth = __synthesize_probe_trace_arg_ref(ref->next, buf,
1971                                                         depth + 1);
1972                if (depth < 0)
1973                        return depth;
1974        }
1975        err = strbuf_addf(buf, "%+ld(", ref->offset);
1976        return (err < 0) ? err : depth;
1977}
1978
1979static int synthesize_probe_trace_arg(struct probe_trace_arg *arg,
1980                                      struct strbuf *buf)
1981{
1982        struct probe_trace_arg_ref *ref = arg->ref;
1983        int depth = 0, err;
1984
1985        /* Argument name or separator */
1986        if (arg->name)
1987                err = strbuf_addf(buf, " %s=", arg->name);
1988        else
1989                err = strbuf_addch(buf, ' ');
1990        if (err)
1991                return err;
1992
1993        /* Special case: @XXX */
1994        if (arg->value[0] == '@' && arg->ref)
1995                        ref = ref->next;
1996
1997        /* Dereferencing arguments */
1998        if (ref) {
1999                depth = __synthesize_probe_trace_arg_ref(ref, buf, 1);
2000                if (depth < 0)
2001                        return depth;
2002        }
2003
2004        /* Print argument value */
2005        if (arg->value[0] == '@' && arg->ref)
2006                err = strbuf_addf(buf, "%s%+ld", arg->value, arg->ref->offset);
2007        else
2008                err = strbuf_addstr(buf, arg->value);
2009
2010        /* Closing */
2011        while (!err && depth--)
2012                err = strbuf_addch(buf, ')');
2013
2014        /* Print argument type */
2015        if (!err && arg->type)
2016                err = strbuf_addf(buf, ":%s", arg->type);
2017
2018        return err;
2019}
2020
2021static int
2022synthesize_uprobe_trace_def(struct probe_trace_event *tev, struct strbuf *buf)
2023{
2024        struct probe_trace_point *tp = &tev->point;
2025        int err;
2026
2027        err = strbuf_addf(buf, "%s:0x%lx", tp->module, tp->address);
2028
2029        if (err >= 0 && tp->ref_ctr_offset) {
2030                if (!uprobe_ref_ctr_is_supported())
2031                        return -1;
2032                err = strbuf_addf(buf, "(0x%lx)", tp->ref_ctr_offset);
2033        }
2034        return err >= 0 ? 0 : -1;
2035}
2036
2037char *synthesize_probe_trace_command(struct probe_trace_event *tev)
2038{
2039        struct probe_trace_point *tp = &tev->point;
2040        struct strbuf buf;
2041        char *ret = NULL;
2042        int i, err;
2043
2044        /* Uprobes must have tp->module */
2045        if (tev->uprobes && !tp->module)
2046                return NULL;
2047
2048        if (strbuf_init(&buf, 32) < 0)
2049                return NULL;
2050
2051        if (strbuf_addf(&buf, "%c:%s/%s ", tp->retprobe ? 'r' : 'p',
2052                        tev->group, tev->event) < 0)
2053                goto error;
2054        /*
2055         * If tp->address == 0, then this point must be a
2056         * absolute address uprobe.
2057         * try_to_find_absolute_address() should have made
2058         * tp->symbol to "0x0".
2059         */
2060        if (tev->uprobes && !tp->address) {
2061                if (!tp->symbol || strcmp(tp->symbol, "0x0"))
2062                        goto error;
2063        }
2064
2065        /* Use the tp->address for uprobes */
2066        if (tev->uprobes) {
2067                err = synthesize_uprobe_trace_def(tev, &buf);
2068        } else if (!strncmp(tp->symbol, "0x", 2)) {
2069                /* Absolute address. See try_to_find_absolute_address() */
2070                err = strbuf_addf(&buf, "%s%s0x%lx", tp->module ?: "",
2071                                  tp->module ? ":" : "", tp->address);
2072        } else {
2073                err = strbuf_addf(&buf, "%s%s%s+%lu", tp->module ?: "",
2074                                tp->module ? ":" : "", tp->symbol, tp->offset);
2075        }
2076
2077        if (err)
2078                goto error;
2079
2080        for (i = 0; i < tev->nargs; i++)
2081                if (synthesize_probe_trace_arg(&tev->args[i], &buf) < 0)
2082                        goto error;
2083
2084        ret = strbuf_detach(&buf, NULL);
2085error:
2086        strbuf_release(&buf);
2087        return ret;
2088}
2089
2090static int find_perf_probe_point_from_map(struct probe_trace_point *tp,
2091                                          struct perf_probe_point *pp,
2092                                          bool is_kprobe)
2093{
2094        struct symbol *sym = NULL;
2095        struct map *map = NULL;
2096        u64 addr = tp->address;
2097        int ret = -ENOENT;
2098
2099        if (!is_kprobe) {
2100                map = dso__new_map(tp->module);
2101                if (!map)
2102                        goto out;
2103                sym = map__find_symbol(map, addr);
2104        } else {
2105                if (tp->symbol && !addr) {
2106                        if (kernel_get_symbol_address_by_name(tp->symbol,
2107                                                &addr, true, false) < 0)
2108                                goto out;
2109                }
2110                if (addr) {
2111                        addr += tp->offset;
2112                        sym = machine__find_kernel_symbol(host_machine, addr, &map);
2113                }
2114        }
2115
2116        if (!sym)
2117                goto out;
2118
2119        pp->retprobe = tp->retprobe;
2120        pp->offset = addr - map->unmap_ip(map, sym->start);
2121        pp->function = strdup(sym->name);
2122        ret = pp->function ? 0 : -ENOMEM;
2123
2124out:
2125        if (map && !is_kprobe) {
2126                map__put(map);
2127        }
2128
2129        return ret;
2130}
2131
2132static int convert_to_perf_probe_point(struct probe_trace_point *tp,
2133                                       struct perf_probe_point *pp,
2134                                       bool is_kprobe)
2135{
2136        char buf[128];
2137        int ret;
2138
2139        ret = find_perf_probe_point_from_dwarf(tp, pp, is_kprobe);
2140        if (!ret)
2141                return 0;
2142        ret = find_perf_probe_point_from_map(tp, pp, is_kprobe);
2143        if (!ret)
2144                return 0;
2145
2146        pr_debug("Failed to find probe point from both of dwarf and map.\n");
2147
2148        if (tp->symbol) {
2149                pp->function = strdup(tp->symbol);
2150                pp->offset = tp->offset;
2151        } else {
2152                ret = e_snprintf(buf, 128, "0x%" PRIx64, (u64)tp->address);
2153                if (ret < 0)
2154                        return ret;
2155                pp->function = strdup(buf);
2156                pp->offset = 0;
2157        }
2158        if (pp->function == NULL)
2159                return -ENOMEM;
2160
2161        pp->retprobe = tp->retprobe;
2162
2163        return 0;
2164}
2165
2166static int convert_to_perf_probe_event(struct probe_trace_event *tev,
2167                               struct perf_probe_event *pev, bool is_kprobe)
2168{
2169        struct strbuf buf = STRBUF_INIT;
2170        int i, ret;
2171
2172        /* Convert event/group name */
2173        pev->event = strdup(tev->event);
2174        pev->group = strdup(tev->group);
2175        if (pev->event == NULL || pev->group == NULL)
2176                return -ENOMEM;
2177
2178        /* Convert trace_point to probe_point */
2179        ret = convert_to_perf_probe_point(&tev->point, &pev->point, is_kprobe);
2180        if (ret < 0)
2181                return ret;
2182
2183        /* Convert trace_arg to probe_arg */
2184        pev->nargs = tev->nargs;
2185        pev->args = zalloc(sizeof(struct perf_probe_arg) * pev->nargs);
2186        if (pev->args == NULL)
2187                return -ENOMEM;
2188        for (i = 0; i < tev->nargs && ret >= 0; i++) {
2189                if (tev->args[i].name)
2190                        pev->args[i].name = strdup(tev->args[i].name);
2191                else {
2192                        if ((ret = strbuf_init(&buf, 32)) < 0)
2193                                goto error;
2194                        ret = synthesize_probe_trace_arg(&tev->args[i], &buf);
2195                        pev->args[i].name = strbuf_detach(&buf, NULL);
2196                }
2197                if (pev->args[i].name == NULL && ret >= 0)
2198                        ret = -ENOMEM;
2199        }
2200error:
2201        if (ret < 0)
2202                clear_perf_probe_event(pev);
2203
2204        return ret;
2205}
2206
2207void clear_perf_probe_event(struct perf_probe_event *pev)
2208{
2209        struct perf_probe_arg_field *field, *next;
2210        int i;
2211
2212        free(pev->event);
2213        free(pev->group);
2214        free(pev->target);
2215        clear_perf_probe_point(&pev->point);
2216
2217        for (i = 0; i < pev->nargs; i++) {
2218                free(pev->args[i].name);
2219                free(pev->args[i].var);
2220                free(pev->args[i].type);
2221                field = pev->args[i].field;
2222                while (field) {
2223                        next = field->next;
2224                        zfree(&field->name);
2225                        free(field);
2226                        field = next;
2227                }
2228        }
2229        free(pev->args);
2230        memset(pev, 0, sizeof(*pev));
2231}
2232
2233#define strdup_or_goto(str, label)      \
2234({ char *__p = NULL; if (str && !(__p = strdup(str))) goto label; __p; })
2235
2236static int perf_probe_point__copy(struct perf_probe_point *dst,
2237                                  struct perf_probe_point *src)
2238{
2239        dst->file = strdup_or_goto(src->file, out_err);
2240        dst->function = strdup_or_goto(src->function, out_err);
2241        dst->lazy_line = strdup_or_goto(src->lazy_line, out_err);
2242        dst->line = src->line;
2243        dst->retprobe = src->retprobe;
2244        dst->offset = src->offset;
2245        return 0;
2246
2247out_err:
2248        clear_perf_probe_point(dst);
2249        return -ENOMEM;
2250}
2251
2252static int perf_probe_arg__copy(struct perf_probe_arg *dst,
2253                                struct perf_probe_arg *src)
2254{
2255        struct perf_probe_arg_field *field, **ppfield;
2256
2257        dst->name = strdup_or_goto(src->name, out_err);
2258        dst->var = strdup_or_goto(src->var, out_err);
2259        dst->type = strdup_or_goto(src->type, out_err);
2260
2261        field = src->field;
2262        ppfield = &(dst->field);
2263        while (field) {
2264                *ppfield = zalloc(sizeof(*field));
2265                if (!*ppfield)
2266                        goto out_err;
2267                (*ppfield)->name = strdup_or_goto(field->name, out_err);
2268                (*ppfield)->index = field->index;
2269                (*ppfield)->ref = field->ref;
2270                field = field->next;
2271                ppfield = &((*ppfield)->next);
2272        }
2273        return 0;
2274out_err:
2275        return -ENOMEM;
2276}
2277
2278int perf_probe_event__copy(struct perf_probe_event *dst,
2279                           struct perf_probe_event *src)
2280{
2281        int i;
2282
2283        dst->event = strdup_or_goto(src->event, out_err);
2284        dst->group = strdup_or_goto(src->group, out_err);
2285        dst->target = strdup_or_goto(src->target, out_err);
2286        dst->uprobes = src->uprobes;
2287
2288        if (perf_probe_point__copy(&dst->point, &src->point) < 0)
2289                goto out_err;
2290
2291        dst->args = zalloc(sizeof(struct perf_probe_arg) * src->nargs);
2292        if (!dst->args)
2293                goto out_err;
2294        dst->nargs = src->nargs;
2295
2296        for (i = 0; i < src->nargs; i++)
2297                if (perf_probe_arg__copy(&dst->args[i], &src->args[i]) < 0)
2298                        goto out_err;
2299        return 0;
2300
2301out_err:
2302        clear_perf_probe_event(dst);
2303        return -ENOMEM;
2304}
2305
2306void clear_probe_trace_event(struct probe_trace_event *tev)
2307{
2308        struct probe_trace_arg_ref *ref, *next;
2309        int i;
2310
2311        free(tev->event);
2312        free(tev->group);
2313        free(tev->point.symbol);
2314        free(tev->point.realname);
2315        free(tev->point.module);
2316        for (i = 0; i < tev->nargs; i++) {
2317                free(tev->args[i].name);
2318                free(tev->args[i].value);
2319                free(tev->args[i].type);
2320                ref = tev->args[i].ref;
2321                while (ref) {
2322                        next = ref->next;
2323                        free(ref);
2324                        ref = next;
2325                }
2326        }
2327        free(tev->args);
2328        memset(tev, 0, sizeof(*tev));
2329}
2330
2331struct kprobe_blacklist_node {
2332        struct list_head list;
2333        unsigned long start;
2334        unsigned long end;
2335        char *symbol;
2336};
2337
2338static void kprobe_blacklist__delete(struct list_head *blacklist)
2339{
2340        struct kprobe_blacklist_node *node;
2341
2342        while (!list_empty(blacklist)) {
2343                node = list_first_entry(blacklist,
2344                                        struct kprobe_blacklist_node, list);
2345                list_del(&node->list);
2346                free(node->symbol);
2347                free(node);
2348        }
2349}
2350
2351static int kprobe_blacklist__load(struct list_head *blacklist)
2352{
2353        struct kprobe_blacklist_node *node;
2354        const char *__debugfs = debugfs__mountpoint();
2355        char buf[PATH_MAX], *p;
2356        FILE *fp;
2357        int ret;
2358
2359        if (__debugfs == NULL)
2360                return -ENOTSUP;
2361
2362        ret = e_snprintf(buf, PATH_MAX, "%s/kprobes/blacklist", __debugfs);
2363        if (ret < 0)
2364                return ret;
2365
2366        fp = fopen(buf, "r");
2367        if (!fp)
2368                return -errno;
2369
2370        ret = 0;
2371        while (fgets(buf, PATH_MAX, fp)) {
2372                node = zalloc(sizeof(*node));
2373                if (!node) {
2374                        ret = -ENOMEM;
2375                        break;
2376                }
2377                INIT_LIST_HEAD(&node->list);
2378                list_add_tail(&node->list, blacklist);
2379                if (sscanf(buf, "0x%lx-0x%lx", &node->start, &node->end) != 2) {
2380                        ret = -EINVAL;
2381                        break;
2382                }
2383                p = strchr(buf, '\t');
2384                if (p) {
2385                        p++;
2386                        if (p[strlen(p) - 1] == '\n')
2387                                p[strlen(p) - 1] = '\0';
2388                } else
2389                        p = (char *)"unknown";
2390                node->symbol = strdup(p);
2391                if (!node->symbol) {
2392                        ret = -ENOMEM;
2393                        break;
2394                }
2395                pr_debug2("Blacklist: 0x%lx-0x%lx, %s\n",
2396                          node->start, node->end, node->symbol);
2397                ret++;
2398        }
2399        if (ret < 0)
2400                kprobe_blacklist__delete(blacklist);
2401        fclose(fp);
2402
2403        return ret;
2404}
2405
2406static struct kprobe_blacklist_node *
2407kprobe_blacklist__find_by_address(struct list_head *blacklist,
2408                                  unsigned long address)
2409{
2410        struct kprobe_blacklist_node *node;
2411
2412        list_for_each_entry(node, blacklist, list) {
2413                if (node->start <= address && address < node->end)
2414                        return node;
2415        }
2416
2417        return NULL;
2418}
2419
2420static LIST_HEAD(kprobe_blacklist);
2421
2422static void kprobe_blacklist__init(void)
2423{
2424        if (!list_empty(&kprobe_blacklist))
2425                return;
2426
2427        if (kprobe_blacklist__load(&kprobe_blacklist) < 0)
2428                pr_debug("No kprobe blacklist support, ignored\n");
2429}
2430
2431static void kprobe_blacklist__release(void)
2432{
2433        kprobe_blacklist__delete(&kprobe_blacklist);
2434}
2435
2436static bool kprobe_blacklist__listed(unsigned long address)
2437{
2438        return !!kprobe_blacklist__find_by_address(&kprobe_blacklist, address);
2439}
2440
2441static int perf_probe_event__sprintf(const char *group, const char *event,
2442                                     struct perf_probe_event *pev,
2443                                     const char *module,
2444                                     struct strbuf *result)
2445{
2446        int i, ret;
2447        char *buf;
2448
2449        if (asprintf(&buf, "%s:%s", group, event) < 0)
2450                return -errno;
2451        ret = strbuf_addf(result, "  %-20s (on ", buf);
2452        free(buf);
2453        if (ret)
2454                return ret;
2455
2456        /* Synthesize only event probe point */
2457        buf = synthesize_perf_probe_point(&pev->point);
2458        if (!buf)
2459                return -ENOMEM;
2460        ret = strbuf_addstr(result, buf);
2461        free(buf);
2462
2463        if (!ret && module)
2464                ret = strbuf_addf(result, " in %s", module);
2465
2466        if (!ret && pev->nargs > 0) {
2467                ret = strbuf_add(result, " with", 5);
2468                for (i = 0; !ret && i < pev->nargs; i++) {
2469                        buf = synthesize_perf_probe_arg(&pev->args[i]);
2470                        if (!buf)
2471                                return -ENOMEM;
2472                        ret = strbuf_addf(result, " %s", buf);
2473                        free(buf);
2474                }
2475        }
2476        if (!ret)
2477                ret = strbuf_addch(result, ')');
2478
2479        return ret;
2480}
2481
2482/* Show an event */
2483int show_perf_probe_event(const char *group, const char *event,
2484                          struct perf_probe_event *pev,
2485                          const char *module, bool use_stdout)
2486{
2487        struct strbuf buf = STRBUF_INIT;
2488        int ret;
2489
2490        ret = perf_probe_event__sprintf(group, event, pev, module, &buf);
2491        if (ret >= 0) {
2492                if (use_stdout)
2493                        printf("%s\n", buf.buf);
2494                else
2495                        pr_info("%s\n", buf.buf);
2496        }
2497        strbuf_release(&buf);
2498
2499        return ret;
2500}
2501
2502static bool filter_probe_trace_event(struct probe_trace_event *tev,
2503                                     struct strfilter *filter)
2504{
2505        char tmp[128];
2506
2507        /* At first, check the event name itself */
2508        if (strfilter__compare(filter, tev->event))
2509                return true;
2510
2511        /* Next, check the combination of name and group */
2512        if (e_snprintf(tmp, 128, "%s:%s", tev->group, tev->event) < 0)
2513                return false;
2514        return strfilter__compare(filter, tmp);
2515}
2516
2517static int __show_perf_probe_events(int fd, bool is_kprobe,
2518                                    struct strfilter *filter)
2519{
2520        int ret = 0;
2521        struct probe_trace_event tev;
2522        struct perf_probe_event pev;
2523        struct strlist *rawlist;
2524        struct str_node *ent;
2525
2526        memset(&tev, 0, sizeof(tev));
2527        memset(&pev, 0, sizeof(pev));
2528
2529        rawlist = probe_file__get_rawlist(fd);
2530        if (!rawlist)
2531                return -ENOMEM;
2532
2533        strlist__for_each_entry(ent, rawlist) {
2534                ret = parse_probe_trace_command(ent->s, &tev);
2535                if (ret >= 0) {
2536                        if (!filter_probe_trace_event(&tev, filter))
2537                                goto next;
2538                        ret = convert_to_perf_probe_event(&tev, &pev,
2539                                                                is_kprobe);
2540                        if (ret < 0)
2541                                goto next;
2542                        ret = show_perf_probe_event(pev.group, pev.event,
2543                                                    &pev, tev.point.module,
2544                                                    true);
2545                }
2546next:
2547                clear_perf_probe_event(&pev);
2548                clear_probe_trace_event(&tev);
2549                if (ret < 0)
2550                        break;
2551        }
2552        strlist__delete(rawlist);
2553        /* Cleanup cached debuginfo if needed */
2554        debuginfo_cache__exit();
2555
2556        return ret;
2557}
2558
2559/* List up current perf-probe events */
2560int show_perf_probe_events(struct strfilter *filter)
2561{
2562        int kp_fd, up_fd, ret;
2563
2564        setup_pager();
2565
2566        if (probe_conf.cache)
2567                return probe_cache__show_all_caches(filter);
2568
2569        ret = init_probe_symbol_maps(false);
2570        if (ret < 0)
2571                return ret;
2572
2573        ret = probe_file__open_both(&kp_fd, &up_fd, 0);
2574        if (ret < 0)
2575                return ret;
2576
2577        if (kp_fd >= 0)
2578                ret = __show_perf_probe_events(kp_fd, true, filter);
2579        if (up_fd >= 0 && ret >= 0)
2580                ret = __show_perf_probe_events(up_fd, false, filter);
2581        if (kp_fd > 0)
2582                close(kp_fd);
2583        if (up_fd > 0)
2584                close(up_fd);
2585        exit_probe_symbol_maps();
2586
2587        return ret;
2588}
2589
2590static int get_new_event_name(char *buf, size_t len, const char *base,
2591                              struct strlist *namelist, bool ret_event,
2592                              bool allow_suffix)
2593{
2594        int i, ret;
2595        char *p, *nbase;
2596
2597        if (*base == '.')
2598                base++;
2599        nbase = strdup(base);
2600        if (!nbase)
2601                return -ENOMEM;
2602
2603        /* Cut off the dot suffixes (e.g. .const, .isra) and version suffixes */
2604        p = strpbrk(nbase, ".@");
2605        if (p && p != nbase)
2606                *p = '\0';
2607
2608        /* Try no suffix number */
2609        ret = e_snprintf(buf, len, "%s%s", nbase, ret_event ? "__return" : "");
2610        if (ret < 0) {
2611                pr_debug("snprintf() failed: %d\n", ret);
2612                goto out;
2613        }
2614        if (!strlist__has_entry(namelist, buf))
2615                goto out;
2616
2617        if (!allow_suffix) {
2618                pr_warning("Error: event \"%s\" already exists.\n"
2619                           " Hint: Remove existing event by 'perf probe -d'\n"
2620                           "       or force duplicates by 'perf probe -f'\n"
2621                           "       or set 'force=yes' in BPF source.\n",
2622                           buf);
2623                ret = -EEXIST;
2624                goto out;
2625        }
2626
2627        /* Try to add suffix */
2628        for (i = 1; i < MAX_EVENT_INDEX; i++) {
2629                ret = e_snprintf(buf, len, "%s_%d", nbase, i);
2630                if (ret < 0) {
2631                        pr_debug("snprintf() failed: %d\n", ret);
2632                        goto out;
2633                }
2634                if (!strlist__has_entry(namelist, buf))
2635                        break;
2636        }
2637        if (i == MAX_EVENT_INDEX) {
2638                pr_warning("Too many events are on the same function.\n");
2639                ret = -ERANGE;
2640        }
2641
2642out:
2643        free(nbase);
2644
2645        /* Final validation */
2646        if (ret >= 0 && !is_c_func_name(buf)) {
2647                pr_warning("Internal error: \"%s\" is an invalid event name.\n",
2648                           buf);
2649                ret = -EINVAL;
2650        }
2651
2652        return ret;
2653}
2654
2655/* Warn if the current kernel's uprobe implementation is old */
2656static void warn_uprobe_event_compat(struct probe_trace_event *tev)
2657{
2658        int i;
2659        char *buf = synthesize_probe_trace_command(tev);
2660        struct probe_trace_point *tp = &tev->point;
2661
2662        if (tp->ref_ctr_offset && !uprobe_ref_ctr_is_supported()) {
2663                pr_warning("A semaphore is associated with %s:%s and "
2664                           "seems your kernel doesn't support it.\n",
2665                           tev->group, tev->event);
2666        }
2667
2668        /* Old uprobe event doesn't support memory dereference */
2669        if (!tev->uprobes || tev->nargs == 0 || !buf)
2670                goto out;
2671
2672        for (i = 0; i < tev->nargs; i++)
2673                if (strglobmatch(tev->args[i].value, "[$@+-]*")) {
2674                        pr_warning("Please upgrade your kernel to at least "
2675                                   "3.14 to have access to feature %s\n",
2676                                   tev->args[i].value);
2677                        break;
2678                }
2679out:
2680        free(buf);
2681}
2682
2683/* Set new name from original perf_probe_event and namelist */
2684static int probe_trace_event__set_name(struct probe_trace_event *tev,
2685                                       struct perf_probe_event *pev,
2686                                       struct strlist *namelist,
2687                                       bool allow_suffix)
2688{
2689        const char *event, *group;
2690        char buf[64];
2691        int ret;
2692
2693        /* If probe_event or trace_event already have the name, reuse it */
2694        if (pev->event && !pev->sdt)
2695                event = pev->event;
2696        else if (tev->event)
2697                event = tev->event;
2698        else {
2699                /* Or generate new one from probe point */
2700                if (pev->point.function &&
2701                        (strncmp(pev->point.function, "0x", 2) != 0) &&
2702                        !strisglob(pev->point.function))
2703                        event = pev->point.function;
2704                else
2705                        event = tev->point.realname;
2706        }
2707        if (pev->group && !pev->sdt)
2708                group = pev->group;
2709        else if (tev->group)
2710                group = tev->group;
2711        else
2712                group = PERFPROBE_GROUP;
2713
2714        /* Get an unused new event name */
2715        ret = get_new_event_name(buf, 64, event, namelist,
2716                                 tev->point.retprobe, allow_suffix);
2717        if (ret < 0)
2718                return ret;
2719
2720        event = buf;
2721
2722        tev->event = strdup(event);
2723        tev->group = strdup(group);
2724        if (tev->event == NULL || tev->group == NULL)
2725                return -ENOMEM;
2726
2727        /* Add added event name to namelist */
2728        strlist__add(namelist, event);
2729        return 0;
2730}
2731
2732static int __open_probe_file_and_namelist(bool uprobe,
2733                                          struct strlist **namelist)
2734{
2735        int fd;
2736
2737        fd = probe_file__open(PF_FL_RW | (uprobe ? PF_FL_UPROBE : 0));
2738        if (fd < 0)
2739                return fd;
2740
2741        /* Get current event names */
2742        *namelist = probe_file__get_namelist(fd);
2743        if (!(*namelist)) {
2744                pr_debug("Failed to get current event list.\n");
2745                close(fd);
2746                return -ENOMEM;
2747        }
2748        return fd;
2749}
2750
2751static int __add_probe_trace_events(struct perf_probe_event *pev,
2752                                     struct probe_trace_event *tevs,
2753                                     int ntevs, bool allow_suffix)
2754{
2755        int i, fd[2] = {-1, -1}, up, ret;
2756        struct probe_trace_event *tev = NULL;
2757        struct probe_cache *cache = NULL;
2758        struct strlist *namelist[2] = {NULL, NULL};
2759        struct nscookie nsc;
2760
2761        up = pev->uprobes ? 1 : 0;
2762        fd[up] = __open_probe_file_and_namelist(up, &namelist[up]);
2763        if (fd[up] < 0)
2764                return fd[up];
2765
2766        ret = 0;
2767        for (i = 0; i < ntevs; i++) {
2768                tev = &tevs[i];
2769                up = tev->uprobes ? 1 : 0;
2770                if (fd[up] == -1) {     /* Open the kprobe/uprobe_events */
2771                        fd[up] = __open_probe_file_and_namelist(up,
2772                                                                &namelist[up]);
2773                        if (fd[up] < 0)
2774                                goto close_out;
2775                }
2776                /* Skip if the symbol is out of .text or blacklisted */
2777                if (!tev->point.symbol && !pev->uprobes)
2778                        continue;
2779
2780                /* Set new name for tev (and update namelist) */
2781                ret = probe_trace_event__set_name(tev, pev, namelist[up],
2782                                                  allow_suffix);
2783                if (ret < 0)
2784                        break;
2785
2786                nsinfo__mountns_enter(pev->nsi, &nsc);
2787                ret = probe_file__add_event(fd[up], tev);
2788                nsinfo__mountns_exit(&nsc);
2789                if (ret < 0)
2790                        break;
2791
2792                /*
2793                 * Probes after the first probe which comes from same
2794                 * user input are always allowed to add suffix, because
2795                 * there might be several addresses corresponding to
2796                 * one code line.
2797                 */
2798                allow_suffix = true;
2799        }
2800        if (ret == -EINVAL && pev->uprobes)
2801                warn_uprobe_event_compat(tev);
2802        if (ret == 0 && probe_conf.cache) {
2803                cache = probe_cache__new(pev->target, pev->nsi);
2804                if (!cache ||
2805                    probe_cache__add_entry(cache, pev, tevs, ntevs) < 0 ||
2806                    probe_cache__commit(cache) < 0)
2807                        pr_warning("Failed to add event to probe cache\n");
2808                probe_cache__delete(cache);
2809        }
2810
2811close_out:
2812        for (up = 0; up < 2; up++) {
2813                strlist__delete(namelist[up]);
2814                if (fd[up] >= 0)
2815                        close(fd[up]);
2816        }
2817        return ret;
2818}
2819
2820static int find_probe_functions(struct map *map, char *name,
2821                                struct symbol **syms)
2822{
2823        int found = 0;
2824        struct symbol *sym;
2825        struct rb_node *tmp;
2826        const char *norm, *ver;
2827        char *buf = NULL;
2828        bool cut_version = true;
2829
2830        if (map__load(map) < 0)
2831                return 0;
2832
2833        /* If user gives a version, don't cut off the version from symbols */
2834        if (strchr(name, '@'))
2835                cut_version = false;
2836
2837        map__for_each_symbol(map, sym, tmp) {
2838                norm = arch__normalize_symbol_name(sym->name);
2839                if (!norm)
2840                        continue;
2841
2842                if (cut_version) {
2843                        /* We don't care about default symbol or not */
2844                        ver = strchr(norm, '@');
2845                        if (ver) {
2846                                buf = strndup(norm, ver - norm);
2847                                if (!buf)
2848                                        return -ENOMEM;
2849                                norm = buf;
2850                        }
2851                }
2852
2853                if (strglobmatch(norm, name)) {
2854                        found++;
2855                        if (syms && found < probe_conf.max_probes)
2856                                syms[found - 1] = sym;
2857                }
2858                if (buf)
2859                        zfree(&buf);
2860        }
2861
2862        return found;
2863}
2864
2865void __weak arch__fix_tev_from_maps(struct perf_probe_event *pev __maybe_unused,
2866                                struct probe_trace_event *tev __maybe_unused,
2867                                struct map *map __maybe_unused,
2868                                struct symbol *sym __maybe_unused) { }
2869
2870/*
2871 * Find probe function addresses from map.
2872 * Return an error or the number of found probe_trace_event
2873 */
2874static int find_probe_trace_events_from_map(struct perf_probe_event *pev,
2875                                            struct probe_trace_event **tevs)
2876{
2877        struct map *map = NULL;
2878        struct ref_reloc_sym *reloc_sym = NULL;
2879        struct symbol *sym;
2880        struct symbol **syms = NULL;
2881        struct probe_trace_event *tev;
2882        struct perf_probe_point *pp = &pev->point;
2883        struct probe_trace_point *tp;
2884        int num_matched_functions;
2885        int ret, i, j, skipped = 0;
2886        char *mod_name;
2887
2888        map = get_target_map(pev->target, pev->nsi, pev->uprobes);
2889        if (!map) {
2890                ret = -EINVAL;
2891                goto out;
2892        }
2893
2894        syms = malloc(sizeof(struct symbol *) * probe_conf.max_probes);
2895        if (!syms) {
2896                ret = -ENOMEM;
2897                goto out;
2898        }
2899
2900        /*
2901         * Load matched symbols: Since the different local symbols may have
2902         * same name but different addresses, this lists all the symbols.
2903         */
2904        num_matched_functions = find_probe_functions(map, pp->function, syms);
2905        if (num_matched_functions <= 0) {
2906                pr_err("Failed to find symbol %s in %s\n", pp->function,
2907                        pev->target ? : "kernel");
2908                ret = -ENOENT;
2909                goto out;
2910        } else if (num_matched_functions > probe_conf.max_probes) {
2911                pr_err("Too many functions matched in %s\n",
2912                        pev->target ? : "kernel");
2913                ret = -E2BIG;
2914                goto out;
2915        }
2916
2917        /* Note that the symbols in the kmodule are not relocated */
2918        if (!pev->uprobes && !pev->target &&
2919                        (!pp->retprobe || kretprobe_offset_is_supported())) {
2920                reloc_sym = kernel_get_ref_reloc_sym();
2921                if (!reloc_sym) {
2922                        pr_warning("Relocated base symbol is not found!\n");
2923                        ret = -EINVAL;
2924                        goto out;
2925                }
2926        }
2927
2928        /* Setup result trace-probe-events */
2929        *tevs = zalloc(sizeof(*tev) * num_matched_functions);
2930        if (!*tevs) {
2931                ret = -ENOMEM;
2932                goto out;
2933        }
2934
2935        ret = 0;
2936
2937        for (j = 0; j < num_matched_functions; j++) {
2938                sym = syms[j];
2939
2940                tev = (*tevs) + ret;
2941                tp = &tev->point;
2942                if (ret == num_matched_functions) {
2943                        pr_warning("Too many symbols are listed. Skip it.\n");
2944                        break;
2945                }
2946                ret++;
2947
2948                if (pp->offset > sym->end - sym->start) {
2949                        pr_warning("Offset %ld is bigger than the size of %s\n",
2950                                   pp->offset, sym->name);
2951                        ret = -ENOENT;
2952                        goto err_out;
2953                }
2954                /* Add one probe point */
2955                tp->address = map->unmap_ip(map, sym->start) + pp->offset;
2956
2957                /* Check the kprobe (not in module) is within .text  */
2958                if (!pev->uprobes && !pev->target &&
2959                    kprobe_warn_out_range(sym->name, tp->address)) {
2960                        tp->symbol = NULL;      /* Skip it */
2961                        skipped++;
2962                } else if (reloc_sym) {
2963                        tp->symbol = strdup_or_goto(reloc_sym->name, nomem_out);
2964                        tp->offset = tp->address - reloc_sym->addr;
2965                } else {
2966                        tp->symbol = strdup_or_goto(sym->name, nomem_out);
2967                        tp->offset = pp->offset;
2968                }
2969                tp->realname = strdup_or_goto(sym->name, nomem_out);
2970
2971                tp->retprobe = pp->retprobe;
2972                if (pev->target) {
2973                        if (pev->uprobes) {
2974                                tev->point.module = strdup_or_goto(pev->target,
2975                                                                   nomem_out);
2976                        } else {
2977                                mod_name = find_module_name(pev->target);
2978                                tev->point.module =
2979                                        strdup(mod_name ? mod_name : pev->target);
2980                                free(mod_name);
2981                                if (!tev->point.module)
2982                                        goto nomem_out;
2983                        }
2984                }
2985                tev->uprobes = pev->uprobes;
2986                tev->nargs = pev->nargs;
2987                if (tev->nargs) {
2988                        tev->args = zalloc(sizeof(struct probe_trace_arg) *
2989                                           tev->nargs);
2990                        if (tev->args == NULL)
2991                                goto nomem_out;
2992                }
2993                for (i = 0; i < tev->nargs; i++) {
2994                        if (pev->args[i].name)
2995                                tev->args[i].name =
2996                                        strdup_or_goto(pev->args[i].name,
2997                                                        nomem_out);
2998
2999                        tev->args[i].value = strdup_or_goto(pev->args[i].var,
3000                                                            nomem_out);
3001                        if (pev->args[i].type)
3002                                tev->args[i].type =
3003                                        strdup_or_goto(pev->args[i].type,
3004                                                        nomem_out);
3005                }
3006                arch__fix_tev_from_maps(pev, tev, map, sym);
3007        }
3008        if (ret == skipped) {
3009                ret = -ENOENT;
3010                goto err_out;
3011        }
3012
3013out:
3014        map__put(map);
3015        free(syms);
3016        return ret;
3017
3018nomem_out:
3019        ret = -ENOMEM;
3020err_out:
3021        clear_probe_trace_events(*tevs, num_matched_functions);
3022        zfree(tevs);
3023        goto out;
3024}
3025
3026static int try_to_find_absolute_address(struct perf_probe_event *pev,
3027                                        struct probe_trace_event **tevs)
3028{
3029        struct perf_probe_point *pp = &pev->point;
3030        struct probe_trace_event *tev;
3031        struct probe_trace_point *tp;
3032        int i, err;
3033
3034        if (!(pev->point.function && !strncmp(pev->point.function, "0x", 2)))
3035                return -EINVAL;
3036        if (perf_probe_event_need_dwarf(pev))
3037                return -EINVAL;
3038
3039        /*
3040         * This is 'perf probe /lib/libc.so 0xabcd'. Try to probe at
3041         * absolute address.
3042         *
3043         * Only one tev can be generated by this.
3044         */
3045        *tevs = zalloc(sizeof(*tev));
3046        if (!*tevs)
3047                return -ENOMEM;
3048
3049        tev = *tevs;
3050        tp = &tev->point;
3051
3052        /*
3053         * Don't use tp->offset, use address directly, because
3054         * in synthesize_probe_trace_command() address cannot be
3055         * zero.
3056         */
3057        tp->address = pev->point.abs_address;
3058        tp->retprobe = pp->retprobe;
3059        tev->uprobes = pev->uprobes;
3060
3061        err = -ENOMEM;
3062        /*
3063         * Give it a '0x' leading symbol name.
3064         * In __add_probe_trace_events, a NULL symbol is interpreted as
3065         * invalid.
3066         */
3067        if (asprintf(&tp->symbol, "0x%lx", tp->address) < 0)
3068                goto errout;
3069
3070        /* For kprobe, check range */
3071        if ((!tev->uprobes) &&
3072            (kprobe_warn_out_range(tev->point.symbol,
3073                                   tev->point.address))) {
3074                err = -EACCES;
3075                goto errout;
3076        }
3077
3078        if (asprintf(&tp->realname, "abs_%lx", tp->address) < 0)
3079                goto errout;
3080
3081        if (pev->target) {
3082                tp->module = strdup(pev->target);
3083                if (!tp->module)
3084                        goto errout;
3085        }
3086
3087        if (tev->group) {
3088                tev->group = strdup(pev->group);
3089                if (!tev->group)
3090                        goto errout;
3091        }
3092
3093        if (pev->event) {
3094                tev->event = strdup(pev->event);
3095                if (!tev->event)
3096                        goto errout;
3097        }
3098
3099        tev->nargs = pev->nargs;
3100        tev->args = zalloc(sizeof(struct probe_trace_arg) * tev->nargs);
3101        if (!tev->args)
3102                goto errout;
3103
3104        for (i = 0; i < tev->nargs; i++)
3105                copy_to_probe_trace_arg(&tev->args[i], &pev->args[i]);
3106
3107        return 1;
3108
3109errout:
3110        clear_probe_trace_events(*tevs, 1);
3111        *tevs = NULL;
3112        return err;
3113}
3114
3115/* Concatinate two arrays */
3116static void *memcat(void *a, size_t sz_a, void *b, size_t sz_b)
3117{
3118        void *ret;
3119
3120        ret = malloc(sz_a + sz_b);
3121        if (ret) {
3122                memcpy(ret, a, sz_a);
3123                memcpy(ret + sz_a, b, sz_b);
3124        }
3125        return ret;
3126}
3127
3128static int
3129concat_probe_trace_events(struct probe_trace_event **tevs, int *ntevs,
3130                          struct probe_trace_event **tevs2, int ntevs2)
3131{
3132        struct probe_trace_event *new_tevs;
3133        int ret = 0;
3134
3135        if (*ntevs == 0) {
3136                *tevs = *tevs2;
3137                *ntevs = ntevs2;
3138                *tevs2 = NULL;
3139                return 0;
3140        }
3141
3142        if (*ntevs + ntevs2 > probe_conf.max_probes)
3143                ret = -E2BIG;
3144        else {
3145                /* Concatinate the array of probe_trace_event */
3146                new_tevs = memcat(*tevs, (*ntevs) * sizeof(**tevs),
3147                                  *tevs2, ntevs2 * sizeof(**tevs2));
3148                if (!new_tevs)
3149                        ret = -ENOMEM;
3150                else {
3151                        free(*tevs);
3152                        *tevs = new_tevs;
3153                        *ntevs += ntevs2;
3154                }
3155        }
3156        if (ret < 0)
3157                clear_probe_trace_events(*tevs2, ntevs2);
3158        zfree(tevs2);
3159
3160        return ret;
3161}
3162
3163/*
3164 * Try to find probe_trace_event from given probe caches. Return the number
3165 * of cached events found, if an error occurs return the error.
3166 */
3167static int find_cached_events(struct perf_probe_event *pev,
3168                              struct probe_trace_event **tevs,
3169                              const char *target)
3170{
3171        struct probe_cache *cache;
3172        struct probe_cache_entry *entry;
3173        struct probe_trace_event *tmp_tevs = NULL;
3174        int ntevs = 0;
3175        int ret = 0;
3176
3177        cache = probe_cache__new(target, pev->nsi);
3178        /* Return 0 ("not found") if the target has no probe cache. */
3179        if (!cache)
3180                return 0;
3181
3182        for_each_probe_cache_entry(entry, cache) {
3183                /* Skip the cache entry which has no name */
3184                if (!entry->pev.event || !entry->pev.group)
3185                        continue;
3186                if ((!pev->group || strglobmatch(entry->pev.group, pev->group)) &&
3187                    strglobmatch(entry->pev.event, pev->event)) {
3188                        ret = probe_cache_entry__get_event(entry, &tmp_tevs);
3189                        if (ret > 0)
3190                                ret = concat_probe_trace_events(tevs, &ntevs,
3191                                                                &tmp_tevs, ret);
3192                        if (ret < 0)
3193                                break;
3194                }
3195        }
3196        probe_cache__delete(cache);
3197        if (ret < 0) {
3198                clear_probe_trace_events(*tevs, ntevs);
3199                zfree(tevs);
3200        } else {
3201                ret = ntevs;
3202                if (ntevs > 0 && target && target[0] == '/')
3203                        pev->uprobes = true;
3204        }
3205
3206        return ret;
3207}
3208
3209/* Try to find probe_trace_event from all probe caches */
3210static int find_cached_events_all(struct perf_probe_event *pev,
3211                                   struct probe_trace_event **tevs)
3212{
3213        struct probe_trace_event *tmp_tevs = NULL;
3214        struct strlist *bidlist;
3215        struct str_node *nd;
3216        char *pathname;
3217        int ntevs = 0;
3218        int ret;
3219
3220        /* Get the buildid list of all valid caches */
3221        bidlist = build_id_cache__list_all(true);
3222        if (!bidlist) {
3223                ret = -errno;
3224                pr_debug("Failed to get buildids: %d\n", ret);
3225                return ret;
3226        }
3227
3228        ret = 0;
3229        strlist__for_each_entry(nd, bidlist) {
3230                pathname = build_id_cache__origname(nd->s);
3231                ret = find_cached_events(pev, &tmp_tevs, pathname);
3232                /* In the case of cnt == 0, we just skip it */
3233                if (ret > 0)
3234                        ret = concat_probe_trace_events(tevs, &ntevs,
3235                                                        &tmp_tevs, ret);
3236                free(pathname);
3237                if (ret < 0)
3238                        break;
3239        }
3240        strlist__delete(bidlist);
3241
3242        if (ret < 0) {
3243                clear_probe_trace_events(*tevs, ntevs);
3244                zfree(tevs);
3245        } else
3246                ret = ntevs;
3247
3248        return ret;
3249}
3250
3251static int find_probe_trace_events_from_cache(struct perf_probe_event *pev,
3252                                              struct probe_trace_event **tevs)
3253{
3254        struct probe_cache *cache;
3255        struct probe_cache_entry *entry;
3256        struct probe_trace_event *tev;
3257        struct str_node *node;
3258        int ret, i;
3259
3260        if (pev->sdt) {
3261                /* For SDT/cached events, we use special search functions */
3262                if (!pev->target)
3263                        return find_cached_events_all(pev, tevs);
3264                else
3265                        return find_cached_events(pev, tevs, pev->target);
3266        }
3267        cache = probe_cache__new(pev->target, pev->nsi);
3268        if (!cache)
3269                return 0;
3270
3271        entry = probe_cache__find(cache, pev);
3272        if (!entry) {
3273                /* SDT must be in the cache */
3274                ret = pev->sdt ? -ENOENT : 0;
3275                goto out;
3276        }
3277
3278        ret = strlist__nr_entries(entry->tevlist);
3279        if (ret > probe_conf.max_probes) {
3280                pr_debug("Too many entries matched in the cache of %s\n",
3281                         pev->target ? : "kernel");
3282                ret = -E2BIG;
3283                goto out;
3284        }
3285
3286        *tevs = zalloc(ret * sizeof(*tev));
3287        if (!*tevs) {
3288                ret = -ENOMEM;
3289                goto out;
3290        }
3291
3292        i = 0;
3293        strlist__for_each_entry(node, entry->tevlist) {
3294                tev = &(*tevs)[i++];
3295                ret = parse_probe_trace_command(node->s, tev);
3296                if (ret < 0)
3297                        goto out;
3298                /* Set the uprobes attribute as same as original */
3299                tev->uprobes = pev->uprobes;
3300        }
3301        ret = i;
3302
3303out:
3304        probe_cache__delete(cache);
3305        return ret;
3306}
3307
3308static int convert_to_probe_trace_events(struct perf_probe_event *pev,
3309                                         struct probe_trace_event **tevs)
3310{
3311        int ret;
3312
3313        if (!pev->group && !pev->sdt) {
3314                /* Set group name if not given */
3315                if (!pev->uprobes) {
3316                        pev->group = strdup(PERFPROBE_GROUP);
3317                        ret = pev->group ? 0 : -ENOMEM;
3318                } else
3319                        ret = convert_exec_to_group(pev->target, &pev->group);
3320                if (ret != 0) {
3321                        pr_warning("Failed to make a group name.\n");
3322                        return ret;
3323                }
3324        }
3325
3326        ret = try_to_find_absolute_address(pev, tevs);
3327        if (ret > 0)
3328                return ret;
3329
3330        /* At first, we need to lookup cache entry */
3331        ret = find_probe_trace_events_from_cache(pev, tevs);
3332        if (ret > 0 || pev->sdt)        /* SDT can be found only in the cache */
3333                return ret == 0 ? -ENOENT : ret; /* Found in probe cache */
3334
3335        /* Convert perf_probe_event with debuginfo */
3336        ret = try_to_find_probe_trace_events(pev, tevs);
3337        if (ret != 0)
3338                return ret;     /* Found in debuginfo or got an error */
3339
3340        return find_probe_trace_events_from_map(pev, tevs);
3341}
3342
3343int convert_perf_probe_events(struct perf_probe_event *pevs, int npevs)
3344{
3345        int i, ret;
3346
3347        /* Loop 1: convert all events */
3348        for (i = 0; i < npevs; i++) {
3349                /* Init kprobe blacklist if needed */
3350                if (!pevs[i].uprobes)
3351                        kprobe_blacklist__init();
3352                /* Convert with or without debuginfo */
3353                ret  = convert_to_probe_trace_events(&pevs[i], &pevs[i].tevs);
3354                if (ret < 0)
3355                        return ret;
3356                pevs[i].ntevs = ret;
3357        }
3358        /* This just release blacklist only if allocated */
3359        kprobe_blacklist__release();
3360
3361        return 0;
3362}
3363
3364static int show_probe_trace_event(struct probe_trace_event *tev)
3365{
3366        char *buf = synthesize_probe_trace_command(tev);
3367
3368        if (!buf) {
3369                pr_debug("Failed to synthesize probe trace event.\n");
3370                return -EINVAL;
3371        }
3372
3373        /* Showing definition always go stdout */
3374        printf("%s\n", buf);
3375        free(buf);
3376
3377        return 0;
3378}
3379
3380int show_probe_trace_events(struct perf_probe_event *pevs, int npevs)
3381{
3382        struct strlist *namelist = strlist__new(NULL, NULL);
3383        struct probe_trace_event *tev;
3384        struct perf_probe_event *pev;
3385        int i, j, ret = 0;
3386
3387        if (!namelist)
3388                return -ENOMEM;
3389
3390        for (j = 0; j < npevs && !ret; j++) {
3391                pev = &pevs[j];
3392                for (i = 0; i < pev->ntevs && !ret; i++) {
3393                        tev = &pev->tevs[i];
3394                        /* Skip if the symbol is out of .text or blacklisted */
3395                        if (!tev->point.symbol && !pev->uprobes)
3396                                continue;
3397
3398                        /* Set new name for tev (and update namelist) */
3399                        ret = probe_trace_event__set_name(tev, pev,
3400                                                          namelist, true);
3401                        if (!ret)
3402                                ret = show_probe_trace_event(tev);
3403                }
3404        }
3405        strlist__delete(namelist);
3406
3407        return ret;
3408}
3409
3410int apply_perf_probe_events(struct perf_probe_event *pevs, int npevs)
3411{
3412        int i, ret = 0;
3413
3414        /* Loop 2: add all events */
3415        for (i = 0; i < npevs; i++) {
3416                ret = __add_probe_trace_events(&pevs[i], pevs[i].tevs,
3417                                               pevs[i].ntevs,
3418                                               probe_conf.force_add);
3419                if (ret < 0)
3420                        break;
3421        }
3422        return ret;
3423}
3424
3425void cleanup_perf_probe_events(struct perf_probe_event *pevs, int npevs)
3426{
3427        int i, j;
3428        struct perf_probe_event *pev;
3429
3430        /* Loop 3: cleanup and free trace events  */
3431        for (i = 0; i < npevs; i++) {
3432                pev = &pevs[i];
3433                for (j = 0; j < pevs[i].ntevs; j++)
3434                        clear_probe_trace_event(&pevs[i].tevs[j]);
3435                zfree(&pevs[i].tevs);
3436                pevs[i].ntevs = 0;
3437                nsinfo__zput(pev->nsi);
3438                clear_perf_probe_event(&pevs[i]);
3439        }
3440}
3441
3442int add_perf_probe_events(struct perf_probe_event *pevs, int npevs)
3443{
3444        int ret;
3445
3446        ret = init_probe_symbol_maps(pevs->uprobes);
3447        if (ret < 0)
3448                return ret;
3449
3450        ret = convert_perf_probe_events(pevs, npevs);
3451        if (ret == 0)
3452                ret = apply_perf_probe_events(pevs, npevs);
3453
3454        cleanup_perf_probe_events(pevs, npevs);
3455
3456        exit_probe_symbol_maps();
3457        return ret;
3458}
3459
3460int del_perf_probe_events(struct strfilter *filter)
3461{
3462        int ret, ret2, ufd = -1, kfd = -1;
3463        char *str = strfilter__string(filter);
3464
3465        if (!str)
3466                return -EINVAL;
3467
3468        /* Get current event names */
3469        ret = probe_file__open_both(&kfd, &ufd, PF_FL_RW);
3470        if (ret < 0)
3471                goto out;
3472
3473        ret = probe_file__del_events(kfd, filter);
3474        if (ret < 0 && ret != -ENOENT)
3475                goto error;
3476
3477        ret2 = probe_file__del_events(ufd, filter);
3478        if (ret2 < 0 && ret2 != -ENOENT) {
3479                ret = ret2;
3480                goto error;
3481        }
3482        ret = 0;
3483
3484error:
3485        if (kfd >= 0)
3486                close(kfd);
3487        if (ufd >= 0)
3488                close(ufd);
3489out:
3490        free(str);
3491
3492        return ret;
3493}
3494
3495int show_available_funcs(const char *target, struct nsinfo *nsi,
3496                         struct strfilter *_filter, bool user)
3497{
3498        struct rb_node *nd;
3499        struct map *map;
3500        int ret;
3501
3502        ret = init_probe_symbol_maps(user);
3503        if (ret < 0)
3504                return ret;
3505
3506        /* Get a symbol map */
3507        map = get_target_map(target, nsi, user);
3508        if (!map) {
3509                pr_err("Failed to get a map for %s\n", (target) ? : "kernel");
3510                return -EINVAL;
3511        }
3512
3513        ret = map__load(map);
3514        if (ret) {
3515                if (ret == -2) {
3516                        char *str = strfilter__string(_filter);
3517                        pr_err("Failed to find symbols matched to \"%s\"\n",
3518                               str);
3519                        free(str);
3520                } else
3521                        pr_err("Failed to load symbols in %s\n",
3522                               (target) ? : "kernel");
3523                goto end;
3524        }
3525        if (!dso__sorted_by_name(map->dso))
3526                dso__sort_by_name(map->dso);
3527
3528        /* Show all (filtered) symbols */
3529        setup_pager();
3530
3531        for (nd = rb_first(&map->dso->symbol_names); nd; nd = rb_next(nd)) {
3532                struct symbol_name_rb_node *pos = rb_entry(nd, struct symbol_name_rb_node, rb_node);
3533
3534                if (strfilter__compare(_filter, pos->sym.name))
3535                        printf("%s\n", pos->sym.name);
3536        }
3537end:
3538        map__put(map);
3539        exit_probe_symbol_maps();
3540
3541        return ret;
3542}
3543
3544int copy_to_probe_trace_arg(struct probe_trace_arg *tvar,
3545                            struct perf_probe_arg *pvar)
3546{
3547        tvar->value = strdup(pvar->var);
3548        if (tvar->value == NULL)
3549                return -ENOMEM;
3550        if (pvar->type) {
3551                tvar->type = strdup(pvar->type);
3552                if (tvar->type == NULL)
3553                        return -ENOMEM;
3554        }
3555        if (pvar->name) {
3556                tvar->name = strdup(pvar->name);
3557                if (tvar->name == NULL)
3558                        return -ENOMEM;
3559        } else
3560                tvar->name = NULL;
3561        return 0;
3562}
3563