~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

TOMOYO Linux Cross Reference
Linux/tools/testing/selftests/bpf/trace_helpers.h

Version: ~ [ linux-6.11.5 ] ~ [ linux-6.10.14 ] ~ [ linux-6.9.12 ] ~ [ linux-6.8.12 ] ~ [ linux-6.7.12 ] ~ [ linux-6.6.58 ] ~ [ linux-6.5.13 ] ~ [ linux-6.4.16 ] ~ [ linux-6.3.13 ] ~ [ linux-6.2.16 ] ~ [ linux-6.1.114 ] ~ [ linux-6.0.19 ] ~ [ linux-5.19.17 ] ~ [ linux-5.18.19 ] ~ [ linux-5.17.15 ] ~ [ linux-5.16.20 ] ~ [ linux-5.15.169 ] ~ [ linux-5.14.21 ] ~ [ linux-5.13.19 ] ~ [ linux-5.12.19 ] ~ [ linux-5.11.22 ] ~ [ linux-5.10.228 ] ~ [ linux-5.9.16 ] ~ [ linux-5.8.18 ] ~ [ linux-5.7.19 ] ~ [ linux-5.6.19 ] ~ [ linux-5.5.19 ] ~ [ linux-5.4.284 ] ~ [ linux-5.3.18 ] ~ [ linux-5.2.21 ] ~ [ linux-5.1.21 ] ~ [ linux-5.0.21 ] ~ [ linux-4.20.17 ] ~ [ linux-4.19.322 ] ~ [ linux-4.18.20 ] ~ [ linux-4.17.19 ] ~ [ linux-4.16.18 ] ~ [ linux-4.15.18 ] ~ [ linux-4.14.336 ] ~ [ linux-4.13.16 ] ~ [ linux-4.12.14 ] ~ [ linux-4.11.12 ] ~ [ linux-4.10.17 ] ~ [ linux-4.9.337 ] ~ [ linux-4.4.302 ] ~ [ linux-3.10.108 ] ~ [ linux-2.6.32.71 ] ~ [ linux-2.6.0 ] ~ [ linux-2.4.37.11 ] ~ [ unix-v6-master ] ~ [ ccs-tools-1.8.9 ] ~ [ policy-sample ] ~
Architecture: ~ [ i386 ] ~ [ alpha ] ~ [ m68k ] ~ [ mips ] ~ [ ppc ] ~ [ sparc ] ~ [ sparc64 ] ~

  1 /* SPDX-License-Identifier: GPL-2.0 */
  2 #ifndef __TRACE_HELPER_H
  3 #define __TRACE_HELPER_H
  4 
  5 #include <bpf/libbpf.h>
  6 
  7 #define __ALIGN_MASK(x, mask)   (((x)+(mask))&~(mask))
  8 #define ALIGN(x, a)             __ALIGN_MASK(x, (typeof(x))(a)-1)
  9 
 10 struct ksym {
 11         long addr;
 12         char *name;
 13 };
 14 struct ksyms;
 15 
 16 typedef int (*ksym_cmp_t)(const void *p1, const void *p2);
 17 typedef int (*ksym_search_cmp_t)(const void *p1, const struct ksym *p2);
 18 
 19 int load_kallsyms(void);
 20 struct ksym *ksym_search(long key);
 21 long ksym_get_addr(const char *name);
 22 
 23 struct ksyms *load_kallsyms_local(void);
 24 struct ksym *ksym_search_local(struct ksyms *ksyms, long key);
 25 long ksym_get_addr_local(struct ksyms *ksyms, const char *name);
 26 void free_kallsyms_local(struct ksyms *ksyms);
 27 
 28 struct ksyms *load_kallsyms_custom_local(ksym_cmp_t cmp_cb);
 29 struct ksym *search_kallsyms_custom_local(struct ksyms *ksyms, const void *p1,
 30                                           ksym_search_cmp_t cmp_cb);
 31 
 32 /* open kallsyms and find addresses on the fly, faster than load + search. */
 33 int kallsyms_find(const char *sym, unsigned long long *addr);
 34 
 35 void read_trace_pipe(void);
 36 int read_trace_pipe_iter(void (*cb)(const char *str, void *data),
 37                          void *data, int iter);
 38 
 39 ssize_t get_uprobe_offset(const void *addr);
 40 ssize_t get_rel_offset(uintptr_t addr);
 41 
 42 int read_build_id(const char *path, char *build_id, size_t size);
 43 
 44 #endif
 45 

~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

kernel.org | git.kernel.org | LWN.net | Project Home | SVN repository | Mail admin

Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.

sflogo.php