blob: 6c530a5e560a4a8945149355cc1c63c788e5fc80 [file] [log] [blame]
Thomas Gleixner5b497af2019-05-29 07:18:09 -07001// SPDX-License-Identifier: GPL-2.0-only
Alexei Starovoitov0f8e4bd2014-11-13 17:36:45 -08002/* Copyright (c) 2011-2014 PLUMgrid, http://plumgrid.com
Alexei Starovoitov6c905982016-03-07 21:57:15 -08003 * Copyright (c) 2016 Facebook
Alexei Starovoitov0f8e4bd2014-11-13 17:36:45 -08004 */
5#include <linux/bpf.h>
Yonghong Song699c86d2018-08-09 08:55:20 -07006#include <linux/btf.h>
Alexei Starovoitov0f8e4bd2014-11-13 17:36:45 -08007#include <linux/jhash.h>
8#include <linux/filter.h>
Alexei Starovoitov4fe84352017-03-07 20:00:13 -08009#include <linux/rculist_nulls.h>
Daniel Borkmannc0203472018-08-22 23:49:37 +020010#include <linux/random.h>
Yonghong Song699c86d2018-08-09 08:55:20 -070011#include <uapi/linux/btf.h>
Alexei Starovoitov1e6c62a2020-08-27 15:01:11 -070012#include <linux/rcupdate_trace.h>
Menglong Dongc317ab72022-04-25 21:32:47 +080013#include <linux/btf_ids.h>
Alexei Starovoitov6c905982016-03-07 21:57:15 -080014#include "percpu_freelist.h"
Martin KaFai Lau29ba7322016-11-11 10:55:09 -080015#include "bpf_lru_list.h"
Martin KaFai Laubcc6b1b2017-03-22 10:00:34 -070016#include "map_in_map.h"
Alexei Starovoitov0f8e4bd2014-11-13 17:36:45 -080017
Chenbo Feng6e71b042017-10-18 13:00:22 -070018#define HTAB_CREATE_FLAG_MASK \
19 (BPF_F_NO_PREALLOC | BPF_F_NO_COMMON_LRU | BPF_F_NUMA_NODE | \
Daniel Borkmann591fe982019-04-09 23:20:05 +020020 BPF_F_ACCESS_MASK | BPF_F_ZERO_SEED)
Martin KaFai Lau96eabe72017-08-18 11:28:00 -070021
Yonghong Song05799632020-01-15 10:43:04 -080022#define BATCH_OPS(_name) \
23 .map_lookup_batch = \
24 _name##_map_lookup_batch, \
25 .map_lookup_and_delete_batch = \
26 _name##_map_lookup_and_delete_batch, \
27 .map_update_batch = \
28 generic_map_update_batch, \
29 .map_delete_batch = \
30 generic_map_delete_batch
31
Thomas Gleixnerdbca1512020-02-24 15:01:34 +010032/*
33 * The bucket lock has two protection scopes:
34 *
Liu xuzhi6bd45f22021-03-11 04:31:03 -080035 * 1) Serializing concurrent operations from BPF programs on different
Thomas Gleixnerdbca1512020-02-24 15:01:34 +010036 * CPUs
37 *
38 * 2) Serializing concurrent operations from BPF programs and sys_bpf()
39 *
40 * BPF programs can execute in any context including perf, kprobes and
41 * tracing. As there are almost no limits where perf, kprobes and tracing
42 * can be invoked from the lock operations need to be protected against
43 * deadlocks. Deadlocks can be caused by recursion and by an invocation in
44 * the lock held section when functions which acquire this lock are invoked
45 * from sys_bpf(). BPF recursion is prevented by incrementing the per CPU
46 * variable bpf_prog_active, which prevents BPF programs attached to perf
47 * events, kprobes and tracing to be invoked before the prior invocation
48 * from one of these contexts completed. sys_bpf() uses the same mechanism
49 * by pinning the task to the current CPU and incrementing the recursion
Zhen Lei8fb33b62021-05-25 10:56:59 +080050 * protection across the map operation.
Thomas Gleixner7f805d12020-02-24 15:01:51 +010051 *
52 * This has subtle implications on PREEMPT_RT. PREEMPT_RT forbids certain
53 * operations like memory allocations (even with GFP_ATOMIC) from atomic
54 * contexts. This is required because even with GFP_ATOMIC the memory
Zhen Lei8fb33b62021-05-25 10:56:59 +080055 * allocator calls into code paths which acquire locks with long held lock
Thomas Gleixner7f805d12020-02-24 15:01:51 +010056 * sections. To ensure the deterministic behaviour these locks are regular
57 * spinlocks, which are converted to 'sleepable' spinlocks on RT. The only
58 * true atomic contexts on an RT kernel are the low level hardware
59 * handling, scheduling, low level interrupt handling, NMIs etc. None of
60 * these contexts should ever do memory allocations.
61 *
62 * As regular device interrupt handlers and soft interrupts are forced into
63 * thread context, the existing code which does
Yafang Shaoace2bee832022-07-09 15:44:56 +000064 * spin_lock*(); alloc(GFP_ATOMIC); spin_unlock*();
Thomas Gleixner7f805d12020-02-24 15:01:51 +010065 * just works.
66 *
67 * In theory the BPF locks could be converted to regular spinlocks as well,
68 * but the bucket locks and percpu_freelist locks can be taken from
69 * arbitrary contexts (perf, kprobes, tracepoints) which are required to be
70 * atomic contexts even on RT. These mechanisms require preallocated maps,
71 * so there is no need to invoke memory allocations within the lock held
72 * sections.
73 *
74 * BPF maps which need dynamic allocation are only used from (forced)
75 * thread context on RT and can therefore use regular spinlocks which in
76 * turn allows to invoke memory allocations from the lock held section.
77 *
78 * On a non RT kernel this distinction is neither possible nor required.
79 * spinlock maps to raw_spinlock and the extra code is optimized out by the
80 * compiler.
Thomas Gleixnerdbca1512020-02-24 15:01:34 +010081 */
tom.leiming@gmail.com688ecfe2015-12-29 22:40:27 +080082struct bucket {
Alexei Starovoitov4fe84352017-03-07 20:00:13 -080083 struct hlist_nulls_head head;
Thomas Gleixner7f805d12020-02-24 15:01:51 +010084 union {
85 raw_spinlock_t raw_lock;
86 spinlock_t lock;
87 };
tom.leiming@gmail.com688ecfe2015-12-29 22:40:27 +080088};
89
Song Liu20b6cc32020-10-29 00:19:25 -070090#define HASHTAB_MAP_LOCK_COUNT 8
91#define HASHTAB_MAP_LOCK_MASK (HASHTAB_MAP_LOCK_COUNT - 1)
92
Alexei Starovoitov0f8e4bd2014-11-13 17:36:45 -080093struct bpf_htab {
94 struct bpf_map map;
tom.leiming@gmail.com688ecfe2015-12-29 22:40:27 +080095 struct bucket *buckets;
Alexei Starovoitov6c905982016-03-07 21:57:15 -080096 void *elems;
Martin KaFai Lau29ba7322016-11-11 10:55:09 -080097 union {
98 struct pcpu_freelist freelist;
99 struct bpf_lru lru;
100 };
Alexei Starovoitov8c290e62017-03-21 19:05:04 -0700101 struct htab_elem *__percpu *extra_elems;
tom.leiming@gmail.com6591f1e2015-12-29 22:40:25 +0800102 atomic_t count; /* number of elements in this hashtable */
Alexei Starovoitov0f8e4bd2014-11-13 17:36:45 -0800103 u32 n_buckets; /* number of hash buckets */
104 u32 elem_size; /* size of each element in bytes */
Daniel Borkmannc0203472018-08-22 23:49:37 +0200105 u32 hashrnd;
Song Liuc50eb512020-10-29 00:19:24 -0700106 struct lock_class_key lockdep_key;
Song Liu20b6cc32020-10-29 00:19:25 -0700107 int __percpu *map_locked[HASHTAB_MAP_LOCK_COUNT];
Alexei Starovoitov0f8e4bd2014-11-13 17:36:45 -0800108};
109
110/* each htab element is struct htab_elem + key + value */
111struct htab_elem {
Alexei Starovoitov824bd0c2016-02-01 22:39:53 -0800112 union {
Alexei Starovoitov4fe84352017-03-07 20:00:13 -0800113 struct hlist_nulls_node hash_node;
Alexei Starovoitov9f691542017-03-07 20:00:12 -0800114 struct {
115 void *padding;
116 union {
117 struct bpf_htab *htab;
118 struct pcpu_freelist_node fnode;
Yonghong Songb9aff382020-02-19 15:47:57 -0800119 struct htab_elem *batch_flink;
Alexei Starovoitov9f691542017-03-07 20:00:12 -0800120 };
121 };
Alexei Starovoitov824bd0c2016-02-01 22:39:53 -0800122 };
Alexei Starovoitova6ed3ea2016-08-05 14:01:27 -0700123 union {
124 struct rcu_head rcu;
Martin KaFai Lau29ba7322016-11-11 10:55:09 -0800125 struct bpf_lru_node lru_node;
Alexei Starovoitova6ed3ea2016-08-05 14:01:27 -0700126 };
Alexei Starovoitov6c905982016-03-07 21:57:15 -0800127 u32 hash;
Gustavo A. R. Silvad7f10df2020-02-26 18:17:44 -0600128 char key[] __aligned(8);
Alexei Starovoitov0f8e4bd2014-11-13 17:36:45 -0800129};
130
Thomas Gleixner7f805d12020-02-24 15:01:51 +0100131static inline bool htab_is_prealloc(const struct bpf_htab *htab)
132{
133 return !(htab->map.map_flags & BPF_F_NO_PREALLOC);
134}
135
136static inline bool htab_use_raw_lock(const struct bpf_htab *htab)
137{
138 return (!IS_ENABLED(CONFIG_PREEMPT_RT) || htab_is_prealloc(htab));
139}
140
Thomas Gleixnerd01f9b12020-02-24 15:01:50 +0100141static void htab_init_buckets(struct bpf_htab *htab)
142{
Takshak Chahande9263ddd2022-05-10 01:22:20 -0700143 unsigned int i;
Thomas Gleixnerd01f9b12020-02-24 15:01:50 +0100144
145 for (i = 0; i < htab->n_buckets; i++) {
146 INIT_HLIST_NULLS_HEAD(&htab->buckets[i].head, i);
Song Liuc50eb512020-10-29 00:19:24 -0700147 if (htab_use_raw_lock(htab)) {
Thomas Gleixner7f805d12020-02-24 15:01:51 +0100148 raw_spin_lock_init(&htab->buckets[i].raw_lock);
Song Liuc50eb512020-10-29 00:19:24 -0700149 lockdep_set_class(&htab->buckets[i].raw_lock,
150 &htab->lockdep_key);
151 } else {
Thomas Gleixner7f805d12020-02-24 15:01:51 +0100152 spin_lock_init(&htab->buckets[i].lock);
Song Liuc50eb512020-10-29 00:19:24 -0700153 lockdep_set_class(&htab->buckets[i].lock,
154 &htab->lockdep_key);
155 }
Eric Dumazete7e51802020-12-21 11:25:06 -0800156 cond_resched();
Thomas Gleixnerd01f9b12020-02-24 15:01:50 +0100157 }
158}
159
Song Liu20b6cc32020-10-29 00:19:25 -0700160static inline int htab_lock_bucket(const struct bpf_htab *htab,
161 struct bucket *b, u32 hash,
162 unsigned long *pflags)
Thomas Gleixnerd01f9b12020-02-24 15:01:50 +0100163{
164 unsigned long flags;
165
Song Liu20b6cc32020-10-29 00:19:25 -0700166 hash = hash & HASHTAB_MAP_LOCK_MASK;
167
168 migrate_disable();
169 if (unlikely(__this_cpu_inc_return(*(htab->map_locked[hash])) != 1)) {
170 __this_cpu_dec(*(htab->map_locked[hash]));
171 migrate_enable();
172 return -EBUSY;
173 }
174
Thomas Gleixner7f805d12020-02-24 15:01:51 +0100175 if (htab_use_raw_lock(htab))
176 raw_spin_lock_irqsave(&b->raw_lock, flags);
177 else
178 spin_lock_irqsave(&b->lock, flags);
Song Liu20b6cc32020-10-29 00:19:25 -0700179 *pflags = flags;
180
181 return 0;
Thomas Gleixnerd01f9b12020-02-24 15:01:50 +0100182}
183
184static inline void htab_unlock_bucket(const struct bpf_htab *htab,
Song Liu20b6cc32020-10-29 00:19:25 -0700185 struct bucket *b, u32 hash,
Thomas Gleixnerd01f9b12020-02-24 15:01:50 +0100186 unsigned long flags)
187{
Song Liu20b6cc32020-10-29 00:19:25 -0700188 hash = hash & HASHTAB_MAP_LOCK_MASK;
Thomas Gleixner7f805d12020-02-24 15:01:51 +0100189 if (htab_use_raw_lock(htab))
190 raw_spin_unlock_irqrestore(&b->raw_lock, flags);
191 else
192 spin_unlock_irqrestore(&b->lock, flags);
Song Liu20b6cc32020-10-29 00:19:25 -0700193 __this_cpu_dec(*(htab->map_locked[hash]));
194 migrate_enable();
Thomas Gleixnerd01f9b12020-02-24 15:01:50 +0100195}
196
Martin KaFai Lau29ba7322016-11-11 10:55:09 -0800197static bool htab_lru_map_delete_node(void *arg, struct bpf_lru_node *node);
198
199static bool htab_is_lru(const struct bpf_htab *htab)
200{
Martin KaFai Lau8f844932016-11-11 10:55:10 -0800201 return htab->map.map_type == BPF_MAP_TYPE_LRU_HASH ||
202 htab->map.map_type == BPF_MAP_TYPE_LRU_PERCPU_HASH;
203}
204
205static bool htab_is_percpu(const struct bpf_htab *htab)
206{
207 return htab->map.map_type == BPF_MAP_TYPE_PERCPU_HASH ||
208 htab->map.map_type == BPF_MAP_TYPE_LRU_PERCPU_HASH;
Martin KaFai Lau29ba7322016-11-11 10:55:09 -0800209}
210
Alexei Starovoitov6c905982016-03-07 21:57:15 -0800211static inline void htab_elem_set_ptr(struct htab_elem *l, u32 key_size,
212 void __percpu *pptr)
213{
214 *(void __percpu **)(l->key + key_size) = pptr;
215}
216
217static inline void __percpu *htab_elem_get_ptr(struct htab_elem *l, u32 key_size)
218{
219 return *(void __percpu **)(l->key + key_size);
220}
221
Martin KaFai Laubcc6b1b2017-03-22 10:00:34 -0700222static void *fd_htab_map_get_ptr(const struct bpf_map *map, struct htab_elem *l)
223{
224 return *(void **)(l->key + roundup(map->key_size, 8));
225}
226
Alexei Starovoitov6c905982016-03-07 21:57:15 -0800227static struct htab_elem *get_htab_elem(struct bpf_htab *htab, int i)
228{
Eric Dumazete1868b9e2020-12-07 10:28:21 -0800229 return (struct htab_elem *) (htab->elems + i * (u64)htab->elem_size);
Alexei Starovoitov6c905982016-03-07 21:57:15 -0800230}
231
Alexei Starovoitov68134662021-07-14 17:54:10 -0700232static bool htab_has_extra_elems(struct bpf_htab *htab)
233{
234 return !htab_is_percpu(htab) && !htab_is_lru(htab);
235}
236
237static void htab_free_prealloced_timers(struct bpf_htab *htab)
238{
239 u32 num_entries = htab->map.max_entries;
240 int i;
241
Kumar Kartikeya Dwivedi14a324f2022-04-25 03:18:55 +0530242 if (!map_value_has_timer(&htab->map))
Alexei Starovoitov68134662021-07-14 17:54:10 -0700243 return;
244 if (htab_has_extra_elems(htab))
245 num_entries += num_possible_cpus();
246
247 for (i = 0; i < num_entries; i++) {
248 struct htab_elem *elem;
249
250 elem = get_htab_elem(htab, i);
251 bpf_timer_cancel_and_free(elem->key +
252 round_up(htab->map.key_size, 8) +
253 htab->map.timer_off);
254 cond_resched();
255 }
256}
257
Kumar Kartikeya Dwivedi14a324f2022-04-25 03:18:55 +0530258static void htab_free_prealloced_kptrs(struct bpf_htab *htab)
259{
260 u32 num_entries = htab->map.max_entries;
261 int i;
262
263 if (!map_value_has_kptrs(&htab->map))
264 return;
265 if (htab_has_extra_elems(htab))
266 num_entries += num_possible_cpus();
267
268 for (i = 0; i < num_entries; i++) {
269 struct htab_elem *elem;
270
271 elem = get_htab_elem(htab, i);
272 bpf_map_free_kptrs(&htab->map, elem->key + round_up(htab->map.key_size, 8));
273 cond_resched();
274 }
275}
276
Alexei Starovoitov6c905982016-03-07 21:57:15 -0800277static void htab_free_elems(struct bpf_htab *htab)
278{
279 int i;
280
Martin KaFai Lau8f844932016-11-11 10:55:10 -0800281 if (!htab_is_percpu(htab))
Alexei Starovoitov6c905982016-03-07 21:57:15 -0800282 goto free_elems;
283
284 for (i = 0; i < htab->map.max_entries; i++) {
285 void __percpu *pptr;
286
287 pptr = htab_elem_get_ptr(get_htab_elem(htab, i),
288 htab->map.key_size);
289 free_percpu(pptr);
Eric Dumazet9147efc2017-12-12 14:22:39 -0800290 cond_resched();
Alexei Starovoitov6c905982016-03-07 21:57:15 -0800291 }
292free_elems:
Daniel Borkmannd407bd22017-01-18 15:14:17 +0100293 bpf_map_area_free(htab->elems);
Alexei Starovoitov6c905982016-03-07 21:57:15 -0800294}
295
Yonghong Songb9aff382020-02-19 15:47:57 -0800296/* The LRU list has a lock (lru_lock). Each htab bucket has a lock
297 * (bucket_lock). If both locks need to be acquired together, the lock
298 * order is always lru_lock -> bucket_lock and this only happens in
299 * bpf_lru_list.c logic. For example, certain code path of
300 * bpf_lru_pop_free(), which is called by function prealloc_lru_pop(),
301 * will acquire lru_lock first followed by acquiring bucket_lock.
302 *
303 * In hashtab.c, to avoid deadlock, lock acquisition of
304 * bucket_lock followed by lru_lock is not allowed. In such cases,
305 * bucket_lock needs to be released first before acquiring lru_lock.
306 */
Martin KaFai Lau29ba7322016-11-11 10:55:09 -0800307static struct htab_elem *prealloc_lru_pop(struct bpf_htab *htab, void *key,
308 u32 hash)
309{
310 struct bpf_lru_node *node = bpf_lru_pop_free(&htab->lru, hash);
311 struct htab_elem *l;
312
313 if (node) {
314 l = container_of(node, struct htab_elem, lru_node);
Kumar Kartikeya Dwivedi275c30b2022-08-09 23:30:32 +0200315 memcpy(l->key, key, htab->map.key_size);
Martin KaFai Lau29ba7322016-11-11 10:55:09 -0800316 return l;
317 }
318
319 return NULL;
320}
321
322static int prealloc_init(struct bpf_htab *htab)
Alexei Starovoitov6c905982016-03-07 21:57:15 -0800323{
Alexei Starovoitov8c290e62017-03-21 19:05:04 -0700324 u32 num_entries = htab->map.max_entries;
Alexei Starovoitov6c905982016-03-07 21:57:15 -0800325 int err = -ENOMEM, i;
326
Alexei Starovoitov68134662021-07-14 17:54:10 -0700327 if (htab_has_extra_elems(htab))
Alexei Starovoitov8c290e62017-03-21 19:05:04 -0700328 num_entries += num_possible_cpus();
329
Eric Dumazete1868b9e2020-12-07 10:28:21 -0800330 htab->elems = bpf_map_area_alloc((u64)htab->elem_size * num_entries,
Martin KaFai Lau96eabe72017-08-18 11:28:00 -0700331 htab->map.numa_node);
Alexei Starovoitov6c905982016-03-07 21:57:15 -0800332 if (!htab->elems)
333 return -ENOMEM;
334
Martin KaFai Lau8f844932016-11-11 10:55:10 -0800335 if (!htab_is_percpu(htab))
Alexei Starovoitov6c905982016-03-07 21:57:15 -0800336 goto skip_percpu_elems;
337
Alexei Starovoitov8c290e62017-03-21 19:05:04 -0700338 for (i = 0; i < num_entries; i++) {
Alexei Starovoitov6c905982016-03-07 21:57:15 -0800339 u32 size = round_up(htab->map.value_size, 8);
340 void __percpu *pptr;
341
Roman Gushchin88145682020-12-01 13:58:38 -0800342 pptr = bpf_map_alloc_percpu(&htab->map, size, 8,
343 GFP_USER | __GFP_NOWARN);
Alexei Starovoitov6c905982016-03-07 21:57:15 -0800344 if (!pptr)
345 goto free_elems;
346 htab_elem_set_ptr(get_htab_elem(htab, i), htab->map.key_size,
347 pptr);
Eric Dumazet9147efc2017-12-12 14:22:39 -0800348 cond_resched();
Alexei Starovoitov6c905982016-03-07 21:57:15 -0800349 }
350
351skip_percpu_elems:
Martin KaFai Lau29ba7322016-11-11 10:55:09 -0800352 if (htab_is_lru(htab))
353 err = bpf_lru_init(&htab->lru,
354 htab->map.map_flags & BPF_F_NO_COMMON_LRU,
355 offsetof(struct htab_elem, hash) -
356 offsetof(struct htab_elem, lru_node),
357 htab_lru_map_delete_node,
358 htab);
359 else
360 err = pcpu_freelist_init(&htab->freelist);
361
Alexei Starovoitov6c905982016-03-07 21:57:15 -0800362 if (err)
363 goto free_elems;
364
Martin KaFai Lau29ba7322016-11-11 10:55:09 -0800365 if (htab_is_lru(htab))
366 bpf_lru_populate(&htab->lru, htab->elems,
367 offsetof(struct htab_elem, lru_node),
Alexei Starovoitov8c290e62017-03-21 19:05:04 -0700368 htab->elem_size, num_entries);
Martin KaFai Lau29ba7322016-11-11 10:55:09 -0800369 else
Alexei Starovoitov9f691542017-03-07 20:00:12 -0800370 pcpu_freelist_populate(&htab->freelist,
371 htab->elems + offsetof(struct htab_elem, fnode),
Alexei Starovoitov8c290e62017-03-21 19:05:04 -0700372 htab->elem_size, num_entries);
Martin KaFai Lau29ba7322016-11-11 10:55:09 -0800373
Alexei Starovoitov6c905982016-03-07 21:57:15 -0800374 return 0;
375
376free_elems:
377 htab_free_elems(htab);
378 return err;
379}
380
Martin KaFai Lau29ba7322016-11-11 10:55:09 -0800381static void prealloc_destroy(struct bpf_htab *htab)
382{
383 htab_free_elems(htab);
384
385 if (htab_is_lru(htab))
386 bpf_lru_destroy(&htab->lru);
387 else
388 pcpu_freelist_destroy(&htab->freelist);
389}
390
Alexei Starovoitova6ed3ea2016-08-05 14:01:27 -0700391static int alloc_extra_elems(struct bpf_htab *htab)
392{
Alexei Starovoitov8c290e62017-03-21 19:05:04 -0700393 struct htab_elem *__percpu *pptr, *l_new;
394 struct pcpu_freelist_node *l;
Alexei Starovoitova6ed3ea2016-08-05 14:01:27 -0700395 int cpu;
396
Roman Gushchin88145682020-12-01 13:58:38 -0800397 pptr = bpf_map_alloc_percpu(&htab->map, sizeof(struct htab_elem *), 8,
398 GFP_USER | __GFP_NOWARN);
Alexei Starovoitova6ed3ea2016-08-05 14:01:27 -0700399 if (!pptr)
400 return -ENOMEM;
401
402 for_each_possible_cpu(cpu) {
Alexei Starovoitov8c290e62017-03-21 19:05:04 -0700403 l = pcpu_freelist_pop(&htab->freelist);
404 /* pop will succeed, since prealloc_init()
405 * preallocated extra num_possible_cpus elements
406 */
407 l_new = container_of(l, struct htab_elem, fnode);
408 *per_cpu_ptr(pptr, cpu) = l_new;
Alexei Starovoitova6ed3ea2016-08-05 14:01:27 -0700409 }
410 htab->extra_elems = pptr;
411 return 0;
412}
413
Alexei Starovoitov0f8e4bd2014-11-13 17:36:45 -0800414/* Called from syscall */
Jakub Kicinski9328e0d2018-01-11 20:29:05 -0800415static int htab_map_alloc_check(union bpf_attr *attr)
416{
417 bool percpu = (attr->map_type == BPF_MAP_TYPE_PERCPU_HASH ||
418 attr->map_type == BPF_MAP_TYPE_LRU_PERCPU_HASH);
419 bool lru = (attr->map_type == BPF_MAP_TYPE_LRU_HASH ||
420 attr->map_type == BPF_MAP_TYPE_LRU_PERCPU_HASH);
421 /* percpu_lru means each cpu has its own LRU list.
422 * it is different from BPF_MAP_TYPE_PERCPU_HASH where
423 * the map's value itself is percpu. percpu_lru has
424 * nothing to do with the map's value.
425 */
426 bool percpu_lru = (attr->map_flags & BPF_F_NO_COMMON_LRU);
427 bool prealloc = !(attr->map_flags & BPF_F_NO_PREALLOC);
Lorenz Bauer96b3b6c2018-11-16 11:41:08 +0000428 bool zero_seed = (attr->map_flags & BPF_F_ZERO_SEED);
Jakub Kicinski9328e0d2018-01-11 20:29:05 -0800429 int numa_node = bpf_map_attr_numa_node(attr);
430
431 BUILD_BUG_ON(offsetof(struct htab_elem, htab) !=
432 offsetof(struct htab_elem, hash_node.pprev));
433 BUILD_BUG_ON(offsetof(struct htab_elem, fnode.next) !=
434 offsetof(struct htab_elem, hash_node.pprev));
435
Alexei Starovoitov2c78ee82020-05-13 16:03:54 -0700436 if (lru && !bpf_capable())
Jakub Kicinski9328e0d2018-01-11 20:29:05 -0800437 /* LRU implementation is much complicated than other
Alexei Starovoitov2c78ee82020-05-13 16:03:54 -0700438 * maps. Hence, limit to CAP_BPF.
Jakub Kicinski9328e0d2018-01-11 20:29:05 -0800439 */
440 return -EPERM;
441
Lorenz Bauer96b3b6c2018-11-16 11:41:08 +0000442 if (zero_seed && !capable(CAP_SYS_ADMIN))
443 /* Guard against local DoS, and discourage production use. */
444 return -EPERM;
445
Daniel Borkmann591fe982019-04-09 23:20:05 +0200446 if (attr->map_flags & ~HTAB_CREATE_FLAG_MASK ||
447 !bpf_map_flags_access_ok(attr->map_flags))
Jakub Kicinski9328e0d2018-01-11 20:29:05 -0800448 return -EINVAL;
449
450 if (!lru && percpu_lru)
451 return -EINVAL;
452
453 if (lru && !prealloc)
454 return -ENOTSUPP;
455
456 if (numa_node != NUMA_NO_NODE && (percpu || percpu_lru))
457 return -EINVAL;
458
459 /* check sanity of attributes.
460 * value_size == 0 may be allowed in the future to use map as a set
461 */
462 if (attr->max_entries == 0 || attr->key_size == 0 ||
463 attr->value_size == 0)
464 return -EINVAL;
465
Florian Lehnerc6bde952020-10-29 21:14:42 +0100466 if ((u64)attr->key_size + attr->value_size >= KMALLOC_MAX_SIZE -
467 sizeof(struct htab_elem))
468 /* if key_size + value_size is bigger, the user space won't be
469 * able to access the elements via bpf syscall. This check
470 * also makes sure that the elem_size doesn't overflow and it's
Jakub Kicinski9328e0d2018-01-11 20:29:05 -0800471 * kmalloc-able later in htab_map_update_elem()
472 */
473 return -E2BIG;
474
475 return 0;
476}
477
Alexei Starovoitov0f8e4bd2014-11-13 17:36:45 -0800478static struct bpf_map *htab_map_alloc(union bpf_attr *attr)
479{
Martin KaFai Lau8f844932016-11-11 10:55:10 -0800480 bool percpu = (attr->map_type == BPF_MAP_TYPE_PERCPU_HASH ||
481 attr->map_type == BPF_MAP_TYPE_LRU_PERCPU_HASH);
482 bool lru = (attr->map_type == BPF_MAP_TYPE_LRU_HASH ||
483 attr->map_type == BPF_MAP_TYPE_LRU_PERCPU_HASH);
Martin KaFai Lau29ba7322016-11-11 10:55:09 -0800484 /* percpu_lru means each cpu has its own LRU list.
485 * it is different from BPF_MAP_TYPE_PERCPU_HASH where
486 * the map's value itself is percpu. percpu_lru has
487 * nothing to do with the map's value.
488 */
489 bool percpu_lru = (attr->map_flags & BPF_F_NO_COMMON_LRU);
490 bool prealloc = !(attr->map_flags & BPF_F_NO_PREALLOC);
Alexei Starovoitov0f8e4bd2014-11-13 17:36:45 -0800491 struct bpf_htab *htab;
Song Liu20b6cc32020-10-29 00:19:25 -0700492 int err, i;
Alexei Starovoitov0f8e4bd2014-11-13 17:36:45 -0800493
Roman Gushchin88145682020-12-01 13:58:38 -0800494 htab = kzalloc(sizeof(*htab), GFP_USER | __GFP_ACCOUNT);
Alexei Starovoitov0f8e4bd2014-11-13 17:36:45 -0800495 if (!htab)
496 return ERR_PTR(-ENOMEM);
497
Eric Dumazet8aaeed82020-11-02 03:41:00 -0800498 lockdep_register_key(&htab->lockdep_key);
499
Jakub Kicinskibd475642018-01-11 20:29:06 -0800500 bpf_map_init_from_attr(&htab->map, attr);
Alexei Starovoitov0f8e4bd2014-11-13 17:36:45 -0800501
Martin KaFai Lau29ba7322016-11-11 10:55:09 -0800502 if (percpu_lru) {
503 /* ensure each CPU's lru list has >=1 elements.
504 * since we are at it, make each lru list has the same
505 * number of elements.
506 */
507 htab->map.max_entries = roundup(attr->max_entries,
508 num_possible_cpus());
509 if (htab->map.max_entries < attr->max_entries)
510 htab->map.max_entries = rounddown(attr->max_entries,
511 num_possible_cpus());
512 }
513
Alexei Starovoitov0f8e4bd2014-11-13 17:36:45 -0800514 /* hash table size must be power of 2 */
515 htab->n_buckets = roundup_pow_of_two(htab->map.max_entries);
516
Alexei Starovoitov01b3f522015-11-29 16:59:35 -0800517 htab->elem_size = sizeof(struct htab_elem) +
Alexei Starovoitov824bd0c2016-02-01 22:39:53 -0800518 round_up(htab->map.key_size, 8);
519 if (percpu)
520 htab->elem_size += sizeof(void *);
521 else
Alexei Starovoitov6c905982016-03-07 21:57:15 -0800522 htab->elem_size += round_up(htab->map.value_size, 8);
Alexei Starovoitov01b3f522015-11-29 16:59:35 -0800523
Jakub Kicinskidaffc5a2018-01-11 20:29:04 -0800524 err = -E2BIG;
Alexei Starovoitovdaaf4272014-11-18 17:32:16 -0800525 /* prevent zero size kmalloc and check for u32 overflow */
526 if (htab->n_buckets == 0 ||
tom.leiming@gmail.com688ecfe2015-12-29 22:40:27 +0800527 htab->n_buckets > U32_MAX / sizeof(struct bucket))
Alexei Starovoitovdaaf4272014-11-18 17:32:16 -0800528 goto free_htab;
529
Alexei Starovoitov01b3f522015-11-29 16:59:35 -0800530 err = -ENOMEM;
Daniel Borkmannd407bd22017-01-18 15:14:17 +0100531 htab->buckets = bpf_map_area_alloc(htab->n_buckets *
Martin KaFai Lau96eabe72017-08-18 11:28:00 -0700532 sizeof(struct bucket),
533 htab->map.numa_node);
Daniel Borkmannd407bd22017-01-18 15:14:17 +0100534 if (!htab->buckets)
Roman Gushchin755e5d552020-12-01 13:58:49 -0800535 goto free_htab;
Alexei Starovoitov0f8e4bd2014-11-13 17:36:45 -0800536
Song Liu20b6cc32020-10-29 00:19:25 -0700537 for (i = 0; i < HASHTAB_MAP_LOCK_COUNT; i++) {
Roman Gushchin88145682020-12-01 13:58:38 -0800538 htab->map_locked[i] = bpf_map_alloc_percpu(&htab->map,
539 sizeof(int),
540 sizeof(int),
541 GFP_USER);
Song Liu20b6cc32020-10-29 00:19:25 -0700542 if (!htab->map_locked[i])
543 goto free_map_locked;
544 }
545
Lorenz Bauer96b3b6c2018-11-16 11:41:08 +0000546 if (htab->map.map_flags & BPF_F_ZERO_SEED)
547 htab->hashrnd = 0;
548 else
549 htab->hashrnd = get_random_int();
550
Thomas Gleixnerd01f9b12020-02-24 15:01:50 +0100551 htab_init_buckets(htab);
Alexei Starovoitov0f8e4bd2014-11-13 17:36:45 -0800552
Martin KaFai Lau29ba7322016-11-11 10:55:09 -0800553 if (prealloc) {
554 err = prealloc_init(htab);
Alexei Starovoitova6ed3ea2016-08-05 14:01:27 -0700555 if (err)
Song Liu20b6cc32020-10-29 00:19:25 -0700556 goto free_map_locked;
Alexei Starovoitov8c290e62017-03-21 19:05:04 -0700557
558 if (!percpu && !lru) {
559 /* lru itself can remove the least used element, so
560 * there is no need for an extra elem during map_update.
561 */
562 err = alloc_extra_elems(htab);
563 if (err)
564 goto free_prealloc;
565 }
Alexei Starovoitova6ed3ea2016-08-05 14:01:27 -0700566 }
567
Alexei Starovoitov0f8e4bd2014-11-13 17:36:45 -0800568 return &htab->map;
569
Alexei Starovoitov8c290e62017-03-21 19:05:04 -0700570free_prealloc:
571 prealloc_destroy(htab);
Song Liu20b6cc32020-10-29 00:19:25 -0700572free_map_locked:
573 for (i = 0; i < HASHTAB_MAP_LOCK_COUNT; i++)
574 free_percpu(htab->map_locked[i]);
Daniel Borkmannd407bd22017-01-18 15:14:17 +0100575 bpf_map_area_free(htab->buckets);
Alexei Starovoitov0f8e4bd2014-11-13 17:36:45 -0800576free_htab:
Eric Dumazet8aaeed82020-11-02 03:41:00 -0800577 lockdep_unregister_key(&htab->lockdep_key);
Alexei Starovoitov0f8e4bd2014-11-13 17:36:45 -0800578 kfree(htab);
579 return ERR_PTR(err);
580}
581
Daniel Borkmannc0203472018-08-22 23:49:37 +0200582static inline u32 htab_map_hash(const void *key, u32 key_len, u32 hashrnd)
Alexei Starovoitov0f8e4bd2014-11-13 17:36:45 -0800583{
Daniel Borkmannc0203472018-08-22 23:49:37 +0200584 return jhash(key, key_len, hashrnd);
Alexei Starovoitov0f8e4bd2014-11-13 17:36:45 -0800585}
586
tom.leiming@gmail.com688ecfe2015-12-29 22:40:27 +0800587static inline struct bucket *__select_bucket(struct bpf_htab *htab, u32 hash)
Alexei Starovoitov0f8e4bd2014-11-13 17:36:45 -0800588{
589 return &htab->buckets[hash & (htab->n_buckets - 1)];
590}
591
Alexei Starovoitov4fe84352017-03-07 20:00:13 -0800592static inline struct hlist_nulls_head *select_bucket(struct bpf_htab *htab, u32 hash)
tom.leiming@gmail.com688ecfe2015-12-29 22:40:27 +0800593{
594 return &__select_bucket(htab, hash)->head;
595}
596
Alexei Starovoitov4fe84352017-03-07 20:00:13 -0800597/* this lookup function can only be called with bucket lock taken */
598static struct htab_elem *lookup_elem_raw(struct hlist_nulls_head *head, u32 hash,
Alexei Starovoitov0f8e4bd2014-11-13 17:36:45 -0800599 void *key, u32 key_size)
600{
Alexei Starovoitov4fe84352017-03-07 20:00:13 -0800601 struct hlist_nulls_node *n;
Alexei Starovoitov0f8e4bd2014-11-13 17:36:45 -0800602 struct htab_elem *l;
603
Alexei Starovoitov4fe84352017-03-07 20:00:13 -0800604 hlist_nulls_for_each_entry_rcu(l, n, head, hash_node)
Alexei Starovoitov0f8e4bd2014-11-13 17:36:45 -0800605 if (l->hash == hash && !memcmp(&l->key, key, key_size))
606 return l;
607
608 return NULL;
609}
610
Alexei Starovoitov4fe84352017-03-07 20:00:13 -0800611/* can be called without bucket lock. it will repeat the loop in
612 * the unlikely event when elements moved from one bucket into another
613 * while link list is being walked
614 */
615static struct htab_elem *lookup_nulls_elem_raw(struct hlist_nulls_head *head,
616 u32 hash, void *key,
617 u32 key_size, u32 n_buckets)
618{
619 struct hlist_nulls_node *n;
620 struct htab_elem *l;
621
622again:
623 hlist_nulls_for_each_entry_rcu(l, n, head, hash_node)
624 if (l->hash == hash && !memcmp(&l->key, key, key_size))
625 return l;
626
627 if (unlikely(get_nulls_value(n) != (hash & (n_buckets - 1))))
628 goto again;
629
630 return NULL;
631}
632
Alexei Starovoitov9015d2f2017-03-15 18:26:43 -0700633/* Called from syscall or from eBPF program directly, so
634 * arguments have to match bpf_map_lookup_elem() exactly.
635 * The return value is adjusted by BPF instructions
636 * in htab_map_gen_lookup().
637 */
Alexei Starovoitov824bd0c2016-02-01 22:39:53 -0800638static void *__htab_map_lookup_elem(struct bpf_map *map, void *key)
Alexei Starovoitov0f8e4bd2014-11-13 17:36:45 -0800639{
640 struct bpf_htab *htab = container_of(map, struct bpf_htab, map);
Alexei Starovoitov4fe84352017-03-07 20:00:13 -0800641 struct hlist_nulls_head *head;
Alexei Starovoitov0f8e4bd2014-11-13 17:36:45 -0800642 struct htab_elem *l;
643 u32 hash, key_size;
644
Toke Høiland-Jørgensen694cea32021-06-24 18:05:54 +0200645 WARN_ON_ONCE(!rcu_read_lock_held() && !rcu_read_lock_trace_held() &&
646 !rcu_read_lock_bh_held());
Alexei Starovoitov0f8e4bd2014-11-13 17:36:45 -0800647
648 key_size = map->key_size;
649
Daniel Borkmannc0203472018-08-22 23:49:37 +0200650 hash = htab_map_hash(key, key_size, htab->hashrnd);
Alexei Starovoitov0f8e4bd2014-11-13 17:36:45 -0800651
652 head = select_bucket(htab, hash);
653
Alexei Starovoitov4fe84352017-03-07 20:00:13 -0800654 l = lookup_nulls_elem_raw(head, hash, key, key_size, htab->n_buckets);
Alexei Starovoitov0f8e4bd2014-11-13 17:36:45 -0800655
Alexei Starovoitov824bd0c2016-02-01 22:39:53 -0800656 return l;
657}
658
659static void *htab_map_lookup_elem(struct bpf_map *map, void *key)
660{
661 struct htab_elem *l = __htab_map_lookup_elem(map, key);
662
Alexei Starovoitov0f8e4bd2014-11-13 17:36:45 -0800663 if (l)
664 return l->key + round_up(map->key_size, 8);
665
666 return NULL;
667}
668
Alexei Starovoitov9015d2f2017-03-15 18:26:43 -0700669/* inline bpf_map_lookup_elem() call.
670 * Instead of:
671 * bpf_prog
672 * bpf_map_lookup_elem
673 * map->ops->map_lookup_elem
674 * htab_map_lookup_elem
675 * __htab_map_lookup_elem
676 * do:
677 * bpf_prog
678 * __htab_map_lookup_elem
679 */
Daniel Borkmann4a8f87e2020-10-11 01:40:03 +0200680static int htab_map_gen_lookup(struct bpf_map *map, struct bpf_insn *insn_buf)
Alexei Starovoitov9015d2f2017-03-15 18:26:43 -0700681{
682 struct bpf_insn *insn = insn_buf;
683 const int ret = BPF_REG_0;
684
Daniel Borkmann09772d92018-06-02 23:06:35 +0200685 BUILD_BUG_ON(!__same_type(&__htab_map_lookup_elem,
686 (void *(*)(struct bpf_map *map, void *key))NULL));
Kees Cook3d717fa2021-09-28 16:09:45 -0700687 *insn++ = BPF_EMIT_CALL(__htab_map_lookup_elem);
Alexei Starovoitov9015d2f2017-03-15 18:26:43 -0700688 *insn++ = BPF_JMP_IMM(BPF_JEQ, ret, 0, 1);
689 *insn++ = BPF_ALU64_IMM(BPF_ADD, ret,
690 offsetof(struct htab_elem, key) +
691 round_up(map->key_size, 8));
692 return insn - insn_buf;
693}
694
Daniel Borkmann50b045a2019-05-14 01:18:56 +0200695static __always_inline void *__htab_lru_map_lookup_elem(struct bpf_map *map,
696 void *key, const bool mark)
Martin KaFai Lau29ba7322016-11-11 10:55:09 -0800697{
698 struct htab_elem *l = __htab_map_lookup_elem(map, key);
699
700 if (l) {
Daniel Borkmann50b045a2019-05-14 01:18:56 +0200701 if (mark)
702 bpf_lru_node_set_ref(&l->lru_node);
Martin KaFai Lau29ba7322016-11-11 10:55:09 -0800703 return l->key + round_up(map->key_size, 8);
704 }
705
706 return NULL;
707}
708
Daniel Borkmann50b045a2019-05-14 01:18:56 +0200709static void *htab_lru_map_lookup_elem(struct bpf_map *map, void *key)
710{
711 return __htab_lru_map_lookup_elem(map, key, true);
712}
713
714static void *htab_lru_map_lookup_elem_sys(struct bpf_map *map, void *key)
715{
716 return __htab_lru_map_lookup_elem(map, key, false);
717}
718
Daniel Borkmann4a8f87e2020-10-11 01:40:03 +0200719static int htab_lru_map_gen_lookup(struct bpf_map *map,
Martin KaFai Laucc555422017-08-31 23:27:12 -0700720 struct bpf_insn *insn_buf)
721{
722 struct bpf_insn *insn = insn_buf;
723 const int ret = BPF_REG_0;
Martin KaFai Laubb9b9f82017-08-31 23:27:13 -0700724 const int ref_reg = BPF_REG_1;
Martin KaFai Laucc555422017-08-31 23:27:12 -0700725
Daniel Borkmann09772d92018-06-02 23:06:35 +0200726 BUILD_BUG_ON(!__same_type(&__htab_map_lookup_elem,
727 (void *(*)(struct bpf_map *map, void *key))NULL));
Kees Cook3d717fa2021-09-28 16:09:45 -0700728 *insn++ = BPF_EMIT_CALL(__htab_map_lookup_elem);
Martin KaFai Laubb9b9f82017-08-31 23:27:13 -0700729 *insn++ = BPF_JMP_IMM(BPF_JEQ, ret, 0, 4);
730 *insn++ = BPF_LDX_MEM(BPF_B, ref_reg, ret,
731 offsetof(struct htab_elem, lru_node) +
732 offsetof(struct bpf_lru_node, ref));
733 *insn++ = BPF_JMP_IMM(BPF_JNE, ref_reg, 0, 1);
Martin KaFai Laucc555422017-08-31 23:27:12 -0700734 *insn++ = BPF_ST_MEM(BPF_B, ret,
735 offsetof(struct htab_elem, lru_node) +
736 offsetof(struct bpf_lru_node, ref),
737 1);
738 *insn++ = BPF_ALU64_IMM(BPF_ADD, ret,
739 offsetof(struct htab_elem, key) +
740 round_up(map->key_size, 8));
741 return insn - insn_buf;
742}
743
Kumar Kartikeya Dwivedi14a324f2022-04-25 03:18:55 +0530744static void check_and_free_fields(struct bpf_htab *htab,
745 struct htab_elem *elem)
Alexei Starovoitov68134662021-07-14 17:54:10 -0700746{
Kumar Kartikeya Dwivedi14a324f2022-04-25 03:18:55 +0530747 void *map_value = elem->key + round_up(htab->map.key_size, 8);
748
749 if (map_value_has_timer(&htab->map))
750 bpf_timer_cancel_and_free(map_value + htab->map.timer_off);
751 if (map_value_has_kptrs(&htab->map))
752 bpf_map_free_kptrs(&htab->map, map_value);
Alexei Starovoitov68134662021-07-14 17:54:10 -0700753}
754
Martin KaFai Lau29ba7322016-11-11 10:55:09 -0800755/* It is called from the bpf_lru_list when the LRU needs to delete
756 * older elements from the htab.
757 */
758static bool htab_lru_map_delete_node(void *arg, struct bpf_lru_node *node)
759{
Yu Zhe241d50e2022-04-12 18:50:48 -0700760 struct bpf_htab *htab = arg;
Alexei Starovoitov4fe84352017-03-07 20:00:13 -0800761 struct htab_elem *l = NULL, *tgt_l;
762 struct hlist_nulls_head *head;
763 struct hlist_nulls_node *n;
Martin KaFai Lau29ba7322016-11-11 10:55:09 -0800764 unsigned long flags;
765 struct bucket *b;
Song Liu20b6cc32020-10-29 00:19:25 -0700766 int ret;
Martin KaFai Lau29ba7322016-11-11 10:55:09 -0800767
768 tgt_l = container_of(node, struct htab_elem, lru_node);
769 b = __select_bucket(htab, tgt_l->hash);
770 head = &b->head;
771
Song Liu20b6cc32020-10-29 00:19:25 -0700772 ret = htab_lock_bucket(htab, b, tgt_l->hash, &flags);
773 if (ret)
774 return false;
Martin KaFai Lau29ba7322016-11-11 10:55:09 -0800775
Alexei Starovoitov4fe84352017-03-07 20:00:13 -0800776 hlist_nulls_for_each_entry_rcu(l, n, head, hash_node)
Martin KaFai Lau29ba7322016-11-11 10:55:09 -0800777 if (l == tgt_l) {
Alexei Starovoitov4fe84352017-03-07 20:00:13 -0800778 hlist_nulls_del_rcu(&l->hash_node);
Kumar Kartikeya Dwivedi14a324f2022-04-25 03:18:55 +0530779 check_and_free_fields(htab, l);
Martin KaFai Lau29ba7322016-11-11 10:55:09 -0800780 break;
781 }
782
Song Liu20b6cc32020-10-29 00:19:25 -0700783 htab_unlock_bucket(htab, b, tgt_l->hash, flags);
Martin KaFai Lau29ba7322016-11-11 10:55:09 -0800784
785 return l == tgt_l;
786}
787
Alexei Starovoitov0f8e4bd2014-11-13 17:36:45 -0800788/* Called from syscall */
789static int htab_map_get_next_key(struct bpf_map *map, void *key, void *next_key)
790{
791 struct bpf_htab *htab = container_of(map, struct bpf_htab, map);
Alexei Starovoitov4fe84352017-03-07 20:00:13 -0800792 struct hlist_nulls_head *head;
Alexei Starovoitov0f8e4bd2014-11-13 17:36:45 -0800793 struct htab_elem *l, *next_l;
794 u32 hash, key_size;
Teng Qin8fe45922017-04-24 19:00:37 -0700795 int i = 0;
Alexei Starovoitov0f8e4bd2014-11-13 17:36:45 -0800796
797 WARN_ON_ONCE(!rcu_read_lock_held());
798
799 key_size = map->key_size;
800
Teng Qin8fe45922017-04-24 19:00:37 -0700801 if (!key)
802 goto find_first_elem;
803
Daniel Borkmannc0203472018-08-22 23:49:37 +0200804 hash = htab_map_hash(key, key_size, htab->hashrnd);
Alexei Starovoitov0f8e4bd2014-11-13 17:36:45 -0800805
806 head = select_bucket(htab, hash);
807
808 /* lookup the key */
Alexei Starovoitov4fe84352017-03-07 20:00:13 -0800809 l = lookup_nulls_elem_raw(head, hash, key, key_size, htab->n_buckets);
Alexei Starovoitov0f8e4bd2014-11-13 17:36:45 -0800810
Teng Qin8fe45922017-04-24 19:00:37 -0700811 if (!l)
Alexei Starovoitov0f8e4bd2014-11-13 17:36:45 -0800812 goto find_first_elem;
Alexei Starovoitov0f8e4bd2014-11-13 17:36:45 -0800813
814 /* key was found, get next key in the same bucket */
Alexei Starovoitov4fe84352017-03-07 20:00:13 -0800815 next_l = hlist_nulls_entry_safe(rcu_dereference_raw(hlist_nulls_next_rcu(&l->hash_node)),
Alexei Starovoitov0f8e4bd2014-11-13 17:36:45 -0800816 struct htab_elem, hash_node);
817
818 if (next_l) {
819 /* if next elem in this hash list is non-zero, just return it */
820 memcpy(next_key, next_l->key, key_size);
821 return 0;
822 }
823
824 /* no more elements in this hash list, go to the next bucket */
825 i = hash & (htab->n_buckets - 1);
826 i++;
827
828find_first_elem:
829 /* iterate over buckets */
830 for (; i < htab->n_buckets; i++) {
831 head = select_bucket(htab, i);
832
833 /* pick first element in the bucket */
Alexei Starovoitov4fe84352017-03-07 20:00:13 -0800834 next_l = hlist_nulls_entry_safe(rcu_dereference_raw(hlist_nulls_first_rcu(head)),
Alexei Starovoitov0f8e4bd2014-11-13 17:36:45 -0800835 struct htab_elem, hash_node);
836 if (next_l) {
837 /* if it's not empty, just return it */
838 memcpy(next_key, next_l->key, key_size);
839 return 0;
840 }
841 }
842
Alexei Starovoitov6c905982016-03-07 21:57:15 -0800843 /* iterated over all buckets and all elements */
Alexei Starovoitov0f8e4bd2014-11-13 17:36:45 -0800844 return -ENOENT;
845}
846
Alexei Starovoitov6c905982016-03-07 21:57:15 -0800847static void htab_elem_free(struct bpf_htab *htab, struct htab_elem *l)
Alexei Starovoitov824bd0c2016-02-01 22:39:53 -0800848{
Alexei Starovoitov6c905982016-03-07 21:57:15 -0800849 if (htab->map.map_type == BPF_MAP_TYPE_PERCPU_HASH)
850 free_percpu(htab_elem_get_ptr(l, htab->map.key_size));
Kumar Kartikeya Dwivedi14a324f2022-04-25 03:18:55 +0530851 check_and_free_fields(htab, l);
Alexei Starovoitov824bd0c2016-02-01 22:39:53 -0800852 kfree(l);
853}
854
Alexei Starovoitov6c905982016-03-07 21:57:15 -0800855static void htab_elem_free_rcu(struct rcu_head *head)
Alexei Starovoitov824bd0c2016-02-01 22:39:53 -0800856{
857 struct htab_elem *l = container_of(head, struct htab_elem, rcu);
Alexei Starovoitov6c905982016-03-07 21:57:15 -0800858 struct bpf_htab *htab = l->htab;
Alexei Starovoitov824bd0c2016-02-01 22:39:53 -0800859
Alexei Starovoitov6c905982016-03-07 21:57:15 -0800860 htab_elem_free(htab, l);
Alexei Starovoitov824bd0c2016-02-01 22:39:53 -0800861}
862
Andrii Nakryiko1d4e1eab2020-07-28 21:09:12 -0700863static void htab_put_fd_value(struct bpf_htab *htab, struct htab_elem *l)
Alexei Starovoitov824bd0c2016-02-01 22:39:53 -0800864{
Martin KaFai Laubcc6b1b2017-03-22 10:00:34 -0700865 struct bpf_map *map = &htab->map;
Andrii Nakryiko1d4e1eab2020-07-28 21:09:12 -0700866 void *ptr;
Martin KaFai Laubcc6b1b2017-03-22 10:00:34 -0700867
868 if (map->ops->map_fd_put_ptr) {
Andrii Nakryiko1d4e1eab2020-07-28 21:09:12 -0700869 ptr = fd_htab_map_get_ptr(map, l);
Martin KaFai Laubcc6b1b2017-03-22 10:00:34 -0700870 map->ops->map_fd_put_ptr(ptr);
871 }
Andrii Nakryiko1d4e1eab2020-07-28 21:09:12 -0700872}
873
874static void free_htab_elem(struct bpf_htab *htab, struct htab_elem *l)
875{
876 htab_put_fd_value(htab, l);
Martin KaFai Laubcc6b1b2017-03-22 10:00:34 -0700877
Alexei Starovoitov8c290e62017-03-21 19:05:04 -0700878 if (htab_is_prealloc(htab)) {
Kumar Kartikeya Dwivedi14a324f2022-04-25 03:18:55 +0530879 check_and_free_fields(htab, l);
Alexei Starovoitova89fac52019-01-30 18:12:43 -0800880 __pcpu_freelist_push(&htab->freelist, &l->fnode);
Alexei Starovoitov824bd0c2016-02-01 22:39:53 -0800881 } else {
Alexei Starovoitov6c905982016-03-07 21:57:15 -0800882 atomic_dec(&htab->count);
883 l->htab = htab;
884 call_rcu(&l->rcu, htab_elem_free_rcu);
Alexei Starovoitov824bd0c2016-02-01 22:39:53 -0800885 }
886}
887
Martin KaFai Laufd91de72016-11-11 10:55:08 -0800888static void pcpu_copy_value(struct bpf_htab *htab, void __percpu *pptr,
889 void *value, bool onallcpus)
890{
891 if (!onallcpus) {
892 /* copy true value_size bytes */
893 memcpy(this_cpu_ptr(pptr), value, htab->map.value_size);
894 } else {
895 u32 size = round_up(htab->map.value_size, 8);
896 int off = 0, cpu;
897
898 for_each_possible_cpu(cpu) {
899 bpf_long_memcpy(per_cpu_ptr(pptr, cpu),
900 value + off, size);
901 off += size;
902 }
903 }
904}
905
David Verbeirend3bec012020-11-04 12:23:32 +0100906static void pcpu_init_value(struct bpf_htab *htab, void __percpu *pptr,
907 void *value, bool onallcpus)
908{
909 /* When using prealloc and not setting the initial value on all cpus,
910 * zero-fill element values for other cpus (just as what happens when
911 * not using prealloc). Otherwise, bpf program has no way to ensure
912 * known initial values for cpus other than current one
913 * (onallcpus=false always when coming from bpf prog).
914 */
915 if (htab_is_prealloc(htab) && !onallcpus) {
916 u32 size = round_up(htab->map.value_size, 8);
917 int current_cpu = raw_smp_processor_id();
918 int cpu;
919
920 for_each_possible_cpu(cpu) {
921 if (cpu == current_cpu)
922 bpf_long_memcpy(per_cpu_ptr(pptr, cpu), value,
923 size);
924 else
925 memset(per_cpu_ptr(pptr, cpu), 0, size);
926 }
927 } else {
928 pcpu_copy_value(htab, pptr, value, onallcpus);
929 }
930}
931
Daniel Borkmanncd36c3a2017-08-23 00:06:09 +0200932static bool fd_htab_map_needs_adjust(const struct bpf_htab *htab)
933{
934 return htab->map.map_type == BPF_MAP_TYPE_HASH_OF_MAPS &&
935 BITS_PER_LONG == 64;
936}
937
Alexei Starovoitov824bd0c2016-02-01 22:39:53 -0800938static struct htab_elem *alloc_htab_elem(struct bpf_htab *htab, void *key,
939 void *value, u32 key_size, u32 hash,
Alexei Starovoitova6ed3ea2016-08-05 14:01:27 -0700940 bool percpu, bool onallcpus,
Alexei Starovoitov8c290e62017-03-21 19:05:04 -0700941 struct htab_elem *old_elem)
Alexei Starovoitov824bd0c2016-02-01 22:39:53 -0800942{
Alexei Starovoitovd83525c2019-01-31 15:40:04 -0800943 u32 size = htab->map.value_size;
Alexei Starovoitov8c290e62017-03-21 19:05:04 -0700944 bool prealloc = htab_is_prealloc(htab);
945 struct htab_elem *l_new, **pl_new;
Alexei Starovoitov824bd0c2016-02-01 22:39:53 -0800946 void __percpu *pptr;
947
Alexei Starovoitov6c905982016-03-07 21:57:15 -0800948 if (prealloc) {
Alexei Starovoitov8c290e62017-03-21 19:05:04 -0700949 if (old_elem) {
950 /* if we're updating the existing element,
951 * use per-cpu extra elems to avoid freelist_pop/push
952 */
953 pl_new = this_cpu_ptr(htab->extra_elems);
954 l_new = *pl_new;
Andrii Nakryiko1d4e1eab2020-07-28 21:09:12 -0700955 htab_put_fd_value(htab, old_elem);
Alexei Starovoitov8c290e62017-03-21 19:05:04 -0700956 *pl_new = old_elem;
Alexei Starovoitova6ed3ea2016-08-05 14:01:27 -0700957 } else {
Alexei Starovoitov8c290e62017-03-21 19:05:04 -0700958 struct pcpu_freelist_node *l;
959
Alexei Starovoitova89fac52019-01-30 18:12:43 -0800960 l = __pcpu_freelist_pop(&htab->freelist);
Alexei Starovoitov8c290e62017-03-21 19:05:04 -0700961 if (!l)
962 return ERR_PTR(-E2BIG);
963 l_new = container_of(l, struct htab_elem, fnode);
Alexei Starovoitov6c905982016-03-07 21:57:15 -0800964 }
Alexei Starovoitova6ed3ea2016-08-05 14:01:27 -0700965 } else {
Alexei Starovoitov8c290e62017-03-21 19:05:04 -0700966 if (atomic_inc_return(&htab->count) > htab->map.max_entries)
967 if (!old_elem) {
968 /* when map is full and update() is replacing
969 * old element, it's ok to allocate, since
970 * old element will be freed immediately.
971 * Otherwise return an error
972 */
Mauricio Vasquez Bed2b82c2018-06-29 14:48:20 +0200973 l_new = ERR_PTR(-E2BIG);
974 goto dec_count;
Alexei Starovoitov8c290e62017-03-21 19:05:04 -0700975 }
Roman Gushchin88145682020-12-01 13:58:38 -0800976 l_new = bpf_map_kmalloc_node(&htab->map, htab->elem_size,
Yafang Shaoace2bee832022-07-09 15:44:56 +0000977 GFP_NOWAIT | __GFP_NOWARN,
Roman Gushchin88145682020-12-01 13:58:38 -0800978 htab->map.numa_node);
Mauricio Vasquez Bed2b82c2018-06-29 14:48:20 +0200979 if (!l_new) {
980 l_new = ERR_PTR(-ENOMEM);
981 goto dec_count;
982 }
Alexei Starovoitov68134662021-07-14 17:54:10 -0700983 check_and_init_map_value(&htab->map,
984 l_new->key + round_up(key_size, 8));
Alexei Starovoitov6c905982016-03-07 21:57:15 -0800985 }
Alexei Starovoitov824bd0c2016-02-01 22:39:53 -0800986
987 memcpy(l_new->key, key, key_size);
988 if (percpu) {
Alexei Starovoitovd83525c2019-01-31 15:40:04 -0800989 size = round_up(size, 8);
Alexei Starovoitov6c905982016-03-07 21:57:15 -0800990 if (prealloc) {
991 pptr = htab_elem_get_ptr(l_new, key_size);
992 } else {
993 /* alloc_percpu zero-fills */
Roman Gushchin88145682020-12-01 13:58:38 -0800994 pptr = bpf_map_alloc_percpu(&htab->map, size, 8,
Yafang Shaoace2bee832022-07-09 15:44:56 +0000995 GFP_NOWAIT | __GFP_NOWARN);
Alexei Starovoitov6c905982016-03-07 21:57:15 -0800996 if (!pptr) {
997 kfree(l_new);
Mauricio Vasquez Bed2b82c2018-06-29 14:48:20 +0200998 l_new = ERR_PTR(-ENOMEM);
999 goto dec_count;
Alexei Starovoitov6c905982016-03-07 21:57:15 -08001000 }
Alexei Starovoitov824bd0c2016-02-01 22:39:53 -08001001 }
1002
David Verbeirend3bec012020-11-04 12:23:32 +01001003 pcpu_init_value(htab, pptr, value, onallcpus);
Alexei Starovoitov15a07b32016-02-01 22:39:55 -08001004
Alexei Starovoitov6c905982016-03-07 21:57:15 -08001005 if (!prealloc)
1006 htab_elem_set_ptr(l_new, key_size, pptr);
Alexei Starovoitovd83525c2019-01-31 15:40:04 -08001007 } else if (fd_htab_map_needs_adjust(htab)) {
1008 size = round_up(size, 8);
Alexei Starovoitov824bd0c2016-02-01 22:39:53 -08001009 memcpy(l_new->key + round_up(key_size, 8), value, size);
Alexei Starovoitovd83525c2019-01-31 15:40:04 -08001010 } else {
1011 copy_map_value(&htab->map,
1012 l_new->key + round_up(key_size, 8),
1013 value);
Alexei Starovoitov824bd0c2016-02-01 22:39:53 -08001014 }
1015
1016 l_new->hash = hash;
1017 return l_new;
Mauricio Vasquez Bed2b82c2018-06-29 14:48:20 +02001018dec_count:
1019 atomic_dec(&htab->count);
1020 return l_new;
Alexei Starovoitov824bd0c2016-02-01 22:39:53 -08001021}
1022
1023static int check_flags(struct bpf_htab *htab, struct htab_elem *l_old,
1024 u64 map_flags)
1025{
Alexei Starovoitov96049f32019-01-31 15:40:09 -08001026 if (l_old && (map_flags & ~BPF_F_LOCK) == BPF_NOEXIST)
Alexei Starovoitov824bd0c2016-02-01 22:39:53 -08001027 /* elem already exists */
1028 return -EEXIST;
1029
Alexei Starovoitov96049f32019-01-31 15:40:09 -08001030 if (!l_old && (map_flags & ~BPF_F_LOCK) == BPF_EXIST)
Alexei Starovoitov824bd0c2016-02-01 22:39:53 -08001031 /* elem doesn't exist, cannot update it */
1032 return -ENOENT;
1033
1034 return 0;
1035}
1036
Alexei Starovoitov0f8e4bd2014-11-13 17:36:45 -08001037/* Called from syscall or from eBPF program */
1038static int htab_map_update_elem(struct bpf_map *map, void *key, void *value,
1039 u64 map_flags)
1040{
1041 struct bpf_htab *htab = container_of(map, struct bpf_htab, map);
Alexei Starovoitov824bd0c2016-02-01 22:39:53 -08001042 struct htab_elem *l_new = NULL, *l_old;
Alexei Starovoitov4fe84352017-03-07 20:00:13 -08001043 struct hlist_nulls_head *head;
Alexei Starovoitov0f8e4bd2014-11-13 17:36:45 -08001044 unsigned long flags;
Alexei Starovoitov824bd0c2016-02-01 22:39:53 -08001045 struct bucket *b;
1046 u32 key_size, hash;
Alexei Starovoitov0f8e4bd2014-11-13 17:36:45 -08001047 int ret;
1048
Alexei Starovoitov96049f32019-01-31 15:40:09 -08001049 if (unlikely((map_flags & ~BPF_F_LOCK) > BPF_EXIST))
Alexei Starovoitov0f8e4bd2014-11-13 17:36:45 -08001050 /* unknown flags */
1051 return -EINVAL;
1052
Toke Høiland-Jørgensen694cea32021-06-24 18:05:54 +02001053 WARN_ON_ONCE(!rcu_read_lock_held() && !rcu_read_lock_trace_held() &&
1054 !rcu_read_lock_bh_held());
Alexei Starovoitov0f8e4bd2014-11-13 17:36:45 -08001055
Alexei Starovoitov824bd0c2016-02-01 22:39:53 -08001056 key_size = map->key_size;
1057
Daniel Borkmannc0203472018-08-22 23:49:37 +02001058 hash = htab_map_hash(key, key_size, htab->hashrnd);
Alexei Starovoitov824bd0c2016-02-01 22:39:53 -08001059
Alexei Starovoitov824bd0c2016-02-01 22:39:53 -08001060 b = __select_bucket(htab, hash);
tom.leiming@gmail.com688ecfe2015-12-29 22:40:27 +08001061 head = &b->head;
Alexei Starovoitov0f8e4bd2014-11-13 17:36:45 -08001062
Alexei Starovoitov96049f32019-01-31 15:40:09 -08001063 if (unlikely(map_flags & BPF_F_LOCK)) {
1064 if (unlikely(!map_value_has_spin_lock(map)))
1065 return -EINVAL;
1066 /* find an element without taking the bucket lock */
1067 l_old = lookup_nulls_elem_raw(head, hash, key, key_size,
1068 htab->n_buckets);
1069 ret = check_flags(htab, l_old, map_flags);
1070 if (ret)
1071 return ret;
1072 if (l_old) {
1073 /* grab the element lock and update value in place */
1074 copy_map_value_locked(map,
1075 l_old->key + round_up(key_size, 8),
1076 value, false);
1077 return 0;
1078 }
1079 /* fall through, grab the bucket lock and lookup again.
1080 * 99.9% chance that the element won't be found,
1081 * but second lookup under lock has to be done.
1082 */
1083 }
1084
Song Liu20b6cc32020-10-29 00:19:25 -07001085 ret = htab_lock_bucket(htab, b, hash, &flags);
1086 if (ret)
1087 return ret;
Alexei Starovoitov0f8e4bd2014-11-13 17:36:45 -08001088
Alexei Starovoitov824bd0c2016-02-01 22:39:53 -08001089 l_old = lookup_elem_raw(head, hash, key, key_size);
Alexei Starovoitov0f8e4bd2014-11-13 17:36:45 -08001090
Alexei Starovoitov824bd0c2016-02-01 22:39:53 -08001091 ret = check_flags(htab, l_old, map_flags);
1092 if (ret)
Alexei Starovoitov0f8e4bd2014-11-13 17:36:45 -08001093 goto err;
Alexei Starovoitov0f8e4bd2014-11-13 17:36:45 -08001094
Alexei Starovoitov96049f32019-01-31 15:40:09 -08001095 if (unlikely(l_old && (map_flags & BPF_F_LOCK))) {
1096 /* first lookup without the bucket lock didn't find the element,
1097 * but second lookup with the bucket lock found it.
1098 * This case is highly unlikely, but has to be dealt with:
1099 * grab the element lock in addition to the bucket lock
1100 * and update element in place
1101 */
1102 copy_map_value_locked(map,
1103 l_old->key + round_up(key_size, 8),
1104 value, false);
1105 ret = 0;
1106 goto err;
1107 }
1108
Alexei Starovoitova6ed3ea2016-08-05 14:01:27 -07001109 l_new = alloc_htab_elem(htab, key, value, key_size, hash, false, false,
Alexei Starovoitov8c290e62017-03-21 19:05:04 -07001110 l_old);
Alexei Starovoitov6c905982016-03-07 21:57:15 -08001111 if (IS_ERR(l_new)) {
1112 /* all pre-allocated elements are in use or memory exhausted */
1113 ret = PTR_ERR(l_new);
1114 goto err;
1115 }
1116
Alexei Starovoitov824bd0c2016-02-01 22:39:53 -08001117 /* add new element to the head of the list, so that
1118 * concurrent search will find it before old elem
Alexei Starovoitov0f8e4bd2014-11-13 17:36:45 -08001119 */
Alexei Starovoitov4fe84352017-03-07 20:00:13 -08001120 hlist_nulls_add_head_rcu(&l_new->hash_node, head);
Alexei Starovoitov0f8e4bd2014-11-13 17:36:45 -08001121 if (l_old) {
Alexei Starovoitov4fe84352017-03-07 20:00:13 -08001122 hlist_nulls_del_rcu(&l_old->hash_node);
Alexei Starovoitov8c290e62017-03-21 19:05:04 -07001123 if (!htab_is_prealloc(htab))
1124 free_htab_elem(htab, l_old);
Alexei Starovoitov68134662021-07-14 17:54:10 -07001125 else
Kumar Kartikeya Dwivedi14a324f2022-04-25 03:18:55 +05301126 check_and_free_fields(htab, l_old);
Alexei Starovoitov0f8e4bd2014-11-13 17:36:45 -08001127 }
Alexei Starovoitov6c905982016-03-07 21:57:15 -08001128 ret = 0;
Alexei Starovoitov0f8e4bd2014-11-13 17:36:45 -08001129err:
Song Liu20b6cc32020-10-29 00:19:25 -07001130 htab_unlock_bucket(htab, b, hash, flags);
Alexei Starovoitov0f8e4bd2014-11-13 17:36:45 -08001131 return ret;
1132}
1133
Alexei Starovoitov68134662021-07-14 17:54:10 -07001134static void htab_lru_push_free(struct bpf_htab *htab, struct htab_elem *elem)
1135{
Kumar Kartikeya Dwivedi14a324f2022-04-25 03:18:55 +05301136 check_and_free_fields(htab, elem);
Alexei Starovoitov68134662021-07-14 17:54:10 -07001137 bpf_lru_push_free(&htab->lru, &elem->lru_node);
1138}
1139
Martin KaFai Lau29ba7322016-11-11 10:55:09 -08001140static int htab_lru_map_update_elem(struct bpf_map *map, void *key, void *value,
1141 u64 map_flags)
1142{
1143 struct bpf_htab *htab = container_of(map, struct bpf_htab, map);
1144 struct htab_elem *l_new, *l_old = NULL;
Alexei Starovoitov4fe84352017-03-07 20:00:13 -08001145 struct hlist_nulls_head *head;
Martin KaFai Lau29ba7322016-11-11 10:55:09 -08001146 unsigned long flags;
1147 struct bucket *b;
1148 u32 key_size, hash;
1149 int ret;
1150
1151 if (unlikely(map_flags > BPF_EXIST))
1152 /* unknown flags */
1153 return -EINVAL;
1154
Toke Høiland-Jørgensen694cea32021-06-24 18:05:54 +02001155 WARN_ON_ONCE(!rcu_read_lock_held() && !rcu_read_lock_trace_held() &&
1156 !rcu_read_lock_bh_held());
Martin KaFai Lau29ba7322016-11-11 10:55:09 -08001157
1158 key_size = map->key_size;
1159
Daniel Borkmannc0203472018-08-22 23:49:37 +02001160 hash = htab_map_hash(key, key_size, htab->hashrnd);
Martin KaFai Lau29ba7322016-11-11 10:55:09 -08001161
1162 b = __select_bucket(htab, hash);
1163 head = &b->head;
1164
1165 /* For LRU, we need to alloc before taking bucket's
1166 * spinlock because getting free nodes from LRU may need
1167 * to remove older elements from htab and this removal
1168 * operation will need a bucket lock.
1169 */
1170 l_new = prealloc_lru_pop(htab, key, hash);
1171 if (!l_new)
1172 return -ENOMEM;
Alexei Starovoitov68134662021-07-14 17:54:10 -07001173 copy_map_value(&htab->map,
1174 l_new->key + round_up(map->key_size, 8), value);
Martin KaFai Lau29ba7322016-11-11 10:55:09 -08001175
Song Liu20b6cc32020-10-29 00:19:25 -07001176 ret = htab_lock_bucket(htab, b, hash, &flags);
1177 if (ret)
1178 return ret;
Martin KaFai Lau29ba7322016-11-11 10:55:09 -08001179
1180 l_old = lookup_elem_raw(head, hash, key, key_size);
1181
1182 ret = check_flags(htab, l_old, map_flags);
1183 if (ret)
1184 goto err;
1185
1186 /* add new element to the head of the list, so that
1187 * concurrent search will find it before old elem
1188 */
Alexei Starovoitov4fe84352017-03-07 20:00:13 -08001189 hlist_nulls_add_head_rcu(&l_new->hash_node, head);
Martin KaFai Lau29ba7322016-11-11 10:55:09 -08001190 if (l_old) {
1191 bpf_lru_node_set_ref(&l_new->lru_node);
Alexei Starovoitov4fe84352017-03-07 20:00:13 -08001192 hlist_nulls_del_rcu(&l_old->hash_node);
Martin KaFai Lau29ba7322016-11-11 10:55:09 -08001193 }
1194 ret = 0;
1195
1196err:
Song Liu20b6cc32020-10-29 00:19:25 -07001197 htab_unlock_bucket(htab, b, hash, flags);
Martin KaFai Lau29ba7322016-11-11 10:55:09 -08001198
1199 if (ret)
Alexei Starovoitov68134662021-07-14 17:54:10 -07001200 htab_lru_push_free(htab, l_new);
Martin KaFai Lau29ba7322016-11-11 10:55:09 -08001201 else if (l_old)
Alexei Starovoitov68134662021-07-14 17:54:10 -07001202 htab_lru_push_free(htab, l_old);
Martin KaFai Lau29ba7322016-11-11 10:55:09 -08001203
1204 return ret;
1205}
1206
Alexei Starovoitov15a07b32016-02-01 22:39:55 -08001207static int __htab_percpu_map_update_elem(struct bpf_map *map, void *key,
1208 void *value, u64 map_flags,
1209 bool onallcpus)
Alexei Starovoitov824bd0c2016-02-01 22:39:53 -08001210{
1211 struct bpf_htab *htab = container_of(map, struct bpf_htab, map);
1212 struct htab_elem *l_new = NULL, *l_old;
Alexei Starovoitov4fe84352017-03-07 20:00:13 -08001213 struct hlist_nulls_head *head;
Alexei Starovoitov824bd0c2016-02-01 22:39:53 -08001214 unsigned long flags;
1215 struct bucket *b;
1216 u32 key_size, hash;
1217 int ret;
1218
1219 if (unlikely(map_flags > BPF_EXIST))
1220 /* unknown flags */
1221 return -EINVAL;
1222
Toke Høiland-Jørgensen694cea32021-06-24 18:05:54 +02001223 WARN_ON_ONCE(!rcu_read_lock_held() && !rcu_read_lock_trace_held() &&
1224 !rcu_read_lock_bh_held());
Alexei Starovoitov824bd0c2016-02-01 22:39:53 -08001225
1226 key_size = map->key_size;
1227
Daniel Borkmannc0203472018-08-22 23:49:37 +02001228 hash = htab_map_hash(key, key_size, htab->hashrnd);
Alexei Starovoitov824bd0c2016-02-01 22:39:53 -08001229
1230 b = __select_bucket(htab, hash);
1231 head = &b->head;
1232
Song Liu20b6cc32020-10-29 00:19:25 -07001233 ret = htab_lock_bucket(htab, b, hash, &flags);
1234 if (ret)
1235 return ret;
Alexei Starovoitov824bd0c2016-02-01 22:39:53 -08001236
1237 l_old = lookup_elem_raw(head, hash, key, key_size);
1238
1239 ret = check_flags(htab, l_old, map_flags);
1240 if (ret)
1241 goto err;
1242
1243 if (l_old) {
1244 /* per-cpu hash map can update value in-place */
Martin KaFai Laufd91de72016-11-11 10:55:08 -08001245 pcpu_copy_value(htab, htab_elem_get_ptr(l_old, key_size),
1246 value, onallcpus);
Alexei Starovoitov824bd0c2016-02-01 22:39:53 -08001247 } else {
1248 l_new = alloc_htab_elem(htab, key, value, key_size,
Alexei Starovoitov8c290e62017-03-21 19:05:04 -07001249 hash, true, onallcpus, NULL);
Alexei Starovoitov6c905982016-03-07 21:57:15 -08001250 if (IS_ERR(l_new)) {
1251 ret = PTR_ERR(l_new);
Alexei Starovoitov824bd0c2016-02-01 22:39:53 -08001252 goto err;
1253 }
Alexei Starovoitov4fe84352017-03-07 20:00:13 -08001254 hlist_nulls_add_head_rcu(&l_new->hash_node, head);
Alexei Starovoitov824bd0c2016-02-01 22:39:53 -08001255 }
1256 ret = 0;
1257err:
Song Liu20b6cc32020-10-29 00:19:25 -07001258 htab_unlock_bucket(htab, b, hash, flags);
Alexei Starovoitov824bd0c2016-02-01 22:39:53 -08001259 return ret;
1260}
1261
Martin KaFai Lau8f844932016-11-11 10:55:10 -08001262static int __htab_lru_percpu_map_update_elem(struct bpf_map *map, void *key,
1263 void *value, u64 map_flags,
1264 bool onallcpus)
1265{
1266 struct bpf_htab *htab = container_of(map, struct bpf_htab, map);
1267 struct htab_elem *l_new = NULL, *l_old;
Alexei Starovoitov4fe84352017-03-07 20:00:13 -08001268 struct hlist_nulls_head *head;
Martin KaFai Lau8f844932016-11-11 10:55:10 -08001269 unsigned long flags;
1270 struct bucket *b;
1271 u32 key_size, hash;
1272 int ret;
1273
1274 if (unlikely(map_flags > BPF_EXIST))
1275 /* unknown flags */
1276 return -EINVAL;
1277
Toke Høiland-Jørgensen694cea32021-06-24 18:05:54 +02001278 WARN_ON_ONCE(!rcu_read_lock_held() && !rcu_read_lock_trace_held() &&
1279 !rcu_read_lock_bh_held());
Martin KaFai Lau8f844932016-11-11 10:55:10 -08001280
1281 key_size = map->key_size;
1282
Daniel Borkmannc0203472018-08-22 23:49:37 +02001283 hash = htab_map_hash(key, key_size, htab->hashrnd);
Martin KaFai Lau8f844932016-11-11 10:55:10 -08001284
1285 b = __select_bucket(htab, hash);
1286 head = &b->head;
1287
1288 /* For LRU, we need to alloc before taking bucket's
1289 * spinlock because LRU's elem alloc may need
1290 * to remove older elem from htab and this removal
1291 * operation will need a bucket lock.
1292 */
1293 if (map_flags != BPF_EXIST) {
1294 l_new = prealloc_lru_pop(htab, key, hash);
1295 if (!l_new)
1296 return -ENOMEM;
1297 }
1298
Song Liu20b6cc32020-10-29 00:19:25 -07001299 ret = htab_lock_bucket(htab, b, hash, &flags);
1300 if (ret)
1301 return ret;
Martin KaFai Lau8f844932016-11-11 10:55:10 -08001302
1303 l_old = lookup_elem_raw(head, hash, key, key_size);
1304
1305 ret = check_flags(htab, l_old, map_flags);
1306 if (ret)
1307 goto err;
1308
1309 if (l_old) {
1310 bpf_lru_node_set_ref(&l_old->lru_node);
1311
1312 /* per-cpu hash map can update value in-place */
1313 pcpu_copy_value(htab, htab_elem_get_ptr(l_old, key_size),
1314 value, onallcpus);
1315 } else {
David Verbeirend3bec012020-11-04 12:23:32 +01001316 pcpu_init_value(htab, htab_elem_get_ptr(l_new, key_size),
Martin KaFai Lau8f844932016-11-11 10:55:10 -08001317 value, onallcpus);
Alexei Starovoitov4fe84352017-03-07 20:00:13 -08001318 hlist_nulls_add_head_rcu(&l_new->hash_node, head);
Martin KaFai Lau8f844932016-11-11 10:55:10 -08001319 l_new = NULL;
1320 }
1321 ret = 0;
1322err:
Song Liu20b6cc32020-10-29 00:19:25 -07001323 htab_unlock_bucket(htab, b, hash, flags);
Martin KaFai Lau8f844932016-11-11 10:55:10 -08001324 if (l_new)
1325 bpf_lru_push_free(&htab->lru, &l_new->lru_node);
1326 return ret;
1327}
1328
Alexei Starovoitov15a07b32016-02-01 22:39:55 -08001329static int htab_percpu_map_update_elem(struct bpf_map *map, void *key,
1330 void *value, u64 map_flags)
1331{
1332 return __htab_percpu_map_update_elem(map, key, value, map_flags, false);
1333}
1334
Martin KaFai Lau8f844932016-11-11 10:55:10 -08001335static int htab_lru_percpu_map_update_elem(struct bpf_map *map, void *key,
1336 void *value, u64 map_flags)
1337{
1338 return __htab_lru_percpu_map_update_elem(map, key, value, map_flags,
1339 false);
1340}
1341
Alexei Starovoitov0f8e4bd2014-11-13 17:36:45 -08001342/* Called from syscall or from eBPF program */
1343static int htab_map_delete_elem(struct bpf_map *map, void *key)
1344{
1345 struct bpf_htab *htab = container_of(map, struct bpf_htab, map);
Alexei Starovoitov4fe84352017-03-07 20:00:13 -08001346 struct hlist_nulls_head *head;
tom.leiming@gmail.com688ecfe2015-12-29 22:40:27 +08001347 struct bucket *b;
Alexei Starovoitov0f8e4bd2014-11-13 17:36:45 -08001348 struct htab_elem *l;
1349 unsigned long flags;
1350 u32 hash, key_size;
Song Liu20b6cc32020-10-29 00:19:25 -07001351 int ret;
Alexei Starovoitov0f8e4bd2014-11-13 17:36:45 -08001352
Toke Høiland-Jørgensen694cea32021-06-24 18:05:54 +02001353 WARN_ON_ONCE(!rcu_read_lock_held() && !rcu_read_lock_trace_held() &&
1354 !rcu_read_lock_bh_held());
Alexei Starovoitov0f8e4bd2014-11-13 17:36:45 -08001355
1356 key_size = map->key_size;
1357
Daniel Borkmannc0203472018-08-22 23:49:37 +02001358 hash = htab_map_hash(key, key_size, htab->hashrnd);
tom.leiming@gmail.com688ecfe2015-12-29 22:40:27 +08001359 b = __select_bucket(htab, hash);
1360 head = &b->head;
Alexei Starovoitov0f8e4bd2014-11-13 17:36:45 -08001361
Song Liu20b6cc32020-10-29 00:19:25 -07001362 ret = htab_lock_bucket(htab, b, hash, &flags);
1363 if (ret)
1364 return ret;
Alexei Starovoitov0f8e4bd2014-11-13 17:36:45 -08001365
Alexei Starovoitov0f8e4bd2014-11-13 17:36:45 -08001366 l = lookup_elem_raw(head, hash, key, key_size);
1367
1368 if (l) {
Alexei Starovoitov4fe84352017-03-07 20:00:13 -08001369 hlist_nulls_del_rcu(&l->hash_node);
Alexei Starovoitov6c905982016-03-07 21:57:15 -08001370 free_htab_elem(htab, l);
Song Liu20b6cc32020-10-29 00:19:25 -07001371 } else {
1372 ret = -ENOENT;
Alexei Starovoitov0f8e4bd2014-11-13 17:36:45 -08001373 }
1374
Song Liu20b6cc32020-10-29 00:19:25 -07001375 htab_unlock_bucket(htab, b, hash, flags);
Alexei Starovoitov0f8e4bd2014-11-13 17:36:45 -08001376 return ret;
1377}
1378
Martin KaFai Lau29ba7322016-11-11 10:55:09 -08001379static int htab_lru_map_delete_elem(struct bpf_map *map, void *key)
1380{
1381 struct bpf_htab *htab = container_of(map, struct bpf_htab, map);
Alexei Starovoitov4fe84352017-03-07 20:00:13 -08001382 struct hlist_nulls_head *head;
Martin KaFai Lau29ba7322016-11-11 10:55:09 -08001383 struct bucket *b;
1384 struct htab_elem *l;
1385 unsigned long flags;
1386 u32 hash, key_size;
Song Liu20b6cc32020-10-29 00:19:25 -07001387 int ret;
Martin KaFai Lau29ba7322016-11-11 10:55:09 -08001388
Toke Høiland-Jørgensen694cea32021-06-24 18:05:54 +02001389 WARN_ON_ONCE(!rcu_read_lock_held() && !rcu_read_lock_trace_held() &&
1390 !rcu_read_lock_bh_held());
Martin KaFai Lau29ba7322016-11-11 10:55:09 -08001391
1392 key_size = map->key_size;
1393
Daniel Borkmannc0203472018-08-22 23:49:37 +02001394 hash = htab_map_hash(key, key_size, htab->hashrnd);
Martin KaFai Lau29ba7322016-11-11 10:55:09 -08001395 b = __select_bucket(htab, hash);
1396 head = &b->head;
1397
Song Liu20b6cc32020-10-29 00:19:25 -07001398 ret = htab_lock_bucket(htab, b, hash, &flags);
1399 if (ret)
1400 return ret;
Martin KaFai Lau29ba7322016-11-11 10:55:09 -08001401
1402 l = lookup_elem_raw(head, hash, key, key_size);
1403
Song Liu20b6cc32020-10-29 00:19:25 -07001404 if (l)
Alexei Starovoitov4fe84352017-03-07 20:00:13 -08001405 hlist_nulls_del_rcu(&l->hash_node);
Song Liu20b6cc32020-10-29 00:19:25 -07001406 else
1407 ret = -ENOENT;
Martin KaFai Lau29ba7322016-11-11 10:55:09 -08001408
Song Liu20b6cc32020-10-29 00:19:25 -07001409 htab_unlock_bucket(htab, b, hash, flags);
Martin KaFai Lau29ba7322016-11-11 10:55:09 -08001410 if (l)
Alexei Starovoitov68134662021-07-14 17:54:10 -07001411 htab_lru_push_free(htab, l);
Martin KaFai Lau29ba7322016-11-11 10:55:09 -08001412 return ret;
1413}
1414
Alexei Starovoitov0f8e4bd2014-11-13 17:36:45 -08001415static void delete_all_elements(struct bpf_htab *htab)
1416{
1417 int i;
1418
1419 for (i = 0; i < htab->n_buckets; i++) {
Alexei Starovoitov4fe84352017-03-07 20:00:13 -08001420 struct hlist_nulls_head *head = select_bucket(htab, i);
1421 struct hlist_nulls_node *n;
Alexei Starovoitov0f8e4bd2014-11-13 17:36:45 -08001422 struct htab_elem *l;
1423
Alexei Starovoitov4fe84352017-03-07 20:00:13 -08001424 hlist_nulls_for_each_entry_safe(l, n, head, hash_node) {
1425 hlist_nulls_del_rcu(&l->hash_node);
Alexei Starovoitov8c290e62017-03-21 19:05:04 -07001426 htab_elem_free(htab, l);
Alexei Starovoitov0f8e4bd2014-11-13 17:36:45 -08001427 }
1428 }
1429}
Martin KaFai Laubcc6b1b2017-03-22 10:00:34 -07001430
Alexei Starovoitov68134662021-07-14 17:54:10 -07001431static void htab_free_malloced_timers(struct bpf_htab *htab)
1432{
1433 int i;
1434
1435 rcu_read_lock();
1436 for (i = 0; i < htab->n_buckets; i++) {
1437 struct hlist_nulls_head *head = select_bucket(htab, i);
1438 struct hlist_nulls_node *n;
1439 struct htab_elem *l;
1440
Kumar Kartikeya Dwivedi14a324f2022-04-25 03:18:55 +05301441 hlist_nulls_for_each_entry(l, n, head, hash_node) {
1442 /* We don't reset or free kptr on uref dropping to zero,
1443 * hence just free timer.
1444 */
1445 bpf_timer_cancel_and_free(l->key +
1446 round_up(htab->map.key_size, 8) +
1447 htab->map.timer_off);
1448 }
Alexei Starovoitov68134662021-07-14 17:54:10 -07001449 cond_resched_rcu();
1450 }
1451 rcu_read_unlock();
1452}
1453
1454static void htab_map_free_timers(struct bpf_map *map)
1455{
1456 struct bpf_htab *htab = container_of(map, struct bpf_htab, map);
1457
Kumar Kartikeya Dwivedi14a324f2022-04-25 03:18:55 +05301458 /* We don't reset or free kptr on uref dropping to zero. */
1459 if (!map_value_has_timer(&htab->map))
Alexei Starovoitov68134662021-07-14 17:54:10 -07001460 return;
1461 if (!htab_is_prealloc(htab))
1462 htab_free_malloced_timers(htab);
1463 else
1464 htab_free_prealloced_timers(htab);
1465}
1466
Alexei Starovoitov0f8e4bd2014-11-13 17:36:45 -08001467/* Called when map->refcnt goes to zero, either from workqueue or from syscall */
1468static void htab_map_free(struct bpf_map *map)
1469{
1470 struct bpf_htab *htab = container_of(map, struct bpf_htab, map);
Song Liu20b6cc32020-10-29 00:19:25 -07001471 int i;
Alexei Starovoitov0f8e4bd2014-11-13 17:36:45 -08001472
Alexei Starovoitovbba1dc02020-06-29 21:33:39 -07001473 /* bpf_free_used_maps() or close(map_fd) will trigger this map_free callback.
1474 * bpf_free_used_maps() is called after bpf prog is no longer executing.
1475 * There is no need to synchronize_rcu() here to protect map elements.
Alexei Starovoitov0f8e4bd2014-11-13 17:36:45 -08001476 */
Alexei Starovoitov0f8e4bd2014-11-13 17:36:45 -08001477
Alexei Starovoitov6c905982016-03-07 21:57:15 -08001478 /* some of free_htab_elem() callbacks for elements of this map may
1479 * not have executed. Wait for them.
Alexei Starovoitov0f8e4bd2014-11-13 17:36:45 -08001480 */
Alexei Starovoitov6c905982016-03-07 21:57:15 -08001481 rcu_barrier();
Kumar Kartikeya Dwivedi14a324f2022-04-25 03:18:55 +05301482 if (!htab_is_prealloc(htab)) {
Alexei Starovoitov6c905982016-03-07 21:57:15 -08001483 delete_all_elements(htab);
Kumar Kartikeya Dwivedi14a324f2022-04-25 03:18:55 +05301484 } else {
1485 htab_free_prealloced_kptrs(htab);
Martin KaFai Lau29ba7322016-11-11 10:55:09 -08001486 prealloc_destroy(htab);
Kumar Kartikeya Dwivedi14a324f2022-04-25 03:18:55 +05301487 }
Martin KaFai Lau29ba7322016-11-11 10:55:09 -08001488
Kumar Kartikeya Dwivedi14a324f2022-04-25 03:18:55 +05301489 bpf_map_free_kptr_off_tab(map);
Alexei Starovoitova6ed3ea2016-08-05 14:01:27 -07001490 free_percpu(htab->extra_elems);
Daniel Borkmannd407bd22017-01-18 15:14:17 +01001491 bpf_map_area_free(htab->buckets);
Song Liu20b6cc32020-10-29 00:19:25 -07001492 for (i = 0; i < HASHTAB_MAP_LOCK_COUNT; i++)
1493 free_percpu(htab->map_locked[i]);
Eric Dumazet8aaeed82020-11-02 03:41:00 -08001494 lockdep_unregister_key(&htab->lockdep_key);
Alexei Starovoitov0f8e4bd2014-11-13 17:36:45 -08001495 kfree(htab);
1496}
1497
Yonghong Song699c86d2018-08-09 08:55:20 -07001498static void htab_map_seq_show_elem(struct bpf_map *map, void *key,
1499 struct seq_file *m)
1500{
1501 void *value;
1502
1503 rcu_read_lock();
1504
1505 value = htab_map_lookup_elem(map, key);
1506 if (!value) {
1507 rcu_read_unlock();
1508 return;
1509 }
1510
1511 btf_type_seq_show(map->btf, map->btf_key_type_id, key, m);
1512 seq_puts(m, ": ");
1513 btf_type_seq_show(map->btf, map->btf_value_type_id, value, m);
1514 seq_puts(m, "\n");
1515
1516 rcu_read_unlock();
1517}
1518
Denis Salopek3e87f192021-05-11 23:00:04 +02001519static int __htab_map_lookup_and_delete_elem(struct bpf_map *map, void *key,
1520 void *value, bool is_lru_map,
1521 bool is_percpu, u64 flags)
1522{
1523 struct bpf_htab *htab = container_of(map, struct bpf_htab, map);
1524 struct hlist_nulls_head *head;
1525 unsigned long bflags;
1526 struct htab_elem *l;
1527 u32 hash, key_size;
1528 struct bucket *b;
1529 int ret;
1530
1531 key_size = map->key_size;
1532
1533 hash = htab_map_hash(key, key_size, htab->hashrnd);
1534 b = __select_bucket(htab, hash);
1535 head = &b->head;
1536
1537 ret = htab_lock_bucket(htab, b, hash, &bflags);
1538 if (ret)
1539 return ret;
1540
1541 l = lookup_elem_raw(head, hash, key, key_size);
1542 if (!l) {
1543 ret = -ENOENT;
1544 } else {
1545 if (is_percpu) {
1546 u32 roundup_value_size = round_up(map->value_size, 8);
1547 void __percpu *pptr;
1548 int off = 0, cpu;
1549
1550 pptr = htab_elem_get_ptr(l, key_size);
1551 for_each_possible_cpu(cpu) {
1552 bpf_long_memcpy(value + off,
1553 per_cpu_ptr(pptr, cpu),
1554 roundup_value_size);
1555 off += roundup_value_size;
1556 }
1557 } else {
1558 u32 roundup_key_size = round_up(map->key_size, 8);
1559
1560 if (flags & BPF_F_LOCK)
1561 copy_map_value_locked(map, value, l->key +
1562 roundup_key_size,
1563 true);
1564 else
1565 copy_map_value(map, value, l->key +
1566 roundup_key_size);
Alexei Starovoitov68134662021-07-14 17:54:10 -07001567 check_and_init_map_value(map, value);
Denis Salopek3e87f192021-05-11 23:00:04 +02001568 }
1569
1570 hlist_nulls_del_rcu(&l->hash_node);
1571 if (!is_lru_map)
1572 free_htab_elem(htab, l);
1573 }
1574
1575 htab_unlock_bucket(htab, b, hash, bflags);
1576
1577 if (is_lru_map && l)
Alexei Starovoitov68134662021-07-14 17:54:10 -07001578 htab_lru_push_free(htab, l);
Denis Salopek3e87f192021-05-11 23:00:04 +02001579
1580 return ret;
1581}
1582
1583static int htab_map_lookup_and_delete_elem(struct bpf_map *map, void *key,
1584 void *value, u64 flags)
1585{
1586 return __htab_map_lookup_and_delete_elem(map, key, value, false, false,
1587 flags);
1588}
1589
1590static int htab_percpu_map_lookup_and_delete_elem(struct bpf_map *map,
1591 void *key, void *value,
1592 u64 flags)
1593{
1594 return __htab_map_lookup_and_delete_elem(map, key, value, false, true,
1595 flags);
1596}
1597
1598static int htab_lru_map_lookup_and_delete_elem(struct bpf_map *map, void *key,
1599 void *value, u64 flags)
1600{
1601 return __htab_map_lookup_and_delete_elem(map, key, value, true, false,
1602 flags);
1603}
1604
1605static int htab_lru_percpu_map_lookup_and_delete_elem(struct bpf_map *map,
1606 void *key, void *value,
1607 u64 flags)
1608{
1609 return __htab_map_lookup_and_delete_elem(map, key, value, true, true,
1610 flags);
1611}
1612
Yonghong Song05799632020-01-15 10:43:04 -08001613static int
1614__htab_map_lookup_and_delete_batch(struct bpf_map *map,
1615 const union bpf_attr *attr,
1616 union bpf_attr __user *uattr,
1617 bool do_delete, bool is_lru_map,
1618 bool is_percpu)
1619{
1620 struct bpf_htab *htab = container_of(map, struct bpf_htab, map);
1621 u32 bucket_cnt, total, key_size, value_size, roundup_key_size;
1622 void *keys = NULL, *values = NULL, *value, *dst_key, *dst_val;
1623 void __user *uvalues = u64_to_user_ptr(attr->batch.values);
1624 void __user *ukeys = u64_to_user_ptr(attr->batch.keys);
Lukas Bulwahn2f4b0312020-12-07 13:37:20 +01001625 void __user *ubatch = u64_to_user_ptr(attr->batch.in_batch);
Takshak Chahande9263ddd2022-05-10 01:22:20 -07001626 u32 batch, max_count, size, bucket_size, map_id;
Yonghong Songb9aff382020-02-19 15:47:57 -08001627 struct htab_elem *node_to_free = NULL;
Yonghong Song05799632020-01-15 10:43:04 -08001628 u64 elem_map_flags, map_flags;
1629 struct hlist_nulls_head *head;
1630 struct hlist_nulls_node *n;
Brian Vazquez492e0d02020-02-18 09:25:52 -08001631 unsigned long flags = 0;
1632 bool locked = false;
Yonghong Song05799632020-01-15 10:43:04 -08001633 struct htab_elem *l;
1634 struct bucket *b;
1635 int ret = 0;
1636
1637 elem_map_flags = attr->batch.elem_flags;
1638 if ((elem_map_flags & ~BPF_F_LOCK) ||
1639 ((elem_map_flags & BPF_F_LOCK) && !map_value_has_spin_lock(map)))
1640 return -EINVAL;
1641
1642 map_flags = attr->batch.flags;
1643 if (map_flags)
1644 return -EINVAL;
1645
1646 max_count = attr->batch.count;
1647 if (!max_count)
1648 return 0;
1649
1650 if (put_user(0, &uattr->batch.count))
1651 return -EFAULT;
1652
1653 batch = 0;
1654 if (ubatch && copy_from_user(&batch, ubatch, sizeof(batch)))
1655 return -EFAULT;
1656
1657 if (batch >= htab->n_buckets)
1658 return -ENOENT;
1659
1660 key_size = htab->map.key_size;
1661 roundup_key_size = round_up(htab->map.key_size, 8);
1662 value_size = htab->map.value_size;
1663 size = round_up(value_size, 8);
1664 if (is_percpu)
1665 value_size = size * num_possible_cpus();
1666 total = 0;
1667 /* while experimenting with hash tables with sizes ranging from 10 to
Tom Rixc561d112022-02-20 10:40:55 -08001668 * 1000, it was observed that a bucket can have up to 5 entries.
Yonghong Song05799632020-01-15 10:43:04 -08001669 */
1670 bucket_size = 5;
1671
1672alloc:
1673 /* We cannot do copy_from_user or copy_to_user inside
1674 * the rcu_read_lock. Allocate enough space here.
1675 */
Tatsuhiko Yasumatsuc4eb1f42021-08-07 00:04:18 +09001676 keys = kvmalloc_array(key_size, bucket_size, GFP_USER | __GFP_NOWARN);
1677 values = kvmalloc_array(value_size, bucket_size, GFP_USER | __GFP_NOWARN);
Yonghong Song05799632020-01-15 10:43:04 -08001678 if (!keys || !values) {
1679 ret = -ENOMEM;
1680 goto after_loop;
1681 }
1682
1683again:
Thomas Gleixner085fee12020-02-24 15:01:48 +01001684 bpf_disable_instrumentation();
Yonghong Song05799632020-01-15 10:43:04 -08001685 rcu_read_lock();
1686again_nocopy:
1687 dst_key = keys;
1688 dst_val = values;
1689 b = &htab->buckets[batch];
1690 head = &b->head;
Brian Vazquez492e0d02020-02-18 09:25:52 -08001691 /* do not grab the lock unless need it (bucket_cnt > 0). */
Song Liu20b6cc32020-10-29 00:19:25 -07001692 if (locked) {
1693 ret = htab_lock_bucket(htab, b, batch, &flags);
1694 if (ret)
1695 goto next_batch;
1696 }
Yonghong Song05799632020-01-15 10:43:04 -08001697
1698 bucket_cnt = 0;
1699 hlist_nulls_for_each_entry_rcu(l, n, head, hash_node)
1700 bucket_cnt++;
1701
Brian Vazquez492e0d02020-02-18 09:25:52 -08001702 if (bucket_cnt && !locked) {
1703 locked = true;
1704 goto again_nocopy;
1705 }
1706
Yonghong Song05799632020-01-15 10:43:04 -08001707 if (bucket_cnt > (max_count - total)) {
1708 if (total == 0)
1709 ret = -ENOSPC;
Brian Vazquez492e0d02020-02-18 09:25:52 -08001710 /* Note that since bucket_cnt > 0 here, it is implicit
1711 * that the locked was grabbed, so release it.
1712 */
Song Liu20b6cc32020-10-29 00:19:25 -07001713 htab_unlock_bucket(htab, b, batch, flags);
Yonghong Song05799632020-01-15 10:43:04 -08001714 rcu_read_unlock();
Thomas Gleixner085fee12020-02-24 15:01:48 +01001715 bpf_enable_instrumentation();
Yonghong Song05799632020-01-15 10:43:04 -08001716 goto after_loop;
1717 }
1718
1719 if (bucket_cnt > bucket_size) {
1720 bucket_size = bucket_cnt;
Brian Vazquez492e0d02020-02-18 09:25:52 -08001721 /* Note that since bucket_cnt > 0 here, it is implicit
1722 * that the locked was grabbed, so release it.
1723 */
Song Liu20b6cc32020-10-29 00:19:25 -07001724 htab_unlock_bucket(htab, b, batch, flags);
Yonghong Song05799632020-01-15 10:43:04 -08001725 rcu_read_unlock();
Thomas Gleixner085fee12020-02-24 15:01:48 +01001726 bpf_enable_instrumentation();
Yonghong Song05799632020-01-15 10:43:04 -08001727 kvfree(keys);
1728 kvfree(values);
1729 goto alloc;
1730 }
1731
Brian Vazquez492e0d02020-02-18 09:25:52 -08001732 /* Next block is only safe to run if you have grabbed the lock */
1733 if (!locked)
1734 goto next_batch;
1735
Yonghong Song05799632020-01-15 10:43:04 -08001736 hlist_nulls_for_each_entry_safe(l, n, head, hash_node) {
1737 memcpy(dst_key, l->key, key_size);
1738
1739 if (is_percpu) {
1740 int off = 0, cpu;
1741 void __percpu *pptr;
1742
1743 pptr = htab_elem_get_ptr(l, map->key_size);
1744 for_each_possible_cpu(cpu) {
1745 bpf_long_memcpy(dst_val + off,
1746 per_cpu_ptr(pptr, cpu), size);
1747 off += size;
1748 }
1749 } else {
1750 value = l->key + roundup_key_size;
Takshak Chahande9263ddd2022-05-10 01:22:20 -07001751 if (map->map_type == BPF_MAP_TYPE_HASH_OF_MAPS) {
1752 struct bpf_map **inner_map = value;
1753
1754 /* Actual value is the id of the inner map */
1755 map_id = map->ops->map_fd_sys_lookup_elem(*inner_map);
1756 value = &map_id;
1757 }
1758
Yonghong Song05799632020-01-15 10:43:04 -08001759 if (elem_map_flags & BPF_F_LOCK)
1760 copy_map_value_locked(map, dst_val, value,
1761 true);
1762 else
1763 copy_map_value(map, dst_val, value);
Alexei Starovoitov68134662021-07-14 17:54:10 -07001764 check_and_init_map_value(map, dst_val);
Yonghong Song05799632020-01-15 10:43:04 -08001765 }
1766 if (do_delete) {
1767 hlist_nulls_del_rcu(&l->hash_node);
Yonghong Songb9aff382020-02-19 15:47:57 -08001768
1769 /* bpf_lru_push_free() will acquire lru_lock, which
1770 * may cause deadlock. See comments in function
1771 * prealloc_lru_pop(). Let us do bpf_lru_push_free()
1772 * after releasing the bucket lock.
1773 */
1774 if (is_lru_map) {
1775 l->batch_flink = node_to_free;
1776 node_to_free = l;
1777 } else {
Yonghong Song05799632020-01-15 10:43:04 -08001778 free_htab_elem(htab, l);
Yonghong Songb9aff382020-02-19 15:47:57 -08001779 }
Yonghong Song05799632020-01-15 10:43:04 -08001780 }
1781 dst_key += key_size;
1782 dst_val += value_size;
1783 }
1784
Song Liu20b6cc32020-10-29 00:19:25 -07001785 htab_unlock_bucket(htab, b, batch, flags);
Brian Vazquez492e0d02020-02-18 09:25:52 -08001786 locked = false;
Yonghong Songb9aff382020-02-19 15:47:57 -08001787
1788 while (node_to_free) {
1789 l = node_to_free;
1790 node_to_free = node_to_free->batch_flink;
Alexei Starovoitov68134662021-07-14 17:54:10 -07001791 htab_lru_push_free(htab, l);
Yonghong Songb9aff382020-02-19 15:47:57 -08001792 }
1793
Brian Vazquez492e0d02020-02-18 09:25:52 -08001794next_batch:
Yonghong Song05799632020-01-15 10:43:04 -08001795 /* If we are not copying data, we can go to next bucket and avoid
1796 * unlocking the rcu.
1797 */
1798 if (!bucket_cnt && (batch + 1 < htab->n_buckets)) {
1799 batch++;
1800 goto again_nocopy;
1801 }
1802
1803 rcu_read_unlock();
Thomas Gleixner085fee12020-02-24 15:01:48 +01001804 bpf_enable_instrumentation();
Yonghong Song05799632020-01-15 10:43:04 -08001805 if (bucket_cnt && (copy_to_user(ukeys + total * key_size, keys,
1806 key_size * bucket_cnt) ||
1807 copy_to_user(uvalues + total * value_size, values,
1808 value_size * bucket_cnt))) {
1809 ret = -EFAULT;
1810 goto after_loop;
1811 }
1812
1813 total += bucket_cnt;
1814 batch++;
1815 if (batch >= htab->n_buckets) {
1816 ret = -ENOENT;
1817 goto after_loop;
1818 }
1819 goto again;
1820
1821after_loop:
1822 if (ret == -EFAULT)
1823 goto out;
1824
1825 /* copy # of entries and next batch */
1826 ubatch = u64_to_user_ptr(attr->batch.out_batch);
1827 if (copy_to_user(ubatch, &batch, sizeof(batch)) ||
1828 put_user(total, &uattr->batch.count))
1829 ret = -EFAULT;
1830
1831out:
1832 kvfree(keys);
1833 kvfree(values);
1834 return ret;
1835}
1836
1837static int
1838htab_percpu_map_lookup_batch(struct bpf_map *map, const union bpf_attr *attr,
1839 union bpf_attr __user *uattr)
1840{
1841 return __htab_map_lookup_and_delete_batch(map, attr, uattr, false,
1842 false, true);
1843}
1844
1845static int
1846htab_percpu_map_lookup_and_delete_batch(struct bpf_map *map,
1847 const union bpf_attr *attr,
1848 union bpf_attr __user *uattr)
1849{
1850 return __htab_map_lookup_and_delete_batch(map, attr, uattr, true,
1851 false, true);
1852}
1853
1854static int
1855htab_map_lookup_batch(struct bpf_map *map, const union bpf_attr *attr,
1856 union bpf_attr __user *uattr)
1857{
1858 return __htab_map_lookup_and_delete_batch(map, attr, uattr, false,
1859 false, false);
1860}
1861
1862static int
1863htab_map_lookup_and_delete_batch(struct bpf_map *map,
1864 const union bpf_attr *attr,
1865 union bpf_attr __user *uattr)
1866{
1867 return __htab_map_lookup_and_delete_batch(map, attr, uattr, true,
1868 false, false);
1869}
1870
1871static int
1872htab_lru_percpu_map_lookup_batch(struct bpf_map *map,
1873 const union bpf_attr *attr,
1874 union bpf_attr __user *uattr)
1875{
1876 return __htab_map_lookup_and_delete_batch(map, attr, uattr, false,
1877 true, true);
1878}
1879
1880static int
1881htab_lru_percpu_map_lookup_and_delete_batch(struct bpf_map *map,
1882 const union bpf_attr *attr,
1883 union bpf_attr __user *uattr)
1884{
1885 return __htab_map_lookup_and_delete_batch(map, attr, uattr, true,
1886 true, true);
1887}
1888
1889static int
1890htab_lru_map_lookup_batch(struct bpf_map *map, const union bpf_attr *attr,
1891 union bpf_attr __user *uattr)
1892{
1893 return __htab_map_lookup_and_delete_batch(map, attr, uattr, false,
1894 true, false);
1895}
1896
1897static int
1898htab_lru_map_lookup_and_delete_batch(struct bpf_map *map,
1899 const union bpf_attr *attr,
1900 union bpf_attr __user *uattr)
1901{
1902 return __htab_map_lookup_and_delete_batch(map, attr, uattr, true,
1903 true, false);
1904}
1905
Yonghong Songd6c45032020-07-23 11:41:14 -07001906struct bpf_iter_seq_hash_map_info {
1907 struct bpf_map *map;
1908 struct bpf_htab *htab;
1909 void *percpu_value_buf; // non-zero means percpu hash
Yonghong Songd6c45032020-07-23 11:41:14 -07001910 u32 bucket_id;
1911 u32 skip_elems;
1912};
1913
1914static struct htab_elem *
1915bpf_hash_map_seq_find_next(struct bpf_iter_seq_hash_map_info *info,
1916 struct htab_elem *prev_elem)
1917{
1918 const struct bpf_htab *htab = info->htab;
Yonghong Songd6c45032020-07-23 11:41:14 -07001919 u32 skip_elems = info->skip_elems;
1920 u32 bucket_id = info->bucket_id;
1921 struct hlist_nulls_head *head;
1922 struct hlist_nulls_node *n;
1923 struct htab_elem *elem;
1924 struct bucket *b;
1925 u32 i, count;
1926
1927 if (bucket_id >= htab->n_buckets)
1928 return NULL;
1929
1930 /* try to find next elem in the same bucket */
1931 if (prev_elem) {
1932 /* no update/deletion on this bucket, prev_elem should be still valid
1933 * and we won't skip elements.
1934 */
1935 n = rcu_dereference_raw(hlist_nulls_next_rcu(&prev_elem->hash_node));
1936 elem = hlist_nulls_entry_safe(n, struct htab_elem, hash_node);
1937 if (elem)
1938 return elem;
1939
1940 /* not found, unlock and go to the next bucket */
1941 b = &htab->buckets[bucket_id++];
Yonghong Songdc0988b2020-09-02 16:53:40 -07001942 rcu_read_unlock();
Yonghong Songd6c45032020-07-23 11:41:14 -07001943 skip_elems = 0;
1944 }
1945
1946 for (i = bucket_id; i < htab->n_buckets; i++) {
1947 b = &htab->buckets[i];
Yonghong Songdc0988b2020-09-02 16:53:40 -07001948 rcu_read_lock();
Yonghong Songd6c45032020-07-23 11:41:14 -07001949
1950 count = 0;
1951 head = &b->head;
1952 hlist_nulls_for_each_entry_rcu(elem, n, head, hash_node) {
1953 if (count >= skip_elems) {
Yonghong Songd6c45032020-07-23 11:41:14 -07001954 info->bucket_id = i;
1955 info->skip_elems = count;
1956 return elem;
1957 }
1958 count++;
1959 }
1960
Yonghong Songdc0988b2020-09-02 16:53:40 -07001961 rcu_read_unlock();
Yonghong Songd6c45032020-07-23 11:41:14 -07001962 skip_elems = 0;
1963 }
1964
1965 info->bucket_id = i;
1966 info->skip_elems = 0;
1967 return NULL;
1968}
1969
1970static void *bpf_hash_map_seq_start(struct seq_file *seq, loff_t *pos)
1971{
1972 struct bpf_iter_seq_hash_map_info *info = seq->private;
1973 struct htab_elem *elem;
1974
1975 elem = bpf_hash_map_seq_find_next(info, NULL);
1976 if (!elem)
1977 return NULL;
1978
1979 if (*pos == 0)
1980 ++*pos;
1981 return elem;
1982}
1983
1984static void *bpf_hash_map_seq_next(struct seq_file *seq, void *v, loff_t *pos)
1985{
1986 struct bpf_iter_seq_hash_map_info *info = seq->private;
1987
1988 ++*pos;
1989 ++info->skip_elems;
1990 return bpf_hash_map_seq_find_next(info, v);
1991}
1992
1993static int __bpf_hash_map_seq_show(struct seq_file *seq, struct htab_elem *elem)
1994{
1995 struct bpf_iter_seq_hash_map_info *info = seq->private;
1996 u32 roundup_key_size, roundup_value_size;
1997 struct bpf_iter__bpf_map_elem ctx = {};
1998 struct bpf_map *map = info->map;
1999 struct bpf_iter_meta meta;
2000 int ret = 0, off = 0, cpu;
2001 struct bpf_prog *prog;
2002 void __percpu *pptr;
2003
2004 meta.seq = seq;
2005 prog = bpf_iter_get_info(&meta, elem == NULL);
2006 if (prog) {
2007 ctx.meta = &meta;
2008 ctx.map = info->map;
2009 if (elem) {
2010 roundup_key_size = round_up(map->key_size, 8);
2011 ctx.key = elem->key;
2012 if (!info->percpu_value_buf) {
2013 ctx.value = elem->key + roundup_key_size;
2014 } else {
2015 roundup_value_size = round_up(map->value_size, 8);
2016 pptr = htab_elem_get_ptr(elem, map->key_size);
2017 for_each_possible_cpu(cpu) {
2018 bpf_long_memcpy(info->percpu_value_buf + off,
2019 per_cpu_ptr(pptr, cpu),
2020 roundup_value_size);
2021 off += roundup_value_size;
2022 }
2023 ctx.value = info->percpu_value_buf;
2024 }
2025 }
2026 ret = bpf_iter_run_prog(prog, &ctx);
2027 }
2028
2029 return ret;
2030}
2031
2032static int bpf_hash_map_seq_show(struct seq_file *seq, void *v)
2033{
2034 return __bpf_hash_map_seq_show(seq, v);
2035}
2036
2037static void bpf_hash_map_seq_stop(struct seq_file *seq, void *v)
2038{
Yonghong Songd6c45032020-07-23 11:41:14 -07002039 if (!v)
2040 (void)__bpf_hash_map_seq_show(seq, NULL);
2041 else
Yonghong Songdc0988b2020-09-02 16:53:40 -07002042 rcu_read_unlock();
Yonghong Songd6c45032020-07-23 11:41:14 -07002043}
2044
2045static int bpf_iter_init_hash_map(void *priv_data,
2046 struct bpf_iter_aux_info *aux)
2047{
2048 struct bpf_iter_seq_hash_map_info *seq_info = priv_data;
2049 struct bpf_map *map = aux->map;
2050 void *value_buf;
2051 u32 buf_size;
2052
2053 if (map->map_type == BPF_MAP_TYPE_PERCPU_HASH ||
2054 map->map_type == BPF_MAP_TYPE_LRU_PERCPU_HASH) {
2055 buf_size = round_up(map->value_size, 8) * num_possible_cpus();
2056 value_buf = kmalloc(buf_size, GFP_USER | __GFP_NOWARN);
2057 if (!value_buf)
2058 return -ENOMEM;
2059
2060 seq_info->percpu_value_buf = value_buf;
2061 }
2062
Hou Taoef1e93d2022-08-10 16:05:31 +08002063 bpf_map_inc_with_uref(map);
Yonghong Songd6c45032020-07-23 11:41:14 -07002064 seq_info->map = map;
2065 seq_info->htab = container_of(map, struct bpf_htab, map);
2066 return 0;
2067}
2068
2069static void bpf_iter_fini_hash_map(void *priv_data)
2070{
2071 struct bpf_iter_seq_hash_map_info *seq_info = priv_data;
2072
Hou Taoef1e93d2022-08-10 16:05:31 +08002073 bpf_map_put_with_uref(seq_info->map);
Yonghong Songd6c45032020-07-23 11:41:14 -07002074 kfree(seq_info->percpu_value_buf);
2075}
2076
2077static const struct seq_operations bpf_hash_map_seq_ops = {
2078 .start = bpf_hash_map_seq_start,
2079 .next = bpf_hash_map_seq_next,
2080 .stop = bpf_hash_map_seq_stop,
2081 .show = bpf_hash_map_seq_show,
2082};
2083
2084static const struct bpf_iter_seq_info iter_seq_info = {
2085 .seq_ops = &bpf_hash_map_seq_ops,
2086 .init_seq_private = bpf_iter_init_hash_map,
2087 .fini_seq_private = bpf_iter_fini_hash_map,
2088 .seq_priv_size = sizeof(struct bpf_iter_seq_hash_map_info),
2089};
2090
Kees Cook102acba2021-09-28 16:09:46 -07002091static int bpf_for_each_hash_elem(struct bpf_map *map, bpf_callback_t callback_fn,
Yonghong Song314ee052021-02-26 12:49:27 -08002092 void *callback_ctx, u64 flags)
2093{
2094 struct bpf_htab *htab = container_of(map, struct bpf_htab, map);
2095 struct hlist_nulls_head *head;
2096 struct hlist_nulls_node *n;
2097 struct htab_elem *elem;
2098 u32 roundup_key_size;
2099 int i, num_elems = 0;
2100 void __percpu *pptr;
2101 struct bucket *b;
2102 void *key, *val;
2103 bool is_percpu;
2104 u64 ret = 0;
2105
2106 if (flags != 0)
2107 return -EINVAL;
2108
2109 is_percpu = htab_is_percpu(htab);
2110
2111 roundup_key_size = round_up(map->key_size, 8);
2112 /* disable migration so percpu value prepared here will be the
2113 * same as the one seen by the bpf program with bpf_map_lookup_elem().
2114 */
2115 if (is_percpu)
2116 migrate_disable();
2117 for (i = 0; i < htab->n_buckets; i++) {
2118 b = &htab->buckets[i];
2119 rcu_read_lock();
2120 head = &b->head;
2121 hlist_nulls_for_each_entry_rcu(elem, n, head, hash_node) {
2122 key = elem->key;
2123 if (is_percpu) {
2124 /* current cpu value for percpu map */
2125 pptr = htab_elem_get_ptr(elem, map->key_size);
2126 val = this_cpu_ptr(pptr);
2127 } else {
2128 val = elem->key + roundup_key_size;
2129 }
2130 num_elems++;
Kees Cook102acba2021-09-28 16:09:46 -07002131 ret = callback_fn((u64)(long)map, (u64)(long)key,
2132 (u64)(long)val, (u64)(long)callback_ctx, 0);
Yonghong Song314ee052021-02-26 12:49:27 -08002133 /* return value: 0 - continue, 1 - stop and return */
2134 if (ret) {
2135 rcu_read_unlock();
2136 goto out;
2137 }
2138 }
2139 rcu_read_unlock();
2140 }
2141out:
2142 if (is_percpu)
2143 migrate_enable();
2144 return num_elems;
2145}
2146
Menglong Dongc317ab72022-04-25 21:32:47 +08002147BTF_ID_LIST_SINGLE(htab_map_btf_ids, struct, bpf_htab)
Johannes Berg40077e02017-04-11 15:34:58 +02002148const struct bpf_map_ops htab_map_ops = {
Martin KaFai Lauf4d05252020-08-27 18:18:06 -07002149 .map_meta_equal = bpf_map_meta_equal,
Jakub Kicinski9328e0d2018-01-11 20:29:05 -08002150 .map_alloc_check = htab_map_alloc_check,
Alexei Starovoitov0f8e4bd2014-11-13 17:36:45 -08002151 .map_alloc = htab_map_alloc,
2152 .map_free = htab_map_free,
2153 .map_get_next_key = htab_map_get_next_key,
Alexei Starovoitov68134662021-07-14 17:54:10 -07002154 .map_release_uref = htab_map_free_timers,
Alexei Starovoitov0f8e4bd2014-11-13 17:36:45 -08002155 .map_lookup_elem = htab_map_lookup_elem,
Denis Salopek3e87f192021-05-11 23:00:04 +02002156 .map_lookup_and_delete_elem = htab_map_lookup_and_delete_elem,
Alexei Starovoitov0f8e4bd2014-11-13 17:36:45 -08002157 .map_update_elem = htab_map_update_elem,
2158 .map_delete_elem = htab_map_delete_elem,
Alexei Starovoitov9015d2f2017-03-15 18:26:43 -07002159 .map_gen_lookup = htab_map_gen_lookup,
Yonghong Song699c86d2018-08-09 08:55:20 -07002160 .map_seq_show_elem = htab_map_seq_show_elem,
Yonghong Song314ee052021-02-26 12:49:27 -08002161 .map_set_for_each_callback_args = map_set_for_each_callback_args,
2162 .map_for_each_callback = bpf_for_each_hash_elem,
Yonghong Song05799632020-01-15 10:43:04 -08002163 BATCH_OPS(htab),
Menglong Dongc317ab72022-04-25 21:32:47 +08002164 .map_btf_id = &htab_map_btf_ids[0],
Yonghong Songd6c45032020-07-23 11:41:14 -07002165 .iter_seq_info = &iter_seq_info,
Alexei Starovoitov0f8e4bd2014-11-13 17:36:45 -08002166};
2167
Johannes Berg40077e02017-04-11 15:34:58 +02002168const struct bpf_map_ops htab_lru_map_ops = {
Martin KaFai Lauf4d05252020-08-27 18:18:06 -07002169 .map_meta_equal = bpf_map_meta_equal,
Jakub Kicinski9328e0d2018-01-11 20:29:05 -08002170 .map_alloc_check = htab_map_alloc_check,
Martin KaFai Lau29ba7322016-11-11 10:55:09 -08002171 .map_alloc = htab_map_alloc,
2172 .map_free = htab_map_free,
2173 .map_get_next_key = htab_map_get_next_key,
Alexei Starovoitov68134662021-07-14 17:54:10 -07002174 .map_release_uref = htab_map_free_timers,
Martin KaFai Lau29ba7322016-11-11 10:55:09 -08002175 .map_lookup_elem = htab_lru_map_lookup_elem,
Denis Salopek3e87f192021-05-11 23:00:04 +02002176 .map_lookup_and_delete_elem = htab_lru_map_lookup_and_delete_elem,
Daniel Borkmann50b045a2019-05-14 01:18:56 +02002177 .map_lookup_elem_sys_only = htab_lru_map_lookup_elem_sys,
Martin KaFai Lau29ba7322016-11-11 10:55:09 -08002178 .map_update_elem = htab_lru_map_update_elem,
2179 .map_delete_elem = htab_lru_map_delete_elem,
Martin KaFai Laucc555422017-08-31 23:27:12 -07002180 .map_gen_lookup = htab_lru_map_gen_lookup,
Yonghong Song699c86d2018-08-09 08:55:20 -07002181 .map_seq_show_elem = htab_map_seq_show_elem,
Yonghong Song314ee052021-02-26 12:49:27 -08002182 .map_set_for_each_callback_args = map_set_for_each_callback_args,
2183 .map_for_each_callback = bpf_for_each_hash_elem,
Yonghong Song05799632020-01-15 10:43:04 -08002184 BATCH_OPS(htab_lru),
Menglong Dongc317ab72022-04-25 21:32:47 +08002185 .map_btf_id = &htab_map_btf_ids[0],
Yonghong Songd6c45032020-07-23 11:41:14 -07002186 .iter_seq_info = &iter_seq_info,
Martin KaFai Lau29ba7322016-11-11 10:55:09 -08002187};
2188
Alexei Starovoitov824bd0c2016-02-01 22:39:53 -08002189/* Called from eBPF program */
2190static void *htab_percpu_map_lookup_elem(struct bpf_map *map, void *key)
2191{
2192 struct htab_elem *l = __htab_map_lookup_elem(map, key);
2193
2194 if (l)
2195 return this_cpu_ptr(htab_elem_get_ptr(l, map->key_size));
2196 else
2197 return NULL;
2198}
2199
Feng Zhou07343112022-05-11 17:38:53 +08002200static void *htab_percpu_map_lookup_percpu_elem(struct bpf_map *map, void *key, u32 cpu)
2201{
2202 struct htab_elem *l;
2203
2204 if (cpu >= nr_cpu_ids)
2205 return NULL;
2206
2207 l = __htab_map_lookup_elem(map, key);
2208 if (l)
2209 return per_cpu_ptr(htab_elem_get_ptr(l, map->key_size), cpu);
2210 else
2211 return NULL;
2212}
2213
Martin KaFai Lau8f844932016-11-11 10:55:10 -08002214static void *htab_lru_percpu_map_lookup_elem(struct bpf_map *map, void *key)
2215{
2216 struct htab_elem *l = __htab_map_lookup_elem(map, key);
2217
2218 if (l) {
2219 bpf_lru_node_set_ref(&l->lru_node);
2220 return this_cpu_ptr(htab_elem_get_ptr(l, map->key_size));
2221 }
2222
2223 return NULL;
2224}
2225
Feng Zhou07343112022-05-11 17:38:53 +08002226static void *htab_lru_percpu_map_lookup_percpu_elem(struct bpf_map *map, void *key, u32 cpu)
2227{
2228 struct htab_elem *l;
2229
2230 if (cpu >= nr_cpu_ids)
2231 return NULL;
2232
2233 l = __htab_map_lookup_elem(map, key);
2234 if (l) {
2235 bpf_lru_node_set_ref(&l->lru_node);
2236 return per_cpu_ptr(htab_elem_get_ptr(l, map->key_size), cpu);
2237 }
2238
2239 return NULL;
2240}
2241
Alexei Starovoitov15a07b32016-02-01 22:39:55 -08002242int bpf_percpu_hash_copy(struct bpf_map *map, void *key, void *value)
2243{
2244 struct htab_elem *l;
2245 void __percpu *pptr;
2246 int ret = -ENOENT;
2247 int cpu, off = 0;
2248 u32 size;
2249
2250 /* per_cpu areas are zero-filled and bpf programs can only
2251 * access 'value_size' of them, so copying rounded areas
2252 * will not leak any kernel data
2253 */
2254 size = round_up(map->value_size, 8);
2255 rcu_read_lock();
2256 l = __htab_map_lookup_elem(map, key);
2257 if (!l)
2258 goto out;
Daniel Borkmann50b045a2019-05-14 01:18:56 +02002259 /* We do not mark LRU map element here in order to not mess up
2260 * eviction heuristics when user space does a map walk.
2261 */
Alexei Starovoitov15a07b32016-02-01 22:39:55 -08002262 pptr = htab_elem_get_ptr(l, map->key_size);
2263 for_each_possible_cpu(cpu) {
2264 bpf_long_memcpy(value + off,
2265 per_cpu_ptr(pptr, cpu), size);
2266 off += size;
2267 }
2268 ret = 0;
2269out:
2270 rcu_read_unlock();
2271 return ret;
2272}
2273
2274int bpf_percpu_hash_update(struct bpf_map *map, void *key, void *value,
2275 u64 map_flags)
2276{
Martin KaFai Lau8f844932016-11-11 10:55:10 -08002277 struct bpf_htab *htab = container_of(map, struct bpf_htab, map);
Sasha Levin6bbd9a02016-02-19 13:53:10 -05002278 int ret;
2279
2280 rcu_read_lock();
Martin KaFai Lau8f844932016-11-11 10:55:10 -08002281 if (htab_is_lru(htab))
2282 ret = __htab_lru_percpu_map_update_elem(map, key, value,
2283 map_flags, true);
2284 else
2285 ret = __htab_percpu_map_update_elem(map, key, value, map_flags,
2286 true);
Sasha Levin6bbd9a02016-02-19 13:53:10 -05002287 rcu_read_unlock();
2288
2289 return ret;
Alexei Starovoitov15a07b32016-02-01 22:39:55 -08002290}
2291
Yonghong Songc7b27c32018-08-29 14:43:13 -07002292static void htab_percpu_map_seq_show_elem(struct bpf_map *map, void *key,
2293 struct seq_file *m)
2294{
2295 struct htab_elem *l;
2296 void __percpu *pptr;
2297 int cpu;
2298
2299 rcu_read_lock();
2300
2301 l = __htab_map_lookup_elem(map, key);
2302 if (!l) {
2303 rcu_read_unlock();
2304 return;
2305 }
2306
2307 btf_type_seq_show(map->btf, map->btf_key_type_id, key, m);
2308 seq_puts(m, ": {\n");
2309 pptr = htab_elem_get_ptr(l, map->key_size);
2310 for_each_possible_cpu(cpu) {
2311 seq_printf(m, "\tcpu%d: ", cpu);
2312 btf_type_seq_show(map->btf, map->btf_value_type_id,
2313 per_cpu_ptr(pptr, cpu), m);
2314 seq_puts(m, "\n");
2315 }
2316 seq_puts(m, "}\n");
2317
2318 rcu_read_unlock();
2319}
2320
Johannes Berg40077e02017-04-11 15:34:58 +02002321const struct bpf_map_ops htab_percpu_map_ops = {
Martin KaFai Lauf4d05252020-08-27 18:18:06 -07002322 .map_meta_equal = bpf_map_meta_equal,
Jakub Kicinski9328e0d2018-01-11 20:29:05 -08002323 .map_alloc_check = htab_map_alloc_check,
Alexei Starovoitov824bd0c2016-02-01 22:39:53 -08002324 .map_alloc = htab_map_alloc,
2325 .map_free = htab_map_free,
2326 .map_get_next_key = htab_map_get_next_key,
2327 .map_lookup_elem = htab_percpu_map_lookup_elem,
Denis Salopek3e87f192021-05-11 23:00:04 +02002328 .map_lookup_and_delete_elem = htab_percpu_map_lookup_and_delete_elem,
Alexei Starovoitov824bd0c2016-02-01 22:39:53 -08002329 .map_update_elem = htab_percpu_map_update_elem,
2330 .map_delete_elem = htab_map_delete_elem,
Feng Zhou07343112022-05-11 17:38:53 +08002331 .map_lookup_percpu_elem = htab_percpu_map_lookup_percpu_elem,
Yonghong Songc7b27c32018-08-29 14:43:13 -07002332 .map_seq_show_elem = htab_percpu_map_seq_show_elem,
Yonghong Song314ee052021-02-26 12:49:27 -08002333 .map_set_for_each_callback_args = map_set_for_each_callback_args,
2334 .map_for_each_callback = bpf_for_each_hash_elem,
Yonghong Song05799632020-01-15 10:43:04 -08002335 BATCH_OPS(htab_percpu),
Menglong Dongc317ab72022-04-25 21:32:47 +08002336 .map_btf_id = &htab_map_btf_ids[0],
Yonghong Songd6c45032020-07-23 11:41:14 -07002337 .iter_seq_info = &iter_seq_info,
Alexei Starovoitov824bd0c2016-02-01 22:39:53 -08002338};
2339
Johannes Berg40077e02017-04-11 15:34:58 +02002340const struct bpf_map_ops htab_lru_percpu_map_ops = {
Martin KaFai Lauf4d05252020-08-27 18:18:06 -07002341 .map_meta_equal = bpf_map_meta_equal,
Jakub Kicinski9328e0d2018-01-11 20:29:05 -08002342 .map_alloc_check = htab_map_alloc_check,
Martin KaFai Lau8f844932016-11-11 10:55:10 -08002343 .map_alloc = htab_map_alloc,
2344 .map_free = htab_map_free,
2345 .map_get_next_key = htab_map_get_next_key,
2346 .map_lookup_elem = htab_lru_percpu_map_lookup_elem,
Denis Salopek3e87f192021-05-11 23:00:04 +02002347 .map_lookup_and_delete_elem = htab_lru_percpu_map_lookup_and_delete_elem,
Martin KaFai Lau8f844932016-11-11 10:55:10 -08002348 .map_update_elem = htab_lru_percpu_map_update_elem,
2349 .map_delete_elem = htab_lru_map_delete_elem,
Feng Zhou07343112022-05-11 17:38:53 +08002350 .map_lookup_percpu_elem = htab_lru_percpu_map_lookup_percpu_elem,
Yonghong Songc7b27c32018-08-29 14:43:13 -07002351 .map_seq_show_elem = htab_percpu_map_seq_show_elem,
Yonghong Song314ee052021-02-26 12:49:27 -08002352 .map_set_for_each_callback_args = map_set_for_each_callback_args,
2353 .map_for_each_callback = bpf_for_each_hash_elem,
Yonghong Song05799632020-01-15 10:43:04 -08002354 BATCH_OPS(htab_lru_percpu),
Menglong Dongc317ab72022-04-25 21:32:47 +08002355 .map_btf_id = &htab_map_btf_ids[0],
Yonghong Songd6c45032020-07-23 11:41:14 -07002356 .iter_seq_info = &iter_seq_info,
Martin KaFai Lau8f844932016-11-11 10:55:10 -08002357};
2358
Jakub Kicinski9328e0d2018-01-11 20:29:05 -08002359static int fd_htab_map_alloc_check(union bpf_attr *attr)
Martin KaFai Laubcc6b1b2017-03-22 10:00:34 -07002360{
Martin KaFai Laubcc6b1b2017-03-22 10:00:34 -07002361 if (attr->value_size != sizeof(u32))
Jakub Kicinski9328e0d2018-01-11 20:29:05 -08002362 return -EINVAL;
2363 return htab_map_alloc_check(attr);
Martin KaFai Laubcc6b1b2017-03-22 10:00:34 -07002364}
2365
2366static void fd_htab_map_free(struct bpf_map *map)
2367{
2368 struct bpf_htab *htab = container_of(map, struct bpf_htab, map);
2369 struct hlist_nulls_node *n;
2370 struct hlist_nulls_head *head;
2371 struct htab_elem *l;
2372 int i;
2373
2374 for (i = 0; i < htab->n_buckets; i++) {
2375 head = select_bucket(htab, i);
2376
2377 hlist_nulls_for_each_entry_safe(l, n, head, hash_node) {
2378 void *ptr = fd_htab_map_get_ptr(map, l);
2379
2380 map->ops->map_fd_put_ptr(ptr);
2381 }
2382 }
2383
2384 htab_map_free(map);
2385}
2386
2387/* only called from syscall */
Martin KaFai Lau14dc6f02017-06-27 23:08:34 -07002388int bpf_fd_htab_map_lookup_elem(struct bpf_map *map, void *key, u32 *value)
2389{
2390 void **ptr;
2391 int ret = 0;
2392
2393 if (!map->ops->map_fd_sys_lookup_elem)
2394 return -ENOTSUPP;
2395
2396 rcu_read_lock();
2397 ptr = htab_map_lookup_elem(map, key);
2398 if (ptr)
2399 *value = map->ops->map_fd_sys_lookup_elem(READ_ONCE(*ptr));
2400 else
2401 ret = -ENOENT;
2402 rcu_read_unlock();
2403
2404 return ret;
2405}
2406
2407/* only called from syscall */
Martin KaFai Laubcc6b1b2017-03-22 10:00:34 -07002408int bpf_fd_htab_map_update_elem(struct bpf_map *map, struct file *map_file,
2409 void *key, void *value, u64 map_flags)
2410{
2411 void *ptr;
2412 int ret;
2413 u32 ufd = *(u32 *)value;
2414
2415 ptr = map->ops->map_fd_get_ptr(map, map_file, ufd);
2416 if (IS_ERR(ptr))
2417 return PTR_ERR(ptr);
2418
2419 ret = htab_map_update_elem(map, key, &ptr, map_flags);
2420 if (ret)
2421 map->ops->map_fd_put_ptr(ptr);
2422
2423 return ret;
2424}
2425
2426static struct bpf_map *htab_of_map_alloc(union bpf_attr *attr)
2427{
2428 struct bpf_map *map, *inner_map_meta;
2429
2430 inner_map_meta = bpf_map_meta_alloc(attr->inner_map_fd);
2431 if (IS_ERR(inner_map_meta))
2432 return inner_map_meta;
2433
Jakub Kicinski9328e0d2018-01-11 20:29:05 -08002434 map = htab_map_alloc(attr);
Martin KaFai Laubcc6b1b2017-03-22 10:00:34 -07002435 if (IS_ERR(map)) {
2436 bpf_map_meta_free(inner_map_meta);
2437 return map;
2438 }
2439
2440 map->inner_map_meta = inner_map_meta;
2441
2442 return map;
2443}
2444
2445static void *htab_of_map_lookup_elem(struct bpf_map *map, void *key)
2446{
2447 struct bpf_map **inner_map = htab_map_lookup_elem(map, key);
2448
2449 if (!inner_map)
2450 return NULL;
2451
2452 return READ_ONCE(*inner_map);
2453}
2454
Daniel Borkmann4a8f87e2020-10-11 01:40:03 +02002455static int htab_of_map_gen_lookup(struct bpf_map *map,
Daniel Borkmann7b0c2a02017-08-19 03:12:46 +02002456 struct bpf_insn *insn_buf)
2457{
2458 struct bpf_insn *insn = insn_buf;
2459 const int ret = BPF_REG_0;
2460
Daniel Borkmann09772d92018-06-02 23:06:35 +02002461 BUILD_BUG_ON(!__same_type(&__htab_map_lookup_elem,
2462 (void *(*)(struct bpf_map *map, void *key))NULL));
Kees Cook3d717fa2021-09-28 16:09:45 -07002463 *insn++ = BPF_EMIT_CALL(__htab_map_lookup_elem);
Daniel Borkmann7b0c2a02017-08-19 03:12:46 +02002464 *insn++ = BPF_JMP_IMM(BPF_JEQ, ret, 0, 2);
2465 *insn++ = BPF_ALU64_IMM(BPF_ADD, ret,
2466 offsetof(struct htab_elem, key) +
2467 round_up(map->key_size, 8));
2468 *insn++ = BPF_LDX_MEM(BPF_DW, ret, ret, 0);
2469
2470 return insn - insn_buf;
2471}
2472
Martin KaFai Laubcc6b1b2017-03-22 10:00:34 -07002473static void htab_of_map_free(struct bpf_map *map)
2474{
2475 bpf_map_meta_free(map->inner_map_meta);
2476 fd_htab_map_free(map);
2477}
2478
Johannes Berg40077e02017-04-11 15:34:58 +02002479const struct bpf_map_ops htab_of_maps_map_ops = {
Jakub Kicinski9328e0d2018-01-11 20:29:05 -08002480 .map_alloc_check = fd_htab_map_alloc_check,
Martin KaFai Laubcc6b1b2017-03-22 10:00:34 -07002481 .map_alloc = htab_of_map_alloc,
2482 .map_free = htab_of_map_free,
2483 .map_get_next_key = htab_map_get_next_key,
2484 .map_lookup_elem = htab_of_map_lookup_elem,
2485 .map_delete_elem = htab_map_delete_elem,
2486 .map_fd_get_ptr = bpf_map_fd_get_ptr,
2487 .map_fd_put_ptr = bpf_map_fd_put_ptr,
Martin KaFai Lau14dc6f02017-06-27 23:08:34 -07002488 .map_fd_sys_lookup_elem = bpf_map_fd_sys_lookup_elem,
Daniel Borkmann7b0c2a02017-08-19 03:12:46 +02002489 .map_gen_lookup = htab_of_map_gen_lookup,
Daniel Borkmanne8d2bec2018-08-12 01:59:17 +02002490 .map_check_btf = map_check_no_btf,
Takshak Chahande9263ddd2022-05-10 01:22:20 -07002491 BATCH_OPS(htab),
Menglong Dongc317ab72022-04-25 21:32:47 +08002492 .map_btf_id = &htab_map_btf_ids[0],
Martin KaFai Laubcc6b1b2017-03-22 10:00:34 -07002493};