btf.h 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. /* SPDX-License-Identifier: GPL-2.0 */
  2. /* Copyright (c) 2018 Facebook */
  3. #ifndef _LINUX_BTF_H
  4. #define _LINUX_BTF_H 1
  5. #include <linux/types.h>
  6. struct btf;
  7. struct btf_type;
  8. union bpf_attr;
  9. void btf_put(struct btf *btf);
  10. int btf_new_fd(const union bpf_attr *attr);
  11. struct btf *btf_get_by_fd(int fd);
  12. /* Figure out the size of a type_id. If type_id is a modifier
  13. * (e.g. const), it will be resolved to find out the type with size.
  14. *
  15. * For example:
  16. * In describing "const void *", type_id is "const" and "const"
  17. * refers to "void *". The return type will be "void *".
  18. *
  19. * If type_id is a simple "int", then return type will be "int".
  20. *
  21. * @btf: struct btf object
  22. * @type_id: Find out the size of type_id. The type_id of the return
  23. * type is set to *type_id.
  24. * @ret_size: It can be NULL. If not NULL, the size of the return
  25. * type is set to *ret_size.
  26. * Return: The btf_type (resolved to another type with size info if needed).
  27. * NULL is returned if type_id itself does not have size info
  28. * (e.g. void) or it cannot be resolved to another type that
  29. * has size info.
  30. * *type_id and *ret_size will not be changed in the
  31. * NULL return case.
  32. */
  33. const struct btf_type *btf_type_id_size(const struct btf *btf,
  34. u32 *type_id,
  35. u32 *ret_size);
  36. void btf_type_seq_show(const struct btf *btf, u32 type_id, void *obj,
  37. struct seq_file *m);
  38. #endif