blob: c1ac7f964bc997925fd427f5192168829d812e5d [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>
Alexei Starovoitov6c905982016-03-07 21:57:15 -080013#include "percpu_freelist.h"
Martin KaFai Lau29ba7322016-11-11 10:55:09 -080014#include "bpf_lru_list.h"
Martin KaFai Laubcc6b1b2017-03-22 10:00:34 -070015#include "map_in_map.h"
Alexei Starovoitov0f8e4bd2014-11-13 17:36:45 -080016
Chenbo Feng6e71b042017-10-18 13:00:22 -070017#define HTAB_CREATE_FLAG_MASK \
18 (BPF_F_NO_PREALLOC | BPF_F_NO_COMMON_LRU | BPF_F_NUMA_NODE | \
Daniel Borkmann591fe982019-04-09 23:20:05 +020019 BPF_F_ACCESS_MASK | BPF_F_ZERO_SEED)
Martin KaFai Lau96eabe72017-08-18 11:28:00 -070020
Yonghong Song05799632020-01-15 10:43:04 -080021#define BATCH_OPS(_name) \
22 .map_lookup_batch = \
23 _name##_map_lookup_batch, \
24 .map_lookup_and_delete_batch = \
25 _name##_map_lookup_and_delete_batch, \
26 .map_update_batch = \
27 generic_map_update_batch, \
28 .map_delete_batch = \
29 generic_map_delete_batch
30
Thomas Gleixnerdbca1512020-02-24 15:01:34 +010031/*
32 * The bucket lock has two protection scopes:
33 *
34 * 1) Serializing concurrent operations from BPF programs on differrent
35 * CPUs
36 *
37 * 2) Serializing concurrent operations from BPF programs and sys_bpf()
38 *
39 * BPF programs can execute in any context including perf, kprobes and
40 * tracing. As there are almost no limits where perf, kprobes and tracing
41 * can be invoked from the lock operations need to be protected against
42 * deadlocks. Deadlocks can be caused by recursion and by an invocation in
43 * the lock held section when functions which acquire this lock are invoked
44 * from sys_bpf(). BPF recursion is prevented by incrementing the per CPU
45 * variable bpf_prog_active, which prevents BPF programs attached to perf
46 * events, kprobes and tracing to be invoked before the prior invocation
47 * from one of these contexts completed. sys_bpf() uses the same mechanism
48 * by pinning the task to the current CPU and incrementing the recursion
49 * protection accross the map operation.
Thomas Gleixner7f805d12020-02-24 15:01:51 +010050 *
51 * This has subtle implications on PREEMPT_RT. PREEMPT_RT forbids certain
52 * operations like memory allocations (even with GFP_ATOMIC) from atomic
53 * contexts. This is required because even with GFP_ATOMIC the memory
54 * allocator calls into code pathes which acquire locks with long held lock
55 * sections. To ensure the deterministic behaviour these locks are regular
56 * spinlocks, which are converted to 'sleepable' spinlocks on RT. The only
57 * true atomic contexts on an RT kernel are the low level hardware
58 * handling, scheduling, low level interrupt handling, NMIs etc. None of
59 * these contexts should ever do memory allocations.
60 *
61 * As regular device interrupt handlers and soft interrupts are forced into
62 * thread context, the existing code which does
63 * spin_lock*(); alloc(GPF_ATOMIC); spin_unlock*();
64 * just works.
65 *
66 * In theory the BPF locks could be converted to regular spinlocks as well,
67 * but the bucket locks and percpu_freelist locks can be taken from
68 * arbitrary contexts (perf, kprobes, tracepoints) which are required to be
69 * atomic contexts even on RT. These mechanisms require preallocated maps,
70 * so there is no need to invoke memory allocations within the lock held
71 * sections.
72 *
73 * BPF maps which need dynamic allocation are only used from (forced)
74 * thread context on RT and can therefore use regular spinlocks which in
75 * turn allows to invoke memory allocations from the lock held section.
76 *
77 * On a non RT kernel this distinction is neither possible nor required.
78 * spinlock maps to raw_spinlock and the extra code is optimized out by the
79 * compiler.
Thomas Gleixnerdbca1512020-02-24 15:01:34 +010080 */
tom.leiming@gmail.com688ecfe2015-12-29 22:40:27 +080081struct bucket {
Alexei Starovoitov4fe84352017-03-07 20:00:13 -080082 struct hlist_nulls_head head;
Thomas Gleixner7f805d12020-02-24 15:01:51 +010083 union {
84 raw_spinlock_t raw_lock;
85 spinlock_t lock;
86 };
tom.leiming@gmail.com688ecfe2015-12-29 22:40:27 +080087};
88
Song Liu20b6cc32020-10-29 00:19:25 -070089#define HASHTAB_MAP_LOCK_COUNT 8
90#define HASHTAB_MAP_LOCK_MASK (HASHTAB_MAP_LOCK_COUNT - 1)
91
Alexei Starovoitov0f8e4bd2014-11-13 17:36:45 -080092struct bpf_htab {
93 struct bpf_map map;
tom.leiming@gmail.com688ecfe2015-12-29 22:40:27 +080094 struct bucket *buckets;
Alexei Starovoitov6c905982016-03-07 21:57:15 -080095 void *elems;
Martin KaFai Lau29ba7322016-11-11 10:55:09 -080096 union {
97 struct pcpu_freelist freelist;
98 struct bpf_lru lru;
99 };
Alexei Starovoitov8c290e62017-03-21 19:05:04 -0700100 struct htab_elem *__percpu *extra_elems;
tom.leiming@gmail.com6591f1e2015-12-29 22:40:25 +0800101 atomic_t count; /* number of elements in this hashtable */
Alexei Starovoitov0f8e4bd2014-11-13 17:36:45 -0800102 u32 n_buckets; /* number of hash buckets */
103 u32 elem_size; /* size of each element in bytes */
Daniel Borkmannc0203472018-08-22 23:49:37 +0200104 u32 hashrnd;
Song Liuc50eb512020-10-29 00:19:24 -0700105 struct lock_class_key lockdep_key;
Song Liu20b6cc32020-10-29 00:19:25 -0700106 int __percpu *map_locked[HASHTAB_MAP_LOCK_COUNT];
Alexei Starovoitov0f8e4bd2014-11-13 17:36:45 -0800107};
108
109/* each htab element is struct htab_elem + key + value */
110struct htab_elem {
Alexei Starovoitov824bd0c2016-02-01 22:39:53 -0800111 union {
Alexei Starovoitov4fe84352017-03-07 20:00:13 -0800112 struct hlist_nulls_node hash_node;
Alexei Starovoitov9f691542017-03-07 20:00:12 -0800113 struct {
114 void *padding;
115 union {
116 struct bpf_htab *htab;
117 struct pcpu_freelist_node fnode;
Yonghong Songb9aff382020-02-19 15:47:57 -0800118 struct htab_elem *batch_flink;
Alexei Starovoitov9f691542017-03-07 20:00:12 -0800119 };
120 };
Alexei Starovoitov824bd0c2016-02-01 22:39:53 -0800121 };
Alexei Starovoitova6ed3ea2016-08-05 14:01:27 -0700122 union {
123 struct rcu_head rcu;
Martin KaFai Lau29ba7322016-11-11 10:55:09 -0800124 struct bpf_lru_node lru_node;
Alexei Starovoitova6ed3ea2016-08-05 14:01:27 -0700125 };
Alexei Starovoitov6c905982016-03-07 21:57:15 -0800126 u32 hash;
Gustavo A. R. Silvad7f10df2020-02-26 18:17:44 -0600127 char key[] __aligned(8);
Alexei Starovoitov0f8e4bd2014-11-13 17:36:45 -0800128};
129
Thomas Gleixner7f805d12020-02-24 15:01:51 +0100130static inline bool htab_is_prealloc(const struct bpf_htab *htab)
131{
132 return !(htab->map.map_flags & BPF_F_NO_PREALLOC);
133}
134
135static inline bool htab_use_raw_lock(const struct bpf_htab *htab)
136{
137 return (!IS_ENABLED(CONFIG_PREEMPT_RT) || htab_is_prealloc(htab));
138}
139
Thomas Gleixnerd01f9b12020-02-24 15:01:50 +0100140static void htab_init_buckets(struct bpf_htab *htab)
141{
142 unsigned i;
143
144 for (i = 0; i < htab->n_buckets; i++) {
145 INIT_HLIST_NULLS_HEAD(&htab->buckets[i].head, i);
Song Liuc50eb512020-10-29 00:19:24 -0700146 if (htab_use_raw_lock(htab)) {
Thomas Gleixner7f805d12020-02-24 15:01:51 +0100147 raw_spin_lock_init(&htab->buckets[i].raw_lock);
Song Liuc50eb512020-10-29 00:19:24 -0700148 lockdep_set_class(&htab->buckets[i].raw_lock,
149 &htab->lockdep_key);
150 } else {
Thomas Gleixner7f805d12020-02-24 15:01:51 +0100151 spin_lock_init(&htab->buckets[i].lock);
Song Liuc50eb512020-10-29 00:19:24 -0700152 lockdep_set_class(&htab->buckets[i].lock,
153 &htab->lockdep_key);
154 }
Eric Dumazete7e51802020-12-21 11:25:06 -0800155 cond_resched();
Thomas Gleixnerd01f9b12020-02-24 15:01:50 +0100156 }
157}
158
Song Liu20b6cc32020-10-29 00:19:25 -0700159static inline int htab_lock_bucket(const struct bpf_htab *htab,
160 struct bucket *b, u32 hash,
161 unsigned long *pflags)
Thomas Gleixnerd01f9b12020-02-24 15:01:50 +0100162{
163 unsigned long flags;
164
Song Liu20b6cc32020-10-29 00:19:25 -0700165 hash = hash & HASHTAB_MAP_LOCK_MASK;
166
167 migrate_disable();
168 if (unlikely(__this_cpu_inc_return(*(htab->map_locked[hash])) != 1)) {
169 __this_cpu_dec(*(htab->map_locked[hash]));
170 migrate_enable();
171 return -EBUSY;
172 }
173
Thomas Gleixner7f805d12020-02-24 15:01:51 +0100174 if (htab_use_raw_lock(htab))
175 raw_spin_lock_irqsave(&b->raw_lock, flags);
176 else
177 spin_lock_irqsave(&b->lock, flags);
Song Liu20b6cc32020-10-29 00:19:25 -0700178 *pflags = flags;
179
180 return 0;
Thomas Gleixnerd01f9b12020-02-24 15:01:50 +0100181}
182
183static inline void htab_unlock_bucket(const struct bpf_htab *htab,
Song Liu20b6cc32020-10-29 00:19:25 -0700184 struct bucket *b, u32 hash,
Thomas Gleixnerd01f9b12020-02-24 15:01:50 +0100185 unsigned long flags)
186{
Song Liu20b6cc32020-10-29 00:19:25 -0700187 hash = hash & HASHTAB_MAP_LOCK_MASK;
Thomas Gleixner7f805d12020-02-24 15:01:51 +0100188 if (htab_use_raw_lock(htab))
189 raw_spin_unlock_irqrestore(&b->raw_lock, flags);
190 else
191 spin_unlock_irqrestore(&b->lock, flags);
Song Liu20b6cc32020-10-29 00:19:25 -0700192 __this_cpu_dec(*(htab->map_locked[hash]));
193 migrate_enable();
Thomas Gleixnerd01f9b12020-02-24 15:01:50 +0100194}
195
Martin KaFai Lau29ba7322016-11-11 10:55:09 -0800196static bool htab_lru_map_delete_node(void *arg, struct bpf_lru_node *node);
197
198static bool htab_is_lru(const struct bpf_htab *htab)
199{
Martin KaFai Lau8f844932016-11-11 10:55:10 -0800200 return htab->map.map_type == BPF_MAP_TYPE_LRU_HASH ||
201 htab->map.map_type == BPF_MAP_TYPE_LRU_PERCPU_HASH;
202}
203
204static bool htab_is_percpu(const struct bpf_htab *htab)
205{
206 return htab->map.map_type == BPF_MAP_TYPE_PERCPU_HASH ||
207 htab->map.map_type == BPF_MAP_TYPE_LRU_PERCPU_HASH;
Martin KaFai Lau29ba7322016-11-11 10:55:09 -0800208}
209
Alexei Starovoitov6c905982016-03-07 21:57:15 -0800210static inline void htab_elem_set_ptr(struct htab_elem *l, u32 key_size,
211 void __percpu *pptr)
212{
213 *(void __percpu **)(l->key + key_size) = pptr;
214}
215
216static inline void __percpu *htab_elem_get_ptr(struct htab_elem *l, u32 key_size)
217{
218 return *(void __percpu **)(l->key + key_size);
219}
220
Martin KaFai Laubcc6b1b2017-03-22 10:00:34 -0700221static void *fd_htab_map_get_ptr(const struct bpf_map *map, struct htab_elem *l)
222{
223 return *(void **)(l->key + roundup(map->key_size, 8));
224}
225
Alexei Starovoitov6c905982016-03-07 21:57:15 -0800226static struct htab_elem *get_htab_elem(struct bpf_htab *htab, int i)
227{
Eric Dumazete1868b9e2020-12-07 10:28:21 -0800228 return (struct htab_elem *) (htab->elems + i * (u64)htab->elem_size);
Alexei Starovoitov6c905982016-03-07 21:57:15 -0800229}
230
231static void htab_free_elems(struct bpf_htab *htab)
232{
233 int i;
234
Martin KaFai Lau8f844932016-11-11 10:55:10 -0800235 if (!htab_is_percpu(htab))
Alexei Starovoitov6c905982016-03-07 21:57:15 -0800236 goto free_elems;
237
238 for (i = 0; i < htab->map.max_entries; i++) {
239 void __percpu *pptr;
240
241 pptr = htab_elem_get_ptr(get_htab_elem(htab, i),
242 htab->map.key_size);
243 free_percpu(pptr);
Eric Dumazet9147efc2017-12-12 14:22:39 -0800244 cond_resched();
Alexei Starovoitov6c905982016-03-07 21:57:15 -0800245 }
246free_elems:
Daniel Borkmannd407bd22017-01-18 15:14:17 +0100247 bpf_map_area_free(htab->elems);
Alexei Starovoitov6c905982016-03-07 21:57:15 -0800248}
249
Yonghong Songb9aff382020-02-19 15:47:57 -0800250/* The LRU list has a lock (lru_lock). Each htab bucket has a lock
251 * (bucket_lock). If both locks need to be acquired together, the lock
252 * order is always lru_lock -> bucket_lock and this only happens in
253 * bpf_lru_list.c logic. For example, certain code path of
254 * bpf_lru_pop_free(), which is called by function prealloc_lru_pop(),
255 * will acquire lru_lock first followed by acquiring bucket_lock.
256 *
257 * In hashtab.c, to avoid deadlock, lock acquisition of
258 * bucket_lock followed by lru_lock is not allowed. In such cases,
259 * bucket_lock needs to be released first before acquiring lru_lock.
260 */
Martin KaFai Lau29ba7322016-11-11 10:55:09 -0800261static struct htab_elem *prealloc_lru_pop(struct bpf_htab *htab, void *key,
262 u32 hash)
263{
264 struct bpf_lru_node *node = bpf_lru_pop_free(&htab->lru, hash);
265 struct htab_elem *l;
266
267 if (node) {
268 l = container_of(node, struct htab_elem, lru_node);
269 memcpy(l->key, key, htab->map.key_size);
270 return l;
271 }
272
273 return NULL;
274}
275
276static int prealloc_init(struct bpf_htab *htab)
Alexei Starovoitov6c905982016-03-07 21:57:15 -0800277{
Alexei Starovoitov8c290e62017-03-21 19:05:04 -0700278 u32 num_entries = htab->map.max_entries;
Alexei Starovoitov6c905982016-03-07 21:57:15 -0800279 int err = -ENOMEM, i;
280
Alexei Starovoitov8c290e62017-03-21 19:05:04 -0700281 if (!htab_is_percpu(htab) && !htab_is_lru(htab))
282 num_entries += num_possible_cpus();
283
Eric Dumazete1868b9e2020-12-07 10:28:21 -0800284 htab->elems = bpf_map_area_alloc((u64)htab->elem_size * num_entries,
Martin KaFai Lau96eabe72017-08-18 11:28:00 -0700285 htab->map.numa_node);
Alexei Starovoitov6c905982016-03-07 21:57:15 -0800286 if (!htab->elems)
287 return -ENOMEM;
288
Martin KaFai Lau8f844932016-11-11 10:55:10 -0800289 if (!htab_is_percpu(htab))
Alexei Starovoitov6c905982016-03-07 21:57:15 -0800290 goto skip_percpu_elems;
291
Alexei Starovoitov8c290e62017-03-21 19:05:04 -0700292 for (i = 0; i < num_entries; i++) {
Alexei Starovoitov6c905982016-03-07 21:57:15 -0800293 u32 size = round_up(htab->map.value_size, 8);
294 void __percpu *pptr;
295
Roman Gushchin88145682020-12-01 13:58:38 -0800296 pptr = bpf_map_alloc_percpu(&htab->map, size, 8,
297 GFP_USER | __GFP_NOWARN);
Alexei Starovoitov6c905982016-03-07 21:57:15 -0800298 if (!pptr)
299 goto free_elems;
300 htab_elem_set_ptr(get_htab_elem(htab, i), htab->map.key_size,
301 pptr);
Eric Dumazet9147efc2017-12-12 14:22:39 -0800302 cond_resched();
Alexei Starovoitov6c905982016-03-07 21:57:15 -0800303 }
304
305skip_percpu_elems:
Martin KaFai Lau29ba7322016-11-11 10:55:09 -0800306 if (htab_is_lru(htab))
307 err = bpf_lru_init(&htab->lru,
308 htab->map.map_flags & BPF_F_NO_COMMON_LRU,
309 offsetof(struct htab_elem, hash) -
310 offsetof(struct htab_elem, lru_node),
311 htab_lru_map_delete_node,
312 htab);
313 else
314 err = pcpu_freelist_init(&htab->freelist);
315
Alexei Starovoitov6c905982016-03-07 21:57:15 -0800316 if (err)
317 goto free_elems;
318
Martin KaFai Lau29ba7322016-11-11 10:55:09 -0800319 if (htab_is_lru(htab))
320 bpf_lru_populate(&htab->lru, htab->elems,
321 offsetof(struct htab_elem, lru_node),
Alexei Starovoitov8c290e62017-03-21 19:05:04 -0700322 htab->elem_size, num_entries);
Martin KaFai Lau29ba7322016-11-11 10:55:09 -0800323 else
Alexei Starovoitov9f691542017-03-07 20:00:12 -0800324 pcpu_freelist_populate(&htab->freelist,
325 htab->elems + offsetof(struct htab_elem, fnode),
Alexei Starovoitov8c290e62017-03-21 19:05:04 -0700326 htab->elem_size, num_entries);
Martin KaFai Lau29ba7322016-11-11 10:55:09 -0800327
Alexei Starovoitov6c905982016-03-07 21:57:15 -0800328 return 0;
329
330free_elems:
331 htab_free_elems(htab);
332 return err;
333}
334
Martin KaFai Lau29ba7322016-11-11 10:55:09 -0800335static void prealloc_destroy(struct bpf_htab *htab)
336{
337 htab_free_elems(htab);
338
339 if (htab_is_lru(htab))
340 bpf_lru_destroy(&htab->lru);
341 else
342 pcpu_freelist_destroy(&htab->freelist);
343}
344
Alexei Starovoitova6ed3ea2016-08-05 14:01:27 -0700345static int alloc_extra_elems(struct bpf_htab *htab)
346{
Alexei Starovoitov8c290e62017-03-21 19:05:04 -0700347 struct htab_elem *__percpu *pptr, *l_new;
348 struct pcpu_freelist_node *l;
Alexei Starovoitova6ed3ea2016-08-05 14:01:27 -0700349 int cpu;
350
Roman Gushchin88145682020-12-01 13:58:38 -0800351 pptr = bpf_map_alloc_percpu(&htab->map, sizeof(struct htab_elem *), 8,
352 GFP_USER | __GFP_NOWARN);
Alexei Starovoitova6ed3ea2016-08-05 14:01:27 -0700353 if (!pptr)
354 return -ENOMEM;
355
356 for_each_possible_cpu(cpu) {
Alexei Starovoitov8c290e62017-03-21 19:05:04 -0700357 l = pcpu_freelist_pop(&htab->freelist);
358 /* pop will succeed, since prealloc_init()
359 * preallocated extra num_possible_cpus elements
360 */
361 l_new = container_of(l, struct htab_elem, fnode);
362 *per_cpu_ptr(pptr, cpu) = l_new;
Alexei Starovoitova6ed3ea2016-08-05 14:01:27 -0700363 }
364 htab->extra_elems = pptr;
365 return 0;
366}
367
Alexei Starovoitov0f8e4bd2014-11-13 17:36:45 -0800368/* Called from syscall */
Jakub Kicinski9328e0d2018-01-11 20:29:05 -0800369static int htab_map_alloc_check(union bpf_attr *attr)
370{
371 bool percpu = (attr->map_type == BPF_MAP_TYPE_PERCPU_HASH ||
372 attr->map_type == BPF_MAP_TYPE_LRU_PERCPU_HASH);
373 bool lru = (attr->map_type == BPF_MAP_TYPE_LRU_HASH ||
374 attr->map_type == BPF_MAP_TYPE_LRU_PERCPU_HASH);
375 /* percpu_lru means each cpu has its own LRU list.
376 * it is different from BPF_MAP_TYPE_PERCPU_HASH where
377 * the map's value itself is percpu. percpu_lru has
378 * nothing to do with the map's value.
379 */
380 bool percpu_lru = (attr->map_flags & BPF_F_NO_COMMON_LRU);
381 bool prealloc = !(attr->map_flags & BPF_F_NO_PREALLOC);
Lorenz Bauer96b3b6c2018-11-16 11:41:08 +0000382 bool zero_seed = (attr->map_flags & BPF_F_ZERO_SEED);
Jakub Kicinski9328e0d2018-01-11 20:29:05 -0800383 int numa_node = bpf_map_attr_numa_node(attr);
384
385 BUILD_BUG_ON(offsetof(struct htab_elem, htab) !=
386 offsetof(struct htab_elem, hash_node.pprev));
387 BUILD_BUG_ON(offsetof(struct htab_elem, fnode.next) !=
388 offsetof(struct htab_elem, hash_node.pprev));
389
Alexei Starovoitov2c78ee82020-05-13 16:03:54 -0700390 if (lru && !bpf_capable())
Jakub Kicinski9328e0d2018-01-11 20:29:05 -0800391 /* LRU implementation is much complicated than other
Alexei Starovoitov2c78ee82020-05-13 16:03:54 -0700392 * maps. Hence, limit to CAP_BPF.
Jakub Kicinski9328e0d2018-01-11 20:29:05 -0800393 */
394 return -EPERM;
395
Lorenz Bauer96b3b6c2018-11-16 11:41:08 +0000396 if (zero_seed && !capable(CAP_SYS_ADMIN))
397 /* Guard against local DoS, and discourage production use. */
398 return -EPERM;
399
Daniel Borkmann591fe982019-04-09 23:20:05 +0200400 if (attr->map_flags & ~HTAB_CREATE_FLAG_MASK ||
401 !bpf_map_flags_access_ok(attr->map_flags))
Jakub Kicinski9328e0d2018-01-11 20:29:05 -0800402 return -EINVAL;
403
404 if (!lru && percpu_lru)
405 return -EINVAL;
406
407 if (lru && !prealloc)
408 return -ENOTSUPP;
409
410 if (numa_node != NUMA_NO_NODE && (percpu || percpu_lru))
411 return -EINVAL;
412
413 /* check sanity of attributes.
414 * value_size == 0 may be allowed in the future to use map as a set
415 */
416 if (attr->max_entries == 0 || attr->key_size == 0 ||
417 attr->value_size == 0)
418 return -EINVAL;
419
Florian Lehnerc6bde952020-10-29 21:14:42 +0100420 if ((u64)attr->key_size + attr->value_size >= KMALLOC_MAX_SIZE -
421 sizeof(struct htab_elem))
422 /* if key_size + value_size is bigger, the user space won't be
423 * able to access the elements via bpf syscall. This check
424 * also makes sure that the elem_size doesn't overflow and it's
Jakub Kicinski9328e0d2018-01-11 20:29:05 -0800425 * kmalloc-able later in htab_map_update_elem()
426 */
427 return -E2BIG;
428
429 return 0;
430}
431
Alexei Starovoitov0f8e4bd2014-11-13 17:36:45 -0800432static struct bpf_map *htab_map_alloc(union bpf_attr *attr)
433{
Martin KaFai Lau8f844932016-11-11 10:55:10 -0800434 bool percpu = (attr->map_type == BPF_MAP_TYPE_PERCPU_HASH ||
435 attr->map_type == BPF_MAP_TYPE_LRU_PERCPU_HASH);
436 bool lru = (attr->map_type == BPF_MAP_TYPE_LRU_HASH ||
437 attr->map_type == BPF_MAP_TYPE_LRU_PERCPU_HASH);
Martin KaFai Lau29ba7322016-11-11 10:55:09 -0800438 /* percpu_lru means each cpu has its own LRU list.
439 * it is different from BPF_MAP_TYPE_PERCPU_HASH where
440 * the map's value itself is percpu. percpu_lru has
441 * nothing to do with the map's value.
442 */
443 bool percpu_lru = (attr->map_flags & BPF_F_NO_COMMON_LRU);
444 bool prealloc = !(attr->map_flags & BPF_F_NO_PREALLOC);
Alexei Starovoitov0f8e4bd2014-11-13 17:36:45 -0800445 struct bpf_htab *htab;
Song Liu20b6cc32020-10-29 00:19:25 -0700446 int err, i;
Alexei Starovoitov0f8e4bd2014-11-13 17:36:45 -0800447
Roman Gushchin88145682020-12-01 13:58:38 -0800448 htab = kzalloc(sizeof(*htab), GFP_USER | __GFP_ACCOUNT);
Alexei Starovoitov0f8e4bd2014-11-13 17:36:45 -0800449 if (!htab)
450 return ERR_PTR(-ENOMEM);
451
Eric Dumazet8aaeed82020-11-02 03:41:00 -0800452 lockdep_register_key(&htab->lockdep_key);
453
Jakub Kicinskibd475642018-01-11 20:29:06 -0800454 bpf_map_init_from_attr(&htab->map, attr);
Alexei Starovoitov0f8e4bd2014-11-13 17:36:45 -0800455
Martin KaFai Lau29ba7322016-11-11 10:55:09 -0800456 if (percpu_lru) {
457 /* ensure each CPU's lru list has >=1 elements.
458 * since we are at it, make each lru list has the same
459 * number of elements.
460 */
461 htab->map.max_entries = roundup(attr->max_entries,
462 num_possible_cpus());
463 if (htab->map.max_entries < attr->max_entries)
464 htab->map.max_entries = rounddown(attr->max_entries,
465 num_possible_cpus());
466 }
467
Alexei Starovoitov0f8e4bd2014-11-13 17:36:45 -0800468 /* hash table size must be power of 2 */
469 htab->n_buckets = roundup_pow_of_two(htab->map.max_entries);
470
Alexei Starovoitov01b3f522015-11-29 16:59:35 -0800471 htab->elem_size = sizeof(struct htab_elem) +
Alexei Starovoitov824bd0c2016-02-01 22:39:53 -0800472 round_up(htab->map.key_size, 8);
473 if (percpu)
474 htab->elem_size += sizeof(void *);
475 else
Alexei Starovoitov6c905982016-03-07 21:57:15 -0800476 htab->elem_size += round_up(htab->map.value_size, 8);
Alexei Starovoitov01b3f522015-11-29 16:59:35 -0800477
Jakub Kicinskidaffc5a2018-01-11 20:29:04 -0800478 err = -E2BIG;
Alexei Starovoitovdaaf4272014-11-18 17:32:16 -0800479 /* prevent zero size kmalloc and check for u32 overflow */
480 if (htab->n_buckets == 0 ||
tom.leiming@gmail.com688ecfe2015-12-29 22:40:27 +0800481 htab->n_buckets > U32_MAX / sizeof(struct bucket))
Alexei Starovoitovdaaf4272014-11-18 17:32:16 -0800482 goto free_htab;
483
Alexei Starovoitov01b3f522015-11-29 16:59:35 -0800484 err = -ENOMEM;
Daniel Borkmannd407bd22017-01-18 15:14:17 +0100485 htab->buckets = bpf_map_area_alloc(htab->n_buckets *
Martin KaFai Lau96eabe72017-08-18 11:28:00 -0700486 sizeof(struct bucket),
487 htab->map.numa_node);
Daniel Borkmannd407bd22017-01-18 15:14:17 +0100488 if (!htab->buckets)
Roman Gushchin755e5d552020-12-01 13:58:49 -0800489 goto free_htab;
Alexei Starovoitov0f8e4bd2014-11-13 17:36:45 -0800490
Song Liu20b6cc32020-10-29 00:19:25 -0700491 for (i = 0; i < HASHTAB_MAP_LOCK_COUNT; i++) {
Roman Gushchin88145682020-12-01 13:58:38 -0800492 htab->map_locked[i] = bpf_map_alloc_percpu(&htab->map,
493 sizeof(int),
494 sizeof(int),
495 GFP_USER);
Song Liu20b6cc32020-10-29 00:19:25 -0700496 if (!htab->map_locked[i])
497 goto free_map_locked;
498 }
499
Lorenz Bauer96b3b6c2018-11-16 11:41:08 +0000500 if (htab->map.map_flags & BPF_F_ZERO_SEED)
501 htab->hashrnd = 0;
502 else
503 htab->hashrnd = get_random_int();
504
Thomas Gleixnerd01f9b12020-02-24 15:01:50 +0100505 htab_init_buckets(htab);
Alexei Starovoitov0f8e4bd2014-11-13 17:36:45 -0800506
Martin KaFai Lau29ba7322016-11-11 10:55:09 -0800507 if (prealloc) {
508 err = prealloc_init(htab);
Alexei Starovoitova6ed3ea2016-08-05 14:01:27 -0700509 if (err)
Song Liu20b6cc32020-10-29 00:19:25 -0700510 goto free_map_locked;
Alexei Starovoitov8c290e62017-03-21 19:05:04 -0700511
512 if (!percpu && !lru) {
513 /* lru itself can remove the least used element, so
514 * there is no need for an extra elem during map_update.
515 */
516 err = alloc_extra_elems(htab);
517 if (err)
518 goto free_prealloc;
519 }
Alexei Starovoitova6ed3ea2016-08-05 14:01:27 -0700520 }
521
Alexei Starovoitov0f8e4bd2014-11-13 17:36:45 -0800522 return &htab->map;
523
Alexei Starovoitov8c290e62017-03-21 19:05:04 -0700524free_prealloc:
525 prealloc_destroy(htab);
Song Liu20b6cc32020-10-29 00:19:25 -0700526free_map_locked:
527 for (i = 0; i < HASHTAB_MAP_LOCK_COUNT; i++)
528 free_percpu(htab->map_locked[i]);
Daniel Borkmannd407bd22017-01-18 15:14:17 +0100529 bpf_map_area_free(htab->buckets);
Alexei Starovoitov0f8e4bd2014-11-13 17:36:45 -0800530free_htab:
Eric Dumazet8aaeed82020-11-02 03:41:00 -0800531 lockdep_unregister_key(&htab->lockdep_key);
Alexei Starovoitov0f8e4bd2014-11-13 17:36:45 -0800532 kfree(htab);
533 return ERR_PTR(err);
534}
535
Daniel Borkmannc0203472018-08-22 23:49:37 +0200536static inline u32 htab_map_hash(const void *key, u32 key_len, u32 hashrnd)
Alexei Starovoitov0f8e4bd2014-11-13 17:36:45 -0800537{
Daniel Borkmannc0203472018-08-22 23:49:37 +0200538 return jhash(key, key_len, hashrnd);
Alexei Starovoitov0f8e4bd2014-11-13 17:36:45 -0800539}
540
tom.leiming@gmail.com688ecfe2015-12-29 22:40:27 +0800541static inline struct bucket *__select_bucket(struct bpf_htab *htab, u32 hash)
Alexei Starovoitov0f8e4bd2014-11-13 17:36:45 -0800542{
543 return &htab->buckets[hash & (htab->n_buckets - 1)];
544}
545
Alexei Starovoitov4fe84352017-03-07 20:00:13 -0800546static inline struct hlist_nulls_head *select_bucket(struct bpf_htab *htab, u32 hash)
tom.leiming@gmail.com688ecfe2015-12-29 22:40:27 +0800547{
548 return &__select_bucket(htab, hash)->head;
549}
550
Alexei Starovoitov4fe84352017-03-07 20:00:13 -0800551/* this lookup function can only be called with bucket lock taken */
552static struct htab_elem *lookup_elem_raw(struct hlist_nulls_head *head, u32 hash,
Alexei Starovoitov0f8e4bd2014-11-13 17:36:45 -0800553 void *key, u32 key_size)
554{
Alexei Starovoitov4fe84352017-03-07 20:00:13 -0800555 struct hlist_nulls_node *n;
Alexei Starovoitov0f8e4bd2014-11-13 17:36:45 -0800556 struct htab_elem *l;
557
Alexei Starovoitov4fe84352017-03-07 20:00:13 -0800558 hlist_nulls_for_each_entry_rcu(l, n, head, hash_node)
Alexei Starovoitov0f8e4bd2014-11-13 17:36:45 -0800559 if (l->hash == hash && !memcmp(&l->key, key, key_size))
560 return l;
561
562 return NULL;
563}
564
Alexei Starovoitov4fe84352017-03-07 20:00:13 -0800565/* can be called without bucket lock. it will repeat the loop in
566 * the unlikely event when elements moved from one bucket into another
567 * while link list is being walked
568 */
569static struct htab_elem *lookup_nulls_elem_raw(struct hlist_nulls_head *head,
570 u32 hash, void *key,
571 u32 key_size, u32 n_buckets)
572{
573 struct hlist_nulls_node *n;
574 struct htab_elem *l;
575
576again:
577 hlist_nulls_for_each_entry_rcu(l, n, head, hash_node)
578 if (l->hash == hash && !memcmp(&l->key, key, key_size))
579 return l;
580
581 if (unlikely(get_nulls_value(n) != (hash & (n_buckets - 1))))
582 goto again;
583
584 return NULL;
585}
586
Alexei Starovoitov9015d2f2017-03-15 18:26:43 -0700587/* Called from syscall or from eBPF program directly, so
588 * arguments have to match bpf_map_lookup_elem() exactly.
589 * The return value is adjusted by BPF instructions
590 * in htab_map_gen_lookup().
591 */
Alexei Starovoitov824bd0c2016-02-01 22:39:53 -0800592static void *__htab_map_lookup_elem(struct bpf_map *map, void *key)
Alexei Starovoitov0f8e4bd2014-11-13 17:36:45 -0800593{
594 struct bpf_htab *htab = container_of(map, struct bpf_htab, map);
Alexei Starovoitov4fe84352017-03-07 20:00:13 -0800595 struct hlist_nulls_head *head;
Alexei Starovoitov0f8e4bd2014-11-13 17:36:45 -0800596 struct htab_elem *l;
597 u32 hash, key_size;
598
Alexei Starovoitov1e6c62a2020-08-27 15:01:11 -0700599 WARN_ON_ONCE(!rcu_read_lock_held() && !rcu_read_lock_trace_held());
Alexei Starovoitov0f8e4bd2014-11-13 17:36:45 -0800600
601 key_size = map->key_size;
602
Daniel Borkmannc0203472018-08-22 23:49:37 +0200603 hash = htab_map_hash(key, key_size, htab->hashrnd);
Alexei Starovoitov0f8e4bd2014-11-13 17:36:45 -0800604
605 head = select_bucket(htab, hash);
606
Alexei Starovoitov4fe84352017-03-07 20:00:13 -0800607 l = lookup_nulls_elem_raw(head, hash, key, key_size, htab->n_buckets);
Alexei Starovoitov0f8e4bd2014-11-13 17:36:45 -0800608
Alexei Starovoitov824bd0c2016-02-01 22:39:53 -0800609 return l;
610}
611
612static void *htab_map_lookup_elem(struct bpf_map *map, void *key)
613{
614 struct htab_elem *l = __htab_map_lookup_elem(map, key);
615
Alexei Starovoitov0f8e4bd2014-11-13 17:36:45 -0800616 if (l)
617 return l->key + round_up(map->key_size, 8);
618
619 return NULL;
620}
621
Alexei Starovoitov9015d2f2017-03-15 18:26:43 -0700622/* inline bpf_map_lookup_elem() call.
623 * Instead of:
624 * bpf_prog
625 * bpf_map_lookup_elem
626 * map->ops->map_lookup_elem
627 * htab_map_lookup_elem
628 * __htab_map_lookup_elem
629 * do:
630 * bpf_prog
631 * __htab_map_lookup_elem
632 */
Daniel Borkmann4a8f87e2020-10-11 01:40:03 +0200633static int htab_map_gen_lookup(struct bpf_map *map, struct bpf_insn *insn_buf)
Alexei Starovoitov9015d2f2017-03-15 18:26:43 -0700634{
635 struct bpf_insn *insn = insn_buf;
636 const int ret = BPF_REG_0;
637
Daniel Borkmann09772d92018-06-02 23:06:35 +0200638 BUILD_BUG_ON(!__same_type(&__htab_map_lookup_elem,
639 (void *(*)(struct bpf_map *map, void *key))NULL));
640 *insn++ = BPF_EMIT_CALL(BPF_CAST_CALL(__htab_map_lookup_elem));
Alexei Starovoitov9015d2f2017-03-15 18:26:43 -0700641 *insn++ = BPF_JMP_IMM(BPF_JEQ, ret, 0, 1);
642 *insn++ = BPF_ALU64_IMM(BPF_ADD, ret,
643 offsetof(struct htab_elem, key) +
644 round_up(map->key_size, 8));
645 return insn - insn_buf;
646}
647
Daniel Borkmann50b045a2019-05-14 01:18:56 +0200648static __always_inline void *__htab_lru_map_lookup_elem(struct bpf_map *map,
649 void *key, const bool mark)
Martin KaFai Lau29ba7322016-11-11 10:55:09 -0800650{
651 struct htab_elem *l = __htab_map_lookup_elem(map, key);
652
653 if (l) {
Daniel Borkmann50b045a2019-05-14 01:18:56 +0200654 if (mark)
655 bpf_lru_node_set_ref(&l->lru_node);
Martin KaFai Lau29ba7322016-11-11 10:55:09 -0800656 return l->key + round_up(map->key_size, 8);
657 }
658
659 return NULL;
660}
661
Daniel Borkmann50b045a2019-05-14 01:18:56 +0200662static void *htab_lru_map_lookup_elem(struct bpf_map *map, void *key)
663{
664 return __htab_lru_map_lookup_elem(map, key, true);
665}
666
667static void *htab_lru_map_lookup_elem_sys(struct bpf_map *map, void *key)
668{
669 return __htab_lru_map_lookup_elem(map, key, false);
670}
671
Daniel Borkmann4a8f87e2020-10-11 01:40:03 +0200672static int htab_lru_map_gen_lookup(struct bpf_map *map,
Martin KaFai Laucc555422017-08-31 23:27:12 -0700673 struct bpf_insn *insn_buf)
674{
675 struct bpf_insn *insn = insn_buf;
676 const int ret = BPF_REG_0;
Martin KaFai Laubb9b9f82017-08-31 23:27:13 -0700677 const int ref_reg = BPF_REG_1;
Martin KaFai Laucc555422017-08-31 23:27:12 -0700678
Daniel Borkmann09772d92018-06-02 23:06:35 +0200679 BUILD_BUG_ON(!__same_type(&__htab_map_lookup_elem,
680 (void *(*)(struct bpf_map *map, void *key))NULL));
681 *insn++ = BPF_EMIT_CALL(BPF_CAST_CALL(__htab_map_lookup_elem));
Martin KaFai Laubb9b9f82017-08-31 23:27:13 -0700682 *insn++ = BPF_JMP_IMM(BPF_JEQ, ret, 0, 4);
683 *insn++ = BPF_LDX_MEM(BPF_B, ref_reg, ret,
684 offsetof(struct htab_elem, lru_node) +
685 offsetof(struct bpf_lru_node, ref));
686 *insn++ = BPF_JMP_IMM(BPF_JNE, ref_reg, 0, 1);
Martin KaFai Laucc555422017-08-31 23:27:12 -0700687 *insn++ = BPF_ST_MEM(BPF_B, ret,
688 offsetof(struct htab_elem, lru_node) +
689 offsetof(struct bpf_lru_node, ref),
690 1);
691 *insn++ = BPF_ALU64_IMM(BPF_ADD, ret,
692 offsetof(struct htab_elem, key) +
693 round_up(map->key_size, 8));
694 return insn - insn_buf;
695}
696
Martin KaFai Lau29ba7322016-11-11 10:55:09 -0800697/* It is called from the bpf_lru_list when the LRU needs to delete
698 * older elements from the htab.
699 */
700static bool htab_lru_map_delete_node(void *arg, struct bpf_lru_node *node)
701{
702 struct bpf_htab *htab = (struct bpf_htab *)arg;
Alexei Starovoitov4fe84352017-03-07 20:00:13 -0800703 struct htab_elem *l = NULL, *tgt_l;
704 struct hlist_nulls_head *head;
705 struct hlist_nulls_node *n;
Martin KaFai Lau29ba7322016-11-11 10:55:09 -0800706 unsigned long flags;
707 struct bucket *b;
Song Liu20b6cc32020-10-29 00:19:25 -0700708 int ret;
Martin KaFai Lau29ba7322016-11-11 10:55:09 -0800709
710 tgt_l = container_of(node, struct htab_elem, lru_node);
711 b = __select_bucket(htab, tgt_l->hash);
712 head = &b->head;
713
Song Liu20b6cc32020-10-29 00:19:25 -0700714 ret = htab_lock_bucket(htab, b, tgt_l->hash, &flags);
715 if (ret)
716 return false;
Martin KaFai Lau29ba7322016-11-11 10:55:09 -0800717
Alexei Starovoitov4fe84352017-03-07 20:00:13 -0800718 hlist_nulls_for_each_entry_rcu(l, n, head, hash_node)
Martin KaFai Lau29ba7322016-11-11 10:55:09 -0800719 if (l == tgt_l) {
Alexei Starovoitov4fe84352017-03-07 20:00:13 -0800720 hlist_nulls_del_rcu(&l->hash_node);
Martin KaFai Lau29ba7322016-11-11 10:55:09 -0800721 break;
722 }
723
Song Liu20b6cc32020-10-29 00:19:25 -0700724 htab_unlock_bucket(htab, b, tgt_l->hash, flags);
Martin KaFai Lau29ba7322016-11-11 10:55:09 -0800725
726 return l == tgt_l;
727}
728
Alexei Starovoitov0f8e4bd2014-11-13 17:36:45 -0800729/* Called from syscall */
730static int htab_map_get_next_key(struct bpf_map *map, void *key, void *next_key)
731{
732 struct bpf_htab *htab = container_of(map, struct bpf_htab, map);
Alexei Starovoitov4fe84352017-03-07 20:00:13 -0800733 struct hlist_nulls_head *head;
Alexei Starovoitov0f8e4bd2014-11-13 17:36:45 -0800734 struct htab_elem *l, *next_l;
735 u32 hash, key_size;
Teng Qin8fe45922017-04-24 19:00:37 -0700736 int i = 0;
Alexei Starovoitov0f8e4bd2014-11-13 17:36:45 -0800737
738 WARN_ON_ONCE(!rcu_read_lock_held());
739
740 key_size = map->key_size;
741
Teng Qin8fe45922017-04-24 19:00:37 -0700742 if (!key)
743 goto find_first_elem;
744
Daniel Borkmannc0203472018-08-22 23:49:37 +0200745 hash = htab_map_hash(key, key_size, htab->hashrnd);
Alexei Starovoitov0f8e4bd2014-11-13 17:36:45 -0800746
747 head = select_bucket(htab, hash);
748
749 /* lookup the key */
Alexei Starovoitov4fe84352017-03-07 20:00:13 -0800750 l = lookup_nulls_elem_raw(head, hash, key, key_size, htab->n_buckets);
Alexei Starovoitov0f8e4bd2014-11-13 17:36:45 -0800751
Teng Qin8fe45922017-04-24 19:00:37 -0700752 if (!l)
Alexei Starovoitov0f8e4bd2014-11-13 17:36:45 -0800753 goto find_first_elem;
Alexei Starovoitov0f8e4bd2014-11-13 17:36:45 -0800754
755 /* key was found, get next key in the same bucket */
Alexei Starovoitov4fe84352017-03-07 20:00:13 -0800756 next_l = hlist_nulls_entry_safe(rcu_dereference_raw(hlist_nulls_next_rcu(&l->hash_node)),
Alexei Starovoitov0f8e4bd2014-11-13 17:36:45 -0800757 struct htab_elem, hash_node);
758
759 if (next_l) {
760 /* if next elem in this hash list is non-zero, just return it */
761 memcpy(next_key, next_l->key, key_size);
762 return 0;
763 }
764
765 /* no more elements in this hash list, go to the next bucket */
766 i = hash & (htab->n_buckets - 1);
767 i++;
768
769find_first_elem:
770 /* iterate over buckets */
771 for (; i < htab->n_buckets; i++) {
772 head = select_bucket(htab, i);
773
774 /* pick first element in the bucket */
Alexei Starovoitov4fe84352017-03-07 20:00:13 -0800775 next_l = hlist_nulls_entry_safe(rcu_dereference_raw(hlist_nulls_first_rcu(head)),
Alexei Starovoitov0f8e4bd2014-11-13 17:36:45 -0800776 struct htab_elem, hash_node);
777 if (next_l) {
778 /* if it's not empty, just return it */
779 memcpy(next_key, next_l->key, key_size);
780 return 0;
781 }
782 }
783
Alexei Starovoitov6c905982016-03-07 21:57:15 -0800784 /* iterated over all buckets and all elements */
Alexei Starovoitov0f8e4bd2014-11-13 17:36:45 -0800785 return -ENOENT;
786}
787
Alexei Starovoitov6c905982016-03-07 21:57:15 -0800788static void htab_elem_free(struct bpf_htab *htab, struct htab_elem *l)
Alexei Starovoitov824bd0c2016-02-01 22:39:53 -0800789{
Alexei Starovoitov6c905982016-03-07 21:57:15 -0800790 if (htab->map.map_type == BPF_MAP_TYPE_PERCPU_HASH)
791 free_percpu(htab_elem_get_ptr(l, htab->map.key_size));
Alexei Starovoitov824bd0c2016-02-01 22:39:53 -0800792 kfree(l);
793}
794
Alexei Starovoitov6c905982016-03-07 21:57:15 -0800795static void htab_elem_free_rcu(struct rcu_head *head)
Alexei Starovoitov824bd0c2016-02-01 22:39:53 -0800796{
797 struct htab_elem *l = container_of(head, struct htab_elem, rcu);
Alexei Starovoitov6c905982016-03-07 21:57:15 -0800798 struct bpf_htab *htab = l->htab;
Alexei Starovoitov824bd0c2016-02-01 22:39:53 -0800799
Alexei Starovoitov6c905982016-03-07 21:57:15 -0800800 htab_elem_free(htab, l);
Alexei Starovoitov824bd0c2016-02-01 22:39:53 -0800801}
802
Andrii Nakryiko1d4e1eab2020-07-28 21:09:12 -0700803static void htab_put_fd_value(struct bpf_htab *htab, struct htab_elem *l)
Alexei Starovoitov824bd0c2016-02-01 22:39:53 -0800804{
Martin KaFai Laubcc6b1b2017-03-22 10:00:34 -0700805 struct bpf_map *map = &htab->map;
Andrii Nakryiko1d4e1eab2020-07-28 21:09:12 -0700806 void *ptr;
Martin KaFai Laubcc6b1b2017-03-22 10:00:34 -0700807
808 if (map->ops->map_fd_put_ptr) {
Andrii Nakryiko1d4e1eab2020-07-28 21:09:12 -0700809 ptr = fd_htab_map_get_ptr(map, l);
Martin KaFai Laubcc6b1b2017-03-22 10:00:34 -0700810 map->ops->map_fd_put_ptr(ptr);
811 }
Andrii Nakryiko1d4e1eab2020-07-28 21:09:12 -0700812}
813
814static void free_htab_elem(struct bpf_htab *htab, struct htab_elem *l)
815{
816 htab_put_fd_value(htab, l);
Martin KaFai Laubcc6b1b2017-03-22 10:00:34 -0700817
Alexei Starovoitov8c290e62017-03-21 19:05:04 -0700818 if (htab_is_prealloc(htab)) {
Alexei Starovoitova89fac52019-01-30 18:12:43 -0800819 __pcpu_freelist_push(&htab->freelist, &l->fnode);
Alexei Starovoitov824bd0c2016-02-01 22:39:53 -0800820 } else {
Alexei Starovoitov6c905982016-03-07 21:57:15 -0800821 atomic_dec(&htab->count);
822 l->htab = htab;
823 call_rcu(&l->rcu, htab_elem_free_rcu);
Alexei Starovoitov824bd0c2016-02-01 22:39:53 -0800824 }
825}
826
Martin KaFai Laufd91de72016-11-11 10:55:08 -0800827static void pcpu_copy_value(struct bpf_htab *htab, void __percpu *pptr,
828 void *value, bool onallcpus)
829{
830 if (!onallcpus) {
831 /* copy true value_size bytes */
832 memcpy(this_cpu_ptr(pptr), value, htab->map.value_size);
833 } else {
834 u32 size = round_up(htab->map.value_size, 8);
835 int off = 0, cpu;
836
837 for_each_possible_cpu(cpu) {
838 bpf_long_memcpy(per_cpu_ptr(pptr, cpu),
839 value + off, size);
840 off += size;
841 }
842 }
843}
844
David Verbeirend3bec012020-11-04 12:23:32 +0100845static void pcpu_init_value(struct bpf_htab *htab, void __percpu *pptr,
846 void *value, bool onallcpus)
847{
848 /* When using prealloc and not setting the initial value on all cpus,
849 * zero-fill element values for other cpus (just as what happens when
850 * not using prealloc). Otherwise, bpf program has no way to ensure
851 * known initial values for cpus other than current one
852 * (onallcpus=false always when coming from bpf prog).
853 */
854 if (htab_is_prealloc(htab) && !onallcpus) {
855 u32 size = round_up(htab->map.value_size, 8);
856 int current_cpu = raw_smp_processor_id();
857 int cpu;
858
859 for_each_possible_cpu(cpu) {
860 if (cpu == current_cpu)
861 bpf_long_memcpy(per_cpu_ptr(pptr, cpu), value,
862 size);
863 else
864 memset(per_cpu_ptr(pptr, cpu), 0, size);
865 }
866 } else {
867 pcpu_copy_value(htab, pptr, value, onallcpus);
868 }
869}
870
Daniel Borkmanncd36c3a2017-08-23 00:06:09 +0200871static bool fd_htab_map_needs_adjust(const struct bpf_htab *htab)
872{
873 return htab->map.map_type == BPF_MAP_TYPE_HASH_OF_MAPS &&
874 BITS_PER_LONG == 64;
875}
876
Alexei Starovoitov824bd0c2016-02-01 22:39:53 -0800877static struct htab_elem *alloc_htab_elem(struct bpf_htab *htab, void *key,
878 void *value, u32 key_size, u32 hash,
Alexei Starovoitova6ed3ea2016-08-05 14:01:27 -0700879 bool percpu, bool onallcpus,
Alexei Starovoitov8c290e62017-03-21 19:05:04 -0700880 struct htab_elem *old_elem)
Alexei Starovoitov824bd0c2016-02-01 22:39:53 -0800881{
Alexei Starovoitovd83525c2019-01-31 15:40:04 -0800882 u32 size = htab->map.value_size;
Alexei Starovoitov8c290e62017-03-21 19:05:04 -0700883 bool prealloc = htab_is_prealloc(htab);
884 struct htab_elem *l_new, **pl_new;
Alexei Starovoitov824bd0c2016-02-01 22:39:53 -0800885 void __percpu *pptr;
886
Alexei Starovoitov6c905982016-03-07 21:57:15 -0800887 if (prealloc) {
Alexei Starovoitov8c290e62017-03-21 19:05:04 -0700888 if (old_elem) {
889 /* if we're updating the existing element,
890 * use per-cpu extra elems to avoid freelist_pop/push
891 */
892 pl_new = this_cpu_ptr(htab->extra_elems);
893 l_new = *pl_new;
Andrii Nakryiko1d4e1eab2020-07-28 21:09:12 -0700894 htab_put_fd_value(htab, old_elem);
Alexei Starovoitov8c290e62017-03-21 19:05:04 -0700895 *pl_new = old_elem;
Alexei Starovoitova6ed3ea2016-08-05 14:01:27 -0700896 } else {
Alexei Starovoitov8c290e62017-03-21 19:05:04 -0700897 struct pcpu_freelist_node *l;
898
Alexei Starovoitova89fac52019-01-30 18:12:43 -0800899 l = __pcpu_freelist_pop(&htab->freelist);
Alexei Starovoitov8c290e62017-03-21 19:05:04 -0700900 if (!l)
901 return ERR_PTR(-E2BIG);
902 l_new = container_of(l, struct htab_elem, fnode);
Alexei Starovoitov6c905982016-03-07 21:57:15 -0800903 }
Alexei Starovoitova6ed3ea2016-08-05 14:01:27 -0700904 } else {
Alexei Starovoitov8c290e62017-03-21 19:05:04 -0700905 if (atomic_inc_return(&htab->count) > htab->map.max_entries)
906 if (!old_elem) {
907 /* when map is full and update() is replacing
908 * old element, it's ok to allocate, since
909 * old element will be freed immediately.
910 * Otherwise return an error
911 */
Mauricio Vasquez Bed2b82c2018-06-29 14:48:20 +0200912 l_new = ERR_PTR(-E2BIG);
913 goto dec_count;
Alexei Starovoitov8c290e62017-03-21 19:05:04 -0700914 }
Roman Gushchin88145682020-12-01 13:58:38 -0800915 l_new = bpf_map_kmalloc_node(&htab->map, htab->elem_size,
916 GFP_ATOMIC | __GFP_NOWARN,
917 htab->map.numa_node);
Mauricio Vasquez Bed2b82c2018-06-29 14:48:20 +0200918 if (!l_new) {
919 l_new = ERR_PTR(-ENOMEM);
920 goto dec_count;
921 }
Alexei Starovoitovd83525c2019-01-31 15:40:04 -0800922 check_and_init_map_lock(&htab->map,
923 l_new->key + round_up(key_size, 8));
Alexei Starovoitov6c905982016-03-07 21:57:15 -0800924 }
Alexei Starovoitov824bd0c2016-02-01 22:39:53 -0800925
926 memcpy(l_new->key, key, key_size);
927 if (percpu) {
Alexei Starovoitovd83525c2019-01-31 15:40:04 -0800928 size = round_up(size, 8);
Alexei Starovoitov6c905982016-03-07 21:57:15 -0800929 if (prealloc) {
930 pptr = htab_elem_get_ptr(l_new, key_size);
931 } else {
932 /* alloc_percpu zero-fills */
Roman Gushchin88145682020-12-01 13:58:38 -0800933 pptr = bpf_map_alloc_percpu(&htab->map, size, 8,
934 GFP_ATOMIC | __GFP_NOWARN);
Alexei Starovoitov6c905982016-03-07 21:57:15 -0800935 if (!pptr) {
936 kfree(l_new);
Mauricio Vasquez Bed2b82c2018-06-29 14:48:20 +0200937 l_new = ERR_PTR(-ENOMEM);
938 goto dec_count;
Alexei Starovoitov6c905982016-03-07 21:57:15 -0800939 }
Alexei Starovoitov824bd0c2016-02-01 22:39:53 -0800940 }
941
David Verbeirend3bec012020-11-04 12:23:32 +0100942 pcpu_init_value(htab, pptr, value, onallcpus);
Alexei Starovoitov15a07b32016-02-01 22:39:55 -0800943
Alexei Starovoitov6c905982016-03-07 21:57:15 -0800944 if (!prealloc)
945 htab_elem_set_ptr(l_new, key_size, pptr);
Alexei Starovoitovd83525c2019-01-31 15:40:04 -0800946 } else if (fd_htab_map_needs_adjust(htab)) {
947 size = round_up(size, 8);
Alexei Starovoitov824bd0c2016-02-01 22:39:53 -0800948 memcpy(l_new->key + round_up(key_size, 8), value, size);
Alexei Starovoitovd83525c2019-01-31 15:40:04 -0800949 } else {
950 copy_map_value(&htab->map,
951 l_new->key + round_up(key_size, 8),
952 value);
Alexei Starovoitov824bd0c2016-02-01 22:39:53 -0800953 }
954
955 l_new->hash = hash;
956 return l_new;
Mauricio Vasquez Bed2b82c2018-06-29 14:48:20 +0200957dec_count:
958 atomic_dec(&htab->count);
959 return l_new;
Alexei Starovoitov824bd0c2016-02-01 22:39:53 -0800960}
961
962static int check_flags(struct bpf_htab *htab, struct htab_elem *l_old,
963 u64 map_flags)
964{
Alexei Starovoitov96049f32019-01-31 15:40:09 -0800965 if (l_old && (map_flags & ~BPF_F_LOCK) == BPF_NOEXIST)
Alexei Starovoitov824bd0c2016-02-01 22:39:53 -0800966 /* elem already exists */
967 return -EEXIST;
968
Alexei Starovoitov96049f32019-01-31 15:40:09 -0800969 if (!l_old && (map_flags & ~BPF_F_LOCK) == BPF_EXIST)
Alexei Starovoitov824bd0c2016-02-01 22:39:53 -0800970 /* elem doesn't exist, cannot update it */
971 return -ENOENT;
972
973 return 0;
974}
975
Alexei Starovoitov0f8e4bd2014-11-13 17:36:45 -0800976/* Called from syscall or from eBPF program */
977static int htab_map_update_elem(struct bpf_map *map, void *key, void *value,
978 u64 map_flags)
979{
980 struct bpf_htab *htab = container_of(map, struct bpf_htab, map);
Alexei Starovoitov824bd0c2016-02-01 22:39:53 -0800981 struct htab_elem *l_new = NULL, *l_old;
Alexei Starovoitov4fe84352017-03-07 20:00:13 -0800982 struct hlist_nulls_head *head;
Alexei Starovoitov0f8e4bd2014-11-13 17:36:45 -0800983 unsigned long flags;
Alexei Starovoitov824bd0c2016-02-01 22:39:53 -0800984 struct bucket *b;
985 u32 key_size, hash;
Alexei Starovoitov0f8e4bd2014-11-13 17:36:45 -0800986 int ret;
987
Alexei Starovoitov96049f32019-01-31 15:40:09 -0800988 if (unlikely((map_flags & ~BPF_F_LOCK) > BPF_EXIST))
Alexei Starovoitov0f8e4bd2014-11-13 17:36:45 -0800989 /* unknown flags */
990 return -EINVAL;
991
Alexei Starovoitov1e6c62a2020-08-27 15:01:11 -0700992 WARN_ON_ONCE(!rcu_read_lock_held() && !rcu_read_lock_trace_held());
Alexei Starovoitov0f8e4bd2014-11-13 17:36:45 -0800993
Alexei Starovoitov824bd0c2016-02-01 22:39:53 -0800994 key_size = map->key_size;
995
Daniel Borkmannc0203472018-08-22 23:49:37 +0200996 hash = htab_map_hash(key, key_size, htab->hashrnd);
Alexei Starovoitov824bd0c2016-02-01 22:39:53 -0800997
Alexei Starovoitov824bd0c2016-02-01 22:39:53 -0800998 b = __select_bucket(htab, hash);
tom.leiming@gmail.com688ecfe2015-12-29 22:40:27 +0800999 head = &b->head;
Alexei Starovoitov0f8e4bd2014-11-13 17:36:45 -08001000
Alexei Starovoitov96049f32019-01-31 15:40:09 -08001001 if (unlikely(map_flags & BPF_F_LOCK)) {
1002 if (unlikely(!map_value_has_spin_lock(map)))
1003 return -EINVAL;
1004 /* find an element without taking the bucket lock */
1005 l_old = lookup_nulls_elem_raw(head, hash, key, key_size,
1006 htab->n_buckets);
1007 ret = check_flags(htab, l_old, map_flags);
1008 if (ret)
1009 return ret;
1010 if (l_old) {
1011 /* grab the element lock and update value in place */
1012 copy_map_value_locked(map,
1013 l_old->key + round_up(key_size, 8),
1014 value, false);
1015 return 0;
1016 }
1017 /* fall through, grab the bucket lock and lookup again.
1018 * 99.9% chance that the element won't be found,
1019 * but second lookup under lock has to be done.
1020 */
1021 }
1022
Song Liu20b6cc32020-10-29 00:19:25 -07001023 ret = htab_lock_bucket(htab, b, hash, &flags);
1024 if (ret)
1025 return ret;
Alexei Starovoitov0f8e4bd2014-11-13 17:36:45 -08001026
Alexei Starovoitov824bd0c2016-02-01 22:39:53 -08001027 l_old = lookup_elem_raw(head, hash, key, key_size);
Alexei Starovoitov0f8e4bd2014-11-13 17:36:45 -08001028
Alexei Starovoitov824bd0c2016-02-01 22:39:53 -08001029 ret = check_flags(htab, l_old, map_flags);
1030 if (ret)
Alexei Starovoitov0f8e4bd2014-11-13 17:36:45 -08001031 goto err;
Alexei Starovoitov0f8e4bd2014-11-13 17:36:45 -08001032
Alexei Starovoitov96049f32019-01-31 15:40:09 -08001033 if (unlikely(l_old && (map_flags & BPF_F_LOCK))) {
1034 /* first lookup without the bucket lock didn't find the element,
1035 * but second lookup with the bucket lock found it.
1036 * This case is highly unlikely, but has to be dealt with:
1037 * grab the element lock in addition to the bucket lock
1038 * and update element in place
1039 */
1040 copy_map_value_locked(map,
1041 l_old->key + round_up(key_size, 8),
1042 value, false);
1043 ret = 0;
1044 goto err;
1045 }
1046
Alexei Starovoitova6ed3ea2016-08-05 14:01:27 -07001047 l_new = alloc_htab_elem(htab, key, value, key_size, hash, false, false,
Alexei Starovoitov8c290e62017-03-21 19:05:04 -07001048 l_old);
Alexei Starovoitov6c905982016-03-07 21:57:15 -08001049 if (IS_ERR(l_new)) {
1050 /* all pre-allocated elements are in use or memory exhausted */
1051 ret = PTR_ERR(l_new);
1052 goto err;
1053 }
1054
Alexei Starovoitov824bd0c2016-02-01 22:39:53 -08001055 /* add new element to the head of the list, so that
1056 * concurrent search will find it before old elem
Alexei Starovoitov0f8e4bd2014-11-13 17:36:45 -08001057 */
Alexei Starovoitov4fe84352017-03-07 20:00:13 -08001058 hlist_nulls_add_head_rcu(&l_new->hash_node, head);
Alexei Starovoitov0f8e4bd2014-11-13 17:36:45 -08001059 if (l_old) {
Alexei Starovoitov4fe84352017-03-07 20:00:13 -08001060 hlist_nulls_del_rcu(&l_old->hash_node);
Alexei Starovoitov8c290e62017-03-21 19:05:04 -07001061 if (!htab_is_prealloc(htab))
1062 free_htab_elem(htab, l_old);
Alexei Starovoitov0f8e4bd2014-11-13 17:36:45 -08001063 }
Alexei Starovoitov6c905982016-03-07 21:57:15 -08001064 ret = 0;
Alexei Starovoitov0f8e4bd2014-11-13 17:36:45 -08001065err:
Song Liu20b6cc32020-10-29 00:19:25 -07001066 htab_unlock_bucket(htab, b, hash, flags);
Alexei Starovoitov0f8e4bd2014-11-13 17:36:45 -08001067 return ret;
1068}
1069
Martin KaFai Lau29ba7322016-11-11 10:55:09 -08001070static int htab_lru_map_update_elem(struct bpf_map *map, void *key, void *value,
1071 u64 map_flags)
1072{
1073 struct bpf_htab *htab = container_of(map, struct bpf_htab, map);
1074 struct htab_elem *l_new, *l_old = NULL;
Alexei Starovoitov4fe84352017-03-07 20:00:13 -08001075 struct hlist_nulls_head *head;
Martin KaFai Lau29ba7322016-11-11 10:55:09 -08001076 unsigned long flags;
1077 struct bucket *b;
1078 u32 key_size, hash;
1079 int ret;
1080
1081 if (unlikely(map_flags > BPF_EXIST))
1082 /* unknown flags */
1083 return -EINVAL;
1084
Alexei Starovoitov1e6c62a2020-08-27 15:01:11 -07001085 WARN_ON_ONCE(!rcu_read_lock_held() && !rcu_read_lock_trace_held());
Martin KaFai Lau29ba7322016-11-11 10:55:09 -08001086
1087 key_size = map->key_size;
1088
Daniel Borkmannc0203472018-08-22 23:49:37 +02001089 hash = htab_map_hash(key, key_size, htab->hashrnd);
Martin KaFai Lau29ba7322016-11-11 10:55:09 -08001090
1091 b = __select_bucket(htab, hash);
1092 head = &b->head;
1093
1094 /* For LRU, we need to alloc before taking bucket's
1095 * spinlock because getting free nodes from LRU may need
1096 * to remove older elements from htab and this removal
1097 * operation will need a bucket lock.
1098 */
1099 l_new = prealloc_lru_pop(htab, key, hash);
1100 if (!l_new)
1101 return -ENOMEM;
1102 memcpy(l_new->key + round_up(map->key_size, 8), value, map->value_size);
1103
Song Liu20b6cc32020-10-29 00:19:25 -07001104 ret = htab_lock_bucket(htab, b, hash, &flags);
1105 if (ret)
1106 return ret;
Martin KaFai Lau29ba7322016-11-11 10:55:09 -08001107
1108 l_old = lookup_elem_raw(head, hash, key, key_size);
1109
1110 ret = check_flags(htab, l_old, map_flags);
1111 if (ret)
1112 goto err;
1113
1114 /* add new element to the head of the list, so that
1115 * concurrent search will find it before old elem
1116 */
Alexei Starovoitov4fe84352017-03-07 20:00:13 -08001117 hlist_nulls_add_head_rcu(&l_new->hash_node, head);
Martin KaFai Lau29ba7322016-11-11 10:55:09 -08001118 if (l_old) {
1119 bpf_lru_node_set_ref(&l_new->lru_node);
Alexei Starovoitov4fe84352017-03-07 20:00:13 -08001120 hlist_nulls_del_rcu(&l_old->hash_node);
Martin KaFai Lau29ba7322016-11-11 10:55:09 -08001121 }
1122 ret = 0;
1123
1124err:
Song Liu20b6cc32020-10-29 00:19:25 -07001125 htab_unlock_bucket(htab, b, hash, flags);
Martin KaFai Lau29ba7322016-11-11 10:55:09 -08001126
1127 if (ret)
1128 bpf_lru_push_free(&htab->lru, &l_new->lru_node);
1129 else if (l_old)
1130 bpf_lru_push_free(&htab->lru, &l_old->lru_node);
1131
1132 return ret;
1133}
1134
Alexei Starovoitov15a07b32016-02-01 22:39:55 -08001135static int __htab_percpu_map_update_elem(struct bpf_map *map, void *key,
1136 void *value, u64 map_flags,
1137 bool onallcpus)
Alexei Starovoitov824bd0c2016-02-01 22:39:53 -08001138{
1139 struct bpf_htab *htab = container_of(map, struct bpf_htab, map);
1140 struct htab_elem *l_new = NULL, *l_old;
Alexei Starovoitov4fe84352017-03-07 20:00:13 -08001141 struct hlist_nulls_head *head;
Alexei Starovoitov824bd0c2016-02-01 22:39:53 -08001142 unsigned long flags;
1143 struct bucket *b;
1144 u32 key_size, hash;
1145 int ret;
1146
1147 if (unlikely(map_flags > BPF_EXIST))
1148 /* unknown flags */
1149 return -EINVAL;
1150
1151 WARN_ON_ONCE(!rcu_read_lock_held());
1152
1153 key_size = map->key_size;
1154
Daniel Borkmannc0203472018-08-22 23:49:37 +02001155 hash = htab_map_hash(key, key_size, htab->hashrnd);
Alexei Starovoitov824bd0c2016-02-01 22:39:53 -08001156
1157 b = __select_bucket(htab, hash);
1158 head = &b->head;
1159
Song Liu20b6cc32020-10-29 00:19:25 -07001160 ret = htab_lock_bucket(htab, b, hash, &flags);
1161 if (ret)
1162 return ret;
Alexei Starovoitov824bd0c2016-02-01 22:39:53 -08001163
1164 l_old = lookup_elem_raw(head, hash, key, key_size);
1165
1166 ret = check_flags(htab, l_old, map_flags);
1167 if (ret)
1168 goto err;
1169
1170 if (l_old) {
1171 /* per-cpu hash map can update value in-place */
Martin KaFai Laufd91de72016-11-11 10:55:08 -08001172 pcpu_copy_value(htab, htab_elem_get_ptr(l_old, key_size),
1173 value, onallcpus);
Alexei Starovoitov824bd0c2016-02-01 22:39:53 -08001174 } else {
1175 l_new = alloc_htab_elem(htab, key, value, key_size,
Alexei Starovoitov8c290e62017-03-21 19:05:04 -07001176 hash, true, onallcpus, NULL);
Alexei Starovoitov6c905982016-03-07 21:57:15 -08001177 if (IS_ERR(l_new)) {
1178 ret = PTR_ERR(l_new);
Alexei Starovoitov824bd0c2016-02-01 22:39:53 -08001179 goto err;
1180 }
Alexei Starovoitov4fe84352017-03-07 20:00:13 -08001181 hlist_nulls_add_head_rcu(&l_new->hash_node, head);
Alexei Starovoitov824bd0c2016-02-01 22:39:53 -08001182 }
1183 ret = 0;
1184err:
Song Liu20b6cc32020-10-29 00:19:25 -07001185 htab_unlock_bucket(htab, b, hash, flags);
Alexei Starovoitov824bd0c2016-02-01 22:39:53 -08001186 return ret;
1187}
1188
Martin KaFai Lau8f844932016-11-11 10:55:10 -08001189static int __htab_lru_percpu_map_update_elem(struct bpf_map *map, void *key,
1190 void *value, u64 map_flags,
1191 bool onallcpus)
1192{
1193 struct bpf_htab *htab = container_of(map, struct bpf_htab, map);
1194 struct htab_elem *l_new = NULL, *l_old;
Alexei Starovoitov4fe84352017-03-07 20:00:13 -08001195 struct hlist_nulls_head *head;
Martin KaFai Lau8f844932016-11-11 10:55:10 -08001196 unsigned long flags;
1197 struct bucket *b;
1198 u32 key_size, hash;
1199 int ret;
1200
1201 if (unlikely(map_flags > BPF_EXIST))
1202 /* unknown flags */
1203 return -EINVAL;
1204
1205 WARN_ON_ONCE(!rcu_read_lock_held());
1206
1207 key_size = map->key_size;
1208
Daniel Borkmannc0203472018-08-22 23:49:37 +02001209 hash = htab_map_hash(key, key_size, htab->hashrnd);
Martin KaFai Lau8f844932016-11-11 10:55:10 -08001210
1211 b = __select_bucket(htab, hash);
1212 head = &b->head;
1213
1214 /* For LRU, we need to alloc before taking bucket's
1215 * spinlock because LRU's elem alloc may need
1216 * to remove older elem from htab and this removal
1217 * operation will need a bucket lock.
1218 */
1219 if (map_flags != BPF_EXIST) {
1220 l_new = prealloc_lru_pop(htab, key, hash);
1221 if (!l_new)
1222 return -ENOMEM;
1223 }
1224
Song Liu20b6cc32020-10-29 00:19:25 -07001225 ret = htab_lock_bucket(htab, b, hash, &flags);
1226 if (ret)
1227 return ret;
Martin KaFai Lau8f844932016-11-11 10:55:10 -08001228
1229 l_old = lookup_elem_raw(head, hash, key, key_size);
1230
1231 ret = check_flags(htab, l_old, map_flags);
1232 if (ret)
1233 goto err;
1234
1235 if (l_old) {
1236 bpf_lru_node_set_ref(&l_old->lru_node);
1237
1238 /* per-cpu hash map can update value in-place */
1239 pcpu_copy_value(htab, htab_elem_get_ptr(l_old, key_size),
1240 value, onallcpus);
1241 } else {
David Verbeirend3bec012020-11-04 12:23:32 +01001242 pcpu_init_value(htab, htab_elem_get_ptr(l_new, key_size),
Martin KaFai Lau8f844932016-11-11 10:55:10 -08001243 value, onallcpus);
Alexei Starovoitov4fe84352017-03-07 20:00:13 -08001244 hlist_nulls_add_head_rcu(&l_new->hash_node, head);
Martin KaFai Lau8f844932016-11-11 10:55:10 -08001245 l_new = NULL;
1246 }
1247 ret = 0;
1248err:
Song Liu20b6cc32020-10-29 00:19:25 -07001249 htab_unlock_bucket(htab, b, hash, flags);
Martin KaFai Lau8f844932016-11-11 10:55:10 -08001250 if (l_new)
1251 bpf_lru_push_free(&htab->lru, &l_new->lru_node);
1252 return ret;
1253}
1254
Alexei Starovoitov15a07b32016-02-01 22:39:55 -08001255static int htab_percpu_map_update_elem(struct bpf_map *map, void *key,
1256 void *value, u64 map_flags)
1257{
1258 return __htab_percpu_map_update_elem(map, key, value, map_flags, false);
1259}
1260
Martin KaFai Lau8f844932016-11-11 10:55:10 -08001261static int htab_lru_percpu_map_update_elem(struct bpf_map *map, void *key,
1262 void *value, u64 map_flags)
1263{
1264 return __htab_lru_percpu_map_update_elem(map, key, value, map_flags,
1265 false);
1266}
1267
Alexei Starovoitov0f8e4bd2014-11-13 17:36:45 -08001268/* Called from syscall or from eBPF program */
1269static int htab_map_delete_elem(struct bpf_map *map, void *key)
1270{
1271 struct bpf_htab *htab = container_of(map, struct bpf_htab, map);
Alexei Starovoitov4fe84352017-03-07 20:00:13 -08001272 struct hlist_nulls_head *head;
tom.leiming@gmail.com688ecfe2015-12-29 22:40:27 +08001273 struct bucket *b;
Alexei Starovoitov0f8e4bd2014-11-13 17:36:45 -08001274 struct htab_elem *l;
1275 unsigned long flags;
1276 u32 hash, key_size;
Song Liu20b6cc32020-10-29 00:19:25 -07001277 int ret;
Alexei Starovoitov0f8e4bd2014-11-13 17:36:45 -08001278
Alexei Starovoitov1e6c62a2020-08-27 15:01:11 -07001279 WARN_ON_ONCE(!rcu_read_lock_held() && !rcu_read_lock_trace_held());
Alexei Starovoitov0f8e4bd2014-11-13 17:36:45 -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);
tom.leiming@gmail.com688ecfe2015-12-29 22:40:27 +08001284 b = __select_bucket(htab, hash);
1285 head = &b->head;
Alexei Starovoitov0f8e4bd2014-11-13 17:36:45 -08001286
Song Liu20b6cc32020-10-29 00:19:25 -07001287 ret = htab_lock_bucket(htab, b, hash, &flags);
1288 if (ret)
1289 return ret;
Alexei Starovoitov0f8e4bd2014-11-13 17:36:45 -08001290
Alexei Starovoitov0f8e4bd2014-11-13 17:36:45 -08001291 l = lookup_elem_raw(head, hash, key, key_size);
1292
1293 if (l) {
Alexei Starovoitov4fe84352017-03-07 20:00:13 -08001294 hlist_nulls_del_rcu(&l->hash_node);
Alexei Starovoitov6c905982016-03-07 21:57:15 -08001295 free_htab_elem(htab, l);
Song Liu20b6cc32020-10-29 00:19:25 -07001296 } else {
1297 ret = -ENOENT;
Alexei Starovoitov0f8e4bd2014-11-13 17:36:45 -08001298 }
1299
Song Liu20b6cc32020-10-29 00:19:25 -07001300 htab_unlock_bucket(htab, b, hash, flags);
Alexei Starovoitov0f8e4bd2014-11-13 17:36:45 -08001301 return ret;
1302}
1303
Martin KaFai Lau29ba7322016-11-11 10:55:09 -08001304static int htab_lru_map_delete_elem(struct bpf_map *map, void *key)
1305{
1306 struct bpf_htab *htab = container_of(map, struct bpf_htab, map);
Alexei Starovoitov4fe84352017-03-07 20:00:13 -08001307 struct hlist_nulls_head *head;
Martin KaFai Lau29ba7322016-11-11 10:55:09 -08001308 struct bucket *b;
1309 struct htab_elem *l;
1310 unsigned long flags;
1311 u32 hash, key_size;
Song Liu20b6cc32020-10-29 00:19:25 -07001312 int ret;
Martin KaFai Lau29ba7322016-11-11 10:55:09 -08001313
Alexei Starovoitov1e6c62a2020-08-27 15:01:11 -07001314 WARN_ON_ONCE(!rcu_read_lock_held() && !rcu_read_lock_trace_held());
Martin KaFai Lau29ba7322016-11-11 10:55:09 -08001315
1316 key_size = map->key_size;
1317
Daniel Borkmannc0203472018-08-22 23:49:37 +02001318 hash = htab_map_hash(key, key_size, htab->hashrnd);
Martin KaFai Lau29ba7322016-11-11 10:55:09 -08001319 b = __select_bucket(htab, hash);
1320 head = &b->head;
1321
Song Liu20b6cc32020-10-29 00:19:25 -07001322 ret = htab_lock_bucket(htab, b, hash, &flags);
1323 if (ret)
1324 return ret;
Martin KaFai Lau29ba7322016-11-11 10:55:09 -08001325
1326 l = lookup_elem_raw(head, hash, key, key_size);
1327
Song Liu20b6cc32020-10-29 00:19:25 -07001328 if (l)
Alexei Starovoitov4fe84352017-03-07 20:00:13 -08001329 hlist_nulls_del_rcu(&l->hash_node);
Song Liu20b6cc32020-10-29 00:19:25 -07001330 else
1331 ret = -ENOENT;
Martin KaFai Lau29ba7322016-11-11 10:55:09 -08001332
Song Liu20b6cc32020-10-29 00:19:25 -07001333 htab_unlock_bucket(htab, b, hash, flags);
Martin KaFai Lau29ba7322016-11-11 10:55:09 -08001334 if (l)
1335 bpf_lru_push_free(&htab->lru, &l->lru_node);
1336 return ret;
1337}
1338
Alexei Starovoitov0f8e4bd2014-11-13 17:36:45 -08001339static void delete_all_elements(struct bpf_htab *htab)
1340{
1341 int i;
1342
1343 for (i = 0; i < htab->n_buckets; i++) {
Alexei Starovoitov4fe84352017-03-07 20:00:13 -08001344 struct hlist_nulls_head *head = select_bucket(htab, i);
1345 struct hlist_nulls_node *n;
Alexei Starovoitov0f8e4bd2014-11-13 17:36:45 -08001346 struct htab_elem *l;
1347
Alexei Starovoitov4fe84352017-03-07 20:00:13 -08001348 hlist_nulls_for_each_entry_safe(l, n, head, hash_node) {
1349 hlist_nulls_del_rcu(&l->hash_node);
Alexei Starovoitov8c290e62017-03-21 19:05:04 -07001350 htab_elem_free(htab, l);
Alexei Starovoitov0f8e4bd2014-11-13 17:36:45 -08001351 }
1352 }
1353}
Martin KaFai Laubcc6b1b2017-03-22 10:00:34 -07001354
Alexei Starovoitov0f8e4bd2014-11-13 17:36:45 -08001355/* Called when map->refcnt goes to zero, either from workqueue or from syscall */
1356static void htab_map_free(struct bpf_map *map)
1357{
1358 struct bpf_htab *htab = container_of(map, struct bpf_htab, map);
Song Liu20b6cc32020-10-29 00:19:25 -07001359 int i;
Alexei Starovoitov0f8e4bd2014-11-13 17:36:45 -08001360
Alexei Starovoitovbba1dc02020-06-29 21:33:39 -07001361 /* bpf_free_used_maps() or close(map_fd) will trigger this map_free callback.
1362 * bpf_free_used_maps() is called after bpf prog is no longer executing.
1363 * There is no need to synchronize_rcu() here to protect map elements.
Alexei Starovoitov0f8e4bd2014-11-13 17:36:45 -08001364 */
Alexei Starovoitov0f8e4bd2014-11-13 17:36:45 -08001365
Alexei Starovoitov6c905982016-03-07 21:57:15 -08001366 /* some of free_htab_elem() callbacks for elements of this map may
1367 * not have executed. Wait for them.
Alexei Starovoitov0f8e4bd2014-11-13 17:36:45 -08001368 */
Alexei Starovoitov6c905982016-03-07 21:57:15 -08001369 rcu_barrier();
Alexei Starovoitov8c290e62017-03-21 19:05:04 -07001370 if (!htab_is_prealloc(htab))
Alexei Starovoitov6c905982016-03-07 21:57:15 -08001371 delete_all_elements(htab);
Martin KaFai Lau29ba7322016-11-11 10:55:09 -08001372 else
1373 prealloc_destroy(htab);
1374
Alexei Starovoitova6ed3ea2016-08-05 14:01:27 -07001375 free_percpu(htab->extra_elems);
Daniel Borkmannd407bd22017-01-18 15:14:17 +01001376 bpf_map_area_free(htab->buckets);
Song Liu20b6cc32020-10-29 00:19:25 -07001377 for (i = 0; i < HASHTAB_MAP_LOCK_COUNT; i++)
1378 free_percpu(htab->map_locked[i]);
Eric Dumazet8aaeed82020-11-02 03:41:00 -08001379 lockdep_unregister_key(&htab->lockdep_key);
Alexei Starovoitov0f8e4bd2014-11-13 17:36:45 -08001380 kfree(htab);
1381}
1382
Yonghong Song699c86d2018-08-09 08:55:20 -07001383static void htab_map_seq_show_elem(struct bpf_map *map, void *key,
1384 struct seq_file *m)
1385{
1386 void *value;
1387
1388 rcu_read_lock();
1389
1390 value = htab_map_lookup_elem(map, key);
1391 if (!value) {
1392 rcu_read_unlock();
1393 return;
1394 }
1395
1396 btf_type_seq_show(map->btf, map->btf_key_type_id, key, m);
1397 seq_puts(m, ": ");
1398 btf_type_seq_show(map->btf, map->btf_value_type_id, value, m);
1399 seq_puts(m, "\n");
1400
1401 rcu_read_unlock();
1402}
1403
Yonghong Song05799632020-01-15 10:43:04 -08001404static int
1405__htab_map_lookup_and_delete_batch(struct bpf_map *map,
1406 const union bpf_attr *attr,
1407 union bpf_attr __user *uattr,
1408 bool do_delete, bool is_lru_map,
1409 bool is_percpu)
1410{
1411 struct bpf_htab *htab = container_of(map, struct bpf_htab, map);
1412 u32 bucket_cnt, total, key_size, value_size, roundup_key_size;
1413 void *keys = NULL, *values = NULL, *value, *dst_key, *dst_val;
1414 void __user *uvalues = u64_to_user_ptr(attr->batch.values);
1415 void __user *ukeys = u64_to_user_ptr(attr->batch.keys);
Lukas Bulwahn2f4b0312020-12-07 13:37:20 +01001416 void __user *ubatch = u64_to_user_ptr(attr->batch.in_batch);
Yonghong Song05799632020-01-15 10:43:04 -08001417 u32 batch, max_count, size, bucket_size;
Yonghong Songb9aff382020-02-19 15:47:57 -08001418 struct htab_elem *node_to_free = NULL;
Yonghong Song05799632020-01-15 10:43:04 -08001419 u64 elem_map_flags, map_flags;
1420 struct hlist_nulls_head *head;
1421 struct hlist_nulls_node *n;
Brian Vazquez492e0d02020-02-18 09:25:52 -08001422 unsigned long flags = 0;
1423 bool locked = false;
Yonghong Song05799632020-01-15 10:43:04 -08001424 struct htab_elem *l;
1425 struct bucket *b;
1426 int ret = 0;
1427
1428 elem_map_flags = attr->batch.elem_flags;
1429 if ((elem_map_flags & ~BPF_F_LOCK) ||
1430 ((elem_map_flags & BPF_F_LOCK) && !map_value_has_spin_lock(map)))
1431 return -EINVAL;
1432
1433 map_flags = attr->batch.flags;
1434 if (map_flags)
1435 return -EINVAL;
1436
1437 max_count = attr->batch.count;
1438 if (!max_count)
1439 return 0;
1440
1441 if (put_user(0, &uattr->batch.count))
1442 return -EFAULT;
1443
1444 batch = 0;
1445 if (ubatch && copy_from_user(&batch, ubatch, sizeof(batch)))
1446 return -EFAULT;
1447
1448 if (batch >= htab->n_buckets)
1449 return -ENOENT;
1450
1451 key_size = htab->map.key_size;
1452 roundup_key_size = round_up(htab->map.key_size, 8);
1453 value_size = htab->map.value_size;
1454 size = round_up(value_size, 8);
1455 if (is_percpu)
1456 value_size = size * num_possible_cpus();
1457 total = 0;
1458 /* while experimenting with hash tables with sizes ranging from 10 to
1459 * 1000, it was observed that a bucket can have upto 5 entries.
1460 */
1461 bucket_size = 5;
1462
1463alloc:
1464 /* We cannot do copy_from_user or copy_to_user inside
1465 * the rcu_read_lock. Allocate enough space here.
1466 */
1467 keys = kvmalloc(key_size * bucket_size, GFP_USER | __GFP_NOWARN);
1468 values = kvmalloc(value_size * bucket_size, GFP_USER | __GFP_NOWARN);
1469 if (!keys || !values) {
1470 ret = -ENOMEM;
1471 goto after_loop;
1472 }
1473
1474again:
Thomas Gleixner085fee12020-02-24 15:01:48 +01001475 bpf_disable_instrumentation();
Yonghong Song05799632020-01-15 10:43:04 -08001476 rcu_read_lock();
1477again_nocopy:
1478 dst_key = keys;
1479 dst_val = values;
1480 b = &htab->buckets[batch];
1481 head = &b->head;
Brian Vazquez492e0d02020-02-18 09:25:52 -08001482 /* do not grab the lock unless need it (bucket_cnt > 0). */
Song Liu20b6cc32020-10-29 00:19:25 -07001483 if (locked) {
1484 ret = htab_lock_bucket(htab, b, batch, &flags);
1485 if (ret)
1486 goto next_batch;
1487 }
Yonghong Song05799632020-01-15 10:43:04 -08001488
1489 bucket_cnt = 0;
1490 hlist_nulls_for_each_entry_rcu(l, n, head, hash_node)
1491 bucket_cnt++;
1492
Brian Vazquez492e0d02020-02-18 09:25:52 -08001493 if (bucket_cnt && !locked) {
1494 locked = true;
1495 goto again_nocopy;
1496 }
1497
Yonghong Song05799632020-01-15 10:43:04 -08001498 if (bucket_cnt > (max_count - total)) {
1499 if (total == 0)
1500 ret = -ENOSPC;
Brian Vazquez492e0d02020-02-18 09:25:52 -08001501 /* Note that since bucket_cnt > 0 here, it is implicit
1502 * that the locked was grabbed, so release it.
1503 */
Song Liu20b6cc32020-10-29 00:19:25 -07001504 htab_unlock_bucket(htab, b, batch, flags);
Yonghong Song05799632020-01-15 10:43:04 -08001505 rcu_read_unlock();
Thomas Gleixner085fee12020-02-24 15:01:48 +01001506 bpf_enable_instrumentation();
Yonghong Song05799632020-01-15 10:43:04 -08001507 goto after_loop;
1508 }
1509
1510 if (bucket_cnt > bucket_size) {
1511 bucket_size = bucket_cnt;
Brian Vazquez492e0d02020-02-18 09:25:52 -08001512 /* Note that since bucket_cnt > 0 here, it is implicit
1513 * that the locked was grabbed, so release it.
1514 */
Song Liu20b6cc32020-10-29 00:19:25 -07001515 htab_unlock_bucket(htab, b, batch, flags);
Yonghong Song05799632020-01-15 10:43:04 -08001516 rcu_read_unlock();
Thomas Gleixner085fee12020-02-24 15:01:48 +01001517 bpf_enable_instrumentation();
Yonghong Song05799632020-01-15 10:43:04 -08001518 kvfree(keys);
1519 kvfree(values);
1520 goto alloc;
1521 }
1522
Brian Vazquez492e0d02020-02-18 09:25:52 -08001523 /* Next block is only safe to run if you have grabbed the lock */
1524 if (!locked)
1525 goto next_batch;
1526
Yonghong Song05799632020-01-15 10:43:04 -08001527 hlist_nulls_for_each_entry_safe(l, n, head, hash_node) {
1528 memcpy(dst_key, l->key, key_size);
1529
1530 if (is_percpu) {
1531 int off = 0, cpu;
1532 void __percpu *pptr;
1533
1534 pptr = htab_elem_get_ptr(l, map->key_size);
1535 for_each_possible_cpu(cpu) {
1536 bpf_long_memcpy(dst_val + off,
1537 per_cpu_ptr(pptr, cpu), size);
1538 off += size;
1539 }
1540 } else {
1541 value = l->key + roundup_key_size;
1542 if (elem_map_flags & BPF_F_LOCK)
1543 copy_map_value_locked(map, dst_val, value,
1544 true);
1545 else
1546 copy_map_value(map, dst_val, value);
1547 check_and_init_map_lock(map, dst_val);
1548 }
1549 if (do_delete) {
1550 hlist_nulls_del_rcu(&l->hash_node);
Yonghong Songb9aff382020-02-19 15:47:57 -08001551
1552 /* bpf_lru_push_free() will acquire lru_lock, which
1553 * may cause deadlock. See comments in function
1554 * prealloc_lru_pop(). Let us do bpf_lru_push_free()
1555 * after releasing the bucket lock.
1556 */
1557 if (is_lru_map) {
1558 l->batch_flink = node_to_free;
1559 node_to_free = l;
1560 } else {
Yonghong Song05799632020-01-15 10:43:04 -08001561 free_htab_elem(htab, l);
Yonghong Songb9aff382020-02-19 15:47:57 -08001562 }
Yonghong Song05799632020-01-15 10:43:04 -08001563 }
1564 dst_key += key_size;
1565 dst_val += value_size;
1566 }
1567
Song Liu20b6cc32020-10-29 00:19:25 -07001568 htab_unlock_bucket(htab, b, batch, flags);
Brian Vazquez492e0d02020-02-18 09:25:52 -08001569 locked = false;
Yonghong Songb9aff382020-02-19 15:47:57 -08001570
1571 while (node_to_free) {
1572 l = node_to_free;
1573 node_to_free = node_to_free->batch_flink;
1574 bpf_lru_push_free(&htab->lru, &l->lru_node);
1575 }
1576
Brian Vazquez492e0d02020-02-18 09:25:52 -08001577next_batch:
Yonghong Song05799632020-01-15 10:43:04 -08001578 /* If we are not copying data, we can go to next bucket and avoid
1579 * unlocking the rcu.
1580 */
1581 if (!bucket_cnt && (batch + 1 < htab->n_buckets)) {
1582 batch++;
1583 goto again_nocopy;
1584 }
1585
1586 rcu_read_unlock();
Thomas Gleixner085fee12020-02-24 15:01:48 +01001587 bpf_enable_instrumentation();
Yonghong Song05799632020-01-15 10:43:04 -08001588 if (bucket_cnt && (copy_to_user(ukeys + total * key_size, keys,
1589 key_size * bucket_cnt) ||
1590 copy_to_user(uvalues + total * value_size, values,
1591 value_size * bucket_cnt))) {
1592 ret = -EFAULT;
1593 goto after_loop;
1594 }
1595
1596 total += bucket_cnt;
1597 batch++;
1598 if (batch >= htab->n_buckets) {
1599 ret = -ENOENT;
1600 goto after_loop;
1601 }
1602 goto again;
1603
1604after_loop:
1605 if (ret == -EFAULT)
1606 goto out;
1607
1608 /* copy # of entries and next batch */
1609 ubatch = u64_to_user_ptr(attr->batch.out_batch);
1610 if (copy_to_user(ubatch, &batch, sizeof(batch)) ||
1611 put_user(total, &uattr->batch.count))
1612 ret = -EFAULT;
1613
1614out:
1615 kvfree(keys);
1616 kvfree(values);
1617 return ret;
1618}
1619
1620static int
1621htab_percpu_map_lookup_batch(struct bpf_map *map, const union bpf_attr *attr,
1622 union bpf_attr __user *uattr)
1623{
1624 return __htab_map_lookup_and_delete_batch(map, attr, uattr, false,
1625 false, true);
1626}
1627
1628static int
1629htab_percpu_map_lookup_and_delete_batch(struct bpf_map *map,
1630 const union bpf_attr *attr,
1631 union bpf_attr __user *uattr)
1632{
1633 return __htab_map_lookup_and_delete_batch(map, attr, uattr, true,
1634 false, true);
1635}
1636
1637static int
1638htab_map_lookup_batch(struct bpf_map *map, const union bpf_attr *attr,
1639 union bpf_attr __user *uattr)
1640{
1641 return __htab_map_lookup_and_delete_batch(map, attr, uattr, false,
1642 false, false);
1643}
1644
1645static int
1646htab_map_lookup_and_delete_batch(struct bpf_map *map,
1647 const union bpf_attr *attr,
1648 union bpf_attr __user *uattr)
1649{
1650 return __htab_map_lookup_and_delete_batch(map, attr, uattr, true,
1651 false, false);
1652}
1653
1654static int
1655htab_lru_percpu_map_lookup_batch(struct bpf_map *map,
1656 const union bpf_attr *attr,
1657 union bpf_attr __user *uattr)
1658{
1659 return __htab_map_lookup_and_delete_batch(map, attr, uattr, false,
1660 true, true);
1661}
1662
1663static int
1664htab_lru_percpu_map_lookup_and_delete_batch(struct bpf_map *map,
1665 const union bpf_attr *attr,
1666 union bpf_attr __user *uattr)
1667{
1668 return __htab_map_lookup_and_delete_batch(map, attr, uattr, true,
1669 true, true);
1670}
1671
1672static int
1673htab_lru_map_lookup_batch(struct bpf_map *map, const union bpf_attr *attr,
1674 union bpf_attr __user *uattr)
1675{
1676 return __htab_map_lookup_and_delete_batch(map, attr, uattr, false,
1677 true, false);
1678}
1679
1680static int
1681htab_lru_map_lookup_and_delete_batch(struct bpf_map *map,
1682 const union bpf_attr *attr,
1683 union bpf_attr __user *uattr)
1684{
1685 return __htab_map_lookup_and_delete_batch(map, attr, uattr, true,
1686 true, false);
1687}
1688
Yonghong Songd6c45032020-07-23 11:41:14 -07001689struct bpf_iter_seq_hash_map_info {
1690 struct bpf_map *map;
1691 struct bpf_htab *htab;
1692 void *percpu_value_buf; // non-zero means percpu hash
Yonghong Songd6c45032020-07-23 11:41:14 -07001693 u32 bucket_id;
1694 u32 skip_elems;
1695};
1696
1697static struct htab_elem *
1698bpf_hash_map_seq_find_next(struct bpf_iter_seq_hash_map_info *info,
1699 struct htab_elem *prev_elem)
1700{
1701 const struct bpf_htab *htab = info->htab;
Yonghong Songd6c45032020-07-23 11:41:14 -07001702 u32 skip_elems = info->skip_elems;
1703 u32 bucket_id = info->bucket_id;
1704 struct hlist_nulls_head *head;
1705 struct hlist_nulls_node *n;
1706 struct htab_elem *elem;
1707 struct bucket *b;
1708 u32 i, count;
1709
1710 if (bucket_id >= htab->n_buckets)
1711 return NULL;
1712
1713 /* try to find next elem in the same bucket */
1714 if (prev_elem) {
1715 /* no update/deletion on this bucket, prev_elem should be still valid
1716 * and we won't skip elements.
1717 */
1718 n = rcu_dereference_raw(hlist_nulls_next_rcu(&prev_elem->hash_node));
1719 elem = hlist_nulls_entry_safe(n, struct htab_elem, hash_node);
1720 if (elem)
1721 return elem;
1722
1723 /* not found, unlock and go to the next bucket */
1724 b = &htab->buckets[bucket_id++];
Yonghong Songdc0988b2020-09-02 16:53:40 -07001725 rcu_read_unlock();
Yonghong Songd6c45032020-07-23 11:41:14 -07001726 skip_elems = 0;
1727 }
1728
1729 for (i = bucket_id; i < htab->n_buckets; i++) {
1730 b = &htab->buckets[i];
Yonghong Songdc0988b2020-09-02 16:53:40 -07001731 rcu_read_lock();
Yonghong Songd6c45032020-07-23 11:41:14 -07001732
1733 count = 0;
1734 head = &b->head;
1735 hlist_nulls_for_each_entry_rcu(elem, n, head, hash_node) {
1736 if (count >= skip_elems) {
Yonghong Songd6c45032020-07-23 11:41:14 -07001737 info->bucket_id = i;
1738 info->skip_elems = count;
1739 return elem;
1740 }
1741 count++;
1742 }
1743
Yonghong Songdc0988b2020-09-02 16:53:40 -07001744 rcu_read_unlock();
Yonghong Songd6c45032020-07-23 11:41:14 -07001745 skip_elems = 0;
1746 }
1747
1748 info->bucket_id = i;
1749 info->skip_elems = 0;
1750 return NULL;
1751}
1752
1753static void *bpf_hash_map_seq_start(struct seq_file *seq, loff_t *pos)
1754{
1755 struct bpf_iter_seq_hash_map_info *info = seq->private;
1756 struct htab_elem *elem;
1757
1758 elem = bpf_hash_map_seq_find_next(info, NULL);
1759 if (!elem)
1760 return NULL;
1761
1762 if (*pos == 0)
1763 ++*pos;
1764 return elem;
1765}
1766
1767static void *bpf_hash_map_seq_next(struct seq_file *seq, void *v, loff_t *pos)
1768{
1769 struct bpf_iter_seq_hash_map_info *info = seq->private;
1770
1771 ++*pos;
1772 ++info->skip_elems;
1773 return bpf_hash_map_seq_find_next(info, v);
1774}
1775
1776static int __bpf_hash_map_seq_show(struct seq_file *seq, struct htab_elem *elem)
1777{
1778 struct bpf_iter_seq_hash_map_info *info = seq->private;
1779 u32 roundup_key_size, roundup_value_size;
1780 struct bpf_iter__bpf_map_elem ctx = {};
1781 struct bpf_map *map = info->map;
1782 struct bpf_iter_meta meta;
1783 int ret = 0, off = 0, cpu;
1784 struct bpf_prog *prog;
1785 void __percpu *pptr;
1786
1787 meta.seq = seq;
1788 prog = bpf_iter_get_info(&meta, elem == NULL);
1789 if (prog) {
1790 ctx.meta = &meta;
1791 ctx.map = info->map;
1792 if (elem) {
1793 roundup_key_size = round_up(map->key_size, 8);
1794 ctx.key = elem->key;
1795 if (!info->percpu_value_buf) {
1796 ctx.value = elem->key + roundup_key_size;
1797 } else {
1798 roundup_value_size = round_up(map->value_size, 8);
1799 pptr = htab_elem_get_ptr(elem, map->key_size);
1800 for_each_possible_cpu(cpu) {
1801 bpf_long_memcpy(info->percpu_value_buf + off,
1802 per_cpu_ptr(pptr, cpu),
1803 roundup_value_size);
1804 off += roundup_value_size;
1805 }
1806 ctx.value = info->percpu_value_buf;
1807 }
1808 }
1809 ret = bpf_iter_run_prog(prog, &ctx);
1810 }
1811
1812 return ret;
1813}
1814
1815static int bpf_hash_map_seq_show(struct seq_file *seq, void *v)
1816{
1817 return __bpf_hash_map_seq_show(seq, v);
1818}
1819
1820static void bpf_hash_map_seq_stop(struct seq_file *seq, void *v)
1821{
Yonghong Songd6c45032020-07-23 11:41:14 -07001822 if (!v)
1823 (void)__bpf_hash_map_seq_show(seq, NULL);
1824 else
Yonghong Songdc0988b2020-09-02 16:53:40 -07001825 rcu_read_unlock();
Yonghong Songd6c45032020-07-23 11:41:14 -07001826}
1827
1828static int bpf_iter_init_hash_map(void *priv_data,
1829 struct bpf_iter_aux_info *aux)
1830{
1831 struct bpf_iter_seq_hash_map_info *seq_info = priv_data;
1832 struct bpf_map *map = aux->map;
1833 void *value_buf;
1834 u32 buf_size;
1835
1836 if (map->map_type == BPF_MAP_TYPE_PERCPU_HASH ||
1837 map->map_type == BPF_MAP_TYPE_LRU_PERCPU_HASH) {
1838 buf_size = round_up(map->value_size, 8) * num_possible_cpus();
1839 value_buf = kmalloc(buf_size, GFP_USER | __GFP_NOWARN);
1840 if (!value_buf)
1841 return -ENOMEM;
1842
1843 seq_info->percpu_value_buf = value_buf;
1844 }
1845
1846 seq_info->map = map;
1847 seq_info->htab = container_of(map, struct bpf_htab, map);
1848 return 0;
1849}
1850
1851static void bpf_iter_fini_hash_map(void *priv_data)
1852{
1853 struct bpf_iter_seq_hash_map_info *seq_info = priv_data;
1854
1855 kfree(seq_info->percpu_value_buf);
1856}
1857
1858static const struct seq_operations bpf_hash_map_seq_ops = {
1859 .start = bpf_hash_map_seq_start,
1860 .next = bpf_hash_map_seq_next,
1861 .stop = bpf_hash_map_seq_stop,
1862 .show = bpf_hash_map_seq_show,
1863};
1864
1865static const struct bpf_iter_seq_info iter_seq_info = {
1866 .seq_ops = &bpf_hash_map_seq_ops,
1867 .init_seq_private = bpf_iter_init_hash_map,
1868 .fini_seq_private = bpf_iter_fini_hash_map,
1869 .seq_priv_size = sizeof(struct bpf_iter_seq_hash_map_info),
1870};
1871
Andrey Ignatov41c48f32020-06-19 14:11:43 -07001872static int htab_map_btf_id;
Johannes Berg40077e02017-04-11 15:34:58 +02001873const struct bpf_map_ops htab_map_ops = {
Martin KaFai Lauf4d05252020-08-27 18:18:06 -07001874 .map_meta_equal = bpf_map_meta_equal,
Jakub Kicinski9328e0d2018-01-11 20:29:05 -08001875 .map_alloc_check = htab_map_alloc_check,
Alexei Starovoitov0f8e4bd2014-11-13 17:36:45 -08001876 .map_alloc = htab_map_alloc,
1877 .map_free = htab_map_free,
1878 .map_get_next_key = htab_map_get_next_key,
1879 .map_lookup_elem = htab_map_lookup_elem,
1880 .map_update_elem = htab_map_update_elem,
1881 .map_delete_elem = htab_map_delete_elem,
Alexei Starovoitov9015d2f2017-03-15 18:26:43 -07001882 .map_gen_lookup = htab_map_gen_lookup,
Yonghong Song699c86d2018-08-09 08:55:20 -07001883 .map_seq_show_elem = htab_map_seq_show_elem,
Yonghong Song05799632020-01-15 10:43:04 -08001884 BATCH_OPS(htab),
Andrey Ignatov41c48f32020-06-19 14:11:43 -07001885 .map_btf_name = "bpf_htab",
1886 .map_btf_id = &htab_map_btf_id,
Yonghong Songd6c45032020-07-23 11:41:14 -07001887 .iter_seq_info = &iter_seq_info,
Alexei Starovoitov0f8e4bd2014-11-13 17:36:45 -08001888};
1889
Andrey Ignatov2872e9a2020-06-19 14:11:44 -07001890static int htab_lru_map_btf_id;
Johannes Berg40077e02017-04-11 15:34:58 +02001891const struct bpf_map_ops htab_lru_map_ops = {
Martin KaFai Lauf4d05252020-08-27 18:18:06 -07001892 .map_meta_equal = bpf_map_meta_equal,
Jakub Kicinski9328e0d2018-01-11 20:29:05 -08001893 .map_alloc_check = htab_map_alloc_check,
Martin KaFai Lau29ba7322016-11-11 10:55:09 -08001894 .map_alloc = htab_map_alloc,
1895 .map_free = htab_map_free,
1896 .map_get_next_key = htab_map_get_next_key,
1897 .map_lookup_elem = htab_lru_map_lookup_elem,
Daniel Borkmann50b045a2019-05-14 01:18:56 +02001898 .map_lookup_elem_sys_only = htab_lru_map_lookup_elem_sys,
Martin KaFai Lau29ba7322016-11-11 10:55:09 -08001899 .map_update_elem = htab_lru_map_update_elem,
1900 .map_delete_elem = htab_lru_map_delete_elem,
Martin KaFai Laucc555422017-08-31 23:27:12 -07001901 .map_gen_lookup = htab_lru_map_gen_lookup,
Yonghong Song699c86d2018-08-09 08:55:20 -07001902 .map_seq_show_elem = htab_map_seq_show_elem,
Yonghong Song05799632020-01-15 10:43:04 -08001903 BATCH_OPS(htab_lru),
Andrey Ignatov2872e9a2020-06-19 14:11:44 -07001904 .map_btf_name = "bpf_htab",
1905 .map_btf_id = &htab_lru_map_btf_id,
Yonghong Songd6c45032020-07-23 11:41:14 -07001906 .iter_seq_info = &iter_seq_info,
Martin KaFai Lau29ba7322016-11-11 10:55:09 -08001907};
1908
Alexei Starovoitov824bd0c2016-02-01 22:39:53 -08001909/* Called from eBPF program */
1910static void *htab_percpu_map_lookup_elem(struct bpf_map *map, void *key)
1911{
1912 struct htab_elem *l = __htab_map_lookup_elem(map, key);
1913
1914 if (l)
1915 return this_cpu_ptr(htab_elem_get_ptr(l, map->key_size));
1916 else
1917 return NULL;
1918}
1919
Martin KaFai Lau8f844932016-11-11 10:55:10 -08001920static void *htab_lru_percpu_map_lookup_elem(struct bpf_map *map, void *key)
1921{
1922 struct htab_elem *l = __htab_map_lookup_elem(map, key);
1923
1924 if (l) {
1925 bpf_lru_node_set_ref(&l->lru_node);
1926 return this_cpu_ptr(htab_elem_get_ptr(l, map->key_size));
1927 }
1928
1929 return NULL;
1930}
1931
Alexei Starovoitov15a07b32016-02-01 22:39:55 -08001932int bpf_percpu_hash_copy(struct bpf_map *map, void *key, void *value)
1933{
1934 struct htab_elem *l;
1935 void __percpu *pptr;
1936 int ret = -ENOENT;
1937 int cpu, off = 0;
1938 u32 size;
1939
1940 /* per_cpu areas are zero-filled and bpf programs can only
1941 * access 'value_size' of them, so copying rounded areas
1942 * will not leak any kernel data
1943 */
1944 size = round_up(map->value_size, 8);
1945 rcu_read_lock();
1946 l = __htab_map_lookup_elem(map, key);
1947 if (!l)
1948 goto out;
Daniel Borkmann50b045a2019-05-14 01:18:56 +02001949 /* We do not mark LRU map element here in order to not mess up
1950 * eviction heuristics when user space does a map walk.
1951 */
Alexei Starovoitov15a07b32016-02-01 22:39:55 -08001952 pptr = htab_elem_get_ptr(l, map->key_size);
1953 for_each_possible_cpu(cpu) {
1954 bpf_long_memcpy(value + off,
1955 per_cpu_ptr(pptr, cpu), size);
1956 off += size;
1957 }
1958 ret = 0;
1959out:
1960 rcu_read_unlock();
1961 return ret;
1962}
1963
1964int bpf_percpu_hash_update(struct bpf_map *map, void *key, void *value,
1965 u64 map_flags)
1966{
Martin KaFai Lau8f844932016-11-11 10:55:10 -08001967 struct bpf_htab *htab = container_of(map, struct bpf_htab, map);
Sasha Levin6bbd9a02016-02-19 13:53:10 -05001968 int ret;
1969
1970 rcu_read_lock();
Martin KaFai Lau8f844932016-11-11 10:55:10 -08001971 if (htab_is_lru(htab))
1972 ret = __htab_lru_percpu_map_update_elem(map, key, value,
1973 map_flags, true);
1974 else
1975 ret = __htab_percpu_map_update_elem(map, key, value, map_flags,
1976 true);
Sasha Levin6bbd9a02016-02-19 13:53:10 -05001977 rcu_read_unlock();
1978
1979 return ret;
Alexei Starovoitov15a07b32016-02-01 22:39:55 -08001980}
1981
Yonghong Songc7b27c32018-08-29 14:43:13 -07001982static void htab_percpu_map_seq_show_elem(struct bpf_map *map, void *key,
1983 struct seq_file *m)
1984{
1985 struct htab_elem *l;
1986 void __percpu *pptr;
1987 int cpu;
1988
1989 rcu_read_lock();
1990
1991 l = __htab_map_lookup_elem(map, key);
1992 if (!l) {
1993 rcu_read_unlock();
1994 return;
1995 }
1996
1997 btf_type_seq_show(map->btf, map->btf_key_type_id, key, m);
1998 seq_puts(m, ": {\n");
1999 pptr = htab_elem_get_ptr(l, map->key_size);
2000 for_each_possible_cpu(cpu) {
2001 seq_printf(m, "\tcpu%d: ", cpu);
2002 btf_type_seq_show(map->btf, map->btf_value_type_id,
2003 per_cpu_ptr(pptr, cpu), m);
2004 seq_puts(m, "\n");
2005 }
2006 seq_puts(m, "}\n");
2007
2008 rcu_read_unlock();
2009}
2010
Andrey Ignatov2872e9a2020-06-19 14:11:44 -07002011static int htab_percpu_map_btf_id;
Johannes Berg40077e02017-04-11 15:34:58 +02002012const struct bpf_map_ops htab_percpu_map_ops = {
Martin KaFai Lauf4d05252020-08-27 18:18:06 -07002013 .map_meta_equal = bpf_map_meta_equal,
Jakub Kicinski9328e0d2018-01-11 20:29:05 -08002014 .map_alloc_check = htab_map_alloc_check,
Alexei Starovoitov824bd0c2016-02-01 22:39:53 -08002015 .map_alloc = htab_map_alloc,
2016 .map_free = htab_map_free,
2017 .map_get_next_key = htab_map_get_next_key,
2018 .map_lookup_elem = htab_percpu_map_lookup_elem,
2019 .map_update_elem = htab_percpu_map_update_elem,
2020 .map_delete_elem = htab_map_delete_elem,
Yonghong Songc7b27c32018-08-29 14:43:13 -07002021 .map_seq_show_elem = htab_percpu_map_seq_show_elem,
Yonghong Song05799632020-01-15 10:43:04 -08002022 BATCH_OPS(htab_percpu),
Andrey Ignatov2872e9a2020-06-19 14:11:44 -07002023 .map_btf_name = "bpf_htab",
2024 .map_btf_id = &htab_percpu_map_btf_id,
Yonghong Songd6c45032020-07-23 11:41:14 -07002025 .iter_seq_info = &iter_seq_info,
Alexei Starovoitov824bd0c2016-02-01 22:39:53 -08002026};
2027
Andrey Ignatov2872e9a2020-06-19 14:11:44 -07002028static int htab_lru_percpu_map_btf_id;
Johannes Berg40077e02017-04-11 15:34:58 +02002029const struct bpf_map_ops htab_lru_percpu_map_ops = {
Martin KaFai Lauf4d05252020-08-27 18:18:06 -07002030 .map_meta_equal = bpf_map_meta_equal,
Jakub Kicinski9328e0d2018-01-11 20:29:05 -08002031 .map_alloc_check = htab_map_alloc_check,
Martin KaFai Lau8f844932016-11-11 10:55:10 -08002032 .map_alloc = htab_map_alloc,
2033 .map_free = htab_map_free,
2034 .map_get_next_key = htab_map_get_next_key,
2035 .map_lookup_elem = htab_lru_percpu_map_lookup_elem,
2036 .map_update_elem = htab_lru_percpu_map_update_elem,
2037 .map_delete_elem = htab_lru_map_delete_elem,
Yonghong Songc7b27c32018-08-29 14:43:13 -07002038 .map_seq_show_elem = htab_percpu_map_seq_show_elem,
Yonghong Song05799632020-01-15 10:43:04 -08002039 BATCH_OPS(htab_lru_percpu),
Andrey Ignatov2872e9a2020-06-19 14:11:44 -07002040 .map_btf_name = "bpf_htab",
2041 .map_btf_id = &htab_lru_percpu_map_btf_id,
Yonghong Songd6c45032020-07-23 11:41:14 -07002042 .iter_seq_info = &iter_seq_info,
Martin KaFai Lau8f844932016-11-11 10:55:10 -08002043};
2044
Jakub Kicinski9328e0d2018-01-11 20:29:05 -08002045static int fd_htab_map_alloc_check(union bpf_attr *attr)
Martin KaFai Laubcc6b1b2017-03-22 10:00:34 -07002046{
Martin KaFai Laubcc6b1b2017-03-22 10:00:34 -07002047 if (attr->value_size != sizeof(u32))
Jakub Kicinski9328e0d2018-01-11 20:29:05 -08002048 return -EINVAL;
2049 return htab_map_alloc_check(attr);
Martin KaFai Laubcc6b1b2017-03-22 10:00:34 -07002050}
2051
2052static void fd_htab_map_free(struct bpf_map *map)
2053{
2054 struct bpf_htab *htab = container_of(map, struct bpf_htab, map);
2055 struct hlist_nulls_node *n;
2056 struct hlist_nulls_head *head;
2057 struct htab_elem *l;
2058 int i;
2059
2060 for (i = 0; i < htab->n_buckets; i++) {
2061 head = select_bucket(htab, i);
2062
2063 hlist_nulls_for_each_entry_safe(l, n, head, hash_node) {
2064 void *ptr = fd_htab_map_get_ptr(map, l);
2065
2066 map->ops->map_fd_put_ptr(ptr);
2067 }
2068 }
2069
2070 htab_map_free(map);
2071}
2072
2073/* only called from syscall */
Martin KaFai Lau14dc6f02017-06-27 23:08:34 -07002074int bpf_fd_htab_map_lookup_elem(struct bpf_map *map, void *key, u32 *value)
2075{
2076 void **ptr;
2077 int ret = 0;
2078
2079 if (!map->ops->map_fd_sys_lookup_elem)
2080 return -ENOTSUPP;
2081
2082 rcu_read_lock();
2083 ptr = htab_map_lookup_elem(map, key);
2084 if (ptr)
2085 *value = map->ops->map_fd_sys_lookup_elem(READ_ONCE(*ptr));
2086 else
2087 ret = -ENOENT;
2088 rcu_read_unlock();
2089
2090 return ret;
2091}
2092
2093/* only called from syscall */
Martin KaFai Laubcc6b1b2017-03-22 10:00:34 -07002094int bpf_fd_htab_map_update_elem(struct bpf_map *map, struct file *map_file,
2095 void *key, void *value, u64 map_flags)
2096{
2097 void *ptr;
2098 int ret;
2099 u32 ufd = *(u32 *)value;
2100
2101 ptr = map->ops->map_fd_get_ptr(map, map_file, ufd);
2102 if (IS_ERR(ptr))
2103 return PTR_ERR(ptr);
2104
2105 ret = htab_map_update_elem(map, key, &ptr, map_flags);
2106 if (ret)
2107 map->ops->map_fd_put_ptr(ptr);
2108
2109 return ret;
2110}
2111
2112static struct bpf_map *htab_of_map_alloc(union bpf_attr *attr)
2113{
2114 struct bpf_map *map, *inner_map_meta;
2115
2116 inner_map_meta = bpf_map_meta_alloc(attr->inner_map_fd);
2117 if (IS_ERR(inner_map_meta))
2118 return inner_map_meta;
2119
Jakub Kicinski9328e0d2018-01-11 20:29:05 -08002120 map = htab_map_alloc(attr);
Martin KaFai Laubcc6b1b2017-03-22 10:00:34 -07002121 if (IS_ERR(map)) {
2122 bpf_map_meta_free(inner_map_meta);
2123 return map;
2124 }
2125
2126 map->inner_map_meta = inner_map_meta;
2127
2128 return map;
2129}
2130
2131static void *htab_of_map_lookup_elem(struct bpf_map *map, void *key)
2132{
2133 struct bpf_map **inner_map = htab_map_lookup_elem(map, key);
2134
2135 if (!inner_map)
2136 return NULL;
2137
2138 return READ_ONCE(*inner_map);
2139}
2140
Daniel Borkmann4a8f87e2020-10-11 01:40:03 +02002141static int htab_of_map_gen_lookup(struct bpf_map *map,
Daniel Borkmann7b0c2a02017-08-19 03:12:46 +02002142 struct bpf_insn *insn_buf)
2143{
2144 struct bpf_insn *insn = insn_buf;
2145 const int ret = BPF_REG_0;
2146
Daniel Borkmann09772d92018-06-02 23:06:35 +02002147 BUILD_BUG_ON(!__same_type(&__htab_map_lookup_elem,
2148 (void *(*)(struct bpf_map *map, void *key))NULL));
2149 *insn++ = BPF_EMIT_CALL(BPF_CAST_CALL(__htab_map_lookup_elem));
Daniel Borkmann7b0c2a02017-08-19 03:12:46 +02002150 *insn++ = BPF_JMP_IMM(BPF_JEQ, ret, 0, 2);
2151 *insn++ = BPF_ALU64_IMM(BPF_ADD, ret,
2152 offsetof(struct htab_elem, key) +
2153 round_up(map->key_size, 8));
2154 *insn++ = BPF_LDX_MEM(BPF_DW, ret, ret, 0);
2155
2156 return insn - insn_buf;
2157}
2158
Martin KaFai Laubcc6b1b2017-03-22 10:00:34 -07002159static void htab_of_map_free(struct bpf_map *map)
2160{
2161 bpf_map_meta_free(map->inner_map_meta);
2162 fd_htab_map_free(map);
2163}
2164
Andrey Ignatov2872e9a2020-06-19 14:11:44 -07002165static int htab_of_maps_map_btf_id;
Johannes Berg40077e02017-04-11 15:34:58 +02002166const struct bpf_map_ops htab_of_maps_map_ops = {
Jakub Kicinski9328e0d2018-01-11 20:29:05 -08002167 .map_alloc_check = fd_htab_map_alloc_check,
Martin KaFai Laubcc6b1b2017-03-22 10:00:34 -07002168 .map_alloc = htab_of_map_alloc,
2169 .map_free = htab_of_map_free,
2170 .map_get_next_key = htab_map_get_next_key,
2171 .map_lookup_elem = htab_of_map_lookup_elem,
2172 .map_delete_elem = htab_map_delete_elem,
2173 .map_fd_get_ptr = bpf_map_fd_get_ptr,
2174 .map_fd_put_ptr = bpf_map_fd_put_ptr,
Martin KaFai Lau14dc6f02017-06-27 23:08:34 -07002175 .map_fd_sys_lookup_elem = bpf_map_fd_sys_lookup_elem,
Daniel Borkmann7b0c2a02017-08-19 03:12:46 +02002176 .map_gen_lookup = htab_of_map_gen_lookup,
Daniel Borkmanne8d2bec2018-08-12 01:59:17 +02002177 .map_check_btf = map_check_no_btf,
Andrey Ignatov2872e9a2020-06-19 14:11:44 -07002178 .map_btf_name = "bpf_htab",
2179 .map_btf_id = &htab_of_maps_map_btf_id,
Martin KaFai Laubcc6b1b2017-03-22 10:00:34 -07002180};