Thomas Gleixner | 5b497af | 2019-05-29 07:18:09 -0700 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0-only |
Alexei Starovoitov | 0f8e4bd | 2014-11-13 17:36:45 -0800 | [diff] [blame] | 2 | /* Copyright (c) 2011-2014 PLUMgrid, http://plumgrid.com |
Alexei Starovoitov | 6c90598 | 2016-03-07 21:57:15 -0800 | [diff] [blame] | 3 | * Copyright (c) 2016 Facebook |
Alexei Starovoitov | 0f8e4bd | 2014-11-13 17:36:45 -0800 | [diff] [blame] | 4 | */ |
| 5 | #include <linux/bpf.h> |
Yonghong Song | 699c86d | 2018-08-09 08:55:20 -0700 | [diff] [blame] | 6 | #include <linux/btf.h> |
Alexei Starovoitov | 0f8e4bd | 2014-11-13 17:36:45 -0800 | [diff] [blame] | 7 | #include <linux/jhash.h> |
| 8 | #include <linux/filter.h> |
Alexei Starovoitov | 4fe8435 | 2017-03-07 20:00:13 -0800 | [diff] [blame] | 9 | #include <linux/rculist_nulls.h> |
Daniel Borkmann | c020347 | 2018-08-22 23:49:37 +0200 | [diff] [blame] | 10 | #include <linux/random.h> |
Yonghong Song | 699c86d | 2018-08-09 08:55:20 -0700 | [diff] [blame] | 11 | #include <uapi/linux/btf.h> |
Alexei Starovoitov | 1e6c62a | 2020-08-27 15:01:11 -0700 | [diff] [blame] | 12 | #include <linux/rcupdate_trace.h> |
Alexei Starovoitov | 6c90598 | 2016-03-07 21:57:15 -0800 | [diff] [blame] | 13 | #include "percpu_freelist.h" |
Martin KaFai Lau | 29ba732 | 2016-11-11 10:55:09 -0800 | [diff] [blame] | 14 | #include "bpf_lru_list.h" |
Martin KaFai Lau | bcc6b1b | 2017-03-22 10:00:34 -0700 | [diff] [blame] | 15 | #include "map_in_map.h" |
Alexei Starovoitov | 0f8e4bd | 2014-11-13 17:36:45 -0800 | [diff] [blame] | 16 | |
Chenbo Feng | 6e71b04 | 2017-10-18 13:00:22 -0700 | [diff] [blame] | 17 | #define HTAB_CREATE_FLAG_MASK \ |
| 18 | (BPF_F_NO_PREALLOC | BPF_F_NO_COMMON_LRU | BPF_F_NUMA_NODE | \ |
Daniel Borkmann | 591fe98 | 2019-04-09 23:20:05 +0200 | [diff] [blame] | 19 | BPF_F_ACCESS_MASK | BPF_F_ZERO_SEED) |
Martin KaFai Lau | 96eabe7 | 2017-08-18 11:28:00 -0700 | [diff] [blame] | 20 | |
Yonghong Song | 0579963 | 2020-01-15 10:43:04 -0800 | [diff] [blame] | 21 | #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 Gleixner | dbca151 | 2020-02-24 15:01:34 +0100 | [diff] [blame] | 31 | /* |
| 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 Gleixner | 7f805d1 | 2020-02-24 15:01:51 +0100 | [diff] [blame] | 50 | * |
| 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 Gleixner | dbca151 | 2020-02-24 15:01:34 +0100 | [diff] [blame] | 80 | */ |
tom.leiming@gmail.com | 688ecfe | 2015-12-29 22:40:27 +0800 | [diff] [blame] | 81 | struct bucket { |
Alexei Starovoitov | 4fe8435 | 2017-03-07 20:00:13 -0800 | [diff] [blame] | 82 | struct hlist_nulls_head head; |
Thomas Gleixner | 7f805d1 | 2020-02-24 15:01:51 +0100 | [diff] [blame] | 83 | union { |
| 84 | raw_spinlock_t raw_lock; |
| 85 | spinlock_t lock; |
| 86 | }; |
tom.leiming@gmail.com | 688ecfe | 2015-12-29 22:40:27 +0800 | [diff] [blame] | 87 | }; |
| 88 | |
Song Liu | 20b6cc3 | 2020-10-29 00:19:25 -0700 | [diff] [blame] | 89 | #define HASHTAB_MAP_LOCK_COUNT 8 |
| 90 | #define HASHTAB_MAP_LOCK_MASK (HASHTAB_MAP_LOCK_COUNT - 1) |
| 91 | |
Alexei Starovoitov | 0f8e4bd | 2014-11-13 17:36:45 -0800 | [diff] [blame] | 92 | struct bpf_htab { |
| 93 | struct bpf_map map; |
tom.leiming@gmail.com | 688ecfe | 2015-12-29 22:40:27 +0800 | [diff] [blame] | 94 | struct bucket *buckets; |
Alexei Starovoitov | 6c90598 | 2016-03-07 21:57:15 -0800 | [diff] [blame] | 95 | void *elems; |
Martin KaFai Lau | 29ba732 | 2016-11-11 10:55:09 -0800 | [diff] [blame] | 96 | union { |
| 97 | struct pcpu_freelist freelist; |
| 98 | struct bpf_lru lru; |
| 99 | }; |
Alexei Starovoitov | 8c290e6 | 2017-03-21 19:05:04 -0700 | [diff] [blame] | 100 | struct htab_elem *__percpu *extra_elems; |
tom.leiming@gmail.com | 6591f1e | 2015-12-29 22:40:25 +0800 | [diff] [blame] | 101 | atomic_t count; /* number of elements in this hashtable */ |
Alexei Starovoitov | 0f8e4bd | 2014-11-13 17:36:45 -0800 | [diff] [blame] | 102 | u32 n_buckets; /* number of hash buckets */ |
| 103 | u32 elem_size; /* size of each element in bytes */ |
Daniel Borkmann | c020347 | 2018-08-22 23:49:37 +0200 | [diff] [blame] | 104 | u32 hashrnd; |
Song Liu | c50eb51 | 2020-10-29 00:19:24 -0700 | [diff] [blame] | 105 | struct lock_class_key lockdep_key; |
Song Liu | 20b6cc3 | 2020-10-29 00:19:25 -0700 | [diff] [blame] | 106 | int __percpu *map_locked[HASHTAB_MAP_LOCK_COUNT]; |
Alexei Starovoitov | 0f8e4bd | 2014-11-13 17:36:45 -0800 | [diff] [blame] | 107 | }; |
| 108 | |
| 109 | /* each htab element is struct htab_elem + key + value */ |
| 110 | struct htab_elem { |
Alexei Starovoitov | 824bd0c | 2016-02-01 22:39:53 -0800 | [diff] [blame] | 111 | union { |
Alexei Starovoitov | 4fe8435 | 2017-03-07 20:00:13 -0800 | [diff] [blame] | 112 | struct hlist_nulls_node hash_node; |
Alexei Starovoitov | 9f69154 | 2017-03-07 20:00:12 -0800 | [diff] [blame] | 113 | struct { |
| 114 | void *padding; |
| 115 | union { |
| 116 | struct bpf_htab *htab; |
| 117 | struct pcpu_freelist_node fnode; |
Yonghong Song | b9aff38 | 2020-02-19 15:47:57 -0800 | [diff] [blame] | 118 | struct htab_elem *batch_flink; |
Alexei Starovoitov | 9f69154 | 2017-03-07 20:00:12 -0800 | [diff] [blame] | 119 | }; |
| 120 | }; |
Alexei Starovoitov | 824bd0c | 2016-02-01 22:39:53 -0800 | [diff] [blame] | 121 | }; |
Alexei Starovoitov | a6ed3ea | 2016-08-05 14:01:27 -0700 | [diff] [blame] | 122 | union { |
| 123 | struct rcu_head rcu; |
Martin KaFai Lau | 29ba732 | 2016-11-11 10:55:09 -0800 | [diff] [blame] | 124 | struct bpf_lru_node lru_node; |
Alexei Starovoitov | a6ed3ea | 2016-08-05 14:01:27 -0700 | [diff] [blame] | 125 | }; |
Alexei Starovoitov | 6c90598 | 2016-03-07 21:57:15 -0800 | [diff] [blame] | 126 | u32 hash; |
Gustavo A. R. Silva | d7f10df | 2020-02-26 18:17:44 -0600 | [diff] [blame] | 127 | char key[] __aligned(8); |
Alexei Starovoitov | 0f8e4bd | 2014-11-13 17:36:45 -0800 | [diff] [blame] | 128 | }; |
| 129 | |
Thomas Gleixner | 7f805d1 | 2020-02-24 15:01:51 +0100 | [diff] [blame] | 130 | static inline bool htab_is_prealloc(const struct bpf_htab *htab) |
| 131 | { |
| 132 | return !(htab->map.map_flags & BPF_F_NO_PREALLOC); |
| 133 | } |
| 134 | |
| 135 | static 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 Gleixner | d01f9b1 | 2020-02-24 15:01:50 +0100 | [diff] [blame] | 140 | static 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 Liu | c50eb51 | 2020-10-29 00:19:24 -0700 | [diff] [blame] | 146 | if (htab_use_raw_lock(htab)) { |
Thomas Gleixner | 7f805d1 | 2020-02-24 15:01:51 +0100 | [diff] [blame] | 147 | raw_spin_lock_init(&htab->buckets[i].raw_lock); |
Song Liu | c50eb51 | 2020-10-29 00:19:24 -0700 | [diff] [blame] | 148 | lockdep_set_class(&htab->buckets[i].raw_lock, |
| 149 | &htab->lockdep_key); |
| 150 | } else { |
Thomas Gleixner | 7f805d1 | 2020-02-24 15:01:51 +0100 | [diff] [blame] | 151 | spin_lock_init(&htab->buckets[i].lock); |
Song Liu | c50eb51 | 2020-10-29 00:19:24 -0700 | [diff] [blame] | 152 | lockdep_set_class(&htab->buckets[i].lock, |
| 153 | &htab->lockdep_key); |
| 154 | } |
Eric Dumazet | e7e5180 | 2020-12-21 11:25:06 -0800 | [diff] [blame] | 155 | cond_resched(); |
Thomas Gleixner | d01f9b1 | 2020-02-24 15:01:50 +0100 | [diff] [blame] | 156 | } |
| 157 | } |
| 158 | |
Song Liu | 20b6cc3 | 2020-10-29 00:19:25 -0700 | [diff] [blame] | 159 | static inline int htab_lock_bucket(const struct bpf_htab *htab, |
| 160 | struct bucket *b, u32 hash, |
| 161 | unsigned long *pflags) |
Thomas Gleixner | d01f9b1 | 2020-02-24 15:01:50 +0100 | [diff] [blame] | 162 | { |
| 163 | unsigned long flags; |
| 164 | |
Song Liu | 20b6cc3 | 2020-10-29 00:19:25 -0700 | [diff] [blame] | 165 | hash = hash & HASHTAB_MAP_LOCK_MASK; |
| 166 | |
| 167 | migrate_disable(); |
| 168 | if (unlikely(__this_cpu_inc_return(*(htab->map_locked[hash])) != 1)) { |
| 169 | __this_cpu_dec(*(htab->map_locked[hash])); |
| 170 | migrate_enable(); |
| 171 | return -EBUSY; |
| 172 | } |
| 173 | |
Thomas Gleixner | 7f805d1 | 2020-02-24 15:01:51 +0100 | [diff] [blame] | 174 | if (htab_use_raw_lock(htab)) |
| 175 | raw_spin_lock_irqsave(&b->raw_lock, flags); |
| 176 | else |
| 177 | spin_lock_irqsave(&b->lock, flags); |
Song Liu | 20b6cc3 | 2020-10-29 00:19:25 -0700 | [diff] [blame] | 178 | *pflags = flags; |
| 179 | |
| 180 | return 0; |
Thomas Gleixner | d01f9b1 | 2020-02-24 15:01:50 +0100 | [diff] [blame] | 181 | } |
| 182 | |
| 183 | static inline void htab_unlock_bucket(const struct bpf_htab *htab, |
Song Liu | 20b6cc3 | 2020-10-29 00:19:25 -0700 | [diff] [blame] | 184 | struct bucket *b, u32 hash, |
Thomas Gleixner | d01f9b1 | 2020-02-24 15:01:50 +0100 | [diff] [blame] | 185 | unsigned long flags) |
| 186 | { |
Song Liu | 20b6cc3 | 2020-10-29 00:19:25 -0700 | [diff] [blame] | 187 | hash = hash & HASHTAB_MAP_LOCK_MASK; |
Thomas Gleixner | 7f805d1 | 2020-02-24 15:01:51 +0100 | [diff] [blame] | 188 | if (htab_use_raw_lock(htab)) |
| 189 | raw_spin_unlock_irqrestore(&b->raw_lock, flags); |
| 190 | else |
| 191 | spin_unlock_irqrestore(&b->lock, flags); |
Song Liu | 20b6cc3 | 2020-10-29 00:19:25 -0700 | [diff] [blame] | 192 | __this_cpu_dec(*(htab->map_locked[hash])); |
| 193 | migrate_enable(); |
Thomas Gleixner | d01f9b1 | 2020-02-24 15:01:50 +0100 | [diff] [blame] | 194 | } |
| 195 | |
Martin KaFai Lau | 29ba732 | 2016-11-11 10:55:09 -0800 | [diff] [blame] | 196 | static bool htab_lru_map_delete_node(void *arg, struct bpf_lru_node *node); |
| 197 | |
| 198 | static bool htab_is_lru(const struct bpf_htab *htab) |
| 199 | { |
Martin KaFai Lau | 8f84493 | 2016-11-11 10:55:10 -0800 | [diff] [blame] | 200 | return htab->map.map_type == BPF_MAP_TYPE_LRU_HASH || |
| 201 | htab->map.map_type == BPF_MAP_TYPE_LRU_PERCPU_HASH; |
| 202 | } |
| 203 | |
| 204 | static bool htab_is_percpu(const struct bpf_htab *htab) |
| 205 | { |
| 206 | return htab->map.map_type == BPF_MAP_TYPE_PERCPU_HASH || |
| 207 | htab->map.map_type == BPF_MAP_TYPE_LRU_PERCPU_HASH; |
Martin KaFai Lau | 29ba732 | 2016-11-11 10:55:09 -0800 | [diff] [blame] | 208 | } |
| 209 | |
Alexei Starovoitov | 6c90598 | 2016-03-07 21:57:15 -0800 | [diff] [blame] | 210 | static inline void htab_elem_set_ptr(struct htab_elem *l, u32 key_size, |
| 211 | void __percpu *pptr) |
| 212 | { |
| 213 | *(void __percpu **)(l->key + key_size) = pptr; |
| 214 | } |
| 215 | |
| 216 | static inline void __percpu *htab_elem_get_ptr(struct htab_elem *l, u32 key_size) |
| 217 | { |
| 218 | return *(void __percpu **)(l->key + key_size); |
| 219 | } |
| 220 | |
Martin KaFai Lau | bcc6b1b | 2017-03-22 10:00:34 -0700 | [diff] [blame] | 221 | static void *fd_htab_map_get_ptr(const struct bpf_map *map, struct htab_elem *l) |
| 222 | { |
| 223 | return *(void **)(l->key + roundup(map->key_size, 8)); |
| 224 | } |
| 225 | |
Alexei Starovoitov | 6c90598 | 2016-03-07 21:57:15 -0800 | [diff] [blame] | 226 | static struct htab_elem *get_htab_elem(struct bpf_htab *htab, int i) |
| 227 | { |
Eric Dumazet | e1868b9e | 2020-12-07 10:28:21 -0800 | [diff] [blame] | 228 | return (struct htab_elem *) (htab->elems + i * (u64)htab->elem_size); |
Alexei Starovoitov | 6c90598 | 2016-03-07 21:57:15 -0800 | [diff] [blame] | 229 | } |
| 230 | |
| 231 | static void htab_free_elems(struct bpf_htab *htab) |
| 232 | { |
| 233 | int i; |
| 234 | |
Martin KaFai Lau | 8f84493 | 2016-11-11 10:55:10 -0800 | [diff] [blame] | 235 | if (!htab_is_percpu(htab)) |
Alexei Starovoitov | 6c90598 | 2016-03-07 21:57:15 -0800 | [diff] [blame] | 236 | goto free_elems; |
| 237 | |
| 238 | for (i = 0; i < htab->map.max_entries; i++) { |
| 239 | void __percpu *pptr; |
| 240 | |
| 241 | pptr = htab_elem_get_ptr(get_htab_elem(htab, i), |
| 242 | htab->map.key_size); |
| 243 | free_percpu(pptr); |
Eric Dumazet | 9147efc | 2017-12-12 14:22:39 -0800 | [diff] [blame] | 244 | cond_resched(); |
Alexei Starovoitov | 6c90598 | 2016-03-07 21:57:15 -0800 | [diff] [blame] | 245 | } |
| 246 | free_elems: |
Daniel Borkmann | d407bd2 | 2017-01-18 15:14:17 +0100 | [diff] [blame] | 247 | bpf_map_area_free(htab->elems); |
Alexei Starovoitov | 6c90598 | 2016-03-07 21:57:15 -0800 | [diff] [blame] | 248 | } |
| 249 | |
Yonghong Song | b9aff38 | 2020-02-19 15:47:57 -0800 | [diff] [blame] | 250 | /* The LRU list has a lock (lru_lock). Each htab bucket has a lock |
| 251 | * (bucket_lock). If both locks need to be acquired together, the lock |
| 252 | * order is always lru_lock -> bucket_lock and this only happens in |
| 253 | * bpf_lru_list.c logic. For example, certain code path of |
| 254 | * bpf_lru_pop_free(), which is called by function prealloc_lru_pop(), |
| 255 | * will acquire lru_lock first followed by acquiring bucket_lock. |
| 256 | * |
| 257 | * In hashtab.c, to avoid deadlock, lock acquisition of |
| 258 | * bucket_lock followed by lru_lock is not allowed. In such cases, |
| 259 | * bucket_lock needs to be released first before acquiring lru_lock. |
| 260 | */ |
Martin KaFai Lau | 29ba732 | 2016-11-11 10:55:09 -0800 | [diff] [blame] | 261 | static struct htab_elem *prealloc_lru_pop(struct bpf_htab *htab, void *key, |
| 262 | u32 hash) |
| 263 | { |
| 264 | struct bpf_lru_node *node = bpf_lru_pop_free(&htab->lru, hash); |
| 265 | struct htab_elem *l; |
| 266 | |
| 267 | if (node) { |
| 268 | l = container_of(node, struct htab_elem, lru_node); |
| 269 | memcpy(l->key, key, htab->map.key_size); |
| 270 | return l; |
| 271 | } |
| 272 | |
| 273 | return NULL; |
| 274 | } |
| 275 | |
| 276 | static int prealloc_init(struct bpf_htab *htab) |
Alexei Starovoitov | 6c90598 | 2016-03-07 21:57:15 -0800 | [diff] [blame] | 277 | { |
Alexei Starovoitov | 8c290e6 | 2017-03-21 19:05:04 -0700 | [diff] [blame] | 278 | u32 num_entries = htab->map.max_entries; |
Alexei Starovoitov | 6c90598 | 2016-03-07 21:57:15 -0800 | [diff] [blame] | 279 | int err = -ENOMEM, i; |
| 280 | |
Alexei Starovoitov | 8c290e6 | 2017-03-21 19:05:04 -0700 | [diff] [blame] | 281 | if (!htab_is_percpu(htab) && !htab_is_lru(htab)) |
| 282 | num_entries += num_possible_cpus(); |
| 283 | |
Eric Dumazet | e1868b9e | 2020-12-07 10:28:21 -0800 | [diff] [blame] | 284 | htab->elems = bpf_map_area_alloc((u64)htab->elem_size * num_entries, |
Martin KaFai Lau | 96eabe7 | 2017-08-18 11:28:00 -0700 | [diff] [blame] | 285 | htab->map.numa_node); |
Alexei Starovoitov | 6c90598 | 2016-03-07 21:57:15 -0800 | [diff] [blame] | 286 | if (!htab->elems) |
| 287 | return -ENOMEM; |
| 288 | |
Martin KaFai Lau | 8f84493 | 2016-11-11 10:55:10 -0800 | [diff] [blame] | 289 | if (!htab_is_percpu(htab)) |
Alexei Starovoitov | 6c90598 | 2016-03-07 21:57:15 -0800 | [diff] [blame] | 290 | goto skip_percpu_elems; |
| 291 | |
Alexei Starovoitov | 8c290e6 | 2017-03-21 19:05:04 -0700 | [diff] [blame] | 292 | for (i = 0; i < num_entries; i++) { |
Alexei Starovoitov | 6c90598 | 2016-03-07 21:57:15 -0800 | [diff] [blame] | 293 | u32 size = round_up(htab->map.value_size, 8); |
| 294 | void __percpu *pptr; |
| 295 | |
Roman Gushchin | 8814568 | 2020-12-01 13:58:38 -0800 | [diff] [blame] | 296 | pptr = bpf_map_alloc_percpu(&htab->map, size, 8, |
| 297 | GFP_USER | __GFP_NOWARN); |
Alexei Starovoitov | 6c90598 | 2016-03-07 21:57:15 -0800 | [diff] [blame] | 298 | if (!pptr) |
| 299 | goto free_elems; |
| 300 | htab_elem_set_ptr(get_htab_elem(htab, i), htab->map.key_size, |
| 301 | pptr); |
Eric Dumazet | 9147efc | 2017-12-12 14:22:39 -0800 | [diff] [blame] | 302 | cond_resched(); |
Alexei Starovoitov | 6c90598 | 2016-03-07 21:57:15 -0800 | [diff] [blame] | 303 | } |
| 304 | |
| 305 | skip_percpu_elems: |
Martin KaFai Lau | 29ba732 | 2016-11-11 10:55:09 -0800 | [diff] [blame] | 306 | if (htab_is_lru(htab)) |
| 307 | err = bpf_lru_init(&htab->lru, |
| 308 | htab->map.map_flags & BPF_F_NO_COMMON_LRU, |
| 309 | offsetof(struct htab_elem, hash) - |
| 310 | offsetof(struct htab_elem, lru_node), |
| 311 | htab_lru_map_delete_node, |
| 312 | htab); |
| 313 | else |
| 314 | err = pcpu_freelist_init(&htab->freelist); |
| 315 | |
Alexei Starovoitov | 6c90598 | 2016-03-07 21:57:15 -0800 | [diff] [blame] | 316 | if (err) |
| 317 | goto free_elems; |
| 318 | |
Martin KaFai Lau | 29ba732 | 2016-11-11 10:55:09 -0800 | [diff] [blame] | 319 | if (htab_is_lru(htab)) |
| 320 | bpf_lru_populate(&htab->lru, htab->elems, |
| 321 | offsetof(struct htab_elem, lru_node), |
Alexei Starovoitov | 8c290e6 | 2017-03-21 19:05:04 -0700 | [diff] [blame] | 322 | htab->elem_size, num_entries); |
Martin KaFai Lau | 29ba732 | 2016-11-11 10:55:09 -0800 | [diff] [blame] | 323 | else |
Alexei Starovoitov | 9f69154 | 2017-03-07 20:00:12 -0800 | [diff] [blame] | 324 | pcpu_freelist_populate(&htab->freelist, |
| 325 | htab->elems + offsetof(struct htab_elem, fnode), |
Alexei Starovoitov | 8c290e6 | 2017-03-21 19:05:04 -0700 | [diff] [blame] | 326 | htab->elem_size, num_entries); |
Martin KaFai Lau | 29ba732 | 2016-11-11 10:55:09 -0800 | [diff] [blame] | 327 | |
Alexei Starovoitov | 6c90598 | 2016-03-07 21:57:15 -0800 | [diff] [blame] | 328 | return 0; |
| 329 | |
| 330 | free_elems: |
| 331 | htab_free_elems(htab); |
| 332 | return err; |
| 333 | } |
| 334 | |
Martin KaFai Lau | 29ba732 | 2016-11-11 10:55:09 -0800 | [diff] [blame] | 335 | static void prealloc_destroy(struct bpf_htab *htab) |
| 336 | { |
| 337 | htab_free_elems(htab); |
| 338 | |
| 339 | if (htab_is_lru(htab)) |
| 340 | bpf_lru_destroy(&htab->lru); |
| 341 | else |
| 342 | pcpu_freelist_destroy(&htab->freelist); |
| 343 | } |
| 344 | |
Alexei Starovoitov | a6ed3ea | 2016-08-05 14:01:27 -0700 | [diff] [blame] | 345 | static int alloc_extra_elems(struct bpf_htab *htab) |
| 346 | { |
Alexei Starovoitov | 8c290e6 | 2017-03-21 19:05:04 -0700 | [diff] [blame] | 347 | struct htab_elem *__percpu *pptr, *l_new; |
| 348 | struct pcpu_freelist_node *l; |
Alexei Starovoitov | a6ed3ea | 2016-08-05 14:01:27 -0700 | [diff] [blame] | 349 | int cpu; |
| 350 | |
Roman Gushchin | 8814568 | 2020-12-01 13:58:38 -0800 | [diff] [blame] | 351 | pptr = bpf_map_alloc_percpu(&htab->map, sizeof(struct htab_elem *), 8, |
| 352 | GFP_USER | __GFP_NOWARN); |
Alexei Starovoitov | a6ed3ea | 2016-08-05 14:01:27 -0700 | [diff] [blame] | 353 | if (!pptr) |
| 354 | return -ENOMEM; |
| 355 | |
| 356 | for_each_possible_cpu(cpu) { |
Alexei Starovoitov | 8c290e6 | 2017-03-21 19:05:04 -0700 | [diff] [blame] | 357 | l = pcpu_freelist_pop(&htab->freelist); |
| 358 | /* pop will succeed, since prealloc_init() |
| 359 | * preallocated extra num_possible_cpus elements |
| 360 | */ |
| 361 | l_new = container_of(l, struct htab_elem, fnode); |
| 362 | *per_cpu_ptr(pptr, cpu) = l_new; |
Alexei Starovoitov | a6ed3ea | 2016-08-05 14:01:27 -0700 | [diff] [blame] | 363 | } |
| 364 | htab->extra_elems = pptr; |
| 365 | return 0; |
| 366 | } |
| 367 | |
Alexei Starovoitov | 0f8e4bd | 2014-11-13 17:36:45 -0800 | [diff] [blame] | 368 | /* Called from syscall */ |
Jakub Kicinski | 9328e0d | 2018-01-11 20:29:05 -0800 | [diff] [blame] | 369 | static int htab_map_alloc_check(union bpf_attr *attr) |
| 370 | { |
| 371 | bool percpu = (attr->map_type == BPF_MAP_TYPE_PERCPU_HASH || |
| 372 | attr->map_type == BPF_MAP_TYPE_LRU_PERCPU_HASH); |
| 373 | bool lru = (attr->map_type == BPF_MAP_TYPE_LRU_HASH || |
| 374 | attr->map_type == BPF_MAP_TYPE_LRU_PERCPU_HASH); |
| 375 | /* percpu_lru means each cpu has its own LRU list. |
| 376 | * it is different from BPF_MAP_TYPE_PERCPU_HASH where |
| 377 | * the map's value itself is percpu. percpu_lru has |
| 378 | * nothing to do with the map's value. |
| 379 | */ |
| 380 | bool percpu_lru = (attr->map_flags & BPF_F_NO_COMMON_LRU); |
| 381 | bool prealloc = !(attr->map_flags & BPF_F_NO_PREALLOC); |
Lorenz Bauer | 96b3b6c | 2018-11-16 11:41:08 +0000 | [diff] [blame] | 382 | bool zero_seed = (attr->map_flags & BPF_F_ZERO_SEED); |
Jakub Kicinski | 9328e0d | 2018-01-11 20:29:05 -0800 | [diff] [blame] | 383 | int numa_node = bpf_map_attr_numa_node(attr); |
| 384 | |
| 385 | BUILD_BUG_ON(offsetof(struct htab_elem, htab) != |
| 386 | offsetof(struct htab_elem, hash_node.pprev)); |
| 387 | BUILD_BUG_ON(offsetof(struct htab_elem, fnode.next) != |
| 388 | offsetof(struct htab_elem, hash_node.pprev)); |
| 389 | |
Alexei Starovoitov | 2c78ee8 | 2020-05-13 16:03:54 -0700 | [diff] [blame] | 390 | if (lru && !bpf_capable()) |
Jakub Kicinski | 9328e0d | 2018-01-11 20:29:05 -0800 | [diff] [blame] | 391 | /* LRU implementation is much complicated than other |
Alexei Starovoitov | 2c78ee8 | 2020-05-13 16:03:54 -0700 | [diff] [blame] | 392 | * maps. Hence, limit to CAP_BPF. |
Jakub Kicinski | 9328e0d | 2018-01-11 20:29:05 -0800 | [diff] [blame] | 393 | */ |
| 394 | return -EPERM; |
| 395 | |
Lorenz Bauer | 96b3b6c | 2018-11-16 11:41:08 +0000 | [diff] [blame] | 396 | if (zero_seed && !capable(CAP_SYS_ADMIN)) |
| 397 | /* Guard against local DoS, and discourage production use. */ |
| 398 | return -EPERM; |
| 399 | |
Daniel Borkmann | 591fe98 | 2019-04-09 23:20:05 +0200 | [diff] [blame] | 400 | if (attr->map_flags & ~HTAB_CREATE_FLAG_MASK || |
| 401 | !bpf_map_flags_access_ok(attr->map_flags)) |
Jakub Kicinski | 9328e0d | 2018-01-11 20:29:05 -0800 | [diff] [blame] | 402 | return -EINVAL; |
| 403 | |
| 404 | if (!lru && percpu_lru) |
| 405 | return -EINVAL; |
| 406 | |
| 407 | if (lru && !prealloc) |
| 408 | return -ENOTSUPP; |
| 409 | |
| 410 | if (numa_node != NUMA_NO_NODE && (percpu || percpu_lru)) |
| 411 | return -EINVAL; |
| 412 | |
| 413 | /* check sanity of attributes. |
| 414 | * value_size == 0 may be allowed in the future to use map as a set |
| 415 | */ |
| 416 | if (attr->max_entries == 0 || attr->key_size == 0 || |
| 417 | attr->value_size == 0) |
| 418 | return -EINVAL; |
| 419 | |
Florian Lehner | c6bde95 | 2020-10-29 21:14:42 +0100 | [diff] [blame] | 420 | if ((u64)attr->key_size + attr->value_size >= KMALLOC_MAX_SIZE - |
| 421 | sizeof(struct htab_elem)) |
| 422 | /* if key_size + value_size is bigger, the user space won't be |
| 423 | * able to access the elements via bpf syscall. This check |
| 424 | * also makes sure that the elem_size doesn't overflow and it's |
Jakub Kicinski | 9328e0d | 2018-01-11 20:29:05 -0800 | [diff] [blame] | 425 | * kmalloc-able later in htab_map_update_elem() |
| 426 | */ |
| 427 | return -E2BIG; |
| 428 | |
| 429 | return 0; |
| 430 | } |
| 431 | |
Alexei Starovoitov | 0f8e4bd | 2014-11-13 17:36:45 -0800 | [diff] [blame] | 432 | static struct bpf_map *htab_map_alloc(union bpf_attr *attr) |
| 433 | { |
Martin KaFai Lau | 8f84493 | 2016-11-11 10:55:10 -0800 | [diff] [blame] | 434 | bool percpu = (attr->map_type == BPF_MAP_TYPE_PERCPU_HASH || |
| 435 | attr->map_type == BPF_MAP_TYPE_LRU_PERCPU_HASH); |
| 436 | bool lru = (attr->map_type == BPF_MAP_TYPE_LRU_HASH || |
| 437 | attr->map_type == BPF_MAP_TYPE_LRU_PERCPU_HASH); |
Martin KaFai Lau | 29ba732 | 2016-11-11 10:55:09 -0800 | [diff] [blame] | 438 | /* percpu_lru means each cpu has its own LRU list. |
| 439 | * it is different from BPF_MAP_TYPE_PERCPU_HASH where |
| 440 | * the map's value itself is percpu. percpu_lru has |
| 441 | * nothing to do with the map's value. |
| 442 | */ |
| 443 | bool percpu_lru = (attr->map_flags & BPF_F_NO_COMMON_LRU); |
| 444 | bool prealloc = !(attr->map_flags & BPF_F_NO_PREALLOC); |
Alexei Starovoitov | 0f8e4bd | 2014-11-13 17:36:45 -0800 | [diff] [blame] | 445 | struct bpf_htab *htab; |
Song Liu | 20b6cc3 | 2020-10-29 00:19:25 -0700 | [diff] [blame] | 446 | int err, i; |
Alexei Starovoitov | 0f8e4bd | 2014-11-13 17:36:45 -0800 | [diff] [blame] | 447 | |
Roman Gushchin | 8814568 | 2020-12-01 13:58:38 -0800 | [diff] [blame] | 448 | htab = kzalloc(sizeof(*htab), GFP_USER | __GFP_ACCOUNT); |
Alexei Starovoitov | 0f8e4bd | 2014-11-13 17:36:45 -0800 | [diff] [blame] | 449 | if (!htab) |
| 450 | return ERR_PTR(-ENOMEM); |
| 451 | |
Eric Dumazet | 8aaeed8 | 2020-11-02 03:41:00 -0800 | [diff] [blame] | 452 | lockdep_register_key(&htab->lockdep_key); |
| 453 | |
Jakub Kicinski | bd47564 | 2018-01-11 20:29:06 -0800 | [diff] [blame] | 454 | bpf_map_init_from_attr(&htab->map, attr); |
Alexei Starovoitov | 0f8e4bd | 2014-11-13 17:36:45 -0800 | [diff] [blame] | 455 | |
Martin KaFai Lau | 29ba732 | 2016-11-11 10:55:09 -0800 | [diff] [blame] | 456 | if (percpu_lru) { |
| 457 | /* ensure each CPU's lru list has >=1 elements. |
| 458 | * since we are at it, make each lru list has the same |
| 459 | * number of elements. |
| 460 | */ |
| 461 | htab->map.max_entries = roundup(attr->max_entries, |
| 462 | num_possible_cpus()); |
| 463 | if (htab->map.max_entries < attr->max_entries) |
| 464 | htab->map.max_entries = rounddown(attr->max_entries, |
| 465 | num_possible_cpus()); |
| 466 | } |
| 467 | |
Alexei Starovoitov | 0f8e4bd | 2014-11-13 17:36:45 -0800 | [diff] [blame] | 468 | /* hash table size must be power of 2 */ |
| 469 | htab->n_buckets = roundup_pow_of_two(htab->map.max_entries); |
| 470 | |
Alexei Starovoitov | 01b3f52 | 2015-11-29 16:59:35 -0800 | [diff] [blame] | 471 | htab->elem_size = sizeof(struct htab_elem) + |
Alexei Starovoitov | 824bd0c | 2016-02-01 22:39:53 -0800 | [diff] [blame] | 472 | round_up(htab->map.key_size, 8); |
| 473 | if (percpu) |
| 474 | htab->elem_size += sizeof(void *); |
| 475 | else |
Alexei Starovoitov | 6c90598 | 2016-03-07 21:57:15 -0800 | [diff] [blame] | 476 | htab->elem_size += round_up(htab->map.value_size, 8); |
Alexei Starovoitov | 01b3f52 | 2015-11-29 16:59:35 -0800 | [diff] [blame] | 477 | |
Jakub Kicinski | daffc5a | 2018-01-11 20:29:04 -0800 | [diff] [blame] | 478 | err = -E2BIG; |
Alexei Starovoitov | daaf427 | 2014-11-18 17:32:16 -0800 | [diff] [blame] | 479 | /* prevent zero size kmalloc and check for u32 overflow */ |
| 480 | if (htab->n_buckets == 0 || |
tom.leiming@gmail.com | 688ecfe | 2015-12-29 22:40:27 +0800 | [diff] [blame] | 481 | htab->n_buckets > U32_MAX / sizeof(struct bucket)) |
Alexei Starovoitov | daaf427 | 2014-11-18 17:32:16 -0800 | [diff] [blame] | 482 | goto free_htab; |
| 483 | |
Alexei Starovoitov | 01b3f52 | 2015-11-29 16:59:35 -0800 | [diff] [blame] | 484 | err = -ENOMEM; |
Daniel Borkmann | d407bd2 | 2017-01-18 15:14:17 +0100 | [diff] [blame] | 485 | htab->buckets = bpf_map_area_alloc(htab->n_buckets * |
Martin KaFai Lau | 96eabe7 | 2017-08-18 11:28:00 -0700 | [diff] [blame] | 486 | sizeof(struct bucket), |
| 487 | htab->map.numa_node); |
Daniel Borkmann | d407bd2 | 2017-01-18 15:14:17 +0100 | [diff] [blame] | 488 | if (!htab->buckets) |
Roman Gushchin | 755e5d55 | 2020-12-01 13:58:49 -0800 | [diff] [blame] | 489 | goto free_htab; |
Alexei Starovoitov | 0f8e4bd | 2014-11-13 17:36:45 -0800 | [diff] [blame] | 490 | |
Song Liu | 20b6cc3 | 2020-10-29 00:19:25 -0700 | [diff] [blame] | 491 | for (i = 0; i < HASHTAB_MAP_LOCK_COUNT; i++) { |
Roman Gushchin | 8814568 | 2020-12-01 13:58:38 -0800 | [diff] [blame] | 492 | htab->map_locked[i] = bpf_map_alloc_percpu(&htab->map, |
| 493 | sizeof(int), |
| 494 | sizeof(int), |
| 495 | GFP_USER); |
Song Liu | 20b6cc3 | 2020-10-29 00:19:25 -0700 | [diff] [blame] | 496 | if (!htab->map_locked[i]) |
| 497 | goto free_map_locked; |
| 498 | } |
| 499 | |
Lorenz Bauer | 96b3b6c | 2018-11-16 11:41:08 +0000 | [diff] [blame] | 500 | if (htab->map.map_flags & BPF_F_ZERO_SEED) |
| 501 | htab->hashrnd = 0; |
| 502 | else |
| 503 | htab->hashrnd = get_random_int(); |
| 504 | |
Thomas Gleixner | d01f9b1 | 2020-02-24 15:01:50 +0100 | [diff] [blame] | 505 | htab_init_buckets(htab); |
Alexei Starovoitov | 0f8e4bd | 2014-11-13 17:36:45 -0800 | [diff] [blame] | 506 | |
Martin KaFai Lau | 29ba732 | 2016-11-11 10:55:09 -0800 | [diff] [blame] | 507 | if (prealloc) { |
| 508 | err = prealloc_init(htab); |
Alexei Starovoitov | a6ed3ea | 2016-08-05 14:01:27 -0700 | [diff] [blame] | 509 | if (err) |
Song Liu | 20b6cc3 | 2020-10-29 00:19:25 -0700 | [diff] [blame] | 510 | goto free_map_locked; |
Alexei Starovoitov | 8c290e6 | 2017-03-21 19:05:04 -0700 | [diff] [blame] | 511 | |
| 512 | if (!percpu && !lru) { |
| 513 | /* lru itself can remove the least used element, so |
| 514 | * there is no need for an extra elem during map_update. |
| 515 | */ |
| 516 | err = alloc_extra_elems(htab); |
| 517 | if (err) |
| 518 | goto free_prealloc; |
| 519 | } |
Alexei Starovoitov | a6ed3ea | 2016-08-05 14:01:27 -0700 | [diff] [blame] | 520 | } |
| 521 | |
Alexei Starovoitov | 0f8e4bd | 2014-11-13 17:36:45 -0800 | [diff] [blame] | 522 | return &htab->map; |
| 523 | |
Alexei Starovoitov | 8c290e6 | 2017-03-21 19:05:04 -0700 | [diff] [blame] | 524 | free_prealloc: |
| 525 | prealloc_destroy(htab); |
Song Liu | 20b6cc3 | 2020-10-29 00:19:25 -0700 | [diff] [blame] | 526 | free_map_locked: |
| 527 | for (i = 0; i < HASHTAB_MAP_LOCK_COUNT; i++) |
| 528 | free_percpu(htab->map_locked[i]); |
Daniel Borkmann | d407bd2 | 2017-01-18 15:14:17 +0100 | [diff] [blame] | 529 | bpf_map_area_free(htab->buckets); |
Alexei Starovoitov | 0f8e4bd | 2014-11-13 17:36:45 -0800 | [diff] [blame] | 530 | free_htab: |
Eric Dumazet | 8aaeed8 | 2020-11-02 03:41:00 -0800 | [diff] [blame] | 531 | lockdep_unregister_key(&htab->lockdep_key); |
Alexei Starovoitov | 0f8e4bd | 2014-11-13 17:36:45 -0800 | [diff] [blame] | 532 | kfree(htab); |
| 533 | return ERR_PTR(err); |
| 534 | } |
| 535 | |
Daniel Borkmann | c020347 | 2018-08-22 23:49:37 +0200 | [diff] [blame] | 536 | static inline u32 htab_map_hash(const void *key, u32 key_len, u32 hashrnd) |
Alexei Starovoitov | 0f8e4bd | 2014-11-13 17:36:45 -0800 | [diff] [blame] | 537 | { |
Daniel Borkmann | c020347 | 2018-08-22 23:49:37 +0200 | [diff] [blame] | 538 | return jhash(key, key_len, hashrnd); |
Alexei Starovoitov | 0f8e4bd | 2014-11-13 17:36:45 -0800 | [diff] [blame] | 539 | } |
| 540 | |
tom.leiming@gmail.com | 688ecfe | 2015-12-29 22:40:27 +0800 | [diff] [blame] | 541 | static inline struct bucket *__select_bucket(struct bpf_htab *htab, u32 hash) |
Alexei Starovoitov | 0f8e4bd | 2014-11-13 17:36:45 -0800 | [diff] [blame] | 542 | { |
| 543 | return &htab->buckets[hash & (htab->n_buckets - 1)]; |
| 544 | } |
| 545 | |
Alexei Starovoitov | 4fe8435 | 2017-03-07 20:00:13 -0800 | [diff] [blame] | 546 | static inline struct hlist_nulls_head *select_bucket(struct bpf_htab *htab, u32 hash) |
tom.leiming@gmail.com | 688ecfe | 2015-12-29 22:40:27 +0800 | [diff] [blame] | 547 | { |
| 548 | return &__select_bucket(htab, hash)->head; |
| 549 | } |
| 550 | |
Alexei Starovoitov | 4fe8435 | 2017-03-07 20:00:13 -0800 | [diff] [blame] | 551 | /* this lookup function can only be called with bucket lock taken */ |
| 552 | static struct htab_elem *lookup_elem_raw(struct hlist_nulls_head *head, u32 hash, |
Alexei Starovoitov | 0f8e4bd | 2014-11-13 17:36:45 -0800 | [diff] [blame] | 553 | void *key, u32 key_size) |
| 554 | { |
Alexei Starovoitov | 4fe8435 | 2017-03-07 20:00:13 -0800 | [diff] [blame] | 555 | struct hlist_nulls_node *n; |
Alexei Starovoitov | 0f8e4bd | 2014-11-13 17:36:45 -0800 | [diff] [blame] | 556 | struct htab_elem *l; |
| 557 | |
Alexei Starovoitov | 4fe8435 | 2017-03-07 20:00:13 -0800 | [diff] [blame] | 558 | hlist_nulls_for_each_entry_rcu(l, n, head, hash_node) |
Alexei Starovoitov | 0f8e4bd | 2014-11-13 17:36:45 -0800 | [diff] [blame] | 559 | if (l->hash == hash && !memcmp(&l->key, key, key_size)) |
| 560 | return l; |
| 561 | |
| 562 | return NULL; |
| 563 | } |
| 564 | |
Alexei Starovoitov | 4fe8435 | 2017-03-07 20:00:13 -0800 | [diff] [blame] | 565 | /* can be called without bucket lock. it will repeat the loop in |
| 566 | * the unlikely event when elements moved from one bucket into another |
| 567 | * while link list is being walked |
| 568 | */ |
| 569 | static struct htab_elem *lookup_nulls_elem_raw(struct hlist_nulls_head *head, |
| 570 | u32 hash, void *key, |
| 571 | u32 key_size, u32 n_buckets) |
| 572 | { |
| 573 | struct hlist_nulls_node *n; |
| 574 | struct htab_elem *l; |
| 575 | |
| 576 | again: |
| 577 | hlist_nulls_for_each_entry_rcu(l, n, head, hash_node) |
| 578 | if (l->hash == hash && !memcmp(&l->key, key, key_size)) |
| 579 | return l; |
| 580 | |
| 581 | if (unlikely(get_nulls_value(n) != (hash & (n_buckets - 1)))) |
| 582 | goto again; |
| 583 | |
| 584 | return NULL; |
| 585 | } |
| 586 | |
Alexei Starovoitov | 9015d2f | 2017-03-15 18:26:43 -0700 | [diff] [blame] | 587 | /* Called from syscall or from eBPF program directly, so |
| 588 | * arguments have to match bpf_map_lookup_elem() exactly. |
| 589 | * The return value is adjusted by BPF instructions |
| 590 | * in htab_map_gen_lookup(). |
| 591 | */ |
Alexei Starovoitov | 824bd0c | 2016-02-01 22:39:53 -0800 | [diff] [blame] | 592 | static void *__htab_map_lookup_elem(struct bpf_map *map, void *key) |
Alexei Starovoitov | 0f8e4bd | 2014-11-13 17:36:45 -0800 | [diff] [blame] | 593 | { |
| 594 | struct bpf_htab *htab = container_of(map, struct bpf_htab, map); |
Alexei Starovoitov | 4fe8435 | 2017-03-07 20:00:13 -0800 | [diff] [blame] | 595 | struct hlist_nulls_head *head; |
Alexei Starovoitov | 0f8e4bd | 2014-11-13 17:36:45 -0800 | [diff] [blame] | 596 | struct htab_elem *l; |
| 597 | u32 hash, key_size; |
| 598 | |
Alexei Starovoitov | 1e6c62a | 2020-08-27 15:01:11 -0700 | [diff] [blame] | 599 | WARN_ON_ONCE(!rcu_read_lock_held() && !rcu_read_lock_trace_held()); |
Alexei Starovoitov | 0f8e4bd | 2014-11-13 17:36:45 -0800 | [diff] [blame] | 600 | |
| 601 | key_size = map->key_size; |
| 602 | |
Daniel Borkmann | c020347 | 2018-08-22 23:49:37 +0200 | [diff] [blame] | 603 | hash = htab_map_hash(key, key_size, htab->hashrnd); |
Alexei Starovoitov | 0f8e4bd | 2014-11-13 17:36:45 -0800 | [diff] [blame] | 604 | |
| 605 | head = select_bucket(htab, hash); |
| 606 | |
Alexei Starovoitov | 4fe8435 | 2017-03-07 20:00:13 -0800 | [diff] [blame] | 607 | l = lookup_nulls_elem_raw(head, hash, key, key_size, htab->n_buckets); |
Alexei Starovoitov | 0f8e4bd | 2014-11-13 17:36:45 -0800 | [diff] [blame] | 608 | |
Alexei Starovoitov | 824bd0c | 2016-02-01 22:39:53 -0800 | [diff] [blame] | 609 | return l; |
| 610 | } |
| 611 | |
| 612 | static void *htab_map_lookup_elem(struct bpf_map *map, void *key) |
| 613 | { |
| 614 | struct htab_elem *l = __htab_map_lookup_elem(map, key); |
| 615 | |
Alexei Starovoitov | 0f8e4bd | 2014-11-13 17:36:45 -0800 | [diff] [blame] | 616 | if (l) |
| 617 | return l->key + round_up(map->key_size, 8); |
| 618 | |
| 619 | return NULL; |
| 620 | } |
| 621 | |
Alexei Starovoitov | 9015d2f | 2017-03-15 18:26:43 -0700 | [diff] [blame] | 622 | /* inline bpf_map_lookup_elem() call. |
| 623 | * Instead of: |
| 624 | * bpf_prog |
| 625 | * bpf_map_lookup_elem |
| 626 | * map->ops->map_lookup_elem |
| 627 | * htab_map_lookup_elem |
| 628 | * __htab_map_lookup_elem |
| 629 | * do: |
| 630 | * bpf_prog |
| 631 | * __htab_map_lookup_elem |
| 632 | */ |
Daniel Borkmann | 4a8f87e | 2020-10-11 01:40:03 +0200 | [diff] [blame] | 633 | static int htab_map_gen_lookup(struct bpf_map *map, struct bpf_insn *insn_buf) |
Alexei Starovoitov | 9015d2f | 2017-03-15 18:26:43 -0700 | [diff] [blame] | 634 | { |
| 635 | struct bpf_insn *insn = insn_buf; |
| 636 | const int ret = BPF_REG_0; |
| 637 | |
Daniel Borkmann | 09772d9 | 2018-06-02 23:06:35 +0200 | [diff] [blame] | 638 | BUILD_BUG_ON(!__same_type(&__htab_map_lookup_elem, |
| 639 | (void *(*)(struct bpf_map *map, void *key))NULL)); |
| 640 | *insn++ = BPF_EMIT_CALL(BPF_CAST_CALL(__htab_map_lookup_elem)); |
Alexei Starovoitov | 9015d2f | 2017-03-15 18:26:43 -0700 | [diff] [blame] | 641 | *insn++ = BPF_JMP_IMM(BPF_JEQ, ret, 0, 1); |
| 642 | *insn++ = BPF_ALU64_IMM(BPF_ADD, ret, |
| 643 | offsetof(struct htab_elem, key) + |
| 644 | round_up(map->key_size, 8)); |
| 645 | return insn - insn_buf; |
| 646 | } |
| 647 | |
Daniel Borkmann | 50b045a | 2019-05-14 01:18:56 +0200 | [diff] [blame] | 648 | static __always_inline void *__htab_lru_map_lookup_elem(struct bpf_map *map, |
| 649 | void *key, const bool mark) |
Martin KaFai Lau | 29ba732 | 2016-11-11 10:55:09 -0800 | [diff] [blame] | 650 | { |
| 651 | struct htab_elem *l = __htab_map_lookup_elem(map, key); |
| 652 | |
| 653 | if (l) { |
Daniel Borkmann | 50b045a | 2019-05-14 01:18:56 +0200 | [diff] [blame] | 654 | if (mark) |
| 655 | bpf_lru_node_set_ref(&l->lru_node); |
Martin KaFai Lau | 29ba732 | 2016-11-11 10:55:09 -0800 | [diff] [blame] | 656 | return l->key + round_up(map->key_size, 8); |
| 657 | } |
| 658 | |
| 659 | return NULL; |
| 660 | } |
| 661 | |
Daniel Borkmann | 50b045a | 2019-05-14 01:18:56 +0200 | [diff] [blame] | 662 | static void *htab_lru_map_lookup_elem(struct bpf_map *map, void *key) |
| 663 | { |
| 664 | return __htab_lru_map_lookup_elem(map, key, true); |
| 665 | } |
| 666 | |
| 667 | static void *htab_lru_map_lookup_elem_sys(struct bpf_map *map, void *key) |
| 668 | { |
| 669 | return __htab_lru_map_lookup_elem(map, key, false); |
| 670 | } |
| 671 | |
Daniel Borkmann | 4a8f87e | 2020-10-11 01:40:03 +0200 | [diff] [blame] | 672 | static int htab_lru_map_gen_lookup(struct bpf_map *map, |
Martin KaFai Lau | cc55542 | 2017-08-31 23:27:12 -0700 | [diff] [blame] | 673 | struct bpf_insn *insn_buf) |
| 674 | { |
| 675 | struct bpf_insn *insn = insn_buf; |
| 676 | const int ret = BPF_REG_0; |
Martin KaFai Lau | bb9b9f8 | 2017-08-31 23:27:13 -0700 | [diff] [blame] | 677 | const int ref_reg = BPF_REG_1; |
Martin KaFai Lau | cc55542 | 2017-08-31 23:27:12 -0700 | [diff] [blame] | 678 | |
Daniel Borkmann | 09772d9 | 2018-06-02 23:06:35 +0200 | [diff] [blame] | 679 | BUILD_BUG_ON(!__same_type(&__htab_map_lookup_elem, |
| 680 | (void *(*)(struct bpf_map *map, void *key))NULL)); |
| 681 | *insn++ = BPF_EMIT_CALL(BPF_CAST_CALL(__htab_map_lookup_elem)); |
Martin KaFai Lau | bb9b9f8 | 2017-08-31 23:27:13 -0700 | [diff] [blame] | 682 | *insn++ = BPF_JMP_IMM(BPF_JEQ, ret, 0, 4); |
| 683 | *insn++ = BPF_LDX_MEM(BPF_B, ref_reg, ret, |
| 684 | offsetof(struct htab_elem, lru_node) + |
| 685 | offsetof(struct bpf_lru_node, ref)); |
| 686 | *insn++ = BPF_JMP_IMM(BPF_JNE, ref_reg, 0, 1); |
Martin KaFai Lau | cc55542 | 2017-08-31 23:27:12 -0700 | [diff] [blame] | 687 | *insn++ = BPF_ST_MEM(BPF_B, ret, |
| 688 | offsetof(struct htab_elem, lru_node) + |
| 689 | offsetof(struct bpf_lru_node, ref), |
| 690 | 1); |
| 691 | *insn++ = BPF_ALU64_IMM(BPF_ADD, ret, |
| 692 | offsetof(struct htab_elem, key) + |
| 693 | round_up(map->key_size, 8)); |
| 694 | return insn - insn_buf; |
| 695 | } |
| 696 | |
Martin KaFai Lau | 29ba732 | 2016-11-11 10:55:09 -0800 | [diff] [blame] | 697 | /* It is called from the bpf_lru_list when the LRU needs to delete |
| 698 | * older elements from the htab. |
| 699 | */ |
| 700 | static bool htab_lru_map_delete_node(void *arg, struct bpf_lru_node *node) |
| 701 | { |
| 702 | struct bpf_htab *htab = (struct bpf_htab *)arg; |
Alexei Starovoitov | 4fe8435 | 2017-03-07 20:00:13 -0800 | [diff] [blame] | 703 | struct htab_elem *l = NULL, *tgt_l; |
| 704 | struct hlist_nulls_head *head; |
| 705 | struct hlist_nulls_node *n; |
Martin KaFai Lau | 29ba732 | 2016-11-11 10:55:09 -0800 | [diff] [blame] | 706 | unsigned long flags; |
| 707 | struct bucket *b; |
Song Liu | 20b6cc3 | 2020-10-29 00:19:25 -0700 | [diff] [blame] | 708 | int ret; |
Martin KaFai Lau | 29ba732 | 2016-11-11 10:55:09 -0800 | [diff] [blame] | 709 | |
| 710 | tgt_l = container_of(node, struct htab_elem, lru_node); |
| 711 | b = __select_bucket(htab, tgt_l->hash); |
| 712 | head = &b->head; |
| 713 | |
Song Liu | 20b6cc3 | 2020-10-29 00:19:25 -0700 | [diff] [blame] | 714 | ret = htab_lock_bucket(htab, b, tgt_l->hash, &flags); |
| 715 | if (ret) |
| 716 | return false; |
Martin KaFai Lau | 29ba732 | 2016-11-11 10:55:09 -0800 | [diff] [blame] | 717 | |
Alexei Starovoitov | 4fe8435 | 2017-03-07 20:00:13 -0800 | [diff] [blame] | 718 | hlist_nulls_for_each_entry_rcu(l, n, head, hash_node) |
Martin KaFai Lau | 29ba732 | 2016-11-11 10:55:09 -0800 | [diff] [blame] | 719 | if (l == tgt_l) { |
Alexei Starovoitov | 4fe8435 | 2017-03-07 20:00:13 -0800 | [diff] [blame] | 720 | hlist_nulls_del_rcu(&l->hash_node); |
Martin KaFai Lau | 29ba732 | 2016-11-11 10:55:09 -0800 | [diff] [blame] | 721 | break; |
| 722 | } |
| 723 | |
Song Liu | 20b6cc3 | 2020-10-29 00:19:25 -0700 | [diff] [blame] | 724 | htab_unlock_bucket(htab, b, tgt_l->hash, flags); |
Martin KaFai Lau | 29ba732 | 2016-11-11 10:55:09 -0800 | [diff] [blame] | 725 | |
| 726 | return l == tgt_l; |
| 727 | } |
| 728 | |
Alexei Starovoitov | 0f8e4bd | 2014-11-13 17:36:45 -0800 | [diff] [blame] | 729 | /* Called from syscall */ |
| 730 | static int htab_map_get_next_key(struct bpf_map *map, void *key, void *next_key) |
| 731 | { |
| 732 | struct bpf_htab *htab = container_of(map, struct bpf_htab, map); |
Alexei Starovoitov | 4fe8435 | 2017-03-07 20:00:13 -0800 | [diff] [blame] | 733 | struct hlist_nulls_head *head; |
Alexei Starovoitov | 0f8e4bd | 2014-11-13 17:36:45 -0800 | [diff] [blame] | 734 | struct htab_elem *l, *next_l; |
| 735 | u32 hash, key_size; |
Teng Qin | 8fe4592 | 2017-04-24 19:00:37 -0700 | [diff] [blame] | 736 | int i = 0; |
Alexei Starovoitov | 0f8e4bd | 2014-11-13 17:36:45 -0800 | [diff] [blame] | 737 | |
| 738 | WARN_ON_ONCE(!rcu_read_lock_held()); |
| 739 | |
| 740 | key_size = map->key_size; |
| 741 | |
Teng Qin | 8fe4592 | 2017-04-24 19:00:37 -0700 | [diff] [blame] | 742 | if (!key) |
| 743 | goto find_first_elem; |
| 744 | |
Daniel Borkmann | c020347 | 2018-08-22 23:49:37 +0200 | [diff] [blame] | 745 | hash = htab_map_hash(key, key_size, htab->hashrnd); |
Alexei Starovoitov | 0f8e4bd | 2014-11-13 17:36:45 -0800 | [diff] [blame] | 746 | |
| 747 | head = select_bucket(htab, hash); |
| 748 | |
| 749 | /* lookup the key */ |
Alexei Starovoitov | 4fe8435 | 2017-03-07 20:00:13 -0800 | [diff] [blame] | 750 | l = lookup_nulls_elem_raw(head, hash, key, key_size, htab->n_buckets); |
Alexei Starovoitov | 0f8e4bd | 2014-11-13 17:36:45 -0800 | [diff] [blame] | 751 | |
Teng Qin | 8fe4592 | 2017-04-24 19:00:37 -0700 | [diff] [blame] | 752 | if (!l) |
Alexei Starovoitov | 0f8e4bd | 2014-11-13 17:36:45 -0800 | [diff] [blame] | 753 | goto find_first_elem; |
Alexei Starovoitov | 0f8e4bd | 2014-11-13 17:36:45 -0800 | [diff] [blame] | 754 | |
| 755 | /* key was found, get next key in the same bucket */ |
Alexei Starovoitov | 4fe8435 | 2017-03-07 20:00:13 -0800 | [diff] [blame] | 756 | next_l = hlist_nulls_entry_safe(rcu_dereference_raw(hlist_nulls_next_rcu(&l->hash_node)), |
Alexei Starovoitov | 0f8e4bd | 2014-11-13 17:36:45 -0800 | [diff] [blame] | 757 | struct htab_elem, hash_node); |
| 758 | |
| 759 | if (next_l) { |
| 760 | /* if next elem in this hash list is non-zero, just return it */ |
| 761 | memcpy(next_key, next_l->key, key_size); |
| 762 | return 0; |
| 763 | } |
| 764 | |
| 765 | /* no more elements in this hash list, go to the next bucket */ |
| 766 | i = hash & (htab->n_buckets - 1); |
| 767 | i++; |
| 768 | |
| 769 | find_first_elem: |
| 770 | /* iterate over buckets */ |
| 771 | for (; i < htab->n_buckets; i++) { |
| 772 | head = select_bucket(htab, i); |
| 773 | |
| 774 | /* pick first element in the bucket */ |
Alexei Starovoitov | 4fe8435 | 2017-03-07 20:00:13 -0800 | [diff] [blame] | 775 | next_l = hlist_nulls_entry_safe(rcu_dereference_raw(hlist_nulls_first_rcu(head)), |
Alexei Starovoitov | 0f8e4bd | 2014-11-13 17:36:45 -0800 | [diff] [blame] | 776 | struct htab_elem, hash_node); |
| 777 | if (next_l) { |
| 778 | /* if it's not empty, just return it */ |
| 779 | memcpy(next_key, next_l->key, key_size); |
| 780 | return 0; |
| 781 | } |
| 782 | } |
| 783 | |
Alexei Starovoitov | 6c90598 | 2016-03-07 21:57:15 -0800 | [diff] [blame] | 784 | /* iterated over all buckets and all elements */ |
Alexei Starovoitov | 0f8e4bd | 2014-11-13 17:36:45 -0800 | [diff] [blame] | 785 | return -ENOENT; |
| 786 | } |
| 787 | |
Alexei Starovoitov | 6c90598 | 2016-03-07 21:57:15 -0800 | [diff] [blame] | 788 | static void htab_elem_free(struct bpf_htab *htab, struct htab_elem *l) |
Alexei Starovoitov | 824bd0c | 2016-02-01 22:39:53 -0800 | [diff] [blame] | 789 | { |
Alexei Starovoitov | 6c90598 | 2016-03-07 21:57:15 -0800 | [diff] [blame] | 790 | if (htab->map.map_type == BPF_MAP_TYPE_PERCPU_HASH) |
| 791 | free_percpu(htab_elem_get_ptr(l, htab->map.key_size)); |
Alexei Starovoitov | 824bd0c | 2016-02-01 22:39:53 -0800 | [diff] [blame] | 792 | kfree(l); |
| 793 | } |
| 794 | |
Alexei Starovoitov | 6c90598 | 2016-03-07 21:57:15 -0800 | [diff] [blame] | 795 | static void htab_elem_free_rcu(struct rcu_head *head) |
Alexei Starovoitov | 824bd0c | 2016-02-01 22:39:53 -0800 | [diff] [blame] | 796 | { |
| 797 | struct htab_elem *l = container_of(head, struct htab_elem, rcu); |
Alexei Starovoitov | 6c90598 | 2016-03-07 21:57:15 -0800 | [diff] [blame] | 798 | struct bpf_htab *htab = l->htab; |
Alexei Starovoitov | 824bd0c | 2016-02-01 22:39:53 -0800 | [diff] [blame] | 799 | |
Alexei Starovoitov | 6c90598 | 2016-03-07 21:57:15 -0800 | [diff] [blame] | 800 | htab_elem_free(htab, l); |
Alexei Starovoitov | 824bd0c | 2016-02-01 22:39:53 -0800 | [diff] [blame] | 801 | } |
| 802 | |
Andrii Nakryiko | 1d4e1eab | 2020-07-28 21:09:12 -0700 | [diff] [blame] | 803 | static void htab_put_fd_value(struct bpf_htab *htab, struct htab_elem *l) |
Alexei Starovoitov | 824bd0c | 2016-02-01 22:39:53 -0800 | [diff] [blame] | 804 | { |
Martin KaFai Lau | bcc6b1b | 2017-03-22 10:00:34 -0700 | [diff] [blame] | 805 | struct bpf_map *map = &htab->map; |
Andrii Nakryiko | 1d4e1eab | 2020-07-28 21:09:12 -0700 | [diff] [blame] | 806 | void *ptr; |
Martin KaFai Lau | bcc6b1b | 2017-03-22 10:00:34 -0700 | [diff] [blame] | 807 | |
| 808 | if (map->ops->map_fd_put_ptr) { |
Andrii Nakryiko | 1d4e1eab | 2020-07-28 21:09:12 -0700 | [diff] [blame] | 809 | ptr = fd_htab_map_get_ptr(map, l); |
Martin KaFai Lau | bcc6b1b | 2017-03-22 10:00:34 -0700 | [diff] [blame] | 810 | map->ops->map_fd_put_ptr(ptr); |
| 811 | } |
Andrii Nakryiko | 1d4e1eab | 2020-07-28 21:09:12 -0700 | [diff] [blame] | 812 | } |
| 813 | |
| 814 | static void free_htab_elem(struct bpf_htab *htab, struct htab_elem *l) |
| 815 | { |
| 816 | htab_put_fd_value(htab, l); |
Martin KaFai Lau | bcc6b1b | 2017-03-22 10:00:34 -0700 | [diff] [blame] | 817 | |
Alexei Starovoitov | 8c290e6 | 2017-03-21 19:05:04 -0700 | [diff] [blame] | 818 | if (htab_is_prealloc(htab)) { |
Alexei Starovoitov | a89fac5 | 2019-01-30 18:12:43 -0800 | [diff] [blame] | 819 | __pcpu_freelist_push(&htab->freelist, &l->fnode); |
Alexei Starovoitov | 824bd0c | 2016-02-01 22:39:53 -0800 | [diff] [blame] | 820 | } else { |
Alexei Starovoitov | 6c90598 | 2016-03-07 21:57:15 -0800 | [diff] [blame] | 821 | atomic_dec(&htab->count); |
| 822 | l->htab = htab; |
| 823 | call_rcu(&l->rcu, htab_elem_free_rcu); |
Alexei Starovoitov | 824bd0c | 2016-02-01 22:39:53 -0800 | [diff] [blame] | 824 | } |
| 825 | } |
| 826 | |
Martin KaFai Lau | fd91de7 | 2016-11-11 10:55:08 -0800 | [diff] [blame] | 827 | static void pcpu_copy_value(struct bpf_htab *htab, void __percpu *pptr, |
| 828 | void *value, bool onallcpus) |
| 829 | { |
| 830 | if (!onallcpus) { |
| 831 | /* copy true value_size bytes */ |
| 832 | memcpy(this_cpu_ptr(pptr), value, htab->map.value_size); |
| 833 | } else { |
| 834 | u32 size = round_up(htab->map.value_size, 8); |
| 835 | int off = 0, cpu; |
| 836 | |
| 837 | for_each_possible_cpu(cpu) { |
| 838 | bpf_long_memcpy(per_cpu_ptr(pptr, cpu), |
| 839 | value + off, size); |
| 840 | off += size; |
| 841 | } |
| 842 | } |
| 843 | } |
| 844 | |
David Verbeiren | d3bec01 | 2020-11-04 12:23:32 +0100 | [diff] [blame] | 845 | static void pcpu_init_value(struct bpf_htab *htab, void __percpu *pptr, |
| 846 | void *value, bool onallcpus) |
| 847 | { |
| 848 | /* When using prealloc and not setting the initial value on all cpus, |
| 849 | * zero-fill element values for other cpus (just as what happens when |
| 850 | * not using prealloc). Otherwise, bpf program has no way to ensure |
| 851 | * known initial values for cpus other than current one |
| 852 | * (onallcpus=false always when coming from bpf prog). |
| 853 | */ |
| 854 | if (htab_is_prealloc(htab) && !onallcpus) { |
| 855 | u32 size = round_up(htab->map.value_size, 8); |
| 856 | int current_cpu = raw_smp_processor_id(); |
| 857 | int cpu; |
| 858 | |
| 859 | for_each_possible_cpu(cpu) { |
| 860 | if (cpu == current_cpu) |
| 861 | bpf_long_memcpy(per_cpu_ptr(pptr, cpu), value, |
| 862 | size); |
| 863 | else |
| 864 | memset(per_cpu_ptr(pptr, cpu), 0, size); |
| 865 | } |
| 866 | } else { |
| 867 | pcpu_copy_value(htab, pptr, value, onallcpus); |
| 868 | } |
| 869 | } |
| 870 | |
Daniel Borkmann | cd36c3a | 2017-08-23 00:06:09 +0200 | [diff] [blame] | 871 | static bool fd_htab_map_needs_adjust(const struct bpf_htab *htab) |
| 872 | { |
| 873 | return htab->map.map_type == BPF_MAP_TYPE_HASH_OF_MAPS && |
| 874 | BITS_PER_LONG == 64; |
| 875 | } |
| 876 | |
Alexei Starovoitov | 824bd0c | 2016-02-01 22:39:53 -0800 | [diff] [blame] | 877 | static struct htab_elem *alloc_htab_elem(struct bpf_htab *htab, void *key, |
| 878 | void *value, u32 key_size, u32 hash, |
Alexei Starovoitov | a6ed3ea | 2016-08-05 14:01:27 -0700 | [diff] [blame] | 879 | bool percpu, bool onallcpus, |
Alexei Starovoitov | 8c290e6 | 2017-03-21 19:05:04 -0700 | [diff] [blame] | 880 | struct htab_elem *old_elem) |
Alexei Starovoitov | 824bd0c | 2016-02-01 22:39:53 -0800 | [diff] [blame] | 881 | { |
Alexei Starovoitov | d83525c | 2019-01-31 15:40:04 -0800 | [diff] [blame] | 882 | u32 size = htab->map.value_size; |
Alexei Starovoitov | 8c290e6 | 2017-03-21 19:05:04 -0700 | [diff] [blame] | 883 | bool prealloc = htab_is_prealloc(htab); |
| 884 | struct htab_elem *l_new, **pl_new; |
Alexei Starovoitov | 824bd0c | 2016-02-01 22:39:53 -0800 | [diff] [blame] | 885 | void __percpu *pptr; |
| 886 | |
Alexei Starovoitov | 6c90598 | 2016-03-07 21:57:15 -0800 | [diff] [blame] | 887 | if (prealloc) { |
Alexei Starovoitov | 8c290e6 | 2017-03-21 19:05:04 -0700 | [diff] [blame] | 888 | if (old_elem) { |
| 889 | /* if we're updating the existing element, |
| 890 | * use per-cpu extra elems to avoid freelist_pop/push |
| 891 | */ |
| 892 | pl_new = this_cpu_ptr(htab->extra_elems); |
| 893 | l_new = *pl_new; |
Andrii Nakryiko | 1d4e1eab | 2020-07-28 21:09:12 -0700 | [diff] [blame] | 894 | htab_put_fd_value(htab, old_elem); |
Alexei Starovoitov | 8c290e6 | 2017-03-21 19:05:04 -0700 | [diff] [blame] | 895 | *pl_new = old_elem; |
Alexei Starovoitov | a6ed3ea | 2016-08-05 14:01:27 -0700 | [diff] [blame] | 896 | } else { |
Alexei Starovoitov | 8c290e6 | 2017-03-21 19:05:04 -0700 | [diff] [blame] | 897 | struct pcpu_freelist_node *l; |
| 898 | |
Alexei Starovoitov | a89fac5 | 2019-01-30 18:12:43 -0800 | [diff] [blame] | 899 | l = __pcpu_freelist_pop(&htab->freelist); |
Alexei Starovoitov | 8c290e6 | 2017-03-21 19:05:04 -0700 | [diff] [blame] | 900 | if (!l) |
| 901 | return ERR_PTR(-E2BIG); |
| 902 | l_new = container_of(l, struct htab_elem, fnode); |
Alexei Starovoitov | 6c90598 | 2016-03-07 21:57:15 -0800 | [diff] [blame] | 903 | } |
Alexei Starovoitov | a6ed3ea | 2016-08-05 14:01:27 -0700 | [diff] [blame] | 904 | } else { |
Alexei Starovoitov | 8c290e6 | 2017-03-21 19:05:04 -0700 | [diff] [blame] | 905 | if (atomic_inc_return(&htab->count) > htab->map.max_entries) |
| 906 | if (!old_elem) { |
| 907 | /* when map is full and update() is replacing |
| 908 | * old element, it's ok to allocate, since |
| 909 | * old element will be freed immediately. |
| 910 | * Otherwise return an error |
| 911 | */ |
Mauricio Vasquez B | ed2b82c | 2018-06-29 14:48:20 +0200 | [diff] [blame] | 912 | l_new = ERR_PTR(-E2BIG); |
| 913 | goto dec_count; |
Alexei Starovoitov | 8c290e6 | 2017-03-21 19:05:04 -0700 | [diff] [blame] | 914 | } |
Roman Gushchin | 8814568 | 2020-12-01 13:58:38 -0800 | [diff] [blame] | 915 | l_new = bpf_map_kmalloc_node(&htab->map, htab->elem_size, |
| 916 | GFP_ATOMIC | __GFP_NOWARN, |
| 917 | htab->map.numa_node); |
Mauricio Vasquez B | ed2b82c | 2018-06-29 14:48:20 +0200 | [diff] [blame] | 918 | if (!l_new) { |
| 919 | l_new = ERR_PTR(-ENOMEM); |
| 920 | goto dec_count; |
| 921 | } |
Alexei Starovoitov | d83525c | 2019-01-31 15:40:04 -0800 | [diff] [blame] | 922 | check_and_init_map_lock(&htab->map, |
| 923 | l_new->key + round_up(key_size, 8)); |
Alexei Starovoitov | 6c90598 | 2016-03-07 21:57:15 -0800 | [diff] [blame] | 924 | } |
Alexei Starovoitov | 824bd0c | 2016-02-01 22:39:53 -0800 | [diff] [blame] | 925 | |
| 926 | memcpy(l_new->key, key, key_size); |
| 927 | if (percpu) { |
Alexei Starovoitov | d83525c | 2019-01-31 15:40:04 -0800 | [diff] [blame] | 928 | size = round_up(size, 8); |
Alexei Starovoitov | 6c90598 | 2016-03-07 21:57:15 -0800 | [diff] [blame] | 929 | if (prealloc) { |
| 930 | pptr = htab_elem_get_ptr(l_new, key_size); |
| 931 | } else { |
| 932 | /* alloc_percpu zero-fills */ |
Roman Gushchin | 8814568 | 2020-12-01 13:58:38 -0800 | [diff] [blame] | 933 | pptr = bpf_map_alloc_percpu(&htab->map, size, 8, |
| 934 | GFP_ATOMIC | __GFP_NOWARN); |
Alexei Starovoitov | 6c90598 | 2016-03-07 21:57:15 -0800 | [diff] [blame] | 935 | if (!pptr) { |
| 936 | kfree(l_new); |
Mauricio Vasquez B | ed2b82c | 2018-06-29 14:48:20 +0200 | [diff] [blame] | 937 | l_new = ERR_PTR(-ENOMEM); |
| 938 | goto dec_count; |
Alexei Starovoitov | 6c90598 | 2016-03-07 21:57:15 -0800 | [diff] [blame] | 939 | } |
Alexei Starovoitov | 824bd0c | 2016-02-01 22:39:53 -0800 | [diff] [blame] | 940 | } |
| 941 | |
David Verbeiren | d3bec01 | 2020-11-04 12:23:32 +0100 | [diff] [blame] | 942 | pcpu_init_value(htab, pptr, value, onallcpus); |
Alexei Starovoitov | 15a07b3 | 2016-02-01 22:39:55 -0800 | [diff] [blame] | 943 | |
Alexei Starovoitov | 6c90598 | 2016-03-07 21:57:15 -0800 | [diff] [blame] | 944 | if (!prealloc) |
| 945 | htab_elem_set_ptr(l_new, key_size, pptr); |
Alexei Starovoitov | d83525c | 2019-01-31 15:40:04 -0800 | [diff] [blame] | 946 | } else if (fd_htab_map_needs_adjust(htab)) { |
| 947 | size = round_up(size, 8); |
Alexei Starovoitov | 824bd0c | 2016-02-01 22:39:53 -0800 | [diff] [blame] | 948 | memcpy(l_new->key + round_up(key_size, 8), value, size); |
Alexei Starovoitov | d83525c | 2019-01-31 15:40:04 -0800 | [diff] [blame] | 949 | } else { |
| 950 | copy_map_value(&htab->map, |
| 951 | l_new->key + round_up(key_size, 8), |
| 952 | value); |
Alexei Starovoitov | 824bd0c | 2016-02-01 22:39:53 -0800 | [diff] [blame] | 953 | } |
| 954 | |
| 955 | l_new->hash = hash; |
| 956 | return l_new; |
Mauricio Vasquez B | ed2b82c | 2018-06-29 14:48:20 +0200 | [diff] [blame] | 957 | dec_count: |
| 958 | atomic_dec(&htab->count); |
| 959 | return l_new; |
Alexei Starovoitov | 824bd0c | 2016-02-01 22:39:53 -0800 | [diff] [blame] | 960 | } |
| 961 | |
| 962 | static int check_flags(struct bpf_htab *htab, struct htab_elem *l_old, |
| 963 | u64 map_flags) |
| 964 | { |
Alexei Starovoitov | 96049f3 | 2019-01-31 15:40:09 -0800 | [diff] [blame] | 965 | if (l_old && (map_flags & ~BPF_F_LOCK) == BPF_NOEXIST) |
Alexei Starovoitov | 824bd0c | 2016-02-01 22:39:53 -0800 | [diff] [blame] | 966 | /* elem already exists */ |
| 967 | return -EEXIST; |
| 968 | |
Alexei Starovoitov | 96049f3 | 2019-01-31 15:40:09 -0800 | [diff] [blame] | 969 | if (!l_old && (map_flags & ~BPF_F_LOCK) == BPF_EXIST) |
Alexei Starovoitov | 824bd0c | 2016-02-01 22:39:53 -0800 | [diff] [blame] | 970 | /* elem doesn't exist, cannot update it */ |
| 971 | return -ENOENT; |
| 972 | |
| 973 | return 0; |
| 974 | } |
| 975 | |
Alexei Starovoitov | 0f8e4bd | 2014-11-13 17:36:45 -0800 | [diff] [blame] | 976 | /* Called from syscall or from eBPF program */ |
| 977 | static int htab_map_update_elem(struct bpf_map *map, void *key, void *value, |
| 978 | u64 map_flags) |
| 979 | { |
| 980 | struct bpf_htab *htab = container_of(map, struct bpf_htab, map); |
Alexei Starovoitov | 824bd0c | 2016-02-01 22:39:53 -0800 | [diff] [blame] | 981 | struct htab_elem *l_new = NULL, *l_old; |
Alexei Starovoitov | 4fe8435 | 2017-03-07 20:00:13 -0800 | [diff] [blame] | 982 | struct hlist_nulls_head *head; |
Alexei Starovoitov | 0f8e4bd | 2014-11-13 17:36:45 -0800 | [diff] [blame] | 983 | unsigned long flags; |
Alexei Starovoitov | 824bd0c | 2016-02-01 22:39:53 -0800 | [diff] [blame] | 984 | struct bucket *b; |
| 985 | u32 key_size, hash; |
Alexei Starovoitov | 0f8e4bd | 2014-11-13 17:36:45 -0800 | [diff] [blame] | 986 | int ret; |
| 987 | |
Alexei Starovoitov | 96049f3 | 2019-01-31 15:40:09 -0800 | [diff] [blame] | 988 | if (unlikely((map_flags & ~BPF_F_LOCK) > BPF_EXIST)) |
Alexei Starovoitov | 0f8e4bd | 2014-11-13 17:36:45 -0800 | [diff] [blame] | 989 | /* unknown flags */ |
| 990 | return -EINVAL; |
| 991 | |
Alexei Starovoitov | 1e6c62a | 2020-08-27 15:01:11 -0700 | [diff] [blame] | 992 | WARN_ON_ONCE(!rcu_read_lock_held() && !rcu_read_lock_trace_held()); |
Alexei Starovoitov | 0f8e4bd | 2014-11-13 17:36:45 -0800 | [diff] [blame] | 993 | |
Alexei Starovoitov | 824bd0c | 2016-02-01 22:39:53 -0800 | [diff] [blame] | 994 | key_size = map->key_size; |
| 995 | |
Daniel Borkmann | c020347 | 2018-08-22 23:49:37 +0200 | [diff] [blame] | 996 | hash = htab_map_hash(key, key_size, htab->hashrnd); |
Alexei Starovoitov | 824bd0c | 2016-02-01 22:39:53 -0800 | [diff] [blame] | 997 | |
Alexei Starovoitov | 824bd0c | 2016-02-01 22:39:53 -0800 | [diff] [blame] | 998 | b = __select_bucket(htab, hash); |
tom.leiming@gmail.com | 688ecfe | 2015-12-29 22:40:27 +0800 | [diff] [blame] | 999 | head = &b->head; |
Alexei Starovoitov | 0f8e4bd | 2014-11-13 17:36:45 -0800 | [diff] [blame] | 1000 | |
Alexei Starovoitov | 96049f3 | 2019-01-31 15:40:09 -0800 | [diff] [blame] | 1001 | if (unlikely(map_flags & BPF_F_LOCK)) { |
| 1002 | if (unlikely(!map_value_has_spin_lock(map))) |
| 1003 | return -EINVAL; |
| 1004 | /* find an element without taking the bucket lock */ |
| 1005 | l_old = lookup_nulls_elem_raw(head, hash, key, key_size, |
| 1006 | htab->n_buckets); |
| 1007 | ret = check_flags(htab, l_old, map_flags); |
| 1008 | if (ret) |
| 1009 | return ret; |
| 1010 | if (l_old) { |
| 1011 | /* grab the element lock and update value in place */ |
| 1012 | copy_map_value_locked(map, |
| 1013 | l_old->key + round_up(key_size, 8), |
| 1014 | value, false); |
| 1015 | return 0; |
| 1016 | } |
| 1017 | /* fall through, grab the bucket lock and lookup again. |
| 1018 | * 99.9% chance that the element won't be found, |
| 1019 | * but second lookup under lock has to be done. |
| 1020 | */ |
| 1021 | } |
| 1022 | |
Song Liu | 20b6cc3 | 2020-10-29 00:19:25 -0700 | [diff] [blame] | 1023 | ret = htab_lock_bucket(htab, b, hash, &flags); |
| 1024 | if (ret) |
| 1025 | return ret; |
Alexei Starovoitov | 0f8e4bd | 2014-11-13 17:36:45 -0800 | [diff] [blame] | 1026 | |
Alexei Starovoitov | 824bd0c | 2016-02-01 22:39:53 -0800 | [diff] [blame] | 1027 | l_old = lookup_elem_raw(head, hash, key, key_size); |
Alexei Starovoitov | 0f8e4bd | 2014-11-13 17:36:45 -0800 | [diff] [blame] | 1028 | |
Alexei Starovoitov | 824bd0c | 2016-02-01 22:39:53 -0800 | [diff] [blame] | 1029 | ret = check_flags(htab, l_old, map_flags); |
| 1030 | if (ret) |
Alexei Starovoitov | 0f8e4bd | 2014-11-13 17:36:45 -0800 | [diff] [blame] | 1031 | goto err; |
Alexei Starovoitov | 0f8e4bd | 2014-11-13 17:36:45 -0800 | [diff] [blame] | 1032 | |
Alexei Starovoitov | 96049f3 | 2019-01-31 15:40:09 -0800 | [diff] [blame] | 1033 | if (unlikely(l_old && (map_flags & BPF_F_LOCK))) { |
| 1034 | /* first lookup without the bucket lock didn't find the element, |
| 1035 | * but second lookup with the bucket lock found it. |
| 1036 | * This case is highly unlikely, but has to be dealt with: |
| 1037 | * grab the element lock in addition to the bucket lock |
| 1038 | * and update element in place |
| 1039 | */ |
| 1040 | copy_map_value_locked(map, |
| 1041 | l_old->key + round_up(key_size, 8), |
| 1042 | value, false); |
| 1043 | ret = 0; |
| 1044 | goto err; |
| 1045 | } |
| 1046 | |
Alexei Starovoitov | a6ed3ea | 2016-08-05 14:01:27 -0700 | [diff] [blame] | 1047 | l_new = alloc_htab_elem(htab, key, value, key_size, hash, false, false, |
Alexei Starovoitov | 8c290e6 | 2017-03-21 19:05:04 -0700 | [diff] [blame] | 1048 | l_old); |
Alexei Starovoitov | 6c90598 | 2016-03-07 21:57:15 -0800 | [diff] [blame] | 1049 | if (IS_ERR(l_new)) { |
| 1050 | /* all pre-allocated elements are in use or memory exhausted */ |
| 1051 | ret = PTR_ERR(l_new); |
| 1052 | goto err; |
| 1053 | } |
| 1054 | |
Alexei Starovoitov | 824bd0c | 2016-02-01 22:39:53 -0800 | [diff] [blame] | 1055 | /* add new element to the head of the list, so that |
| 1056 | * concurrent search will find it before old elem |
Alexei Starovoitov | 0f8e4bd | 2014-11-13 17:36:45 -0800 | [diff] [blame] | 1057 | */ |
Alexei Starovoitov | 4fe8435 | 2017-03-07 20:00:13 -0800 | [diff] [blame] | 1058 | hlist_nulls_add_head_rcu(&l_new->hash_node, head); |
Alexei Starovoitov | 0f8e4bd | 2014-11-13 17:36:45 -0800 | [diff] [blame] | 1059 | if (l_old) { |
Alexei Starovoitov | 4fe8435 | 2017-03-07 20:00:13 -0800 | [diff] [blame] | 1060 | hlist_nulls_del_rcu(&l_old->hash_node); |
Alexei Starovoitov | 8c290e6 | 2017-03-21 19:05:04 -0700 | [diff] [blame] | 1061 | if (!htab_is_prealloc(htab)) |
| 1062 | free_htab_elem(htab, l_old); |
Alexei Starovoitov | 0f8e4bd | 2014-11-13 17:36:45 -0800 | [diff] [blame] | 1063 | } |
Alexei Starovoitov | 6c90598 | 2016-03-07 21:57:15 -0800 | [diff] [blame] | 1064 | ret = 0; |
Alexei Starovoitov | 0f8e4bd | 2014-11-13 17:36:45 -0800 | [diff] [blame] | 1065 | err: |
Song Liu | 20b6cc3 | 2020-10-29 00:19:25 -0700 | [diff] [blame] | 1066 | htab_unlock_bucket(htab, b, hash, flags); |
Alexei Starovoitov | 0f8e4bd | 2014-11-13 17:36:45 -0800 | [diff] [blame] | 1067 | return ret; |
| 1068 | } |
| 1069 | |
Martin KaFai Lau | 29ba732 | 2016-11-11 10:55:09 -0800 | [diff] [blame] | 1070 | static int htab_lru_map_update_elem(struct bpf_map *map, void *key, void *value, |
| 1071 | u64 map_flags) |
| 1072 | { |
| 1073 | struct bpf_htab *htab = container_of(map, struct bpf_htab, map); |
| 1074 | struct htab_elem *l_new, *l_old = NULL; |
Alexei Starovoitov | 4fe8435 | 2017-03-07 20:00:13 -0800 | [diff] [blame] | 1075 | struct hlist_nulls_head *head; |
Martin KaFai Lau | 29ba732 | 2016-11-11 10:55:09 -0800 | [diff] [blame] | 1076 | unsigned long flags; |
| 1077 | struct bucket *b; |
| 1078 | u32 key_size, hash; |
| 1079 | int ret; |
| 1080 | |
| 1081 | if (unlikely(map_flags > BPF_EXIST)) |
| 1082 | /* unknown flags */ |
| 1083 | return -EINVAL; |
| 1084 | |
Alexei Starovoitov | 1e6c62a | 2020-08-27 15:01:11 -0700 | [diff] [blame] | 1085 | WARN_ON_ONCE(!rcu_read_lock_held() && !rcu_read_lock_trace_held()); |
Martin KaFai Lau | 29ba732 | 2016-11-11 10:55:09 -0800 | [diff] [blame] | 1086 | |
| 1087 | key_size = map->key_size; |
| 1088 | |
Daniel Borkmann | c020347 | 2018-08-22 23:49:37 +0200 | [diff] [blame] | 1089 | hash = htab_map_hash(key, key_size, htab->hashrnd); |
Martin KaFai Lau | 29ba732 | 2016-11-11 10:55:09 -0800 | [diff] [blame] | 1090 | |
| 1091 | b = __select_bucket(htab, hash); |
| 1092 | head = &b->head; |
| 1093 | |
| 1094 | /* For LRU, we need to alloc before taking bucket's |
| 1095 | * spinlock because getting free nodes from LRU may need |
| 1096 | * to remove older elements from htab and this removal |
| 1097 | * operation will need a bucket lock. |
| 1098 | */ |
| 1099 | l_new = prealloc_lru_pop(htab, key, hash); |
| 1100 | if (!l_new) |
| 1101 | return -ENOMEM; |
| 1102 | memcpy(l_new->key + round_up(map->key_size, 8), value, map->value_size); |
| 1103 | |
Song Liu | 20b6cc3 | 2020-10-29 00:19:25 -0700 | [diff] [blame] | 1104 | ret = htab_lock_bucket(htab, b, hash, &flags); |
| 1105 | if (ret) |
| 1106 | return ret; |
Martin KaFai Lau | 29ba732 | 2016-11-11 10:55:09 -0800 | [diff] [blame] | 1107 | |
| 1108 | l_old = lookup_elem_raw(head, hash, key, key_size); |
| 1109 | |
| 1110 | ret = check_flags(htab, l_old, map_flags); |
| 1111 | if (ret) |
| 1112 | goto err; |
| 1113 | |
| 1114 | /* add new element to the head of the list, so that |
| 1115 | * concurrent search will find it before old elem |
| 1116 | */ |
Alexei Starovoitov | 4fe8435 | 2017-03-07 20:00:13 -0800 | [diff] [blame] | 1117 | hlist_nulls_add_head_rcu(&l_new->hash_node, head); |
Martin KaFai Lau | 29ba732 | 2016-11-11 10:55:09 -0800 | [diff] [blame] | 1118 | if (l_old) { |
| 1119 | bpf_lru_node_set_ref(&l_new->lru_node); |
Alexei Starovoitov | 4fe8435 | 2017-03-07 20:00:13 -0800 | [diff] [blame] | 1120 | hlist_nulls_del_rcu(&l_old->hash_node); |
Martin KaFai Lau | 29ba732 | 2016-11-11 10:55:09 -0800 | [diff] [blame] | 1121 | } |
| 1122 | ret = 0; |
| 1123 | |
| 1124 | err: |
Song Liu | 20b6cc3 | 2020-10-29 00:19:25 -0700 | [diff] [blame] | 1125 | htab_unlock_bucket(htab, b, hash, flags); |
Martin KaFai Lau | 29ba732 | 2016-11-11 10:55:09 -0800 | [diff] [blame] | 1126 | |
| 1127 | if (ret) |
| 1128 | bpf_lru_push_free(&htab->lru, &l_new->lru_node); |
| 1129 | else if (l_old) |
| 1130 | bpf_lru_push_free(&htab->lru, &l_old->lru_node); |
| 1131 | |
| 1132 | return ret; |
| 1133 | } |
| 1134 | |
Alexei Starovoitov | 15a07b3 | 2016-02-01 22:39:55 -0800 | [diff] [blame] | 1135 | static int __htab_percpu_map_update_elem(struct bpf_map *map, void *key, |
| 1136 | void *value, u64 map_flags, |
| 1137 | bool onallcpus) |
Alexei Starovoitov | 824bd0c | 2016-02-01 22:39:53 -0800 | [diff] [blame] | 1138 | { |
| 1139 | struct bpf_htab *htab = container_of(map, struct bpf_htab, map); |
| 1140 | struct htab_elem *l_new = NULL, *l_old; |
Alexei Starovoitov | 4fe8435 | 2017-03-07 20:00:13 -0800 | [diff] [blame] | 1141 | struct hlist_nulls_head *head; |
Alexei Starovoitov | 824bd0c | 2016-02-01 22:39:53 -0800 | [diff] [blame] | 1142 | unsigned long flags; |
| 1143 | struct bucket *b; |
| 1144 | u32 key_size, hash; |
| 1145 | int ret; |
| 1146 | |
| 1147 | if (unlikely(map_flags > BPF_EXIST)) |
| 1148 | /* unknown flags */ |
| 1149 | return -EINVAL; |
| 1150 | |
| 1151 | WARN_ON_ONCE(!rcu_read_lock_held()); |
| 1152 | |
| 1153 | key_size = map->key_size; |
| 1154 | |
Daniel Borkmann | c020347 | 2018-08-22 23:49:37 +0200 | [diff] [blame] | 1155 | hash = htab_map_hash(key, key_size, htab->hashrnd); |
Alexei Starovoitov | 824bd0c | 2016-02-01 22:39:53 -0800 | [diff] [blame] | 1156 | |
| 1157 | b = __select_bucket(htab, hash); |
| 1158 | head = &b->head; |
| 1159 | |
Song Liu | 20b6cc3 | 2020-10-29 00:19:25 -0700 | [diff] [blame] | 1160 | ret = htab_lock_bucket(htab, b, hash, &flags); |
| 1161 | if (ret) |
| 1162 | return ret; |
Alexei Starovoitov | 824bd0c | 2016-02-01 22:39:53 -0800 | [diff] [blame] | 1163 | |
| 1164 | l_old = lookup_elem_raw(head, hash, key, key_size); |
| 1165 | |
| 1166 | ret = check_flags(htab, l_old, map_flags); |
| 1167 | if (ret) |
| 1168 | goto err; |
| 1169 | |
| 1170 | if (l_old) { |
| 1171 | /* per-cpu hash map can update value in-place */ |
Martin KaFai Lau | fd91de7 | 2016-11-11 10:55:08 -0800 | [diff] [blame] | 1172 | pcpu_copy_value(htab, htab_elem_get_ptr(l_old, key_size), |
| 1173 | value, onallcpus); |
Alexei Starovoitov | 824bd0c | 2016-02-01 22:39:53 -0800 | [diff] [blame] | 1174 | } else { |
| 1175 | l_new = alloc_htab_elem(htab, key, value, key_size, |
Alexei Starovoitov | 8c290e6 | 2017-03-21 19:05:04 -0700 | [diff] [blame] | 1176 | hash, true, onallcpus, NULL); |
Alexei Starovoitov | 6c90598 | 2016-03-07 21:57:15 -0800 | [diff] [blame] | 1177 | if (IS_ERR(l_new)) { |
| 1178 | ret = PTR_ERR(l_new); |
Alexei Starovoitov | 824bd0c | 2016-02-01 22:39:53 -0800 | [diff] [blame] | 1179 | goto err; |
| 1180 | } |
Alexei Starovoitov | 4fe8435 | 2017-03-07 20:00:13 -0800 | [diff] [blame] | 1181 | hlist_nulls_add_head_rcu(&l_new->hash_node, head); |
Alexei Starovoitov | 824bd0c | 2016-02-01 22:39:53 -0800 | [diff] [blame] | 1182 | } |
| 1183 | ret = 0; |
| 1184 | err: |
Song Liu | 20b6cc3 | 2020-10-29 00:19:25 -0700 | [diff] [blame] | 1185 | htab_unlock_bucket(htab, b, hash, flags); |
Alexei Starovoitov | 824bd0c | 2016-02-01 22:39:53 -0800 | [diff] [blame] | 1186 | return ret; |
| 1187 | } |
| 1188 | |
Martin KaFai Lau | 8f84493 | 2016-11-11 10:55:10 -0800 | [diff] [blame] | 1189 | static int __htab_lru_percpu_map_update_elem(struct bpf_map *map, void *key, |
| 1190 | void *value, u64 map_flags, |
| 1191 | bool onallcpus) |
| 1192 | { |
| 1193 | struct bpf_htab *htab = container_of(map, struct bpf_htab, map); |
| 1194 | struct htab_elem *l_new = NULL, *l_old; |
Alexei Starovoitov | 4fe8435 | 2017-03-07 20:00:13 -0800 | [diff] [blame] | 1195 | struct hlist_nulls_head *head; |
Martin KaFai Lau | 8f84493 | 2016-11-11 10:55:10 -0800 | [diff] [blame] | 1196 | unsigned long flags; |
| 1197 | struct bucket *b; |
| 1198 | u32 key_size, hash; |
| 1199 | int ret; |
| 1200 | |
| 1201 | if (unlikely(map_flags > BPF_EXIST)) |
| 1202 | /* unknown flags */ |
| 1203 | return -EINVAL; |
| 1204 | |
| 1205 | WARN_ON_ONCE(!rcu_read_lock_held()); |
| 1206 | |
| 1207 | key_size = map->key_size; |
| 1208 | |
Daniel Borkmann | c020347 | 2018-08-22 23:49:37 +0200 | [diff] [blame] | 1209 | hash = htab_map_hash(key, key_size, htab->hashrnd); |
Martin KaFai Lau | 8f84493 | 2016-11-11 10:55:10 -0800 | [diff] [blame] | 1210 | |
| 1211 | b = __select_bucket(htab, hash); |
| 1212 | head = &b->head; |
| 1213 | |
| 1214 | /* For LRU, we need to alloc before taking bucket's |
| 1215 | * spinlock because LRU's elem alloc may need |
| 1216 | * to remove older elem from htab and this removal |
| 1217 | * operation will need a bucket lock. |
| 1218 | */ |
| 1219 | if (map_flags != BPF_EXIST) { |
| 1220 | l_new = prealloc_lru_pop(htab, key, hash); |
| 1221 | if (!l_new) |
| 1222 | return -ENOMEM; |
| 1223 | } |
| 1224 | |
Song Liu | 20b6cc3 | 2020-10-29 00:19:25 -0700 | [diff] [blame] | 1225 | ret = htab_lock_bucket(htab, b, hash, &flags); |
| 1226 | if (ret) |
| 1227 | return ret; |
Martin KaFai Lau | 8f84493 | 2016-11-11 10:55:10 -0800 | [diff] [blame] | 1228 | |
| 1229 | l_old = lookup_elem_raw(head, hash, key, key_size); |
| 1230 | |
| 1231 | ret = check_flags(htab, l_old, map_flags); |
| 1232 | if (ret) |
| 1233 | goto err; |
| 1234 | |
| 1235 | if (l_old) { |
| 1236 | bpf_lru_node_set_ref(&l_old->lru_node); |
| 1237 | |
| 1238 | /* per-cpu hash map can update value in-place */ |
| 1239 | pcpu_copy_value(htab, htab_elem_get_ptr(l_old, key_size), |
| 1240 | value, onallcpus); |
| 1241 | } else { |
David Verbeiren | d3bec01 | 2020-11-04 12:23:32 +0100 | [diff] [blame] | 1242 | pcpu_init_value(htab, htab_elem_get_ptr(l_new, key_size), |
Martin KaFai Lau | 8f84493 | 2016-11-11 10:55:10 -0800 | [diff] [blame] | 1243 | value, onallcpus); |
Alexei Starovoitov | 4fe8435 | 2017-03-07 20:00:13 -0800 | [diff] [blame] | 1244 | hlist_nulls_add_head_rcu(&l_new->hash_node, head); |
Martin KaFai Lau | 8f84493 | 2016-11-11 10:55:10 -0800 | [diff] [blame] | 1245 | l_new = NULL; |
| 1246 | } |
| 1247 | ret = 0; |
| 1248 | err: |
Song Liu | 20b6cc3 | 2020-10-29 00:19:25 -0700 | [diff] [blame] | 1249 | htab_unlock_bucket(htab, b, hash, flags); |
Martin KaFai Lau | 8f84493 | 2016-11-11 10:55:10 -0800 | [diff] [blame] | 1250 | if (l_new) |
| 1251 | bpf_lru_push_free(&htab->lru, &l_new->lru_node); |
| 1252 | return ret; |
| 1253 | } |
| 1254 | |
Alexei Starovoitov | 15a07b3 | 2016-02-01 22:39:55 -0800 | [diff] [blame] | 1255 | static int htab_percpu_map_update_elem(struct bpf_map *map, void *key, |
| 1256 | void *value, u64 map_flags) |
| 1257 | { |
| 1258 | return __htab_percpu_map_update_elem(map, key, value, map_flags, false); |
| 1259 | } |
| 1260 | |
Martin KaFai Lau | 8f84493 | 2016-11-11 10:55:10 -0800 | [diff] [blame] | 1261 | static int htab_lru_percpu_map_update_elem(struct bpf_map *map, void *key, |
| 1262 | void *value, u64 map_flags) |
| 1263 | { |
| 1264 | return __htab_lru_percpu_map_update_elem(map, key, value, map_flags, |
| 1265 | false); |
| 1266 | } |
| 1267 | |
Alexei Starovoitov | 0f8e4bd | 2014-11-13 17:36:45 -0800 | [diff] [blame] | 1268 | /* Called from syscall or from eBPF program */ |
| 1269 | static int htab_map_delete_elem(struct bpf_map *map, void *key) |
| 1270 | { |
| 1271 | struct bpf_htab *htab = container_of(map, struct bpf_htab, map); |
Alexei Starovoitov | 4fe8435 | 2017-03-07 20:00:13 -0800 | [diff] [blame] | 1272 | struct hlist_nulls_head *head; |
tom.leiming@gmail.com | 688ecfe | 2015-12-29 22:40:27 +0800 | [diff] [blame] | 1273 | struct bucket *b; |
Alexei Starovoitov | 0f8e4bd | 2014-11-13 17:36:45 -0800 | [diff] [blame] | 1274 | struct htab_elem *l; |
| 1275 | unsigned long flags; |
| 1276 | u32 hash, key_size; |
Song Liu | 20b6cc3 | 2020-10-29 00:19:25 -0700 | [diff] [blame] | 1277 | int ret; |
Alexei Starovoitov | 0f8e4bd | 2014-11-13 17:36:45 -0800 | [diff] [blame] | 1278 | |
Alexei Starovoitov | 1e6c62a | 2020-08-27 15:01:11 -0700 | [diff] [blame] | 1279 | WARN_ON_ONCE(!rcu_read_lock_held() && !rcu_read_lock_trace_held()); |
Alexei Starovoitov | 0f8e4bd | 2014-11-13 17:36:45 -0800 | [diff] [blame] | 1280 | |
| 1281 | key_size = map->key_size; |
| 1282 | |
Daniel Borkmann | c020347 | 2018-08-22 23:49:37 +0200 | [diff] [blame] | 1283 | hash = htab_map_hash(key, key_size, htab->hashrnd); |
tom.leiming@gmail.com | 688ecfe | 2015-12-29 22:40:27 +0800 | [diff] [blame] | 1284 | b = __select_bucket(htab, hash); |
| 1285 | head = &b->head; |
Alexei Starovoitov | 0f8e4bd | 2014-11-13 17:36:45 -0800 | [diff] [blame] | 1286 | |
Song Liu | 20b6cc3 | 2020-10-29 00:19:25 -0700 | [diff] [blame] | 1287 | ret = htab_lock_bucket(htab, b, hash, &flags); |
| 1288 | if (ret) |
| 1289 | return ret; |
Alexei Starovoitov | 0f8e4bd | 2014-11-13 17:36:45 -0800 | [diff] [blame] | 1290 | |
Alexei Starovoitov | 0f8e4bd | 2014-11-13 17:36:45 -0800 | [diff] [blame] | 1291 | l = lookup_elem_raw(head, hash, key, key_size); |
| 1292 | |
| 1293 | if (l) { |
Alexei Starovoitov | 4fe8435 | 2017-03-07 20:00:13 -0800 | [diff] [blame] | 1294 | hlist_nulls_del_rcu(&l->hash_node); |
Alexei Starovoitov | 6c90598 | 2016-03-07 21:57:15 -0800 | [diff] [blame] | 1295 | free_htab_elem(htab, l); |
Song Liu | 20b6cc3 | 2020-10-29 00:19:25 -0700 | [diff] [blame] | 1296 | } else { |
| 1297 | ret = -ENOENT; |
Alexei Starovoitov | 0f8e4bd | 2014-11-13 17:36:45 -0800 | [diff] [blame] | 1298 | } |
| 1299 | |
Song Liu | 20b6cc3 | 2020-10-29 00:19:25 -0700 | [diff] [blame] | 1300 | htab_unlock_bucket(htab, b, hash, flags); |
Alexei Starovoitov | 0f8e4bd | 2014-11-13 17:36:45 -0800 | [diff] [blame] | 1301 | return ret; |
| 1302 | } |
| 1303 | |
Martin KaFai Lau | 29ba732 | 2016-11-11 10:55:09 -0800 | [diff] [blame] | 1304 | static int htab_lru_map_delete_elem(struct bpf_map *map, void *key) |
| 1305 | { |
| 1306 | struct bpf_htab *htab = container_of(map, struct bpf_htab, map); |
Alexei Starovoitov | 4fe8435 | 2017-03-07 20:00:13 -0800 | [diff] [blame] | 1307 | struct hlist_nulls_head *head; |
Martin KaFai Lau | 29ba732 | 2016-11-11 10:55:09 -0800 | [diff] [blame] | 1308 | struct bucket *b; |
| 1309 | struct htab_elem *l; |
| 1310 | unsigned long flags; |
| 1311 | u32 hash, key_size; |
Song Liu | 20b6cc3 | 2020-10-29 00:19:25 -0700 | [diff] [blame] | 1312 | int ret; |
Martin KaFai Lau | 29ba732 | 2016-11-11 10:55:09 -0800 | [diff] [blame] | 1313 | |
Alexei Starovoitov | 1e6c62a | 2020-08-27 15:01:11 -0700 | [diff] [blame] | 1314 | WARN_ON_ONCE(!rcu_read_lock_held() && !rcu_read_lock_trace_held()); |
Martin KaFai Lau | 29ba732 | 2016-11-11 10:55:09 -0800 | [diff] [blame] | 1315 | |
| 1316 | key_size = map->key_size; |
| 1317 | |
Daniel Borkmann | c020347 | 2018-08-22 23:49:37 +0200 | [diff] [blame] | 1318 | hash = htab_map_hash(key, key_size, htab->hashrnd); |
Martin KaFai Lau | 29ba732 | 2016-11-11 10:55:09 -0800 | [diff] [blame] | 1319 | b = __select_bucket(htab, hash); |
| 1320 | head = &b->head; |
| 1321 | |
Song Liu | 20b6cc3 | 2020-10-29 00:19:25 -0700 | [diff] [blame] | 1322 | ret = htab_lock_bucket(htab, b, hash, &flags); |
| 1323 | if (ret) |
| 1324 | return ret; |
Martin KaFai Lau | 29ba732 | 2016-11-11 10:55:09 -0800 | [diff] [blame] | 1325 | |
| 1326 | l = lookup_elem_raw(head, hash, key, key_size); |
| 1327 | |
Song Liu | 20b6cc3 | 2020-10-29 00:19:25 -0700 | [diff] [blame] | 1328 | if (l) |
Alexei Starovoitov | 4fe8435 | 2017-03-07 20:00:13 -0800 | [diff] [blame] | 1329 | hlist_nulls_del_rcu(&l->hash_node); |
Song Liu | 20b6cc3 | 2020-10-29 00:19:25 -0700 | [diff] [blame] | 1330 | else |
| 1331 | ret = -ENOENT; |
Martin KaFai Lau | 29ba732 | 2016-11-11 10:55:09 -0800 | [diff] [blame] | 1332 | |
Song Liu | 20b6cc3 | 2020-10-29 00:19:25 -0700 | [diff] [blame] | 1333 | htab_unlock_bucket(htab, b, hash, flags); |
Martin KaFai Lau | 29ba732 | 2016-11-11 10:55:09 -0800 | [diff] [blame] | 1334 | if (l) |
| 1335 | bpf_lru_push_free(&htab->lru, &l->lru_node); |
| 1336 | return ret; |
| 1337 | } |
| 1338 | |
Alexei Starovoitov | 0f8e4bd | 2014-11-13 17:36:45 -0800 | [diff] [blame] | 1339 | static void delete_all_elements(struct bpf_htab *htab) |
| 1340 | { |
| 1341 | int i; |
| 1342 | |
| 1343 | for (i = 0; i < htab->n_buckets; i++) { |
Alexei Starovoitov | 4fe8435 | 2017-03-07 20:00:13 -0800 | [diff] [blame] | 1344 | struct hlist_nulls_head *head = select_bucket(htab, i); |
| 1345 | struct hlist_nulls_node *n; |
Alexei Starovoitov | 0f8e4bd | 2014-11-13 17:36:45 -0800 | [diff] [blame] | 1346 | struct htab_elem *l; |
| 1347 | |
Alexei Starovoitov | 4fe8435 | 2017-03-07 20:00:13 -0800 | [diff] [blame] | 1348 | hlist_nulls_for_each_entry_safe(l, n, head, hash_node) { |
| 1349 | hlist_nulls_del_rcu(&l->hash_node); |
Alexei Starovoitov | 8c290e6 | 2017-03-21 19:05:04 -0700 | [diff] [blame] | 1350 | htab_elem_free(htab, l); |
Alexei Starovoitov | 0f8e4bd | 2014-11-13 17:36:45 -0800 | [diff] [blame] | 1351 | } |
| 1352 | } |
| 1353 | } |
Martin KaFai Lau | bcc6b1b | 2017-03-22 10:00:34 -0700 | [diff] [blame] | 1354 | |
Alexei Starovoitov | 0f8e4bd | 2014-11-13 17:36:45 -0800 | [diff] [blame] | 1355 | /* Called when map->refcnt goes to zero, either from workqueue or from syscall */ |
| 1356 | static void htab_map_free(struct bpf_map *map) |
| 1357 | { |
| 1358 | struct bpf_htab *htab = container_of(map, struct bpf_htab, map); |
Song Liu | 20b6cc3 | 2020-10-29 00:19:25 -0700 | [diff] [blame] | 1359 | int i; |
Alexei Starovoitov | 0f8e4bd | 2014-11-13 17:36:45 -0800 | [diff] [blame] | 1360 | |
Alexei Starovoitov | bba1dc0 | 2020-06-29 21:33:39 -0700 | [diff] [blame] | 1361 | /* bpf_free_used_maps() or close(map_fd) will trigger this map_free callback. |
| 1362 | * bpf_free_used_maps() is called after bpf prog is no longer executing. |
| 1363 | * There is no need to synchronize_rcu() here to protect map elements. |
Alexei Starovoitov | 0f8e4bd | 2014-11-13 17:36:45 -0800 | [diff] [blame] | 1364 | */ |
Alexei Starovoitov | 0f8e4bd | 2014-11-13 17:36:45 -0800 | [diff] [blame] | 1365 | |
Alexei Starovoitov | 6c90598 | 2016-03-07 21:57:15 -0800 | [diff] [blame] | 1366 | /* some of free_htab_elem() callbacks for elements of this map may |
| 1367 | * not have executed. Wait for them. |
Alexei Starovoitov | 0f8e4bd | 2014-11-13 17:36:45 -0800 | [diff] [blame] | 1368 | */ |
Alexei Starovoitov | 6c90598 | 2016-03-07 21:57:15 -0800 | [diff] [blame] | 1369 | rcu_barrier(); |
Alexei Starovoitov | 8c290e6 | 2017-03-21 19:05:04 -0700 | [diff] [blame] | 1370 | if (!htab_is_prealloc(htab)) |
Alexei Starovoitov | 6c90598 | 2016-03-07 21:57:15 -0800 | [diff] [blame] | 1371 | delete_all_elements(htab); |
Martin KaFai Lau | 29ba732 | 2016-11-11 10:55:09 -0800 | [diff] [blame] | 1372 | else |
| 1373 | prealloc_destroy(htab); |
| 1374 | |
Alexei Starovoitov | a6ed3ea | 2016-08-05 14:01:27 -0700 | [diff] [blame] | 1375 | free_percpu(htab->extra_elems); |
Daniel Borkmann | d407bd2 | 2017-01-18 15:14:17 +0100 | [diff] [blame] | 1376 | bpf_map_area_free(htab->buckets); |
Song Liu | 20b6cc3 | 2020-10-29 00:19:25 -0700 | [diff] [blame] | 1377 | for (i = 0; i < HASHTAB_MAP_LOCK_COUNT; i++) |
| 1378 | free_percpu(htab->map_locked[i]); |
Eric Dumazet | 8aaeed8 | 2020-11-02 03:41:00 -0800 | [diff] [blame] | 1379 | lockdep_unregister_key(&htab->lockdep_key); |
Alexei Starovoitov | 0f8e4bd | 2014-11-13 17:36:45 -0800 | [diff] [blame] | 1380 | kfree(htab); |
| 1381 | } |
| 1382 | |
Yonghong Song | 699c86d | 2018-08-09 08:55:20 -0700 | [diff] [blame] | 1383 | static void htab_map_seq_show_elem(struct bpf_map *map, void *key, |
| 1384 | struct seq_file *m) |
| 1385 | { |
| 1386 | void *value; |
| 1387 | |
| 1388 | rcu_read_lock(); |
| 1389 | |
| 1390 | value = htab_map_lookup_elem(map, key); |
| 1391 | if (!value) { |
| 1392 | rcu_read_unlock(); |
| 1393 | return; |
| 1394 | } |
| 1395 | |
| 1396 | btf_type_seq_show(map->btf, map->btf_key_type_id, key, m); |
| 1397 | seq_puts(m, ": "); |
| 1398 | btf_type_seq_show(map->btf, map->btf_value_type_id, value, m); |
| 1399 | seq_puts(m, "\n"); |
| 1400 | |
| 1401 | rcu_read_unlock(); |
| 1402 | } |
| 1403 | |
Yonghong Song | 0579963 | 2020-01-15 10:43:04 -0800 | [diff] [blame] | 1404 | static int |
| 1405 | __htab_map_lookup_and_delete_batch(struct bpf_map *map, |
| 1406 | const union bpf_attr *attr, |
| 1407 | union bpf_attr __user *uattr, |
| 1408 | bool do_delete, bool is_lru_map, |
| 1409 | bool is_percpu) |
| 1410 | { |
| 1411 | struct bpf_htab *htab = container_of(map, struct bpf_htab, map); |
| 1412 | u32 bucket_cnt, total, key_size, value_size, roundup_key_size; |
| 1413 | void *keys = NULL, *values = NULL, *value, *dst_key, *dst_val; |
| 1414 | void __user *uvalues = u64_to_user_ptr(attr->batch.values); |
| 1415 | void __user *ukeys = u64_to_user_ptr(attr->batch.keys); |
Lukas Bulwahn | 2f4b031 | 2020-12-07 13:37:20 +0100 | [diff] [blame] | 1416 | void __user *ubatch = u64_to_user_ptr(attr->batch.in_batch); |
Yonghong Song | 0579963 | 2020-01-15 10:43:04 -0800 | [diff] [blame] | 1417 | u32 batch, max_count, size, bucket_size; |
Yonghong Song | b9aff38 | 2020-02-19 15:47:57 -0800 | [diff] [blame] | 1418 | struct htab_elem *node_to_free = NULL; |
Yonghong Song | 0579963 | 2020-01-15 10:43:04 -0800 | [diff] [blame] | 1419 | u64 elem_map_flags, map_flags; |
| 1420 | struct hlist_nulls_head *head; |
| 1421 | struct hlist_nulls_node *n; |
Brian Vazquez | 492e0d0 | 2020-02-18 09:25:52 -0800 | [diff] [blame] | 1422 | unsigned long flags = 0; |
| 1423 | bool locked = false; |
Yonghong Song | 0579963 | 2020-01-15 10:43:04 -0800 | [diff] [blame] | 1424 | struct htab_elem *l; |
| 1425 | struct bucket *b; |
| 1426 | int ret = 0; |
| 1427 | |
| 1428 | elem_map_flags = attr->batch.elem_flags; |
| 1429 | if ((elem_map_flags & ~BPF_F_LOCK) || |
| 1430 | ((elem_map_flags & BPF_F_LOCK) && !map_value_has_spin_lock(map))) |
| 1431 | return -EINVAL; |
| 1432 | |
| 1433 | map_flags = attr->batch.flags; |
| 1434 | if (map_flags) |
| 1435 | return -EINVAL; |
| 1436 | |
| 1437 | max_count = attr->batch.count; |
| 1438 | if (!max_count) |
| 1439 | return 0; |
| 1440 | |
| 1441 | if (put_user(0, &uattr->batch.count)) |
| 1442 | return -EFAULT; |
| 1443 | |
| 1444 | batch = 0; |
| 1445 | if (ubatch && copy_from_user(&batch, ubatch, sizeof(batch))) |
| 1446 | return -EFAULT; |
| 1447 | |
| 1448 | if (batch >= htab->n_buckets) |
| 1449 | return -ENOENT; |
| 1450 | |
| 1451 | key_size = htab->map.key_size; |
| 1452 | roundup_key_size = round_up(htab->map.key_size, 8); |
| 1453 | value_size = htab->map.value_size; |
| 1454 | size = round_up(value_size, 8); |
| 1455 | if (is_percpu) |
| 1456 | value_size = size * num_possible_cpus(); |
| 1457 | total = 0; |
| 1458 | /* while experimenting with hash tables with sizes ranging from 10 to |
| 1459 | * 1000, it was observed that a bucket can have upto 5 entries. |
| 1460 | */ |
| 1461 | bucket_size = 5; |
| 1462 | |
| 1463 | alloc: |
| 1464 | /* We cannot do copy_from_user or copy_to_user inside |
| 1465 | * the rcu_read_lock. Allocate enough space here. |
| 1466 | */ |
| 1467 | keys = kvmalloc(key_size * bucket_size, GFP_USER | __GFP_NOWARN); |
| 1468 | values = kvmalloc(value_size * bucket_size, GFP_USER | __GFP_NOWARN); |
| 1469 | if (!keys || !values) { |
| 1470 | ret = -ENOMEM; |
| 1471 | goto after_loop; |
| 1472 | } |
| 1473 | |
| 1474 | again: |
Thomas Gleixner | 085fee1 | 2020-02-24 15:01:48 +0100 | [diff] [blame] | 1475 | bpf_disable_instrumentation(); |
Yonghong Song | 0579963 | 2020-01-15 10:43:04 -0800 | [diff] [blame] | 1476 | rcu_read_lock(); |
| 1477 | again_nocopy: |
| 1478 | dst_key = keys; |
| 1479 | dst_val = values; |
| 1480 | b = &htab->buckets[batch]; |
| 1481 | head = &b->head; |
Brian Vazquez | 492e0d0 | 2020-02-18 09:25:52 -0800 | [diff] [blame] | 1482 | /* do not grab the lock unless need it (bucket_cnt > 0). */ |
Song Liu | 20b6cc3 | 2020-10-29 00:19:25 -0700 | [diff] [blame] | 1483 | if (locked) { |
| 1484 | ret = htab_lock_bucket(htab, b, batch, &flags); |
| 1485 | if (ret) |
| 1486 | goto next_batch; |
| 1487 | } |
Yonghong Song | 0579963 | 2020-01-15 10:43:04 -0800 | [diff] [blame] | 1488 | |
| 1489 | bucket_cnt = 0; |
| 1490 | hlist_nulls_for_each_entry_rcu(l, n, head, hash_node) |
| 1491 | bucket_cnt++; |
| 1492 | |
Brian Vazquez | 492e0d0 | 2020-02-18 09:25:52 -0800 | [diff] [blame] | 1493 | if (bucket_cnt && !locked) { |
| 1494 | locked = true; |
| 1495 | goto again_nocopy; |
| 1496 | } |
| 1497 | |
Yonghong Song | 0579963 | 2020-01-15 10:43:04 -0800 | [diff] [blame] | 1498 | if (bucket_cnt > (max_count - total)) { |
| 1499 | if (total == 0) |
| 1500 | ret = -ENOSPC; |
Brian Vazquez | 492e0d0 | 2020-02-18 09:25:52 -0800 | [diff] [blame] | 1501 | /* Note that since bucket_cnt > 0 here, it is implicit |
| 1502 | * that the locked was grabbed, so release it. |
| 1503 | */ |
Song Liu | 20b6cc3 | 2020-10-29 00:19:25 -0700 | [diff] [blame] | 1504 | htab_unlock_bucket(htab, b, batch, flags); |
Yonghong Song | 0579963 | 2020-01-15 10:43:04 -0800 | [diff] [blame] | 1505 | rcu_read_unlock(); |
Thomas Gleixner | 085fee1 | 2020-02-24 15:01:48 +0100 | [diff] [blame] | 1506 | bpf_enable_instrumentation(); |
Yonghong Song | 0579963 | 2020-01-15 10:43:04 -0800 | [diff] [blame] | 1507 | goto after_loop; |
| 1508 | } |
| 1509 | |
| 1510 | if (bucket_cnt > bucket_size) { |
| 1511 | bucket_size = bucket_cnt; |
Brian Vazquez | 492e0d0 | 2020-02-18 09:25:52 -0800 | [diff] [blame] | 1512 | /* Note that since bucket_cnt > 0 here, it is implicit |
| 1513 | * that the locked was grabbed, so release it. |
| 1514 | */ |
Song Liu | 20b6cc3 | 2020-10-29 00:19:25 -0700 | [diff] [blame] | 1515 | htab_unlock_bucket(htab, b, batch, flags); |
Yonghong Song | 0579963 | 2020-01-15 10:43:04 -0800 | [diff] [blame] | 1516 | rcu_read_unlock(); |
Thomas Gleixner | 085fee1 | 2020-02-24 15:01:48 +0100 | [diff] [blame] | 1517 | bpf_enable_instrumentation(); |
Yonghong Song | 0579963 | 2020-01-15 10:43:04 -0800 | [diff] [blame] | 1518 | kvfree(keys); |
| 1519 | kvfree(values); |
| 1520 | goto alloc; |
| 1521 | } |
| 1522 | |
Brian Vazquez | 492e0d0 | 2020-02-18 09:25:52 -0800 | [diff] [blame] | 1523 | /* Next block is only safe to run if you have grabbed the lock */ |
| 1524 | if (!locked) |
| 1525 | goto next_batch; |
| 1526 | |
Yonghong Song | 0579963 | 2020-01-15 10:43:04 -0800 | [diff] [blame] | 1527 | hlist_nulls_for_each_entry_safe(l, n, head, hash_node) { |
| 1528 | memcpy(dst_key, l->key, key_size); |
| 1529 | |
| 1530 | if (is_percpu) { |
| 1531 | int off = 0, cpu; |
| 1532 | void __percpu *pptr; |
| 1533 | |
| 1534 | pptr = htab_elem_get_ptr(l, map->key_size); |
| 1535 | for_each_possible_cpu(cpu) { |
| 1536 | bpf_long_memcpy(dst_val + off, |
| 1537 | per_cpu_ptr(pptr, cpu), size); |
| 1538 | off += size; |
| 1539 | } |
| 1540 | } else { |
| 1541 | value = l->key + roundup_key_size; |
| 1542 | if (elem_map_flags & BPF_F_LOCK) |
| 1543 | copy_map_value_locked(map, dst_val, value, |
| 1544 | true); |
| 1545 | else |
| 1546 | copy_map_value(map, dst_val, value); |
| 1547 | check_and_init_map_lock(map, dst_val); |
| 1548 | } |
| 1549 | if (do_delete) { |
| 1550 | hlist_nulls_del_rcu(&l->hash_node); |
Yonghong Song | b9aff38 | 2020-02-19 15:47:57 -0800 | [diff] [blame] | 1551 | |
| 1552 | /* bpf_lru_push_free() will acquire lru_lock, which |
| 1553 | * may cause deadlock. See comments in function |
| 1554 | * prealloc_lru_pop(). Let us do bpf_lru_push_free() |
| 1555 | * after releasing the bucket lock. |
| 1556 | */ |
| 1557 | if (is_lru_map) { |
| 1558 | l->batch_flink = node_to_free; |
| 1559 | node_to_free = l; |
| 1560 | } else { |
Yonghong Song | 0579963 | 2020-01-15 10:43:04 -0800 | [diff] [blame] | 1561 | free_htab_elem(htab, l); |
Yonghong Song | b9aff38 | 2020-02-19 15:47:57 -0800 | [diff] [blame] | 1562 | } |
Yonghong Song | 0579963 | 2020-01-15 10:43:04 -0800 | [diff] [blame] | 1563 | } |
| 1564 | dst_key += key_size; |
| 1565 | dst_val += value_size; |
| 1566 | } |
| 1567 | |
Song Liu | 20b6cc3 | 2020-10-29 00:19:25 -0700 | [diff] [blame] | 1568 | htab_unlock_bucket(htab, b, batch, flags); |
Brian Vazquez | 492e0d0 | 2020-02-18 09:25:52 -0800 | [diff] [blame] | 1569 | locked = false; |
Yonghong Song | b9aff38 | 2020-02-19 15:47:57 -0800 | [diff] [blame] | 1570 | |
| 1571 | while (node_to_free) { |
| 1572 | l = node_to_free; |
| 1573 | node_to_free = node_to_free->batch_flink; |
| 1574 | bpf_lru_push_free(&htab->lru, &l->lru_node); |
| 1575 | } |
| 1576 | |
Brian Vazquez | 492e0d0 | 2020-02-18 09:25:52 -0800 | [diff] [blame] | 1577 | next_batch: |
Yonghong Song | 0579963 | 2020-01-15 10:43:04 -0800 | [diff] [blame] | 1578 | /* If we are not copying data, we can go to next bucket and avoid |
| 1579 | * unlocking the rcu. |
| 1580 | */ |
| 1581 | if (!bucket_cnt && (batch + 1 < htab->n_buckets)) { |
| 1582 | batch++; |
| 1583 | goto again_nocopy; |
| 1584 | } |
| 1585 | |
| 1586 | rcu_read_unlock(); |
Thomas Gleixner | 085fee1 | 2020-02-24 15:01:48 +0100 | [diff] [blame] | 1587 | bpf_enable_instrumentation(); |
Yonghong Song | 0579963 | 2020-01-15 10:43:04 -0800 | [diff] [blame] | 1588 | if (bucket_cnt && (copy_to_user(ukeys + total * key_size, keys, |
| 1589 | key_size * bucket_cnt) || |
| 1590 | copy_to_user(uvalues + total * value_size, values, |
| 1591 | value_size * bucket_cnt))) { |
| 1592 | ret = -EFAULT; |
| 1593 | goto after_loop; |
| 1594 | } |
| 1595 | |
| 1596 | total += bucket_cnt; |
| 1597 | batch++; |
| 1598 | if (batch >= htab->n_buckets) { |
| 1599 | ret = -ENOENT; |
| 1600 | goto after_loop; |
| 1601 | } |
| 1602 | goto again; |
| 1603 | |
| 1604 | after_loop: |
| 1605 | if (ret == -EFAULT) |
| 1606 | goto out; |
| 1607 | |
| 1608 | /* copy # of entries and next batch */ |
| 1609 | ubatch = u64_to_user_ptr(attr->batch.out_batch); |
| 1610 | if (copy_to_user(ubatch, &batch, sizeof(batch)) || |
| 1611 | put_user(total, &uattr->batch.count)) |
| 1612 | ret = -EFAULT; |
| 1613 | |
| 1614 | out: |
| 1615 | kvfree(keys); |
| 1616 | kvfree(values); |
| 1617 | return ret; |
| 1618 | } |
| 1619 | |
| 1620 | static int |
| 1621 | htab_percpu_map_lookup_batch(struct bpf_map *map, const union bpf_attr *attr, |
| 1622 | union bpf_attr __user *uattr) |
| 1623 | { |
| 1624 | return __htab_map_lookup_and_delete_batch(map, attr, uattr, false, |
| 1625 | false, true); |
| 1626 | } |
| 1627 | |
| 1628 | static int |
| 1629 | htab_percpu_map_lookup_and_delete_batch(struct bpf_map *map, |
| 1630 | const union bpf_attr *attr, |
| 1631 | union bpf_attr __user *uattr) |
| 1632 | { |
| 1633 | return __htab_map_lookup_and_delete_batch(map, attr, uattr, true, |
| 1634 | false, true); |
| 1635 | } |
| 1636 | |
| 1637 | static int |
| 1638 | htab_map_lookup_batch(struct bpf_map *map, const union bpf_attr *attr, |
| 1639 | union bpf_attr __user *uattr) |
| 1640 | { |
| 1641 | return __htab_map_lookup_and_delete_batch(map, attr, uattr, false, |
| 1642 | false, false); |
| 1643 | } |
| 1644 | |
| 1645 | static int |
| 1646 | htab_map_lookup_and_delete_batch(struct bpf_map *map, |
| 1647 | const union bpf_attr *attr, |
| 1648 | union bpf_attr __user *uattr) |
| 1649 | { |
| 1650 | return __htab_map_lookup_and_delete_batch(map, attr, uattr, true, |
| 1651 | false, false); |
| 1652 | } |
| 1653 | |
| 1654 | static int |
| 1655 | htab_lru_percpu_map_lookup_batch(struct bpf_map *map, |
| 1656 | const union bpf_attr *attr, |
| 1657 | union bpf_attr __user *uattr) |
| 1658 | { |
| 1659 | return __htab_map_lookup_and_delete_batch(map, attr, uattr, false, |
| 1660 | true, true); |
| 1661 | } |
| 1662 | |
| 1663 | static int |
| 1664 | htab_lru_percpu_map_lookup_and_delete_batch(struct bpf_map *map, |
| 1665 | const union bpf_attr *attr, |
| 1666 | union bpf_attr __user *uattr) |
| 1667 | { |
| 1668 | return __htab_map_lookup_and_delete_batch(map, attr, uattr, true, |
| 1669 | true, true); |
| 1670 | } |
| 1671 | |
| 1672 | static int |
| 1673 | htab_lru_map_lookup_batch(struct bpf_map *map, const union bpf_attr *attr, |
| 1674 | union bpf_attr __user *uattr) |
| 1675 | { |
| 1676 | return __htab_map_lookup_and_delete_batch(map, attr, uattr, false, |
| 1677 | true, false); |
| 1678 | } |
| 1679 | |
| 1680 | static int |
| 1681 | htab_lru_map_lookup_and_delete_batch(struct bpf_map *map, |
| 1682 | const union bpf_attr *attr, |
| 1683 | union bpf_attr __user *uattr) |
| 1684 | { |
| 1685 | return __htab_map_lookup_and_delete_batch(map, attr, uattr, true, |
| 1686 | true, false); |
| 1687 | } |
| 1688 | |
Yonghong Song | d6c4503 | 2020-07-23 11:41:14 -0700 | [diff] [blame] | 1689 | struct bpf_iter_seq_hash_map_info { |
| 1690 | struct bpf_map *map; |
| 1691 | struct bpf_htab *htab; |
| 1692 | void *percpu_value_buf; // non-zero means percpu hash |
Yonghong Song | d6c4503 | 2020-07-23 11:41:14 -0700 | [diff] [blame] | 1693 | u32 bucket_id; |
| 1694 | u32 skip_elems; |
| 1695 | }; |
| 1696 | |
| 1697 | static struct htab_elem * |
| 1698 | bpf_hash_map_seq_find_next(struct bpf_iter_seq_hash_map_info *info, |
| 1699 | struct htab_elem *prev_elem) |
| 1700 | { |
| 1701 | const struct bpf_htab *htab = info->htab; |
Yonghong Song | d6c4503 | 2020-07-23 11:41:14 -0700 | [diff] [blame] | 1702 | u32 skip_elems = info->skip_elems; |
| 1703 | u32 bucket_id = info->bucket_id; |
| 1704 | struct hlist_nulls_head *head; |
| 1705 | struct hlist_nulls_node *n; |
| 1706 | struct htab_elem *elem; |
| 1707 | struct bucket *b; |
| 1708 | u32 i, count; |
| 1709 | |
| 1710 | if (bucket_id >= htab->n_buckets) |
| 1711 | return NULL; |
| 1712 | |
| 1713 | /* try to find next elem in the same bucket */ |
| 1714 | if (prev_elem) { |
| 1715 | /* no update/deletion on this bucket, prev_elem should be still valid |
| 1716 | * and we won't skip elements. |
| 1717 | */ |
| 1718 | n = rcu_dereference_raw(hlist_nulls_next_rcu(&prev_elem->hash_node)); |
| 1719 | elem = hlist_nulls_entry_safe(n, struct htab_elem, hash_node); |
| 1720 | if (elem) |
| 1721 | return elem; |
| 1722 | |
| 1723 | /* not found, unlock and go to the next bucket */ |
| 1724 | b = &htab->buckets[bucket_id++]; |
Yonghong Song | dc0988b | 2020-09-02 16:53:40 -0700 | [diff] [blame] | 1725 | rcu_read_unlock(); |
Yonghong Song | d6c4503 | 2020-07-23 11:41:14 -0700 | [diff] [blame] | 1726 | skip_elems = 0; |
| 1727 | } |
| 1728 | |
| 1729 | for (i = bucket_id; i < htab->n_buckets; i++) { |
| 1730 | b = &htab->buckets[i]; |
Yonghong Song | dc0988b | 2020-09-02 16:53:40 -0700 | [diff] [blame] | 1731 | rcu_read_lock(); |
Yonghong Song | d6c4503 | 2020-07-23 11:41:14 -0700 | [diff] [blame] | 1732 | |
| 1733 | count = 0; |
| 1734 | head = &b->head; |
| 1735 | hlist_nulls_for_each_entry_rcu(elem, n, head, hash_node) { |
| 1736 | if (count >= skip_elems) { |
Yonghong Song | d6c4503 | 2020-07-23 11:41:14 -0700 | [diff] [blame] | 1737 | info->bucket_id = i; |
| 1738 | info->skip_elems = count; |
| 1739 | return elem; |
| 1740 | } |
| 1741 | count++; |
| 1742 | } |
| 1743 | |
Yonghong Song | dc0988b | 2020-09-02 16:53:40 -0700 | [diff] [blame] | 1744 | rcu_read_unlock(); |
Yonghong Song | d6c4503 | 2020-07-23 11:41:14 -0700 | [diff] [blame] | 1745 | skip_elems = 0; |
| 1746 | } |
| 1747 | |
| 1748 | info->bucket_id = i; |
| 1749 | info->skip_elems = 0; |
| 1750 | return NULL; |
| 1751 | } |
| 1752 | |
| 1753 | static void *bpf_hash_map_seq_start(struct seq_file *seq, loff_t *pos) |
| 1754 | { |
| 1755 | struct bpf_iter_seq_hash_map_info *info = seq->private; |
| 1756 | struct htab_elem *elem; |
| 1757 | |
| 1758 | elem = bpf_hash_map_seq_find_next(info, NULL); |
| 1759 | if (!elem) |
| 1760 | return NULL; |
| 1761 | |
| 1762 | if (*pos == 0) |
| 1763 | ++*pos; |
| 1764 | return elem; |
| 1765 | } |
| 1766 | |
| 1767 | static void *bpf_hash_map_seq_next(struct seq_file *seq, void *v, loff_t *pos) |
| 1768 | { |
| 1769 | struct bpf_iter_seq_hash_map_info *info = seq->private; |
| 1770 | |
| 1771 | ++*pos; |
| 1772 | ++info->skip_elems; |
| 1773 | return bpf_hash_map_seq_find_next(info, v); |
| 1774 | } |
| 1775 | |
| 1776 | static int __bpf_hash_map_seq_show(struct seq_file *seq, struct htab_elem *elem) |
| 1777 | { |
| 1778 | struct bpf_iter_seq_hash_map_info *info = seq->private; |
| 1779 | u32 roundup_key_size, roundup_value_size; |
| 1780 | struct bpf_iter__bpf_map_elem ctx = {}; |
| 1781 | struct bpf_map *map = info->map; |
| 1782 | struct bpf_iter_meta meta; |
| 1783 | int ret = 0, off = 0, cpu; |
| 1784 | struct bpf_prog *prog; |
| 1785 | void __percpu *pptr; |
| 1786 | |
| 1787 | meta.seq = seq; |
| 1788 | prog = bpf_iter_get_info(&meta, elem == NULL); |
| 1789 | if (prog) { |
| 1790 | ctx.meta = &meta; |
| 1791 | ctx.map = info->map; |
| 1792 | if (elem) { |
| 1793 | roundup_key_size = round_up(map->key_size, 8); |
| 1794 | ctx.key = elem->key; |
| 1795 | if (!info->percpu_value_buf) { |
| 1796 | ctx.value = elem->key + roundup_key_size; |
| 1797 | } else { |
| 1798 | roundup_value_size = round_up(map->value_size, 8); |
| 1799 | pptr = htab_elem_get_ptr(elem, map->key_size); |
| 1800 | for_each_possible_cpu(cpu) { |
| 1801 | bpf_long_memcpy(info->percpu_value_buf + off, |
| 1802 | per_cpu_ptr(pptr, cpu), |
| 1803 | roundup_value_size); |
| 1804 | off += roundup_value_size; |
| 1805 | } |
| 1806 | ctx.value = info->percpu_value_buf; |
| 1807 | } |
| 1808 | } |
| 1809 | ret = bpf_iter_run_prog(prog, &ctx); |
| 1810 | } |
| 1811 | |
| 1812 | return ret; |
| 1813 | } |
| 1814 | |
| 1815 | static int bpf_hash_map_seq_show(struct seq_file *seq, void *v) |
| 1816 | { |
| 1817 | return __bpf_hash_map_seq_show(seq, v); |
| 1818 | } |
| 1819 | |
| 1820 | static void bpf_hash_map_seq_stop(struct seq_file *seq, void *v) |
| 1821 | { |
Yonghong Song | d6c4503 | 2020-07-23 11:41:14 -0700 | [diff] [blame] | 1822 | if (!v) |
| 1823 | (void)__bpf_hash_map_seq_show(seq, NULL); |
| 1824 | else |
Yonghong Song | dc0988b | 2020-09-02 16:53:40 -0700 | [diff] [blame] | 1825 | rcu_read_unlock(); |
Yonghong Song | d6c4503 | 2020-07-23 11:41:14 -0700 | [diff] [blame] | 1826 | } |
| 1827 | |
| 1828 | static int bpf_iter_init_hash_map(void *priv_data, |
| 1829 | struct bpf_iter_aux_info *aux) |
| 1830 | { |
| 1831 | struct bpf_iter_seq_hash_map_info *seq_info = priv_data; |
| 1832 | struct bpf_map *map = aux->map; |
| 1833 | void *value_buf; |
| 1834 | u32 buf_size; |
| 1835 | |
| 1836 | if (map->map_type == BPF_MAP_TYPE_PERCPU_HASH || |
| 1837 | map->map_type == BPF_MAP_TYPE_LRU_PERCPU_HASH) { |
| 1838 | buf_size = round_up(map->value_size, 8) * num_possible_cpus(); |
| 1839 | value_buf = kmalloc(buf_size, GFP_USER | __GFP_NOWARN); |
| 1840 | if (!value_buf) |
| 1841 | return -ENOMEM; |
| 1842 | |
| 1843 | seq_info->percpu_value_buf = value_buf; |
| 1844 | } |
| 1845 | |
| 1846 | seq_info->map = map; |
| 1847 | seq_info->htab = container_of(map, struct bpf_htab, map); |
| 1848 | return 0; |
| 1849 | } |
| 1850 | |
| 1851 | static void bpf_iter_fini_hash_map(void *priv_data) |
| 1852 | { |
| 1853 | struct bpf_iter_seq_hash_map_info *seq_info = priv_data; |
| 1854 | |
| 1855 | kfree(seq_info->percpu_value_buf); |
| 1856 | } |
| 1857 | |
| 1858 | static const struct seq_operations bpf_hash_map_seq_ops = { |
| 1859 | .start = bpf_hash_map_seq_start, |
| 1860 | .next = bpf_hash_map_seq_next, |
| 1861 | .stop = bpf_hash_map_seq_stop, |
| 1862 | .show = bpf_hash_map_seq_show, |
| 1863 | }; |
| 1864 | |
| 1865 | static const struct bpf_iter_seq_info iter_seq_info = { |
| 1866 | .seq_ops = &bpf_hash_map_seq_ops, |
| 1867 | .init_seq_private = bpf_iter_init_hash_map, |
| 1868 | .fini_seq_private = bpf_iter_fini_hash_map, |
| 1869 | .seq_priv_size = sizeof(struct bpf_iter_seq_hash_map_info), |
| 1870 | }; |
| 1871 | |
Andrey Ignatov | 41c48f3 | 2020-06-19 14:11:43 -0700 | [diff] [blame] | 1872 | static int htab_map_btf_id; |
Johannes Berg | 40077e0 | 2017-04-11 15:34:58 +0200 | [diff] [blame] | 1873 | const struct bpf_map_ops htab_map_ops = { |
Martin KaFai Lau | f4d0525 | 2020-08-27 18:18:06 -0700 | [diff] [blame] | 1874 | .map_meta_equal = bpf_map_meta_equal, |
Jakub Kicinski | 9328e0d | 2018-01-11 20:29:05 -0800 | [diff] [blame] | 1875 | .map_alloc_check = htab_map_alloc_check, |
Alexei Starovoitov | 0f8e4bd | 2014-11-13 17:36:45 -0800 | [diff] [blame] | 1876 | .map_alloc = htab_map_alloc, |
| 1877 | .map_free = htab_map_free, |
| 1878 | .map_get_next_key = htab_map_get_next_key, |
| 1879 | .map_lookup_elem = htab_map_lookup_elem, |
| 1880 | .map_update_elem = htab_map_update_elem, |
| 1881 | .map_delete_elem = htab_map_delete_elem, |
Alexei Starovoitov | 9015d2f | 2017-03-15 18:26:43 -0700 | [diff] [blame] | 1882 | .map_gen_lookup = htab_map_gen_lookup, |
Yonghong Song | 699c86d | 2018-08-09 08:55:20 -0700 | [diff] [blame] | 1883 | .map_seq_show_elem = htab_map_seq_show_elem, |
Yonghong Song | 0579963 | 2020-01-15 10:43:04 -0800 | [diff] [blame] | 1884 | BATCH_OPS(htab), |
Andrey Ignatov | 41c48f3 | 2020-06-19 14:11:43 -0700 | [diff] [blame] | 1885 | .map_btf_name = "bpf_htab", |
| 1886 | .map_btf_id = &htab_map_btf_id, |
Yonghong Song | d6c4503 | 2020-07-23 11:41:14 -0700 | [diff] [blame] | 1887 | .iter_seq_info = &iter_seq_info, |
Alexei Starovoitov | 0f8e4bd | 2014-11-13 17:36:45 -0800 | [diff] [blame] | 1888 | }; |
| 1889 | |
Andrey Ignatov | 2872e9a | 2020-06-19 14:11:44 -0700 | [diff] [blame] | 1890 | static int htab_lru_map_btf_id; |
Johannes Berg | 40077e0 | 2017-04-11 15:34:58 +0200 | [diff] [blame] | 1891 | const struct bpf_map_ops htab_lru_map_ops = { |
Martin KaFai Lau | f4d0525 | 2020-08-27 18:18:06 -0700 | [diff] [blame] | 1892 | .map_meta_equal = bpf_map_meta_equal, |
Jakub Kicinski | 9328e0d | 2018-01-11 20:29:05 -0800 | [diff] [blame] | 1893 | .map_alloc_check = htab_map_alloc_check, |
Martin KaFai Lau | 29ba732 | 2016-11-11 10:55:09 -0800 | [diff] [blame] | 1894 | .map_alloc = htab_map_alloc, |
| 1895 | .map_free = htab_map_free, |
| 1896 | .map_get_next_key = htab_map_get_next_key, |
| 1897 | .map_lookup_elem = htab_lru_map_lookup_elem, |
Daniel Borkmann | 50b045a | 2019-05-14 01:18:56 +0200 | [diff] [blame] | 1898 | .map_lookup_elem_sys_only = htab_lru_map_lookup_elem_sys, |
Martin KaFai Lau | 29ba732 | 2016-11-11 10:55:09 -0800 | [diff] [blame] | 1899 | .map_update_elem = htab_lru_map_update_elem, |
| 1900 | .map_delete_elem = htab_lru_map_delete_elem, |
Martin KaFai Lau | cc55542 | 2017-08-31 23:27:12 -0700 | [diff] [blame] | 1901 | .map_gen_lookup = htab_lru_map_gen_lookup, |
Yonghong Song | 699c86d | 2018-08-09 08:55:20 -0700 | [diff] [blame] | 1902 | .map_seq_show_elem = htab_map_seq_show_elem, |
Yonghong Song | 0579963 | 2020-01-15 10:43:04 -0800 | [diff] [blame] | 1903 | BATCH_OPS(htab_lru), |
Andrey Ignatov | 2872e9a | 2020-06-19 14:11:44 -0700 | [diff] [blame] | 1904 | .map_btf_name = "bpf_htab", |
| 1905 | .map_btf_id = &htab_lru_map_btf_id, |
Yonghong Song | d6c4503 | 2020-07-23 11:41:14 -0700 | [diff] [blame] | 1906 | .iter_seq_info = &iter_seq_info, |
Martin KaFai Lau | 29ba732 | 2016-11-11 10:55:09 -0800 | [diff] [blame] | 1907 | }; |
| 1908 | |
Alexei Starovoitov | 824bd0c | 2016-02-01 22:39:53 -0800 | [diff] [blame] | 1909 | /* Called from eBPF program */ |
| 1910 | static void *htab_percpu_map_lookup_elem(struct bpf_map *map, void *key) |
| 1911 | { |
| 1912 | struct htab_elem *l = __htab_map_lookup_elem(map, key); |
| 1913 | |
| 1914 | if (l) |
| 1915 | return this_cpu_ptr(htab_elem_get_ptr(l, map->key_size)); |
| 1916 | else |
| 1917 | return NULL; |
| 1918 | } |
| 1919 | |
Martin KaFai Lau | 8f84493 | 2016-11-11 10:55:10 -0800 | [diff] [blame] | 1920 | static void *htab_lru_percpu_map_lookup_elem(struct bpf_map *map, void *key) |
| 1921 | { |
| 1922 | struct htab_elem *l = __htab_map_lookup_elem(map, key); |
| 1923 | |
| 1924 | if (l) { |
| 1925 | bpf_lru_node_set_ref(&l->lru_node); |
| 1926 | return this_cpu_ptr(htab_elem_get_ptr(l, map->key_size)); |
| 1927 | } |
| 1928 | |
| 1929 | return NULL; |
| 1930 | } |
| 1931 | |
Alexei Starovoitov | 15a07b3 | 2016-02-01 22:39:55 -0800 | [diff] [blame] | 1932 | int bpf_percpu_hash_copy(struct bpf_map *map, void *key, void *value) |
| 1933 | { |
| 1934 | struct htab_elem *l; |
| 1935 | void __percpu *pptr; |
| 1936 | int ret = -ENOENT; |
| 1937 | int cpu, off = 0; |
| 1938 | u32 size; |
| 1939 | |
| 1940 | /* per_cpu areas are zero-filled and bpf programs can only |
| 1941 | * access 'value_size' of them, so copying rounded areas |
| 1942 | * will not leak any kernel data |
| 1943 | */ |
| 1944 | size = round_up(map->value_size, 8); |
| 1945 | rcu_read_lock(); |
| 1946 | l = __htab_map_lookup_elem(map, key); |
| 1947 | if (!l) |
| 1948 | goto out; |
Daniel Borkmann | 50b045a | 2019-05-14 01:18:56 +0200 | [diff] [blame] | 1949 | /* We do not mark LRU map element here in order to not mess up |
| 1950 | * eviction heuristics when user space does a map walk. |
| 1951 | */ |
Alexei Starovoitov | 15a07b3 | 2016-02-01 22:39:55 -0800 | [diff] [blame] | 1952 | pptr = htab_elem_get_ptr(l, map->key_size); |
| 1953 | for_each_possible_cpu(cpu) { |
| 1954 | bpf_long_memcpy(value + off, |
| 1955 | per_cpu_ptr(pptr, cpu), size); |
| 1956 | off += size; |
| 1957 | } |
| 1958 | ret = 0; |
| 1959 | out: |
| 1960 | rcu_read_unlock(); |
| 1961 | return ret; |
| 1962 | } |
| 1963 | |
| 1964 | int bpf_percpu_hash_update(struct bpf_map *map, void *key, void *value, |
| 1965 | u64 map_flags) |
| 1966 | { |
Martin KaFai Lau | 8f84493 | 2016-11-11 10:55:10 -0800 | [diff] [blame] | 1967 | struct bpf_htab *htab = container_of(map, struct bpf_htab, map); |
Sasha Levin | 6bbd9a0 | 2016-02-19 13:53:10 -0500 | [diff] [blame] | 1968 | int ret; |
| 1969 | |
| 1970 | rcu_read_lock(); |
Martin KaFai Lau | 8f84493 | 2016-11-11 10:55:10 -0800 | [diff] [blame] | 1971 | if (htab_is_lru(htab)) |
| 1972 | ret = __htab_lru_percpu_map_update_elem(map, key, value, |
| 1973 | map_flags, true); |
| 1974 | else |
| 1975 | ret = __htab_percpu_map_update_elem(map, key, value, map_flags, |
| 1976 | true); |
Sasha Levin | 6bbd9a0 | 2016-02-19 13:53:10 -0500 | [diff] [blame] | 1977 | rcu_read_unlock(); |
| 1978 | |
| 1979 | return ret; |
Alexei Starovoitov | 15a07b3 | 2016-02-01 22:39:55 -0800 | [diff] [blame] | 1980 | } |
| 1981 | |
Yonghong Song | c7b27c3 | 2018-08-29 14:43:13 -0700 | [diff] [blame] | 1982 | static void htab_percpu_map_seq_show_elem(struct bpf_map *map, void *key, |
| 1983 | struct seq_file *m) |
| 1984 | { |
| 1985 | struct htab_elem *l; |
| 1986 | void __percpu *pptr; |
| 1987 | int cpu; |
| 1988 | |
| 1989 | rcu_read_lock(); |
| 1990 | |
| 1991 | l = __htab_map_lookup_elem(map, key); |
| 1992 | if (!l) { |
| 1993 | rcu_read_unlock(); |
| 1994 | return; |
| 1995 | } |
| 1996 | |
| 1997 | btf_type_seq_show(map->btf, map->btf_key_type_id, key, m); |
| 1998 | seq_puts(m, ": {\n"); |
| 1999 | pptr = htab_elem_get_ptr(l, map->key_size); |
| 2000 | for_each_possible_cpu(cpu) { |
| 2001 | seq_printf(m, "\tcpu%d: ", cpu); |
| 2002 | btf_type_seq_show(map->btf, map->btf_value_type_id, |
| 2003 | per_cpu_ptr(pptr, cpu), m); |
| 2004 | seq_puts(m, "\n"); |
| 2005 | } |
| 2006 | seq_puts(m, "}\n"); |
| 2007 | |
| 2008 | rcu_read_unlock(); |
| 2009 | } |
| 2010 | |
Andrey Ignatov | 2872e9a | 2020-06-19 14:11:44 -0700 | [diff] [blame] | 2011 | static int htab_percpu_map_btf_id; |
Johannes Berg | 40077e0 | 2017-04-11 15:34:58 +0200 | [diff] [blame] | 2012 | const struct bpf_map_ops htab_percpu_map_ops = { |
Martin KaFai Lau | f4d0525 | 2020-08-27 18:18:06 -0700 | [diff] [blame] | 2013 | .map_meta_equal = bpf_map_meta_equal, |
Jakub Kicinski | 9328e0d | 2018-01-11 20:29:05 -0800 | [diff] [blame] | 2014 | .map_alloc_check = htab_map_alloc_check, |
Alexei Starovoitov | 824bd0c | 2016-02-01 22:39:53 -0800 | [diff] [blame] | 2015 | .map_alloc = htab_map_alloc, |
| 2016 | .map_free = htab_map_free, |
| 2017 | .map_get_next_key = htab_map_get_next_key, |
| 2018 | .map_lookup_elem = htab_percpu_map_lookup_elem, |
| 2019 | .map_update_elem = htab_percpu_map_update_elem, |
| 2020 | .map_delete_elem = htab_map_delete_elem, |
Yonghong Song | c7b27c3 | 2018-08-29 14:43:13 -0700 | [diff] [blame] | 2021 | .map_seq_show_elem = htab_percpu_map_seq_show_elem, |
Yonghong Song | 0579963 | 2020-01-15 10:43:04 -0800 | [diff] [blame] | 2022 | BATCH_OPS(htab_percpu), |
Andrey Ignatov | 2872e9a | 2020-06-19 14:11:44 -0700 | [diff] [blame] | 2023 | .map_btf_name = "bpf_htab", |
| 2024 | .map_btf_id = &htab_percpu_map_btf_id, |
Yonghong Song | d6c4503 | 2020-07-23 11:41:14 -0700 | [diff] [blame] | 2025 | .iter_seq_info = &iter_seq_info, |
Alexei Starovoitov | 824bd0c | 2016-02-01 22:39:53 -0800 | [diff] [blame] | 2026 | }; |
| 2027 | |
Andrey Ignatov | 2872e9a | 2020-06-19 14:11:44 -0700 | [diff] [blame] | 2028 | static int htab_lru_percpu_map_btf_id; |
Johannes Berg | 40077e0 | 2017-04-11 15:34:58 +0200 | [diff] [blame] | 2029 | const struct bpf_map_ops htab_lru_percpu_map_ops = { |
Martin KaFai Lau | f4d0525 | 2020-08-27 18:18:06 -0700 | [diff] [blame] | 2030 | .map_meta_equal = bpf_map_meta_equal, |
Jakub Kicinski | 9328e0d | 2018-01-11 20:29:05 -0800 | [diff] [blame] | 2031 | .map_alloc_check = htab_map_alloc_check, |
Martin KaFai Lau | 8f84493 | 2016-11-11 10:55:10 -0800 | [diff] [blame] | 2032 | .map_alloc = htab_map_alloc, |
| 2033 | .map_free = htab_map_free, |
| 2034 | .map_get_next_key = htab_map_get_next_key, |
| 2035 | .map_lookup_elem = htab_lru_percpu_map_lookup_elem, |
| 2036 | .map_update_elem = htab_lru_percpu_map_update_elem, |
| 2037 | .map_delete_elem = htab_lru_map_delete_elem, |
Yonghong Song | c7b27c3 | 2018-08-29 14:43:13 -0700 | [diff] [blame] | 2038 | .map_seq_show_elem = htab_percpu_map_seq_show_elem, |
Yonghong Song | 0579963 | 2020-01-15 10:43:04 -0800 | [diff] [blame] | 2039 | BATCH_OPS(htab_lru_percpu), |
Andrey Ignatov | 2872e9a | 2020-06-19 14:11:44 -0700 | [diff] [blame] | 2040 | .map_btf_name = "bpf_htab", |
| 2041 | .map_btf_id = &htab_lru_percpu_map_btf_id, |
Yonghong Song | d6c4503 | 2020-07-23 11:41:14 -0700 | [diff] [blame] | 2042 | .iter_seq_info = &iter_seq_info, |
Martin KaFai Lau | 8f84493 | 2016-11-11 10:55:10 -0800 | [diff] [blame] | 2043 | }; |
| 2044 | |
Jakub Kicinski | 9328e0d | 2018-01-11 20:29:05 -0800 | [diff] [blame] | 2045 | static int fd_htab_map_alloc_check(union bpf_attr *attr) |
Martin KaFai Lau | bcc6b1b | 2017-03-22 10:00:34 -0700 | [diff] [blame] | 2046 | { |
Martin KaFai Lau | bcc6b1b | 2017-03-22 10:00:34 -0700 | [diff] [blame] | 2047 | if (attr->value_size != sizeof(u32)) |
Jakub Kicinski | 9328e0d | 2018-01-11 20:29:05 -0800 | [diff] [blame] | 2048 | return -EINVAL; |
| 2049 | return htab_map_alloc_check(attr); |
Martin KaFai Lau | bcc6b1b | 2017-03-22 10:00:34 -0700 | [diff] [blame] | 2050 | } |
| 2051 | |
| 2052 | static void fd_htab_map_free(struct bpf_map *map) |
| 2053 | { |
| 2054 | struct bpf_htab *htab = container_of(map, struct bpf_htab, map); |
| 2055 | struct hlist_nulls_node *n; |
| 2056 | struct hlist_nulls_head *head; |
| 2057 | struct htab_elem *l; |
| 2058 | int i; |
| 2059 | |
| 2060 | for (i = 0; i < htab->n_buckets; i++) { |
| 2061 | head = select_bucket(htab, i); |
| 2062 | |
| 2063 | hlist_nulls_for_each_entry_safe(l, n, head, hash_node) { |
| 2064 | void *ptr = fd_htab_map_get_ptr(map, l); |
| 2065 | |
| 2066 | map->ops->map_fd_put_ptr(ptr); |
| 2067 | } |
| 2068 | } |
| 2069 | |
| 2070 | htab_map_free(map); |
| 2071 | } |
| 2072 | |
| 2073 | /* only called from syscall */ |
Martin KaFai Lau | 14dc6f0 | 2017-06-27 23:08:34 -0700 | [diff] [blame] | 2074 | int bpf_fd_htab_map_lookup_elem(struct bpf_map *map, void *key, u32 *value) |
| 2075 | { |
| 2076 | void **ptr; |
| 2077 | int ret = 0; |
| 2078 | |
| 2079 | if (!map->ops->map_fd_sys_lookup_elem) |
| 2080 | return -ENOTSUPP; |
| 2081 | |
| 2082 | rcu_read_lock(); |
| 2083 | ptr = htab_map_lookup_elem(map, key); |
| 2084 | if (ptr) |
| 2085 | *value = map->ops->map_fd_sys_lookup_elem(READ_ONCE(*ptr)); |
| 2086 | else |
| 2087 | ret = -ENOENT; |
| 2088 | rcu_read_unlock(); |
| 2089 | |
| 2090 | return ret; |
| 2091 | } |
| 2092 | |
| 2093 | /* only called from syscall */ |
Martin KaFai Lau | bcc6b1b | 2017-03-22 10:00:34 -0700 | [diff] [blame] | 2094 | int bpf_fd_htab_map_update_elem(struct bpf_map *map, struct file *map_file, |
| 2095 | void *key, void *value, u64 map_flags) |
| 2096 | { |
| 2097 | void *ptr; |
| 2098 | int ret; |
| 2099 | u32 ufd = *(u32 *)value; |
| 2100 | |
| 2101 | ptr = map->ops->map_fd_get_ptr(map, map_file, ufd); |
| 2102 | if (IS_ERR(ptr)) |
| 2103 | return PTR_ERR(ptr); |
| 2104 | |
| 2105 | ret = htab_map_update_elem(map, key, &ptr, map_flags); |
| 2106 | if (ret) |
| 2107 | map->ops->map_fd_put_ptr(ptr); |
| 2108 | |
| 2109 | return ret; |
| 2110 | } |
| 2111 | |
| 2112 | static struct bpf_map *htab_of_map_alloc(union bpf_attr *attr) |
| 2113 | { |
| 2114 | struct bpf_map *map, *inner_map_meta; |
| 2115 | |
| 2116 | inner_map_meta = bpf_map_meta_alloc(attr->inner_map_fd); |
| 2117 | if (IS_ERR(inner_map_meta)) |
| 2118 | return inner_map_meta; |
| 2119 | |
Jakub Kicinski | 9328e0d | 2018-01-11 20:29:05 -0800 | [diff] [blame] | 2120 | map = htab_map_alloc(attr); |
Martin KaFai Lau | bcc6b1b | 2017-03-22 10:00:34 -0700 | [diff] [blame] | 2121 | if (IS_ERR(map)) { |
| 2122 | bpf_map_meta_free(inner_map_meta); |
| 2123 | return map; |
| 2124 | } |
| 2125 | |
| 2126 | map->inner_map_meta = inner_map_meta; |
| 2127 | |
| 2128 | return map; |
| 2129 | } |
| 2130 | |
| 2131 | static void *htab_of_map_lookup_elem(struct bpf_map *map, void *key) |
| 2132 | { |
| 2133 | struct bpf_map **inner_map = htab_map_lookup_elem(map, key); |
| 2134 | |
| 2135 | if (!inner_map) |
| 2136 | return NULL; |
| 2137 | |
| 2138 | return READ_ONCE(*inner_map); |
| 2139 | } |
| 2140 | |
Daniel Borkmann | 4a8f87e | 2020-10-11 01:40:03 +0200 | [diff] [blame] | 2141 | static int htab_of_map_gen_lookup(struct bpf_map *map, |
Daniel Borkmann | 7b0c2a0 | 2017-08-19 03:12:46 +0200 | [diff] [blame] | 2142 | struct bpf_insn *insn_buf) |
| 2143 | { |
| 2144 | struct bpf_insn *insn = insn_buf; |
| 2145 | const int ret = BPF_REG_0; |
| 2146 | |
Daniel Borkmann | 09772d9 | 2018-06-02 23:06:35 +0200 | [diff] [blame] | 2147 | BUILD_BUG_ON(!__same_type(&__htab_map_lookup_elem, |
| 2148 | (void *(*)(struct bpf_map *map, void *key))NULL)); |
| 2149 | *insn++ = BPF_EMIT_CALL(BPF_CAST_CALL(__htab_map_lookup_elem)); |
Daniel Borkmann | 7b0c2a0 | 2017-08-19 03:12:46 +0200 | [diff] [blame] | 2150 | *insn++ = BPF_JMP_IMM(BPF_JEQ, ret, 0, 2); |
| 2151 | *insn++ = BPF_ALU64_IMM(BPF_ADD, ret, |
| 2152 | offsetof(struct htab_elem, key) + |
| 2153 | round_up(map->key_size, 8)); |
| 2154 | *insn++ = BPF_LDX_MEM(BPF_DW, ret, ret, 0); |
| 2155 | |
| 2156 | return insn - insn_buf; |
| 2157 | } |
| 2158 | |
Martin KaFai Lau | bcc6b1b | 2017-03-22 10:00:34 -0700 | [diff] [blame] | 2159 | static void htab_of_map_free(struct bpf_map *map) |
| 2160 | { |
| 2161 | bpf_map_meta_free(map->inner_map_meta); |
| 2162 | fd_htab_map_free(map); |
| 2163 | } |
| 2164 | |
Andrey Ignatov | 2872e9a | 2020-06-19 14:11:44 -0700 | [diff] [blame] | 2165 | static int htab_of_maps_map_btf_id; |
Johannes Berg | 40077e0 | 2017-04-11 15:34:58 +0200 | [diff] [blame] | 2166 | const struct bpf_map_ops htab_of_maps_map_ops = { |
Jakub Kicinski | 9328e0d | 2018-01-11 20:29:05 -0800 | [diff] [blame] | 2167 | .map_alloc_check = fd_htab_map_alloc_check, |
Martin KaFai Lau | bcc6b1b | 2017-03-22 10:00:34 -0700 | [diff] [blame] | 2168 | .map_alloc = htab_of_map_alloc, |
| 2169 | .map_free = htab_of_map_free, |
| 2170 | .map_get_next_key = htab_map_get_next_key, |
| 2171 | .map_lookup_elem = htab_of_map_lookup_elem, |
| 2172 | .map_delete_elem = htab_map_delete_elem, |
| 2173 | .map_fd_get_ptr = bpf_map_fd_get_ptr, |
| 2174 | .map_fd_put_ptr = bpf_map_fd_put_ptr, |
Martin KaFai Lau | 14dc6f0 | 2017-06-27 23:08:34 -0700 | [diff] [blame] | 2175 | .map_fd_sys_lookup_elem = bpf_map_fd_sys_lookup_elem, |
Daniel Borkmann | 7b0c2a0 | 2017-08-19 03:12:46 +0200 | [diff] [blame] | 2176 | .map_gen_lookup = htab_of_map_gen_lookup, |
Daniel Borkmann | e8d2bec | 2018-08-12 01:59:17 +0200 | [diff] [blame] | 2177 | .map_check_btf = map_check_no_btf, |
Andrey Ignatov | 2872e9a | 2020-06-19 14:11:44 -0700 | [diff] [blame] | 2178 | .map_btf_name = "bpf_htab", |
| 2179 | .map_btf_id = &htab_of_maps_map_btf_id, |
Martin KaFai Lau | bcc6b1b | 2017-03-22 10:00:34 -0700 | [diff] [blame] | 2180 | }; |