btf.h 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  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. extern const struct file_operations btf_fops;
  10. void btf_put(struct btf *btf);
  11. int btf_new_fd(const union bpf_attr *attr);
  12. struct btf *btf_get_by_fd(int fd);
  13. int btf_get_info_by_fd(const struct btf *btf,
  14. const union bpf_attr *attr,
  15. union bpf_attr __user *uattr);
  16. /* Figure out the size of a type_id. If type_id is a modifier
  17. * (e.g. const), it will be resolved to find out the type with size.
  18. *
  19. * For example:
  20. * In describing "const void *", type_id is "const" and "const"
  21. * refers to "void *". The return type will be "void *".
  22. *
  23. * If type_id is a simple "int", then return type will be "int".
  24. *
  25. * @btf: struct btf object
  26. * @type_id: Find out the size of type_id. The type_id of the return
  27. * type is set to *type_id.
  28. * @ret_size: It can be NULL. If not NULL, the size of the return
  29. * type is set to *ret_size.
  30. * Return: The btf_type (resolved to another type with size info if needed).
  31. * NULL is returned if type_id itself does not have size info
  32. * (e.g. void) or it cannot be resolved to another type that
  33. * has size info.
  34. * *type_id and *ret_size will not be changed in the
  35. * NULL return case.
  36. */
  37. const struct btf_type *btf_type_id_size(const struct btf *btf,
  38. u32 *type_id,
  39. u32 *ret_size);
  40. void btf_type_seq_show(const struct btf *btf, u32 type_id, void *obj,
  41. struct seq_file *m);
  42. int btf_get_fd_by_id(u32 id);
  43. u32 btf_id(const struct btf *btf);
  44. #endif