blob: 7e848200cd268a0f9ed063f0b641d3c355787013 [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 }
Thomas Gleixnerd01f9b12020-02-24 15:01:50 +0100155 }
156}
157
Song Liu20b6cc32020-10-29 00:19:25 -0700158static inline int htab_lock_bucket(const struct bpf_htab *htab,
159 struct bucket *b, u32 hash,
160 unsigned long *pflags)
Thomas Gleixnerd01f9b12020-02-24 15:01:50 +0100161{
162 unsigned long flags;
163
Song Liu20b6cc32020-10-29 00:19:25 -0700164 hash = hash & HASHTAB_MAP_LOCK_MASK;
165
166 migrate_disable();
167 if (unlikely(__this_cpu_inc_return(*(htab->map_locked[hash])) != 1)) {
168 __this_cpu_dec(*(htab->map_locked[hash]));
169 migrate_enable();
170 return -EBUSY;
171 }
172
Thomas Gleixner7f805d12020-02-24 15:01:51 +0100173 if (htab_use_raw_lock(htab))
174 raw_spin_lock_irqsave(&b->raw_lock, flags);
175 else
176 spin_lock_irqsave(&b->lock, flags);
Song Liu20b6cc32020-10-29 00:19:25 -0700177 *pflags = flags;
178
179 return 0;
Thomas Gleixnerd01f9b12020-02-24 15:01:50 +0100180}
181
182static inline void htab_unlock_bucket(const struct bpf_htab *htab,
Song Liu20b6cc32020-10-29 00:19:25 -0700183 struct bucket *b, u32 hash,
Thomas Gleixnerd01f9b12020-02-24 15:01:50 +0100184 unsigned long flags)
185{
Song Liu20b6cc32020-10-29 00:19:25 -0700186 hash = hash & HASHTAB_MAP_LOCK_MASK;
Thomas Gleixner7f805d12020-02-24 15:01:51 +0100187 if (htab_use_raw_lock(htab))
188 raw_spin_unlock_irqrestore(&b->raw_lock, flags);
189 else
190 spin_unlock_irqrestore(&b->lock, flags);
Song Liu20b6cc32020-10-29 00:19:25 -0700191 __this_cpu_dec(*(htab->map_locked[hash]));
192 migrate_enable();
Thomas Gleixnerd01f9b12020-02-24 15:01:50 +0100193}
194
Martin KaFai Lau29ba7322016-11-11 10:55:09 -0800195static bool htab_lru_map_delete_node(void *arg, struct bpf_lru_node *node);
196
197static bool htab_is_lru(const struct bpf_htab *htab)
198{
Martin KaFai Lau8f844932016-11-11 10:55:10 -0800199 return htab->map.map_type == BPF_MAP_TYPE_LRU_HASH ||
200 htab->map.map_type == BPF_MAP_TYPE_LRU_PERCPU_HASH;
201}
202
203static bool htab_is_percpu(const struct bpf_htab *htab)
204{
205 return htab->map.map_type == BPF_MAP_TYPE_PERCPU_HASH ||
206 htab->map.map_type == BPF_MAP_TYPE_LRU_PERCPU_HASH;
Martin KaFai Lau29ba7322016-11-11 10:55:09 -0800207}
208
Alexei Starovoitov6c905982016-03-07 21:57:15 -0800209static inline void htab_elem_set_ptr(struct htab_elem *l, u32 key_size,
210 void __percpu *pptr)
211{
212 *(void __percpu **)(l->key + key_size) = pptr;
213}
214
215static inline void __percpu *htab_elem_get_ptr(struct htab_elem *l, u32 key_size)
216{
217 return *(void __percpu **)(l->key + key_size);
218}
219
Martin KaFai Laubcc6b1b2017-03-22 10:00:34 -0700220static void *fd_htab_map_get_ptr(const struct bpf_map *map, struct htab_elem *l)
221{
222 return *(void **)(l->key + roundup(map->key_size, 8));
223}
224
Alexei Starovoitov6c905982016-03-07 21:57:15 -0800225static struct htab_elem *get_htab_elem(struct bpf_htab *htab, int i)
226{
Eric Dumazete1868b9e2020-12-07 10:28:21 -0800227 return (struct htab_elem *) (htab->elems + i * (u64)htab->elem_size);
Alexei Starovoitov6c905982016-03-07 21:57:15 -0800228}
229
230static void htab_free_elems(struct bpf_htab *htab)
231{
232 int i;
233
Martin KaFai Lau8f844932016-11-11 10:55:10 -0800234 if (!htab_is_percpu(htab))
Alexei Starovoitov6c905982016-03-07 21:57:15 -0800235 goto free_elems;
236
237 for (i = 0; i < htab->map.max_entries; i++) {
238 void __percpu *pptr;
239
240 pptr = htab_elem_get_ptr(get_htab_elem(htab, i),
241 htab->map.key_size);
242 free_percpu(pptr);
Eric Dumazet9147efc2017-12-12 14:22:39 -0800243 cond_resched();
Alexei Starovoitov6c905982016-03-07 21:57:15 -0800244 }
245free_elems:
Daniel Borkmannd407bd22017-01-18 15:14:17 +0100246 bpf_map_area_free(htab->elems);
Alexei Starovoitov6c905982016-03-07 21:57:15 -0800247}
248
Yonghong Songb9aff382020-02-19 15:47:57 -0800249/* The LRU list has a lock (lru_lock). Each htab bucket has a lock
250 * (bucket_lock). If both locks need to be acquired together, the lock
251 * order is always lru_lock -> bucket_lock and this only happens in
252 * bpf_lru_list.c logic. For example, certain code path of
253 * bpf_lru_pop_free(), which is called by function prealloc_lru_pop(),
254 * will acquire lru_lock first followed by acquiring bucket_lock.
255 *
256 * In hashtab.c, to avoid deadlock, lock acquisition of
257 * bucket_lock followed by lru_lock is not allowed. In such cases,
258 * bucket_lock needs to be released first before acquiring lru_lock.
259 */
Martin KaFai Lau29ba7322016-11-11 10:55:09 -0800260static struct htab_elem *prealloc_lru_pop(struct bpf_htab *htab, void *key,
261 u32 hash)
262{
263 struct bpf_lru_node *node = bpf_lru_pop_free(&htab->lru, hash);
264 struct htab_elem *l;
265
266 if (node) {
267 l = container_of(node, struct htab_elem, lru_node);
268 memcpy(l->key, key, htab->map.key_size);
269 return l;
270 }
271
272 return NULL;
273}
274
275static int prealloc_init(struct bpf_htab *htab)
Alexei Starovoitov6c905982016-03-07 21:57:15 -0800276{
Alexei Starovoitov8c290e62017-03-21 19:05:04 -0700277 u32 num_entries = htab->map.max_entries;
Alexei Starovoitov6c905982016-03-07 21:57:15 -0800278 int err = -ENOMEM, i;
279
Alexei Starovoitov8c290e62017-03-21 19:05:04 -0700280 if (!htab_is_percpu(htab) && !htab_is_lru(htab))
281 num_entries += num_possible_cpus();
282
Eric Dumazete1868b9e2020-12-07 10:28:21 -0800283 htab->elems = bpf_map_area_alloc((u64)htab->elem_size * num_entries,
Martin KaFai Lau96eabe72017-08-18 11:28:00 -0700284 htab->map.numa_node);
Alexei Starovoitov6c905982016-03-07 21:57:15 -0800285 if (!htab->elems)
286 return -ENOMEM;
287
Martin KaFai Lau8f844932016-11-11 10:55:10 -0800288 if (!htab_is_percpu(htab))
Alexei Starovoitov6c905982016-03-07 21:57:15 -0800289 goto skip_percpu_elems;
290
Alexei Starovoitov8c290e62017-03-21 19:05:04 -0700291 for (i = 0; i < num_entries; i++) {
Alexei Starovoitov6c905982016-03-07 21:57:15 -0800292 u32 size = round_up(htab->map.value_size, 8);
293 void __percpu *pptr;
294
Roman Gushchin88145682020-12-01 13:58:38 -0800295 pptr = bpf_map_alloc_percpu(&htab->map, size, 8,
296 GFP_USER | __GFP_NOWARN);
Alexei Starovoitov6c905982016-03-07 21:57:15 -0800297 if (!pptr)
298 goto free_elems;
299 htab_elem_set_ptr(get_htab_elem(htab, i), htab->map.key_size,
300 pptr);
Eric Dumazet9147efc2017-12-12 14:22:39 -0800301 cond_resched();
Alexei Starovoitov6c905982016-03-07 21:57:15 -0800302 }
303
304skip_percpu_elems:
Martin KaFai Lau29ba7322016-11-11 10:55:09 -0800305 if (htab_is_lru(htab))
306 err = bpf_lru_init(&htab->lru,
307 htab->map.map_flags & BPF_F_NO_COMMON_LRU,
308 offsetof(struct htab_elem, hash) -
309 offsetof(struct htab_elem, lru_node),
310 htab_lru_map_delete_node,
311 htab);
312 else
313 err = pcpu_freelist_init(&htab->freelist);
314
Alexei Starovoitov6c905982016-03-07 21:57:15 -0800315 if (err)
316 goto free_elems;
317
Martin KaFai Lau29ba7322016-11-11 10:55:09 -0800318 if (htab_is_lru(htab))
319 bpf_lru_populate(&htab->lru, htab->elems,
320 offsetof(struct htab_elem, lru_node),
Alexei Starovoitov8c290e62017-03-21 19:05:04 -0700321 htab->elem_size, num_entries);
Martin KaFai Lau29ba7322016-11-11 10:55:09 -0800322 else
Alexei Starovoitov9f691542017-03-07 20:00:12 -0800323 pcpu_freelist_populate(&htab->freelist,
324 htab->elems + offsetof(struct htab_elem, fnode),
Alexei Starovoitov8c290e62017-03-21 19:05:04 -0700325 htab->elem_size, num_entries);
Martin KaFai Lau29ba7322016-11-11 10:55:09 -0800326
Alexei Starovoitov6c905982016-03-07 21:57:15 -0800327 return 0;
328
329free_elems:
330 htab_free_elems(htab);
331 return err;
332}
333
Martin KaFai Lau29ba7322016-11-11 10:55:09 -0800334static void prealloc_destroy(struct bpf_htab *htab)
335{
336 htab_free_elems(htab);
337
338 if (htab_is_lru(htab))
339 bpf_lru_destroy(&htab->lru);
340 else
341 pcpu_freelist_destroy(&htab->freelist);
342}
343
Alexei Starovoitova6ed3ea2016-08-05 14:01:27 -0700344static int alloc_extra_elems(struct bpf_htab *htab)
345{
Alexei Starovoitov8c290e62017-03-21 19:05:04 -0700346 struct htab_elem *__percpu *pptr, *l_new;
347 struct pcpu_freelist_node *l;
Alexei Starovoitova6ed3ea2016-08-05 14:01:27 -0700348 int cpu;
349
Roman Gushchin88145682020-12-01 13:58:38 -0800350 pptr = bpf_map_alloc_percpu(&htab->map, sizeof(struct htab_elem *), 8,
351 GFP_USER | __GFP_NOWARN);
Alexei Starovoitova6ed3ea2016-08-05 14:01:27 -0700352 if (!pptr)
353 return -ENOMEM;
354
355 for_each_possible_cpu(cpu) {
Alexei Starovoitov8c290e62017-03-21 19:05:04 -0700356 l = pcpu_freelist_pop(&htab->freelist);
357 /* pop will succeed, since prealloc_init()
358 * preallocated extra num_possible_cpus elements
359 */
360 l_new = container_of(l, struct htab_elem, fnode);
361 *per_cpu_ptr(pptr, cpu) = l_new;
Alexei Starovoitova6ed3ea2016-08-05 14:01:27 -0700362 }
363 htab->extra_elems = pptr;
364 return 0;
365}
366
Alexei Starovoitov0f8e4bd2014-11-13 17:36:45 -0800367/* Called from syscall */
Jakub Kicinski9328e0d2018-01-11 20:29:05 -0800368static int htab_map_alloc_check(union bpf_attr *attr)
369{
370 bool percpu = (attr->map_type == BPF_MAP_TYPE_PERCPU_HASH ||
371 attr->map_type == BPF_MAP_TYPE_LRU_PERCPU_HASH);
372 bool lru = (attr->map_type == BPF_MAP_TYPE_LRU_HASH ||
373 attr->map_type == BPF_MAP_TYPE_LRU_PERCPU_HASH);
374 /* percpu_lru means each cpu has its own LRU list.
375 * it is different from BPF_MAP_TYPE_PERCPU_HASH where
376 * the map's value itself is percpu. percpu_lru has
377 * nothing to do with the map's value.
378 */
379 bool percpu_lru = (attr->map_flags & BPF_F_NO_COMMON_LRU);
380 bool prealloc = !(attr->map_flags & BPF_F_NO_PREALLOC);
Lorenz Bauer96b3b6c2018-11-16 11:41:08 +0000381 bool zero_seed = (attr->map_flags & BPF_F_ZERO_SEED);
Jakub Kicinski9328e0d2018-01-11 20:29:05 -0800382 int numa_node = bpf_map_attr_numa_node(attr);
383
384 BUILD_BUG_ON(offsetof(struct htab_elem, htab) !=
385 offsetof(struct htab_elem, hash_node.pprev));
386 BUILD_BUG_ON(offsetof(struct htab_elem, fnode.next) !=
387 offsetof(struct htab_elem, hash_node.pprev));
388
Alexei Starovoitov2c78ee82020-05-13 16:03:54 -0700389 if (lru && !bpf_capable())
Jakub Kicinski9328e0d2018-01-11 20:29:05 -0800390 /* LRU implementation is much complicated than other
Alexei Starovoitov2c78ee82020-05-13 16:03:54 -0700391 * maps. Hence, limit to CAP_BPF.
Jakub Kicinski9328e0d2018-01-11 20:29:05 -0800392 */
393 return -EPERM;
394
Lorenz Bauer96b3b6c2018-11-16 11:41:08 +0000395 if (zero_seed && !capable(CAP_SYS_ADMIN))
396 /* Guard against local DoS, and discourage production use. */
397 return -EPERM;
398
Daniel Borkmann591fe982019-04-09 23:20:05 +0200399 if (attr->map_flags & ~HTAB_CREATE_FLAG_MASK ||
400 !bpf_map_flags_access_ok(attr->map_flags))
Jakub Kicinski9328e0d2018-01-11 20:29:05 -0800401 return -EINVAL;
402
403 if (!lru && percpu_lru)
404 return -EINVAL;
405
406 if (lru && !prealloc)
407 return -ENOTSUPP;
408
409 if (numa_node != NUMA_NO_NODE && (percpu || percpu_lru))
410 return -EINVAL;
411
412 /* check sanity of attributes.
413 * value_size == 0 may be allowed in the future to use map as a set
414 */
415 if (attr->max_entries == 0 || attr->key_size == 0 ||
416 attr->value_size == 0)
417 return -EINVAL;
418
Florian Lehnerc6bde952020-10-29 21:14:42 +0100419 if ((u64)attr->key_size + attr->value_size >= KMALLOC_MAX_SIZE -
420 sizeof(struct htab_elem))
421 /* if key_size + value_size is bigger, the user space won't be
422 * able to access the elements via bpf syscall. This check
423 * also makes sure that the elem_size doesn't overflow and it's
Jakub Kicinski9328e0d2018-01-11 20:29:05 -0800424 * kmalloc-able later in htab_map_update_elem()
425 */
426 return -E2BIG;
427
428 return 0;
429}
430
Alexei Starovoitov0f8e4bd2014-11-13 17:36:45 -0800431static struct bpf_map *htab_map_alloc(union bpf_attr *attr)
432{
Martin KaFai Lau8f844932016-11-11 10:55:10 -0800433 bool percpu = (attr->map_type == BPF_MAP_TYPE_PERCPU_HASH ||
434 attr->map_type == BPF_MAP_TYPE_LRU_PERCPU_HASH);
435 bool lru = (attr->map_type == BPF_MAP_TYPE_LRU_HASH ||
436 attr->map_type == BPF_MAP_TYPE_LRU_PERCPU_HASH);
Martin KaFai Lau29ba7322016-11-11 10:55:09 -0800437 /* percpu_lru means each cpu has its own LRU list.
438 * it is different from BPF_MAP_TYPE_PERCPU_HASH where
439 * the map's value itself is percpu. percpu_lru has
440 * nothing to do with the map's value.
441 */
442 bool percpu_lru = (attr->map_flags & BPF_F_NO_COMMON_LRU);
443 bool prealloc = !(attr->map_flags & BPF_F_NO_PREALLOC);
Alexei Starovoitov0f8e4bd2014-11-13 17:36:45 -0800444 struct bpf_htab *htab;
Song Liu20b6cc32020-10-29 00:19:25 -0700445 int err, i;
Alexei Starovoitov0f8e4bd2014-11-13 17:36:45 -0800446
Roman Gushchin88145682020-12-01 13:58:38 -0800447 htab = kzalloc(sizeof(*htab), GFP_USER | __GFP_ACCOUNT);
Alexei Starovoitov0f8e4bd2014-11-13 17:36:45 -0800448 if (!htab)
449 return ERR_PTR(-ENOMEM);
450
Eric Dumazet8aaeed82020-11-02 03:41:00 -0800451 lockdep_register_key(&htab->lockdep_key);
452
Jakub Kicinskibd475642018-01-11 20:29:06 -0800453 bpf_map_init_from_attr(&htab->map, attr);
Alexei Starovoitov0f8e4bd2014-11-13 17:36:45 -0800454
Martin KaFai Lau29ba7322016-11-11 10:55:09 -0800455 if (percpu_lru) {
456 /* ensure each CPU's lru list has >=1 elements.
457 * since we are at it, make each lru list has the same
458 * number of elements.
459 */
460 htab->map.max_entries = roundup(attr->max_entries,
461 num_possible_cpus());
462 if (htab->map.max_entries < attr->max_entries)
463 htab->map.max_entries = rounddown(attr->max_entries,
464 num_possible_cpus());
465 }
466
Alexei Starovoitov0f8e4bd2014-11-13 17:36:45 -0800467 /* hash table size must be power of 2 */
468 htab->n_buckets = roundup_pow_of_two(htab->map.max_entries);
469
Alexei Starovoitov01b3f522015-11-29 16:59:35 -0800470 htab->elem_size = sizeof(struct htab_elem) +
Alexei Starovoitov824bd0c2016-02-01 22:39:53 -0800471 round_up(htab->map.key_size, 8);
472 if (percpu)
473 htab->elem_size += sizeof(void *);
474 else
Alexei Starovoitov6c905982016-03-07 21:57:15 -0800475 htab->elem_size += round_up(htab->map.value_size, 8);
Alexei Starovoitov01b3f522015-11-29 16:59:35 -0800476
Jakub Kicinskidaffc5a2018-01-11 20:29:04 -0800477 err = -E2BIG;
Alexei Starovoitovdaaf4272014-11-18 17:32:16 -0800478 /* prevent zero size kmalloc and check for u32 overflow */
479 if (htab->n_buckets == 0 ||
tom.leiming@gmail.com688ecfe2015-12-29 22:40:27 +0800480 htab->n_buckets > U32_MAX / sizeof(struct bucket))
Alexei Starovoitovdaaf4272014-11-18 17:32:16 -0800481 goto free_htab;
482
Alexei Starovoitov01b3f522015-11-29 16:59:35 -0800483 err = -ENOMEM;
Daniel Borkmannd407bd22017-01-18 15:14:17 +0100484 htab->buckets = bpf_map_area_alloc(htab->n_buckets *
Martin KaFai Lau96eabe72017-08-18 11:28:00 -0700485 sizeof(struct bucket),
486 htab->map.numa_node);
Daniel Borkmannd407bd22017-01-18 15:14:17 +0100487 if (!htab->buckets)
Roman Gushchin755e5d552020-12-01 13:58:49 -0800488 goto free_htab;
Alexei Starovoitov0f8e4bd2014-11-13 17:36:45 -0800489
Song Liu20b6cc32020-10-29 00:19:25 -0700490 for (i = 0; i < HASHTAB_MAP_LOCK_COUNT; i++) {
Roman Gushchin88145682020-12-01 13:58:38 -0800491 htab->map_locked[i] = bpf_map_alloc_percpu(&htab->map,
492 sizeof(int),
493 sizeof(int),
494 GFP_USER);
Song Liu20b6cc32020-10-29 00:19:25 -0700495 if (!htab->map_locked[i])
496 goto free_map_locked;
497 }
498
Lorenz Bauer96b3b6c2018-11-16 11:41:08 +0000499 if (htab->map.map_flags & BPF_F_ZERO_SEED)
500 htab->hashrnd = 0;
501 else
502 htab->hashrnd = get_random_int();
503
Thomas Gleixnerd01f9b12020-02-24 15:01:50 +0100504 htab_init_buckets(htab);
Alexei Starovoitov0f8e4bd2014-11-13 17:36:45 -0800505
Martin KaFai Lau29ba7322016-11-11 10:55:09 -0800506 if (prealloc) {
507 err = prealloc_init(htab);
Alexei Starovoitova6ed3ea2016-08-05 14:01:27 -0700508 if (err)
Song Liu20b6cc32020-10-29 00:19:25 -0700509 goto free_map_locked;
Alexei Starovoitov8c290e62017-03-21 19:05:04 -0700510
511 if (!percpu && !lru) {
512 /* lru itself can remove the least used element, so
513 * there is no need for an extra elem during map_update.
514 */
515 err = alloc_extra_elems(htab);
516 if (err)
517 goto free_prealloc;
518 }
Alexei Starovoitova6ed3ea2016-08-05 14:01:27 -0700519 }
520
Alexei Starovoitov0f8e4bd2014-11-13 17:36:45 -0800521 return &htab->map;
522
Alexei Starovoitov8c290e62017-03-21 19:05:04 -0700523free_prealloc:
524 prealloc_destroy(htab);
Song Liu20b6cc32020-10-29 00:19:25 -0700525free_map_locked:
526 for (i = 0; i < HASHTAB_MAP_LOCK_COUNT; i++)
527 free_percpu(htab->map_locked[i]);
Daniel Borkmannd407bd22017-01-18 15:14:17 +0100528 bpf_map_area_free(htab->buckets);
Alexei Starovoitov0f8e4bd2014-11-13 17:36:45 -0800529free_htab:
Eric Dumazet8aaeed82020-11-02 03:41:00 -0800530 lockdep_unregister_key(&htab->lockdep_key);
Alexei Starovoitov0f8e4bd2014-11-13 17:36:45 -0800531 kfree(htab);
532 return ERR_PTR(err);
533}
534
Daniel Borkmannc0203472018-08-22 23:49:37 +0200535static inline u32 htab_map_hash(const void *key, u32 key_len, u32 hashrnd)
Alexei Starovoitov0f8e4bd2014-11-13 17:36:45 -0800536{
Daniel Borkmannc0203472018-08-22 23:49:37 +0200537 return jhash(key, key_len, hashrnd);
Alexei Starovoitov0f8e4bd2014-11-13 17:36:45 -0800538}
539
tom.leiming@gmail.com688ecfe2015-12-29 22:40:27 +0800540static inline struct bucket *__select_bucket(struct bpf_htab *htab, u32 hash)
Alexei Starovoitov0f8e4bd2014-11-13 17:36:45 -0800541{
542 return &htab->buckets[hash & (htab->n_buckets - 1)];
543}
544
Alexei Starovoitov4fe84352017-03-07 20:00:13 -0800545static inline struct hlist_nulls_head *select_bucket(struct bpf_htab *htab, u32 hash)
tom.leiming@gmail.com688ecfe2015-12-29 22:40:27 +0800546{
547 return &__select_bucket(htab, hash)->head;
548}
549
Alexei Starovoitov4fe84352017-03-07 20:00:13 -0800550/* this lookup function can only be called with bucket lock taken */
551static struct htab_elem *lookup_elem_raw(struct hlist_nulls_head *head, u32 hash,
Alexei Starovoitov0f8e4bd2014-11-13 17:36:45 -0800552 void *key, u32 key_size)
553{
Alexei Starovoitov4fe84352017-03-07 20:00:13 -0800554 struct hlist_nulls_node *n;
Alexei Starovoitov0f8e4bd2014-11-13 17:36:45 -0800555 struct htab_elem *l;
556
Alexei Starovoitov4fe84352017-03-07 20:00:13 -0800557 hlist_nulls_for_each_entry_rcu(l, n, head, hash_node)
Alexei Starovoitov0f8e4bd2014-11-13 17:36:45 -0800558 if (l->hash == hash && !memcmp(&l->key, key, key_size))
559 return l;
560
561 return NULL;
562}
563
Alexei Starovoitov4fe84352017-03-07 20:00:13 -0800564/* can be called without bucket lock. it will repeat the loop in
565 * the unlikely event when elements moved from one bucket into another
566 * while link list is being walked
567 */
568static struct htab_elem *lookup_nulls_elem_raw(struct hlist_nulls_head *head,
569 u32 hash, void *key,
570 u32 key_size, u32 n_buckets)
571{
572 struct hlist_nulls_node *n;
573 struct htab_elem *l;
574
575again:
576 hlist_nulls_for_each_entry_rcu(l, n, head, hash_node)
577 if (l->hash == hash && !memcmp(&l->key, key, key_size))
578 return l;
579
580 if (unlikely(get_nulls_value(n) != (hash & (n_buckets - 1))))
581 goto again;
582
583 return NULL;
584}
585
Alexei Starovoitov9015d2f2017-03-15 18:26:43 -0700586/* Called from syscall or from eBPF program directly, so
587 * arguments have to match bpf_map_lookup_elem() exactly.
588 * The return value is adjusted by BPF instructions
589 * in htab_map_gen_lookup().
590 */
Alexei Starovoitov824bd0c2016-02-01 22:39:53 -0800591static void *__htab_map_lookup_elem(struct bpf_map *map, void *key)
Alexei Starovoitov0f8e4bd2014-11-13 17:36:45 -0800592{
593 struct bpf_htab *htab = container_of(map, struct bpf_htab, map);
Alexei Starovoitov4fe84352017-03-07 20:00:13 -0800594 struct hlist_nulls_head *head;
Alexei Starovoitov0f8e4bd2014-11-13 17:36:45 -0800595 struct htab_elem *l;
596 u32 hash, key_size;
597
Alexei Starovoitov1e6c62a2020-08-27 15:01:11 -0700598 WARN_ON_ONCE(!rcu_read_lock_held() && !rcu_read_lock_trace_held());
Alexei Starovoitov0f8e4bd2014-11-13 17:36:45 -0800599
600 key_size = map->key_size;
601
Daniel Borkmannc0203472018-08-22 23:49:37 +0200602 hash = htab_map_hash(key, key_size, htab->hashrnd);
Alexei Starovoitov0f8e4bd2014-11-13 17:36:45 -0800603
604 head = select_bucket(htab, hash);
605
Alexei Starovoitov4fe84352017-03-07 20:00:13 -0800606 l = lookup_nulls_elem_raw(head, hash, key, key_size, htab->n_buckets);
Alexei Starovoitov0f8e4bd2014-11-13 17:36:45 -0800607
Alexei Starovoitov824bd0c2016-02-01 22:39:53 -0800608 return l;
609}
610
611static void *htab_map_lookup_elem(struct bpf_map *map, void *key)
612{
613 struct htab_elem *l = __htab_map_lookup_elem(map, key);
614
Alexei Starovoitov0f8e4bd2014-11-13 17:36:45 -0800615 if (l)
616 return l->key + round_up(map->key_size, 8);
617
618 return NULL;
619}
620
Alexei Starovoitov9015d2f2017-03-15 18:26:43 -0700621/* inline bpf_map_lookup_elem() call.
622 * Instead of:
623 * bpf_prog
624 * bpf_map_lookup_elem
625 * map->ops->map_lookup_elem
626 * htab_map_lookup_elem
627 * __htab_map_lookup_elem
628 * do:
629 * bpf_prog
630 * __htab_map_lookup_elem
631 */
Daniel Borkmann4a8f87e2020-10-11 01:40:03 +0200632static int htab_map_gen_lookup(struct bpf_map *map, struct bpf_insn *insn_buf)
Alexei Starovoitov9015d2f2017-03-15 18:26:43 -0700633{
634 struct bpf_insn *insn = insn_buf;
635 const int ret = BPF_REG_0;
636
Daniel Borkmann09772d92018-06-02 23:06:35 +0200637 BUILD_BUG_ON(!__same_type(&__htab_map_lookup_elem,
638 (void *(*)(struct bpf_map *map, void *key))NULL));
639 *insn++ = BPF_EMIT_CALL(BPF_CAST_CALL(__htab_map_lookup_elem));
Alexei Starovoitov9015d2f2017-03-15 18:26:43 -0700640 *insn++ = BPF_JMP_IMM(BPF_JEQ, ret, 0, 1);
641 *insn++ = BPF_ALU64_IMM(BPF_ADD, ret,
642 offsetof(struct htab_elem, key) +
643 round_up(map->key_size, 8));
644 return insn - insn_buf;
645}
646
Daniel Borkmann50b045a2019-05-14 01:18:56 +0200647static __always_inline void *__htab_lru_map_lookup_elem(struct bpf_map *map,
648 void *key, const bool mark)
Martin KaFai Lau29ba7322016-11-11 10:55:09 -0800649{
650 struct htab_elem *l = __htab_map_lookup_elem(map, key);
651
652 if (l) {
Daniel Borkmann50b045a2019-05-14 01:18:56 +0200653 if (mark)
654 bpf_lru_node_set_ref(&l->lru_node);
Martin KaFai Lau29ba7322016-11-11 10:55:09 -0800655 return l->key + round_up(map->key_size, 8);
656 }
657
658 return NULL;
659}
660
Daniel Borkmann50b045a2019-05-14 01:18:56 +0200661static void *htab_lru_map_lookup_elem(struct bpf_map *map, void *key)
662{
663 return __htab_lru_map_lookup_elem(map, key, true);
664}
665
666static void *htab_lru_map_lookup_elem_sys(struct bpf_map *map, void *key)
667{
668 return __htab_lru_map_lookup_elem(map, key, false);
669}
670
Daniel Borkmann4a8f87e2020-10-11 01:40:03 +0200671static int htab_lru_map_gen_lookup(struct bpf_map *map,
Martin KaFai Laucc555422017-08-31 23:27:12 -0700672 struct bpf_insn *insn_buf)
673{
674 struct bpf_insn *insn = insn_buf;
675 const int ret = BPF_REG_0;
Martin KaFai Laubb9b9f82017-08-31 23:27:13 -0700676 const int ref_reg = BPF_REG_1;
Martin KaFai Laucc555422017-08-31 23:27:12 -0700677
Daniel Borkmann09772d92018-06-02 23:06:35 +0200678 BUILD_BUG_ON(!__same_type(&__htab_map_lookup_elem,
679 (void *(*)(struct bpf_map *map, void *key))NULL));
680 *insn++ = BPF_EMIT_CALL(BPF_CAST_CALL(__htab_map_lookup_elem));
Martin KaFai Laubb9b9f82017-08-31 23:27:13 -0700681 *insn++ = BPF_JMP_IMM(BPF_JEQ, ret, 0, 4);
682 *insn++ = BPF_LDX_MEM(BPF_B, ref_reg, ret,
683 offsetof(struct htab_elem, lru_node) +
684 offsetof(struct bpf_lru_node, ref));
685 *insn++ = BPF_JMP_IMM(BPF_JNE, ref_reg, 0, 1);
Martin KaFai Laucc555422017-08-31 23:27:12 -0700686 *insn++ = BPF_ST_MEM(BPF_B, ret,
687 offsetof(struct htab_elem, lru_node) +
688 offsetof(struct bpf_lru_node, ref),
689 1);
690 *insn++ = BPF_ALU64_IMM(BPF_ADD, ret,
691 offsetof(struct htab_elem, key) +
692 round_up(map->key_size, 8));
693 return insn - insn_buf;
694}
695
Martin KaFai Lau29ba7322016-11-11 10:55:09 -0800696/* It is called from the bpf_lru_list when the LRU needs to delete
697 * older elements from the htab.
698 */
699static bool htab_lru_map_delete_node(void *arg, struct bpf_lru_node *node)
700{
701 struct bpf_htab *htab = (struct bpf_htab *)arg;
Alexei Starovoitov4fe84352017-03-07 20:00:13 -0800702 struct htab_elem *l = NULL, *tgt_l;
703 struct hlist_nulls_head *head;
704 struct hlist_nulls_node *n;
Martin KaFai Lau29ba7322016-11-11 10:55:09 -0800705 unsigned long flags;
706 struct bucket *b;
Song Liu20b6cc32020-10-29 00:19:25 -0700707 int ret;
Martin KaFai Lau29ba7322016-11-11 10:55:09 -0800708
709 tgt_l = container_of(node, struct htab_elem, lru_node);
710 b = __select_bucket(htab, tgt_l->hash);
711 head = &b->head;
712
Song Liu20b6cc32020-10-29 00:19:25 -0700713 ret = htab_lock_bucket(htab, b, tgt_l->hash, &flags);
714 if (ret)
715 return false;
Martin KaFai Lau29ba7322016-11-11 10:55:09 -0800716
Alexei Starovoitov4fe84352017-03-07 20:00:13 -0800717 hlist_nulls_for_each_entry_rcu(l, n, head, hash_node)
Martin KaFai Lau29ba7322016-11-11 10:55:09 -0800718 if (l == tgt_l) {
Alexei Starovoitov4fe84352017-03-07 20:00:13 -0800719 hlist_nulls_del_rcu(&l->hash_node);
Martin KaFai Lau29ba7322016-11-11 10:55:09 -0800720 break;
721 }
722
Song Liu20b6cc32020-10-29 00:19:25 -0700723 htab_unlock_bucket(htab, b, tgt_l->hash, flags);
Martin KaFai Lau29ba7322016-11-11 10:55:09 -0800724
725 return l == tgt_l;
726}
727
Alexei Starovoitov0f8e4bd2014-11-13 17:36:45 -0800728/* Called from syscall */
729static int htab_map_get_next_key(struct bpf_map *map, void *key, void *next_key)
730{
731 struct bpf_htab *htab = container_of(map, struct bpf_htab, map);
Alexei Starovoitov4fe84352017-03-07 20:00:13 -0800732 struct hlist_nulls_head *head;
Alexei Starovoitov0f8e4bd2014-11-13 17:36:45 -0800733 struct htab_elem *l, *next_l;
734 u32 hash, key_size;
Teng Qin8fe45922017-04-24 19:00:37 -0700735 int i = 0;
Alexei Starovoitov0f8e4bd2014-11-13 17:36:45 -0800736
737 WARN_ON_ONCE(!rcu_read_lock_held());
738
739 key_size = map->key_size;
740
Teng Qin8fe45922017-04-24 19:00:37 -0700741 if (!key)
742 goto find_first_elem;
743
Daniel Borkmannc0203472018-08-22 23:49:37 +0200744 hash = htab_map_hash(key, key_size, htab->hashrnd);
Alexei Starovoitov0f8e4bd2014-11-13 17:36:45 -0800745
746 head = select_bucket(htab, hash);
747
748 /* lookup the key */
Alexei Starovoitov4fe84352017-03-07 20:00:13 -0800749 l = lookup_nulls_elem_raw(head, hash, key, key_size, htab->n_buckets);
Alexei Starovoitov0f8e4bd2014-11-13 17:36:45 -0800750
Teng Qin8fe45922017-04-24 19:00:37 -0700751 if (!l)
Alexei Starovoitov0f8e4bd2014-11-13 17:36:45 -0800752 goto find_first_elem;
Alexei Starovoitov0f8e4bd2014-11-13 17:36:45 -0800753
754 /* key was found, get next key in the same bucket */
Alexei Starovoitov4fe84352017-03-07 20:00:13 -0800755 next_l = hlist_nulls_entry_safe(rcu_dereference_raw(hlist_nulls_next_rcu(&l->hash_node)),
Alexei Starovoitov0f8e4bd2014-11-13 17:36:45 -0800756 struct htab_elem, hash_node);
757
758 if (next_l) {
759 /* if next elem in this hash list is non-zero, just return it */
760 memcpy(next_key, next_l->key, key_size);
761 return 0;
762 }
763
764 /* no more elements in this hash list, go to the next bucket */
765 i = hash & (htab->n_buckets - 1);
766 i++;
767
768find_first_elem:
769 /* iterate over buckets */
770 for (; i < htab->n_buckets; i++) {
771 head = select_bucket(htab, i);
772
773 /* pick first element in the bucket */
Alexei Starovoitov4fe84352017-03-07 20:00:13 -0800774 next_l = hlist_nulls_entry_safe(rcu_dereference_raw(hlist_nulls_first_rcu(head)),
Alexei Starovoitov0f8e4bd2014-11-13 17:36:45 -0800775 struct htab_elem, hash_node);
776 if (next_l) {
777 /* if it's not empty, just return it */
778 memcpy(next_key, next_l->key, key_size);
779 return 0;
780 }
781 }
782
Alexei Starovoitov6c905982016-03-07 21:57:15 -0800783 /* iterated over all buckets and all elements */
Alexei Starovoitov0f8e4bd2014-11-13 17:36:45 -0800784 return -ENOENT;
785}
786
Alexei Starovoitov6c905982016-03-07 21:57:15 -0800787static void htab_elem_free(struct bpf_htab *htab, struct htab_elem *l)
Alexei Starovoitov824bd0c2016-02-01 22:39:53 -0800788{
Alexei Starovoitov6c905982016-03-07 21:57:15 -0800789 if (htab->map.map_type == BPF_MAP_TYPE_PERCPU_HASH)
790 free_percpu(htab_elem_get_ptr(l, htab->map.key_size));
Alexei Starovoitov824bd0c2016-02-01 22:39:53 -0800791 kfree(l);
792}
793
Alexei Starovoitov6c905982016-03-07 21:57:15 -0800794static void htab_elem_free_rcu(struct rcu_head *head)
Alexei Starovoitov824bd0c2016-02-01 22:39:53 -0800795{
796 struct htab_elem *l = container_of(head, struct htab_elem, rcu);
Alexei Starovoitov6c905982016-03-07 21:57:15 -0800797 struct bpf_htab *htab = l->htab;
Alexei Starovoitov824bd0c2016-02-01 22:39:53 -0800798
Alexei Starovoitov6c905982016-03-07 21:57:15 -0800799 htab_elem_free(htab, l);
Alexei Starovoitov824bd0c2016-02-01 22:39:53 -0800800}
801
Andrii Nakryiko1d4e1eab2020-07-28 21:09:12 -0700802static void htab_put_fd_value(struct bpf_htab *htab, struct htab_elem *l)
Alexei Starovoitov824bd0c2016-02-01 22:39:53 -0800803{
Martin KaFai Laubcc6b1b2017-03-22 10:00:34 -0700804 struct bpf_map *map = &htab->map;
Andrii Nakryiko1d4e1eab2020-07-28 21:09:12 -0700805 void *ptr;
Martin KaFai Laubcc6b1b2017-03-22 10:00:34 -0700806
807 if (map->ops->map_fd_put_ptr) {
Andrii Nakryiko1d4e1eab2020-07-28 21:09:12 -0700808 ptr = fd_htab_map_get_ptr(map, l);
Martin KaFai Laubcc6b1b2017-03-22 10:00:34 -0700809 map->ops->map_fd_put_ptr(ptr);
810 }
Andrii Nakryiko1d4e1eab2020-07-28 21:09:12 -0700811}
812
813static void free_htab_elem(struct bpf_htab *htab, struct htab_elem *l)
814{
815 htab_put_fd_value(htab, l);
Martin KaFai Laubcc6b1b2017-03-22 10:00:34 -0700816
Alexei Starovoitov8c290e62017-03-21 19:05:04 -0700817 if (htab_is_prealloc(htab)) {
Alexei Starovoitova89fac52019-01-30 18:12:43 -0800818 __pcpu_freelist_push(&htab->freelist, &l->fnode);
Alexei Starovoitov824bd0c2016-02-01 22:39:53 -0800819 } else {
Alexei Starovoitov6c905982016-03-07 21:57:15 -0800820 atomic_dec(&htab->count);
821 l->htab = htab;
822 call_rcu(&l->rcu, htab_elem_free_rcu);
Alexei Starovoitov824bd0c2016-02-01 22:39:53 -0800823 }
824}
825
Martin KaFai Laufd91de72016-11-11 10:55:08 -0800826static void pcpu_copy_value(struct bpf_htab *htab, void __percpu *pptr,
827 void *value, bool onallcpus)
828{
829 if (!onallcpus) {
830 /* copy true value_size bytes */
831 memcpy(this_cpu_ptr(pptr), value, htab->map.value_size);
832 } else {
833 u32 size = round_up(htab->map.value_size, 8);
834 int off = 0, cpu;
835
836 for_each_possible_cpu(cpu) {
837 bpf_long_memcpy(per_cpu_ptr(pptr, cpu),
838 value + off, size);
839 off += size;
840 }
841 }
842}
843
David Verbeirend3bec012020-11-04 12:23:32 +0100844static void pcpu_init_value(struct bpf_htab *htab, void __percpu *pptr,
845 void *value, bool onallcpus)
846{
847 /* When using prealloc and not setting the initial value on all cpus,
848 * zero-fill element values for other cpus (just as what happens when
849 * not using prealloc). Otherwise, bpf program has no way to ensure
850 * known initial values for cpus other than current one
851 * (onallcpus=false always when coming from bpf prog).
852 */
853 if (htab_is_prealloc(htab) && !onallcpus) {
854 u32 size = round_up(htab->map.value_size, 8);
855 int current_cpu = raw_smp_processor_id();
856 int cpu;
857
858 for_each_possible_cpu(cpu) {
859 if (cpu == current_cpu)
860 bpf_long_memcpy(per_cpu_ptr(pptr, cpu), value,
861 size);
862 else
863 memset(per_cpu_ptr(pptr, cpu), 0, size);
864 }
865 } else {
866 pcpu_copy_value(htab, pptr, value, onallcpus);
867 }
868}
869
Daniel Borkmanncd36c3a2017-08-23 00:06:09 +0200870static bool fd_htab_map_needs_adjust(const struct bpf_htab *htab)
871{
872 return htab->map.map_type == BPF_MAP_TYPE_HASH_OF_MAPS &&
873 BITS_PER_LONG == 64;
874}
875
Alexei Starovoitov824bd0c2016-02-01 22:39:53 -0800876static struct htab_elem *alloc_htab_elem(struct bpf_htab *htab, void *key,
877 void *value, u32 key_size, u32 hash,
Alexei Starovoitova6ed3ea2016-08-05 14:01:27 -0700878 bool percpu, bool onallcpus,
Alexei Starovoitov8c290e62017-03-21 19:05:04 -0700879 struct htab_elem *old_elem)
Alexei Starovoitov824bd0c2016-02-01 22:39:53 -0800880{
Alexei Starovoitovd83525c2019-01-31 15:40:04 -0800881 u32 size = htab->map.value_size;
Alexei Starovoitov8c290e62017-03-21 19:05:04 -0700882 bool prealloc = htab_is_prealloc(htab);
883 struct htab_elem *l_new, **pl_new;
Alexei Starovoitov824bd0c2016-02-01 22:39:53 -0800884 void __percpu *pptr;
885
Alexei Starovoitov6c905982016-03-07 21:57:15 -0800886 if (prealloc) {
Alexei Starovoitov8c290e62017-03-21 19:05:04 -0700887 if (old_elem) {
888 /* if we're updating the existing element,
889 * use per-cpu extra elems to avoid freelist_pop/push
890 */
891 pl_new = this_cpu_ptr(htab->extra_elems);
892 l_new = *pl_new;
Andrii Nakryiko1d4e1eab2020-07-28 21:09:12 -0700893 htab_put_fd_value(htab, old_elem);
Alexei Starovoitov8c290e62017-03-21 19:05:04 -0700894 *pl_new = old_elem;
Alexei Starovoitova6ed3ea2016-08-05 14:01:27 -0700895 } else {
Alexei Starovoitov8c290e62017-03-21 19:05:04 -0700896 struct pcpu_freelist_node *l;
897
Alexei Starovoitova89fac52019-01-30 18:12:43 -0800898 l = __pcpu_freelist_pop(&htab->freelist);
Alexei Starovoitov8c290e62017-03-21 19:05:04 -0700899 if (!l)
900 return ERR_PTR(-E2BIG);
901 l_new = container_of(l, struct htab_elem, fnode);
Alexei Starovoitov6c905982016-03-07 21:57:15 -0800902 }
Alexei Starovoitova6ed3ea2016-08-05 14:01:27 -0700903 } else {
Alexei Starovoitov8c290e62017-03-21 19:05:04 -0700904 if (atomic_inc_return(&htab->count) > htab->map.max_entries)
905 if (!old_elem) {
906 /* when map is full and update() is replacing
907 * old element, it's ok to allocate, since
908 * old element will be freed immediately.
909 * Otherwise return an error
910 */
Mauricio Vasquez Bed2b82c2018-06-29 14:48:20 +0200911 l_new = ERR_PTR(-E2BIG);
912 goto dec_count;
Alexei Starovoitov8c290e62017-03-21 19:05:04 -0700913 }
Roman Gushchin88145682020-12-01 13:58:38 -0800914 l_new = bpf_map_kmalloc_node(&htab->map, htab->elem_size,
915 GFP_ATOMIC | __GFP_NOWARN,
916 htab->map.numa_node);
Mauricio Vasquez Bed2b82c2018-06-29 14:48:20 +0200917 if (!l_new) {
918 l_new = ERR_PTR(-ENOMEM);
919 goto dec_count;
920 }
Alexei Starovoitovd83525c2019-01-31 15:40:04 -0800921 check_and_init_map_lock(&htab->map,
922 l_new->key + round_up(key_size, 8));
Alexei Starovoitov6c905982016-03-07 21:57:15 -0800923 }
Alexei Starovoitov824bd0c2016-02-01 22:39:53 -0800924
925 memcpy(l_new->key, key, key_size);
926 if (percpu) {
Alexei Starovoitovd83525c2019-01-31 15:40:04 -0800927 size = round_up(size, 8);
Alexei Starovoitov6c905982016-03-07 21:57:15 -0800928 if (prealloc) {
929 pptr = htab_elem_get_ptr(l_new, key_size);
930 } else {
931 /* alloc_percpu zero-fills */
Roman Gushchin88145682020-12-01 13:58:38 -0800932 pptr = bpf_map_alloc_percpu(&htab->map, size, 8,
933 GFP_ATOMIC | __GFP_NOWARN);
Alexei Starovoitov6c905982016-03-07 21:57:15 -0800934 if (!pptr) {
935 kfree(l_new);
Mauricio Vasquez Bed2b82c2018-06-29 14:48:20 +0200936 l_new = ERR_PTR(-ENOMEM);
937 goto dec_count;
Alexei Starovoitov6c905982016-03-07 21:57:15 -0800938 }
Alexei Starovoitov824bd0c2016-02-01 22:39:53 -0800939 }
940
David Verbeirend3bec012020-11-04 12:23:32 +0100941 pcpu_init_value(htab, pptr, value, onallcpus);
Alexei Starovoitov15a07b32016-02-01 22:39:55 -0800942
Alexei Starovoitov6c905982016-03-07 21:57:15 -0800943 if (!prealloc)
944 htab_elem_set_ptr(l_new, key_size, pptr);
Alexei Starovoitovd83525c2019-01-31 15:40:04 -0800945 } else if (fd_htab_map_needs_adjust(htab)) {
946 size = round_up(size, 8);
Alexei Starovoitov824bd0c2016-02-01 22:39:53 -0800947 memcpy(l_new->key + round_up(key_size, 8), value, size);
Alexei Starovoitovd83525c2019-01-31 15:40:04 -0800948 } else {
949 copy_map_value(&htab->map,
950 l_new->key + round_up(key_size, 8),
951 value);
Alexei Starovoitov824bd0c2016-02-01 22:39:53 -0800952 }
953
954 l_new->hash = hash;
955 return l_new;
Mauricio Vasquez Bed2b82c2018-06-29 14:48:20 +0200956dec_count:
957 atomic_dec(&htab->count);
958 return l_new;
Alexei Starovoitov824bd0c2016-02-01 22:39:53 -0800959}
960
961static int check_flags(struct bpf_htab *htab, struct htab_elem *l_old,
962 u64 map_flags)
963{
Alexei Starovoitov96049f32019-01-31 15:40:09 -0800964 if (l_old && (map_flags & ~BPF_F_LOCK) == BPF_NOEXIST)
Alexei Starovoitov824bd0c2016-02-01 22:39:53 -0800965 /* elem already exists */
966 return -EEXIST;
967
Alexei Starovoitov96049f32019-01-31 15:40:09 -0800968 if (!l_old && (map_flags & ~BPF_F_LOCK) == BPF_EXIST)
Alexei Starovoitov824bd0c2016-02-01 22:39:53 -0800969 /* elem doesn't exist, cannot update it */
970 return -ENOENT;
971
972 return 0;
973}
974
Alexei Starovoitov0f8e4bd2014-11-13 17:36:45 -0800975/* Called from syscall or from eBPF program */
976static int htab_map_update_elem(struct bpf_map *map, void *key, void *value,
977 u64 map_flags)
978{
979 struct bpf_htab *htab = container_of(map, struct bpf_htab, map);
Alexei Starovoitov824bd0c2016-02-01 22:39:53 -0800980 struct htab_elem *l_new = NULL, *l_old;
Alexei Starovoitov4fe84352017-03-07 20:00:13 -0800981 struct hlist_nulls_head *head;
Alexei Starovoitov0f8e4bd2014-11-13 17:36:45 -0800982 unsigned long flags;
Alexei Starovoitov824bd0c2016-02-01 22:39:53 -0800983 struct bucket *b;
984 u32 key_size, hash;
Alexei Starovoitov0f8e4bd2014-11-13 17:36:45 -0800985 int ret;
986
Alexei Starovoitov96049f32019-01-31 15:40:09 -0800987 if (unlikely((map_flags & ~BPF_F_LOCK) > BPF_EXIST))
Alexei Starovoitov0f8e4bd2014-11-13 17:36:45 -0800988 /* unknown flags */
989 return -EINVAL;
990
Alexei Starovoitov1e6c62a2020-08-27 15:01:11 -0700991 WARN_ON_ONCE(!rcu_read_lock_held() && !rcu_read_lock_trace_held());
Alexei Starovoitov0f8e4bd2014-11-13 17:36:45 -0800992
Alexei Starovoitov824bd0c2016-02-01 22:39:53 -0800993 key_size = map->key_size;
994
Daniel Borkmannc0203472018-08-22 23:49:37 +0200995 hash = htab_map_hash(key, key_size, htab->hashrnd);
Alexei Starovoitov824bd0c2016-02-01 22:39:53 -0800996
Alexei Starovoitov824bd0c2016-02-01 22:39:53 -0800997 b = __select_bucket(htab, hash);
tom.leiming@gmail.com688ecfe2015-12-29 22:40:27 +0800998 head = &b->head;
Alexei Starovoitov0f8e4bd2014-11-13 17:36:45 -0800999
Alexei Starovoitov96049f32019-01-31 15:40:09 -08001000 if (unlikely(map_flags & BPF_F_LOCK)) {
1001 if (unlikely(!map_value_has_spin_lock(map)))
1002 return -EINVAL;
1003 /* find an element without taking the bucket lock */
1004 l_old = lookup_nulls_elem_raw(head, hash, key, key_size,
1005 htab->n_buckets);
1006 ret = check_flags(htab, l_old, map_flags);
1007 if (ret)
1008 return ret;
1009 if (l_old) {
1010 /* grab the element lock and update value in place */
1011 copy_map_value_locked(map,
1012 l_old->key + round_up(key_size, 8),
1013 value, false);
1014 return 0;
1015 }
1016 /* fall through, grab the bucket lock and lookup again.
1017 * 99.9% chance that the element won't be found,
1018 * but second lookup under lock has to be done.
1019 */
1020 }
1021
Song Liu20b6cc32020-10-29 00:19:25 -07001022 ret = htab_lock_bucket(htab, b, hash, &flags);
1023 if (ret)
1024 return ret;
Alexei Starovoitov0f8e4bd2014-11-13 17:36:45 -08001025
Alexei Starovoitov824bd0c2016-02-01 22:39:53 -08001026 l_old = lookup_elem_raw(head, hash, key, key_size);
Alexei Starovoitov0f8e4bd2014-11-13 17:36:45 -08001027
Alexei Starovoitov824bd0c2016-02-01 22:39:53 -08001028 ret = check_flags(htab, l_old, map_flags);
1029 if (ret)
Alexei Starovoitov0f8e4bd2014-11-13 17:36:45 -08001030 goto err;
Alexei Starovoitov0f8e4bd2014-11-13 17:36:45 -08001031
Alexei Starovoitov96049f32019-01-31 15:40:09 -08001032 if (unlikely(l_old && (map_flags & BPF_F_LOCK))) {
1033 /* first lookup without the bucket lock didn't find the element,
1034 * but second lookup with the bucket lock found it.
1035 * This case is highly unlikely, but has to be dealt with:
1036 * grab the element lock in addition to the bucket lock
1037 * and update element in place
1038 */
1039 copy_map_value_locked(map,
1040 l_old->key + round_up(key_size, 8),
1041 value, false);
1042 ret = 0;
1043 goto err;
1044 }
1045
Alexei Starovoitova6ed3ea2016-08-05 14:01:27 -07001046 l_new = alloc_htab_elem(htab, key, value, key_size, hash, false, false,
Alexei Starovoitov8c290e62017-03-21 19:05:04 -07001047 l_old);
Alexei Starovoitov6c905982016-03-07 21:57:15 -08001048 if (IS_ERR(l_new)) {
1049 /* all pre-allocated elements are in use or memory exhausted */
1050 ret = PTR_ERR(l_new);
1051 goto err;
1052 }
1053
Alexei Starovoitov824bd0c2016-02-01 22:39:53 -08001054 /* add new element to the head of the list, so that
1055 * concurrent search will find it before old elem
Alexei Starovoitov0f8e4bd2014-11-13 17:36:45 -08001056 */
Alexei Starovoitov4fe84352017-03-07 20:00:13 -08001057 hlist_nulls_add_head_rcu(&l_new->hash_node, head);
Alexei Starovoitov0f8e4bd2014-11-13 17:36:45 -08001058 if (l_old) {
Alexei Starovoitov4fe84352017-03-07 20:00:13 -08001059 hlist_nulls_del_rcu(&l_old->hash_node);
Alexei Starovoitov8c290e62017-03-21 19:05:04 -07001060 if (!htab_is_prealloc(htab))
1061 free_htab_elem(htab, l_old);
Alexei Starovoitov0f8e4bd2014-11-13 17:36:45 -08001062 }
Alexei Starovoitov6c905982016-03-07 21:57:15 -08001063 ret = 0;
Alexei Starovoitov0f8e4bd2014-11-13 17:36:45 -08001064err:
Song Liu20b6cc32020-10-29 00:19:25 -07001065 htab_unlock_bucket(htab, b, hash, flags);
Alexei Starovoitov0f8e4bd2014-11-13 17:36:45 -08001066 return ret;
1067}
1068
Martin KaFai Lau29ba7322016-11-11 10:55:09 -08001069static int htab_lru_map_update_elem(struct bpf_map *map, void *key, void *value,
1070 u64 map_flags)
1071{
1072 struct bpf_htab *htab = container_of(map, struct bpf_htab, map);
1073 struct htab_elem *l_new, *l_old = NULL;
Alexei Starovoitov4fe84352017-03-07 20:00:13 -08001074 struct hlist_nulls_head *head;
Martin KaFai Lau29ba7322016-11-11 10:55:09 -08001075 unsigned long flags;
1076 struct bucket *b;
1077 u32 key_size, hash;
1078 int ret;
1079
1080 if (unlikely(map_flags > BPF_EXIST))
1081 /* unknown flags */
1082 return -EINVAL;
1083
Alexei Starovoitov1e6c62a2020-08-27 15:01:11 -07001084 WARN_ON_ONCE(!rcu_read_lock_held() && !rcu_read_lock_trace_held());
Martin KaFai Lau29ba7322016-11-11 10:55:09 -08001085
1086 key_size = map->key_size;
1087
Daniel Borkmannc0203472018-08-22 23:49:37 +02001088 hash = htab_map_hash(key, key_size, htab->hashrnd);
Martin KaFai Lau29ba7322016-11-11 10:55:09 -08001089
1090 b = __select_bucket(htab, hash);
1091 head = &b->head;
1092
1093 /* For LRU, we need to alloc before taking bucket's
1094 * spinlock because getting free nodes from LRU may need
1095 * to remove older elements from htab and this removal
1096 * operation will need a bucket lock.
1097 */
1098 l_new = prealloc_lru_pop(htab, key, hash);
1099 if (!l_new)
1100 return -ENOMEM;
1101 memcpy(l_new->key + round_up(map->key_size, 8), value, map->value_size);
1102
Song Liu20b6cc32020-10-29 00:19:25 -07001103 ret = htab_lock_bucket(htab, b, hash, &flags);
1104 if (ret)
1105 return ret;
Martin KaFai Lau29ba7322016-11-11 10:55:09 -08001106
1107 l_old = lookup_elem_raw(head, hash, key, key_size);
1108
1109 ret = check_flags(htab, l_old, map_flags);
1110 if (ret)
1111 goto err;
1112
1113 /* add new element to the head of the list, so that
1114 * concurrent search will find it before old elem
1115 */
Alexei Starovoitov4fe84352017-03-07 20:00:13 -08001116 hlist_nulls_add_head_rcu(&l_new->hash_node, head);
Martin KaFai Lau29ba7322016-11-11 10:55:09 -08001117 if (l_old) {
1118 bpf_lru_node_set_ref(&l_new->lru_node);
Alexei Starovoitov4fe84352017-03-07 20:00:13 -08001119 hlist_nulls_del_rcu(&l_old->hash_node);
Martin KaFai Lau29ba7322016-11-11 10:55:09 -08001120 }
1121 ret = 0;
1122
1123err:
Song Liu20b6cc32020-10-29 00:19:25 -07001124 htab_unlock_bucket(htab, b, hash, flags);
Martin KaFai Lau29ba7322016-11-11 10:55:09 -08001125
1126 if (ret)
1127 bpf_lru_push_free(&htab->lru, &l_new->lru_node);
1128 else if (l_old)
1129 bpf_lru_push_free(&htab->lru, &l_old->lru_node);
1130
1131 return ret;
1132}
1133
Alexei Starovoitov15a07b32016-02-01 22:39:55 -08001134static int __htab_percpu_map_update_elem(struct bpf_map *map, void *key,
1135 void *value, u64 map_flags,
1136 bool onallcpus)
Alexei Starovoitov824bd0c2016-02-01 22:39:53 -08001137{
1138 struct bpf_htab *htab = container_of(map, struct bpf_htab, map);
1139 struct htab_elem *l_new = NULL, *l_old;
Alexei Starovoitov4fe84352017-03-07 20:00:13 -08001140 struct hlist_nulls_head *head;
Alexei Starovoitov824bd0c2016-02-01 22:39:53 -08001141 unsigned long flags;
1142 struct bucket *b;
1143 u32 key_size, hash;
1144 int ret;
1145
1146 if (unlikely(map_flags > BPF_EXIST))
1147 /* unknown flags */
1148 return -EINVAL;
1149
1150 WARN_ON_ONCE(!rcu_read_lock_held());
1151
1152 key_size = map->key_size;
1153
Daniel Borkmannc0203472018-08-22 23:49:37 +02001154 hash = htab_map_hash(key, key_size, htab->hashrnd);
Alexei Starovoitov824bd0c2016-02-01 22:39:53 -08001155
1156 b = __select_bucket(htab, hash);
1157 head = &b->head;
1158
Song Liu20b6cc32020-10-29 00:19:25 -07001159 ret = htab_lock_bucket(htab, b, hash, &flags);
1160 if (ret)
1161 return ret;
Alexei Starovoitov824bd0c2016-02-01 22:39:53 -08001162
1163 l_old = lookup_elem_raw(head, hash, key, key_size);
1164
1165 ret = check_flags(htab, l_old, map_flags);
1166 if (ret)
1167 goto err;
1168
1169 if (l_old) {
1170 /* per-cpu hash map can update value in-place */
Martin KaFai Laufd91de72016-11-11 10:55:08 -08001171 pcpu_copy_value(htab, htab_elem_get_ptr(l_old, key_size),
1172 value, onallcpus);
Alexei Starovoitov824bd0c2016-02-01 22:39:53 -08001173 } else {
1174 l_new = alloc_htab_elem(htab, key, value, key_size,
Alexei Starovoitov8c290e62017-03-21 19:05:04 -07001175 hash, true, onallcpus, NULL);
Alexei Starovoitov6c905982016-03-07 21:57:15 -08001176 if (IS_ERR(l_new)) {
1177 ret = PTR_ERR(l_new);
Alexei Starovoitov824bd0c2016-02-01 22:39:53 -08001178 goto err;
1179 }
Alexei Starovoitov4fe84352017-03-07 20:00:13 -08001180 hlist_nulls_add_head_rcu(&l_new->hash_node, head);
Alexei Starovoitov824bd0c2016-02-01 22:39:53 -08001181 }
1182 ret = 0;
1183err:
Song Liu20b6cc32020-10-29 00:19:25 -07001184 htab_unlock_bucket(htab, b, hash, flags);
Alexei Starovoitov824bd0c2016-02-01 22:39:53 -08001185 return ret;
1186}
1187
Martin KaFai Lau8f844932016-11-11 10:55:10 -08001188static int __htab_lru_percpu_map_update_elem(struct bpf_map *map, void *key,
1189 void *value, u64 map_flags,
1190 bool onallcpus)
1191{
1192 struct bpf_htab *htab = container_of(map, struct bpf_htab, map);
1193 struct htab_elem *l_new = NULL, *l_old;
Alexei Starovoitov4fe84352017-03-07 20:00:13 -08001194 struct hlist_nulls_head *head;
Martin KaFai Lau8f844932016-11-11 10:55:10 -08001195 unsigned long flags;
1196 struct bucket *b;
1197 u32 key_size, hash;
1198 int ret;
1199
1200 if (unlikely(map_flags > BPF_EXIST))
1201 /* unknown flags */
1202 return -EINVAL;
1203
1204 WARN_ON_ONCE(!rcu_read_lock_held());
1205
1206 key_size = map->key_size;
1207
Daniel Borkmannc0203472018-08-22 23:49:37 +02001208 hash = htab_map_hash(key, key_size, htab->hashrnd);
Martin KaFai Lau8f844932016-11-11 10:55:10 -08001209
1210 b = __select_bucket(htab, hash);
1211 head = &b->head;
1212
1213 /* For LRU, we need to alloc before taking bucket's
1214 * spinlock because LRU's elem alloc may need
1215 * to remove older elem from htab and this removal
1216 * operation will need a bucket lock.
1217 */
1218 if (map_flags != BPF_EXIST) {
1219 l_new = prealloc_lru_pop(htab, key, hash);
1220 if (!l_new)
1221 return -ENOMEM;
1222 }
1223
Song Liu20b6cc32020-10-29 00:19:25 -07001224 ret = htab_lock_bucket(htab, b, hash, &flags);
1225 if (ret)
1226 return ret;
Martin KaFai Lau8f844932016-11-11 10:55:10 -08001227
1228 l_old = lookup_elem_raw(head, hash, key, key_size);
1229
1230 ret = check_flags(htab, l_old, map_flags);
1231 if (ret)
1232 goto err;
1233
1234 if (l_old) {
1235 bpf_lru_node_set_ref(&l_old->lru_node);
1236
1237 /* per-cpu hash map can update value in-place */
1238 pcpu_copy_value(htab, htab_elem_get_ptr(l_old, key_size),
1239 value, onallcpus);
1240 } else {
David Verbeirend3bec012020-11-04 12:23:32 +01001241 pcpu_init_value(htab, htab_elem_get_ptr(l_new, key_size),
Martin KaFai Lau8f844932016-11-11 10:55:10 -08001242 value, onallcpus);
Alexei Starovoitov4fe84352017-03-07 20:00:13 -08001243 hlist_nulls_add_head_rcu(&l_new->hash_node, head);
Martin KaFai Lau8f844932016-11-11 10:55:10 -08001244 l_new = NULL;
1245 }
1246 ret = 0;
1247err:
Song Liu20b6cc32020-10-29 00:19:25 -07001248 htab_unlock_bucket(htab, b, hash, flags);
Martin KaFai Lau8f844932016-11-11 10:55:10 -08001249 if (l_new)
1250 bpf_lru_push_free(&htab->lru, &l_new->lru_node);
1251 return ret;
1252}
1253
Alexei Starovoitov15a07b32016-02-01 22:39:55 -08001254static int htab_percpu_map_update_elem(struct bpf_map *map, void *key,
1255 void *value, u64 map_flags)
1256{
1257 return __htab_percpu_map_update_elem(map, key, value, map_flags, false);
1258}
1259
Martin KaFai Lau8f844932016-11-11 10:55:10 -08001260static int htab_lru_percpu_map_update_elem(struct bpf_map *map, void *key,
1261 void *value, u64 map_flags)
1262{
1263 return __htab_lru_percpu_map_update_elem(map, key, value, map_flags,
1264 false);
1265}
1266
Alexei Starovoitov0f8e4bd2014-11-13 17:36:45 -08001267/* Called from syscall or from eBPF program */
1268static int htab_map_delete_elem(struct bpf_map *map, void *key)
1269{
1270 struct bpf_htab *htab = container_of(map, struct bpf_htab, map);
Alexei Starovoitov4fe84352017-03-07 20:00:13 -08001271 struct hlist_nulls_head *head;
tom.leiming@gmail.com688ecfe2015-12-29 22:40:27 +08001272 struct bucket *b;
Alexei Starovoitov0f8e4bd2014-11-13 17:36:45 -08001273 struct htab_elem *l;
1274 unsigned long flags;
1275 u32 hash, key_size;
Song Liu20b6cc32020-10-29 00:19:25 -07001276 int ret;
Alexei Starovoitov0f8e4bd2014-11-13 17:36:45 -08001277
Alexei Starovoitov1e6c62a2020-08-27 15:01:11 -07001278 WARN_ON_ONCE(!rcu_read_lock_held() && !rcu_read_lock_trace_held());
Alexei Starovoitov0f8e4bd2014-11-13 17:36:45 -08001279
1280 key_size = map->key_size;
1281
Daniel Borkmannc0203472018-08-22 23:49:37 +02001282 hash = htab_map_hash(key, key_size, htab->hashrnd);
tom.leiming@gmail.com688ecfe2015-12-29 22:40:27 +08001283 b = __select_bucket(htab, hash);
1284 head = &b->head;
Alexei Starovoitov0f8e4bd2014-11-13 17:36:45 -08001285
Song Liu20b6cc32020-10-29 00:19:25 -07001286 ret = htab_lock_bucket(htab, b, hash, &flags);
1287 if (ret)
1288 return ret;
Alexei Starovoitov0f8e4bd2014-11-13 17:36:45 -08001289
Alexei Starovoitov0f8e4bd2014-11-13 17:36:45 -08001290 l = lookup_elem_raw(head, hash, key, key_size);
1291
1292 if (l) {
Alexei Starovoitov4fe84352017-03-07 20:00:13 -08001293 hlist_nulls_del_rcu(&l->hash_node);
Alexei Starovoitov6c905982016-03-07 21:57:15 -08001294 free_htab_elem(htab, l);
Song Liu20b6cc32020-10-29 00:19:25 -07001295 } else {
1296 ret = -ENOENT;
Alexei Starovoitov0f8e4bd2014-11-13 17:36:45 -08001297 }
1298
Song Liu20b6cc32020-10-29 00:19:25 -07001299 htab_unlock_bucket(htab, b, hash, flags);
Alexei Starovoitov0f8e4bd2014-11-13 17:36:45 -08001300 return ret;
1301}
1302
Martin KaFai Lau29ba7322016-11-11 10:55:09 -08001303static int htab_lru_map_delete_elem(struct bpf_map *map, void *key)
1304{
1305 struct bpf_htab *htab = container_of(map, struct bpf_htab, map);
Alexei Starovoitov4fe84352017-03-07 20:00:13 -08001306 struct hlist_nulls_head *head;
Martin KaFai Lau29ba7322016-11-11 10:55:09 -08001307 struct bucket *b;
1308 struct htab_elem *l;
1309 unsigned long flags;
1310 u32 hash, key_size;
Song Liu20b6cc32020-10-29 00:19:25 -07001311 int ret;
Martin KaFai Lau29ba7322016-11-11 10:55:09 -08001312
Alexei Starovoitov1e6c62a2020-08-27 15:01:11 -07001313 WARN_ON_ONCE(!rcu_read_lock_held() && !rcu_read_lock_trace_held());
Martin KaFai Lau29ba7322016-11-11 10:55:09 -08001314
1315 key_size = map->key_size;
1316
Daniel Borkmannc0203472018-08-22 23:49:37 +02001317 hash = htab_map_hash(key, key_size, htab->hashrnd);
Martin KaFai Lau29ba7322016-11-11 10:55:09 -08001318 b = __select_bucket(htab, hash);
1319 head = &b->head;
1320
Song Liu20b6cc32020-10-29 00:19:25 -07001321 ret = htab_lock_bucket(htab, b, hash, &flags);
1322 if (ret)
1323 return ret;
Martin KaFai Lau29ba7322016-11-11 10:55:09 -08001324
1325 l = lookup_elem_raw(head, hash, key, key_size);
1326
Song Liu20b6cc32020-10-29 00:19:25 -07001327 if (l)
Alexei Starovoitov4fe84352017-03-07 20:00:13 -08001328 hlist_nulls_del_rcu(&l->hash_node);
Song Liu20b6cc32020-10-29 00:19:25 -07001329 else
1330 ret = -ENOENT;
Martin KaFai Lau29ba7322016-11-11 10:55:09 -08001331
Song Liu20b6cc32020-10-29 00:19:25 -07001332 htab_unlock_bucket(htab, b, hash, flags);
Martin KaFai Lau29ba7322016-11-11 10:55:09 -08001333 if (l)
1334 bpf_lru_push_free(&htab->lru, &l->lru_node);
1335 return ret;
1336}
1337
Alexei Starovoitov0f8e4bd2014-11-13 17:36:45 -08001338static void delete_all_elements(struct bpf_htab *htab)
1339{
1340 int i;
1341
1342 for (i = 0; i < htab->n_buckets; i++) {
Alexei Starovoitov4fe84352017-03-07 20:00:13 -08001343 struct hlist_nulls_head *head = select_bucket(htab, i);
1344 struct hlist_nulls_node *n;
Alexei Starovoitov0f8e4bd2014-11-13 17:36:45 -08001345 struct htab_elem *l;
1346
Alexei Starovoitov4fe84352017-03-07 20:00:13 -08001347 hlist_nulls_for_each_entry_safe(l, n, head, hash_node) {
1348 hlist_nulls_del_rcu(&l->hash_node);
Alexei Starovoitov8c290e62017-03-21 19:05:04 -07001349 htab_elem_free(htab, l);
Alexei Starovoitov0f8e4bd2014-11-13 17:36:45 -08001350 }
1351 }
1352}
Martin KaFai Laubcc6b1b2017-03-22 10:00:34 -07001353
Alexei Starovoitov0f8e4bd2014-11-13 17:36:45 -08001354/* Called when map->refcnt goes to zero, either from workqueue or from syscall */
1355static void htab_map_free(struct bpf_map *map)
1356{
1357 struct bpf_htab *htab = container_of(map, struct bpf_htab, map);
Song Liu20b6cc32020-10-29 00:19:25 -07001358 int i;
Alexei Starovoitov0f8e4bd2014-11-13 17:36:45 -08001359
Alexei Starovoitovbba1dc02020-06-29 21:33:39 -07001360 /* bpf_free_used_maps() or close(map_fd) will trigger this map_free callback.
1361 * bpf_free_used_maps() is called after bpf prog is no longer executing.
1362 * There is no need to synchronize_rcu() here to protect map elements.
Alexei Starovoitov0f8e4bd2014-11-13 17:36:45 -08001363 */
Alexei Starovoitov0f8e4bd2014-11-13 17:36:45 -08001364
Alexei Starovoitov6c905982016-03-07 21:57:15 -08001365 /* some of free_htab_elem() callbacks for elements of this map may
1366 * not have executed. Wait for them.
Alexei Starovoitov0f8e4bd2014-11-13 17:36:45 -08001367 */
Alexei Starovoitov6c905982016-03-07 21:57:15 -08001368 rcu_barrier();
Alexei Starovoitov8c290e62017-03-21 19:05:04 -07001369 if (!htab_is_prealloc(htab))
Alexei Starovoitov6c905982016-03-07 21:57:15 -08001370 delete_all_elements(htab);
Martin KaFai Lau29ba7322016-11-11 10:55:09 -08001371 else
1372 prealloc_destroy(htab);
1373
Alexei Starovoitova6ed3ea2016-08-05 14:01:27 -07001374 free_percpu(htab->extra_elems);
Daniel Borkmannd407bd22017-01-18 15:14:17 +01001375 bpf_map_area_free(htab->buckets);
Song Liu20b6cc32020-10-29 00:19:25 -07001376 for (i = 0; i < HASHTAB_MAP_LOCK_COUNT; i++)
1377 free_percpu(htab->map_locked[i]);
Eric Dumazet8aaeed82020-11-02 03:41:00 -08001378 lockdep_unregister_key(&htab->lockdep_key);
Alexei Starovoitov0f8e4bd2014-11-13 17:36:45 -08001379 kfree(htab);
1380}
1381
Yonghong Song699c86d2018-08-09 08:55:20 -07001382static void htab_map_seq_show_elem(struct bpf_map *map, void *key,
1383 struct seq_file *m)
1384{
1385 void *value;
1386
1387 rcu_read_lock();
1388
1389 value = htab_map_lookup_elem(map, key);
1390 if (!value) {
1391 rcu_read_unlock();
1392 return;
1393 }
1394
1395 btf_type_seq_show(map->btf, map->btf_key_type_id, key, m);
1396 seq_puts(m, ": ");
1397 btf_type_seq_show(map->btf, map->btf_value_type_id, value, m);
1398 seq_puts(m, "\n");
1399
1400 rcu_read_unlock();
1401}
1402
Yonghong Song05799632020-01-15 10:43:04 -08001403static int
1404__htab_map_lookup_and_delete_batch(struct bpf_map *map,
1405 const union bpf_attr *attr,
1406 union bpf_attr __user *uattr,
1407 bool do_delete, bool is_lru_map,
1408 bool is_percpu)
1409{
1410 struct bpf_htab *htab = container_of(map, struct bpf_htab, map);
1411 u32 bucket_cnt, total, key_size, value_size, roundup_key_size;
1412 void *keys = NULL, *values = NULL, *value, *dst_key, *dst_val;
1413 void __user *uvalues = u64_to_user_ptr(attr->batch.values);
1414 void __user *ukeys = u64_to_user_ptr(attr->batch.keys);
Lukas Bulwahn2f4b0312020-12-07 13:37:20 +01001415 void __user *ubatch = u64_to_user_ptr(attr->batch.in_batch);
Yonghong Song05799632020-01-15 10:43:04 -08001416 u32 batch, max_count, size, bucket_size;
Yonghong Songb9aff382020-02-19 15:47:57 -08001417 struct htab_elem *node_to_free = NULL;
Yonghong Song05799632020-01-15 10:43:04 -08001418 u64 elem_map_flags, map_flags;
1419 struct hlist_nulls_head *head;
1420 struct hlist_nulls_node *n;
Brian Vazquez492e0d02020-02-18 09:25:52 -08001421 unsigned long flags = 0;
1422 bool locked = false;
Yonghong Song05799632020-01-15 10:43:04 -08001423 struct htab_elem *l;
1424 struct bucket *b;
1425 int ret = 0;
1426
1427 elem_map_flags = attr->batch.elem_flags;
1428 if ((elem_map_flags & ~BPF_F_LOCK) ||
1429 ((elem_map_flags & BPF_F_LOCK) && !map_value_has_spin_lock(map)))
1430 return -EINVAL;
1431
1432 map_flags = attr->batch.flags;
1433 if (map_flags)
1434 return -EINVAL;
1435
1436 max_count = attr->batch.count;
1437 if (!max_count)
1438 return 0;
1439
1440 if (put_user(0, &uattr->batch.count))
1441 return -EFAULT;
1442
1443 batch = 0;
1444 if (ubatch && copy_from_user(&batch, ubatch, sizeof(batch)))
1445 return -EFAULT;
1446
1447 if (batch >= htab->n_buckets)
1448 return -ENOENT;
1449
1450 key_size = htab->map.key_size;
1451 roundup_key_size = round_up(htab->map.key_size, 8);
1452 value_size = htab->map.value_size;
1453 size = round_up(value_size, 8);
1454 if (is_percpu)
1455 value_size = size * num_possible_cpus();
1456 total = 0;
1457 /* while experimenting with hash tables with sizes ranging from 10 to
1458 * 1000, it was observed that a bucket can have upto 5 entries.
1459 */
1460 bucket_size = 5;
1461
1462alloc:
1463 /* We cannot do copy_from_user or copy_to_user inside
1464 * the rcu_read_lock. Allocate enough space here.
1465 */
1466 keys = kvmalloc(key_size * bucket_size, GFP_USER | __GFP_NOWARN);
1467 values = kvmalloc(value_size * bucket_size, GFP_USER | __GFP_NOWARN);
1468 if (!keys || !values) {
1469 ret = -ENOMEM;
1470 goto after_loop;
1471 }
1472
1473again:
Thomas Gleixner085fee12020-02-24 15:01:48 +01001474 bpf_disable_instrumentation();
Yonghong Song05799632020-01-15 10:43:04 -08001475 rcu_read_lock();
1476again_nocopy:
1477 dst_key = keys;
1478 dst_val = values;
1479 b = &htab->buckets[batch];
1480 head = &b->head;
Brian Vazquez492e0d02020-02-18 09:25:52 -08001481 /* do not grab the lock unless need it (bucket_cnt > 0). */
Song Liu20b6cc32020-10-29 00:19:25 -07001482 if (locked) {
1483 ret = htab_lock_bucket(htab, b, batch, &flags);
1484 if (ret)
1485 goto next_batch;
1486 }
Yonghong Song05799632020-01-15 10:43:04 -08001487
1488 bucket_cnt = 0;
1489 hlist_nulls_for_each_entry_rcu(l, n, head, hash_node)
1490 bucket_cnt++;
1491
Brian Vazquez492e0d02020-02-18 09:25:52 -08001492 if (bucket_cnt && !locked) {
1493 locked = true;
1494 goto again_nocopy;
1495 }
1496
Yonghong Song05799632020-01-15 10:43:04 -08001497 if (bucket_cnt > (max_count - total)) {
1498 if (total == 0)
1499 ret = -ENOSPC;
Brian Vazquez492e0d02020-02-18 09:25:52 -08001500 /* Note that since bucket_cnt > 0 here, it is implicit
1501 * that the locked was grabbed, so release it.
1502 */
Song Liu20b6cc32020-10-29 00:19:25 -07001503 htab_unlock_bucket(htab, b, batch, flags);
Yonghong Song05799632020-01-15 10:43:04 -08001504 rcu_read_unlock();
Thomas Gleixner085fee12020-02-24 15:01:48 +01001505 bpf_enable_instrumentation();
Yonghong Song05799632020-01-15 10:43:04 -08001506 goto after_loop;
1507 }
1508
1509 if (bucket_cnt > bucket_size) {
1510 bucket_size = bucket_cnt;
Brian Vazquez492e0d02020-02-18 09:25:52 -08001511 /* Note that since bucket_cnt > 0 here, it is implicit
1512 * that the locked was grabbed, so release it.
1513 */
Song Liu20b6cc32020-10-29 00:19:25 -07001514 htab_unlock_bucket(htab, b, batch, flags);
Yonghong Song05799632020-01-15 10:43:04 -08001515 rcu_read_unlock();
Thomas Gleixner085fee12020-02-24 15:01:48 +01001516 bpf_enable_instrumentation();
Yonghong Song05799632020-01-15 10:43:04 -08001517 kvfree(keys);
1518 kvfree(values);
1519 goto alloc;
1520 }
1521
Brian Vazquez492e0d02020-02-18 09:25:52 -08001522 /* Next block is only safe to run if you have grabbed the lock */
1523 if (!locked)
1524 goto next_batch;
1525
Yonghong Song05799632020-01-15 10:43:04 -08001526 hlist_nulls_for_each_entry_safe(l, n, head, hash_node) {
1527 memcpy(dst_key, l->key, key_size);
1528
1529 if (is_percpu) {
1530 int off = 0, cpu;
1531 void __percpu *pptr;
1532
1533 pptr = htab_elem_get_ptr(l, map->key_size);
1534 for_each_possible_cpu(cpu) {
1535 bpf_long_memcpy(dst_val + off,
1536 per_cpu_ptr(pptr, cpu), size);
1537 off += size;
1538 }
1539 } else {
1540 value = l->key + roundup_key_size;
1541 if (elem_map_flags & BPF_F_LOCK)
1542 copy_map_value_locked(map, dst_val, value,
1543 true);
1544 else
1545 copy_map_value(map, dst_val, value);
1546 check_and_init_map_lock(map, dst_val);
1547 }
1548 if (do_delete) {
1549 hlist_nulls_del_rcu(&l->hash_node);
Yonghong Songb9aff382020-02-19 15:47:57 -08001550
1551 /* bpf_lru_push_free() will acquire lru_lock, which
1552 * may cause deadlock. See comments in function
1553 * prealloc_lru_pop(). Let us do bpf_lru_push_free()
1554 * after releasing the bucket lock.
1555 */
1556 if (is_lru_map) {
1557 l->batch_flink = node_to_free;
1558 node_to_free = l;
1559 } else {
Yonghong Song05799632020-01-15 10:43:04 -08001560 free_htab_elem(htab, l);
Yonghong Songb9aff382020-02-19 15:47:57 -08001561 }
Yonghong Song05799632020-01-15 10:43:04 -08001562 }
1563 dst_key += key_size;
1564 dst_val += value_size;
1565 }
1566
Song Liu20b6cc32020-10-29 00:19:25 -07001567 htab_unlock_bucket(htab, b, batch, flags);
Brian Vazquez492e0d02020-02-18 09:25:52 -08001568 locked = false;
Yonghong Songb9aff382020-02-19 15:47:57 -08001569
1570 while (node_to_free) {
1571 l = node_to_free;
1572 node_to_free = node_to_free->batch_flink;
1573 bpf_lru_push_free(&htab->lru, &l->lru_node);
1574 }
1575
Brian Vazquez492e0d02020-02-18 09:25:52 -08001576next_batch:
Yonghong Song05799632020-01-15 10:43:04 -08001577 /* If we are not copying data, we can go to next bucket and avoid
1578 * unlocking the rcu.
1579 */
1580 if (!bucket_cnt && (batch + 1 < htab->n_buckets)) {
1581 batch++;
1582 goto again_nocopy;
1583 }
1584
1585 rcu_read_unlock();
Thomas Gleixner085fee12020-02-24 15:01:48 +01001586 bpf_enable_instrumentation();
Yonghong Song05799632020-01-15 10:43:04 -08001587 if (bucket_cnt && (copy_to_user(ukeys + total * key_size, keys,
1588 key_size * bucket_cnt) ||
1589 copy_to_user(uvalues + total * value_size, values,
1590 value_size * bucket_cnt))) {
1591 ret = -EFAULT;
1592 goto after_loop;
1593 }
1594
1595 total += bucket_cnt;
1596 batch++;
1597 if (batch >= htab->n_buckets) {
1598 ret = -ENOENT;
1599 goto after_loop;
1600 }
1601 goto again;
1602
1603after_loop:
1604 if (ret == -EFAULT)
1605 goto out;
1606
1607 /* copy # of entries and next batch */
1608 ubatch = u64_to_user_ptr(attr->batch.out_batch);
1609 if (copy_to_user(ubatch, &batch, sizeof(batch)) ||
1610 put_user(total, &uattr->batch.count))
1611 ret = -EFAULT;
1612
1613out:
1614 kvfree(keys);
1615 kvfree(values);
1616 return ret;
1617}
1618
1619static int
1620htab_percpu_map_lookup_batch(struct bpf_map *map, const union bpf_attr *attr,
1621 union bpf_attr __user *uattr)
1622{
1623 return __htab_map_lookup_and_delete_batch(map, attr, uattr, false,
1624 false, true);
1625}
1626
1627static int
1628htab_percpu_map_lookup_and_delete_batch(struct bpf_map *map,
1629 const union bpf_attr *attr,
1630 union bpf_attr __user *uattr)
1631{
1632 return __htab_map_lookup_and_delete_batch(map, attr, uattr, true,
1633 false, true);
1634}
1635
1636static int
1637htab_map_lookup_batch(struct bpf_map *map, const union bpf_attr *attr,
1638 union bpf_attr __user *uattr)
1639{
1640 return __htab_map_lookup_and_delete_batch(map, attr, uattr, false,
1641 false, false);
1642}
1643
1644static int
1645htab_map_lookup_and_delete_batch(struct bpf_map *map,
1646 const union bpf_attr *attr,
1647 union bpf_attr __user *uattr)
1648{
1649 return __htab_map_lookup_and_delete_batch(map, attr, uattr, true,
1650 false, false);
1651}
1652
1653static int
1654htab_lru_percpu_map_lookup_batch(struct bpf_map *map,
1655 const union bpf_attr *attr,
1656 union bpf_attr __user *uattr)
1657{
1658 return __htab_map_lookup_and_delete_batch(map, attr, uattr, false,
1659 true, true);
1660}
1661
1662static int
1663htab_lru_percpu_map_lookup_and_delete_batch(struct bpf_map *map,
1664 const union bpf_attr *attr,
1665 union bpf_attr __user *uattr)
1666{
1667 return __htab_map_lookup_and_delete_batch(map, attr, uattr, true,
1668 true, true);
1669}
1670
1671static int
1672htab_lru_map_lookup_batch(struct bpf_map *map, const union bpf_attr *attr,
1673 union bpf_attr __user *uattr)
1674{
1675 return __htab_map_lookup_and_delete_batch(map, attr, uattr, false,
1676 true, false);
1677}
1678
1679static int
1680htab_lru_map_lookup_and_delete_batch(struct bpf_map *map,
1681 const union bpf_attr *attr,
1682 union bpf_attr __user *uattr)
1683{
1684 return __htab_map_lookup_and_delete_batch(map, attr, uattr, true,
1685 true, false);
1686}
1687
Yonghong Songd6c45032020-07-23 11:41:14 -07001688struct bpf_iter_seq_hash_map_info {
1689 struct bpf_map *map;
1690 struct bpf_htab *htab;
1691 void *percpu_value_buf; // non-zero means percpu hash
Yonghong Songd6c45032020-07-23 11:41:14 -07001692 u32 bucket_id;
1693 u32 skip_elems;
1694};
1695
1696static struct htab_elem *
1697bpf_hash_map_seq_find_next(struct bpf_iter_seq_hash_map_info *info,
1698 struct htab_elem *prev_elem)
1699{
1700 const struct bpf_htab *htab = info->htab;
Yonghong Songd6c45032020-07-23 11:41:14 -07001701 u32 skip_elems = info->skip_elems;
1702 u32 bucket_id = info->bucket_id;
1703 struct hlist_nulls_head *head;
1704 struct hlist_nulls_node *n;
1705 struct htab_elem *elem;
1706 struct bucket *b;
1707 u32 i, count;
1708
1709 if (bucket_id >= htab->n_buckets)
1710 return NULL;
1711
1712 /* try to find next elem in the same bucket */
1713 if (prev_elem) {
1714 /* no update/deletion on this bucket, prev_elem should be still valid
1715 * and we won't skip elements.
1716 */
1717 n = rcu_dereference_raw(hlist_nulls_next_rcu(&prev_elem->hash_node));
1718 elem = hlist_nulls_entry_safe(n, struct htab_elem, hash_node);
1719 if (elem)
1720 return elem;
1721
1722 /* not found, unlock and go to the next bucket */
1723 b = &htab->buckets[bucket_id++];
Yonghong Songdc0988b2020-09-02 16:53:40 -07001724 rcu_read_unlock();
Yonghong Songd6c45032020-07-23 11:41:14 -07001725 skip_elems = 0;
1726 }
1727
1728 for (i = bucket_id; i < htab->n_buckets; i++) {
1729 b = &htab->buckets[i];
Yonghong Songdc0988b2020-09-02 16:53:40 -07001730 rcu_read_lock();
Yonghong Songd6c45032020-07-23 11:41:14 -07001731
1732 count = 0;
1733 head = &b->head;
1734 hlist_nulls_for_each_entry_rcu(elem, n, head, hash_node) {
1735 if (count >= skip_elems) {
Yonghong Songd6c45032020-07-23 11:41:14 -07001736 info->bucket_id = i;
1737 info->skip_elems = count;
1738 return elem;
1739 }
1740 count++;
1741 }
1742
Yonghong Songdc0988b2020-09-02 16:53:40 -07001743 rcu_read_unlock();
Yonghong Songd6c45032020-07-23 11:41:14 -07001744 skip_elems = 0;
1745 }
1746
1747 info->bucket_id = i;
1748 info->skip_elems = 0;
1749 return NULL;
1750}
1751
1752static void *bpf_hash_map_seq_start(struct seq_file *seq, loff_t *pos)
1753{
1754 struct bpf_iter_seq_hash_map_info *info = seq->private;
1755 struct htab_elem *elem;
1756
1757 elem = bpf_hash_map_seq_find_next(info, NULL);
1758 if (!elem)
1759 return NULL;
1760
1761 if (*pos == 0)
1762 ++*pos;
1763 return elem;
1764}
1765
1766static void *bpf_hash_map_seq_next(struct seq_file *seq, void *v, loff_t *pos)
1767{
1768 struct bpf_iter_seq_hash_map_info *info = seq->private;
1769
1770 ++*pos;
1771 ++info->skip_elems;
1772 return bpf_hash_map_seq_find_next(info, v);
1773}
1774
1775static int __bpf_hash_map_seq_show(struct seq_file *seq, struct htab_elem *elem)
1776{
1777 struct bpf_iter_seq_hash_map_info *info = seq->private;
1778 u32 roundup_key_size, roundup_value_size;
1779 struct bpf_iter__bpf_map_elem ctx = {};
1780 struct bpf_map *map = info->map;
1781 struct bpf_iter_meta meta;
1782 int ret = 0, off = 0, cpu;
1783 struct bpf_prog *prog;
1784 void __percpu *pptr;
1785
1786 meta.seq = seq;
1787 prog = bpf_iter_get_info(&meta, elem == NULL);
1788 if (prog) {
1789 ctx.meta = &meta;
1790 ctx.map = info->map;
1791 if (elem) {
1792 roundup_key_size = round_up(map->key_size, 8);
1793 ctx.key = elem->key;
1794 if (!info->percpu_value_buf) {
1795 ctx.value = elem->key + roundup_key_size;
1796 } else {
1797 roundup_value_size = round_up(map->value_size, 8);
1798 pptr = htab_elem_get_ptr(elem, map->key_size);
1799 for_each_possible_cpu(cpu) {
1800 bpf_long_memcpy(info->percpu_value_buf + off,
1801 per_cpu_ptr(pptr, cpu),
1802 roundup_value_size);
1803 off += roundup_value_size;
1804 }
1805 ctx.value = info->percpu_value_buf;
1806 }
1807 }
1808 ret = bpf_iter_run_prog(prog, &ctx);
1809 }
1810
1811 return ret;
1812}
1813
1814static int bpf_hash_map_seq_show(struct seq_file *seq, void *v)
1815{
1816 return __bpf_hash_map_seq_show(seq, v);
1817}
1818
1819static void bpf_hash_map_seq_stop(struct seq_file *seq, void *v)
1820{
Yonghong Songd6c45032020-07-23 11:41:14 -07001821 if (!v)
1822 (void)__bpf_hash_map_seq_show(seq, NULL);
1823 else
Yonghong Songdc0988b2020-09-02 16:53:40 -07001824 rcu_read_unlock();
Yonghong Songd6c45032020-07-23 11:41:14 -07001825}
1826
1827static int bpf_iter_init_hash_map(void *priv_data,
1828 struct bpf_iter_aux_info *aux)
1829{
1830 struct bpf_iter_seq_hash_map_info *seq_info = priv_data;
1831 struct bpf_map *map = aux->map;
1832 void *value_buf;
1833 u32 buf_size;
1834
1835 if (map->map_type == BPF_MAP_TYPE_PERCPU_HASH ||
1836 map->map_type == BPF_MAP_TYPE_LRU_PERCPU_HASH) {
1837 buf_size = round_up(map->value_size, 8) * num_possible_cpus();
1838 value_buf = kmalloc(buf_size, GFP_USER | __GFP_NOWARN);
1839 if (!value_buf)
1840 return -ENOMEM;
1841
1842 seq_info->percpu_value_buf = value_buf;
1843 }
1844
1845 seq_info->map = map;
1846 seq_info->htab = container_of(map, struct bpf_htab, map);
1847 return 0;
1848}
1849
1850static void bpf_iter_fini_hash_map(void *priv_data)
1851{
1852 struct bpf_iter_seq_hash_map_info *seq_info = priv_data;
1853
1854 kfree(seq_info->percpu_value_buf);
1855}
1856
1857static const struct seq_operations bpf_hash_map_seq_ops = {
1858 .start = bpf_hash_map_seq_start,
1859 .next = bpf_hash_map_seq_next,
1860 .stop = bpf_hash_map_seq_stop,
1861 .show = bpf_hash_map_seq_show,
1862};
1863
1864static const struct bpf_iter_seq_info iter_seq_info = {
1865 .seq_ops = &bpf_hash_map_seq_ops,
1866 .init_seq_private = bpf_iter_init_hash_map,
1867 .fini_seq_private = bpf_iter_fini_hash_map,
1868 .seq_priv_size = sizeof(struct bpf_iter_seq_hash_map_info),
1869};
1870
Andrey Ignatov41c48f32020-06-19 14:11:43 -07001871static int htab_map_btf_id;
Johannes Berg40077e02017-04-11 15:34:58 +02001872const struct bpf_map_ops htab_map_ops = {
Martin KaFai Lauf4d05252020-08-27 18:18:06 -07001873 .map_meta_equal = bpf_map_meta_equal,
Jakub Kicinski9328e0d2018-01-11 20:29:05 -08001874 .map_alloc_check = htab_map_alloc_check,
Alexei Starovoitov0f8e4bd2014-11-13 17:36:45 -08001875 .map_alloc = htab_map_alloc,
1876 .map_free = htab_map_free,
1877 .map_get_next_key = htab_map_get_next_key,
1878 .map_lookup_elem = htab_map_lookup_elem,
1879 .map_update_elem = htab_map_update_elem,
1880 .map_delete_elem = htab_map_delete_elem,
Alexei Starovoitov9015d2f2017-03-15 18:26:43 -07001881 .map_gen_lookup = htab_map_gen_lookup,
Yonghong Song699c86d2018-08-09 08:55:20 -07001882 .map_seq_show_elem = htab_map_seq_show_elem,
Yonghong Song05799632020-01-15 10:43:04 -08001883 BATCH_OPS(htab),
Andrey Ignatov41c48f32020-06-19 14:11:43 -07001884 .map_btf_name = "bpf_htab",
1885 .map_btf_id = &htab_map_btf_id,
Yonghong Songd6c45032020-07-23 11:41:14 -07001886 .iter_seq_info = &iter_seq_info,
Alexei Starovoitov0f8e4bd2014-11-13 17:36:45 -08001887};
1888
Andrey Ignatov2872e9a2020-06-19 14:11:44 -07001889static int htab_lru_map_btf_id;
Johannes Berg40077e02017-04-11 15:34:58 +02001890const struct bpf_map_ops htab_lru_map_ops = {
Martin KaFai Lauf4d05252020-08-27 18:18:06 -07001891 .map_meta_equal = bpf_map_meta_equal,
Jakub Kicinski9328e0d2018-01-11 20:29:05 -08001892 .map_alloc_check = htab_map_alloc_check,
Martin KaFai Lau29ba7322016-11-11 10:55:09 -08001893 .map_alloc = htab_map_alloc,
1894 .map_free = htab_map_free,
1895 .map_get_next_key = htab_map_get_next_key,
1896 .map_lookup_elem = htab_lru_map_lookup_elem,
Daniel Borkmann50b045a2019-05-14 01:18:56 +02001897 .map_lookup_elem_sys_only = htab_lru_map_lookup_elem_sys,
Martin KaFai Lau29ba7322016-11-11 10:55:09 -08001898 .map_update_elem = htab_lru_map_update_elem,
1899 .map_delete_elem = htab_lru_map_delete_elem,
Martin KaFai Laucc555422017-08-31 23:27:12 -07001900 .map_gen_lookup = htab_lru_map_gen_lookup,
Yonghong Song699c86d2018-08-09 08:55:20 -07001901 .map_seq_show_elem = htab_map_seq_show_elem,
Yonghong Song05799632020-01-15 10:43:04 -08001902 BATCH_OPS(htab_lru),
Andrey Ignatov2872e9a2020-06-19 14:11:44 -07001903 .map_btf_name = "bpf_htab",
1904 .map_btf_id = &htab_lru_map_btf_id,
Yonghong Songd6c45032020-07-23 11:41:14 -07001905 .iter_seq_info = &iter_seq_info,
Martin KaFai Lau29ba7322016-11-11 10:55:09 -08001906};
1907
Alexei Starovoitov824bd0c2016-02-01 22:39:53 -08001908/* Called from eBPF program */
1909static void *htab_percpu_map_lookup_elem(struct bpf_map *map, void *key)
1910{
1911 struct htab_elem *l = __htab_map_lookup_elem(map, key);
1912
1913 if (l)
1914 return this_cpu_ptr(htab_elem_get_ptr(l, map->key_size));
1915 else
1916 return NULL;
1917}
1918
Martin KaFai Lau8f844932016-11-11 10:55:10 -08001919static void *htab_lru_percpu_map_lookup_elem(struct bpf_map *map, void *key)
1920{
1921 struct htab_elem *l = __htab_map_lookup_elem(map, key);
1922
1923 if (l) {
1924 bpf_lru_node_set_ref(&l->lru_node);
1925 return this_cpu_ptr(htab_elem_get_ptr(l, map->key_size));
1926 }
1927
1928 return NULL;
1929}
1930
Alexei Starovoitov15a07b32016-02-01 22:39:55 -08001931int bpf_percpu_hash_copy(struct bpf_map *map, void *key, void *value)
1932{
1933 struct htab_elem *l;
1934 void __percpu *pptr;
1935 int ret = -ENOENT;
1936 int cpu, off = 0;
1937 u32 size;
1938
1939 /* per_cpu areas are zero-filled and bpf programs can only
1940 * access 'value_size' of them, so copying rounded areas
1941 * will not leak any kernel data
1942 */
1943 size = round_up(map->value_size, 8);
1944 rcu_read_lock();
1945 l = __htab_map_lookup_elem(map, key);
1946 if (!l)
1947 goto out;
Daniel Borkmann50b045a2019-05-14 01:18:56 +02001948 /* We do not mark LRU map element here in order to not mess up
1949 * eviction heuristics when user space does a map walk.
1950 */
Alexei Starovoitov15a07b32016-02-01 22:39:55 -08001951 pptr = htab_elem_get_ptr(l, map->key_size);
1952 for_each_possible_cpu(cpu) {
1953 bpf_long_memcpy(value + off,
1954 per_cpu_ptr(pptr, cpu), size);
1955 off += size;
1956 }
1957 ret = 0;
1958out:
1959 rcu_read_unlock();
1960 return ret;
1961}
1962
1963int bpf_percpu_hash_update(struct bpf_map *map, void *key, void *value,
1964 u64 map_flags)
1965{
Martin KaFai Lau8f844932016-11-11 10:55:10 -08001966 struct bpf_htab *htab = container_of(map, struct bpf_htab, map);
Sasha Levin6bbd9a02016-02-19 13:53:10 -05001967 int ret;
1968
1969 rcu_read_lock();
Martin KaFai Lau8f844932016-11-11 10:55:10 -08001970 if (htab_is_lru(htab))
1971 ret = __htab_lru_percpu_map_update_elem(map, key, value,
1972 map_flags, true);
1973 else
1974 ret = __htab_percpu_map_update_elem(map, key, value, map_flags,
1975 true);
Sasha Levin6bbd9a02016-02-19 13:53:10 -05001976 rcu_read_unlock();
1977
1978 return ret;
Alexei Starovoitov15a07b32016-02-01 22:39:55 -08001979}
1980
Yonghong Songc7b27c32018-08-29 14:43:13 -07001981static void htab_percpu_map_seq_show_elem(struct bpf_map *map, void *key,
1982 struct seq_file *m)
1983{
1984 struct htab_elem *l;
1985 void __percpu *pptr;
1986 int cpu;
1987
1988 rcu_read_lock();
1989
1990 l = __htab_map_lookup_elem(map, key);
1991 if (!l) {
1992 rcu_read_unlock();
1993 return;
1994 }
1995
1996 btf_type_seq_show(map->btf, map->btf_key_type_id, key, m);
1997 seq_puts(m, ": {\n");
1998 pptr = htab_elem_get_ptr(l, map->key_size);
1999 for_each_possible_cpu(cpu) {
2000 seq_printf(m, "\tcpu%d: ", cpu);
2001 btf_type_seq_show(map->btf, map->btf_value_type_id,
2002 per_cpu_ptr(pptr, cpu), m);
2003 seq_puts(m, "\n");
2004 }
2005 seq_puts(m, "}\n");
2006
2007 rcu_read_unlock();
2008}
2009
Andrey Ignatov2872e9a2020-06-19 14:11:44 -07002010static int htab_percpu_map_btf_id;
Johannes Berg40077e02017-04-11 15:34:58 +02002011const struct bpf_map_ops htab_percpu_map_ops = {
Martin KaFai Lauf4d05252020-08-27 18:18:06 -07002012 .map_meta_equal = bpf_map_meta_equal,
Jakub Kicinski9328e0d2018-01-11 20:29:05 -08002013 .map_alloc_check = htab_map_alloc_check,
Alexei Starovoitov824bd0c2016-02-01 22:39:53 -08002014 .map_alloc = htab_map_alloc,
2015 .map_free = htab_map_free,
2016 .map_get_next_key = htab_map_get_next_key,
2017 .map_lookup_elem = htab_percpu_map_lookup_elem,
2018 .map_update_elem = htab_percpu_map_update_elem,
2019 .map_delete_elem = htab_map_delete_elem,
Yonghong Songc7b27c32018-08-29 14:43:13 -07002020 .map_seq_show_elem = htab_percpu_map_seq_show_elem,
Yonghong Song05799632020-01-15 10:43:04 -08002021 BATCH_OPS(htab_percpu),
Andrey Ignatov2872e9a2020-06-19 14:11:44 -07002022 .map_btf_name = "bpf_htab",
2023 .map_btf_id = &htab_percpu_map_btf_id,
Yonghong Songd6c45032020-07-23 11:41:14 -07002024 .iter_seq_info = &iter_seq_info,
Alexei Starovoitov824bd0c2016-02-01 22:39:53 -08002025};
2026
Andrey Ignatov2872e9a2020-06-19 14:11:44 -07002027static int htab_lru_percpu_map_btf_id;
Johannes Berg40077e02017-04-11 15:34:58 +02002028const struct bpf_map_ops htab_lru_percpu_map_ops = {
Martin KaFai Lauf4d05252020-08-27 18:18:06 -07002029 .map_meta_equal = bpf_map_meta_equal,
Jakub Kicinski9328e0d2018-01-11 20:29:05 -08002030 .map_alloc_check = htab_map_alloc_check,
Martin KaFai Lau8f844932016-11-11 10:55:10 -08002031 .map_alloc = htab_map_alloc,
2032 .map_free = htab_map_free,
2033 .map_get_next_key = htab_map_get_next_key,
2034 .map_lookup_elem = htab_lru_percpu_map_lookup_elem,
2035 .map_update_elem = htab_lru_percpu_map_update_elem,
2036 .map_delete_elem = htab_lru_map_delete_elem,
Yonghong Songc7b27c32018-08-29 14:43:13 -07002037 .map_seq_show_elem = htab_percpu_map_seq_show_elem,
Yonghong Song05799632020-01-15 10:43:04 -08002038 BATCH_OPS(htab_lru_percpu),
Andrey Ignatov2872e9a2020-06-19 14:11:44 -07002039 .map_btf_name = "bpf_htab",
2040 .map_btf_id = &htab_lru_percpu_map_btf_id,
Yonghong Songd6c45032020-07-23 11:41:14 -07002041 .iter_seq_info = &iter_seq_info,
Martin KaFai Lau8f844932016-11-11 10:55:10 -08002042};
2043
Jakub Kicinski9328e0d2018-01-11 20:29:05 -08002044static int fd_htab_map_alloc_check(union bpf_attr *attr)
Martin KaFai Laubcc6b1b2017-03-22 10:00:34 -07002045{
Martin KaFai Laubcc6b1b2017-03-22 10:00:34 -07002046 if (attr->value_size != sizeof(u32))
Jakub Kicinski9328e0d2018-01-11 20:29:05 -08002047 return -EINVAL;
2048 return htab_map_alloc_check(attr);
Martin KaFai Laubcc6b1b2017-03-22 10:00:34 -07002049}
2050
2051static void fd_htab_map_free(struct bpf_map *map)
2052{
2053 struct bpf_htab *htab = container_of(map, struct bpf_htab, map);
2054 struct hlist_nulls_node *n;
2055 struct hlist_nulls_head *head;
2056 struct htab_elem *l;
2057 int i;
2058
2059 for (i = 0; i < htab->n_buckets; i++) {
2060 head = select_bucket(htab, i);
2061
2062 hlist_nulls_for_each_entry_safe(l, n, head, hash_node) {
2063 void *ptr = fd_htab_map_get_ptr(map, l);
2064
2065 map->ops->map_fd_put_ptr(ptr);
2066 }
2067 }
2068
2069 htab_map_free(map);
2070}
2071
2072/* only called from syscall */
Martin KaFai Lau14dc6f02017-06-27 23:08:34 -07002073int bpf_fd_htab_map_lookup_elem(struct bpf_map *map, void *key, u32 *value)
2074{
2075 void **ptr;
2076 int ret = 0;
2077
2078 if (!map->ops->map_fd_sys_lookup_elem)
2079 return -ENOTSUPP;
2080
2081 rcu_read_lock();
2082 ptr = htab_map_lookup_elem(map, key);
2083 if (ptr)
2084 *value = map->ops->map_fd_sys_lookup_elem(READ_ONCE(*ptr));
2085 else
2086 ret = -ENOENT;
2087 rcu_read_unlock();
2088
2089 return ret;
2090}
2091
2092/* only called from syscall */
Martin KaFai Laubcc6b1b2017-03-22 10:00:34 -07002093int bpf_fd_htab_map_update_elem(struct bpf_map *map, struct file *map_file,
2094 void *key, void *value, u64 map_flags)
2095{
2096 void *ptr;
2097 int ret;
2098 u32 ufd = *(u32 *)value;
2099
2100 ptr = map->ops->map_fd_get_ptr(map, map_file, ufd);
2101 if (IS_ERR(ptr))
2102 return PTR_ERR(ptr);
2103
2104 ret = htab_map_update_elem(map, key, &ptr, map_flags);
2105 if (ret)
2106 map->ops->map_fd_put_ptr(ptr);
2107
2108 return ret;
2109}
2110
2111static struct bpf_map *htab_of_map_alloc(union bpf_attr *attr)
2112{
2113 struct bpf_map *map, *inner_map_meta;
2114
2115 inner_map_meta = bpf_map_meta_alloc(attr->inner_map_fd);
2116 if (IS_ERR(inner_map_meta))
2117 return inner_map_meta;
2118
Jakub Kicinski9328e0d2018-01-11 20:29:05 -08002119 map = htab_map_alloc(attr);
Martin KaFai Laubcc6b1b2017-03-22 10:00:34 -07002120 if (IS_ERR(map)) {
2121 bpf_map_meta_free(inner_map_meta);
2122 return map;
2123 }
2124
2125 map->inner_map_meta = inner_map_meta;
2126
2127 return map;
2128}
2129
2130static void *htab_of_map_lookup_elem(struct bpf_map *map, void *key)
2131{
2132 struct bpf_map **inner_map = htab_map_lookup_elem(map, key);
2133
2134 if (!inner_map)
2135 return NULL;
2136
2137 return READ_ONCE(*inner_map);
2138}
2139
Daniel Borkmann4a8f87e2020-10-11 01:40:03 +02002140static int htab_of_map_gen_lookup(struct bpf_map *map,
Daniel Borkmann7b0c2a02017-08-19 03:12:46 +02002141 struct bpf_insn *insn_buf)
2142{
2143 struct bpf_insn *insn = insn_buf;
2144 const int ret = BPF_REG_0;
2145
Daniel Borkmann09772d92018-06-02 23:06:35 +02002146 BUILD_BUG_ON(!__same_type(&__htab_map_lookup_elem,
2147 (void *(*)(struct bpf_map *map, void *key))NULL));
2148 *insn++ = BPF_EMIT_CALL(BPF_CAST_CALL(__htab_map_lookup_elem));
Daniel Borkmann7b0c2a02017-08-19 03:12:46 +02002149 *insn++ = BPF_JMP_IMM(BPF_JEQ, ret, 0, 2);
2150 *insn++ = BPF_ALU64_IMM(BPF_ADD, ret,
2151 offsetof(struct htab_elem, key) +
2152 round_up(map->key_size, 8));
2153 *insn++ = BPF_LDX_MEM(BPF_DW, ret, ret, 0);
2154
2155 return insn - insn_buf;
2156}
2157
Martin KaFai Laubcc6b1b2017-03-22 10:00:34 -07002158static void htab_of_map_free(struct bpf_map *map)
2159{
2160 bpf_map_meta_free(map->inner_map_meta);
2161 fd_htab_map_free(map);
2162}
2163
Andrey Ignatov2872e9a2020-06-19 14:11:44 -07002164static int htab_of_maps_map_btf_id;
Johannes Berg40077e02017-04-11 15:34:58 +02002165const struct bpf_map_ops htab_of_maps_map_ops = {
Jakub Kicinski9328e0d2018-01-11 20:29:05 -08002166 .map_alloc_check = fd_htab_map_alloc_check,
Martin KaFai Laubcc6b1b2017-03-22 10:00:34 -07002167 .map_alloc = htab_of_map_alloc,
2168 .map_free = htab_of_map_free,
2169 .map_get_next_key = htab_map_get_next_key,
2170 .map_lookup_elem = htab_of_map_lookup_elem,
2171 .map_delete_elem = htab_map_delete_elem,
2172 .map_fd_get_ptr = bpf_map_fd_get_ptr,
2173 .map_fd_put_ptr = bpf_map_fd_put_ptr,
Martin KaFai Lau14dc6f02017-06-27 23:08:34 -07002174 .map_fd_sys_lookup_elem = bpf_map_fd_sys_lookup_elem,
Daniel Borkmann7b0c2a02017-08-19 03:12:46 +02002175 .map_gen_lookup = htab_of_map_gen_lookup,
Daniel Borkmanne8d2bec2018-08-12 01:59:17 +02002176 .map_check_btf = map_check_no_btf,
Andrey Ignatov2872e9a2020-06-19 14:11:44 -07002177 .map_btf_name = "bpf_htab",
2178 .map_btf_id = &htab_of_maps_map_btf_id,
Martin KaFai Laubcc6b1b2017-03-22 10:00:34 -07002179};