map_in_map.c 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116
  1. /* Copyright (c) 2017 Facebook
  2. *
  3. * This program is free software; you can redistribute it and/or
  4. * modify it under the terms of version 2 of the GNU General Public
  5. * License as published by the Free Software Foundation.
  6. */
  7. #include <linux/slab.h>
  8. #include <linux/bpf.h>
  9. #include "map_in_map.h"
  10. struct bpf_map *bpf_map_meta_alloc(int inner_map_ufd)
  11. {
  12. struct bpf_map *inner_map, *inner_map_meta;
  13. u32 inner_map_meta_size;
  14. struct fd f;
  15. f = fdget(inner_map_ufd);
  16. inner_map = __bpf_map_get(f);
  17. if (IS_ERR(inner_map))
  18. return inner_map;
  19. /* prog_array->owner_prog_type and owner_jited
  20. * is a runtime binding. Doing static check alone
  21. * in the verifier is not enough.
  22. */
  23. if (inner_map->map_type == BPF_MAP_TYPE_PROG_ARRAY) {
  24. fdput(f);
  25. return ERR_PTR(-ENOTSUPP);
  26. }
  27. /* Does not support >1 level map-in-map */
  28. if (inner_map->inner_map_meta) {
  29. fdput(f);
  30. return ERR_PTR(-EINVAL);
  31. }
  32. inner_map_meta_size = sizeof(*inner_map_meta);
  33. /* In some cases verifier needs to access beyond just base map. */
  34. if (inner_map->ops == &array_map_ops)
  35. inner_map_meta_size = sizeof(struct bpf_array);
  36. inner_map_meta = kzalloc(inner_map_meta_size, GFP_USER);
  37. if (!inner_map_meta) {
  38. fdput(f);
  39. return ERR_PTR(-ENOMEM);
  40. }
  41. inner_map_meta->map_type = inner_map->map_type;
  42. inner_map_meta->key_size = inner_map->key_size;
  43. inner_map_meta->value_size = inner_map->value_size;
  44. inner_map_meta->map_flags = inner_map->map_flags;
  45. inner_map_meta->max_entries = inner_map->max_entries;
  46. /* Misc members not needed in bpf_map_meta_equal() check. */
  47. inner_map_meta->ops = inner_map->ops;
  48. if (inner_map->ops == &array_map_ops) {
  49. inner_map_meta->unpriv_array = inner_map->unpriv_array;
  50. container_of(inner_map_meta, struct bpf_array, map)->index_mask =
  51. container_of(inner_map, struct bpf_array, map)->index_mask;
  52. }
  53. fdput(f);
  54. return inner_map_meta;
  55. }
  56. void bpf_map_meta_free(struct bpf_map *map_meta)
  57. {
  58. kfree(map_meta);
  59. }
  60. bool bpf_map_meta_equal(const struct bpf_map *meta0,
  61. const struct bpf_map *meta1)
  62. {
  63. /* No need to compare ops because it is covered by map_type */
  64. return meta0->map_type == meta1->map_type &&
  65. meta0->key_size == meta1->key_size &&
  66. meta0->value_size == meta1->value_size &&
  67. meta0->map_flags == meta1->map_flags &&
  68. meta0->max_entries == meta1->max_entries;
  69. }
  70. void *bpf_map_fd_get_ptr(struct bpf_map *map,
  71. struct file *map_file /* not used */,
  72. int ufd)
  73. {
  74. struct bpf_map *inner_map;
  75. struct fd f;
  76. f = fdget(ufd);
  77. inner_map = __bpf_map_get(f);
  78. if (IS_ERR(inner_map))
  79. return inner_map;
  80. if (bpf_map_meta_equal(map->inner_map_meta, inner_map))
  81. inner_map = bpf_map_inc(inner_map, false);
  82. else
  83. inner_map = ERR_PTR(-EINVAL);
  84. fdput(f);
  85. return inner_map;
  86. }
  87. void bpf_map_fd_put_ptr(void *ptr)
  88. {
  89. /* ptr->ops->map_free() has to go through one
  90. * rcu grace period by itself.
  91. */
  92. bpf_map_put(ptr);
  93. }
  94. u32 bpf_map_fd_sys_lookup_elem(void *ptr)
  95. {
  96. return ((struct bpf_map *)ptr)->id;
  97. }