1 // SPDX-License-Identifier: (LGPL-2.1 OR BSD-2-Clause) 2 /* Copyright (c) 2022 Meta Platforms, Inc. and affiliates. */ 3 #include <ctype.h> 4 #include <stdio.h> 5 #include <stdlib.h> 6 #include <string.h> 7 #include <libelf.h> 8 #include <gelf.h> 9 #include <unistd.h> 10 #include <linux/ptrace.h> 11 #include <linux/kernel.h> 12 13 /* s8 will be marked as poison while it's a reg of riscv */ 14 #if defined(__riscv) 15 #define rv_s8 s8 16 #endif 17 18 #include "bpf.h" 19 #include "libbpf.h" 20 #include "libbpf_common.h" 21 #include "libbpf_internal.h" 22 #include "hashmap.h" 23 24 /* libbpf's USDT support consists of BPF-side state/code and user-space 25 * state/code working together in concert. BPF-side parts are defined in 26 * usdt.bpf.h header library. User-space state is encapsulated by struct 27 * usdt_manager and all the supporting code centered around usdt_manager. 28 * 29 * usdt.bpf.h defines two BPF maps that usdt_manager expects: USDT spec map 30 * and IP-to-spec-ID map, which is auxiliary map necessary for kernels that 31 * don't support BPF cookie (see below). These two maps are implicitly 32 * embedded into user's end BPF object file when user's code included 33 * usdt.bpf.h. This means that libbpf doesn't do anything special to create 34 * these USDT support maps. They are created by normal libbpf logic of 35 * instantiating BPF maps when opening and loading BPF object. 36 * 37 * As such, libbpf is basically unaware of the need to do anything 38 * USDT-related until the very first call to bpf_program__attach_usdt(), which 39 * can be called by user explicitly or happen automatically during skeleton 40 * attach (or, equivalently, through generic bpf_program__attach() call). At 41 * this point, libbpf will instantiate and initialize struct usdt_manager and 42 * store it in bpf_object. USDT manager is per-BPF object construct, as each 43 * independent BPF object might or might not have USDT programs, and thus all 44 * the expected USDT-related state. There is no coordination between two 45 * bpf_object in parts of USDT attachment, they are oblivious of each other's 46 * existence and libbpf is just oblivious, dealing with bpf_object-specific 47 * USDT state. 48 * 49 * Quick crash course on USDTs. 50 * 51 * From user-space application's point of view, USDT is essentially just 52 * a slightly special function call that normally has zero overhead, unless it 53 * is being traced by some external entity (e.g, BPF-based tool). Here's how 54 * a typical application can trigger USDT probe: 55 * 56 * #include <sys/sdt.h> // provided by systemtap-sdt-devel package 57 * // folly also provide similar functionality in folly/tracing/StaticTracepoint.h 58 * 59 * STAP_PROBE3(my_usdt_provider, my_usdt_probe_name, 123, x, &y); 60 * 61 * USDT is identified by its <provider-name>:<probe-name> pair of names. Each 62 * individual USDT has a fixed number of arguments (3 in the above example) 63 * and specifies values of each argument as if it was a function call. 64 * 65 * USDT call is actually not a function call, but is instead replaced by 66 * a single NOP instruction (thus zero overhead, effectively). But in addition 67 * to that, those USDT macros generate special SHT_NOTE ELF records in 68 * .note.stapsdt ELF section. Here's an example USDT definition as emitted by 69 * `readelf -n <binary>`: 70 * 71 * stapsdt 0x00000089 NT_STAPSDT (SystemTap probe descriptors) 72 * Provider: test 73 * Name: usdt12 74 * Location: 0x0000000000549df3, Base: 0x00000000008effa4, Semaphore: 0x0000000000a4606e 75 * Arguments: -4@-1204(%rbp) -4@%edi -8@-1216(%rbp) -8@%r8 -4@$5 -8@%r9 8@%rdx 8@%r10 -4@$-9 -2@%cx -2@%ax -1@%sil 76 * 77 * In this case we have USDT test:usdt12 with 12 arguments. 78 * 79 * Location and base are offsets used to calculate absolute IP address of that 80 * NOP instruction that kernel can replace with an interrupt instruction to 81 * trigger instrumentation code (BPF program for all that we care about). 82 * 83 * Semaphore above is an optional feature. It records an address of a 2-byte 84 * refcount variable (normally in '.probes' ELF section) used for signaling if 85 * there is anything that is attached to USDT. This is useful for user 86 * applications if, for example, they need to prepare some arguments that are 87 * passed only to USDTs and preparation is expensive. By checking if USDT is 88 * "activated", an application can avoid paying those costs unnecessarily. 89 * Recent enough kernel has built-in support for automatically managing this 90 * refcount, which libbpf expects and relies on. If USDT is defined without 91 * associated semaphore, this value will be zero. See selftests for semaphore 92 * examples. 93 * 94 * Arguments is the most interesting part. This USDT specification string is 95 * providing information about all the USDT arguments and their locations. The 96 * part before @ sign defined byte size of the argument (1, 2, 4, or 8) and 97 * whether the argument is signed or unsigned (negative size means signed). 98 * The part after @ sign is assembly-like definition of argument location 99 * (see [0] for more details). Technically, assembler can provide some pretty 100 * advanced definitions, but libbpf is currently supporting three most common 101 * cases: 102 * 1) immediate constant, see 5th and 9th args above (-4@$5 and -4@-9); 103 * 2) register value, e.g., 8@%rdx, which means "unsigned 8-byte integer 104 * whose value is in register %rdx"; 105 * 3) memory dereference addressed by register, e.g., -4@-1204(%rbp), which 106 * specifies signed 32-bit integer stored at offset -1204 bytes from 107 * memory address stored in %rbp. 108 * 109 * [0] https://sourceware.org/systemtap/wiki/UserSpaceProbeImplementation 110 * 111 * During attachment, libbpf parses all the relevant USDT specifications and 112 * prepares `struct usdt_spec` (USDT spec), which is then provided to BPF-side 113 * code through spec map. This allows BPF applications to quickly fetch the 114 * actual value at runtime using a simple BPF-side code. 115 * 116 * With basics out of the way, let's go over less immediately obvious aspects 117 * of supporting USDTs. 118 * 119 * First, there is no special USDT BPF program type. It is actually just 120 * a uprobe BPF program (which for kernel, at least currently, is just a kprobe 121 * program, so BPF_PROG_TYPE_KPROBE program type). With the only difference 122 * that uprobe is usually attached at the function entry, while USDT will 123 * normally be somewhere inside the function. But it should always be 124 * pointing to NOP instruction, which makes such uprobes the fastest uprobe 125 * kind. 126 * 127 * Second, it's important to realize that such STAP_PROBEn(provider, name, ...) 128 * macro invocations can end up being inlined many-many times, depending on 129 * specifics of each individual user application. So single conceptual USDT 130 * (identified by provider:name pair of identifiers) is, generally speaking, 131 * multiple uprobe locations (USDT call sites) in different places in user 132 * application. Further, again due to inlining, each USDT call site might end 133 * up having the same argument #N be located in a different place. In one call 134 * site it could be a constant, in another will end up in a register, and in 135 * yet another could be some other register or even somewhere on the stack. 136 * 137 * As such, "attaching to USDT" means (in general case) attaching the same 138 * uprobe BPF program to multiple target locations in user application, each 139 * potentially having a completely different USDT spec associated with it. 140 * To wire all this up together libbpf allocates a unique integer spec ID for 141 * each unique USDT spec. Spec IDs are allocated as sequential small integers 142 * so that they can be used as keys in array BPF map (for performance reasons). 143 * Spec ID allocation and accounting is big part of what usdt_manager is 144 * about. This state has to be maintained per-BPF object and coordinate 145 * between different USDT attachments within the same BPF object. 146 * 147 * Spec ID is the key in spec BPF map, value is the actual USDT spec layed out 148 * as struct usdt_spec. Each invocation of BPF program at runtime needs to 149 * know its associated spec ID. It gets it either through BPF cookie, which 150 * libbpf sets to spec ID during attach time, or, if kernel is too old to 151 * support BPF cookie, through IP-to-spec-ID map that libbpf maintains in such 152 * case. The latter means that some modes of operation can't be supported 153 * without BPF cookie. Such a mode is attaching to shared library "generically", 154 * without specifying target process. In such case, it's impossible to 155 * calculate absolute IP addresses for IP-to-spec-ID map, and thus such mode 156 * is not supported without BPF cookie support. 157 * 158 * Note that libbpf is using BPF cookie functionality for its own internal 159 * needs, so user itself can't rely on BPF cookie feature. To that end, libbpf 160 * provides conceptually equivalent USDT cookie support. It's still u64 161 * user-provided value that can be associated with USDT attachment. Note that 162 * this will be the same value for all USDT call sites within the same single 163 * *logical* USDT attachment. This makes sense because to user attaching to 164 * USDT is a single BPF program triggered for singular USDT probe. The fact 165 * that this is done at multiple actual locations is a mostly hidden 166 * implementation details. This USDT cookie value can be fetched with 167 * bpf_usdt_cookie(ctx) API provided by usdt.bpf.h 168 * 169 * Lastly, while single USDT can have tons of USDT call sites, it doesn't 170 * necessarily have that many different USDT specs. It very well might be 171 * that 1000 USDT call sites only need 5 different USDT specs, because all the 172 * arguments are typically contained in a small set of registers or stack 173 * locations. As such, it's wasteful to allocate as many USDT spec IDs as 174 * there are USDT call sites. So libbpf tries to be frugal and performs 175 * on-the-fly deduplication during a single USDT attachment to only allocate 176 * the minimal required amount of unique USDT specs (and thus spec IDs). This 177 * is trivially achieved by using USDT spec string (Arguments string from USDT 178 * note) as a lookup key in a hashmap. USDT spec string uniquely defines 179 * everything about how to fetch USDT arguments, so two USDT call sites 180 * sharing USDT spec string can safely share the same USDT spec and spec ID. 181 * Note, this spec string deduplication is happening only during the same USDT 182 * attachment, so each USDT spec shares the same USDT cookie value. This is 183 * not generally true for other USDT attachments within the same BPF object, 184 * as even if USDT spec string is the same, USDT cookie value can be 185 * different. It was deemed excessive to try to deduplicate across independent 186 * USDT attachments by taking into account USDT spec string *and* USDT cookie 187 * value, which would complicate spec ID accounting significantly for little 188 * gain. 189 */ 190 191 #define USDT_BASE_SEC ".stapsdt.base" 192 #define USDT_SEMA_SEC ".probes" 193 #define USDT_NOTE_SEC ".note.stapsdt" 194 #define USDT_NOTE_TYPE 3 195 #define USDT_NOTE_NAME "stapsdt" 196 197 /* should match exactly enum __bpf_usdt_arg_type from usdt.bpf.h */ 198 enum usdt_arg_type { 199 USDT_ARG_CONST, 200 USDT_ARG_REG, 201 USDT_ARG_REG_DEREF, 202 USDT_ARG_SIB, 203 }; 204 205 /* should match exactly struct __bpf_usdt_arg_spec from usdt.bpf.h */ 206 struct usdt_arg_spec { 207 __u64 val_off; 208 #if __BYTE_ORDER__ == __ORDER_LITTLE_ENDIAN__ 209 enum usdt_arg_type arg_type: 8; 210 __u16 idx_reg_off: 12; 211 __u16 scale_bitshift: 4; 212 __u8 __reserved: 8; /* keep reg_off offset stable */ 213 #else 214 __u8 __reserved: 8; /* keep reg_off offset stable */ 215 __u16 idx_reg_off: 12; 216 __u16 scale_bitshift: 4; 217 enum usdt_arg_type arg_type: 8; 218 #endif 219 short reg_off; 220 bool arg_signed; 221 char arg_bitshift; 222 }; 223 224 /* should match BPF_USDT_MAX_ARG_CNT in usdt.bpf.h */ 225 #define USDT_MAX_ARG_CNT 12 226 227 /* should match struct __bpf_usdt_spec from usdt.bpf.h */ 228 struct usdt_spec { 229 struct usdt_arg_spec args[USDT_MAX_ARG_CNT]; 230 __u64 usdt_cookie; 231 short arg_cnt; 232 }; 233 234 struct usdt_note { 235 const char *provider; 236 const char *name; 237 /* USDT args specification string, e.g.: 238 * "-4@%esi -4@-24(%rbp) -4@%ecx 2@%ax 8@%rdx" 239 */ 240 const char *args; 241 long loc_addr; 242 long base_addr; 243 long sema_addr; 244 }; 245 246 struct usdt_target { 247 long abs_ip; 248 long rel_ip; 249 long sema_off; 250 struct usdt_spec spec; 251 const char *spec_str; 252 }; 253 254 struct usdt_manager { 255 struct bpf_map *specs_map; 256 struct bpf_map *ip_to_spec_id_map; 257 258 int *free_spec_ids; 259 size_t free_spec_cnt; 260 size_t next_free_spec_id; 261 262 bool has_bpf_cookie; 263 bool has_sema_refcnt; 264 bool has_uprobe_multi; 265 bool has_uprobe_syscall; 266 }; 267 268 struct usdt_manager *usdt_manager_new(struct bpf_object *obj) 269 { 270 static const char *ref_ctr_sysfs_path = "/sys/bus/event_source/devices/uprobe/format/ref_ctr_offset"; 271 struct usdt_manager *man; 272 struct bpf_map *specs_map, *ip_to_spec_id_map; 273 274 specs_map = bpf_object__find_map_by_name(obj, "__bpf_usdt_specs"); 275 ip_to_spec_id_map = bpf_object__find_map_by_name(obj, "__bpf_usdt_ip_to_spec_id"); 276 if (!specs_map || !ip_to_spec_id_map) { 277 pr_warn("usdt: failed to find USDT support BPF maps, did you forget to include bpf/usdt.bpf.h?\n"); 278 return ERR_PTR(-ESRCH); 279 } 280 281 man = calloc(1, sizeof(*man)); 282 if (!man) 283 return ERR_PTR(-ENOMEM); 284 285 man->specs_map = specs_map; 286 man->ip_to_spec_id_map = ip_to_spec_id_map; 287 288 /* Detect if BPF cookie is supported for kprobes. 289 * We don't need IP-to-ID mapping if we can use BPF cookies. 290 * Added in: 7adfc6c9b315 ("bpf: Add bpf_get_attach_cookie() BPF helper to access bpf_cookie value") 291 */ 292 man->has_bpf_cookie = kernel_supports(obj, FEAT_BPF_COOKIE); 293 294 /* Detect kernel support for automatic refcounting of USDT semaphore. 295 * If this is not supported, USDTs with semaphores will not be supported. 296 * Added in: a6ca88b241d5 ("trace_uprobe: support reference counter in fd-based uprobe") 297 */ 298 man->has_sema_refcnt = faccessat(AT_FDCWD, ref_ctr_sysfs_path, F_OK, AT_EACCESS) == 0; 299 300 /* 301 * Detect kernel support for uprobe multi link to be used for attaching 302 * usdt probes. 303 */ 304 man->has_uprobe_multi = kernel_supports(obj, FEAT_UPROBE_MULTI_LINK); 305 306 /* 307 * Detect kernel support for uprobe() syscall, it's presence means we can 308 * take advantage of faster nop5 uprobe handling. 309 * Added in: 56101b69c919 ("uprobes/x86: Add uprobe syscall to speed up uprobe") 310 */ 311 man->has_uprobe_syscall = kernel_supports(obj, FEAT_UPROBE_SYSCALL); 312 return man; 313 } 314 315 void usdt_manager_free(struct usdt_manager *man) 316 { 317 if (IS_ERR_OR_NULL(man)) 318 return; 319 320 free(man->free_spec_ids); 321 free(man); 322 } 323 324 static int sanity_check_usdt_elf(Elf *elf, const char *path) 325 { 326 GElf_Ehdr ehdr; 327 int endianness; 328 329 if (elf_kind(elf) != ELF_K_ELF) { 330 pr_warn("usdt: unrecognized ELF kind %d for '%s'\n", elf_kind(elf), path); 331 return -EBADF; 332 } 333 334 switch (gelf_getclass(elf)) { 335 case ELFCLASS64: 336 if (sizeof(void *) != 8) { 337 pr_warn("usdt: attaching to 64-bit ELF binary '%s' is not supported\n", path); 338 return -EBADF; 339 } 340 break; 341 case ELFCLASS32: 342 if (sizeof(void *) != 4) { 343 pr_warn("usdt: attaching to 32-bit ELF binary '%s' is not supported\n", path); 344 return -EBADF; 345 } 346 break; 347 default: 348 pr_warn("usdt: unsupported ELF class for '%s'\n", path); 349 return -EBADF; 350 } 351 352 if (!gelf_getehdr(elf, &ehdr)) 353 return -EINVAL; 354 355 if (ehdr.e_type != ET_EXEC && ehdr.e_type != ET_DYN) { 356 pr_warn("usdt: unsupported type of ELF binary '%s' (%d), only ET_EXEC and ET_DYN are supported\n", 357 path, ehdr.e_type); 358 return -EBADF; 359 } 360 361 #if __BYTE_ORDER__ == __ORDER_LITTLE_ENDIAN__ 362 endianness = ELFDATA2LSB; 363 #elif __BYTE_ORDER__ == __ORDER_BIG_ENDIAN__ 364 endianness = ELFDATA2MSB; 365 #else 366 # error "Unrecognized __BYTE_ORDER__" 367 #endif 368 if (endianness != ehdr.e_ident[EI_DATA]) { 369 pr_warn("usdt: ELF endianness mismatch for '%s'\n", path); 370 return -EBADF; 371 } 372 373 return 0; 374 } 375 376 static int find_elf_sec_by_name(Elf *elf, const char *sec_name, GElf_Shdr *shdr, Elf_Scn **scn) 377 { 378 Elf_Scn *sec = NULL; 379 size_t shstrndx; 380 381 if (elf_getshdrstrndx(elf, &shstrndx)) 382 return -EINVAL; 383 384 /* check if ELF is corrupted and avoid calling elf_strptr if yes */ 385 if (!elf_rawdata(elf_getscn(elf, shstrndx), NULL)) 386 return -EINVAL; 387 388 while ((sec = elf_nextscn(elf, sec)) != NULL) { 389 char *name; 390 391 if (!gelf_getshdr(sec, shdr)) 392 return -EINVAL; 393 394 name = elf_strptr(elf, shstrndx, shdr->sh_name); 395 if (name && strcmp(sec_name, name) == 0) { 396 *scn = sec; 397 return 0; 398 } 399 } 400 401 return -ENOENT; 402 } 403 404 struct elf_seg { 405 long start; 406 long end; 407 long offset; 408 bool is_exec; 409 }; 410 411 static int cmp_elf_segs(const void *_a, const void *_b) 412 { 413 const struct elf_seg *a = _a; 414 const struct elf_seg *b = _b; 415 416 return a->start < b->start ? -1 : 1; 417 } 418 419 static int parse_elf_segs(Elf *elf, const char *path, struct elf_seg **segs, size_t *seg_cnt) 420 { 421 GElf_Phdr phdr; 422 size_t n; 423 int i, err; 424 struct elf_seg *seg; 425 void *tmp; 426 427 *seg_cnt = 0; 428 429 if (elf_getphdrnum(elf, &n)) { 430 err = -errno; 431 return err; 432 } 433 434 for (i = 0; i < n; i++) { 435 if (!gelf_getphdr(elf, i, &phdr)) { 436 err = -errno; 437 return err; 438 } 439 440 pr_debug("usdt: discovered PHDR #%d in '%s': vaddr 0x%lx memsz 0x%lx offset 0x%lx type 0x%lx flags 0x%lx\n", 441 i, path, (long)phdr.p_vaddr, (long)phdr.p_memsz, (long)phdr.p_offset, 442 (long)phdr.p_type, (long)phdr.p_flags); 443 if (phdr.p_type != PT_LOAD) 444 continue; 445 446 tmp = libbpf_reallocarray(*segs, *seg_cnt + 1, sizeof(**segs)); 447 if (!tmp) 448 return -ENOMEM; 449 450 *segs = tmp; 451 seg = *segs + *seg_cnt; 452 (*seg_cnt)++; 453 454 seg->start = phdr.p_vaddr; 455 seg->end = phdr.p_vaddr + phdr.p_memsz; 456 seg->offset = phdr.p_offset; 457 seg->is_exec = phdr.p_flags & PF_X; 458 } 459 460 if (*seg_cnt == 0) { 461 pr_warn("usdt: failed to find PT_LOAD program headers in '%s'\n", path); 462 return -ESRCH; 463 } 464 465 qsort(*segs, *seg_cnt, sizeof(**segs), cmp_elf_segs); 466 return 0; 467 } 468 469 static int parse_vma_segs(int pid, const char *lib_path, struct elf_seg **segs, size_t *seg_cnt) 470 { 471 char path[PATH_MAX], line[4096], mode[16]; 472 size_t seg_start, seg_end, seg_off; 473 struct elf_seg *seg; 474 int tmp_pid, n, i, err; 475 FILE *f; 476 477 *seg_cnt = 0; 478 479 /* Handle containerized binaries only accessible from 480 * /proc/<pid>/root/<path>. They will be reported as just /<path> in 481 * /proc/<pid>/maps. 482 */ 483 /* %n is not counted in sscanf() return value, so initialize it. */ 484 n = 0; 485 if (sscanf(lib_path, "/proc/%d/root%n", &tmp_pid, &n) == 1 && 486 n > 0 && pid == tmp_pid && lib_path[n] == '/') { 487 libbpf_strlcpy(path, lib_path + n, sizeof(path)); 488 goto proceed; 489 } 490 491 if (!realpath(lib_path, path)) { 492 pr_warn("usdt: failed to get absolute path of '%s' (err %s), using path as is...\n", 493 lib_path, errstr(-errno)); 494 libbpf_strlcpy(path, lib_path, sizeof(path)); 495 } 496 497 proceed: 498 sprintf(line, "/proc/%d/maps", pid); 499 f = fopen(line, "re"); 500 if (!f) { 501 err = -errno; 502 pr_warn("usdt: failed to open '%s' to get base addr of '%s': %s\n", 503 line, lib_path, errstr(err)); 504 return err; 505 } 506 507 /* We need to handle lines with no path at the end: 508 * 509 * 7f5c6f5d1000-7f5c6f5d3000 rw-p 001c7000 08:04 21238613 /usr/lib64/libc-2.17.so 510 * 7f5c6f5d3000-7f5c6f5d8000 rw-p 00000000 00:00 0 511 * 7f5c6f5d8000-7f5c6f5d9000 r-xp 00000000 103:01 362990598 /data/users/andriin/linux/tools/bpf/usdt/libhello_usdt.so 512 * 513 * Some VMA names can be longer than the local buffer. Bound the 514 * writes, but still consume the rest of the line. 515 */ 516 while (fscanf(f, "%zx-%zx %15s %zx %*s %*d%4095[^\n]%*[^\n]\n", 517 &seg_start, &seg_end, mode, &seg_off, line) == 5) { 518 void *tmp; 519 520 /* to handle no path case (see above) we need to capture line 521 * without skipping any whitespaces. So we need to strip 522 * leading whitespaces manually here 523 */ 524 i = 0; 525 while (isblank(line[i])) 526 i++; 527 if (strcmp(line + i, path) != 0) 528 continue; 529 530 pr_debug("usdt: discovered segment for lib '%s': addrs %zx-%zx mode %s offset %zx\n", 531 path, seg_start, seg_end, mode, seg_off); 532 533 /* ignore non-executable sections for shared libs */ 534 if (mode[2] != 'x') 535 continue; 536 537 tmp = libbpf_reallocarray(*segs, *seg_cnt + 1, sizeof(**segs)); 538 if (!tmp) { 539 err = -ENOMEM; 540 goto err_out; 541 } 542 543 *segs = tmp; 544 seg = *segs + *seg_cnt; 545 *seg_cnt += 1; 546 547 seg->start = seg_start; 548 seg->end = seg_end; 549 seg->offset = seg_off; 550 seg->is_exec = true; 551 } 552 553 if (*seg_cnt == 0) { 554 pr_warn("usdt: failed to find '%s' (resolved to '%s') within PID %d memory mappings\n", 555 lib_path, path, pid); 556 err = -ESRCH; 557 goto err_out; 558 } 559 560 qsort(*segs, *seg_cnt, sizeof(**segs), cmp_elf_segs); 561 err = 0; 562 err_out: 563 fclose(f); 564 return err; 565 } 566 567 static struct elf_seg *find_elf_seg(struct elf_seg *segs, size_t seg_cnt, long virtaddr) 568 { 569 struct elf_seg *seg; 570 int i; 571 572 /* for ELF binaries (both executables and shared libraries), we are 573 * given virtual address (absolute for executables, relative for 574 * libraries) which should match address range of [seg_start, seg_end) 575 */ 576 for (i = 0, seg = segs; i < seg_cnt; i++, seg++) { 577 if (seg->start <= virtaddr && virtaddr < seg->end) 578 return seg; 579 } 580 return NULL; 581 } 582 583 static struct elf_seg *find_vma_seg(struct elf_seg *segs, size_t seg_cnt, long offset) 584 { 585 struct elf_seg *seg; 586 int i; 587 588 /* for VMA segments from /proc/<pid>/maps file, provided "address" is 589 * actually a file offset, so should be fall within logical 590 * offset-based range of [offset_start, offset_end) 591 */ 592 for (i = 0, seg = segs; i < seg_cnt; i++, seg++) { 593 if (seg->offset <= offset && offset < seg->offset + (seg->end - seg->start)) 594 return seg; 595 } 596 return NULL; 597 } 598 599 static int parse_usdt_note(GElf_Nhdr *nhdr, const char *data, size_t name_off, 600 size_t desc_off, struct usdt_note *usdt_note); 601 602 static int parse_usdt_spec(struct usdt_spec *spec, const struct usdt_note *note, __u64 usdt_cookie); 603 604 #if defined(__x86_64__) 605 static bool has_nop_combo(int fd, long off) 606 { 607 unsigned char nop_combo[6] = { 608 0x90, 0x0f, 0x1f, 0x44, 0x00, 0x00 /* nop,nop5 */ 609 }; 610 unsigned char buf[6]; 611 612 if (pread(fd, buf, 6, off) != 6) 613 return false; 614 return memcmp(buf, nop_combo, 6) == 0; 615 } 616 #else 617 static bool has_nop_combo(int fd, long off) 618 { 619 return false; 620 } 621 #endif 622 623 static int collect_usdt_targets(struct usdt_manager *man, struct elf_fd *elf_fd, const char *path, 624 pid_t pid, const char *usdt_provider, const char *usdt_name, 625 __u64 usdt_cookie, struct usdt_target **out_targets, 626 size_t *out_target_cnt) 627 { 628 size_t off, name_off, desc_off, seg_cnt = 0, vma_seg_cnt = 0, target_cnt = 0; 629 struct elf_seg *segs = NULL, *vma_segs = NULL; 630 struct usdt_target *targets = NULL, *target; 631 Elf *elf = elf_fd->elf; 632 long base_addr = 0; 633 Elf_Scn *notes_scn, *base_scn; 634 GElf_Shdr base_shdr, notes_shdr; 635 GElf_Ehdr ehdr; 636 GElf_Nhdr nhdr; 637 Elf_Data *data; 638 int err; 639 640 *out_targets = NULL; 641 *out_target_cnt = 0; 642 643 err = find_elf_sec_by_name(elf, USDT_NOTE_SEC, ¬es_shdr, ¬es_scn); 644 if (err) { 645 pr_warn("usdt: no USDT notes section (%s) found in '%s'\n", USDT_NOTE_SEC, path); 646 return err; 647 } 648 649 if (notes_shdr.sh_type != SHT_NOTE || !gelf_getehdr(elf, &ehdr)) { 650 pr_warn("usdt: invalid USDT notes section (%s) in '%s'\n", USDT_NOTE_SEC, path); 651 return -EINVAL; 652 } 653 654 err = parse_elf_segs(elf, path, &segs, &seg_cnt); 655 if (err) { 656 pr_warn("usdt: failed to process ELF program segments for '%s': %s\n", 657 path, errstr(err)); 658 goto err_out; 659 } 660 661 /* .stapsdt.base ELF section is optional, but is used for prelink 662 * offset compensation (see a big comment further below) 663 */ 664 if (find_elf_sec_by_name(elf, USDT_BASE_SEC, &base_shdr, &base_scn) == 0) 665 base_addr = base_shdr.sh_addr; 666 667 data = elf_getdata(notes_scn, 0); 668 off = 0; 669 while ((off = gelf_getnote(data, off, &nhdr, &name_off, &desc_off)) > 0) { 670 long usdt_abs_ip, usdt_rel_ip, usdt_sema_off = 0; 671 struct usdt_note note; 672 struct elf_seg *seg = NULL; 673 void *tmp; 674 675 err = parse_usdt_note(&nhdr, data->d_buf, name_off, desc_off, ¬e); 676 if (err) 677 goto err_out; 678 679 if (strcmp(note.provider, usdt_provider) != 0 || strcmp(note.name, usdt_name) != 0) 680 continue; 681 682 /* We need to compensate "prelink effect". See [0] for details, 683 * relevant parts quoted here: 684 * 685 * Each SDT probe also expands into a non-allocated ELF note. You can 686 * find this by looking at SHT_NOTE sections and decoding the format; 687 * see below for details. Because the note is non-allocated, it means 688 * there is no runtime cost, and also preserved in both stripped files 689 * and .debug files. 690 * 691 * However, this means that prelink won't adjust the note's contents 692 * for address offsets. Instead, this is done via the .stapsdt.base 693 * section. This is a special section that is added to the text. We 694 * will only ever have one of these sections in a final link and it 695 * will only ever be one byte long. Nothing about this section itself 696 * matters, we just use it as a marker to detect prelink address 697 * adjustments. 698 * 699 * Each probe note records the link-time address of the .stapsdt.base 700 * section alongside the probe PC address. The decoder compares the 701 * base address stored in the note with the .stapsdt.base section's 702 * sh_addr. Initially these are the same, but the section header will 703 * be adjusted by prelink. So the decoder applies the difference to 704 * the probe PC address to get the correct prelinked PC address; the 705 * same adjustment is applied to the semaphore address, if any. 706 * 707 * [0] https://sourceware.org/systemtap/wiki/UserSpaceProbeImplementation 708 */ 709 usdt_abs_ip = note.loc_addr; 710 if (base_addr && note.base_addr) 711 usdt_abs_ip += base_addr - note.base_addr; 712 713 /* When attaching uprobes (which is what USDTs basically are) 714 * kernel expects file offset to be specified, not a relative 715 * virtual address, so we need to translate virtual address to 716 * file offset, for both ET_EXEC and ET_DYN binaries. 717 */ 718 seg = find_elf_seg(segs, seg_cnt, usdt_abs_ip); 719 if (!seg) { 720 err = -ESRCH; 721 pr_warn("usdt: failed to find ELF program segment for '%s:%s' in '%s' at IP 0x%lx\n", 722 usdt_provider, usdt_name, path, usdt_abs_ip); 723 goto err_out; 724 } 725 if (!seg->is_exec) { 726 err = -ESRCH; 727 pr_warn("usdt: matched ELF binary '%s' segment [0x%lx, 0x%lx) for '%s:%s' at IP 0x%lx is not executable\n", 728 path, seg->start, seg->end, usdt_provider, usdt_name, 729 usdt_abs_ip); 730 goto err_out; 731 } 732 /* translate from virtual address to file offset */ 733 usdt_rel_ip = usdt_abs_ip - seg->start + seg->offset; 734 735 if (ehdr.e_type == ET_DYN && !man->has_bpf_cookie) { 736 /* If we don't have BPF cookie support but need to 737 * attach to a shared library, we'll need to know and 738 * record absolute addresses of attach points due to 739 * the need to lookup USDT spec by absolute IP of 740 * triggered uprobe. Doing this resolution is only 741 * possible when we have a specific PID of the process 742 * that's using specified shared library. BPF cookie 743 * removes the absolute address limitation as we don't 744 * need to do this lookup (we just use BPF cookie as 745 * an index of USDT spec), so for newer kernels with 746 * BPF cookie support libbpf supports USDT attachment 747 * to shared libraries with no PID filter. 748 */ 749 if (pid < 0) { 750 pr_warn("usdt: attaching to shared libraries without specific PID is not supported on current kernel\n"); 751 err = -ENOTSUP; 752 goto err_out; 753 } 754 755 /* vma_segs are lazily initialized only if necessary */ 756 if (vma_seg_cnt == 0) { 757 err = parse_vma_segs(pid, path, &vma_segs, &vma_seg_cnt); 758 if (err) { 759 pr_warn("usdt: failed to get memory segments in PID %d for shared library '%s': %s\n", 760 pid, path, errstr(err)); 761 goto err_out; 762 } 763 } 764 765 seg = find_vma_seg(vma_segs, vma_seg_cnt, usdt_rel_ip); 766 if (!seg) { 767 err = -ESRCH; 768 pr_warn("usdt: failed to find shared lib memory segment for '%s:%s' in '%s' at relative IP 0x%lx\n", 769 usdt_provider, usdt_name, path, usdt_rel_ip); 770 goto err_out; 771 } 772 773 usdt_abs_ip = seg->start - seg->offset + usdt_rel_ip; 774 } 775 776 pr_debug("usdt: probe for '%s:%s' in %s '%s': addr 0x%lx base 0x%lx (resolved abs_ip 0x%lx rel_ip 0x%lx) args '%s' in segment [0x%lx, 0x%lx) at offset 0x%lx\n", 777 usdt_provider, usdt_name, ehdr.e_type == ET_EXEC ? "exec" : "lib ", path, 778 note.loc_addr, note.base_addr, usdt_abs_ip, usdt_rel_ip, note.args, 779 seg ? seg->start : 0, seg ? seg->end : 0, seg ? seg->offset : 0); 780 781 /* Adjust semaphore address to be a file offset */ 782 if (note.sema_addr) { 783 if (!man->has_sema_refcnt) { 784 pr_warn("usdt: kernel doesn't support USDT semaphore refcounting for '%s:%s' in '%s'\n", 785 usdt_provider, usdt_name, path); 786 err = -ENOTSUP; 787 goto err_out; 788 } 789 790 seg = find_elf_seg(segs, seg_cnt, note.sema_addr); 791 if (!seg) { 792 err = -ESRCH; 793 pr_warn("usdt: failed to find ELF loadable segment with semaphore of '%s:%s' in '%s' at 0x%lx\n", 794 usdt_provider, usdt_name, path, note.sema_addr); 795 goto err_out; 796 } 797 if (seg->is_exec) { 798 err = -ESRCH; 799 pr_warn("usdt: matched ELF binary '%s' segment [0x%lx, 0x%lx] for semaphore of '%s:%s' at 0x%lx is executable\n", 800 path, seg->start, seg->end, usdt_provider, usdt_name, 801 note.sema_addr); 802 goto err_out; 803 } 804 805 usdt_sema_off = note.sema_addr - seg->start + seg->offset; 806 807 pr_debug("usdt: sema for '%s:%s' in %s '%s': addr 0x%lx base 0x%lx (resolved 0x%lx) in segment [0x%lx, 0x%lx] at offset 0x%lx\n", 808 usdt_provider, usdt_name, ehdr.e_type == ET_EXEC ? "exec" : "lib ", 809 path, note.sema_addr, note.base_addr, usdt_sema_off, 810 seg->start, seg->end, seg->offset); 811 } 812 813 /* Record adjusted addresses and offsets and parse USDT spec */ 814 tmp = libbpf_reallocarray(targets, target_cnt + 1, sizeof(*targets)); 815 if (!tmp) { 816 err = -ENOMEM; 817 goto err_out; 818 } 819 targets = tmp; 820 821 target = &targets[target_cnt]; 822 memset(target, 0, sizeof(*target)); 823 824 /* 825 * We have uprobe syscall and usdt with nop,nop5 instructions combo, 826 * so we can place the uprobe directly on nop5 (+1) and get this probe 827 * optimized. 828 */ 829 if (man->has_uprobe_syscall && has_nop_combo(elf_fd->fd, usdt_rel_ip)) { 830 usdt_abs_ip++; 831 usdt_rel_ip++; 832 } 833 834 target->abs_ip = usdt_abs_ip; 835 target->rel_ip = usdt_rel_ip; 836 target->sema_off = usdt_sema_off; 837 838 /* notes.args references strings from ELF itself, so they can 839 * be referenced safely until elf_end() call 840 */ 841 target->spec_str = note.args; 842 843 err = parse_usdt_spec(&target->spec, ¬e, usdt_cookie); 844 if (err) 845 goto err_out; 846 847 target_cnt++; 848 } 849 850 *out_targets = targets; 851 *out_target_cnt = target_cnt; 852 err = target_cnt; 853 854 err_out: 855 free(segs); 856 free(vma_segs); 857 if (err < 0) 858 free(targets); 859 return err; 860 } 861 862 struct bpf_link_usdt { 863 struct bpf_link link; 864 865 struct usdt_manager *usdt_man; 866 867 size_t spec_cnt; 868 int *spec_ids; 869 870 size_t uprobe_cnt; 871 struct { 872 long abs_ip; 873 struct bpf_link *link; 874 } *uprobes; 875 876 struct bpf_link *multi_link; 877 }; 878 879 static int bpf_link_usdt_detach(struct bpf_link *link) 880 { 881 struct bpf_link_usdt *usdt_link = container_of(link, struct bpf_link_usdt, link); 882 struct usdt_manager *man = usdt_link->usdt_man; 883 int i; 884 885 bpf_link__destroy(usdt_link->multi_link); 886 887 /* When having multi_link, uprobe_cnt is 0 */ 888 for (i = 0; i < usdt_link->uprobe_cnt; i++) { 889 /* detach underlying uprobe link */ 890 bpf_link__destroy(usdt_link->uprobes[i].link); 891 /* there is no need to update specs map because it will be 892 * unconditionally overwritten on subsequent USDT attaches, 893 * but if BPF cookies are not used we need to remove entry 894 * from ip_to_spec_id map, otherwise we'll run into false 895 * conflicting IP errors 896 */ 897 if (!man->has_bpf_cookie) { 898 /* not much we can do about errors here */ 899 (void)bpf_map_delete_elem(bpf_map__fd(man->ip_to_spec_id_map), 900 &usdt_link->uprobes[i].abs_ip); 901 } 902 } 903 904 /* try to return the list of previously used spec IDs to usdt_manager 905 * for future reuse for subsequent USDT attaches 906 */ 907 if (!man->free_spec_ids) { 908 /* if there were no free spec IDs yet, just transfer our IDs */ 909 man->free_spec_ids = usdt_link->spec_ids; 910 man->free_spec_cnt = usdt_link->spec_cnt; 911 usdt_link->spec_ids = NULL; 912 } else { 913 /* otherwise concat IDs */ 914 size_t new_cnt = man->free_spec_cnt + usdt_link->spec_cnt; 915 int *new_free_ids; 916 917 new_free_ids = libbpf_reallocarray(man->free_spec_ids, new_cnt, 918 sizeof(*new_free_ids)); 919 /* If we couldn't resize free_spec_ids, we'll just leak 920 * a bunch of free IDs; this is very unlikely to happen and if 921 * system is so exhausted on memory, it's the least of user's 922 * concerns, probably. 923 * So just do our best here to return those IDs to usdt_manager. 924 * Another edge case when we can legitimately get NULL is when 925 * new_cnt is zero, which can happen in some edge cases, so we 926 * need to be careful about that. 927 */ 928 if (new_free_ids || new_cnt == 0) { 929 memcpy(new_free_ids + man->free_spec_cnt, usdt_link->spec_ids, 930 usdt_link->spec_cnt * sizeof(*usdt_link->spec_ids)); 931 man->free_spec_ids = new_free_ids; 932 man->free_spec_cnt = new_cnt; 933 } 934 } 935 936 return 0; 937 } 938 939 static void bpf_link_usdt_dealloc(struct bpf_link *link) 940 { 941 struct bpf_link_usdt *usdt_link = container_of(link, struct bpf_link_usdt, link); 942 943 free(usdt_link->spec_ids); 944 free(usdt_link->uprobes); 945 free(usdt_link); 946 } 947 948 static size_t specs_hash_fn(long key, void *ctx) 949 { 950 return str_hash((char *)key); 951 } 952 953 static bool specs_equal_fn(long key1, long key2, void *ctx) 954 { 955 return strcmp((char *)key1, (char *)key2) == 0; 956 } 957 958 static int allocate_spec_id(struct usdt_manager *man, struct hashmap *specs_hash, 959 struct bpf_link_usdt *link, struct usdt_target *target, 960 int *spec_id, bool *is_new) 961 { 962 long tmp; 963 void *new_ids; 964 int err; 965 966 /* check if we already allocated spec ID for this spec string */ 967 if (hashmap__find(specs_hash, target->spec_str, &tmp)) { 968 *spec_id = tmp; 969 *is_new = false; 970 return 0; 971 } 972 973 /* otherwise it's a new ID that needs to be set up in specs map and 974 * returned back to usdt_manager when USDT link is detached 975 */ 976 new_ids = libbpf_reallocarray(link->spec_ids, link->spec_cnt + 1, sizeof(*link->spec_ids)); 977 if (!new_ids) 978 return -ENOMEM; 979 link->spec_ids = new_ids; 980 981 /* get next free spec ID, giving preference to free list, if not empty */ 982 if (man->free_spec_cnt) { 983 *spec_id = man->free_spec_ids[man->free_spec_cnt - 1]; 984 985 /* cache spec ID for current spec string for future lookups */ 986 err = hashmap__add(specs_hash, target->spec_str, *spec_id); 987 if (err) 988 return err; 989 990 man->free_spec_cnt--; 991 } else { 992 /* don't allocate spec ID bigger than what fits in specs map */ 993 if (man->next_free_spec_id >= bpf_map__max_entries(man->specs_map)) 994 return -E2BIG; 995 996 *spec_id = man->next_free_spec_id; 997 998 /* cache spec ID for current spec string for future lookups */ 999 err = hashmap__add(specs_hash, target->spec_str, *spec_id); 1000 if (err) 1001 return err; 1002 1003 man->next_free_spec_id++; 1004 } 1005 1006 /* remember new spec ID in the link for later return back to free list on detach */ 1007 link->spec_ids[link->spec_cnt] = *spec_id; 1008 link->spec_cnt++; 1009 *is_new = true; 1010 return 0; 1011 } 1012 1013 struct bpf_link *usdt_manager_attach_usdt(struct usdt_manager *man, const struct bpf_program *prog, 1014 pid_t pid, const char *path, 1015 const char *usdt_provider, const char *usdt_name, 1016 __u64 usdt_cookie) 1017 { 1018 unsigned long *offsets = NULL, *ref_ctr_offsets = NULL; 1019 int i, err, spec_map_fd, ip_map_fd; 1020 LIBBPF_OPTS(bpf_uprobe_opts, opts); 1021 struct hashmap *specs_hash = NULL; 1022 struct bpf_link_usdt *link = NULL; 1023 struct usdt_target *targets = NULL; 1024 __u64 *cookies = NULL; 1025 struct elf_fd elf_fd; 1026 size_t target_cnt; 1027 1028 spec_map_fd = bpf_map__fd(man->specs_map); 1029 ip_map_fd = bpf_map__fd(man->ip_to_spec_id_map); 1030 1031 err = elf_open(path, &elf_fd); 1032 if (err) 1033 return libbpf_err_ptr(err); 1034 1035 err = sanity_check_usdt_elf(elf_fd.elf, path); 1036 if (err) 1037 goto err_out; 1038 1039 /* normalize PID filter */ 1040 if (pid < 0) 1041 pid = -1; 1042 else if (pid == 0) 1043 pid = getpid(); 1044 1045 /* discover USDT in given binary, optionally limiting 1046 * activations to a given PID, if pid > 0 1047 */ 1048 err = collect_usdt_targets(man, &elf_fd, path, pid, usdt_provider, usdt_name, 1049 usdt_cookie, &targets, &target_cnt); 1050 if (err <= 0) { 1051 err = (err == 0) ? -ENOENT : err; 1052 goto err_out; 1053 } 1054 1055 specs_hash = hashmap__new(specs_hash_fn, specs_equal_fn, NULL); 1056 if (IS_ERR(specs_hash)) { 1057 err = PTR_ERR(specs_hash); 1058 goto err_out; 1059 } 1060 1061 link = calloc(1, sizeof(*link)); 1062 if (!link) { 1063 err = -ENOMEM; 1064 goto err_out; 1065 } 1066 1067 link->usdt_man = man; 1068 link->link.detach = &bpf_link_usdt_detach; 1069 link->link.dealloc = &bpf_link_usdt_dealloc; 1070 1071 if (man->has_uprobe_multi) { 1072 offsets = calloc(target_cnt, sizeof(*offsets)); 1073 cookies = calloc(target_cnt, sizeof(*cookies)); 1074 ref_ctr_offsets = calloc(target_cnt, sizeof(*ref_ctr_offsets)); 1075 1076 if (!offsets || !ref_ctr_offsets || !cookies) { 1077 err = -ENOMEM; 1078 goto err_out; 1079 } 1080 } else { 1081 link->uprobes = calloc(target_cnt, sizeof(*link->uprobes)); 1082 if (!link->uprobes) { 1083 err = -ENOMEM; 1084 goto err_out; 1085 } 1086 } 1087 1088 for (i = 0; i < target_cnt; i++) { 1089 struct usdt_target *target = &targets[i]; 1090 struct bpf_link *uprobe_link; 1091 bool is_new; 1092 int spec_id; 1093 1094 /* Spec ID can be either reused or newly allocated. If it is 1095 * newly allocated, we'll need to fill out spec map, otherwise 1096 * entire spec should be valid and can be just used by a new 1097 * uprobe. We reuse spec when USDT arg spec is identical. We 1098 * also never share specs between two different USDT 1099 * attachments ("links"), so all the reused specs already 1100 * share USDT cookie value implicitly. 1101 */ 1102 err = allocate_spec_id(man, specs_hash, link, target, &spec_id, &is_new); 1103 if (err) 1104 goto err_out; 1105 1106 if (is_new && bpf_map_update_elem(spec_map_fd, &spec_id, &target->spec, BPF_ANY)) { 1107 err = -errno; 1108 pr_warn("usdt: failed to set USDT spec #%d for '%s:%s' in '%s': %s\n", 1109 spec_id, usdt_provider, usdt_name, path, errstr(err)); 1110 goto err_out; 1111 } 1112 if (!man->has_bpf_cookie && 1113 bpf_map_update_elem(ip_map_fd, &target->abs_ip, &spec_id, BPF_NOEXIST)) { 1114 err = -errno; 1115 if (err == -EEXIST) { 1116 pr_warn("usdt: IP collision detected for spec #%d for '%s:%s' in '%s'\n", 1117 spec_id, usdt_provider, usdt_name, path); 1118 } else { 1119 pr_warn("usdt: failed to map IP 0x%lx to spec #%d for '%s:%s' in '%s': %s\n", 1120 target->abs_ip, spec_id, usdt_provider, usdt_name, 1121 path, errstr(err)); 1122 } 1123 goto err_out; 1124 } 1125 1126 if (man->has_uprobe_multi) { 1127 offsets[i] = target->rel_ip; 1128 ref_ctr_offsets[i] = target->sema_off; 1129 cookies[i] = spec_id; 1130 } else { 1131 opts.ref_ctr_offset = target->sema_off; 1132 opts.bpf_cookie = man->has_bpf_cookie ? spec_id : 0; 1133 uprobe_link = bpf_program__attach_uprobe_opts(prog, pid, path, 1134 target->rel_ip, &opts); 1135 err = libbpf_get_error(uprobe_link); 1136 if (err) { 1137 pr_warn("usdt: failed to attach uprobe #%d for '%s:%s' in '%s': %s\n", 1138 i, usdt_provider, usdt_name, path, errstr(err)); 1139 goto err_out; 1140 } 1141 1142 link->uprobes[i].link = uprobe_link; 1143 link->uprobes[i].abs_ip = target->abs_ip; 1144 link->uprobe_cnt++; 1145 } 1146 } 1147 1148 if (man->has_uprobe_multi) { 1149 LIBBPF_OPTS(bpf_uprobe_multi_opts, opts_multi, 1150 .ref_ctr_offsets = ref_ctr_offsets, 1151 .offsets = offsets, 1152 .cookies = cookies, 1153 .cnt = target_cnt, 1154 ); 1155 1156 link->multi_link = bpf_program__attach_uprobe_multi(prog, pid, path, 1157 NULL, &opts_multi); 1158 if (!link->multi_link) { 1159 err = -errno; 1160 pr_warn("usdt: failed to attach uprobe multi for '%s:%s' in '%s': %s\n", 1161 usdt_provider, usdt_name, path, errstr(err)); 1162 goto err_out; 1163 } 1164 1165 free(offsets); 1166 free(ref_ctr_offsets); 1167 free(cookies); 1168 } 1169 1170 free(targets); 1171 hashmap__free(specs_hash); 1172 elf_close(&elf_fd); 1173 return &link->link; 1174 1175 err_out: 1176 free(offsets); 1177 free(ref_ctr_offsets); 1178 free(cookies); 1179 1180 if (link) 1181 bpf_link__destroy(&link->link); 1182 free(targets); 1183 hashmap__free(specs_hash); 1184 elf_close(&elf_fd); 1185 return libbpf_err_ptr(err); 1186 } 1187 1188 /* Parse out USDT ELF note from '.note.stapsdt' section. 1189 * Logic inspired by perf's code. 1190 */ 1191 static int parse_usdt_note(GElf_Nhdr *nhdr, const char *data, size_t name_off, size_t desc_off, 1192 struct usdt_note *note) 1193 { 1194 const char *provider, *name, *args; 1195 long addrs[3]; 1196 size_t len; 1197 1198 /* sanity check USDT note name and type first */ 1199 if (strncmp(data + name_off, USDT_NOTE_NAME, nhdr->n_namesz) != 0) 1200 return -EINVAL; 1201 if (nhdr->n_type != USDT_NOTE_TYPE) 1202 return -EINVAL; 1203 1204 /* sanity check USDT note contents ("description" in ELF terminology) */ 1205 len = nhdr->n_descsz; 1206 data = data + desc_off; 1207 1208 /* +3 is the very minimum required to store three empty strings */ 1209 if (len < sizeof(addrs) + 3) 1210 return -EINVAL; 1211 1212 /* get location, base, and semaphore addrs */ 1213 memcpy(&addrs, data, sizeof(addrs)); 1214 1215 /* parse string fields: provider, name, args */ 1216 provider = data + sizeof(addrs); 1217 1218 name = (const char *)memchr(provider, '\0', data + len - provider); 1219 if (!name) /* non-zero-terminated provider */ 1220 return -EINVAL; 1221 name++; 1222 if (name >= data + len || *name == '\0') /* missing or empty name */ 1223 return -EINVAL; 1224 1225 args = memchr(name, '\0', data + len - name); 1226 if (!args) /* non-zero-terminated name */ 1227 return -EINVAL; 1228 ++args; 1229 if (args >= data + len) /* missing arguments spec */ 1230 return -EINVAL; 1231 1232 note->provider = provider; 1233 note->name = name; 1234 if (*args == '\0' || *args == ':') 1235 note->args = ""; 1236 else 1237 note->args = args; 1238 note->loc_addr = addrs[0]; 1239 note->base_addr = addrs[1]; 1240 note->sema_addr = addrs[2]; 1241 1242 return 0; 1243 } 1244 1245 static int parse_usdt_arg(const char *arg_str, int arg_num, struct usdt_arg_spec *arg, int *arg_sz); 1246 1247 static int parse_usdt_spec(struct usdt_spec *spec, const struct usdt_note *note, __u64 usdt_cookie) 1248 { 1249 struct usdt_arg_spec *arg; 1250 const char *s; 1251 int arg_sz, len; 1252 1253 spec->usdt_cookie = usdt_cookie; 1254 spec->arg_cnt = 0; 1255 1256 s = note->args; 1257 while (s[0]) { 1258 if (spec->arg_cnt >= USDT_MAX_ARG_CNT) { 1259 pr_warn("usdt: too many USDT arguments (> %d) for '%s:%s' with args spec '%s'\n", 1260 USDT_MAX_ARG_CNT, note->provider, note->name, note->args); 1261 return -E2BIG; 1262 } 1263 1264 arg = &spec->args[spec->arg_cnt]; 1265 len = parse_usdt_arg(s, spec->arg_cnt, arg, &arg_sz); 1266 if (len < 0) 1267 return len; 1268 1269 arg->arg_signed = arg_sz < 0; 1270 if (arg_sz < 0) 1271 arg_sz = -arg_sz; 1272 1273 switch (arg_sz) { 1274 case 1: case 2: case 4: case 8: 1275 arg->arg_bitshift = 64 - arg_sz * 8; 1276 break; 1277 default: 1278 pr_warn("usdt: unsupported arg #%d (spec '%s') size: %d\n", 1279 spec->arg_cnt, s, arg_sz); 1280 return -EINVAL; 1281 } 1282 1283 s += len; 1284 spec->arg_cnt++; 1285 } 1286 1287 return 0; 1288 } 1289 1290 /* Architecture-specific logic for parsing USDT argument location specs */ 1291 1292 #if defined(__x86_64__) || defined(__i386__) 1293 1294 static int calc_pt_regs_off(const char *reg_name) 1295 { 1296 static struct { 1297 const char *names[4]; 1298 size_t pt_regs_off; 1299 } reg_map[] = { 1300 #ifdef __x86_64__ 1301 #define reg_off(reg64, reg32) offsetof(struct pt_regs, reg64) 1302 #else 1303 #define reg_off(reg64, reg32) offsetof(struct pt_regs, reg32) 1304 #endif 1305 { {"rip", "eip", "", ""}, reg_off(rip, eip) }, 1306 { {"rax", "eax", "ax", "al"}, reg_off(rax, eax) }, 1307 { {"rbx", "ebx", "bx", "bl"}, reg_off(rbx, ebx) }, 1308 { {"rcx", "ecx", "cx", "cl"}, reg_off(rcx, ecx) }, 1309 { {"rdx", "edx", "dx", "dl"}, reg_off(rdx, edx) }, 1310 { {"rsi", "esi", "si", "sil"}, reg_off(rsi, esi) }, 1311 { {"rdi", "edi", "di", "dil"}, reg_off(rdi, edi) }, 1312 { {"rbp", "ebp", "bp", "bpl"}, reg_off(rbp, ebp) }, 1313 { {"rsp", "esp", "sp", "spl"}, reg_off(rsp, esp) }, 1314 #undef reg_off 1315 #ifdef __x86_64__ 1316 { {"r8", "r8d", "r8w", "r8b"}, offsetof(struct pt_regs, r8) }, 1317 { {"r9", "r9d", "r9w", "r9b"}, offsetof(struct pt_regs, r9) }, 1318 { {"r10", "r10d", "r10w", "r10b"}, offsetof(struct pt_regs, r10) }, 1319 { {"r11", "r11d", "r11w", "r11b"}, offsetof(struct pt_regs, r11) }, 1320 { {"r12", "r12d", "r12w", "r12b"}, offsetof(struct pt_regs, r12) }, 1321 { {"r13", "r13d", "r13w", "r13b"}, offsetof(struct pt_regs, r13) }, 1322 { {"r14", "r14d", "r14w", "r14b"}, offsetof(struct pt_regs, r14) }, 1323 { {"r15", "r15d", "r15w", "r15b"}, offsetof(struct pt_regs, r15) }, 1324 #endif 1325 }; 1326 int i, j; 1327 1328 for (i = 0; i < ARRAY_SIZE(reg_map); i++) { 1329 for (j = 0; j < ARRAY_SIZE(reg_map[i].names); j++) { 1330 if (strcmp(reg_name, reg_map[i].names[j]) == 0) 1331 return reg_map[i].pt_regs_off; 1332 } 1333 } 1334 1335 pr_warn("usdt: unrecognized register '%s'\n", reg_name); 1336 return -ENOENT; 1337 } 1338 1339 static int parse_usdt_arg(const char *arg_str, int arg_num, struct usdt_arg_spec *arg, int *arg_sz) 1340 { 1341 char reg_name[16] = {0}, idx_reg_name[16] = {0}; 1342 int len, reg_off, idx_reg_off, scale = 1; 1343 long off = 0; 1344 1345 if (sscanf(arg_str, " %d @ %ld ( %%%15[^,] , %%%15[^,] , %d ) %n", 1346 arg_sz, &off, reg_name, idx_reg_name, &scale, &len) == 5 || 1347 sscanf(arg_str, " %d @ ( %%%15[^,] , %%%15[^,] , %d ) %n", 1348 arg_sz, reg_name, idx_reg_name, &scale, &len) == 4 || 1349 sscanf(arg_str, " %d @ %ld ( %%%15[^,] , %%%15[^)] ) %n", 1350 arg_sz, &off, reg_name, idx_reg_name, &len) == 4 || 1351 sscanf(arg_str, " %d @ ( %%%15[^,] , %%%15[^)] ) %n", 1352 arg_sz, reg_name, idx_reg_name, &len) == 3 1353 ) { 1354 /* 1355 * Scale Index Base case: 1356 * 1@-96(%rbp,%rax,8) 1357 * 1@(%rbp,%rax,8) 1358 * 1@-96(%rbp,%rax) 1359 * 1@(%rbp,%rax) 1360 */ 1361 arg->arg_type = USDT_ARG_SIB; 1362 arg->val_off = off; 1363 1364 reg_off = calc_pt_regs_off(reg_name); 1365 if (reg_off < 0) 1366 return reg_off; 1367 arg->reg_off = reg_off; 1368 1369 idx_reg_off = calc_pt_regs_off(idx_reg_name); 1370 if (idx_reg_off < 0) 1371 return idx_reg_off; 1372 arg->idx_reg_off = idx_reg_off; 1373 1374 /* validate scale factor and set fields directly */ 1375 switch (scale) { 1376 case 1: arg->scale_bitshift = 0; break; 1377 case 2: arg->scale_bitshift = 1; break; 1378 case 4: arg->scale_bitshift = 2; break; 1379 case 8: arg->scale_bitshift = 3; break; 1380 default: 1381 pr_warn("usdt: invalid SIB scale %d, expected 1, 2, 4, 8\n", scale); 1382 return -EINVAL; 1383 } 1384 } else if (sscanf(arg_str, " %d @ %ld ( %%%15[^)] ) %n", 1385 arg_sz, &off, reg_name, &len) == 3) { 1386 /* Memory dereference case, e.g., -4@-20(%rbp) */ 1387 arg->arg_type = USDT_ARG_REG_DEREF; 1388 arg->val_off = off; 1389 reg_off = calc_pt_regs_off(reg_name); 1390 if (reg_off < 0) 1391 return reg_off; 1392 arg->reg_off = reg_off; 1393 } else if (sscanf(arg_str, " %d @ ( %%%15[^)] ) %n", arg_sz, reg_name, &len) == 2) { 1394 /* Memory dereference case without offset, e.g., 8@(%rsp) */ 1395 arg->arg_type = USDT_ARG_REG_DEREF; 1396 arg->val_off = 0; 1397 reg_off = calc_pt_regs_off(reg_name); 1398 if (reg_off < 0) 1399 return reg_off; 1400 arg->reg_off = reg_off; 1401 } else if (sscanf(arg_str, " %d @ %%%15s %n", arg_sz, reg_name, &len) == 2) { 1402 /* Register read case, e.g., -4@%eax */ 1403 arg->arg_type = USDT_ARG_REG; 1404 /* register read has no memory offset */ 1405 arg->val_off = 0; 1406 1407 reg_off = calc_pt_regs_off(reg_name); 1408 if (reg_off < 0) 1409 return reg_off; 1410 arg->reg_off = reg_off; 1411 } else if (sscanf(arg_str, " %d @ $%ld %n", arg_sz, &off, &len) == 2) { 1412 /* Constant value case, e.g., 4@$71 */ 1413 arg->arg_type = USDT_ARG_CONST; 1414 arg->val_off = off; 1415 arg->reg_off = 0; 1416 } else { 1417 pr_warn("usdt: unrecognized arg #%d spec '%s'\n", arg_num, arg_str); 1418 return -EINVAL; 1419 } 1420 1421 return len; 1422 } 1423 1424 #elif defined(__s390x__) 1425 1426 static int parse_usdt_arg(const char *arg_str, int arg_num, struct usdt_arg_spec *arg, int *arg_sz) 1427 { 1428 unsigned int reg; 1429 int len; 1430 long off; 1431 1432 if (sscanf(arg_str, " %d @ %ld ( %%r%u ) %n", arg_sz, &off, ®, &len) == 3) { 1433 /* Memory dereference case, e.g., -2@-28(%r15) */ 1434 arg->arg_type = USDT_ARG_REG_DEREF; 1435 arg->val_off = off; 1436 if (reg > 15) { 1437 pr_warn("usdt: unrecognized register '%%r%u'\n", reg); 1438 return -EINVAL; 1439 } 1440 arg->reg_off = offsetof(user_pt_regs, gprs[reg]); 1441 } else if (sscanf(arg_str, " %d @ %%r%u %n", arg_sz, ®, &len) == 2) { 1442 /* Register read case, e.g., -8@%r0 */ 1443 arg->arg_type = USDT_ARG_REG; 1444 arg->val_off = 0; 1445 if (reg > 15) { 1446 pr_warn("usdt: unrecognized register '%%r%u'\n", reg); 1447 return -EINVAL; 1448 } 1449 arg->reg_off = offsetof(user_pt_regs, gprs[reg]); 1450 } else if (sscanf(arg_str, " %d @ %ld %n", arg_sz, &off, &len) == 2) { 1451 /* Constant value case, e.g., 4@71 */ 1452 arg->arg_type = USDT_ARG_CONST; 1453 arg->val_off = off; 1454 arg->reg_off = 0; 1455 } else { 1456 pr_warn("usdt: unrecognized arg #%d spec '%s'\n", arg_num, arg_str); 1457 return -EINVAL; 1458 } 1459 1460 return len; 1461 } 1462 1463 #elif defined(__aarch64__) 1464 1465 static int calc_pt_regs_off(const char *reg_name) 1466 { 1467 int reg_num; 1468 1469 if (sscanf(reg_name, "x%d", ®_num) == 1) { 1470 if (reg_num >= 0 && reg_num < 31) 1471 return offsetof(struct user_pt_regs, regs[reg_num]); 1472 } else if (strcmp(reg_name, "sp") == 0) { 1473 return offsetof(struct user_pt_regs, sp); 1474 } 1475 pr_warn("usdt: unrecognized register '%s'\n", reg_name); 1476 return -ENOENT; 1477 } 1478 1479 static int parse_usdt_arg(const char *arg_str, int arg_num, struct usdt_arg_spec *arg, int *arg_sz) 1480 { 1481 char reg_name[16]; 1482 int len, reg_off; 1483 long off; 1484 1485 if (sscanf(arg_str, " %d @ \[ %15[a-z0-9] , %ld ] %n", arg_sz, reg_name, &off, &len) == 3) { 1486 /* Memory dereference case, e.g., -4@[sp, 96] */ 1487 arg->arg_type = USDT_ARG_REG_DEREF; 1488 arg->val_off = off; 1489 reg_off = calc_pt_regs_off(reg_name); 1490 if (reg_off < 0) 1491 return reg_off; 1492 arg->reg_off = reg_off; 1493 } else if (sscanf(arg_str, " %d @ \[ %15[a-z0-9] ] %n", arg_sz, reg_name, &len) == 2) { 1494 /* Memory dereference case, e.g., -4@[sp] */ 1495 arg->arg_type = USDT_ARG_REG_DEREF; 1496 arg->val_off = 0; 1497 reg_off = calc_pt_regs_off(reg_name); 1498 if (reg_off < 0) 1499 return reg_off; 1500 arg->reg_off = reg_off; 1501 } else if (sscanf(arg_str, " %d @ %ld %n", arg_sz, &off, &len) == 2) { 1502 /* Constant value case, e.g., 4@5 */ 1503 arg->arg_type = USDT_ARG_CONST; 1504 arg->val_off = off; 1505 arg->reg_off = 0; 1506 } else if (sscanf(arg_str, " %d @ %15[a-z0-9] %n", arg_sz, reg_name, &len) == 2) { 1507 /* Register read case, e.g., -8@x4 */ 1508 arg->arg_type = USDT_ARG_REG; 1509 arg->val_off = 0; 1510 reg_off = calc_pt_regs_off(reg_name); 1511 if (reg_off < 0) 1512 return reg_off; 1513 arg->reg_off = reg_off; 1514 } else { 1515 pr_warn("usdt: unrecognized arg #%d spec '%s'\n", arg_num, arg_str); 1516 return -EINVAL; 1517 } 1518 1519 return len; 1520 } 1521 1522 #elif defined(__riscv) 1523 1524 static int calc_pt_regs_off(const char *reg_name) 1525 { 1526 static struct { 1527 const char *name; 1528 size_t pt_regs_off; 1529 } reg_map[] = { 1530 { "ra", offsetof(struct user_regs_struct, ra) }, 1531 { "sp", offsetof(struct user_regs_struct, sp) }, 1532 { "gp", offsetof(struct user_regs_struct, gp) }, 1533 { "tp", offsetof(struct user_regs_struct, tp) }, 1534 { "a0", offsetof(struct user_regs_struct, a0) }, 1535 { "a1", offsetof(struct user_regs_struct, a1) }, 1536 { "a2", offsetof(struct user_regs_struct, a2) }, 1537 { "a3", offsetof(struct user_regs_struct, a3) }, 1538 { "a4", offsetof(struct user_regs_struct, a4) }, 1539 { "a5", offsetof(struct user_regs_struct, a5) }, 1540 { "a6", offsetof(struct user_regs_struct, a6) }, 1541 { "a7", offsetof(struct user_regs_struct, a7) }, 1542 { "s0", offsetof(struct user_regs_struct, s0) }, 1543 { "s1", offsetof(struct user_regs_struct, s1) }, 1544 { "s2", offsetof(struct user_regs_struct, s2) }, 1545 { "s3", offsetof(struct user_regs_struct, s3) }, 1546 { "s4", offsetof(struct user_regs_struct, s4) }, 1547 { "s5", offsetof(struct user_regs_struct, s5) }, 1548 { "s6", offsetof(struct user_regs_struct, s6) }, 1549 { "s7", offsetof(struct user_regs_struct, s7) }, 1550 { "s8", offsetof(struct user_regs_struct, rv_s8) }, 1551 { "s9", offsetof(struct user_regs_struct, s9) }, 1552 { "s10", offsetof(struct user_regs_struct, s10) }, 1553 { "s11", offsetof(struct user_regs_struct, s11) }, 1554 { "t0", offsetof(struct user_regs_struct, t0) }, 1555 { "t1", offsetof(struct user_regs_struct, t1) }, 1556 { "t2", offsetof(struct user_regs_struct, t2) }, 1557 { "t3", offsetof(struct user_regs_struct, t3) }, 1558 { "t4", offsetof(struct user_regs_struct, t4) }, 1559 { "t5", offsetof(struct user_regs_struct, t5) }, 1560 { "t6", offsetof(struct user_regs_struct, t6) }, 1561 }; 1562 int i; 1563 1564 for (i = 0; i < ARRAY_SIZE(reg_map); i++) { 1565 if (strcmp(reg_name, reg_map[i].name) == 0) 1566 return reg_map[i].pt_regs_off; 1567 } 1568 1569 pr_warn("usdt: unrecognized register '%s'\n", reg_name); 1570 return -ENOENT; 1571 } 1572 1573 static int parse_usdt_arg(const char *arg_str, int arg_num, struct usdt_arg_spec *arg, int *arg_sz) 1574 { 1575 char reg_name[16]; 1576 int len, reg_off; 1577 long off; 1578 1579 if (sscanf(arg_str, " %d @ %ld ( %15[a-z0-9] ) %n", arg_sz, &off, reg_name, &len) == 3) { 1580 /* Memory dereference case, e.g., -8@-88(s0) */ 1581 arg->arg_type = USDT_ARG_REG_DEREF; 1582 arg->val_off = off; 1583 reg_off = calc_pt_regs_off(reg_name); 1584 if (reg_off < 0) 1585 return reg_off; 1586 arg->reg_off = reg_off; 1587 } else if (sscanf(arg_str, " %d @ %ld %n", arg_sz, &off, &len) == 2) { 1588 /* Constant value case, e.g., 4@5 */ 1589 arg->arg_type = USDT_ARG_CONST; 1590 arg->val_off = off; 1591 arg->reg_off = 0; 1592 } else if (sscanf(arg_str, " %d @ %15[a-z0-9] %n", arg_sz, reg_name, &len) == 2) { 1593 /* Register read case, e.g., -8@a1 */ 1594 arg->arg_type = USDT_ARG_REG; 1595 arg->val_off = 0; 1596 reg_off = calc_pt_regs_off(reg_name); 1597 if (reg_off < 0) 1598 return reg_off; 1599 arg->reg_off = reg_off; 1600 } else { 1601 pr_warn("usdt: unrecognized arg #%d spec '%s'\n", arg_num, arg_str); 1602 return -EINVAL; 1603 } 1604 1605 return len; 1606 } 1607 1608 #elif defined(__arm__) 1609 1610 static int calc_pt_regs_off(const char *reg_name) 1611 { 1612 static struct { 1613 const char *name; 1614 size_t pt_regs_off; 1615 } reg_map[] = { 1616 { "r0", offsetof(struct pt_regs, uregs[0]) }, 1617 { "r1", offsetof(struct pt_regs, uregs[1]) }, 1618 { "r2", offsetof(struct pt_regs, uregs[2]) }, 1619 { "r3", offsetof(struct pt_regs, uregs[3]) }, 1620 { "r4", offsetof(struct pt_regs, uregs[4]) }, 1621 { "r5", offsetof(struct pt_regs, uregs[5]) }, 1622 { "r6", offsetof(struct pt_regs, uregs[6]) }, 1623 { "r7", offsetof(struct pt_regs, uregs[7]) }, 1624 { "r8", offsetof(struct pt_regs, uregs[8]) }, 1625 { "r9", offsetof(struct pt_regs, uregs[9]) }, 1626 { "r10", offsetof(struct pt_regs, uregs[10]) }, 1627 { "fp", offsetof(struct pt_regs, uregs[11]) }, 1628 { "ip", offsetof(struct pt_regs, uregs[12]) }, 1629 { "sp", offsetof(struct pt_regs, uregs[13]) }, 1630 { "lr", offsetof(struct pt_regs, uregs[14]) }, 1631 { "pc", offsetof(struct pt_regs, uregs[15]) }, 1632 }; 1633 int i; 1634 1635 for (i = 0; i < ARRAY_SIZE(reg_map); i++) { 1636 if (strcmp(reg_name, reg_map[i].name) == 0) 1637 return reg_map[i].pt_regs_off; 1638 } 1639 1640 pr_warn("usdt: unrecognized register '%s'\n", reg_name); 1641 return -ENOENT; 1642 } 1643 1644 static int parse_usdt_arg(const char *arg_str, int arg_num, struct usdt_arg_spec *arg, int *arg_sz) 1645 { 1646 char reg_name[16]; 1647 int len, reg_off; 1648 long off; 1649 1650 if (sscanf(arg_str, " %d @ \[ %15[a-z0-9] , #%ld ] %n", 1651 arg_sz, reg_name, &off, &len) == 3) { 1652 /* Memory dereference case, e.g., -4@[fp, #96] */ 1653 arg->arg_type = USDT_ARG_REG_DEREF; 1654 arg->val_off = off; 1655 reg_off = calc_pt_regs_off(reg_name); 1656 if (reg_off < 0) 1657 return reg_off; 1658 arg->reg_off = reg_off; 1659 } else if (sscanf(arg_str, " %d @ \[ %15[a-z0-9] ] %n", arg_sz, reg_name, &len) == 2) { 1660 /* Memory dereference case, e.g., -4@[sp] */ 1661 arg->arg_type = USDT_ARG_REG_DEREF; 1662 arg->val_off = 0; 1663 reg_off = calc_pt_regs_off(reg_name); 1664 if (reg_off < 0) 1665 return reg_off; 1666 arg->reg_off = reg_off; 1667 } else if (sscanf(arg_str, " %d @ #%ld %n", arg_sz, &off, &len) == 2) { 1668 /* Constant value case, e.g., 4@#5 */ 1669 arg->arg_type = USDT_ARG_CONST; 1670 arg->val_off = off; 1671 arg->reg_off = 0; 1672 } else if (sscanf(arg_str, " %d @ %15[a-z0-9] %n", arg_sz, reg_name, &len) == 2) { 1673 /* Register read case, e.g., -8@r4 */ 1674 arg->arg_type = USDT_ARG_REG; 1675 arg->val_off = 0; 1676 reg_off = calc_pt_regs_off(reg_name); 1677 if (reg_off < 0) 1678 return reg_off; 1679 arg->reg_off = reg_off; 1680 } else { 1681 pr_warn("usdt: unrecognized arg #%d spec '%s'\n", arg_num, arg_str); 1682 return -EINVAL; 1683 } 1684 1685 return len; 1686 } 1687 1688 #else 1689 1690 static int parse_usdt_arg(const char *arg_str, int arg_num, struct usdt_arg_spec *arg, int *arg_sz) 1691 { 1692 pr_warn("usdt: libbpf doesn't support USDTs on current architecture\n"); 1693 return -ENOTSUP; 1694 } 1695 1696 #endif 1697