aboutsummaryrefslogtreecommitdiffstats
path: root/kernel/bpf/arraymap.c
diff options
context:
space:
mode:
Diffstat (limited to 'kernel/bpf/arraymap.c')
-rw-r--r--kernel/bpf/arraymap.c26
1 files changed, 12 insertions, 14 deletions
diff --git a/kernel/bpf/arraymap.c b/kernel/bpf/arraymap.c
index f6ca3e712831..0c17aab3ce5f 100644
--- a/kernel/bpf/arraymap.c
+++ b/kernel/bpf/arraymap.c
@@ -358,27 +358,20 @@ static void array_map_seq_show_elem(struct bpf_map *map, void *key,
358 rcu_read_unlock(); 358 rcu_read_unlock();
359} 359}
360 360
361static int array_map_check_btf(const struct bpf_map *map, const struct btf *btf, 361static int array_map_check_btf(const struct bpf_map *map,
362 u32 btf_key_id, u32 btf_value_id) 362 const struct btf_type *key_type,
363 const struct btf_type *value_type)
363{ 364{
364 const struct btf_type *key_type, *value_type;
365 u32 key_size, value_size;
366 u32 int_data; 365 u32 int_data;
367 366
368 key_type = btf_type_id_size(btf, &btf_key_id, &key_size); 367 if (BTF_INFO_KIND(key_type->info) != BTF_KIND_INT)
369 if (!key_type || BTF_INFO_KIND(key_type->info) != BTF_KIND_INT)
370 return -EINVAL; 368 return -EINVAL;
371 369
372 int_data = *(u32 *)(key_type + 1); 370 int_data = *(u32 *)(key_type + 1);
373 /* bpf array can only take a u32 key. This check makes 371 /* bpf array can only take a u32 key. This check makes sure
374 * sure that the btf matches the attr used during map_create. 372 * that the btf matches the attr used during map_create.
375 */ 373 */
376 if (BTF_INT_BITS(int_data) != 32 || key_size != 4 || 374 if (BTF_INT_BITS(int_data) != 32 || BTF_INT_OFFSET(int_data))
377 BTF_INT_OFFSET(int_data))
378 return -EINVAL;
379
380 value_type = btf_type_id_size(btf, &btf_value_id, &value_size);
381 if (!value_type || value_size != map->value_size)
382 return -EINVAL; 375 return -EINVAL;
383 376
384 return 0; 377 return 0;
@@ -405,6 +398,7 @@ const struct bpf_map_ops percpu_array_map_ops = {
405 .map_lookup_elem = percpu_array_map_lookup_elem, 398 .map_lookup_elem = percpu_array_map_lookup_elem,
406 .map_update_elem = array_map_update_elem, 399 .map_update_elem = array_map_update_elem,
407 .map_delete_elem = array_map_delete_elem, 400 .map_delete_elem = array_map_delete_elem,
401 .map_check_btf = array_map_check_btf,
408}; 402};
409 403
410static int fd_array_map_alloc_check(union bpf_attr *attr) 404static int fd_array_map_alloc_check(union bpf_attr *attr)
@@ -546,6 +540,7 @@ const struct bpf_map_ops prog_array_map_ops = {
546 .map_fd_put_ptr = prog_fd_array_put_ptr, 540 .map_fd_put_ptr = prog_fd_array_put_ptr,
547 .map_fd_sys_lookup_elem = prog_fd_array_sys_lookup_elem, 541 .map_fd_sys_lookup_elem = prog_fd_array_sys_lookup_elem,
548 .map_release_uref = bpf_fd_array_map_clear, 542 .map_release_uref = bpf_fd_array_map_clear,
543 .map_check_btf = map_check_no_btf,
549}; 544};
550 545
551static struct bpf_event_entry *bpf_event_entry_gen(struct file *perf_file, 546static struct bpf_event_entry *bpf_event_entry_gen(struct file *perf_file,
@@ -634,6 +629,7 @@ const struct bpf_map_ops perf_event_array_map_ops = {
634 .map_fd_get_ptr = perf_event_fd_array_get_ptr, 629 .map_fd_get_ptr = perf_event_fd_array_get_ptr,
635 .map_fd_put_ptr = perf_event_fd_array_put_ptr, 630 .map_fd_put_ptr = perf_event_fd_array_put_ptr,
636 .map_release = perf_event_fd_array_release, 631 .map_release = perf_event_fd_array_release,
632 .map_check_btf = map_check_no_btf,
637}; 633};
638 634
639#ifdef CONFIG_CGROUPS 635#ifdef CONFIG_CGROUPS
@@ -665,6 +661,7 @@ const struct bpf_map_ops cgroup_array_map_ops = {
665 .map_delete_elem = fd_array_map_delete_elem, 661 .map_delete_elem = fd_array_map_delete_elem,
666 .map_fd_get_ptr = cgroup_fd_array_get_ptr, 662 .map_fd_get_ptr = cgroup_fd_array_get_ptr,
667 .map_fd_put_ptr = cgroup_fd_array_put_ptr, 663 .map_fd_put_ptr = cgroup_fd_array_put_ptr,
664 .map_check_btf = map_check_no_btf,
668}; 665};
669#endif 666#endif
670 667
@@ -749,4 +746,5 @@ const struct bpf_map_ops array_of_maps_map_ops = {
749 .map_fd_put_ptr = bpf_map_fd_put_ptr, 746 .map_fd_put_ptr = bpf_map_fd_put_ptr,
750 .map_fd_sys_lookup_elem = bpf_map_fd_sys_lookup_elem, 747 .map_fd_sys_lookup_elem = bpf_map_fd_sys_lookup_elem,
751 .map_gen_lookup = array_of_map_gen_lookup, 748 .map_gen_lookup = array_of_map_gen_lookup,
749 .map_check_btf = map_check_no_btf,
752}; 750};