Linux Audio

Check our new training course

Loading...
v6.13.7
   1/* SPDX-License-Identifier: (LGPL-2.1 OR BSD-2-Clause) */
   2
   3/*
   4 * Common eBPF ELF object loading operations.
   5 *
   6 * Copyright (C) 2013-2015 Alexei Starovoitov <ast@kernel.org>
   7 * Copyright (C) 2015 Wang Nan <wangnan0@huawei.com>
   8 * Copyright (C) 2015 Huawei Inc.
   9 */
  10#ifndef __LIBBPF_LIBBPF_H
  11#define __LIBBPF_LIBBPF_H
  12
  13#include <stdarg.h>
  14#include <stdio.h>
  15#include <stdint.h>
  16#include <stdbool.h>
  17#include <sys/types.h>  // for size_t
  18#include <linux/bpf.h>
  19
  20#include "libbpf_common.h"
  21#include "libbpf_legacy.h"
  22
  23#ifdef __cplusplus
  24extern "C" {
  25#endif
  26
  27LIBBPF_API __u32 libbpf_major_version(void);
  28LIBBPF_API __u32 libbpf_minor_version(void);
  29LIBBPF_API const char *libbpf_version_string(void);
  30
  31enum libbpf_errno {
  32	__LIBBPF_ERRNO__START = 4000,
  33
  34	/* Something wrong in libelf */
  35	LIBBPF_ERRNO__LIBELF = __LIBBPF_ERRNO__START,
  36	LIBBPF_ERRNO__FORMAT,	/* BPF object format invalid */
  37	LIBBPF_ERRNO__KVERSION,	/* Incorrect or no 'version' section */
  38	LIBBPF_ERRNO__ENDIAN,	/* Endian mismatch */
  39	LIBBPF_ERRNO__INTERNAL,	/* Internal error in libbpf */
  40	LIBBPF_ERRNO__RELOC,	/* Relocation failed */
  41	LIBBPF_ERRNO__LOAD,	/* Load program failure for unknown reason */
  42	LIBBPF_ERRNO__VERIFY,	/* Kernel verifier blocks program loading */
  43	LIBBPF_ERRNO__PROG2BIG,	/* Program too big */
  44	LIBBPF_ERRNO__KVER,	/* Incorrect kernel version */
  45	LIBBPF_ERRNO__PROGTYPE,	/* Kernel doesn't support this program type */
  46	LIBBPF_ERRNO__WRNGPID,	/* Wrong pid in netlink message */
  47	LIBBPF_ERRNO__INVSEQ,	/* Invalid netlink sequence */
  48	LIBBPF_ERRNO__NLPARSE,	/* netlink parsing error */
  49	__LIBBPF_ERRNO__END,
  50};
  51
  52LIBBPF_API int libbpf_strerror(int err, char *buf, size_t size);
  53
  54/**
  55 * @brief **libbpf_bpf_attach_type_str()** converts the provided attach type
  56 * value into a textual representation.
  57 * @param t The attach type.
  58 * @return Pointer to a static string identifying the attach type. NULL is
  59 * returned for unknown **bpf_attach_type** values.
  60 */
  61LIBBPF_API const char *libbpf_bpf_attach_type_str(enum bpf_attach_type t);
  62
  63/**
  64 * @brief **libbpf_bpf_link_type_str()** converts the provided link type value
  65 * into a textual representation.
  66 * @param t The link type.
  67 * @return Pointer to a static string identifying the link type. NULL is
  68 * returned for unknown **bpf_link_type** values.
  69 */
  70LIBBPF_API const char *libbpf_bpf_link_type_str(enum bpf_link_type t);
  71
  72/**
  73 * @brief **libbpf_bpf_map_type_str()** converts the provided map type value
  74 * into a textual representation.
  75 * @param t The map type.
  76 * @return Pointer to a static string identifying the map type. NULL is
  77 * returned for unknown **bpf_map_type** values.
  78 */
  79LIBBPF_API const char *libbpf_bpf_map_type_str(enum bpf_map_type t);
  80
  81/**
  82 * @brief **libbpf_bpf_prog_type_str()** converts the provided program type
  83 * value into a textual representation.
  84 * @param t The program type.
  85 * @return Pointer to a static string identifying the program type. NULL is
  86 * returned for unknown **bpf_prog_type** values.
  87 */
  88LIBBPF_API const char *libbpf_bpf_prog_type_str(enum bpf_prog_type t);
  89
  90enum libbpf_print_level {
  91        LIBBPF_WARN,
  92        LIBBPF_INFO,
  93        LIBBPF_DEBUG,
  94};
  95
  96typedef int (*libbpf_print_fn_t)(enum libbpf_print_level level,
  97				 const char *, va_list ap);
  98
  99/**
 100 * @brief **libbpf_set_print()** sets user-provided log callback function to
 101 * be used for libbpf warnings and informational messages. If the user callback
 102 * is not set, messages are logged to stderr by default. The verbosity of these
 103 * messages can be controlled by setting the environment variable
 104 * LIBBPF_LOG_LEVEL to either warn, info, or debug.
 105 * @param fn The log print function. If NULL, libbpf won't print anything.
 106 * @return Pointer to old print function.
 107 *
 108 * This function is thread-safe.
 109 */
 110LIBBPF_API libbpf_print_fn_t libbpf_set_print(libbpf_print_fn_t fn);
 111
 112/* Hide internal to user */
 113struct bpf_object;
 114
 
 
 
 
 
 115struct bpf_object_open_opts {
 116	/* size of this struct, for forward/backward compatibility */
 117	size_t sz;
 118	/* object name override, if provided:
 119	 * - for object open from file, this will override setting object
 120	 *   name from file path's base name;
 121	 * - for object open from memory buffer, this will specify an object
 122	 *   name and will override default "<addr>-<buf-size>" name;
 123	 */
 124	const char *object_name;
 125	/* parse map definitions non-strictly, allowing extra attributes/data */
 126	bool relaxed_maps;
 
 
 
 
 
 
 127	/* maps that set the 'pinning' attribute in their definition will have
 128	 * their pin_path attribute set to a file in this directory, and be
 129	 * auto-pinned to that path on load; defaults to "/sys/fs/bpf".
 130	 */
 131	const char *pin_root_path;
 132
 133	__u32 :32; /* stub out now removed attach_prog_fd */
 134
 135	/* Additional kernel config content that augments and overrides
 136	 * system Kconfig for CONFIG_xxx externs.
 137	 */
 138	const char *kconfig;
 139	/* Path to the custom BTF to be used for BPF CO-RE relocations.
 140	 * This custom BTF completely replaces the use of vmlinux BTF
 141	 * for the purpose of CO-RE relocations.
 142	 * NOTE: any other BPF feature (e.g., fentry/fexit programs,
 143	 * struct_ops, etc) will need actual kernel BTF at /sys/kernel/btf/vmlinux.
 144	 */
 145	const char *btf_custom_path;
 146	/* Pointer to a buffer for storing kernel logs for applicable BPF
 147	 * commands. Valid kernel_log_size has to be specified as well and are
 148	 * passed-through to bpf() syscall. Keep in mind that kernel might
 149	 * fail operation with -ENOSPC error if provided buffer is too small
 150	 * to contain entire log output.
 151	 * See the comment below for kernel_log_level for interaction between
 152	 * log_buf and log_level settings.
 153	 *
 154	 * If specified, this log buffer will be passed for:
 155	 *   - each BPF progral load (BPF_PROG_LOAD) attempt, unless overridden
 156	 *     with bpf_program__set_log() on per-program level, to get
 157	 *     BPF verifier log output.
 158	 *   - during BPF object's BTF load into kernel (BPF_BTF_LOAD) to get
 159	 *     BTF sanity checking log.
 160	 *
 161	 * Each BPF command (BPF_BTF_LOAD or BPF_PROG_LOAD) will overwrite
 162	 * previous contents, so if you need more fine-grained control, set
 163	 * per-program buffer with bpf_program__set_log_buf() to preserve each
 164	 * individual program's verification log. Keep using kernel_log_buf
 165	 * for BTF verification log, if necessary.
 166	 */
 167	char *kernel_log_buf;
 168	size_t kernel_log_size;
 169	/*
 170	 * Log level can be set independently from log buffer. Log_level=0
 171	 * means that libbpf will attempt loading BTF or program without any
 172	 * logging requested, but will retry with either its own or custom log
 173	 * buffer, if provided, and log_level=1 on any error.
 174	 * And vice versa, setting log_level>0 will request BTF or prog
 175	 * loading with verbose log from the first attempt (and as such also
 176	 * for successfully loaded BTF or program), and the actual log buffer
 177	 * could be either libbpf's own auto-allocated log buffer, if
 178	 * kernel_log_buffer is NULL, or user-provided custom kernel_log_buf.
 179	 * If user didn't provide custom log buffer, libbpf will emit captured
 180	 * logs through its print callback.
 181	 */
 182	__u32 kernel_log_level;
 183	/* Path to BPF FS mount point to derive BPF token from.
 184	 *
 185	 * Created BPF token will be used for all bpf() syscall operations
 186	 * that accept BPF token (e.g., map creation, BTF and program loads,
 187	 * etc) automatically within instantiated BPF object.
 188	 *
 189	 * If bpf_token_path is not specified, libbpf will consult
 190	 * LIBBPF_BPF_TOKEN_PATH environment variable. If set, it will be
 191	 * taken as a value of bpf_token_path option and will force libbpf to
 192	 * either create BPF token from provided custom BPF FS path, or will
 193	 * disable implicit BPF token creation, if envvar value is an empty
 194	 * string. bpf_token_path overrides LIBBPF_BPF_TOKEN_PATH, if both are
 195	 * set at the same time.
 196	 *
 197	 * Setting bpf_token_path option to empty string disables libbpf's
 198	 * automatic attempt to create BPF token from default BPF FS mount
 199	 * point (/sys/fs/bpf), in case this default behavior is undesirable.
 200	 */
 201	const char *bpf_token_path;
 202
 203	size_t :0;
 204};
 205#define bpf_object_open_opts__last_field bpf_token_path
 206
 207/**
 208 * @brief **bpf_object__open()** creates a bpf_object by opening
 209 * the BPF ELF object file pointed to by the passed path and loading it
 210 * into memory.
 211 * @param path BPF object file path.
 212 * @return pointer to the new bpf_object; or NULL is returned on error,
 213 * error code is stored in errno
 214 */
 215LIBBPF_API struct bpf_object *bpf_object__open(const char *path);
 216
 217/**
 218 * @brief **bpf_object__open_file()** creates a bpf_object by opening
 219 * the BPF ELF object file pointed to by the passed path and loading it
 220 * into memory.
 221 * @param path BPF object file path
 222 * @param opts options for how to load the bpf object, this parameter is
 223 * optional and can be set to NULL
 224 * @return pointer to the new bpf_object; or NULL is returned on error,
 225 * error code is stored in errno
 226 */
 227LIBBPF_API struct bpf_object *
 228bpf_object__open_file(const char *path, const struct bpf_object_open_opts *opts);
 229
 230/**
 231 * @brief **bpf_object__open_mem()** creates a bpf_object by reading
 232 * the BPF objects raw bytes from a memory buffer containing a valid
 233 * BPF ELF object file.
 234 * @param obj_buf pointer to the buffer containing ELF file bytes
 235 * @param obj_buf_sz number of bytes in the buffer
 236 * @param opts options for how to load the bpf object
 237 * @return pointer to the new bpf_object; or NULL is returned on error,
 238 * error code is stored in errno
 239 */
 240LIBBPF_API struct bpf_object *
 241bpf_object__open_mem(const void *obj_buf, size_t obj_buf_sz,
 242		     const struct bpf_object_open_opts *opts);
 243
 244/**
 245 * @brief **bpf_object__load()** loads BPF object into kernel.
 246 * @param obj Pointer to a valid BPF object instance returned by
 247 * **bpf_object__open*()** APIs
 248 * @return 0, on success; negative error code, otherwise, error code is
 249 * stored in errno
 250 */
 251LIBBPF_API int bpf_object__load(struct bpf_object *obj);
 252
 253/**
 254 * @brief **bpf_object__close()** closes a BPF object and releases all
 255 * resources.
 256 * @param obj Pointer to a valid BPF object
 257 */
 258LIBBPF_API void bpf_object__close(struct bpf_object *obj);
 259
 260/**
 261 * @brief **bpf_object__pin_maps()** pins each map contained within
 262 * the BPF object at the passed directory.
 263 * @param obj Pointer to a valid BPF object
 264 * @param path A directory where maps should be pinned.
 265 * @return 0, on success; negative error code, otherwise
 266 *
 267 * If `path` is NULL `bpf_map__pin` (which is being used on each map)
 268 * will use the pin_path attribute of each map. In this case, maps that
 269 * don't have a pin_path set will be ignored.
 270 */
 271LIBBPF_API int bpf_object__pin_maps(struct bpf_object *obj, const char *path);
 272
 273/**
 274 * @brief **bpf_object__unpin_maps()** unpins each map contained within
 275 * the BPF object found in the passed directory.
 276 * @param obj Pointer to a valid BPF object
 277 * @param path A directory where pinned maps should be searched for.
 278 * @return 0, on success; negative error code, otherwise
 279 *
 280 * If `path` is NULL `bpf_map__unpin` (which is being used on each map)
 281 * will use the pin_path attribute of each map. In this case, maps that
 282 * don't have a pin_path set will be ignored.
 283 */
 284LIBBPF_API int bpf_object__unpin_maps(struct bpf_object *obj,
 285				      const char *path);
 286LIBBPF_API int bpf_object__pin_programs(struct bpf_object *obj,
 287					const char *path);
 288LIBBPF_API int bpf_object__unpin_programs(struct bpf_object *obj,
 289					  const char *path);
 290LIBBPF_API int bpf_object__pin(struct bpf_object *object, const char *path);
 291LIBBPF_API int bpf_object__unpin(struct bpf_object *object, const char *path);
 
 
 
 
 
 
 
 
 
 
 
 292
 293LIBBPF_API const char *bpf_object__name(const struct bpf_object *obj);
 294LIBBPF_API unsigned int bpf_object__kversion(const struct bpf_object *obj);
 295LIBBPF_API int bpf_object__set_kversion(struct bpf_object *obj, __u32 kern_version);
 296
 297/**
 298 * @brief **bpf_object__token_fd** is an accessor for BPF token FD associated
 299 * with BPF object.
 300 * @param obj Pointer to a valid BPF object
 301 * @return BPF token FD or -1, if it wasn't set
 302 */
 303LIBBPF_API int bpf_object__token_fd(const struct bpf_object *obj);
 304
 305struct btf;
 306LIBBPF_API struct btf *bpf_object__btf(const struct bpf_object *obj);
 307LIBBPF_API int bpf_object__btf_fd(const struct bpf_object *obj);
 308
 309LIBBPF_API struct bpf_program *
 
 
 
 310bpf_object__find_program_by_name(const struct bpf_object *obj,
 311				 const char *name);
 312
 
 
 
 
 
 
 
 
 
 
 
 
 313LIBBPF_API int
 314libbpf_prog_type_by_name(const char *name, enum bpf_prog_type *prog_type,
 315			 enum bpf_attach_type *expected_attach_type);
 316LIBBPF_API int libbpf_attach_type_by_name(const char *name,
 317					  enum bpf_attach_type *attach_type);
 318LIBBPF_API int libbpf_find_vmlinux_btf_id(const char *name,
 319					  enum bpf_attach_type attach_type);
 320
 321/* Accessors of bpf_program */
 322struct bpf_program;
 
 
 323
 324LIBBPF_API struct bpf_program *
 325bpf_object__next_program(const struct bpf_object *obj, struct bpf_program *prog);
 
 
 326
 327#define bpf_object__for_each_program(pos, obj)			\
 328	for ((pos) = bpf_object__next_program((obj), NULL);	\
 329	     (pos) != NULL;					\
 330	     (pos) = bpf_object__next_program((obj), (pos)))
 331
 332LIBBPF_API struct bpf_program *
 333bpf_object__prev_program(const struct bpf_object *obj, struct bpf_program *prog);
 
 
 334
 
 335LIBBPF_API void bpf_program__set_ifindex(struct bpf_program *prog,
 336					 __u32 ifindex);
 337
 338LIBBPF_API const char *bpf_program__name(const struct bpf_program *prog);
 339LIBBPF_API const char *bpf_program__section_name(const struct bpf_program *prog);
 
 340LIBBPF_API bool bpf_program__autoload(const struct bpf_program *prog);
 341LIBBPF_API int bpf_program__set_autoload(struct bpf_program *prog, bool autoload);
 342LIBBPF_API bool bpf_program__autoattach(const struct bpf_program *prog);
 343LIBBPF_API void bpf_program__set_autoattach(struct bpf_program *prog, bool autoattach);
 344
 345struct bpf_insn;
 346
 347/**
 348 * @brief **bpf_program__insns()** gives read-only access to BPF program's
 349 * underlying BPF instructions.
 350 * @param prog BPF program for which to return instructions
 351 * @return a pointer to an array of BPF instructions that belong to the
 352 * specified BPF program
 353 *
 354 * Returned pointer is always valid and not NULL. Number of `struct bpf_insn`
 355 * pointed to can be fetched using **bpf_program__insn_cnt()** API.
 356 *
 357 * Keep in mind, libbpf can modify and append/delete BPF program's
 358 * instructions as it processes BPF object file and prepares everything for
 359 * uploading into the kernel. So depending on the point in BPF object
 360 * lifetime, **bpf_program__insns()** can return different sets of
 361 * instructions. As an example, during BPF object load phase BPF program
 362 * instructions will be CO-RE-relocated, BPF subprograms instructions will be
 363 * appended, ldimm64 instructions will have FDs embedded, etc. So instructions
 364 * returned before **bpf_object__load()** and after it might be quite
 365 * different.
 366 */
 367LIBBPF_API const struct bpf_insn *bpf_program__insns(const struct bpf_program *prog);
 368
 369/**
 370 * @brief **bpf_program__set_insns()** can set BPF program's underlying
 371 * BPF instructions.
 372 *
 373 * WARNING: This is a very advanced libbpf API and users need to know
 374 * what they are doing. This should be used from prog_prepare_load_fn
 375 * callback only.
 376 *
 377 * @param prog BPF program for which to return instructions
 378 * @param new_insns a pointer to an array of BPF instructions
 379 * @param new_insn_cnt number of `struct bpf_insn`'s that form
 380 * specified BPF program
 381 * @return 0, on success; negative error code, otherwise
 382 */
 383LIBBPF_API int bpf_program__set_insns(struct bpf_program *prog,
 384				      struct bpf_insn *new_insns, size_t new_insn_cnt);
 385
 386/**
 387 * @brief **bpf_program__insn_cnt()** returns number of `struct bpf_insn`'s
 388 * that form specified BPF program.
 389 * @param prog BPF program for which to return number of BPF instructions
 390 *
 391 * See **bpf_program__insns()** documentation for notes on how libbpf can
 392 * change instructions and their count during different phases of
 393 * **bpf_object** lifetime.
 394 */
 395LIBBPF_API size_t bpf_program__insn_cnt(const struct bpf_program *prog);
 396
 
 
 397LIBBPF_API int bpf_program__fd(const struct bpf_program *prog);
 398
 399/**
 400 * @brief **bpf_program__pin()** pins the BPF program to a file
 401 * in the BPF FS specified by a path. This increments the programs
 402 * reference count, allowing it to stay loaded after the process
 403 * which loaded it has exited.
 404 *
 405 * @param prog BPF program to pin, must already be loaded
 406 * @param path file path in a BPF file system
 407 * @return 0, on success; negative error code, otherwise
 408 */
 409LIBBPF_API int bpf_program__pin(struct bpf_program *prog, const char *path);
 410
 411/**
 412 * @brief **bpf_program__unpin()** unpins the BPF program from a file
 413 * in the BPFFS specified by a path. This decrements the programs
 414 * reference count.
 415 *
 416 * The file pinning the BPF program can also be unlinked by a different
 417 * process in which case this function will return an error.
 418 *
 419 * @param prog BPF program to unpin
 420 * @param path file path to the pin in a BPF file system
 421 * @return 0, on success; negative error code, otherwise
 422 */
 423LIBBPF_API int bpf_program__unpin(struct bpf_program *prog, const char *path);
 424LIBBPF_API void bpf_program__unload(struct bpf_program *prog);
 425
 426struct bpf_link;
 427
 428LIBBPF_API struct bpf_link *bpf_link__open(const char *path);
 429LIBBPF_API int bpf_link__fd(const struct bpf_link *link);
 430LIBBPF_API const char *bpf_link__pin_path(const struct bpf_link *link);
 431/**
 432 * @brief **bpf_link__pin()** pins the BPF link to a file
 433 * in the BPF FS specified by a path. This increments the links
 434 * reference count, allowing it to stay loaded after the process
 435 * which loaded it has exited.
 436 *
 437 * @param link BPF link to pin, must already be loaded
 438 * @param path file path in a BPF file system
 439 * @return 0, on success; negative error code, otherwise
 440 */
 441
 442LIBBPF_API int bpf_link__pin(struct bpf_link *link, const char *path);
 443
 444/**
 445 * @brief **bpf_link__unpin()** unpins the BPF link from a file
 446 * in the BPFFS specified by a path. This decrements the links
 447 * reference count.
 448 *
 449 * The file pinning the BPF link can also be unlinked by a different
 450 * process in which case this function will return an error.
 451 *
 452 * @param prog BPF program to unpin
 453 * @param path file path to the pin in a BPF file system
 454 * @return 0, on success; negative error code, otherwise
 455 */
 456LIBBPF_API int bpf_link__unpin(struct bpf_link *link);
 457LIBBPF_API int bpf_link__update_program(struct bpf_link *link,
 458					struct bpf_program *prog);
 459LIBBPF_API void bpf_link__disconnect(struct bpf_link *link);
 460LIBBPF_API int bpf_link__detach(struct bpf_link *link);
 461LIBBPF_API int bpf_link__destroy(struct bpf_link *link);
 462
 463/**
 464 * @brief **bpf_program__attach()** is a generic function for attaching
 465 * a BPF program based on auto-detection of program type, attach type,
 466 * and extra parameters, where applicable.
 467 *
 468 * @param prog BPF program to attach
 469 * @return Reference to the newly created BPF link; or NULL is returned on error,
 470 * error code is stored in errno
 471 *
 472 * This is supported for:
 473 *   - kprobe/kretprobe (depends on SEC() definition)
 474 *   - uprobe/uretprobe (depends on SEC() definition)
 475 *   - tracepoint
 476 *   - raw tracepoint
 477 *   - tracing programs (typed raw TP/fentry/fexit/fmod_ret)
 478 */
 479LIBBPF_API struct bpf_link *
 480bpf_program__attach(const struct bpf_program *prog);
 481
 482struct bpf_perf_event_opts {
 483	/* size of this struct, for forward/backward compatibility */
 484	size_t sz;
 485	/* custom user-provided value fetchable through bpf_get_attach_cookie() */
 486	__u64 bpf_cookie;
 487	/* don't use BPF link when attach BPF program */
 488	bool force_ioctl_attach;
 489	size_t :0;
 490};
 491#define bpf_perf_event_opts__last_field force_ioctl_attach
 492
 493LIBBPF_API struct bpf_link *
 494bpf_program__attach_perf_event(const struct bpf_program *prog, int pfd);
 495
 496LIBBPF_API struct bpf_link *
 497bpf_program__attach_perf_event_opts(const struct bpf_program *prog, int pfd,
 498				    const struct bpf_perf_event_opts *opts);
 499
 500/**
 501 * enum probe_attach_mode - the mode to attach kprobe/uprobe
 502 *
 503 * force libbpf to attach kprobe/uprobe in specific mode, -ENOTSUP will
 504 * be returned if it is not supported by the kernel.
 505 */
 506enum probe_attach_mode {
 507	/* attach probe in latest supported mode by kernel */
 508	PROBE_ATTACH_MODE_DEFAULT = 0,
 509	/* attach probe in legacy mode, using debugfs/tracefs */
 510	PROBE_ATTACH_MODE_LEGACY,
 511	/* create perf event with perf_event_open() syscall */
 512	PROBE_ATTACH_MODE_PERF,
 513	/* attach probe with BPF link */
 514	PROBE_ATTACH_MODE_LINK,
 515};
 516
 517struct bpf_kprobe_opts {
 518	/* size of this struct, for forward/backward compatibility */
 519	size_t sz;
 520	/* custom user-provided value fetchable through bpf_get_attach_cookie() */
 521	__u64 bpf_cookie;
 522	/* function's offset to install kprobe to */
 523	size_t offset;
 524	/* kprobe is return probe */
 525	bool retprobe;
 526	/* kprobe attach mode */
 527	enum probe_attach_mode attach_mode;
 528	size_t :0;
 529};
 530#define bpf_kprobe_opts__last_field attach_mode
 531
 532LIBBPF_API struct bpf_link *
 533bpf_program__attach_kprobe(const struct bpf_program *prog, bool retprobe,
 534			   const char *func_name);
 535LIBBPF_API struct bpf_link *
 536bpf_program__attach_kprobe_opts(const struct bpf_program *prog,
 537                                const char *func_name,
 538                                const struct bpf_kprobe_opts *opts);
 539
 540struct bpf_kprobe_multi_opts {
 541	/* size of this struct, for forward/backward compatibility */
 542	size_t sz;
 543	/* array of function symbols to attach */
 544	const char **syms;
 545	/* array of function addresses to attach */
 546	const unsigned long *addrs;
 547	/* array of user-provided values fetchable through bpf_get_attach_cookie */
 548	const __u64 *cookies;
 549	/* number of elements in syms/addrs/cookies arrays */
 550	size_t cnt;
 551	/* create return kprobes */
 552	bool retprobe;
 553	/* create session kprobes */
 554	bool session;
 555	size_t :0;
 556};
 557
 558#define bpf_kprobe_multi_opts__last_field session
 559
 560LIBBPF_API struct bpf_link *
 561bpf_program__attach_kprobe_multi_opts(const struct bpf_program *prog,
 562				      const char *pattern,
 563				      const struct bpf_kprobe_multi_opts *opts);
 564
 565struct bpf_uprobe_multi_opts {
 566	/* size of this struct, for forward/backward compatibility */
 567	size_t sz;
 568	/* array of function symbols to attach to */
 569	const char **syms;
 570	/* array of function addresses to attach to */
 571	const unsigned long *offsets;
 572	/* optional, array of associated ref counter offsets */
 573	const unsigned long *ref_ctr_offsets;
 574	/* optional, array of associated BPF cookies */
 575	const __u64 *cookies;
 576	/* number of elements in syms/addrs/cookies arrays */
 577	size_t cnt;
 578	/* create return uprobes */
 579	bool retprobe;
 580	/* create session kprobes */
 581	bool session;
 582	size_t :0;
 583};
 584
 585#define bpf_uprobe_multi_opts__last_field session
 586
 587/**
 588 * @brief **bpf_program__attach_uprobe_multi()** attaches a BPF program
 589 * to multiple uprobes with uprobe_multi link.
 590 *
 591 * User can specify 2 mutually exclusive set of inputs:
 592 *
 593 *   1) use only path/func_pattern/pid arguments
 594 *
 595 *   2) use path/pid with allowed combinations of
 596 *      syms/offsets/ref_ctr_offsets/cookies/cnt
 597 *
 598 *      - syms and offsets are mutually exclusive
 599 *      - ref_ctr_offsets and cookies are optional
 600 *
 601 *
 602 * @param prog BPF program to attach
 603 * @param pid Process ID to attach the uprobe to, 0 for self (own process),
 604 * -1 for all processes
 605 * @param binary_path Path to binary
 606 * @param func_pattern Regular expression to specify functions to attach
 607 * BPF program to
 608 * @param opts Additional options (see **struct bpf_uprobe_multi_opts**)
 609 * @return 0, on success; negative error code, otherwise
 610 */
 611LIBBPF_API struct bpf_link *
 612bpf_program__attach_uprobe_multi(const struct bpf_program *prog,
 613				 pid_t pid,
 614				 const char *binary_path,
 615				 const char *func_pattern,
 616				 const struct bpf_uprobe_multi_opts *opts);
 617
 618struct bpf_ksyscall_opts {
 619	/* size of this struct, for forward/backward compatibility */
 620	size_t sz;
 621	/* custom user-provided value fetchable through bpf_get_attach_cookie() */
 622	__u64 bpf_cookie;
 623	/* attach as return probe? */
 624	bool retprobe;
 625	size_t :0;
 626};
 627#define bpf_ksyscall_opts__last_field retprobe
 628
 629/**
 630 * @brief **bpf_program__attach_ksyscall()** attaches a BPF program
 631 * to kernel syscall handler of a specified syscall. Optionally it's possible
 632 * to request to install retprobe that will be triggered at syscall exit. It's
 633 * also possible to associate BPF cookie (though options).
 634 *
 635 * Libbpf automatically will determine correct full kernel function name,
 636 * which depending on system architecture and kernel version/configuration
 637 * could be of the form __<arch>_sys_<syscall> or __se_sys_<syscall>, and will
 638 * attach specified program using kprobe/kretprobe mechanism.
 639 *
 640 * **bpf_program__attach_ksyscall()** is an API counterpart of declarative
 641 * **SEC("ksyscall/<syscall>")** annotation of BPF programs.
 642 *
 643 * At the moment **SEC("ksyscall")** and **bpf_program__attach_ksyscall()** do
 644 * not handle all the calling convention quirks for mmap(), clone() and compat
 645 * syscalls. It also only attaches to "native" syscall interfaces. If host
 646 * system supports compat syscalls or defines 32-bit syscalls in 64-bit
 647 * kernel, such syscall interfaces won't be attached to by libbpf.
 648 *
 649 * These limitations may or may not change in the future. Therefore it is
 650 * recommended to use SEC("kprobe") for these syscalls or if working with
 651 * compat and 32-bit interfaces is required.
 652 *
 653 * @param prog BPF program to attach
 654 * @param syscall_name Symbolic name of the syscall (e.g., "bpf")
 655 * @param opts Additional options (see **struct bpf_ksyscall_opts**)
 656 * @return Reference to the newly created BPF link; or NULL is returned on
 657 * error, error code is stored in errno
 658 */
 659LIBBPF_API struct bpf_link *
 660bpf_program__attach_ksyscall(const struct bpf_program *prog,
 661			     const char *syscall_name,
 662			     const struct bpf_ksyscall_opts *opts);
 663
 664struct bpf_uprobe_opts {
 665	/* size of this struct, for forward/backward compatibility */
 666	size_t sz;
 667	/* offset of kernel reference counted USDT semaphore, added in
 668	 * a6ca88b241d5 ("trace_uprobe: support reference counter in fd-based uprobe")
 669	 */
 670	size_t ref_ctr_offset;
 671	/* custom user-provided value fetchable through bpf_get_attach_cookie() */
 672	__u64 bpf_cookie;
 673	/* uprobe is return probe, invoked at function return time */
 674	bool retprobe;
 675	/* Function name to attach to.  Could be an unqualified ("abc") or library-qualified
 676	 * "abc@LIBXYZ" name.  To specify function entry, func_name should be set while
 677	 * func_offset argument to bpf_prog__attach_uprobe_opts() should be 0.  To trace an
 678	 * offset within a function, specify func_name and use func_offset argument to specify
 679	 * offset within the function.  Shared library functions must specify the shared library
 680	 * binary_path.
 681	 */
 682	const char *func_name;
 683	/* uprobe attach mode */
 684	enum probe_attach_mode attach_mode;
 685	size_t :0;
 686};
 687#define bpf_uprobe_opts__last_field attach_mode
 688
 689/**
 690 * @brief **bpf_program__attach_uprobe()** attaches a BPF program
 691 * to the userspace function which is found by binary path and
 692 * offset. You can optionally specify a particular process to attach
 693 * to. You can also optionally attach the program to the function
 694 * exit instead of entry.
 695 *
 696 * @param prog BPF program to attach
 697 * @param retprobe Attach to function exit
 698 * @param pid Process ID to attach the uprobe to, 0 for self (own process),
 699 * -1 for all processes
 700 * @param binary_path Path to binary that contains the function symbol
 701 * @param func_offset Offset within the binary of the function symbol
 702 * @return Reference to the newly created BPF link; or NULL is returned on error,
 703 * error code is stored in errno
 704 */
 705LIBBPF_API struct bpf_link *
 706bpf_program__attach_uprobe(const struct bpf_program *prog, bool retprobe,
 707			   pid_t pid, const char *binary_path,
 708			   size_t func_offset);
 709
 710/**
 711 * @brief **bpf_program__attach_uprobe_opts()** is just like
 712 * bpf_program__attach_uprobe() except with a options struct
 713 * for various configurations.
 714 *
 715 * @param prog BPF program to attach
 716 * @param pid Process ID to attach the uprobe to, 0 for self (own process),
 717 * -1 for all processes
 718 * @param binary_path Path to binary that contains the function symbol
 719 * @param func_offset Offset within the binary of the function symbol
 720 * @param opts Options for altering program attachment
 721 * @return Reference to the newly created BPF link; or NULL is returned on error,
 722 * error code is stored in errno
 723 */
 724LIBBPF_API struct bpf_link *
 725bpf_program__attach_uprobe_opts(const struct bpf_program *prog, pid_t pid,
 726				const char *binary_path, size_t func_offset,
 727				const struct bpf_uprobe_opts *opts);
 728
 729struct bpf_usdt_opts {
 730	/* size of this struct, for forward/backward compatibility */
 731	size_t sz;
 732	/* custom user-provided value accessible through usdt_cookie() */
 733	__u64 usdt_cookie;
 734	size_t :0;
 735};
 736#define bpf_usdt_opts__last_field usdt_cookie
 737
 738/**
 739 * @brief **bpf_program__attach_usdt()** is just like
 740 * bpf_program__attach_uprobe_opts() except it covers USDT (User-space
 741 * Statically Defined Tracepoint) attachment, instead of attaching to
 742 * user-space function entry or exit.
 743 *
 744 * @param prog BPF program to attach
 745 * @param pid Process ID to attach the uprobe to, 0 for self (own process),
 746 * -1 for all processes
 747 * @param binary_path Path to binary that contains provided USDT probe
 748 * @param usdt_provider USDT provider name
 749 * @param usdt_name USDT probe name
 750 * @param opts Options for altering program attachment
 751 * @return Reference to the newly created BPF link; or NULL is returned on error,
 752 * error code is stored in errno
 753 */
 754LIBBPF_API struct bpf_link *
 755bpf_program__attach_usdt(const struct bpf_program *prog,
 756			 pid_t pid, const char *binary_path,
 757			 const char *usdt_provider, const char *usdt_name,
 758			 const struct bpf_usdt_opts *opts);
 759
 760struct bpf_tracepoint_opts {
 761	/* size of this struct, for forward/backward compatibility */
 762	size_t sz;
 763	/* custom user-provided value fetchable through bpf_get_attach_cookie() */
 764	__u64 bpf_cookie;
 765};
 766#define bpf_tracepoint_opts__last_field bpf_cookie
 767
 768LIBBPF_API struct bpf_link *
 769bpf_program__attach_tracepoint(const struct bpf_program *prog,
 770			       const char *tp_category,
 771			       const char *tp_name);
 772LIBBPF_API struct bpf_link *
 773bpf_program__attach_tracepoint_opts(const struct bpf_program *prog,
 774				    const char *tp_category,
 775				    const char *tp_name,
 776				    const struct bpf_tracepoint_opts *opts);
 777
 778struct bpf_raw_tracepoint_opts {
 779	size_t sz; /* size of this struct for forward/backward compatibility */
 780	__u64 cookie;
 781	size_t :0;
 782};
 783#define bpf_raw_tracepoint_opts__last_field cookie
 784
 785LIBBPF_API struct bpf_link *
 786bpf_program__attach_raw_tracepoint(const struct bpf_program *prog,
 787				   const char *tp_name);
 788LIBBPF_API struct bpf_link *
 789bpf_program__attach_raw_tracepoint_opts(const struct bpf_program *prog,
 790					const char *tp_name,
 791					struct bpf_raw_tracepoint_opts *opts);
 792
 793struct bpf_trace_opts {
 794	/* size of this struct, for forward/backward compatibility */
 795	size_t sz;
 796	/* custom user-provided value fetchable through bpf_get_attach_cookie() */
 797	__u64 cookie;
 798};
 799#define bpf_trace_opts__last_field cookie
 800
 801LIBBPF_API struct bpf_link *
 802bpf_program__attach_trace(const struct bpf_program *prog);
 803LIBBPF_API struct bpf_link *
 804bpf_program__attach_trace_opts(const struct bpf_program *prog, const struct bpf_trace_opts *opts);
 805
 806LIBBPF_API struct bpf_link *
 807bpf_program__attach_lsm(const struct bpf_program *prog);
 808LIBBPF_API struct bpf_link *
 809bpf_program__attach_cgroup(const struct bpf_program *prog, int cgroup_fd);
 810LIBBPF_API struct bpf_link *
 811bpf_program__attach_netns(const struct bpf_program *prog, int netns_fd);
 812LIBBPF_API struct bpf_link *
 813bpf_program__attach_sockmap(const struct bpf_program *prog, int map_fd);
 814LIBBPF_API struct bpf_link *
 815bpf_program__attach_xdp(const struct bpf_program *prog, int ifindex);
 816LIBBPF_API struct bpf_link *
 817bpf_program__attach_freplace(const struct bpf_program *prog,
 818			     int target_fd, const char *attach_func_name);
 819
 820struct bpf_netfilter_opts {
 821	/* size of this struct, for forward/backward compatibility */
 822	size_t sz;
 823
 824	__u32 pf;
 825	__u32 hooknum;
 826	__s32 priority;
 827	__u32 flags;
 828};
 829#define bpf_netfilter_opts__last_field flags
 830
 831LIBBPF_API struct bpf_link *
 832bpf_program__attach_netfilter(const struct bpf_program *prog,
 833			      const struct bpf_netfilter_opts *opts);
 834
 835struct bpf_tcx_opts {
 836	/* size of this struct, for forward/backward compatibility */
 837	size_t sz;
 838	__u32 flags;
 839	__u32 relative_fd;
 840	__u32 relative_id;
 841	__u64 expected_revision;
 842	size_t :0;
 843};
 844#define bpf_tcx_opts__last_field expected_revision
 845
 846LIBBPF_API struct bpf_link *
 847bpf_program__attach_tcx(const struct bpf_program *prog, int ifindex,
 848			const struct bpf_tcx_opts *opts);
 849
 850struct bpf_netkit_opts {
 851	/* size of this struct, for forward/backward compatibility */
 852	size_t sz;
 853	__u32 flags;
 854	__u32 relative_fd;
 855	__u32 relative_id;
 856	__u64 expected_revision;
 857	size_t :0;
 858};
 859#define bpf_netkit_opts__last_field expected_revision
 860
 861LIBBPF_API struct bpf_link *
 862bpf_program__attach_netkit(const struct bpf_program *prog, int ifindex,
 863			   const struct bpf_netkit_opts *opts);
 864
 865struct bpf_map;
 866
 867LIBBPF_API struct bpf_link *bpf_map__attach_struct_ops(const struct bpf_map *map);
 868LIBBPF_API int bpf_link__update_map(struct bpf_link *link, const struct bpf_map *map);
 869
 870struct bpf_iter_attach_opts {
 871	size_t sz; /* size of this struct for forward/backward compatibility */
 872	union bpf_iter_link_info *link_info;
 873	__u32 link_info_len;
 874};
 875#define bpf_iter_attach_opts__last_field link_info_len
 876
 877LIBBPF_API struct bpf_link *
 878bpf_program__attach_iter(const struct bpf_program *prog,
 879			 const struct bpf_iter_attach_opts *opts);
 880
 881LIBBPF_API enum bpf_prog_type bpf_program__type(const struct bpf_program *prog);
 882
 883/**
 884 * @brief **bpf_program__set_type()** sets the program
 885 * type of the passed BPF program.
 886 * @param prog BPF program to set the program type for
 887 * @param type program type to set the BPF map to have
 888 * @return error code; or 0 if no error. An error occurs
 889 * if the object is already loaded.
 890 *
 891 * This must be called before the BPF object is loaded,
 892 * otherwise it has no effect and an error is returned.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 893 */
 894LIBBPF_API int bpf_program__set_type(struct bpf_program *prog,
 895				     enum bpf_prog_type type);
 896
 897LIBBPF_API enum bpf_attach_type
 898bpf_program__expected_attach_type(const struct bpf_program *prog);
 
 
 
 
 
 899
 900/**
 901 * @brief **bpf_program__set_expected_attach_type()** sets the
 902 * attach type of the passed BPF program. This is used for
 903 * auto-detection of attachment when programs are loaded.
 904 * @param prog BPF program to set the attach type for
 905 * @param type attach type to set the BPF map to have
 906 * @return error code; or 0 if no error. An error occurs
 907 * if the object is already loaded.
 908 *
 909 * This must be called before the BPF object is loaded,
 910 * otherwise it has no effect and an error is returned.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 911 */
 912LIBBPF_API int
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 913bpf_program__set_expected_attach_type(struct bpf_program *prog,
 914				      enum bpf_attach_type type);
 915
 916LIBBPF_API __u32 bpf_program__flags(const struct bpf_program *prog);
 917LIBBPF_API int bpf_program__set_flags(struct bpf_program *prog, __u32 flags);
 918
 919/* Per-program log level and log buffer getters/setters.
 920 * See bpf_object_open_opts comments regarding log_level and log_buf
 921 * interactions.
 922 */
 923LIBBPF_API __u32 bpf_program__log_level(const struct bpf_program *prog);
 924LIBBPF_API int bpf_program__set_log_level(struct bpf_program *prog, __u32 log_level);
 925LIBBPF_API const char *bpf_program__log_buf(const struct bpf_program *prog, size_t *log_size);
 926LIBBPF_API int bpf_program__set_log_buf(struct bpf_program *prog, char *log_buf, size_t log_size);
 927
 928/**
 929 * @brief **bpf_program__set_attach_target()** sets BTF-based attach target
 930 * for supported BPF program types:
 931 *   - BTF-aware raw tracepoints (tp_btf);
 932 *   - fentry/fexit/fmod_ret;
 933 *   - lsm;
 934 *   - freplace.
 935 * @param prog BPF program to set the attach type for
 936 * @param type attach type to set the BPF map to have
 937 * @return error code; or 0 if no error occurred.
 938 */
 939LIBBPF_API int
 940bpf_program__set_attach_target(struct bpf_program *prog, int attach_prog_fd,
 941			       const char *attach_func_name);
 942
 943/**
 944 * @brief **bpf_object__find_map_by_name()** returns BPF map of
 945 * the given name, if it exists within the passed BPF object
 946 * @param obj BPF object
 947 * @param name name of the BPF map
 948 * @return BPF map instance, if such map exists within the BPF object;
 949 * or NULL otherwise.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 950 */
 951LIBBPF_API struct bpf_map *
 952bpf_object__find_map_by_name(const struct bpf_object *obj, const char *name);
 953
 954LIBBPF_API int
 955bpf_object__find_map_fd_by_name(const struct bpf_object *obj, const char *name);
 956
 
 
 
 
 957LIBBPF_API struct bpf_map *
 958bpf_object__next_map(const struct bpf_object *obj, const struct bpf_map *map);
 959
 
 
 960#define bpf_object__for_each_map(pos, obj)		\
 961	for ((pos) = bpf_object__next_map((obj), NULL);	\
 962	     (pos) != NULL;				\
 963	     (pos) = bpf_object__next_map((obj), (pos)))
 964#define bpf_map__for_each bpf_object__for_each_map
 965
 966LIBBPF_API struct bpf_map *
 967bpf_object__prev_map(const struct bpf_object *obj, const struct bpf_map *map);
 968
 969/**
 970 * @brief **bpf_map__set_autocreate()** sets whether libbpf has to auto-create
 971 * BPF map during BPF object load phase.
 972 * @param map the BPF map instance
 973 * @param autocreate whether to create BPF map during BPF object load
 974 * @return 0 on success; -EBUSY if BPF object was already loaded
 975 *
 976 * **bpf_map__set_autocreate()** allows to opt-out from libbpf auto-creating
 977 * BPF map. By default, libbpf will attempt to create every single BPF map
 978 * defined in BPF object file using BPF_MAP_CREATE command of bpf() syscall
 979 * and fill in map FD in BPF instructions.
 980 *
 981 * This API allows to opt-out of this process for specific map instance. This
 982 * can be useful if host kernel doesn't support such BPF map type or used
 983 * combination of flags and user application wants to avoid creating such
 984 * a map in the first place. User is still responsible to make sure that their
 985 * BPF-side code that expects to use such missing BPF map is recognized by BPF
 986 * verifier as dead code, otherwise BPF verifier will reject such BPF program.
 987 */
 988LIBBPF_API int bpf_map__set_autocreate(struct bpf_map *map, bool autocreate);
 989LIBBPF_API bool bpf_map__autocreate(const struct bpf_map *map);
 990
 991/**
 992 * @brief **bpf_map__set_autoattach()** sets whether libbpf has to auto-attach
 993 * map during BPF skeleton attach phase.
 994 * @param map the BPF map instance
 995 * @param autoattach whether to attach map during BPF skeleton attach phase
 996 * @return 0 on success; negative error code, otherwise
 997 */
 998LIBBPF_API int bpf_map__set_autoattach(struct bpf_map *map, bool autoattach);
 999
1000/**
1001 * @brief **bpf_map__autoattach()** returns whether BPF map is configured to
1002 * auto-attach during BPF skeleton attach phase.
1003 * @param map the BPF map instance
1004 * @return true if map is set to auto-attach during skeleton attach phase; false, otherwise
1005 */
1006LIBBPF_API bool bpf_map__autoattach(const struct bpf_map *map);
1007
1008/**
1009 * @brief **bpf_map__fd()** gets the file descriptor of the passed
1010 * BPF map
1011 * @param map the BPF map instance
1012 * @return the file descriptor; or -EINVAL in case of an error
1013 */
1014LIBBPF_API int bpf_map__fd(const struct bpf_map *map);
1015LIBBPF_API int bpf_map__reuse_fd(struct bpf_map *map, int fd);
 
 
1016/* get map name */
1017LIBBPF_API const char *bpf_map__name(const struct bpf_map *map);
1018/* get/set map type */
1019LIBBPF_API enum bpf_map_type bpf_map__type(const struct bpf_map *map);
1020LIBBPF_API int bpf_map__set_type(struct bpf_map *map, enum bpf_map_type type);
1021/* get/set map size (max_entries) */
1022LIBBPF_API __u32 bpf_map__max_entries(const struct bpf_map *map);
1023LIBBPF_API int bpf_map__set_max_entries(struct bpf_map *map, __u32 max_entries);
 
1024/* get/set map flags */
1025LIBBPF_API __u32 bpf_map__map_flags(const struct bpf_map *map);
1026LIBBPF_API int bpf_map__set_map_flags(struct bpf_map *map, __u32 flags);
1027/* get/set map NUMA node */
1028LIBBPF_API __u32 bpf_map__numa_node(const struct bpf_map *map);
1029LIBBPF_API int bpf_map__set_numa_node(struct bpf_map *map, __u32 numa_node);
1030/* get/set map key size */
1031LIBBPF_API __u32 bpf_map__key_size(const struct bpf_map *map);
1032LIBBPF_API int bpf_map__set_key_size(struct bpf_map *map, __u32 size);
1033/* get map value size */
1034LIBBPF_API __u32 bpf_map__value_size(const struct bpf_map *map);
1035/**
1036 * @brief **bpf_map__set_value_size()** sets map value size.
1037 * @param map the BPF map instance
1038 * @return 0, on success; negative error, otherwise
1039 *
1040 * There is a special case for maps with associated memory-mapped regions, like
1041 * the global data section maps (bss, data, rodata). When this function is used
1042 * on such a map, the mapped region is resized. Afterward, an attempt is made to
1043 * adjust the corresponding BTF info. This attempt is best-effort and can only
1044 * succeed if the last variable of the data section map is an array. The array
1045 * BTF type is replaced by a new BTF array type with a different length.
1046 * Any previously existing pointers returned from bpf_map__initial_value() or
1047 * corresponding data section skeleton pointer must be reinitialized.
1048 */
1049LIBBPF_API int bpf_map__set_value_size(struct bpf_map *map, __u32 size);
1050/* get map key/value BTF type IDs */
1051LIBBPF_API __u32 bpf_map__btf_key_type_id(const struct bpf_map *map);
1052LIBBPF_API __u32 bpf_map__btf_value_type_id(const struct bpf_map *map);
1053/* get/set map if_index */
1054LIBBPF_API __u32 bpf_map__ifindex(const struct bpf_map *map);
1055LIBBPF_API int bpf_map__set_ifindex(struct bpf_map *map, __u32 ifindex);
1056/* get/set map map_extra flags */
1057LIBBPF_API __u64 bpf_map__map_extra(const struct bpf_map *map);
1058LIBBPF_API int bpf_map__set_map_extra(struct bpf_map *map, __u64 map_extra);
1059
 
 
 
 
1060LIBBPF_API int bpf_map__set_initial_value(struct bpf_map *map,
1061					  const void *data, size_t size);
1062LIBBPF_API void *bpf_map__initial_value(const struct bpf_map *map, size_t *psize);
1063
1064/**
1065 * @brief **bpf_map__is_internal()** tells the caller whether or not the
1066 * passed map is a special map created by libbpf automatically for things like
1067 * global variables, __ksym externs, Kconfig values, etc
1068 * @param map the bpf_map
1069 * @return true, if the map is an internal map; false, otherwise
1070 */
1071LIBBPF_API bool bpf_map__is_internal(const struct bpf_map *map);
1072
1073/**
1074 * @brief **bpf_map__set_pin_path()** sets the path attribute that tells where the
1075 * BPF map should be pinned. This does not actually create the 'pin'.
1076 * @param map The bpf_map
1077 * @param path The path
1078 * @return 0, on success; negative error, otherwise
1079 */
1080LIBBPF_API int bpf_map__set_pin_path(struct bpf_map *map, const char *path);
1081
1082/**
1083 * @brief **bpf_map__pin_path()** gets the path attribute that tells where the
1084 * BPF map should be pinned.
1085 * @param map The bpf_map
1086 * @return The path string; which can be NULL
1087 */
1088LIBBPF_API const char *bpf_map__pin_path(const struct bpf_map *map);
1089
1090/**
1091 * @brief **bpf_map__is_pinned()** tells the caller whether or not the
1092 * passed map has been pinned via a 'pin' file.
1093 * @param map The bpf_map
1094 * @return true, if the map is pinned; false, otherwise
1095 */
1096LIBBPF_API bool bpf_map__is_pinned(const struct bpf_map *map);
1097
1098/**
1099 * @brief **bpf_map__pin()** creates a file that serves as a 'pin'
1100 * for the BPF map. This increments the reference count on the
1101 * BPF map which will keep the BPF map loaded even after the
1102 * userspace process which loaded it has exited.
1103 * @param map The bpf_map to pin
1104 * @param path A file path for the 'pin'
1105 * @return 0, on success; negative error, otherwise
1106 *
1107 * If `path` is NULL the maps `pin_path` attribute will be used. If this is
1108 * also NULL, an error will be returned and the map will not be pinned.
1109 */
1110LIBBPF_API int bpf_map__pin(struct bpf_map *map, const char *path);
1111
1112/**
1113 * @brief **bpf_map__unpin()** removes the file that serves as a
1114 * 'pin' for the BPF map.
1115 * @param map The bpf_map to unpin
1116 * @param path A file path for the 'pin'
1117 * @return 0, on success; negative error, otherwise
1118 *
1119 * The `path` parameter can be NULL, in which case the `pin_path`
1120 * map attribute is unpinned. If both the `path` parameter and
1121 * `pin_path` map attribute are set, they must be equal.
1122 */
1123LIBBPF_API int bpf_map__unpin(struct bpf_map *map, const char *path);
1124
1125LIBBPF_API int bpf_map__set_inner_map_fd(struct bpf_map *map, int fd);
1126LIBBPF_API struct bpf_map *bpf_map__inner_map(struct bpf_map *map);
1127
1128/**
1129 * @brief **bpf_map__lookup_elem()** allows to lookup BPF map value
1130 * corresponding to provided key.
1131 * @param map BPF map to lookup element in
1132 * @param key pointer to memory containing bytes of the key used for lookup
1133 * @param key_sz size in bytes of key data, needs to match BPF map definition's **key_size**
1134 * @param value pointer to memory in which looked up value will be stored
1135 * @param value_sz size in byte of value data memory; it has to match BPF map
1136 * definition's **value_size**. For per-CPU BPF maps value size has to be
1137 * a product of BPF map value size and number of possible CPUs in the system
1138 * (could be fetched with **libbpf_num_possible_cpus()**). Note also that for
1139 * per-CPU values value size has to be aligned up to closest 8 bytes for
1140 * alignment reasons, so expected size is: `round_up(value_size, 8)
1141 * * libbpf_num_possible_cpus()`.
1142 * @flags extra flags passed to kernel for this operation
1143 * @return 0, on success; negative error, otherwise
1144 *
1145 * **bpf_map__lookup_elem()** is high-level equivalent of
1146 * **bpf_map_lookup_elem()** API with added check for key and value size.
1147 */
1148LIBBPF_API int bpf_map__lookup_elem(const struct bpf_map *map,
1149				    const void *key, size_t key_sz,
1150				    void *value, size_t value_sz, __u64 flags);
1151
1152/**
1153 * @brief **bpf_map__update_elem()** allows to insert or update value in BPF
1154 * map that corresponds to provided key.
1155 * @param map BPF map to insert to or update element in
1156 * @param key pointer to memory containing bytes of the key
1157 * @param key_sz size in bytes of key data, needs to match BPF map definition's **key_size**
1158 * @param value pointer to memory containing bytes of the value
1159 * @param value_sz size in byte of value data memory; it has to match BPF map
1160 * definition's **value_size**. For per-CPU BPF maps value size has to be
1161 * a product of BPF map value size and number of possible CPUs in the system
1162 * (could be fetched with **libbpf_num_possible_cpus()**). Note also that for
1163 * per-CPU values value size has to be aligned up to closest 8 bytes for
1164 * alignment reasons, so expected size is: `round_up(value_size, 8)
1165 * * libbpf_num_possible_cpus()`.
1166 * @flags extra flags passed to kernel for this operation
1167 * @return 0, on success; negative error, otherwise
1168 *
1169 * **bpf_map__update_elem()** is high-level equivalent of
1170 * **bpf_map_update_elem()** API with added check for key and value size.
1171 */
1172LIBBPF_API int bpf_map__update_elem(const struct bpf_map *map,
1173				    const void *key, size_t key_sz,
1174				    const void *value, size_t value_sz, __u64 flags);
1175
1176/**
1177 * @brief **bpf_map__delete_elem()** allows to delete element in BPF map that
1178 * corresponds to provided key.
1179 * @param map BPF map to delete element from
1180 * @param key pointer to memory containing bytes of the key
1181 * @param key_sz size in bytes of key data, needs to match BPF map definition's **key_size**
1182 * @flags extra flags passed to kernel for this operation
1183 * @return 0, on success; negative error, otherwise
1184 *
1185 * **bpf_map__delete_elem()** is high-level equivalent of
1186 * **bpf_map_delete_elem()** API with added check for key size.
1187 */
1188LIBBPF_API int bpf_map__delete_elem(const struct bpf_map *map,
1189				    const void *key, size_t key_sz, __u64 flags);
1190
1191/**
1192 * @brief **bpf_map__lookup_and_delete_elem()** allows to lookup BPF map value
1193 * corresponding to provided key and atomically delete it afterwards.
1194 * @param map BPF map to lookup element in
1195 * @param key pointer to memory containing bytes of the key used for lookup
1196 * @param key_sz size in bytes of key data, needs to match BPF map definition's **key_size**
1197 * @param value pointer to memory in which looked up value will be stored
1198 * @param value_sz size in byte of value data memory; it has to match BPF map
1199 * definition's **value_size**. For per-CPU BPF maps value size has to be
1200 * a product of BPF map value size and number of possible CPUs in the system
1201 * (could be fetched with **libbpf_num_possible_cpus()**). Note also that for
1202 * per-CPU values value size has to be aligned up to closest 8 bytes for
1203 * alignment reasons, so expected size is: `round_up(value_size, 8)
1204 * * libbpf_num_possible_cpus()`.
1205 * @flags extra flags passed to kernel for this operation
1206 * @return 0, on success; negative error, otherwise
1207 *
1208 * **bpf_map__lookup_and_delete_elem()** is high-level equivalent of
1209 * **bpf_map_lookup_and_delete_elem()** API with added check for key and value size.
1210 */
1211LIBBPF_API int bpf_map__lookup_and_delete_elem(const struct bpf_map *map,
1212					       const void *key, size_t key_sz,
1213					       void *value, size_t value_sz, __u64 flags);
1214
1215/**
1216 * @brief **bpf_map__get_next_key()** allows to iterate BPF map keys by
1217 * fetching next key that follows current key.
1218 * @param map BPF map to fetch next key from
1219 * @param cur_key pointer to memory containing bytes of current key or NULL to
1220 * fetch the first key
1221 * @param next_key pointer to memory to write next key into
1222 * @param key_sz size in bytes of key data, needs to match BPF map definition's **key_size**
1223 * @return 0, on success; -ENOENT if **cur_key** is the last key in BPF map;
1224 * negative error, otherwise
1225 *
1226 * **bpf_map__get_next_key()** is high-level equivalent of
1227 * **bpf_map_get_next_key()** API with added check for key size.
1228 */
1229LIBBPF_API int bpf_map__get_next_key(const struct bpf_map *map,
1230				     const void *cur_key, void *next_key, size_t key_sz);
1231
1232struct bpf_xdp_set_link_opts {
1233	size_t sz;
1234	int old_fd;
1235	size_t :0;
1236};
1237#define bpf_xdp_set_link_opts__last_field old_fd
1238
1239struct bpf_xdp_attach_opts {
1240	size_t sz;
1241	int old_prog_fd;
1242	size_t :0;
1243};
1244#define bpf_xdp_attach_opts__last_field old_prog_fd
1245
1246struct bpf_xdp_query_opts {
1247	size_t sz;
1248	__u32 prog_id;		/* output */
1249	__u32 drv_prog_id;	/* output */
1250	__u32 hw_prog_id;	/* output */
1251	__u32 skb_prog_id;	/* output */
1252	__u8 attach_mode;	/* output */
1253	__u64 feature_flags;	/* output */
1254	__u32 xdp_zc_max_segs;	/* output */
1255	size_t :0;
1256};
1257#define bpf_xdp_query_opts__last_field xdp_zc_max_segs
1258
1259LIBBPF_API int bpf_xdp_attach(int ifindex, int prog_fd, __u32 flags,
1260			      const struct bpf_xdp_attach_opts *opts);
1261LIBBPF_API int bpf_xdp_detach(int ifindex, __u32 flags,
1262			      const struct bpf_xdp_attach_opts *opts);
1263LIBBPF_API int bpf_xdp_query(int ifindex, int flags, struct bpf_xdp_query_opts *opts);
1264LIBBPF_API int bpf_xdp_query_id(int ifindex, int flags, __u32 *prog_id);
1265
1266/* TC related API */
1267enum bpf_tc_attach_point {
1268	BPF_TC_INGRESS = 1 << 0,
1269	BPF_TC_EGRESS  = 1 << 1,
1270	BPF_TC_CUSTOM  = 1 << 2,
1271};
1272
1273#define BPF_TC_PARENT(a, b) 	\
1274	((((a) << 16) & 0xFFFF0000U) | ((b) & 0x0000FFFFU))
 
 
1275
1276enum bpf_tc_flags {
1277	BPF_TC_F_REPLACE = 1 << 0,
 
 
 
 
1278};
1279
1280struct bpf_tc_hook {
1281	size_t sz;
1282	int ifindex;
1283	enum bpf_tc_attach_point attach_point;
1284	__u32 parent;
1285	size_t :0;
1286};
1287#define bpf_tc_hook__last_field parent
1288
1289struct bpf_tc_opts {
1290	size_t sz;
1291	int prog_fd;
1292	__u32 flags;
1293	__u32 prog_id;
1294	__u32 handle;
1295	__u32 priority;
1296	size_t :0;
1297};
1298#define bpf_tc_opts__last_field priority
1299
1300LIBBPF_API int bpf_tc_hook_create(struct bpf_tc_hook *hook);
1301LIBBPF_API int bpf_tc_hook_destroy(struct bpf_tc_hook *hook);
1302LIBBPF_API int bpf_tc_attach(const struct bpf_tc_hook *hook,
1303			     struct bpf_tc_opts *opts);
1304LIBBPF_API int bpf_tc_detach(const struct bpf_tc_hook *hook,
1305			     const struct bpf_tc_opts *opts);
1306LIBBPF_API int bpf_tc_query(const struct bpf_tc_hook *hook,
1307			    struct bpf_tc_opts *opts);
1308
1309/* Ring buffer APIs */
1310struct ring_buffer;
1311struct ring;
1312struct user_ring_buffer;
1313
1314typedef int (*ring_buffer_sample_fn)(void *ctx, void *data, size_t size);
1315
1316struct ring_buffer_opts {
1317	size_t sz; /* size of this struct, for forward/backward compatibility */
1318};
1319
1320#define ring_buffer_opts__last_field sz
1321
1322LIBBPF_API struct ring_buffer *
1323ring_buffer__new(int map_fd, ring_buffer_sample_fn sample_cb, void *ctx,
1324		 const struct ring_buffer_opts *opts);
1325LIBBPF_API void ring_buffer__free(struct ring_buffer *rb);
1326LIBBPF_API int ring_buffer__add(struct ring_buffer *rb, int map_fd,
1327				ring_buffer_sample_fn sample_cb, void *ctx);
1328LIBBPF_API int ring_buffer__poll(struct ring_buffer *rb, int timeout_ms);
1329LIBBPF_API int ring_buffer__consume(struct ring_buffer *rb);
1330LIBBPF_API int ring_buffer__consume_n(struct ring_buffer *rb, size_t n);
1331LIBBPF_API int ring_buffer__epoll_fd(const struct ring_buffer *rb);
1332
1333/**
1334 * @brief **ring_buffer__ring()** returns the ringbuffer object inside a given
1335 * ringbuffer manager representing a single BPF_MAP_TYPE_RINGBUF map instance.
1336 *
1337 * @param rb A ringbuffer manager object.
1338 * @param idx An index into the ringbuffers contained within the ringbuffer
1339 * manager object. The index is 0-based and corresponds to the order in which
1340 * ring_buffer__add was called.
1341 * @return A ringbuffer object on success; NULL and errno set if the index is
1342 * invalid.
1343 */
1344LIBBPF_API struct ring *ring_buffer__ring(struct ring_buffer *rb,
1345					  unsigned int idx);
1346
1347/**
1348 * @brief **ring__consumer_pos()** returns the current consumer position in the
1349 * given ringbuffer.
1350 *
1351 * @param r A ringbuffer object.
1352 * @return The current consumer position.
1353 */
1354LIBBPF_API unsigned long ring__consumer_pos(const struct ring *r);
1355
1356/**
1357 * @brief **ring__producer_pos()** returns the current producer position in the
1358 * given ringbuffer.
1359 *
1360 * @param r A ringbuffer object.
1361 * @return The current producer position.
1362 */
1363LIBBPF_API unsigned long ring__producer_pos(const struct ring *r);
1364
1365/**
1366 * @brief **ring__avail_data_size()** returns the number of bytes in the
1367 * ringbuffer not yet consumed. This has no locking associated with it, so it
1368 * can be inaccurate if operations are ongoing while this is called. However, it
1369 * should still show the correct trend over the long-term.
1370 *
1371 * @param r A ringbuffer object.
1372 * @return The number of bytes not yet consumed.
1373 */
1374LIBBPF_API size_t ring__avail_data_size(const struct ring *r);
1375
1376/**
1377 * @brief **ring__size()** returns the total size of the ringbuffer's map data
1378 * area (excluding special producer/consumer pages). Effectively this gives the
1379 * amount of usable bytes of data inside the ringbuffer.
1380 *
1381 * @param r A ringbuffer object.
1382 * @return The total size of the ringbuffer map data area.
1383 */
1384LIBBPF_API size_t ring__size(const struct ring *r);
1385
1386/**
1387 * @brief **ring__map_fd()** returns the file descriptor underlying the given
1388 * ringbuffer.
1389 *
1390 * @param r A ringbuffer object.
1391 * @return The underlying ringbuffer file descriptor
1392 */
1393LIBBPF_API int ring__map_fd(const struct ring *r);
1394
1395/**
1396 * @brief **ring__consume()** consumes available ringbuffer data without event
1397 * polling.
1398 *
1399 * @param r A ringbuffer object.
1400 * @return The number of records consumed (or INT_MAX, whichever is less), or
1401 * a negative number if any of the callbacks return an error.
1402 */
1403LIBBPF_API int ring__consume(struct ring *r);
1404
1405/**
1406 * @brief **ring__consume_n()** consumes up to a requested amount of items from
1407 * a ringbuffer without event polling.
1408 *
1409 * @param r A ringbuffer object.
1410 * @param n Maximum amount of items to consume.
1411 * @return The number of items consumed, or a negative number if any of the
1412 * callbacks return an error.
1413 */
1414LIBBPF_API int ring__consume_n(struct ring *r, size_t n);
1415
1416struct user_ring_buffer_opts {
1417	size_t sz; /* size of this struct, for forward/backward compatibility */
1418};
1419
1420#define user_ring_buffer_opts__last_field sz
1421
1422/**
1423 * @brief **user_ring_buffer__new()** creates a new instance of a user ring
1424 * buffer.
1425 *
1426 * @param map_fd A file descriptor to a BPF_MAP_TYPE_USER_RINGBUF map.
1427 * @param opts Options for how the ring buffer should be created.
1428 * @return A user ring buffer on success; NULL and errno being set on a
1429 * failure.
1430 */
1431LIBBPF_API struct user_ring_buffer *
1432user_ring_buffer__new(int map_fd, const struct user_ring_buffer_opts *opts);
1433
1434/**
1435 * @brief **user_ring_buffer__reserve()** reserves a pointer to a sample in the
1436 * user ring buffer.
1437 * @param rb A pointer to a user ring buffer.
1438 * @param size The size of the sample, in bytes.
1439 * @return A pointer to an 8-byte aligned reserved region of the user ring
1440 * buffer; NULL, and errno being set if a sample could not be reserved.
1441 *
1442 * This function is *not* thread safe, and callers must synchronize accessing
1443 * this function if there are multiple producers.  If a size is requested that
1444 * is larger than the size of the entire ring buffer, errno will be set to
1445 * E2BIG and NULL is returned. If the ring buffer could accommodate the size,
1446 * but currently does not have enough space, errno is set to ENOSPC and NULL is
1447 * returned.
1448 *
1449 * After initializing the sample, callers must invoke
1450 * **user_ring_buffer__submit()** to post the sample to the kernel. Otherwise,
1451 * the sample must be freed with **user_ring_buffer__discard()**.
1452 */
1453LIBBPF_API void *user_ring_buffer__reserve(struct user_ring_buffer *rb, __u32 size);
1454
1455/**
1456 * @brief **user_ring_buffer__reserve_blocking()** reserves a record in the
1457 * ring buffer, possibly blocking for up to @timeout_ms until a sample becomes
1458 * available.
1459 * @param rb The user ring buffer.
1460 * @param size The size of the sample, in bytes.
1461 * @param timeout_ms The amount of time, in milliseconds, for which the caller
1462 * should block when waiting for a sample. -1 causes the caller to block
1463 * indefinitely.
1464 * @return A pointer to an 8-byte aligned reserved region of the user ring
1465 * buffer; NULL, and errno being set if a sample could not be reserved.
1466 *
1467 * This function is *not* thread safe, and callers must synchronize
1468 * accessing this function if there are multiple producers
1469 *
1470 * If **timeout_ms** is -1, the function will block indefinitely until a sample
1471 * becomes available. Otherwise, **timeout_ms** must be non-negative, or errno
1472 * is set to EINVAL, and NULL is returned. If **timeout_ms** is 0, no blocking
1473 * will occur and the function will return immediately after attempting to
1474 * reserve a sample.
1475 *
1476 * If **size** is larger than the size of the entire ring buffer, errno is set
1477 * to E2BIG and NULL is returned. If the ring buffer could accommodate
1478 * **size**, but currently does not have enough space, the caller will block
1479 * until at most **timeout_ms** has elapsed. If insufficient space is available
1480 * at that time, errno is set to ENOSPC, and NULL is returned.
1481 *
1482 * The kernel guarantees that it will wake up this thread to check if
1483 * sufficient space is available in the ring buffer at least once per
1484 * invocation of the **bpf_ringbuf_drain()** helper function, provided that at
1485 * least one sample is consumed, and the BPF program did not invoke the
1486 * function with BPF_RB_NO_WAKEUP. A wakeup may occur sooner than that, but the
1487 * kernel does not guarantee this. If the helper function is invoked with
1488 * BPF_RB_FORCE_WAKEUP, a wakeup event will be sent even if no sample is
1489 * consumed.
1490 *
1491 * When a sample of size **size** is found within **timeout_ms**, a pointer to
1492 * the sample is returned. After initializing the sample, callers must invoke
1493 * **user_ring_buffer__submit()** to post the sample to the ring buffer.
1494 * Otherwise, the sample must be freed with **user_ring_buffer__discard()**.
1495 */
1496LIBBPF_API void *user_ring_buffer__reserve_blocking(struct user_ring_buffer *rb,
1497						    __u32 size,
1498						    int timeout_ms);
1499
1500/**
1501 * @brief **user_ring_buffer__submit()** submits a previously reserved sample
1502 * into the ring buffer.
1503 * @param rb The user ring buffer.
1504 * @param sample A reserved sample.
1505 *
1506 * It is not necessary to synchronize amongst multiple producers when invoking
1507 * this function.
1508 */
1509LIBBPF_API void user_ring_buffer__submit(struct user_ring_buffer *rb, void *sample);
1510
1511/**
1512 * @brief **user_ring_buffer__discard()** discards a previously reserved sample.
1513 * @param rb The user ring buffer.
1514 * @param sample A reserved sample.
1515 *
1516 * It is not necessary to synchronize amongst multiple producers when invoking
1517 * this function.
1518 */
1519LIBBPF_API void user_ring_buffer__discard(struct user_ring_buffer *rb, void *sample);
1520
1521/**
1522 * @brief **user_ring_buffer__free()** frees a ring buffer that was previously
1523 * created with **user_ring_buffer__new()**.
1524 * @param rb The user ring buffer being freed.
1525 */
1526LIBBPF_API void user_ring_buffer__free(struct user_ring_buffer *rb);
1527
1528/* Perf buffer APIs */
1529struct perf_buffer;
1530
1531typedef void (*perf_buffer_sample_fn)(void *ctx, int cpu,
1532				      void *data, __u32 size);
1533typedef void (*perf_buffer_lost_fn)(void *ctx, int cpu, __u64 cnt);
1534
1535/* common use perf buffer options */
1536struct perf_buffer_opts {
1537	size_t sz;
1538	__u32 sample_period;
1539	size_t :0;
 
 
 
1540};
1541#define perf_buffer_opts__last_field sample_period
1542
1543/**
1544 * @brief **perf_buffer__new()** creates BPF perfbuf manager for a specified
1545 * BPF_PERF_EVENT_ARRAY map
1546 * @param map_fd FD of BPF_PERF_EVENT_ARRAY BPF map that will be used by BPF
1547 * code to send data over to user-space
1548 * @param page_cnt number of memory pages allocated for each per-CPU buffer
1549 * @param sample_cb function called on each received data record
1550 * @param lost_cb function called when record loss has occurred
1551 * @param ctx user-provided extra context passed into *sample_cb* and *lost_cb*
1552 * @return a new instance of struct perf_buffer on success, NULL on error with
1553 * *errno* containing an error code
1554 */
1555LIBBPF_API struct perf_buffer *
1556perf_buffer__new(int map_fd, size_t page_cnt,
1557		 perf_buffer_sample_fn sample_cb, perf_buffer_lost_fn lost_cb, void *ctx,
1558		 const struct perf_buffer_opts *opts);
1559
1560enum bpf_perf_event_ret {
1561	LIBBPF_PERF_EVENT_DONE	= 0,
1562	LIBBPF_PERF_EVENT_ERROR	= -1,
1563	LIBBPF_PERF_EVENT_CONT	= -2,
1564};
1565
1566struct perf_event_header;
1567
1568typedef enum bpf_perf_event_ret
1569(*perf_buffer_event_fn)(void *ctx, int cpu, struct perf_event_header *event);
1570
1571/* raw perf buffer options, giving most power and control */
1572struct perf_buffer_raw_opts {
1573	size_t sz;
1574	long :0;
1575	long :0;
 
 
 
1576	/* if cpu_cnt == 0, open all on all possible CPUs (up to the number of
1577	 * max_entries of given PERF_EVENT_ARRAY map)
1578	 */
1579	int cpu_cnt;
1580	/* if cpu_cnt > 0, cpus is an array of CPUs to open ring buffers on */
1581	int *cpus;
1582	/* if cpu_cnt > 0, map_keys specify map keys to set per-CPU FDs for */
1583	int *map_keys;
1584};
1585#define perf_buffer_raw_opts__last_field map_keys
1586
1587struct perf_event_attr;
1588
1589LIBBPF_API struct perf_buffer *
1590perf_buffer__new_raw(int map_fd, size_t page_cnt, struct perf_event_attr *attr,
1591		     perf_buffer_event_fn event_cb, void *ctx,
1592		     const struct perf_buffer_raw_opts *opts);
1593
1594LIBBPF_API void perf_buffer__free(struct perf_buffer *pb);
1595LIBBPF_API int perf_buffer__epoll_fd(const struct perf_buffer *pb);
1596LIBBPF_API int perf_buffer__poll(struct perf_buffer *pb, int timeout_ms);
1597LIBBPF_API int perf_buffer__consume(struct perf_buffer *pb);
1598LIBBPF_API int perf_buffer__consume_buffer(struct perf_buffer *pb, size_t buf_idx);
1599LIBBPF_API size_t perf_buffer__buffer_cnt(const struct perf_buffer *pb);
1600LIBBPF_API int perf_buffer__buffer_fd(const struct perf_buffer *pb, size_t buf_idx);
1601/**
1602 * @brief **perf_buffer__buffer()** returns the per-cpu raw mmap()'ed underlying
1603 * memory region of the ring buffer.
1604 * This ring buffer can be used to implement a custom events consumer.
1605 * The ring buffer starts with the *struct perf_event_mmap_page*, which
1606 * holds the ring buffer management fields, when accessing the header
1607 * structure it's important to be SMP aware.
1608 * You can refer to *perf_event_read_simple* for a simple example.
1609 * @param pb the perf buffer structure
1610 * @param buf_idx the buffer index to retrieve
1611 * @param buf (out) gets the base pointer of the mmap()'ed memory
1612 * @param buf_size (out) gets the size of the mmap()'ed region
1613 * @return 0 on success, negative error code for failure
1614 */
1615LIBBPF_API int perf_buffer__buffer(struct perf_buffer *pb, int buf_idx, void **buf,
1616				   size_t *buf_size);
1617
1618struct bpf_prog_linfo;
1619struct bpf_prog_info;
1620
1621LIBBPF_API void bpf_prog_linfo__free(struct bpf_prog_linfo *prog_linfo);
1622LIBBPF_API struct bpf_prog_linfo *
1623bpf_prog_linfo__new(const struct bpf_prog_info *info);
1624LIBBPF_API const struct bpf_line_info *
1625bpf_prog_linfo__lfind_addr_func(const struct bpf_prog_linfo *prog_linfo,
1626				__u64 addr, __u32 func_idx, __u32 nr_skip);
1627LIBBPF_API const struct bpf_line_info *
1628bpf_prog_linfo__lfind(const struct bpf_prog_linfo *prog_linfo,
1629		      __u32 insn_off, __u32 nr_skip);
1630
1631/*
1632 * Probe for supported system features
1633 *
1634 * Note that running many of these probes in a short amount of time can cause
1635 * the kernel to reach the maximal size of lockable memory allowed for the
1636 * user, causing subsequent probes to fail. In this case, the caller may want
1637 * to adjust that limit with setrlimit().
1638 */
 
 
 
 
 
 
1639
1640/**
1641 * @brief **libbpf_probe_bpf_prog_type()** detects if host kernel supports
1642 * BPF programs of a given type.
1643 * @param prog_type BPF program type to detect kernel support for
1644 * @param opts reserved for future extensibility, should be NULL
1645 * @return 1, if given program type is supported; 0, if given program type is
1646 * not supported; negative error code if feature detection failed or can't be
1647 * performed
1648 *
1649 * Make sure the process has required set of CAP_* permissions (or runs as
1650 * root) when performing feature checking.
1651 */
1652LIBBPF_API int libbpf_probe_bpf_prog_type(enum bpf_prog_type prog_type, const void *opts);
1653/**
1654 * @brief **libbpf_probe_bpf_map_type()** detects if host kernel supports
1655 * BPF maps of a given type.
1656 * @param map_type BPF map type to detect kernel support for
1657 * @param opts reserved for future extensibility, should be NULL
1658 * @return 1, if given map type is supported; 0, if given map type is
1659 * not supported; negative error code if feature detection failed or can't be
1660 * performed
1661 *
1662 * Make sure the process has required set of CAP_* permissions (or runs as
1663 * root) when performing feature checking.
1664 */
1665LIBBPF_API int libbpf_probe_bpf_map_type(enum bpf_map_type map_type, const void *opts);
1666/**
1667 * @brief **libbpf_probe_bpf_helper()** detects if host kernel supports the
1668 * use of a given BPF helper from specified BPF program type.
1669 * @param prog_type BPF program type used to check the support of BPF helper
1670 * @param helper_id BPF helper ID (enum bpf_func_id) to check support for
1671 * @param opts reserved for future extensibility, should be NULL
1672 * @return 1, if given combination of program type and helper is supported; 0,
1673 * if the combination is not supported; negative error code if feature
1674 * detection for provided input arguments failed or can't be performed
1675 *
1676 * Make sure the process has required set of CAP_* permissions (or runs as
1677 * root) when performing feature checking.
1678 */
1679LIBBPF_API int libbpf_probe_bpf_helper(enum bpf_prog_type prog_type,
1680				       enum bpf_func_id helper_id, const void *opts);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1681
1682/**
1683 * @brief **libbpf_num_possible_cpus()** is a helper function to get the
1684 * number of possible CPUs that the host kernel supports and expects.
1685 * @return number of possible CPUs; or error code on failure
 
 
 
 
 
1686 *
1687 * Example usage:
1688 *
1689 *     int ncpus = libbpf_num_possible_cpus();
1690 *     if (ncpus < 0) {
1691 *          // error handling
1692 *     }
1693 *     long values[ncpus];
1694 *     bpf_map_lookup_elem(per_cpu_map_fd, key, values);
 
1695 */
1696LIBBPF_API int libbpf_num_possible_cpus(void);
1697
1698struct bpf_map_skeleton {
1699	const char *name;
1700	struct bpf_map **map;
1701	void **mmaped;
1702	struct bpf_link **link;
1703};
1704
1705struct bpf_prog_skeleton {
1706	const char *name;
1707	struct bpf_program **prog;
1708	struct bpf_link **link;
1709};
1710
1711struct bpf_object_skeleton {
1712	size_t sz; /* size of this struct, for forward/backward compatibility */
1713
1714	const char *name;
1715	const void *data;
1716	size_t data_sz;
1717
1718	struct bpf_object **obj;
1719
1720	int map_cnt;
1721	int map_skel_sz; /* sizeof(struct bpf_map_skeleton) */
1722	struct bpf_map_skeleton *maps;
1723
1724	int prog_cnt;
1725	int prog_skel_sz; /* sizeof(struct bpf_prog_skeleton) */
1726	struct bpf_prog_skeleton *progs;
1727};
1728
1729LIBBPF_API int
1730bpf_object__open_skeleton(struct bpf_object_skeleton *s,
1731			  const struct bpf_object_open_opts *opts);
1732LIBBPF_API int bpf_object__load_skeleton(struct bpf_object_skeleton *s);
1733LIBBPF_API int bpf_object__attach_skeleton(struct bpf_object_skeleton *s);
1734LIBBPF_API void bpf_object__detach_skeleton(struct bpf_object_skeleton *s);
1735LIBBPF_API void bpf_object__destroy_skeleton(struct bpf_object_skeleton *s);
1736
1737struct bpf_var_skeleton {
1738	const char *name;
1739	struct bpf_map **map;
1740	void **addr;
1741};
1742
1743struct bpf_object_subskeleton {
1744	size_t sz; /* size of this struct, for forward/backward compatibility */
1745
1746	const struct bpf_object *obj;
1747
1748	int map_cnt;
1749	int map_skel_sz; /* sizeof(struct bpf_map_skeleton) */
1750	struct bpf_map_skeleton *maps;
1751
1752	int prog_cnt;
1753	int prog_skel_sz; /* sizeof(struct bpf_prog_skeleton) */
1754	struct bpf_prog_skeleton *progs;
1755
1756	int var_cnt;
1757	int var_skel_sz; /* sizeof(struct bpf_var_skeleton) */
1758	struct bpf_var_skeleton *vars;
1759};
1760
1761LIBBPF_API int
1762bpf_object__open_subskeleton(struct bpf_object_subskeleton *s);
1763LIBBPF_API void
1764bpf_object__destroy_subskeleton(struct bpf_object_subskeleton *s);
1765
1766struct gen_loader_opts {
1767	size_t sz; /* size of this struct, for forward/backward compatibility */
1768	const char *data;
1769	const char *insns;
1770	__u32 data_sz;
1771	__u32 insns_sz;
1772};
1773
1774#define gen_loader_opts__last_field insns_sz
1775LIBBPF_API int bpf_object__gen_loader(struct bpf_object *obj,
1776				      struct gen_loader_opts *opts);
1777
1778enum libbpf_tristate {
1779	TRI_NO = 0,
1780	TRI_YES = 1,
1781	TRI_MODULE = 2,
1782};
1783
1784struct bpf_linker_opts {
1785	/* size of this struct, for forward/backward compatibility */
1786	size_t sz;
1787};
1788#define bpf_linker_opts__last_field sz
1789
1790struct bpf_linker_file_opts {
1791	/* size of this struct, for forward/backward compatibility */
1792	size_t sz;
1793};
1794#define bpf_linker_file_opts__last_field sz
1795
1796struct bpf_linker;
1797
1798LIBBPF_API struct bpf_linker *bpf_linker__new(const char *filename, struct bpf_linker_opts *opts);
1799LIBBPF_API int bpf_linker__add_file(struct bpf_linker *linker,
1800				    const char *filename,
1801				    const struct bpf_linker_file_opts *opts);
1802LIBBPF_API int bpf_linker__finalize(struct bpf_linker *linker);
1803LIBBPF_API void bpf_linker__free(struct bpf_linker *linker);
1804
1805/*
1806 * Custom handling of BPF program's SEC() definitions
1807 */
1808
1809struct bpf_prog_load_opts; /* defined in bpf.h */
1810
1811/* Called during bpf_object__open() for each recognized BPF program. Callback
1812 * can use various bpf_program__set_*() setters to adjust whatever properties
1813 * are necessary.
1814 */
1815typedef int (*libbpf_prog_setup_fn_t)(struct bpf_program *prog, long cookie);
1816
1817/* Called right before libbpf performs bpf_prog_load() to load BPF program
1818 * into the kernel. Callback can adjust opts as necessary.
1819 */
1820typedef int (*libbpf_prog_prepare_load_fn_t)(struct bpf_program *prog,
1821					     struct bpf_prog_load_opts *opts, long cookie);
1822
1823/* Called during skeleton attach or through bpf_program__attach(). If
1824 * auto-attach is not supported, callback should return 0 and set link to
1825 * NULL (it's not considered an error during skeleton attach, but it will be
1826 * an error for bpf_program__attach() calls). On error, error should be
1827 * returned directly and link set to NULL. On success, return 0 and set link
1828 * to a valid struct bpf_link.
1829 */
1830typedef int (*libbpf_prog_attach_fn_t)(const struct bpf_program *prog, long cookie,
1831				       struct bpf_link **link);
1832
1833struct libbpf_prog_handler_opts {
1834	/* size of this struct, for forward/backward compatibility */
1835	size_t sz;
1836	/* User-provided value that is passed to prog_setup_fn,
1837	 * prog_prepare_load_fn, and prog_attach_fn callbacks. Allows user to
1838	 * register one set of callbacks for multiple SEC() definitions and
1839	 * still be able to distinguish them, if necessary. For example,
1840	 * libbpf itself is using this to pass necessary flags (e.g.,
1841	 * sleepable flag) to a common internal SEC() handler.
1842	 */
1843	long cookie;
1844	/* BPF program initialization callback (see libbpf_prog_setup_fn_t).
1845	 * Callback is optional, pass NULL if it's not necessary.
1846	 */
1847	libbpf_prog_setup_fn_t prog_setup_fn;
1848	/* BPF program loading callback (see libbpf_prog_prepare_load_fn_t).
1849	 * Callback is optional, pass NULL if it's not necessary.
1850	 */
1851	libbpf_prog_prepare_load_fn_t prog_prepare_load_fn;
1852	/* BPF program attach callback (see libbpf_prog_attach_fn_t).
1853	 * Callback is optional, pass NULL if it's not necessary.
1854	 */
1855	libbpf_prog_attach_fn_t prog_attach_fn;
1856};
1857#define libbpf_prog_handler_opts__last_field prog_attach_fn
1858
1859/**
1860 * @brief **libbpf_register_prog_handler()** registers a custom BPF program
1861 * SEC() handler.
1862 * @param sec section prefix for which custom handler is registered
1863 * @param prog_type BPF program type associated with specified section
1864 * @param exp_attach_type Expected BPF attach type associated with specified section
1865 * @param opts optional cookie, callbacks, and other extra options
1866 * @return Non-negative handler ID is returned on success. This handler ID has
1867 * to be passed to *libbpf_unregister_prog_handler()* to unregister such
1868 * custom handler. Negative error code is returned on error.
1869 *
1870 * *sec* defines which SEC() definitions are handled by this custom handler
1871 * registration. *sec* can have few different forms:
1872 *   - if *sec* is just a plain string (e.g., "abc"), it will match only
1873 *   SEC("abc"). If BPF program specifies SEC("abc/whatever") it will result
1874 *   in an error;
1875 *   - if *sec* is of the form "abc/", proper SEC() form is
1876 *   SEC("abc/something"), where acceptable "something" should be checked by
1877 *   *prog_init_fn* callback, if there are additional restrictions;
1878 *   - if *sec* is of the form "abc+", it will successfully match both
1879 *   SEC("abc") and SEC("abc/whatever") forms;
1880 *   - if *sec* is NULL, custom handler is registered for any BPF program that
1881 *   doesn't match any of the registered (custom or libbpf's own) SEC()
1882 *   handlers. There could be only one such generic custom handler registered
1883 *   at any given time.
1884 *
1885 * All custom handlers (except the one with *sec* == NULL) are processed
1886 * before libbpf's own SEC() handlers. It is allowed to "override" libbpf's
1887 * SEC() handlers by registering custom ones for the same section prefix
1888 * (i.e., it's possible to have custom SEC("perf_event/LLC-load-misses")
1889 * handler).
1890 *
1891 * Note, like much of global libbpf APIs (e.g., libbpf_set_print(),
1892 * libbpf_set_strict_mode(), etc)) these APIs are not thread-safe. User needs
1893 * to ensure synchronization if there is a risk of running this API from
1894 * multiple threads simultaneously.
1895 */
1896LIBBPF_API int libbpf_register_prog_handler(const char *sec,
1897					    enum bpf_prog_type prog_type,
1898					    enum bpf_attach_type exp_attach_type,
1899					    const struct libbpf_prog_handler_opts *opts);
1900/**
1901 * @brief *libbpf_unregister_prog_handler()* unregisters previously registered
1902 * custom BPF program SEC() handler.
1903 * @param handler_id handler ID returned by *libbpf_register_prog_handler()*
1904 * after successful registration
1905 * @return 0 on success, negative error code if handler isn't found
1906 *
1907 * Note, like much of global libbpf APIs (e.g., libbpf_set_print(),
1908 * libbpf_set_strict_mode(), etc)) these APIs are not thread-safe. User needs
1909 * to ensure synchronization if there is a risk of running this API from
1910 * multiple threads simultaneously.
1911 */
1912LIBBPF_API int libbpf_unregister_prog_handler(int handler_id);
1913
1914#ifdef __cplusplus
1915} /* extern "C" */
1916#endif
1917
1918#endif /* __LIBBPF_LIBBPF_H */
v5.9
  1/* SPDX-License-Identifier: (LGPL-2.1 OR BSD-2-Clause) */
  2
  3/*
  4 * Common eBPF ELF object loading operations.
  5 *
  6 * Copyright (C) 2013-2015 Alexei Starovoitov <ast@kernel.org>
  7 * Copyright (C) 2015 Wang Nan <wangnan0@huawei.com>
  8 * Copyright (C) 2015 Huawei Inc.
  9 */
 10#ifndef __LIBBPF_LIBBPF_H
 11#define __LIBBPF_LIBBPF_H
 12
 13#include <stdarg.h>
 14#include <stdio.h>
 15#include <stdint.h>
 16#include <stdbool.h>
 17#include <sys/types.h>  // for size_t
 18#include <linux/bpf.h>
 19
 20#include "libbpf_common.h"
 
 21
 22#ifdef __cplusplus
 23extern "C" {
 24#endif
 25
 
 
 
 
 26enum libbpf_errno {
 27	__LIBBPF_ERRNO__START = 4000,
 28
 29	/* Something wrong in libelf */
 30	LIBBPF_ERRNO__LIBELF = __LIBBPF_ERRNO__START,
 31	LIBBPF_ERRNO__FORMAT,	/* BPF object format invalid */
 32	LIBBPF_ERRNO__KVERSION,	/* Incorrect or no 'version' section */
 33	LIBBPF_ERRNO__ENDIAN,	/* Endian mismatch */
 34	LIBBPF_ERRNO__INTERNAL,	/* Internal error in libbpf */
 35	LIBBPF_ERRNO__RELOC,	/* Relocation failed */
 36	LIBBPF_ERRNO__LOAD,	/* Load program failure for unknown reason */
 37	LIBBPF_ERRNO__VERIFY,	/* Kernel verifier blocks program loading */
 38	LIBBPF_ERRNO__PROG2BIG,	/* Program too big */
 39	LIBBPF_ERRNO__KVER,	/* Incorrect kernel version */
 40	LIBBPF_ERRNO__PROGTYPE,	/* Kernel doesn't support this program type */
 41	LIBBPF_ERRNO__WRNGPID,	/* Wrong pid in netlink message */
 42	LIBBPF_ERRNO__INVSEQ,	/* Invalid netlink sequence */
 43	LIBBPF_ERRNO__NLPARSE,	/* netlink parsing error */
 44	__LIBBPF_ERRNO__END,
 45};
 46
 47LIBBPF_API int libbpf_strerror(int err, char *buf, size_t size);
 48
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 49enum libbpf_print_level {
 50        LIBBPF_WARN,
 51        LIBBPF_INFO,
 52        LIBBPF_DEBUG,
 53};
 54
 55typedef int (*libbpf_print_fn_t)(enum libbpf_print_level level,
 56				 const char *, va_list ap);
 57
 
 
 
 
 
 
 
 
 
 
 
 58LIBBPF_API libbpf_print_fn_t libbpf_set_print(libbpf_print_fn_t fn);
 59
 60/* Hide internal to user */
 61struct bpf_object;
 62
 63struct bpf_object_open_attr {
 64	const char *file;
 65	enum bpf_prog_type prog_type;
 66};
 67
 68struct bpf_object_open_opts {
 69	/* size of this struct, for forward/backward compatiblity */
 70	size_t sz;
 71	/* object name override, if provided:
 72	 * - for object open from file, this will override setting object
 73	 *   name from file path's base name;
 74	 * - for object open from memory buffer, this will specify an object
 75	 *   name and will override default "<addr>-<buf-size>" name;
 76	 */
 77	const char *object_name;
 78	/* parse map definitions non-strictly, allowing extra attributes/data */
 79	bool relaxed_maps;
 80	/* DEPRECATED: handle CO-RE relocations non-strictly, allowing failures.
 81	 * Value is ignored. Relocations always are processed non-strictly.
 82	 * Non-relocatable instructions are replaced with invalid ones to
 83	 * prevent accidental errors.
 84	 * */
 85	bool relaxed_core_relocs;
 86	/* maps that set the 'pinning' attribute in their definition will have
 87	 * their pin_path attribute set to a file in this directory, and be
 88	 * auto-pinned to that path on load; defaults to "/sys/fs/bpf".
 89	 */
 90	const char *pin_root_path;
 91	__u32 attach_prog_fd;
 
 
 92	/* Additional kernel config content that augments and overrides
 93	 * system Kconfig for CONFIG_xxx externs.
 94	 */
 95	const char *kconfig;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 96};
 97#define bpf_object_open_opts__last_field kconfig
 98
 
 
 
 
 
 
 
 
 99LIBBPF_API struct bpf_object *bpf_object__open(const char *path);
 
 
 
 
 
 
 
 
 
 
 
100LIBBPF_API struct bpf_object *
101bpf_object__open_file(const char *path, const struct bpf_object_open_opts *opts);
 
 
 
 
 
 
 
 
 
 
 
102LIBBPF_API struct bpf_object *
103bpf_object__open_mem(const void *obj_buf, size_t obj_buf_sz,
104		     const struct bpf_object_open_opts *opts);
105
106/* deprecated bpf_object__open variants */
107LIBBPF_API struct bpf_object *
108bpf_object__open_buffer(const void *obj_buf, size_t obj_buf_sz,
109			const char *name);
110LIBBPF_API struct bpf_object *
111bpf_object__open_xattr(struct bpf_object_open_attr *attr);
 
 
112
113enum libbpf_pin_type {
114	LIBBPF_PIN_NONE,
115	/* PIN_BY_NAME: pin maps by name (in /sys/fs/bpf by default) */
116	LIBBPF_PIN_BY_NAME,
117};
 
118
119/* pin_maps and unpin_maps can both be called with a NULL path, in which case
120 * they will use the pin_path attribute of each map (and ignore all maps that
121 * don't have a pin_path set).
 
 
 
 
 
 
 
122 */
123LIBBPF_API int bpf_object__pin_maps(struct bpf_object *obj, const char *path);
 
 
 
 
 
 
 
 
 
 
 
 
124LIBBPF_API int bpf_object__unpin_maps(struct bpf_object *obj,
125				      const char *path);
126LIBBPF_API int bpf_object__pin_programs(struct bpf_object *obj,
127					const char *path);
128LIBBPF_API int bpf_object__unpin_programs(struct bpf_object *obj,
129					  const char *path);
130LIBBPF_API int bpf_object__pin(struct bpf_object *object, const char *path);
131LIBBPF_API void bpf_object__close(struct bpf_object *object);
132
133struct bpf_object_load_attr {
134	struct bpf_object *obj;
135	int log_level;
136	const char *target_btf_path;
137};
138
139/* Load/unload object into/from kernel */
140LIBBPF_API int bpf_object__load(struct bpf_object *obj);
141LIBBPF_API int bpf_object__load_xattr(struct bpf_object_load_attr *attr);
142LIBBPF_API int bpf_object__unload(struct bpf_object *obj);
143
144LIBBPF_API const char *bpf_object__name(const struct bpf_object *obj);
145LIBBPF_API unsigned int bpf_object__kversion(const struct bpf_object *obj);
 
 
 
 
 
 
 
 
 
146
147struct btf;
148LIBBPF_API struct btf *bpf_object__btf(const struct bpf_object *obj);
149LIBBPF_API int bpf_object__btf_fd(const struct bpf_object *obj);
150
151LIBBPF_API struct bpf_program *
152bpf_object__find_program_by_title(const struct bpf_object *obj,
153				  const char *title);
154LIBBPF_API struct bpf_program *
155bpf_object__find_program_by_name(const struct bpf_object *obj,
156				 const char *name);
157
158LIBBPF_API struct bpf_object *bpf_object__next(struct bpf_object *prev);
159#define bpf_object__for_each_safe(pos, tmp)			\
160	for ((pos) = bpf_object__next(NULL),		\
161		(tmp) = bpf_object__next(pos);		\
162	     (pos) != NULL;				\
163	     (pos) = (tmp), (tmp) = bpf_object__next(tmp))
164
165typedef void (*bpf_object_clear_priv_t)(struct bpf_object *, void *);
166LIBBPF_API int bpf_object__set_priv(struct bpf_object *obj, void *priv,
167				    bpf_object_clear_priv_t clear_priv);
168LIBBPF_API void *bpf_object__priv(const struct bpf_object *prog);
169
170LIBBPF_API int
171libbpf_prog_type_by_name(const char *name, enum bpf_prog_type *prog_type,
172			 enum bpf_attach_type *expected_attach_type);
173LIBBPF_API int libbpf_attach_type_by_name(const char *name,
174					  enum bpf_attach_type *attach_type);
175LIBBPF_API int libbpf_find_vmlinux_btf_id(const char *name,
176					  enum bpf_attach_type attach_type);
177
178/* Accessors of bpf_program */
179struct bpf_program;
180LIBBPF_API struct bpf_program *bpf_program__next(struct bpf_program *prog,
181						 const struct bpf_object *obj);
182
183#define bpf_object__for_each_program(pos, obj)		\
184	for ((pos) = bpf_program__next(NULL, (obj));	\
185	     (pos) != NULL;				\
186	     (pos) = bpf_program__next((pos), (obj)))
187
188LIBBPF_API struct bpf_program *bpf_program__prev(struct bpf_program *prog,
189						 const struct bpf_object *obj);
 
 
190
191typedef void (*bpf_program_clear_priv_t)(struct bpf_program *, void *);
192
193LIBBPF_API int bpf_program__set_priv(struct bpf_program *prog, void *priv,
194				     bpf_program_clear_priv_t clear_priv);
195
196LIBBPF_API void *bpf_program__priv(const struct bpf_program *prog);
197LIBBPF_API void bpf_program__set_ifindex(struct bpf_program *prog,
198					 __u32 ifindex);
199
200LIBBPF_API const char *bpf_program__name(const struct bpf_program *prog);
201LIBBPF_API const char *bpf_program__title(const struct bpf_program *prog,
202					  bool needs_copy);
203LIBBPF_API bool bpf_program__autoload(const struct bpf_program *prog);
204LIBBPF_API int bpf_program__set_autoload(struct bpf_program *prog, bool autoload);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
205
206/* returns program size in bytes */
207LIBBPF_API size_t bpf_program__size(const struct bpf_program *prog);
 
 
 
 
 
 
 
 
208
209LIBBPF_API int bpf_program__load(struct bpf_program *prog, char *license,
210				 __u32 kern_version);
211LIBBPF_API int bpf_program__fd(const struct bpf_program *prog);
212LIBBPF_API int bpf_program__pin_instance(struct bpf_program *prog,
213					 const char *path,
214					 int instance);
215LIBBPF_API int bpf_program__unpin_instance(struct bpf_program *prog,
216					   const char *path,
217					   int instance);
 
 
 
 
 
218LIBBPF_API int bpf_program__pin(struct bpf_program *prog, const char *path);
 
 
 
 
 
 
 
 
 
 
 
 
 
219LIBBPF_API int bpf_program__unpin(struct bpf_program *prog, const char *path);
220LIBBPF_API void bpf_program__unload(struct bpf_program *prog);
221
222struct bpf_link;
223
224LIBBPF_API struct bpf_link *bpf_link__open(const char *path);
225LIBBPF_API int bpf_link__fd(const struct bpf_link *link);
226LIBBPF_API const char *bpf_link__pin_path(const struct bpf_link *link);
 
 
 
 
 
 
 
 
 
 
 
227LIBBPF_API int bpf_link__pin(struct bpf_link *link, const char *path);
 
 
 
 
 
 
 
 
 
 
 
 
 
228LIBBPF_API int bpf_link__unpin(struct bpf_link *link);
229LIBBPF_API int bpf_link__update_program(struct bpf_link *link,
230					struct bpf_program *prog);
231LIBBPF_API void bpf_link__disconnect(struct bpf_link *link);
232LIBBPF_API int bpf_link__detach(struct bpf_link *link);
233LIBBPF_API int bpf_link__destroy(struct bpf_link *link);
234
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
235LIBBPF_API struct bpf_link *
236bpf_program__attach(struct bpf_program *prog);
 
 
 
 
 
 
 
 
 
 
 
 
237LIBBPF_API struct bpf_link *
238bpf_program__attach_perf_event(struct bpf_program *prog, int pfd);
 
239LIBBPF_API struct bpf_link *
240bpf_program__attach_kprobe(struct bpf_program *prog, bool retprobe,
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
241			   const char *func_name);
242LIBBPF_API struct bpf_link *
243bpf_program__attach_uprobe(struct bpf_program *prog, bool retprobe,
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
244			   pid_t pid, const char *binary_path,
245			   size_t func_offset);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
246LIBBPF_API struct bpf_link *
247bpf_program__attach_tracepoint(struct bpf_program *prog,
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
248			       const char *tp_category,
249			       const char *tp_name);
250LIBBPF_API struct bpf_link *
251bpf_program__attach_raw_tracepoint(struct bpf_program *prog,
 
 
 
 
 
 
 
 
 
 
 
 
 
252				   const char *tp_name);
253LIBBPF_API struct bpf_link *
254bpf_program__attach_trace(struct bpf_program *prog);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
255LIBBPF_API struct bpf_link *
256bpf_program__attach_lsm(struct bpf_program *prog);
257LIBBPF_API struct bpf_link *
258bpf_program__attach_cgroup(struct bpf_program *prog, int cgroup_fd);
 
 
 
 
 
 
 
 
 
 
 
 
 
259LIBBPF_API struct bpf_link *
260bpf_program__attach_netns(struct bpf_program *prog, int netns_fd);
 
 
 
 
 
 
 
 
 
 
 
 
 
261LIBBPF_API struct bpf_link *
262bpf_program__attach_xdp(struct bpf_program *prog, int ifindex);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
263
264struct bpf_map;
265
266LIBBPF_API struct bpf_link *bpf_map__attach_struct_ops(struct bpf_map *map);
 
267
268struct bpf_iter_attach_opts {
269	size_t sz; /* size of this struct for forward/backward compatibility */
270	union bpf_iter_link_info *link_info;
271	__u32 link_info_len;
272};
273#define bpf_iter_attach_opts__last_field link_info_len
274
275LIBBPF_API struct bpf_link *
276bpf_program__attach_iter(struct bpf_program *prog,
277			 const struct bpf_iter_attach_opts *opts);
278
279struct bpf_insn;
280
281/*
282 * Libbpf allows callers to adjust BPF programs before being loaded
283 * into kernel. One program in an object file can be transformed into
284 * multiple variants to be attached to different hooks.
285 *
286 * bpf_program_prep_t, bpf_program__set_prep and bpf_program__nth_fd
287 * form an API for this purpose.
288 *
289 * - bpf_program_prep_t:
290 *   Defines a 'preprocessor', which is a caller defined function
291 *   passed to libbpf through bpf_program__set_prep(), and will be
292 *   called before program is loaded. The processor should adjust
293 *   the program one time for each instance according to the instance id
294 *   passed to it.
295 *
296 * - bpf_program__set_prep:
297 *   Attaches a preprocessor to a BPF program. The number of instances
298 *   that should be created is also passed through this function.
299 *
300 * - bpf_program__nth_fd:
301 *   After the program is loaded, get resulting FD of a given instance
302 *   of the BPF program.
303 *
304 * If bpf_program__set_prep() is not used, the program would be loaded
305 * without adjustment during bpf_object__load(). The program has only
306 * one instance. In this case bpf_program__fd(prog) is equal to
307 * bpf_program__nth_fd(prog, 0).
308 */
 
 
309
310struct bpf_prog_prep_result {
311	/*
312	 * If not NULL, load new instruction array.
313	 * If set to NULL, don't load this instance.
314	 */
315	struct bpf_insn *new_insn_ptr;
316	int new_insn_cnt;
317
318	/* If not NULL, result FD is written to it. */
319	int *pfd;
320};
321
322/*
323 * Parameters of bpf_program_prep_t:
324 *  - prog:	The bpf_program being loaded.
325 *  - n:	Index of instance being generated.
326 *  - insns:	BPF instructions array.
327 *  - insns_cnt:Number of instructions in insns.
328 *  - res:	Output parameter, result of transformation.
329 *
330 * Return value:
331 *  - Zero:	pre-processing success.
332 *  - Non-zero:	pre-processing error, stop loading.
333 */
334typedef int (*bpf_program_prep_t)(struct bpf_program *prog, int n,
335				  struct bpf_insn *insns, int insns_cnt,
336				  struct bpf_prog_prep_result *res);
337
338LIBBPF_API int bpf_program__set_prep(struct bpf_program *prog, int nr_instance,
339				     bpf_program_prep_t prep);
340
341LIBBPF_API int bpf_program__nth_fd(const struct bpf_program *prog, int n);
342
343/*
344 * Adjust type of BPF program. Default is kprobe.
345 */
346LIBBPF_API int bpf_program__set_socket_filter(struct bpf_program *prog);
347LIBBPF_API int bpf_program__set_tracepoint(struct bpf_program *prog);
348LIBBPF_API int bpf_program__set_raw_tracepoint(struct bpf_program *prog);
349LIBBPF_API int bpf_program__set_kprobe(struct bpf_program *prog);
350LIBBPF_API int bpf_program__set_lsm(struct bpf_program *prog);
351LIBBPF_API int bpf_program__set_sched_cls(struct bpf_program *prog);
352LIBBPF_API int bpf_program__set_sched_act(struct bpf_program *prog);
353LIBBPF_API int bpf_program__set_xdp(struct bpf_program *prog);
354LIBBPF_API int bpf_program__set_perf_event(struct bpf_program *prog);
355LIBBPF_API int bpf_program__set_tracing(struct bpf_program *prog);
356LIBBPF_API int bpf_program__set_struct_ops(struct bpf_program *prog);
357LIBBPF_API int bpf_program__set_extension(struct bpf_program *prog);
358LIBBPF_API int bpf_program__set_sk_lookup(struct bpf_program *prog);
359
360LIBBPF_API enum bpf_prog_type bpf_program__get_type(struct bpf_program *prog);
361LIBBPF_API void bpf_program__set_type(struct bpf_program *prog,
362				      enum bpf_prog_type type);
363
364LIBBPF_API enum bpf_attach_type
365bpf_program__get_expected_attach_type(struct bpf_program *prog);
366LIBBPF_API void
367bpf_program__set_expected_attach_type(struct bpf_program *prog,
368				      enum bpf_attach_type type);
369
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
370LIBBPF_API int
371bpf_program__set_attach_target(struct bpf_program *prog, int attach_prog_fd,
372			       const char *attach_func_name);
373
374LIBBPF_API bool bpf_program__is_socket_filter(const struct bpf_program *prog);
375LIBBPF_API bool bpf_program__is_tracepoint(const struct bpf_program *prog);
376LIBBPF_API bool bpf_program__is_raw_tracepoint(const struct bpf_program *prog);
377LIBBPF_API bool bpf_program__is_kprobe(const struct bpf_program *prog);
378LIBBPF_API bool bpf_program__is_lsm(const struct bpf_program *prog);
379LIBBPF_API bool bpf_program__is_sched_cls(const struct bpf_program *prog);
380LIBBPF_API bool bpf_program__is_sched_act(const struct bpf_program *prog);
381LIBBPF_API bool bpf_program__is_xdp(const struct bpf_program *prog);
382LIBBPF_API bool bpf_program__is_perf_event(const struct bpf_program *prog);
383LIBBPF_API bool bpf_program__is_tracing(const struct bpf_program *prog);
384LIBBPF_API bool bpf_program__is_struct_ops(const struct bpf_program *prog);
385LIBBPF_API bool bpf_program__is_extension(const struct bpf_program *prog);
386LIBBPF_API bool bpf_program__is_sk_lookup(const struct bpf_program *prog);
387
388/*
389 * No need for __attribute__((packed)), all members of 'bpf_map_def'
390 * are all aligned.  In addition, using __attribute__((packed))
391 * would trigger a -Wpacked warning message, and lead to an error
392 * if -Werror is set.
393 */
394struct bpf_map_def {
395	unsigned int type;
396	unsigned int key_size;
397	unsigned int value_size;
398	unsigned int max_entries;
399	unsigned int map_flags;
400};
401
402/*
403 * The 'struct bpf_map' in include/linux/bpf.h is internal to the kernel,
404 * so no need to worry about a name clash.
405 */
406LIBBPF_API struct bpf_map *
407bpf_object__find_map_by_name(const struct bpf_object *obj, const char *name);
408
409LIBBPF_API int
410bpf_object__find_map_fd_by_name(const struct bpf_object *obj, const char *name);
411
412/*
413 * Get bpf_map through the offset of corresponding struct bpf_map_def
414 * in the BPF object file.
415 */
416LIBBPF_API struct bpf_map *
417bpf_object__find_map_by_offset(struct bpf_object *obj, size_t offset);
418
419LIBBPF_API struct bpf_map *
420bpf_map__next(const struct bpf_map *map, const struct bpf_object *obj);
421#define bpf_object__for_each_map(pos, obj)		\
422	for ((pos) = bpf_map__next(NULL, (obj));	\
423	     (pos) != NULL;				\
424	     (pos) = bpf_map__next((pos), (obj)))
425#define bpf_map__for_each bpf_object__for_each_map
426
427LIBBPF_API struct bpf_map *
428bpf_map__prev(const struct bpf_map *map, const struct bpf_object *obj);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
429
430/* get/set map FD */
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
431LIBBPF_API int bpf_map__fd(const struct bpf_map *map);
432LIBBPF_API int bpf_map__reuse_fd(struct bpf_map *map, int fd);
433/* get map definition */
434LIBBPF_API const struct bpf_map_def *bpf_map__def(const struct bpf_map *map);
435/* get map name */
436LIBBPF_API const char *bpf_map__name(const struct bpf_map *map);
437/* get/set map type */
438LIBBPF_API enum bpf_map_type bpf_map__type(const struct bpf_map *map);
439LIBBPF_API int bpf_map__set_type(struct bpf_map *map, enum bpf_map_type type);
440/* get/set map size (max_entries) */
441LIBBPF_API __u32 bpf_map__max_entries(const struct bpf_map *map);
442LIBBPF_API int bpf_map__set_max_entries(struct bpf_map *map, __u32 max_entries);
443LIBBPF_API int bpf_map__resize(struct bpf_map *map, __u32 max_entries);
444/* get/set map flags */
445LIBBPF_API __u32 bpf_map__map_flags(const struct bpf_map *map);
446LIBBPF_API int bpf_map__set_map_flags(struct bpf_map *map, __u32 flags);
447/* get/set map NUMA node */
448LIBBPF_API __u32 bpf_map__numa_node(const struct bpf_map *map);
449LIBBPF_API int bpf_map__set_numa_node(struct bpf_map *map, __u32 numa_node);
450/* get/set map key size */
451LIBBPF_API __u32 bpf_map__key_size(const struct bpf_map *map);
452LIBBPF_API int bpf_map__set_key_size(struct bpf_map *map, __u32 size);
453/* get/set map value size */
454LIBBPF_API __u32 bpf_map__value_size(const struct bpf_map *map);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
455LIBBPF_API int bpf_map__set_value_size(struct bpf_map *map, __u32 size);
456/* get map key/value BTF type IDs */
457LIBBPF_API __u32 bpf_map__btf_key_type_id(const struct bpf_map *map);
458LIBBPF_API __u32 bpf_map__btf_value_type_id(const struct bpf_map *map);
459/* get/set map if_index */
460LIBBPF_API __u32 bpf_map__ifindex(const struct bpf_map *map);
461LIBBPF_API int bpf_map__set_ifindex(struct bpf_map *map, __u32 ifindex);
 
 
 
462
463typedef void (*bpf_map_clear_priv_t)(struct bpf_map *, void *);
464LIBBPF_API int bpf_map__set_priv(struct bpf_map *map, void *priv,
465				 bpf_map_clear_priv_t clear_priv);
466LIBBPF_API void *bpf_map__priv(const struct bpf_map *map);
467LIBBPF_API int bpf_map__set_initial_value(struct bpf_map *map,
468					  const void *data, size_t size);
469LIBBPF_API bool bpf_map__is_offload_neutral(const struct bpf_map *map);
 
 
 
 
 
 
 
 
470LIBBPF_API bool bpf_map__is_internal(const struct bpf_map *map);
 
 
 
 
 
 
 
 
471LIBBPF_API int bpf_map__set_pin_path(struct bpf_map *map, const char *path);
472LIBBPF_API const char *bpf_map__get_pin_path(const struct bpf_map *map);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
473LIBBPF_API bool bpf_map__is_pinned(const struct bpf_map *map);
 
 
 
 
 
 
 
 
 
 
 
 
 
474LIBBPF_API int bpf_map__pin(struct bpf_map *map, const char *path);
 
 
 
 
 
 
 
 
 
 
 
 
475LIBBPF_API int bpf_map__unpin(struct bpf_map *map, const char *path);
476
477LIBBPF_API int bpf_map__set_inner_map_fd(struct bpf_map *map, int fd);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
478
479LIBBPF_API long libbpf_get_error(const void *ptr);
 
 
 
 
 
480
481struct bpf_prog_load_attr {
482	const char *file;
483	enum bpf_prog_type prog_type;
484	enum bpf_attach_type expected_attach_type;
485	int ifindex;
486	int log_level;
487	int prog_flags;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
488};
489
490LIBBPF_API int bpf_prog_load_xattr(const struct bpf_prog_load_attr *attr,
491				   struct bpf_object **pobj, int *prog_fd);
492LIBBPF_API int bpf_prog_load(const char *file, enum bpf_prog_type type,
493			     struct bpf_object **pobj, int *prog_fd);
494
495struct xdp_link_info {
496	__u32 prog_id;
497	__u32 drv_prog_id;
498	__u32 hw_prog_id;
499	__u32 skb_prog_id;
500	__u8 attach_mode;
501};
502
503struct bpf_xdp_set_link_opts {
504	size_t sz;
505	int old_fd;
 
 
 
506};
507#define bpf_xdp_set_link_opts__last_field old_fd
508
509LIBBPF_API int bpf_set_link_xdp_fd(int ifindex, int fd, __u32 flags);
510LIBBPF_API int bpf_set_link_xdp_fd_opts(int ifindex, int fd, __u32 flags,
511					const struct bpf_xdp_set_link_opts *opts);
512LIBBPF_API int bpf_get_link_xdp_id(int ifindex, __u32 *prog_id, __u32 flags);
513LIBBPF_API int bpf_get_link_xdp_info(int ifindex, struct xdp_link_info *info,
514				     size_t info_size, __u32 flags);
 
 
 
 
 
 
 
 
 
 
 
 
 
515
516/* Ring buffer APIs */
517struct ring_buffer;
 
 
518
519typedef int (*ring_buffer_sample_fn)(void *ctx, void *data, size_t size);
520
521struct ring_buffer_opts {
522	size_t sz; /* size of this struct, for forward/backward compatiblity */
523};
524
525#define ring_buffer_opts__last_field sz
526
527LIBBPF_API struct ring_buffer *
528ring_buffer__new(int map_fd, ring_buffer_sample_fn sample_cb, void *ctx,
529		 const struct ring_buffer_opts *opts);
530LIBBPF_API void ring_buffer__free(struct ring_buffer *rb);
531LIBBPF_API int ring_buffer__add(struct ring_buffer *rb, int map_fd,
532				ring_buffer_sample_fn sample_cb, void *ctx);
533LIBBPF_API int ring_buffer__poll(struct ring_buffer *rb, int timeout_ms);
534LIBBPF_API int ring_buffer__consume(struct ring_buffer *rb);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
535
536/* Perf buffer APIs */
537struct perf_buffer;
538
539typedef void (*perf_buffer_sample_fn)(void *ctx, int cpu,
540				      void *data, __u32 size);
541typedef void (*perf_buffer_lost_fn)(void *ctx, int cpu, __u64 cnt);
542
543/* common use perf buffer options */
544struct perf_buffer_opts {
545	/* if specified, sample_cb is called for each sample */
546	perf_buffer_sample_fn sample_cb;
547	/* if specified, lost_cb is called for each batch of lost samples */
548	perf_buffer_lost_fn lost_cb;
549	/* ctx is provided to sample_cb and lost_cb */
550	void *ctx;
551};
 
552
 
 
 
 
 
 
 
 
 
 
 
 
553LIBBPF_API struct perf_buffer *
554perf_buffer__new(int map_fd, size_t page_cnt,
 
555		 const struct perf_buffer_opts *opts);
556
557enum bpf_perf_event_ret {
558	LIBBPF_PERF_EVENT_DONE	= 0,
559	LIBBPF_PERF_EVENT_ERROR	= -1,
560	LIBBPF_PERF_EVENT_CONT	= -2,
561};
562
563struct perf_event_header;
564
565typedef enum bpf_perf_event_ret
566(*perf_buffer_event_fn)(void *ctx, int cpu, struct perf_event_header *event);
567
568/* raw perf buffer options, giving most power and control */
569struct perf_buffer_raw_opts {
570	/* perf event attrs passed directly into perf_event_open() */
571	struct perf_event_attr *attr;
572	/* raw event callback */
573	perf_buffer_event_fn event_cb;
574	/* ctx is provided to event_cb */
575	void *ctx;
576	/* if cpu_cnt == 0, open all on all possible CPUs (up to the number of
577	 * max_entries of given PERF_EVENT_ARRAY map)
578	 */
579	int cpu_cnt;
580	/* if cpu_cnt > 0, cpus is an array of CPUs to open ring buffers on */
581	int *cpus;
582	/* if cpu_cnt > 0, map_keys specify map keys to set per-CPU FDs for */
583	int *map_keys;
584};
 
 
 
585
586LIBBPF_API struct perf_buffer *
587perf_buffer__new_raw(int map_fd, size_t page_cnt,
 
588		     const struct perf_buffer_raw_opts *opts);
589
590LIBBPF_API void perf_buffer__free(struct perf_buffer *pb);
 
591LIBBPF_API int perf_buffer__poll(struct perf_buffer *pb, int timeout_ms);
592LIBBPF_API int perf_buffer__consume(struct perf_buffer *pb);
593
594typedef enum bpf_perf_event_ret
595	(*bpf_perf_event_print_t)(struct perf_event_header *hdr,
596				  void *private_data);
597LIBBPF_API enum bpf_perf_event_ret
598bpf_perf_event_read_simple(void *mmap_mem, size_t mmap_size, size_t page_size,
599			   void **copy_mem, size_t *copy_size,
600			   bpf_perf_event_print_t fn, void *private_data);
 
 
 
 
 
 
 
 
 
 
 
601
602struct bpf_prog_linfo;
603struct bpf_prog_info;
604
605LIBBPF_API void bpf_prog_linfo__free(struct bpf_prog_linfo *prog_linfo);
606LIBBPF_API struct bpf_prog_linfo *
607bpf_prog_linfo__new(const struct bpf_prog_info *info);
608LIBBPF_API const struct bpf_line_info *
609bpf_prog_linfo__lfind_addr_func(const struct bpf_prog_linfo *prog_linfo,
610				__u64 addr, __u32 func_idx, __u32 nr_skip);
611LIBBPF_API const struct bpf_line_info *
612bpf_prog_linfo__lfind(const struct bpf_prog_linfo *prog_linfo,
613		      __u32 insn_off, __u32 nr_skip);
614
615/*
616 * Probe for supported system features
617 *
618 * Note that running many of these probes in a short amount of time can cause
619 * the kernel to reach the maximal size of lockable memory allowed for the
620 * user, causing subsequent probes to fail. In this case, the caller may want
621 * to adjust that limit with setrlimit().
622 */
623LIBBPF_API bool bpf_probe_prog_type(enum bpf_prog_type prog_type,
624				    __u32 ifindex);
625LIBBPF_API bool bpf_probe_map_type(enum bpf_map_type map_type, __u32 ifindex);
626LIBBPF_API bool bpf_probe_helper(enum bpf_func_id id,
627				 enum bpf_prog_type prog_type, __u32 ifindex);
628LIBBPF_API bool bpf_probe_large_insn_limit(__u32 ifindex);
629
630/*
631 * Get bpf_prog_info in continuous memory
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
632 *
633 * struct bpf_prog_info has multiple arrays. The user has option to choose
634 * arrays to fetch from kernel. The following APIs provide an uniform way to
635 * fetch these data. All arrays in bpf_prog_info are stored in a single
636 * continuous memory region. This makes it easy to store the info in a
637 * file.
638 *
639 * Before writing bpf_prog_info_linear to files, it is necessary to
640 * translate pointers in bpf_prog_info to offsets. Helper functions
641 * bpf_program__bpil_addr_to_offs() and bpf_program__bpil_offs_to_addr()
642 * are introduced to switch between pointers and offsets.
643 *
644 * Examples:
645 *   # To fetch map_ids and prog_tags:
646 *   __u64 arrays = (1UL << BPF_PROG_INFO_MAP_IDS) |
647 *           (1UL << BPF_PROG_INFO_PROG_TAGS);
648 *   struct bpf_prog_info_linear *info_linear =
649 *           bpf_program__get_prog_info_linear(fd, arrays);
650 *
651 *   # To save data in file
652 *   bpf_program__bpil_addr_to_offs(info_linear);
653 *   write(f, info_linear, sizeof(*info_linear) + info_linear->data_len);
654 *
655 *   # To read data from file
656 *   read(f, info_linear, <proper_size>);
657 *   bpf_program__bpil_offs_to_addr(info_linear);
658 */
659enum bpf_prog_info_array {
660	BPF_PROG_INFO_FIRST_ARRAY = 0,
661	BPF_PROG_INFO_JITED_INSNS = 0,
662	BPF_PROG_INFO_XLATED_INSNS,
663	BPF_PROG_INFO_MAP_IDS,
664	BPF_PROG_INFO_JITED_KSYMS,
665	BPF_PROG_INFO_JITED_FUNC_LENS,
666	BPF_PROG_INFO_FUNC_INFO,
667	BPF_PROG_INFO_LINE_INFO,
668	BPF_PROG_INFO_JITED_LINE_INFO,
669	BPF_PROG_INFO_PROG_TAGS,
670	BPF_PROG_INFO_LAST_ARRAY,
671};
672
673struct bpf_prog_info_linear {
674	/* size of struct bpf_prog_info, when the tool is compiled */
675	__u32			info_len;
676	/* total bytes allocated for data, round up to 8 bytes */
677	__u32			data_len;
678	/* which arrays are included in data */
679	__u64			arrays;
680	struct bpf_prog_info	info;
681	__u8			data[];
682};
683
684LIBBPF_API struct bpf_prog_info_linear *
685bpf_program__get_prog_info_linear(int fd, __u64 arrays);
686
687LIBBPF_API void
688bpf_program__bpil_addr_to_offs(struct bpf_prog_info_linear *info_linear);
689
690LIBBPF_API void
691bpf_program__bpil_offs_to_addr(struct bpf_prog_info_linear *info_linear);
692
693/*
694 * A helper function to get the number of possible CPUs before looking up
695 * per-CPU maps. Negative errno is returned on failure.
696 *
697 * Example usage:
698 *
699 *     int ncpus = libbpf_num_possible_cpus();
700 *     if (ncpus < 0) {
701 *          // error handling
702 *     }
703 *     long values[ncpus];
704 *     bpf_map_lookup_elem(per_cpu_map_fd, key, values);
705 *
706 */
707LIBBPF_API int libbpf_num_possible_cpus(void);
708
709struct bpf_map_skeleton {
710	const char *name;
711	struct bpf_map **map;
712	void **mmaped;
 
713};
714
715struct bpf_prog_skeleton {
716	const char *name;
717	struct bpf_program **prog;
718	struct bpf_link **link;
719};
720
721struct bpf_object_skeleton {
722	size_t sz; /* size of this struct, for forward/backward compatibility */
723
724	const char *name;
725	void *data;
726	size_t data_sz;
727
728	struct bpf_object **obj;
729
730	int map_cnt;
731	int map_skel_sz; /* sizeof(struct bpf_skeleton_map) */
732	struct bpf_map_skeleton *maps;
733
734	int prog_cnt;
735	int prog_skel_sz; /* sizeof(struct bpf_skeleton_prog) */
736	struct bpf_prog_skeleton *progs;
737};
738
739LIBBPF_API int
740bpf_object__open_skeleton(struct bpf_object_skeleton *s,
741			  const struct bpf_object_open_opts *opts);
742LIBBPF_API int bpf_object__load_skeleton(struct bpf_object_skeleton *s);
743LIBBPF_API int bpf_object__attach_skeleton(struct bpf_object_skeleton *s);
744LIBBPF_API void bpf_object__detach_skeleton(struct bpf_object_skeleton *s);
745LIBBPF_API void bpf_object__destroy_skeleton(struct bpf_object_skeleton *s);
746
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
747enum libbpf_tristate {
748	TRI_NO = 0,
749	TRI_YES = 1,
750	TRI_MODULE = 2,
751};
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
752
753#ifdef __cplusplus
754} /* extern "C" */
755#endif
756
757#endif /* __LIBBPF_LIBBPF_H */