blob: 15dbc15c5b0c96fb9429c797abb539abd6fcc0a5 [file] [log] [blame]
Thomas Gleixner5b497af2019-05-29 07:18:09 -07001// SPDX-License-Identifier: GPL-2.0-only
John Fastabend546ac1f2017-07-17 09:28:56 -07002/* Copyright (c) 2017 Covalent IO, Inc. http://covalent.io
John Fastabend546ac1f2017-07-17 09:28:56 -07003 */
4
5/* Devmaps primary use is as a backend map for XDP BPF helper call
6 * bpf_redirect_map(). Because XDP is mostly concerned with performance we
7 * spent some effort to ensure the datapath with redirect maps does not use
8 * any locking. This is a quick note on the details.
9 *
10 * We have three possible paths to get into the devmap control plane bpf
11 * syscalls, bpf programs, and driver side xmit/flush operations. A bpf syscall
12 * will invoke an update, delete, or lookup operation. To ensure updates and
13 * deletes appear atomic from the datapath side xchg() is used to modify the
14 * netdev_map array. Then because the datapath does a lookup into the netdev_map
15 * array (read-only) from an RCU critical section we use call_rcu() to wait for
16 * an rcu grace period before free'ing the old data structures. This ensures the
17 * datapath always has a valid copy. However, the datapath does a "flush"
18 * operation that pushes any pending packets in the driver outside the RCU
19 * critical section. Each bpf_dtab_netdev tracks these pending operations using
20 * an atomic per-cpu bitmap. The bpf_dtab_netdev object will not be destroyed
21 * until all bits are cleared indicating outstanding flush operations have
22 * completed.
23 *
24 * BPF syscalls may race with BPF program calls on any of the update, delete
25 * or lookup operations. As noted above the xchg() operation also keep the
26 * netdev_map consistent in this case. From the devmap side BPF programs
27 * calling into these operations are the same as multiple user space threads
28 * making system calls.
John Fastabend2ddf71e2017-07-17 09:30:02 -070029 *
30 * Finally, any of the above may race with a netdev_unregister notifier. The
31 * unregister notifier must search for net devices in the map structure that
32 * contain a reference to the net device and remove them. This is a two step
33 * process (a) dereference the bpf_dtab_netdev object in netdev_map and (b)
34 * check to see if the ifindex is the same as the net_device being removed.
John Fastabend4cc7b952017-08-04 22:02:19 -070035 * When removing the dev a cmpxchg() is used to ensure the correct dev is
36 * removed, in the case of a concurrent update or delete operation it is
37 * possible that the initially referenced dev is no longer in the map. As the
38 * notifier hook walks the map we know that new dev references can not be
39 * added by the user because core infrastructure ensures dev_get_by_index()
40 * calls will fail at this point.
John Fastabend546ac1f2017-07-17 09:28:56 -070041 */
42#include <linux/bpf.h>
Jesper Dangaard Brouer67f29e02018-05-24 16:45:46 +020043#include <net/xdp.h>
John Fastabend546ac1f2017-07-17 09:28:56 -070044#include <linux/filter.h>
Jesper Dangaard Brouer67f29e02018-05-24 16:45:46 +020045#include <trace/events/xdp.h>
John Fastabend546ac1f2017-07-17 09:28:56 -070046
Chenbo Feng6e71b042017-10-18 13:00:22 -070047#define DEV_CREATE_FLAG_MASK \
48 (BPF_F_NUMA_NODE | BPF_F_RDONLY | BPF_F_WRONLY)
49
Jesper Dangaard Brouer5d053f92018-05-24 16:45:51 +020050#define DEV_MAP_BULK_SIZE 16
51struct xdp_bulk_queue {
52 struct xdp_frame *q[DEV_MAP_BULK_SIZE];
Jesper Dangaard Brouer38edddb2018-05-24 16:45:57 +020053 struct net_device *dev_rx;
Jesper Dangaard Brouer5d053f92018-05-24 16:45:51 +020054 unsigned int count;
55};
56
John Fastabend546ac1f2017-07-17 09:28:56 -070057struct bpf_dtab_netdev {
Jesper Dangaard Brouer67f29e02018-05-24 16:45:46 +020058 struct net_device *dev; /* must be first member, due to tracepoint */
John Fastabend546ac1f2017-07-17 09:28:56 -070059 struct bpf_dtab *dtab;
Daniel Borkmannaf4d0452017-08-23 01:47:54 +020060 unsigned int bit;
Jesper Dangaard Brouer5d053f92018-05-24 16:45:51 +020061 struct xdp_bulk_queue __percpu *bulkq;
Daniel Borkmannaf4d0452017-08-23 01:47:54 +020062 struct rcu_head rcu;
John Fastabend546ac1f2017-07-17 09:28:56 -070063};
64
65struct bpf_dtab {
66 struct bpf_map map;
67 struct bpf_dtab_netdev **netdev_map;
Daniel Borkmannaf4d0452017-08-23 01:47:54 +020068 unsigned long __percpu *flush_needed;
John Fastabend2ddf71e2017-07-17 09:30:02 -070069 struct list_head list;
John Fastabend546ac1f2017-07-17 09:28:56 -070070};
71
John Fastabend4cc7b952017-08-04 22:02:19 -070072static DEFINE_SPINLOCK(dev_map_lock);
John Fastabend2ddf71e2017-07-17 09:30:02 -070073static LIST_HEAD(dev_map_list);
74
Daniel Borkmannaf4d0452017-08-23 01:47:54 +020075static u64 dev_map_bitmap_size(const union bpf_attr *attr)
76{
John Fastabend8695a532017-10-19 09:03:52 -070077 return BITS_TO_LONGS((u64) attr->max_entries) * sizeof(unsigned long);
Daniel Borkmannaf4d0452017-08-23 01:47:54 +020078}
79
John Fastabend546ac1f2017-07-17 09:28:56 -070080static struct bpf_map *dev_map_alloc(union bpf_attr *attr)
81{
82 struct bpf_dtab *dtab;
Tobias Klauser582db7e2017-09-18 15:03:46 +020083 int err = -EINVAL;
John Fastabend546ac1f2017-07-17 09:28:56 -070084 u64 cost;
John Fastabend546ac1f2017-07-17 09:28:56 -070085
John Fastabend9ef2a8c2017-10-18 07:11:44 -070086 if (!capable(CAP_NET_ADMIN))
87 return ERR_PTR(-EPERM);
88
John Fastabend546ac1f2017-07-17 09:28:56 -070089 /* check sanity of attributes */
90 if (attr->max_entries == 0 || attr->key_size != 4 ||
Chenbo Feng6e71b042017-10-18 13:00:22 -070091 attr->value_size != 4 || attr->map_flags & ~DEV_CREATE_FLAG_MASK)
John Fastabend546ac1f2017-07-17 09:28:56 -070092 return ERR_PTR(-EINVAL);
93
John Fastabend546ac1f2017-07-17 09:28:56 -070094 dtab = kzalloc(sizeof(*dtab), GFP_USER);
95 if (!dtab)
96 return ERR_PTR(-ENOMEM);
97
Jakub Kicinskibd475642018-01-11 20:29:06 -080098 bpf_map_init_from_attr(&dtab->map, attr);
John Fastabend546ac1f2017-07-17 09:28:56 -070099
John Fastabend546ac1f2017-07-17 09:28:56 -0700100 /* make sure page count doesn't overflow */
101 cost = (u64) dtab->map.max_entries * sizeof(struct bpf_dtab_netdev *);
Daniel Borkmannaf4d0452017-08-23 01:47:54 +0200102 cost += dev_map_bitmap_size(attr) * num_possible_cpus();
John Fastabend546ac1f2017-07-17 09:28:56 -0700103 if (cost >= U32_MAX - PAGE_SIZE)
104 goto free_dtab;
105
106 dtab->map.pages = round_up(cost, PAGE_SIZE) >> PAGE_SHIFT;
107
108 /* if map size is larger than memlock limit, reject it early */
109 err = bpf_map_precharge_memlock(dtab->map.pages);
110 if (err)
111 goto free_dtab;
112
Tobias Klauser582db7e2017-09-18 15:03:46 +0200113 err = -ENOMEM;
114
John Fastabend11393cc2017-07-17 09:29:40 -0700115 /* A per cpu bitfield with a bit per possible net device */
Daniel Borkmann82f8dd22017-10-17 16:55:53 +0200116 dtab->flush_needed = __alloc_percpu_gfp(dev_map_bitmap_size(attr),
117 __alignof__(unsigned long),
118 GFP_KERNEL | __GFP_NOWARN);
John Fastabend11393cc2017-07-17 09:29:40 -0700119 if (!dtab->flush_needed)
120 goto free_dtab;
121
John Fastabend546ac1f2017-07-17 09:28:56 -0700122 dtab->netdev_map = bpf_map_area_alloc(dtab->map.max_entries *
Martin KaFai Lau96eabe72017-08-18 11:28:00 -0700123 sizeof(struct bpf_dtab_netdev *),
124 dtab->map.numa_node);
John Fastabend546ac1f2017-07-17 09:28:56 -0700125 if (!dtab->netdev_map)
126 goto free_dtab;
127
John Fastabend4cc7b952017-08-04 22:02:19 -0700128 spin_lock(&dev_map_lock);
129 list_add_tail_rcu(&dtab->list, &dev_map_list);
130 spin_unlock(&dev_map_lock);
John Fastabend546ac1f2017-07-17 09:28:56 -0700131
Daniel Borkmannaf4d0452017-08-23 01:47:54 +0200132 return &dtab->map;
John Fastabend546ac1f2017-07-17 09:28:56 -0700133free_dtab:
John Fastabend11393cc2017-07-17 09:29:40 -0700134 free_percpu(dtab->flush_needed);
John Fastabend546ac1f2017-07-17 09:28:56 -0700135 kfree(dtab);
Tobias Klauser582db7e2017-09-18 15:03:46 +0200136 return ERR_PTR(err);
John Fastabend546ac1f2017-07-17 09:28:56 -0700137}
138
139static void dev_map_free(struct bpf_map *map)
140{
141 struct bpf_dtab *dtab = container_of(map, struct bpf_dtab, map);
John Fastabend11393cc2017-07-17 09:29:40 -0700142 int i, cpu;
John Fastabend546ac1f2017-07-17 09:28:56 -0700143
144 /* At this point bpf_prog->aux->refcnt == 0 and this map->refcnt == 0,
145 * so the programs (can be more than one that used this map) were
146 * disconnected from events. Wait for outstanding critical sections in
147 * these programs to complete. The rcu critical section only guarantees
148 * no further reads against netdev_map. It does __not__ ensure pending
149 * flush operations (if any) are complete.
150 */
Daniel Borkmann274043c2017-08-21 01:48:12 +0200151
152 spin_lock(&dev_map_lock);
153 list_del_rcu(&dtab->list);
154 spin_unlock(&dev_map_lock);
155
Daniel Borkmannf6069b92018-08-17 23:26:14 +0200156 bpf_clear_redirect_map(map);
John Fastabend546ac1f2017-07-17 09:28:56 -0700157 synchronize_rcu();
158
Eric Dumazet2baae352019-05-13 09:59:16 -0700159 /* Make sure prior __dev_map_entry_free() have completed. */
160 rcu_barrier();
161
John Fastabend11393cc2017-07-17 09:29:40 -0700162 /* To ensure all pending flush operations have completed wait for flush
163 * bitmap to indicate all flush_needed bits to be zero on _all_ cpus.
164 * Because the above synchronize_rcu() ensures the map is disconnected
165 * from the program we can assume no new bits will be set.
166 */
167 for_each_online_cpu(cpu) {
168 unsigned long *bitmap = per_cpu_ptr(dtab->flush_needed, cpu);
169
170 while (!bitmap_empty(bitmap, dtab->map.max_entries))
John Fastabend374fb012017-09-08 14:01:10 -0700171 cond_resched();
John Fastabend11393cc2017-07-17 09:29:40 -0700172 }
173
John Fastabend546ac1f2017-07-17 09:28:56 -0700174 for (i = 0; i < dtab->map.max_entries; i++) {
175 struct bpf_dtab_netdev *dev;
176
177 dev = dtab->netdev_map[i];
178 if (!dev)
179 continue;
180
181 dev_put(dev->dev);
182 kfree(dev);
183 }
184
John Fastabend11393cc2017-07-17 09:29:40 -0700185 free_percpu(dtab->flush_needed);
John Fastabend546ac1f2017-07-17 09:28:56 -0700186 bpf_map_area_free(dtab->netdev_map);
187 kfree(dtab);
188}
189
190static int dev_map_get_next_key(struct bpf_map *map, void *key, void *next_key)
191{
192 struct bpf_dtab *dtab = container_of(map, struct bpf_dtab, map);
193 u32 index = key ? *(u32 *)key : U32_MAX;
Daniel Borkmannaf4d0452017-08-23 01:47:54 +0200194 u32 *next = next_key;
John Fastabend546ac1f2017-07-17 09:28:56 -0700195
196 if (index >= dtab->map.max_entries) {
197 *next = 0;
198 return 0;
199 }
200
201 if (index == dtab->map.max_entries - 1)
202 return -ENOENT;
John Fastabend546ac1f2017-07-17 09:28:56 -0700203 *next = index + 1;
204 return 0;
205}
206
Daniel Borkmannaf4d0452017-08-23 01:47:54 +0200207void __dev_map_insert_ctx(struct bpf_map *map, u32 bit)
John Fastabend11393cc2017-07-17 09:29:40 -0700208{
209 struct bpf_dtab *dtab = container_of(map, struct bpf_dtab, map);
210 unsigned long *bitmap = this_cpu_ptr(dtab->flush_needed);
211
Daniel Borkmannaf4d0452017-08-23 01:47:54 +0200212 __set_bit(bit, bitmap);
John Fastabend97f91a72017-07-17 09:29:18 -0700213}
214
Jesper Dangaard Brouer5d053f92018-05-24 16:45:51 +0200215static int bq_xmit_all(struct bpf_dtab_netdev *obj,
Jesper Dangaard Brouer1bf91162018-08-08 23:00:45 +0200216 struct xdp_bulk_queue *bq, u32 flags,
217 bool in_napi_ctx)
Jesper Dangaard Brouer5d053f92018-05-24 16:45:51 +0200218{
219 struct net_device *dev = obj->dev;
Jesper Dangaard Brouere74de522018-05-24 16:46:17 +0200220 int sent = 0, drops = 0, err = 0;
Jesper Dangaard Brouer5d053f92018-05-24 16:45:51 +0200221 int i;
222
223 if (unlikely(!bq->count))
224 return 0;
225
226 for (i = 0; i < bq->count; i++) {
227 struct xdp_frame *xdpf = bq->q[i];
228
229 prefetch(xdpf);
230 }
231
Jesper Dangaard Brouerc1ece6b2018-05-31 11:00:23 +0200232 sent = dev->netdev_ops->ndo_xdp_xmit(dev, bq->count, bq->q, flags);
Jesper Dangaard Brouer735fc402018-05-24 16:46:12 +0200233 if (sent < 0) {
Jesper Dangaard Brouere74de522018-05-24 16:46:17 +0200234 err = sent;
Jesper Dangaard Brouer735fc402018-05-24 16:46:12 +0200235 sent = 0;
236 goto error;
Jesper Dangaard Brouer5d053f92018-05-24 16:45:51 +0200237 }
Jesper Dangaard Brouer735fc402018-05-24 16:46:12 +0200238 drops = bq->count - sent;
239out:
Jesper Dangaard Brouer5d053f92018-05-24 16:45:51 +0200240 bq->count = 0;
241
Jesper Dangaard Brouer38edddb2018-05-24 16:45:57 +0200242 trace_xdp_devmap_xmit(&obj->dtab->map, obj->bit,
Jesper Dangaard Brouere74de522018-05-24 16:46:17 +0200243 sent, drops, bq->dev_rx, dev, err);
Jesper Dangaard Brouer38edddb2018-05-24 16:45:57 +0200244 bq->dev_rx = NULL;
Jesper Dangaard Brouer5d053f92018-05-24 16:45:51 +0200245 return 0;
Jesper Dangaard Brouer735fc402018-05-24 16:46:12 +0200246error:
247 /* If ndo_xdp_xmit fails with an errno, no frames have been
248 * xmit'ed and it's our responsibility to them free all.
249 */
250 for (i = 0; i < bq->count; i++) {
251 struct xdp_frame *xdpf = bq->q[i];
252
253 /* RX path under NAPI protection, can return frames faster */
Jesper Dangaard Brouer1bf91162018-08-08 23:00:45 +0200254 if (likely(in_napi_ctx))
255 xdp_return_frame_rx_napi(xdpf);
256 else
257 xdp_return_frame(xdpf);
Jesper Dangaard Brouer735fc402018-05-24 16:46:12 +0200258 drops++;
259 }
260 goto out;
Jesper Dangaard Brouer5d053f92018-05-24 16:45:51 +0200261}
262
John Fastabend11393cc2017-07-17 09:29:40 -0700263/* __dev_map_flush is called from xdp_do_flush_map() which _must_ be signaled
264 * from the driver before returning from its napi->poll() routine. The poll()
265 * routine is called either from busy_poll context or net_rx_action signaled
266 * from NET_RX_SOFTIRQ. Either way the poll routine must complete before the
267 * net device can be torn down. On devmap tear down we ensure the ctx bitmap
268 * is zeroed before completing to ensure all flush operations have completed.
269 */
270void __dev_map_flush(struct bpf_map *map)
271{
272 struct bpf_dtab *dtab = container_of(map, struct bpf_dtab, map);
273 unsigned long *bitmap = this_cpu_ptr(dtab->flush_needed);
274 u32 bit;
275
276 for_each_set_bit(bit, bitmap, map->max_entries) {
277 struct bpf_dtab_netdev *dev = READ_ONCE(dtab->netdev_map[bit]);
Jesper Dangaard Brouer5d053f92018-05-24 16:45:51 +0200278 struct xdp_bulk_queue *bq;
John Fastabend11393cc2017-07-17 09:29:40 -0700279
280 /* This is possible if the dev entry is removed by user space
281 * between xdp redirect and flush op.
282 */
283 if (unlikely(!dev))
284 continue;
285
John Fastabend11393cc2017-07-17 09:29:40 -0700286 __clear_bit(bit, bitmap);
Jesper Dangaard Brouer5d053f92018-05-24 16:45:51 +0200287
288 bq = this_cpu_ptr(dev->bulkq);
Jesper Dangaard Brouer1bf91162018-08-08 23:00:45 +0200289 bq_xmit_all(dev, bq, XDP_XMIT_FLUSH, true);
John Fastabend11393cc2017-07-17 09:29:40 -0700290 }
291}
292
John Fastabend546ac1f2017-07-17 09:28:56 -0700293/* rcu_read_lock (from syscall and BPF contexts) ensures that if a delete and/or
294 * update happens in parallel here a dev_put wont happen until after reading the
295 * ifindex.
296 */
Jesper Dangaard Brouer67f29e02018-05-24 16:45:46 +0200297struct bpf_dtab_netdev *__dev_map_lookup_elem(struct bpf_map *map, u32 key)
John Fastabend546ac1f2017-07-17 09:28:56 -0700298{
299 struct bpf_dtab *dtab = container_of(map, struct bpf_dtab, map);
Jesper Dangaard Brouer67f29e02018-05-24 16:45:46 +0200300 struct bpf_dtab_netdev *obj;
John Fastabend546ac1f2017-07-17 09:28:56 -0700301
Daniel Borkmannaf4d0452017-08-23 01:47:54 +0200302 if (key >= map->max_entries)
John Fastabend546ac1f2017-07-17 09:28:56 -0700303 return NULL;
304
Jesper Dangaard Brouer67f29e02018-05-24 16:45:46 +0200305 obj = READ_ONCE(dtab->netdev_map[key]);
306 return obj;
307}
308
Jesper Dangaard Brouer5d053f92018-05-24 16:45:51 +0200309/* Runs under RCU-read-side, plus in softirq under NAPI protection.
310 * Thus, safe percpu variable access.
311 */
Jesper Dangaard Brouer38edddb2018-05-24 16:45:57 +0200312static int bq_enqueue(struct bpf_dtab_netdev *obj, struct xdp_frame *xdpf,
313 struct net_device *dev_rx)
314
Jesper Dangaard Brouer5d053f92018-05-24 16:45:51 +0200315{
316 struct xdp_bulk_queue *bq = this_cpu_ptr(obj->bulkq);
317
318 if (unlikely(bq->count == DEV_MAP_BULK_SIZE))
Jesper Dangaard Brouer1bf91162018-08-08 23:00:45 +0200319 bq_xmit_all(obj, bq, 0, true);
Jesper Dangaard Brouer5d053f92018-05-24 16:45:51 +0200320
Jesper Dangaard Brouer38edddb2018-05-24 16:45:57 +0200321 /* Ingress dev_rx will be the same for all xdp_frame's in
322 * bulk_queue, because bq stored per-CPU and must be flushed
323 * from net_device drivers NAPI func end.
324 */
325 if (!bq->dev_rx)
326 bq->dev_rx = dev_rx;
327
Jesper Dangaard Brouer5d053f92018-05-24 16:45:51 +0200328 bq->q[bq->count++] = xdpf;
329 return 0;
330}
331
Jesper Dangaard Brouer38edddb2018-05-24 16:45:57 +0200332int dev_map_enqueue(struct bpf_dtab_netdev *dst, struct xdp_buff *xdp,
333 struct net_device *dev_rx)
Jesper Dangaard Brouer67f29e02018-05-24 16:45:46 +0200334{
335 struct net_device *dev = dst->dev;
336 struct xdp_frame *xdpf;
Toshiaki Makitad8d72182018-07-06 11:49:00 +0900337 int err;
Jesper Dangaard Brouer67f29e02018-05-24 16:45:46 +0200338
339 if (!dev->netdev_ops->ndo_xdp_xmit)
340 return -EOPNOTSUPP;
341
Toshiaki Makitad8d72182018-07-06 11:49:00 +0900342 err = xdp_ok_fwd_dev(dev, xdp->data_end - xdp->data);
343 if (unlikely(err))
344 return err;
345
Jesper Dangaard Brouer67f29e02018-05-24 16:45:46 +0200346 xdpf = convert_to_xdp_frame(xdp);
347 if (unlikely(!xdpf))
348 return -EOVERFLOW;
349
Jesper Dangaard Brouer38edddb2018-05-24 16:45:57 +0200350 return bq_enqueue(dst, xdpf, dev_rx);
John Fastabend546ac1f2017-07-17 09:28:56 -0700351}
352
Toshiaki Makita6d5fc192018-06-14 11:07:42 +0900353int dev_map_generic_redirect(struct bpf_dtab_netdev *dst, struct sk_buff *skb,
354 struct bpf_prog *xdp_prog)
355{
356 int err;
357
Toshiaki Makitad8d72182018-07-06 11:49:00 +0900358 err = xdp_ok_fwd_dev(dst->dev, skb->len);
Toshiaki Makita6d5fc192018-06-14 11:07:42 +0900359 if (unlikely(err))
360 return err;
361 skb->dev = dst->dev;
362 generic_xdp_tx(skb, xdp_prog);
363
364 return 0;
365}
366
Daniel Borkmannaf4d0452017-08-23 01:47:54 +0200367static void *dev_map_lookup_elem(struct bpf_map *map, void *key)
John Fastabend11393cc2017-07-17 09:29:40 -0700368{
Jesper Dangaard Brouer67f29e02018-05-24 16:45:46 +0200369 struct bpf_dtab_netdev *obj = __dev_map_lookup_elem(map, *(u32 *)key);
Colin Ian King71b2c872018-05-30 16:09:16 +0100370 struct net_device *dev = obj ? obj->dev : NULL;
Daniel Borkmannaf4d0452017-08-23 01:47:54 +0200371
372 return dev ? &dev->ifindex : NULL;
373}
374
375static void dev_map_flush_old(struct bpf_dtab_netdev *dev)
376{
Jesper Dangaard Brouerc1ece6b2018-05-31 11:00:23 +0200377 if (dev->dev->netdev_ops->ndo_xdp_xmit) {
Jesper Dangaard Brouer5d053f92018-05-24 16:45:51 +0200378 struct xdp_bulk_queue *bq;
John Fastabend11393cc2017-07-17 09:29:40 -0700379 unsigned long *bitmap;
Jesper Dangaard Brouer5d053f92018-05-24 16:45:51 +0200380
John Fastabend11393cc2017-07-17 09:29:40 -0700381 int cpu;
382
383 for_each_online_cpu(cpu) {
Daniel Borkmannaf4d0452017-08-23 01:47:54 +0200384 bitmap = per_cpu_ptr(dev->dtab->flush_needed, cpu);
385 __clear_bit(dev->bit, bitmap);
John Fastabend11393cc2017-07-17 09:29:40 -0700386
Jesper Dangaard Brouer5d053f92018-05-24 16:45:51 +0200387 bq = per_cpu_ptr(dev->bulkq, cpu);
Jesper Dangaard Brouer1bf91162018-08-08 23:00:45 +0200388 bq_xmit_all(dev, bq, XDP_XMIT_FLUSH, false);
John Fastabend11393cc2017-07-17 09:29:40 -0700389 }
390 }
391}
392
John Fastabend546ac1f2017-07-17 09:28:56 -0700393static void __dev_map_entry_free(struct rcu_head *rcu)
394{
Daniel Borkmannaf4d0452017-08-23 01:47:54 +0200395 struct bpf_dtab_netdev *dev;
John Fastabend546ac1f2017-07-17 09:28:56 -0700396
Daniel Borkmannaf4d0452017-08-23 01:47:54 +0200397 dev = container_of(rcu, struct bpf_dtab_netdev, rcu);
398 dev_map_flush_old(dev);
Jesper Dangaard Brouer5d053f92018-05-24 16:45:51 +0200399 free_percpu(dev->bulkq);
Daniel Borkmannaf4d0452017-08-23 01:47:54 +0200400 dev_put(dev->dev);
401 kfree(dev);
John Fastabend546ac1f2017-07-17 09:28:56 -0700402}
403
404static int dev_map_delete_elem(struct bpf_map *map, void *key)
405{
406 struct bpf_dtab *dtab = container_of(map, struct bpf_dtab, map);
407 struct bpf_dtab_netdev *old_dev;
408 int k = *(u32 *)key;
409
410 if (k >= map->max_entries)
411 return -EINVAL;
412
Daniel Borkmannaf4d0452017-08-23 01:47:54 +0200413 /* Use call_rcu() here to ensure any rcu critical sections have
414 * completed, but this does not guarantee a flush has happened
John Fastabend546ac1f2017-07-17 09:28:56 -0700415 * yet. Because driver side rcu_read_lock/unlock only protects the
416 * running XDP program. However, for pending flush operations the
417 * dev and ctx are stored in another per cpu map. And additionally,
418 * the driver tear down ensures all soft irqs are complete before
419 * removing the net device in the case of dev_put equals zero.
420 */
421 old_dev = xchg(&dtab->netdev_map[k], NULL);
422 if (old_dev)
423 call_rcu(&old_dev->rcu, __dev_map_entry_free);
424 return 0;
425}
426
427static int dev_map_update_elem(struct bpf_map *map, void *key, void *value,
428 u64 map_flags)
429{
430 struct bpf_dtab *dtab = container_of(map, struct bpf_dtab, map);
431 struct net *net = current->nsproxy->net_ns;
Jesper Dangaard Brouer5d053f92018-05-24 16:45:51 +0200432 gfp_t gfp = GFP_ATOMIC | __GFP_NOWARN;
John Fastabend546ac1f2017-07-17 09:28:56 -0700433 struct bpf_dtab_netdev *dev, *old_dev;
434 u32 i = *(u32 *)key;
435 u32 ifindex = *(u32 *)value;
436
437 if (unlikely(map_flags > BPF_EXIST))
438 return -EINVAL;
John Fastabend546ac1f2017-07-17 09:28:56 -0700439 if (unlikely(i >= dtab->map.max_entries))
440 return -E2BIG;
John Fastabend546ac1f2017-07-17 09:28:56 -0700441 if (unlikely(map_flags == BPF_NOEXIST))
442 return -EEXIST;
443
444 if (!ifindex) {
445 dev = NULL;
446 } else {
Jesper Dangaard Brouer5d053f92018-05-24 16:45:51 +0200447 dev = kmalloc_node(sizeof(*dev), gfp, map->numa_node);
John Fastabend546ac1f2017-07-17 09:28:56 -0700448 if (!dev)
449 return -ENOMEM;
450
Jesper Dangaard Brouer5d053f92018-05-24 16:45:51 +0200451 dev->bulkq = __alloc_percpu_gfp(sizeof(*dev->bulkq),
452 sizeof(void *), gfp);
453 if (!dev->bulkq) {
454 kfree(dev);
455 return -ENOMEM;
456 }
457
John Fastabend546ac1f2017-07-17 09:28:56 -0700458 dev->dev = dev_get_by_index(net, ifindex);
459 if (!dev->dev) {
Jesper Dangaard Brouer5d053f92018-05-24 16:45:51 +0200460 free_percpu(dev->bulkq);
John Fastabend546ac1f2017-07-17 09:28:56 -0700461 kfree(dev);
462 return -EINVAL;
463 }
464
Daniel Borkmannaf4d0452017-08-23 01:47:54 +0200465 dev->bit = i;
John Fastabend546ac1f2017-07-17 09:28:56 -0700466 dev->dtab = dtab;
467 }
468
469 /* Use call_rcu() here to ensure rcu critical sections have completed
470 * Remembering the driver side flush operation will happen before the
471 * net device is removed.
472 */
473 old_dev = xchg(&dtab->netdev_map[i], dev);
474 if (old_dev)
475 call_rcu(&old_dev->rcu, __dev_map_entry_free);
476
477 return 0;
478}
479
480const struct bpf_map_ops dev_map_ops = {
481 .map_alloc = dev_map_alloc,
482 .map_free = dev_map_free,
483 .map_get_next_key = dev_map_get_next_key,
484 .map_lookup_elem = dev_map_lookup_elem,
485 .map_update_elem = dev_map_update_elem,
486 .map_delete_elem = dev_map_delete_elem,
Daniel Borkmanne8d2bec2018-08-12 01:59:17 +0200487 .map_check_btf = map_check_no_btf,
John Fastabend546ac1f2017-07-17 09:28:56 -0700488};
John Fastabend2ddf71e2017-07-17 09:30:02 -0700489
490static int dev_map_notification(struct notifier_block *notifier,
491 ulong event, void *ptr)
492{
493 struct net_device *netdev = netdev_notifier_info_to_dev(ptr);
494 struct bpf_dtab *dtab;
495 int i;
496
497 switch (event) {
498 case NETDEV_UNREGISTER:
John Fastabend4cc7b952017-08-04 22:02:19 -0700499 /* This rcu_read_lock/unlock pair is needed because
500 * dev_map_list is an RCU list AND to ensure a delete
501 * operation does not free a netdev_map entry while we
502 * are comparing it against the netdev being unregistered.
503 */
504 rcu_read_lock();
505 list_for_each_entry_rcu(dtab, &dev_map_list, list) {
John Fastabend2ddf71e2017-07-17 09:30:02 -0700506 for (i = 0; i < dtab->map.max_entries; i++) {
John Fastabend4cc7b952017-08-04 22:02:19 -0700507 struct bpf_dtab_netdev *dev, *odev;
John Fastabend2ddf71e2017-07-17 09:30:02 -0700508
John Fastabend4cc7b952017-08-04 22:02:19 -0700509 dev = READ_ONCE(dtab->netdev_map[i]);
Taehee Yoof592f802018-10-24 20:15:17 +0900510 if (!dev || netdev != dev->dev)
John Fastabend2ddf71e2017-07-17 09:30:02 -0700511 continue;
John Fastabend4cc7b952017-08-04 22:02:19 -0700512 odev = cmpxchg(&dtab->netdev_map[i], dev, NULL);
513 if (dev == odev)
John Fastabend2ddf71e2017-07-17 09:30:02 -0700514 call_rcu(&dev->rcu,
515 __dev_map_entry_free);
516 }
517 }
John Fastabend4cc7b952017-08-04 22:02:19 -0700518 rcu_read_unlock();
John Fastabend2ddf71e2017-07-17 09:30:02 -0700519 break;
520 default:
521 break;
522 }
523 return NOTIFY_OK;
524}
525
526static struct notifier_block dev_map_notifier = {
527 .notifier_call = dev_map_notification,
528};
529
530static int __init dev_map_init(void)
531{
Jesper Dangaard Brouer67f29e02018-05-24 16:45:46 +0200532 /* Assure tracepoint shadow struct _bpf_dtab_netdev is in sync */
533 BUILD_BUG_ON(offsetof(struct bpf_dtab_netdev, dev) !=
534 offsetof(struct _bpf_dtab_netdev, dev));
John Fastabend2ddf71e2017-07-17 09:30:02 -0700535 register_netdevice_notifier(&dev_map_notifier);
536 return 0;
537}
538
539subsys_initcall(dev_map_init);