1 // SPDX-License-Identifier: GPL-2.0
3 * queue_stack_maps.c: BPF queue and stack maps
5 * Copyright (c) 2018 Politecnico di Torino
8 #include <linux/list.h>
9 #include <linux/slab.h>
10 #include <linux/capability.h>
11 #include "percpu_freelist.h"
13 #define QUEUE_STACK_CREATE_FLAG_MASK \
14 (BPF_F_NUMA_NODE | BPF_F_ACCESS_MASK)
16 struct bpf_queue_stack {
20 u32 size; /* max_entries + 1 */
22 char elements[] __aligned(8);
25 static struct bpf_queue_stack *bpf_queue_stack(struct bpf_map *map)
27 return container_of(map, struct bpf_queue_stack, map);
30 static bool queue_stack_map_is_empty(struct bpf_queue_stack *qs)
32 return qs->head == qs->tail;
35 static bool queue_stack_map_is_full(struct bpf_queue_stack *qs)
37 u32 head = qs->head + 1;
39 if (unlikely(head >= qs->size))
42 return head == qs->tail;
45 /* Called from syscall */
46 static int queue_stack_map_alloc_check(union bpf_attr *attr)
51 /* check sanity of attributes */
52 if (attr->max_entries == 0 || attr->key_size != 0 ||
53 attr->value_size == 0 ||
54 attr->map_flags & ~QUEUE_STACK_CREATE_FLAG_MASK ||
55 !bpf_map_flags_access_ok(attr->map_flags))
58 if (attr->value_size > KMALLOC_MAX_SIZE)
59 /* if value_size is bigger, the user space won't be able to
60 * access the elements.
67 static struct bpf_map *queue_stack_map_alloc(union bpf_attr *attr)
69 int numa_node = bpf_map_attr_numa_node(attr);
70 struct bpf_queue_stack *qs;
73 size = (u64) attr->max_entries + 1;
74 queue_size = sizeof(*qs) + size * attr->value_size;
76 qs = bpf_map_area_alloc(queue_size, numa_node);
78 return ERR_PTR(-ENOMEM);
80 memset(qs, 0, sizeof(*qs));
82 bpf_map_init_from_attr(&qs->map, attr);
86 raw_spin_lock_init(&qs->lock);
91 /* Called when map->refcnt goes to zero, either from workqueue or from syscall */
92 static void queue_stack_map_free(struct bpf_map *map)
94 struct bpf_queue_stack *qs = bpf_queue_stack(map);
96 bpf_map_area_free(qs);
99 static int __queue_map_get(struct bpf_map *map, void *value, bool delete)
101 struct bpf_queue_stack *qs = bpf_queue_stack(map);
106 raw_spin_lock_irqsave(&qs->lock, flags);
108 if (queue_stack_map_is_empty(qs)) {
109 memset(value, 0, qs->map.value_size);
114 ptr = &qs->elements[qs->tail * qs->map.value_size];
115 memcpy(value, ptr, qs->map.value_size);
118 if (unlikely(++qs->tail >= qs->size))
123 raw_spin_unlock_irqrestore(&qs->lock, flags);
128 static int __stack_map_get(struct bpf_map *map, void *value, bool delete)
130 struct bpf_queue_stack *qs = bpf_queue_stack(map);
136 raw_spin_lock_irqsave(&qs->lock, flags);
138 if (queue_stack_map_is_empty(qs)) {
139 memset(value, 0, qs->map.value_size);
144 index = qs->head - 1;
145 if (unlikely(index >= qs->size))
146 index = qs->size - 1;
148 ptr = &qs->elements[index * qs->map.value_size];
149 memcpy(value, ptr, qs->map.value_size);
155 raw_spin_unlock_irqrestore(&qs->lock, flags);
159 /* Called from syscall or from eBPF program */
160 static int queue_map_peek_elem(struct bpf_map *map, void *value)
162 return __queue_map_get(map, value, false);
165 /* Called from syscall or from eBPF program */
166 static int stack_map_peek_elem(struct bpf_map *map, void *value)
168 return __stack_map_get(map, value, false);
171 /* Called from syscall or from eBPF program */
172 static int queue_map_pop_elem(struct bpf_map *map, void *value)
174 return __queue_map_get(map, value, true);
177 /* Called from syscall or from eBPF program */
178 static int stack_map_pop_elem(struct bpf_map *map, void *value)
180 return __stack_map_get(map, value, true);
183 /* Called from syscall or from eBPF program */
184 static int queue_stack_map_push_elem(struct bpf_map *map, void *value,
187 struct bpf_queue_stack *qs = bpf_queue_stack(map);
188 unsigned long irq_flags;
192 /* BPF_EXIST is used to force making room for a new element in case the
195 bool replace = (flags & BPF_EXIST);
197 /* Check supported flags for queue and stack maps */
198 if (flags & BPF_NOEXIST || flags > BPF_EXIST)
201 raw_spin_lock_irqsave(&qs->lock, irq_flags);
203 if (queue_stack_map_is_full(qs)) {
208 /* advance tail pointer to overwrite oldest element */
209 if (unlikely(++qs->tail >= qs->size))
213 dst = &qs->elements[qs->head * qs->map.value_size];
214 memcpy(dst, value, qs->map.value_size);
216 if (unlikely(++qs->head >= qs->size))
220 raw_spin_unlock_irqrestore(&qs->lock, irq_flags);
224 /* Called from syscall or from eBPF program */
225 static void *queue_stack_map_lookup_elem(struct bpf_map *map, void *key)
230 /* Called from syscall or from eBPF program */
231 static int queue_stack_map_update_elem(struct bpf_map *map, void *key,
232 void *value, u64 flags)
237 /* Called from syscall or from eBPF program */
238 static int queue_stack_map_delete_elem(struct bpf_map *map, void *key)
243 /* Called from syscall */
244 static int queue_stack_map_get_next_key(struct bpf_map *map, void *key,
250 static int queue_map_btf_id;
251 const struct bpf_map_ops queue_map_ops = {
252 .map_meta_equal = bpf_map_meta_equal,
253 .map_alloc_check = queue_stack_map_alloc_check,
254 .map_alloc = queue_stack_map_alloc,
255 .map_free = queue_stack_map_free,
256 .map_lookup_elem = queue_stack_map_lookup_elem,
257 .map_update_elem = queue_stack_map_update_elem,
258 .map_delete_elem = queue_stack_map_delete_elem,
259 .map_push_elem = queue_stack_map_push_elem,
260 .map_pop_elem = queue_map_pop_elem,
261 .map_peek_elem = queue_map_peek_elem,
262 .map_get_next_key = queue_stack_map_get_next_key,
263 .map_btf_name = "bpf_queue_stack",
264 .map_btf_id = &queue_map_btf_id,
267 static int stack_map_btf_id;
268 const struct bpf_map_ops stack_map_ops = {
269 .map_meta_equal = bpf_map_meta_equal,
270 .map_alloc_check = queue_stack_map_alloc_check,
271 .map_alloc = queue_stack_map_alloc,
272 .map_free = queue_stack_map_free,
273 .map_lookup_elem = queue_stack_map_lookup_elem,
274 .map_update_elem = queue_stack_map_update_elem,
275 .map_delete_elem = queue_stack_map_delete_elem,
276 .map_push_elem = queue_stack_map_push_elem,
277 .map_pop_elem = stack_map_pop_elem,
278 .map_peek_elem = stack_map_peek_elem,
279 .map_get_next_key = queue_stack_map_get_next_key,
280 .map_btf_name = "bpf_queue_stack",
281 .map_btf_id = &stack_map_btf_id,