2024-05-04 22:55:56 +03:00
|
|
|
// Copyright (c) eBPF for Windows contributors
|
2021-08-04 03:25:50 +03:00
|
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
|
2021-09-07 20:51:18 +03:00
|
|
|
#ifdef __doxygen
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @name Link-related functions
|
|
|
|
* @{
|
|
|
|
*/
|
|
|
|
|
|
|
|
/** @brief Clean up a link.
|
|
|
|
*
|
|
|
|
* @details Unless bpf_link__disconnect was called first,
|
|
|
|
* this API detaches the link. Either way, it then closes
|
|
|
|
* the link fd and frees the memory for the link.
|
|
|
|
*
|
|
|
|
* @param[in] link Link to destroy.
|
|
|
|
*
|
|
|
|
* @sa bpf_link_detach
|
|
|
|
* @sa ebpf_link_close
|
|
|
|
*/
|
|
|
|
int
|
|
|
|
bpf_link__destroy(struct bpf_link* link);
|
|
|
|
|
|
|
|
/** @brief Release ownership of a link so that it is
|
|
|
|
* not detached when destroyed.
|
|
|
|
*
|
|
|
|
* @param[in] link Link to disconnect.
|
|
|
|
*
|
|
|
|
* @sa bpf_link__destroy
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
bpf_link__disconnect(struct bpf_link* link);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Get a file descriptor that refers to a link.
|
|
|
|
*
|
|
|
|
* @param[in] link Link to get a file descriptor for.
|
|
|
|
*
|
|
|
|
* @returns File descriptor that refers to the link.
|
2022-05-13 02:21:16 +03:00
|
|
|
* The caller should not call _close() on the fd.
|
2021-09-07 20:51:18 +03:00
|
|
|
*/
|
|
|
|
int
|
|
|
|
bpf_link__fd(const struct bpf_link* link);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Pin a link to a specified path.
|
|
|
|
*
|
|
|
|
* @param[in] link Link to pin.
|
|
|
|
* @param[in] path Path to pin the link to.
|
|
|
|
*
|
|
|
|
* @retval 0 The operation was successful.
|
|
|
|
* @retval <0 An error occured, and errno was set.
|
|
|
|
*
|
|
|
|
* @exception EBUSY A pin path was previously specified.
|
|
|
|
* @exception EEXIST Something is already pinned to the specified path.
|
|
|
|
* @exception EINVAL An invalid argument was provided.
|
|
|
|
* @exception ENOMEM Out of memory.
|
|
|
|
*
|
|
|
|
* @sa bpf_link__unpin
|
|
|
|
*/
|
|
|
|
int
|
|
|
|
bpf_link__pin(struct bpf_link* link, const char* path);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Unpin a link.
|
|
|
|
*
|
|
|
|
* @param[in] link Link to unpin.
|
|
|
|
*
|
|
|
|
* @retval 0 The operation was successful.
|
|
|
|
* @retval <0 An error occured, and errno was set.
|
|
|
|
*
|
|
|
|
* @exception EINVAL An invalid argument was provided.
|
|
|
|
* @exception ENOENT The link was not pinned.
|
|
|
|
*
|
|
|
|
* @sa bpf_link__pin
|
|
|
|
*/
|
|
|
|
int
|
|
|
|
bpf_link__unpin(struct bpf_link* link);
|
|
|
|
|
2022-07-29 21:57:30 +03:00
|
|
|
/**
|
|
|
|
* @brief **libbpf_bpf_link_type_str()** converts the provided link type value
|
|
|
|
* into a textual representation.
|
|
|
|
*
|
|
|
|
* @param[in] t The link type.
|
|
|
|
*
|
|
|
|
* @return Pointer to a static string identifying the link type. NULL is
|
|
|
|
* returned for unknown **bpf_link_type** values.
|
|
|
|
*/
|
|
|
|
const char*
|
|
|
|
libbpf_bpf_link_type_str(enum bpf_link_type t);
|
|
|
|
|
2021-09-07 20:51:18 +03:00
|
|
|
/** @} */
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @name Map-related functions
|
|
|
|
* @{
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Get a file descriptor that refers to a map.
|
|
|
|
*
|
|
|
|
* @param[in] map Map to get a file descriptor for.
|
|
|
|
*
|
|
|
|
* @returns File descriptor that refers to the map.
|
2022-05-13 02:21:16 +03:00
|
|
|
* The caller should not call _close() on the fd.
|
2021-09-07 20:51:18 +03:00
|
|
|
*/
|
|
|
|
int
|
|
|
|
bpf_map__fd(const struct bpf_map* map);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Determine whether a map is pinned.
|
|
|
|
*
|
|
|
|
* @param[in] map Map to check.
|
|
|
|
*
|
|
|
|
* @retval true The map is pinned.
|
|
|
|
* @retval false The map is not pinned.
|
|
|
|
*
|
|
|
|
* @sa bpf_map__pin
|
|
|
|
* @sa bpf_object__pin
|
|
|
|
* @sa bpf_object__pin_maps
|
|
|
|
*/
|
|
|
|
bool
|
|
|
|
bpf_map__is_pinned(const struct bpf_map* map);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Get the size of keys in a given map.
|
|
|
|
*
|
|
|
|
* @param[in] map Map to check.
|
|
|
|
*
|
|
|
|
* @returns The size in bytes of keys in the map.
|
|
|
|
*/
|
|
|
|
__u32
|
|
|
|
bpf_map__key_size(const struct bpf_map* map);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Get the maximum number of entries allowed in a given map.
|
|
|
|
*
|
|
|
|
* @param[in] map Map to check.
|
|
|
|
*
|
|
|
|
* @returns The maximum number of entries allowed.
|
|
|
|
*/
|
|
|
|
__u32
|
|
|
|
bpf_map__max_entries(const struct bpf_map* map);
|
|
|
|
|
2021-09-29 03:22:31 +03:00
|
|
|
/**
|
|
|
|
* @brief Get the name of an eBPF map.
|
|
|
|
*
|
|
|
|
* @param[in] map The map to check.
|
|
|
|
*
|
|
|
|
* @returns The name of the map, or NULL if none.
|
|
|
|
*/
|
|
|
|
const char*
|
|
|
|
bpf_map__name(const struct bpf_map* map);
|
|
|
|
|
2021-09-07 20:51:18 +03:00
|
|
|
/**
|
|
|
|
* @brief Pin a map to a specified path.
|
|
|
|
*
|
|
|
|
* @param[in] map Map to pin.
|
|
|
|
* @param[in] path Path to pin the map to.
|
|
|
|
*
|
|
|
|
* @retval 0 The operation was successful.
|
|
|
|
* @retval <0 An error occured, and errno was set.
|
|
|
|
*
|
|
|
|
* @exception EBUSY A pin path was previously specified.
|
|
|
|
* @exception EEXIST Something is already pinned to the specified path.
|
|
|
|
* @exception EINVAL An invalid argument was provided.
|
|
|
|
* @exception ENOMEM Out of memory.
|
|
|
|
*
|
|
|
|
* @sa bpf_map_unpin
|
|
|
|
* @sa bpf_object__pin_maps
|
|
|
|
*/
|
|
|
|
int
|
|
|
|
bpf_map__pin(struct bpf_map* map, const char* path);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Get the type of a map.
|
|
|
|
*
|
|
|
|
* @param[in] map Map to check.
|
|
|
|
*
|
|
|
|
* @returns The map type.
|
|
|
|
*/
|
|
|
|
enum bpf_map_type
|
|
|
|
bpf_map__type(const struct bpf_map* map);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Unpin a map.
|
|
|
|
*
|
|
|
|
* @param[in] map Map to unpin.
|
|
|
|
* @param[in] path Path from which to unpin the map.
|
|
|
|
*
|
|
|
|
* @retval 0 The operation was successful.
|
|
|
|
* @retval <0 An error occured, and errno was set.
|
|
|
|
*
|
|
|
|
* @exception EINVAL An invalid argument was provided.
|
|
|
|
* @exception ENOENT The map was not pinned.
|
|
|
|
*
|
|
|
|
* @sa bpf_map_pin
|
|
|
|
* @sa bpf_object__unpin_maps
|
|
|
|
*/
|
|
|
|
int
|
|
|
|
bpf_map__unpin(struct bpf_map* map, const char* path);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Get the size of values in a given map.
|
|
|
|
*
|
|
|
|
* @param[in] map Map to check.
|
|
|
|
*
|
|
|
|
* @returns The size in bytes of values in the map.
|
|
|
|
*/
|
|
|
|
__u32
|
|
|
|
bpf_map__value_size(const struct bpf_map* map);
|
|
|
|
|
2022-07-29 21:57:30 +03:00
|
|
|
/**
|
|
|
|
* @brief **libbpf_bpf_map_type_str()** converts the provided map type value
|
|
|
|
* into a textual representation.
|
|
|
|
*
|
|
|
|
* @param[in] t The map type.
|
|
|
|
*
|
|
|
|
* @return Pointer to a static string identifying the map type. NULL is
|
|
|
|
* returned for unknown **bpf_map_type** values.
|
|
|
|
*/
|
|
|
|
const char*
|
|
|
|
libbpf_bpf_map_type_str(enum bpf_map_type t);
|
|
|
|
|
2021-09-07 20:51:18 +03:00
|
|
|
/** @} */
|
|
|
|
|
|
|
|
/**
|
2021-09-14 20:59:57 +03:00
|
|
|
* @name Object-related functions
|
2021-09-07 20:51:18 +03:00
|
|
|
* @{
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Close an eBPF object.
|
|
|
|
*
|
|
|
|
* @param[in] object The object to close.
|
|
|
|
*
|
|
|
|
* @sa bpf_prog_load
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
bpf_object__close(struct bpf_object* object);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Find a map with a given name among maps associated with an eBPF object.
|
|
|
|
*
|
|
|
|
* @param[in] obj The object to check.
|
|
|
|
* @param[in] name The name to look for.
|
|
|
|
*
|
|
|
|
* @returns The map found, or NULL if none.
|
2024-07-23 21:32:28 +03:00
|
|
|
*
|
|
|
|
* @exception ENOENT The map was not found.
|
2021-09-07 20:51:18 +03:00
|
|
|
*/
|
|
|
|
struct bpf_map*
|
|
|
|
bpf_object__find_map_by_name(const struct bpf_object* obj, const char* name);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Find a map with a given name among maps associated with an eBPF object.
|
|
|
|
*
|
|
|
|
* @param[in] obj The object to check.
|
|
|
|
* @param[in] name The name to look for.
|
|
|
|
*
|
|
|
|
* @returns A file descriptor referring to the map found, or a negative value if none.
|
2022-05-13 02:21:16 +03:00
|
|
|
* The caller should not call _close() on the fd.
|
2021-09-07 20:51:18 +03:00
|
|
|
*
|
|
|
|
* @sa bpf_map__fd
|
|
|
|
*/
|
|
|
|
int
|
|
|
|
bpf_object__find_map_fd_by_name(const struct bpf_object* obj, const char* name);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Find a program with a given name among programs associated with an eBPF object.
|
|
|
|
*
|
|
|
|
* @param[in] obj The object to check.
|
|
|
|
* @param[in] name The name to look for.
|
|
|
|
*
|
2022-05-13 02:21:16 +03:00
|
|
|
* @returns The program found, or NULL if none.
|
2021-09-07 20:51:18 +03:00
|
|
|
*
|
|
|
|
* @sa bpf_program__name
|
|
|
|
*/
|
|
|
|
struct bpf_program*
|
|
|
|
bpf_object__find_program_by_name(const struct bpf_object* obj, const char* name);
|
|
|
|
|
2021-09-24 05:32:09 +03:00
|
|
|
/**
|
|
|
|
* @brief Load all the programs in a given object.
|
|
|
|
*
|
|
|
|
* @param[in] obj Object from which to load programs.
|
|
|
|
*
|
|
|
|
* @retval 0 The operation was successful.
|
|
|
|
* @retval <0 An error occured, and errno was set.
|
|
|
|
*
|
|
|
|
* @exception EINVAL An invalid argument was provided.
|
|
|
|
* @exception ENOMEM Out of memory.
|
|
|
|
*
|
|
|
|
* @sa bpf_object__load_xattr
|
|
|
|
* @sa bpf_object__open
|
|
|
|
* @sa bpf_object__unload
|
|
|
|
* @sa bpf_prog_load
|
|
|
|
*/
|
|
|
|
int
|
|
|
|
bpf_object__load(struct bpf_object* obj);
|
|
|
|
|
2021-09-07 20:51:18 +03:00
|
|
|
/**
|
|
|
|
* @brief Get the name of an eBPF object.
|
|
|
|
*
|
|
|
|
* @param[in] obj The object to check.
|
|
|
|
*
|
|
|
|
* @returns The name of the object, or NULL if none.
|
|
|
|
*/
|
|
|
|
const char*
|
|
|
|
bpf_object__name(const struct bpf_object* obj);
|
|
|
|
|
2021-09-14 20:59:57 +03:00
|
|
|
/**
|
2022-07-29 21:57:30 +03:00
|
|
|
* @brief Get the next map for a given eBPF object.
|
2021-09-14 20:59:57 +03:00
|
|
|
*
|
2022-07-29 21:57:30 +03:00
|
|
|
* @param[in] obj Object with maps.
|
|
|
|
* @param[in] map Previous map.
|
|
|
|
*
|
|
|
|
* @returns Next map, or NULL if none.
|
2021-09-14 20:59:57 +03:00
|
|
|
*
|
2022-07-29 21:57:30 +03:00
|
|
|
* @sa bpf_object__prev_map
|
2021-09-14 20:59:57 +03:00
|
|
|
*/
|
2022-07-29 21:57:30 +03:00
|
|
|
struct bpf_map*
|
|
|
|
bpf_object__next_map(const struct bpf_object* obj, const struct bpf_map* map);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Get the next program for a given eBPF object.
|
|
|
|
*
|
|
|
|
* @param[in] obj Object with programs.
|
|
|
|
* @param[in] prog Previous program, or NULL to get the first program.
|
|
|
|
*
|
|
|
|
* @returns Next program, or NULL if none.
|
|
|
|
*
|
|
|
|
* @sa bpf_object__prev_program
|
|
|
|
*/
|
|
|
|
struct bpf_program*
|
|
|
|
bpf_object__next_program(const struct bpf_object* obj, struct bpf_program* prog);
|
2021-09-14 20:59:57 +03:00
|
|
|
|
2022-05-25 00:53:04 +03:00
|
|
|
/**
|
|
|
|
* @brief Open a file without loading the programs.
|
|
|
|
*
|
|
|
|
* @param[in] path File name to open.
|
|
|
|
*
|
|
|
|
* @returns Pointer to an eBPF object, or NULL on failure.
|
|
|
|
*/
|
|
|
|
struct bpf_object*
|
|
|
|
bpf_object__open(const char* path);
|
|
|
|
|
2021-09-24 05:32:09 +03:00
|
|
|
/**
|
|
|
|
* @brief Open a file without loading the programs.
|
|
|
|
*
|
|
|
|
* @param[in] path File name to open.
|
2022-08-24 07:11:27 +03:00
|
|
|
* @param[opts] opts Options to use when opening the object, or NULL pointer for default.
|
2021-09-24 05:32:09 +03:00
|
|
|
*
|
|
|
|
* @returns Pointer to an eBPF object, or NULL on failure.
|
|
|
|
*/
|
|
|
|
struct bpf_object*
|
|
|
|
bpf_object__open_file(const char* path, const struct bpf_object_open_opts* opts);
|
|
|
|
|
2021-09-07 20:51:18 +03:00
|
|
|
/**
|
|
|
|
* @brief Pin an eBPF object to a specified path.
|
|
|
|
*
|
|
|
|
* @param[in] object Object to pin.
|
|
|
|
* @param[in] path Path to pin the object to.
|
|
|
|
*
|
|
|
|
* @retval 0 The operation was successful.
|
|
|
|
* @retval <0 An error occured, and errno was set.
|
|
|
|
*
|
|
|
|
* @exception EBUSY Something is already pinned to the specified path.
|
|
|
|
* @exception EINVAL An invalid argument was provided.
|
|
|
|
* @exception ENOMEM Out of memory.
|
|
|
|
*
|
|
|
|
* @sa bpf_object__pin_maps
|
|
|
|
* @sa bpf_object__pin_programs
|
|
|
|
* @sa bpf_object__unpin_maps
|
|
|
|
* @sa bpf_object__unpin_programs
|
|
|
|
*/
|
|
|
|
int
|
|
|
|
bpf_object__pin(struct bpf_object* object, const char* path);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Pin all maps associated with an eBPF object to a specified path.
|
|
|
|
*
|
|
|
|
* @param[in] obj Object to pin maps of.
|
|
|
|
* @param[in] path Path to pin the maps to.
|
|
|
|
*
|
|
|
|
* @retval 0 The operation was successful.
|
|
|
|
* @retval <0 An error occured, and errno was set.
|
|
|
|
*
|
|
|
|
* @exception EBUSY Something is already pinned to the specified path.
|
|
|
|
* @exception EINVAL An invalid argument was provided.
|
|
|
|
* @exception ENOMEM Out of memory.
|
|
|
|
*
|
|
|
|
* @sa bpf_map__pin
|
|
|
|
* @sa bpf_object__pin
|
|
|
|
* @sa bpf_object__unpin_maps
|
|
|
|
*/
|
|
|
|
int
|
|
|
|
bpf_object__pin_maps(struct bpf_object* obj, const char* path);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Pin all programs associated with an eBPF object to a specified path.
|
|
|
|
*
|
|
|
|
* @param[in] obj Object to pin programs of.
|
|
|
|
* @param[in] path Path to pin the programs to.
|
|
|
|
*
|
|
|
|
* @retval 0 The operation was successful.
|
|
|
|
* @retval <0 An error occured, and errno was set.
|
|
|
|
*
|
|
|
|
* @exception EBUSY Something is already pinned to the specified path.
|
|
|
|
* @exception EINVAL An invalid argument was provided.
|
|
|
|
* @exception ENOMEM Out of memory.
|
|
|
|
*
|
|
|
|
* @sa bpf_program__pin
|
|
|
|
* @sa bpf_object__pin
|
|
|
|
* @sa bpf_object__unpin_programs
|
|
|
|
*/
|
|
|
|
int
|
|
|
|
bpf_object__pin_programs(struct bpf_object* obj, const char* path);
|
|
|
|
|
2021-09-29 03:22:31 +03:00
|
|
|
/**
|
2022-07-29 21:57:30 +03:00
|
|
|
* @brief Get the previous map for a given eBPF object.
|
2021-09-29 03:22:31 +03:00
|
|
|
*
|
2022-07-29 21:57:30 +03:00
|
|
|
* @param[in] obj Object with maps.
|
|
|
|
* @param[in] map Next map.
|
2021-09-29 03:22:31 +03:00
|
|
|
*
|
2022-07-29 21:57:30 +03:00
|
|
|
* @returns Previous map, or NULL if none.
|
2021-09-29 03:22:31 +03:00
|
|
|
*
|
2022-07-29 21:57:30 +03:00
|
|
|
* @sa bpf_object__next_map
|
2021-09-29 03:22:31 +03:00
|
|
|
*/
|
2022-07-29 21:57:30 +03:00
|
|
|
struct bpf_map*
|
|
|
|
bpf_object__prev_map(const struct bpf_object* obj, const struct bpf_map* map);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Get the previous eBPF program for a given eBPF object.
|
|
|
|
*
|
|
|
|
* @param[in] obj Object with programs.
|
|
|
|
* @param[in] prog Next program.
|
|
|
|
*
|
|
|
|
* @returns Previous eBPF program, or NULL if none.
|
|
|
|
*
|
|
|
|
* @sa bpf_object__next_program
|
|
|
|
*/
|
|
|
|
struct bpf_program*
|
|
|
|
bpf_object__prev_program(const struct bpf_object* obj, struct bpf_program* prog);
|
2021-09-29 03:22:31 +03:00
|
|
|
|
2021-09-07 20:51:18 +03:00
|
|
|
/**
|
|
|
|
* @brief Unpin all maps associated with an eBPF object from a specified path.
|
|
|
|
*
|
|
|
|
* @param[in] obj Object to unpin maps of.
|
|
|
|
* @param[in] path Path from which to unpin the maps.
|
|
|
|
*
|
|
|
|
* @retval 0 The operation was successful.
|
|
|
|
* @retval <0 An error occured, and errno was set.
|
|
|
|
*
|
|
|
|
* @exception EINVAL An invalid argument was provided.
|
|
|
|
*
|
2022-11-17 00:06:14 +03:00
|
|
|
* @sa bpf_map__unpin
|
2021-09-07 20:51:18 +03:00
|
|
|
* @sa bpf_object__pin_maps
|
|
|
|
* @sa bpf_object__unpin
|
|
|
|
*/
|
|
|
|
int
|
|
|
|
bpf_object__unpin_maps(struct bpf_object* obj, const char* path);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Unpin all programs associated with an eBPF object from a specified path.
|
|
|
|
*
|
|
|
|
* @param[in] obj Object to unpin programs of.
|
|
|
|
* @param[in] path Path from which to unpin the programs.
|
|
|
|
*
|
|
|
|
* @retval 0 The operation was successful.
|
|
|
|
* @retval <0 An error occured, and errno was set.
|
|
|
|
*
|
|
|
|
* @exception EINVAL An invalid argument was provided.
|
|
|
|
*
|
|
|
|
* @sa bpf_program__unpin
|
2022-11-17 00:06:14 +03:00
|
|
|
* @sa bpf_object__pin_programs
|
2021-09-07 20:51:18 +03:00
|
|
|
* @sa bpf_object__unpin
|
|
|
|
*/
|
|
|
|
int
|
|
|
|
bpf_object__unpin_programs(struct bpf_object* obj, const char* path);
|
|
|
|
|
|
|
|
/** @} */
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @name Program-related functions
|
|
|
|
* @{
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Attach an eBPF program to a hook associated with the program's expected attach type.
|
|
|
|
*
|
|
|
|
* @param[in] prog The program to attach.
|
|
|
|
*
|
|
|
|
* @returns The link created. On error, returns NULL and sets errno.
|
|
|
|
*
|
|
|
|
* @sa bpf_link__destroy
|
|
|
|
* @sa bpf_program__get_expected_attach_type
|
|
|
|
* @sa bpf_program__set_expected_attach_type
|
|
|
|
* @sa ebpf_link_close
|
|
|
|
*/
|
|
|
|
struct bpf_link*
|
2022-02-09 00:21:19 +03:00
|
|
|
bpf_program__attach(const struct bpf_program* prog);
|
2021-09-07 20:51:18 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Attach an eBPF program to an XDP hook.
|
|
|
|
*
|
|
|
|
* @param[in] prog The program to attach.
|
|
|
|
* @param[in] ifindex The interface index to attach to.
|
|
|
|
*
|
|
|
|
* @returns The link created. On error, returns NULL and sets errno.
|
|
|
|
*
|
|
|
|
* @sa bpf_link__destroy
|
|
|
|
* @sa bpf_program__attach
|
|
|
|
* @sa ebpf_link_close
|
|
|
|
*/
|
|
|
|
struct bpf_link*
|
|
|
|
bpf_program__attach_xdp(struct bpf_program* prog, int ifindex);
|
|
|
|
|
2024-06-03 18:28:04 +03:00
|
|
|
/**
|
|
|
|
* @brief Get whether an eBPF program will be loaded when the object is loaded.
|
|
|
|
*
|
|
|
|
* @param[in] prog The program to check.
|
|
|
|
*
|
|
|
|
* @returns True if the program will be loaded, false if not.
|
|
|
|
*
|
|
|
|
* @sa bpf_object__load
|
|
|
|
* @sa bpf_object__load_xattr
|
|
|
|
* @sa bpf_program__set_autoload
|
|
|
|
*/
|
|
|
|
bool
|
|
|
|
bpf_program__autoload(const struct bpf_program* prog);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Set whether an eBPF program will be loaded when the object is loaded.
|
|
|
|
*
|
|
|
|
* @param[in] prog The program to update.
|
|
|
|
*
|
|
|
|
* @retval 0 The operation was successful.
|
|
|
|
* @retval <0 An error occured, and errno was set.
|
|
|
|
*
|
|
|
|
* @sa bpf_object__load
|
|
|
|
* @sa bpf_object__load_xattr
|
|
|
|
* @sa bpf_program__autoload
|
|
|
|
*/
|
|
|
|
int
|
|
|
|
bpf_program__set_autoload(struct bpf_program* prog, bool autoload);
|
|
|
|
|
2022-04-08 04:18:53 +03:00
|
|
|
/**
|
2022-08-08 03:21:23 +03:00
|
|
|
* @brief Attach an eBPF program to an attach point.
|
2022-04-08 04:18:53 +03:00
|
|
|
*
|
|
|
|
* @param[in] prog_fd File descriptor of the program to attach.
|
|
|
|
* @param[in] attachable_fd File descriptor corresponding to the attach point.
|
|
|
|
* @param[in] type Attach type.
|
|
|
|
* @param[in] flags Flags (currently 0).
|
|
|
|
*
|
|
|
|
* @retval 0 The operation was successful.
|
|
|
|
* @retval <0 An error occured, and errno was set.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
int
|
|
|
|
bpf_prog_attach(int prog_fd, int attachable_fd, enum bpf_attach_type type, unsigned int flags);
|
|
|
|
|
2022-08-08 03:21:23 +03:00
|
|
|
/**
|
|
|
|
* @brief Detach eBPF program(s) from an attach point.
|
|
|
|
*
|
|
|
|
* @param[in] attachable_fd File descriptor corresponding to the attach point.
|
|
|
|
* @param[in] type Attach type.
|
|
|
|
*
|
|
|
|
* @retval 0 The operation was successful.
|
|
|
|
* @retval <0 An error occured, and errno was set.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
int
|
|
|
|
bpf_prog_detach(int attachable_fd, enum bpf_attach_type type);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Detach an eBPF program from an attach point.
|
|
|
|
*
|
|
|
|
* @param[in] prog_fd File descriptor of the program to detach.
|
|
|
|
* @param[in] attachable_fd File descriptor corresponding to the attach point.
|
|
|
|
* @param[in] type Attach type.
|
|
|
|
*
|
|
|
|
* @retval 0 The operation was successful.
|
|
|
|
* @retval <0 An error occured, and errno was set.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
int
|
|
|
|
bpf_prog_detach2(int prog_fd, int attachable_fd, enum bpf_attach_type type);
|
|
|
|
|
2021-09-07 20:51:18 +03:00
|
|
|
/**
|
|
|
|
* @brief Get a file descriptor that refers to a program.
|
|
|
|
*
|
|
|
|
* @param[in] prog Program to get a file descriptor for.
|
|
|
|
*
|
|
|
|
* @returns File descriptor that refers to the program.
|
2022-05-13 02:21:16 +03:00
|
|
|
* The caller should not call _close() on the fd.
|
2021-09-07 20:51:18 +03:00
|
|
|
*/
|
|
|
|
int
|
|
|
|
bpf_program__fd(const struct bpf_program* prog);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Get the expected attach type for an eBPF program.
|
|
|
|
*
|
|
|
|
* @param[in] prog Program to check.
|
|
|
|
*
|
|
|
|
* @returns Expected attach type.
|
|
|
|
*
|
|
|
|
* @sa bpf_program__attach
|
|
|
|
* @sa bpf_program__set_expected_attach_type
|
|
|
|
*/
|
|
|
|
enum bpf_attach_type
|
|
|
|
bpf_program__get_expected_attach_type(const struct bpf_program* prog);
|
|
|
|
|
2021-09-24 05:32:09 +03:00
|
|
|
/**
|
|
|
|
* @brief Get the program type for an eBPF program.
|
|
|
|
*
|
|
|
|
* @param[in] prog Program to check.
|
|
|
|
*
|
|
|
|
* @returns Program type.
|
|
|
|
*
|
2022-05-09 20:11:48 +03:00
|
|
|
* @deprecated Use bpf_program__type() instead.
|
|
|
|
*
|
2021-09-24 05:32:09 +03:00
|
|
|
* @sa bpf_program__get_expected_attach_type
|
2022-05-09 20:11:48 +03:00
|
|
|
* @sa bpf_program__type
|
2021-09-24 05:32:09 +03:00
|
|
|
*/
|
|
|
|
enum bpf_prog_type
|
|
|
|
bpf_program__get_type(const struct bpf_program* prog);
|
|
|
|
|
2022-07-29 21:57:30 +03:00
|
|
|
/**
|
|
|
|
* @brief **bpf_program__insn_cnt()** returns number of `struct bpf_insn`'s
|
|
|
|
* that form specified BPF program.
|
|
|
|
*
|
|
|
|
* @param[in] prog BPF program for which to return number of BPF instructions
|
|
|
|
*
|
|
|
|
* @returns Number of instructions.
|
|
|
|
*/
|
|
|
|
size_t
|
|
|
|
bpf_program__insn_cnt(const struct bpf_program* prog);
|
|
|
|
|
2021-09-07 20:51:18 +03:00
|
|
|
/**
|
|
|
|
* @brief Get the function name of an eBPF program.
|
|
|
|
*
|
|
|
|
* @param[in] prog Program to check.
|
|
|
|
*
|
|
|
|
* @returns The name of the program, which is the name of the main
|
|
|
|
* function called when invoked.
|
|
|
|
*
|
|
|
|
* @sa bpf_object__find_program_by_name
|
|
|
|
*/
|
|
|
|
const char*
|
|
|
|
bpf_program__name(const struct bpf_program* prog);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Pin a program to a specified path.
|
|
|
|
*
|
|
|
|
* @param[in] prog Program to pin.
|
|
|
|
* @param[in] path Path to pin the program to.
|
|
|
|
*
|
|
|
|
* @retval 0 The operation was successful.
|
|
|
|
* @retval <0 An error occured, and errno was set.
|
|
|
|
*
|
|
|
|
* @exception EBUSY A pin path was previously specified.
|
|
|
|
* @exception EEXIST Something is already pinned to the specified path.
|
|
|
|
* @exception EINVAL An invalid argument was provided.
|
|
|
|
* @exception ENOMEM Out of memory.
|
|
|
|
*
|
|
|
|
* @sa bpf_object__pin
|
|
|
|
* @sa bpf_object__pin_programs
|
|
|
|
* @sa bpf_program__unpin
|
|
|
|
*/
|
|
|
|
int
|
|
|
|
bpf_program__pin(struct bpf_program* prog, const char* path);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Gets the ELF section name of an eBPF program, if any.
|
|
|
|
*
|
|
|
|
* @param[in] prog An eBPF program.
|
|
|
|
*
|
|
|
|
* @returns The ELF section name of an eBPF program, or NULL if none.
|
|
|
|
*/
|
|
|
|
const char*
|
|
|
|
bpf_program__section_name(const struct bpf_program* prog);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Set the expected attach type for an eBPF program.
|
|
|
|
*
|
|
|
|
* @param[in] prog Program to update.
|
|
|
|
* @param[in] type Attach type to set.
|
|
|
|
*
|
|
|
|
* @sa bpf_program__attach
|
|
|
|
* @sa bpf_program__get_expected_attach_type
|
2022-06-01 03:43:39 +03:00
|
|
|
*
|
|
|
|
* @retval 0 The operation was successful.
|
|
|
|
* @retval <0 An error occured, and errno was set.
|
2021-09-07 20:51:18 +03:00
|
|
|
*/
|
2022-06-01 03:43:39 +03:00
|
|
|
int
|
2021-09-07 20:51:18 +03:00
|
|
|
bpf_program__set_expected_attach_type(struct bpf_program* prog, enum bpf_attach_type type);
|
|
|
|
|
2021-09-24 05:32:09 +03:00
|
|
|
/**
|
|
|
|
* @brief Set the program type for an eBPF program.
|
|
|
|
*
|
|
|
|
* @param[in] prog Program to update.
|
|
|
|
* @param[in] type Program type to set.
|
|
|
|
*
|
|
|
|
* @sa bpf_program__set_expected_attach_type
|
2022-05-09 20:11:48 +03:00
|
|
|
* @sa bpf_program__type
|
2022-06-01 03:43:39 +03:00
|
|
|
*
|
|
|
|
* @retval 0 The operation was successful.
|
|
|
|
* @retval <0 An error occured, and errno was set.
|
2021-09-24 05:32:09 +03:00
|
|
|
*/
|
2022-06-01 03:43:39 +03:00
|
|
|
int
|
2021-09-24 05:32:09 +03:00
|
|
|
bpf_program__set_type(struct bpf_program* prog, enum bpf_prog_type type);
|
|
|
|
|
2022-05-09 20:11:48 +03:00
|
|
|
/**
|
|
|
|
* @brief Get the program type for an eBPF program.
|
|
|
|
*
|
|
|
|
* @param[in] prog Program to check.
|
|
|
|
*
|
|
|
|
* @returns Program type.
|
|
|
|
*
|
|
|
|
* @sa bpf_program__get_expected_attach_type
|
|
|
|
*/
|
|
|
|
enum bpf_prog_type
|
|
|
|
bpf_program__type(const struct bpf_program* prog);
|
|
|
|
|
2021-09-24 05:32:09 +03:00
|
|
|
/**
|
|
|
|
* @brief Unload a program.
|
|
|
|
*
|
|
|
|
* @param[in] prog Program to unload.
|
|
|
|
*
|
|
|
|
* @sa bpf_object__unload
|
|
|
|
* @sa bpf_prog_load
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
bpf_program__unload(struct bpf_program* prog);
|
|
|
|
|
2021-09-07 20:51:18 +03:00
|
|
|
/**
|
|
|
|
* @brief Unpin a program.
|
|
|
|
*
|
|
|
|
* @param[in] prog Program to unpin.
|
|
|
|
* @param[in] path Path from which to unpin the program.
|
|
|
|
*
|
|
|
|
* @retval 0 The operation was successful.
|
|
|
|
* @retval <0 An error occured, and errno was set.
|
|
|
|
*
|
|
|
|
* @exception EINVAL An invalid argument was provided.
|
|
|
|
* @exception ENOENT The program was not pinned.
|
|
|
|
*
|
|
|
|
* @sa bpf_object__unpin_programs
|
|
|
|
* @sa bpf_program__pin
|
|
|
|
*/
|
|
|
|
int
|
|
|
|
bpf_program__unpin(struct bpf_program* prog, const char* path);
|
|
|
|
|
2022-02-15 03:40:56 +03:00
|
|
|
/**
|
|
|
|
* @brief Attach an XDP program to a given interface.
|
|
|
|
*
|
|
|
|
* @param[in] ifindex The interface index to attach to, or -1 to detach.
|
|
|
|
* @param[in] prog_fd File descriptor of program to attach.
|
|
|
|
* @param[in] flags Flags. Use XDP_FLAGS_REPLACE to replace any program previously attached to
|
|
|
|
* the specified interface index.
|
|
|
|
* @param[in] opts Options (currently unused).
|
|
|
|
*
|
|
|
|
* @retval 0 The operation was successful.
|
|
|
|
* @retval <0 An error occured, and errno was set.
|
|
|
|
*
|
|
|
|
* @sa bpf_program__attach_xdp
|
|
|
|
* @sa bpf_xdp_detach
|
|
|
|
*/
|
|
|
|
int
|
|
|
|
bpf_xdp_attach(int ifindex, int prog_fd, __u32 flags, const struct bpf_xdp_attach_opts* opts);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Detach an XDP program from a given interface.
|
|
|
|
*
|
|
|
|
* @param[in] ifindex The interface index to detach from.
|
|
|
|
* @param[in] prog_fd File descriptor of program to detach.
|
|
|
|
* @param[in] flags Flags. Use XDP_FLAGS_REPLACE to detach any program previously attached to
|
|
|
|
* the specified interface index.
|
|
|
|
* @param[in] opts Options (currently unused).
|
|
|
|
*
|
|
|
|
* @retval 0 The operation was successful.
|
|
|
|
* @retval <0 An error occured, and errno was set.
|
|
|
|
*
|
|
|
|
* @sa bpf_link_detach
|
|
|
|
* @sa bpf_program__attach_xdp
|
|
|
|
* @sa bpf_xdp_attach
|
|
|
|
*/
|
|
|
|
int
|
|
|
|
bpf_xdp_detach(int ifindex, __u32 flags, const struct bpf_xdp_attach_opts* opts);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Get the XDP program id attached to a given interface index.
|
|
|
|
*
|
|
|
|
* @param[in] ifindex The interface index to query.
|
|
|
|
* @param[in] flags Flags (currently 0).
|
|
|
|
* @param[out] prog_id The ID of the program attached.
|
|
|
|
*
|
|
|
|
* @retval 0 The operation was successful.
|
|
|
|
* @retval <0 An error occured, and errno was set.
|
|
|
|
*
|
|
|
|
* @sa bpf_xdp_attach
|
|
|
|
*/
|
|
|
|
int
|
|
|
|
bpf_xdp_query_id(int ifindex, int flags, __u32* prog_id);
|
|
|
|
|
2022-07-29 21:57:30 +03:00
|
|
|
/**
|
|
|
|
* @brief **libbpf_attach_type_by_name()** converts the provided textual
|
|
|
|
* representation into an attach type value.
|
|
|
|
*
|
|
|
|
* @param[in] name The textual representation of an attach type.
|
|
|
|
* @param[out] attach_type Returns the attach type.
|
|
|
|
*
|
|
|
|
* @retval 0 The operation was successful.
|
|
|
|
* @retval <0 An error occured, and errno was set.
|
|
|
|
*/
|
|
|
|
int
|
|
|
|
libbpf_attach_type_by_name(const char* name, enum bpf_attach_type* attach_type);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief **libbpf_bpf_attach_type_str()** converts the provided attach type
|
|
|
|
* value into a textual representation.
|
|
|
|
*
|
|
|
|
* @param[in] t The attach type.
|
|
|
|
*
|
|
|
|
* @return Pointer to a static string identifying the attach type. NULL is
|
|
|
|
* returned for unknown **bpf_attach_type** values.
|
|
|
|
*/
|
|
|
|
const char*
|
|
|
|
libbpf_bpf_attach_type_str(enum bpf_attach_type t);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief **libbpf_bpf_prog_type_str()** converts the provided program type
|
|
|
|
* value into a textual representation.
|
|
|
|
*
|
|
|
|
* @param[in] t The program type.
|
|
|
|
*
|
|
|
|
* @return Pointer to a static string identifying the program type. NULL is
|
|
|
|
* returned for unknown **bpf_prog_type** values.
|
|
|
|
*/
|
|
|
|
const char*
|
|
|
|
libbpf_bpf_prog_type_str(enum bpf_prog_type t);
|
|
|
|
|
2021-09-15 22:08:18 +03:00
|
|
|
/**
|
|
|
|
* @brief Get a program type and expected attach type by name.
|
|
|
|
*
|
|
|
|
* @param[in] name Name, as if it were a section name in an ELF file.
|
|
|
|
* @param[out] prog_type Program type.
|
|
|
|
* @param[out] expected_attach_type Expected attach type.
|
|
|
|
*
|
|
|
|
* @retval 0 The operation was successful.
|
|
|
|
* @retval <0 An error occured, and errno was set.
|
|
|
|
*/
|
|
|
|
int
|
|
|
|
libbpf_prog_type_by_name(const char* name, enum bpf_prog_type* prog_type, enum bpf_attach_type* expected_attach_type);
|
|
|
|
|
2021-09-07 20:51:18 +03:00
|
|
|
/** @} */
|
|
|
|
|
2021-09-24 05:32:09 +03:00
|
|
|
/**
|
|
|
|
* @name System-related functions
|
|
|
|
* @{
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Get a negative error code based on errno and a possibly null pointer.
|
|
|
|
*
|
|
|
|
* @param[in] ptr Pointer that may be NULL.
|
|
|
|
*
|
|
|
|
* @returns Negative error code.
|
|
|
|
*/
|
|
|
|
long
|
|
|
|
libbpf_get_error(const void* ptr);
|
|
|
|
|
2022-07-29 21:57:30 +03:00
|
|
|
/**
|
|
|
|
* @brief Get an error message.
|
|
|
|
*
|
|
|
|
* @param[in] err Error number.
|
|
|
|
* @param[out] buf Pointer to buffer to write message into.
|
|
|
|
* @param[in] size Size of output buffer.
|
|
|
|
*
|
|
|
|
* @retval 0 The operation was successful.
|
|
|
|
* @retval <0 An error occured, and errno was set.
|
|
|
|
*/
|
|
|
|
int
|
|
|
|
libbpf_strerror(int err, char* buf, size_t size);
|
|
|
|
|
2021-09-24 05:32:09 +03:00
|
|
|
/**
|
|
|
|
* @brief Get the number of processors on the current system.
|
|
|
|
*
|
|
|
|
* @returns Number of processors.
|
|
|
|
*/
|
|
|
|
int
|
|
|
|
libbpf_num_possible_cpus(void);
|
|
|
|
|
2021-12-04 00:19:21 +03:00
|
|
|
/* Ring buffer APIs */
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Creates a new ring buffer manager.
|
|
|
|
*
|
|
|
|
* @param[in] map_fd File descriptor to ring buffer map.
|
|
|
|
* @param[in] sample_cb Pointer to ring buffer notification callback function.
|
|
|
|
* @param[in] ctx Pointer to sample_cb callback function.
|
|
|
|
* @param[in] opts Ring buffer options.
|
|
|
|
*
|
|
|
|
* @returns Pointer to ring buffer manager.
|
|
|
|
*/
|
|
|
|
struct ring_buffer*
|
|
|
|
ring_buffer__new(int map_fd, ring_buffer_sample_fn sample_cb, void* ctx, const struct ring_buffer_opts* opts);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Frees a new ring buffer manager.
|
|
|
|
*
|
|
|
|
* @param[in] rb Pointer to ring buffer to be freed.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
ring_buffer__free(struct ring_buffer* rb);
|
2021-09-24 05:32:09 +03:00
|
|
|
/** @} */
|
|
|
|
|
2021-09-07 20:51:18 +03:00
|
|
|
#else
|
2021-08-04 03:25:50 +03:00
|
|
|
#pragma warning(push)
|
|
|
|
#pragma warning(disable : 4200) // Zero-sized array in struct/union
|
2022-02-09 00:21:19 +03:00
|
|
|
#pragma warning(disable : 4201) // Zero-sized array in struct/union
|
2022-04-25 20:26:56 +03:00
|
|
|
#include "libbpf/src/libbpf.h"
|
2021-08-04 03:25:50 +03:00
|
|
|
#pragma warning(pop)
|
2021-09-07 20:51:18 +03:00
|
|
|
#endif
|
2022-07-29 21:57:30 +03:00
|
|
|
#include "libbpf_legacy.h"
|