blob: e5d3de7cff2e55d85e9dca7c1f5099b647f3e985 [file] [log] [blame]
John Fastabend546ac1f2017-07-17 09:28:56 -07001/* Copyright (c) 2017 Covalent IO, Inc. http://covalent.io
2 *
3 * This program is free software; you can redistribute it and/or
4 * modify it under the terms of version 2 of the GNU General Public
5 * License as published by the Free Software Foundation.
6 *
7 * This program is distributed in the hope that it will be useful, but
8 * WITHOUT ANY WARRANTY; without even the implied warranty of
9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
10 * General Public License for more details.
11 */
12
13/* Devmaps primary use is as a backend map for XDP BPF helper call
14 * bpf_redirect_map(). Because XDP is mostly concerned with performance we
15 * spent some effort to ensure the datapath with redirect maps does not use
16 * any locking. This is a quick note on the details.
17 *
18 * We have three possible paths to get into the devmap control plane bpf
19 * syscalls, bpf programs, and driver side xmit/flush operations. A bpf syscall
20 * will invoke an update, delete, or lookup operation. To ensure updates and
21 * deletes appear atomic from the datapath side xchg() is used to modify the
22 * netdev_map array. Then because the datapath does a lookup into the netdev_map
23 * array (read-only) from an RCU critical section we use call_rcu() to wait for
24 * an rcu grace period before free'ing the old data structures. This ensures the
25 * datapath always has a valid copy. However, the datapath does a "flush"
26 * operation that pushes any pending packets in the driver outside the RCU
27 * critical section. Each bpf_dtab_netdev tracks these pending operations using
28 * an atomic per-cpu bitmap. The bpf_dtab_netdev object will not be destroyed
29 * until all bits are cleared indicating outstanding flush operations have
30 * completed.
31 *
32 * BPF syscalls may race with BPF program calls on any of the update, delete
33 * or lookup operations. As noted above the xchg() operation also keep the
34 * netdev_map consistent in this case. From the devmap side BPF programs
35 * calling into these operations are the same as multiple user space threads
36 * making system calls.
John Fastabend2ddf71e2017-07-17 09:30:02 -070037 *
38 * Finally, any of the above may race with a netdev_unregister notifier. The
39 * unregister notifier must search for net devices in the map structure that
40 * contain a reference to the net device and remove them. This is a two step
41 * process (a) dereference the bpf_dtab_netdev object in netdev_map and (b)
42 * check to see if the ifindex is the same as the net_device being removed.
John Fastabend4cc7b952017-08-04 22:02:19 -070043 * When removing the dev a cmpxchg() is used to ensure the correct dev is
44 * removed, in the case of a concurrent update or delete operation it is
45 * possible that the initially referenced dev is no longer in the map. As the
46 * notifier hook walks the map we know that new dev references can not be
47 * added by the user because core infrastructure ensures dev_get_by_index()
48 * calls will fail at this point.
John Fastabend546ac1f2017-07-17 09:28:56 -070049 */
50#include <linux/bpf.h>
John Fastabend546ac1f2017-07-17 09:28:56 -070051#include <linux/filter.h>
John Fastabend546ac1f2017-07-17 09:28:56 -070052
Chenbo Feng6e71b042017-10-18 13:00:22 -070053#define DEV_CREATE_FLAG_MASK \
54 (BPF_F_NUMA_NODE | BPF_F_RDONLY | BPF_F_WRONLY)
55
John Fastabend546ac1f2017-07-17 09:28:56 -070056struct bpf_dtab_netdev {
57 struct net_device *dev;
John Fastabend546ac1f2017-07-17 09:28:56 -070058 struct bpf_dtab *dtab;
Daniel Borkmannaf4d0452017-08-23 01:47:54 +020059 unsigned int bit;
60 struct rcu_head rcu;
John Fastabend546ac1f2017-07-17 09:28:56 -070061};
62
63struct bpf_dtab {
64 struct bpf_map map;
65 struct bpf_dtab_netdev **netdev_map;
Daniel Borkmannaf4d0452017-08-23 01:47:54 +020066 unsigned long __percpu *flush_needed;
John Fastabend2ddf71e2017-07-17 09:30:02 -070067 struct list_head list;
John Fastabend546ac1f2017-07-17 09:28:56 -070068};
69
John Fastabend4cc7b952017-08-04 22:02:19 -070070static DEFINE_SPINLOCK(dev_map_lock);
John Fastabend2ddf71e2017-07-17 09:30:02 -070071static LIST_HEAD(dev_map_list);
72
Daniel Borkmannaf4d0452017-08-23 01:47:54 +020073static u64 dev_map_bitmap_size(const union bpf_attr *attr)
74{
75 return BITS_TO_LONGS(attr->max_entries) * sizeof(unsigned long);
76}
77
John Fastabend546ac1f2017-07-17 09:28:56 -070078static struct bpf_map *dev_map_alloc(union bpf_attr *attr)
79{
80 struct bpf_dtab *dtab;
Tobias Klauser582db7e2017-09-18 15:03:46 +020081 int err = -EINVAL;
John Fastabend546ac1f2017-07-17 09:28:56 -070082 u64 cost;
John Fastabend546ac1f2017-07-17 09:28:56 -070083
84 /* check sanity of attributes */
85 if (attr->max_entries == 0 || attr->key_size != 4 ||
Chenbo Feng6e71b042017-10-18 13:00:22 -070086 attr->value_size != 4 || attr->map_flags & ~DEV_CREATE_FLAG_MASK)
John Fastabend546ac1f2017-07-17 09:28:56 -070087 return ERR_PTR(-EINVAL);
88
John Fastabend546ac1f2017-07-17 09:28:56 -070089 dtab = kzalloc(sizeof(*dtab), GFP_USER);
90 if (!dtab)
91 return ERR_PTR(-ENOMEM);
92
93 /* mandatory map attributes */
94 dtab->map.map_type = attr->map_type;
95 dtab->map.key_size = attr->key_size;
96 dtab->map.value_size = attr->value_size;
97 dtab->map.max_entries = attr->max_entries;
98 dtab->map.map_flags = attr->map_flags;
Martin KaFai Lau96eabe72017-08-18 11:28:00 -070099 dtab->map.numa_node = bpf_map_attr_numa_node(attr);
John Fastabend546ac1f2017-07-17 09:28:56 -0700100
John Fastabend546ac1f2017-07-17 09:28:56 -0700101 /* make sure page count doesn't overflow */
102 cost = (u64) dtab->map.max_entries * sizeof(struct bpf_dtab_netdev *);
Daniel Borkmannaf4d0452017-08-23 01:47:54 +0200103 cost += dev_map_bitmap_size(attr) * num_possible_cpus();
John Fastabend546ac1f2017-07-17 09:28:56 -0700104 if (cost >= U32_MAX - PAGE_SIZE)
105 goto free_dtab;
106
107 dtab->map.pages = round_up(cost, PAGE_SIZE) >> PAGE_SHIFT;
108
109 /* if map size is larger than memlock limit, reject it early */
110 err = bpf_map_precharge_memlock(dtab->map.pages);
111 if (err)
112 goto free_dtab;
113
Tobias Klauser582db7e2017-09-18 15:03:46 +0200114 err = -ENOMEM;
115
John Fastabend11393cc2017-07-17 09:29:40 -0700116 /* A per cpu bitfield with a bit per possible net device */
Daniel Borkmannaf4d0452017-08-23 01:47:54 +0200117 dtab->flush_needed = __alloc_percpu(dev_map_bitmap_size(attr),
118 __alignof__(unsigned long));
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
John Fastabend546ac1f2017-07-17 09:28:56 -0700156 synchronize_rcu();
157
John Fastabend11393cc2017-07-17 09:29:40 -0700158 /* To ensure all pending flush operations have completed wait for flush
159 * bitmap to indicate all flush_needed bits to be zero on _all_ cpus.
160 * Because the above synchronize_rcu() ensures the map is disconnected
161 * from the program we can assume no new bits will be set.
162 */
163 for_each_online_cpu(cpu) {
164 unsigned long *bitmap = per_cpu_ptr(dtab->flush_needed, cpu);
165
166 while (!bitmap_empty(bitmap, dtab->map.max_entries))
John Fastabend374fb012017-09-08 14:01:10 -0700167 cond_resched();
John Fastabend11393cc2017-07-17 09:29:40 -0700168 }
169
John Fastabend546ac1f2017-07-17 09:28:56 -0700170 for (i = 0; i < dtab->map.max_entries; i++) {
171 struct bpf_dtab_netdev *dev;
172
173 dev = dtab->netdev_map[i];
174 if (!dev)
175 continue;
176
177 dev_put(dev->dev);
178 kfree(dev);
179 }
180
John Fastabend11393cc2017-07-17 09:29:40 -0700181 free_percpu(dtab->flush_needed);
John Fastabend546ac1f2017-07-17 09:28:56 -0700182 bpf_map_area_free(dtab->netdev_map);
183 kfree(dtab);
184}
185
186static int dev_map_get_next_key(struct bpf_map *map, void *key, void *next_key)
187{
188 struct bpf_dtab *dtab = container_of(map, struct bpf_dtab, map);
189 u32 index = key ? *(u32 *)key : U32_MAX;
Daniel Borkmannaf4d0452017-08-23 01:47:54 +0200190 u32 *next = next_key;
John Fastabend546ac1f2017-07-17 09:28:56 -0700191
192 if (index >= dtab->map.max_entries) {
193 *next = 0;
194 return 0;
195 }
196
197 if (index == dtab->map.max_entries - 1)
198 return -ENOENT;
John Fastabend546ac1f2017-07-17 09:28:56 -0700199 *next = index + 1;
200 return 0;
201}
202
Daniel Borkmannaf4d0452017-08-23 01:47:54 +0200203void __dev_map_insert_ctx(struct bpf_map *map, u32 bit)
John Fastabend11393cc2017-07-17 09:29:40 -0700204{
205 struct bpf_dtab *dtab = container_of(map, struct bpf_dtab, map);
206 unsigned long *bitmap = this_cpu_ptr(dtab->flush_needed);
207
Daniel Borkmannaf4d0452017-08-23 01:47:54 +0200208 __set_bit(bit, bitmap);
John Fastabend97f91a72017-07-17 09:29:18 -0700209}
210
John Fastabend11393cc2017-07-17 09:29:40 -0700211/* __dev_map_flush is called from xdp_do_flush_map() which _must_ be signaled
212 * from the driver before returning from its napi->poll() routine. The poll()
213 * routine is called either from busy_poll context or net_rx_action signaled
214 * from NET_RX_SOFTIRQ. Either way the poll routine must complete before the
215 * net device can be torn down. On devmap tear down we ensure the ctx bitmap
216 * is zeroed before completing to ensure all flush operations have completed.
217 */
218void __dev_map_flush(struct bpf_map *map)
219{
220 struct bpf_dtab *dtab = container_of(map, struct bpf_dtab, map);
221 unsigned long *bitmap = this_cpu_ptr(dtab->flush_needed);
222 u32 bit;
223
224 for_each_set_bit(bit, bitmap, map->max_entries) {
225 struct bpf_dtab_netdev *dev = READ_ONCE(dtab->netdev_map[bit]);
226 struct net_device *netdev;
227
228 /* This is possible if the dev entry is removed by user space
229 * between xdp redirect and flush op.
230 */
231 if (unlikely(!dev))
232 continue;
233
John Fastabend11393cc2017-07-17 09:29:40 -0700234 __clear_bit(bit, bitmap);
Daniel Borkmanna5e2da62017-08-24 03:20:11 +0200235 netdev = dev->dev;
236 if (likely(netdev->netdev_ops->ndo_xdp_flush))
237 netdev->netdev_ops->ndo_xdp_flush(netdev);
John Fastabend11393cc2017-07-17 09:29:40 -0700238 }
239}
240
John Fastabend546ac1f2017-07-17 09:28:56 -0700241/* rcu_read_lock (from syscall and BPF contexts) ensures that if a delete and/or
242 * update happens in parallel here a dev_put wont happen until after reading the
243 * ifindex.
244 */
Daniel Borkmannaf4d0452017-08-23 01:47:54 +0200245struct net_device *__dev_map_lookup_elem(struct bpf_map *map, u32 key)
John Fastabend546ac1f2017-07-17 09:28:56 -0700246{
247 struct bpf_dtab *dtab = container_of(map, struct bpf_dtab, map);
248 struct bpf_dtab_netdev *dev;
John Fastabend546ac1f2017-07-17 09:28:56 -0700249
Daniel Borkmannaf4d0452017-08-23 01:47:54 +0200250 if (key >= map->max_entries)
John Fastabend546ac1f2017-07-17 09:28:56 -0700251 return NULL;
252
Daniel Borkmannaf4d0452017-08-23 01:47:54 +0200253 dev = READ_ONCE(dtab->netdev_map[key]);
254 return dev ? dev->dev : NULL;
John Fastabend546ac1f2017-07-17 09:28:56 -0700255}
256
Daniel Borkmannaf4d0452017-08-23 01:47:54 +0200257static void *dev_map_lookup_elem(struct bpf_map *map, void *key)
John Fastabend11393cc2017-07-17 09:29:40 -0700258{
Daniel Borkmannaf4d0452017-08-23 01:47:54 +0200259 struct net_device *dev = __dev_map_lookup_elem(map, *(u32 *)key);
260
261 return dev ? &dev->ifindex : NULL;
262}
263
264static void dev_map_flush_old(struct bpf_dtab_netdev *dev)
265{
266 if (dev->dev->netdev_ops->ndo_xdp_flush) {
267 struct net_device *fl = dev->dev;
John Fastabend11393cc2017-07-17 09:29:40 -0700268 unsigned long *bitmap;
269 int cpu;
270
271 for_each_online_cpu(cpu) {
Daniel Borkmannaf4d0452017-08-23 01:47:54 +0200272 bitmap = per_cpu_ptr(dev->dtab->flush_needed, cpu);
273 __clear_bit(dev->bit, bitmap);
John Fastabend11393cc2017-07-17 09:29:40 -0700274
Daniel Borkmannaf4d0452017-08-23 01:47:54 +0200275 fl->netdev_ops->ndo_xdp_flush(dev->dev);
John Fastabend11393cc2017-07-17 09:29:40 -0700276 }
277 }
278}
279
John Fastabend546ac1f2017-07-17 09:28:56 -0700280static void __dev_map_entry_free(struct rcu_head *rcu)
281{
Daniel Borkmannaf4d0452017-08-23 01:47:54 +0200282 struct bpf_dtab_netdev *dev;
John Fastabend546ac1f2017-07-17 09:28:56 -0700283
Daniel Borkmannaf4d0452017-08-23 01:47:54 +0200284 dev = container_of(rcu, struct bpf_dtab_netdev, rcu);
285 dev_map_flush_old(dev);
286 dev_put(dev->dev);
287 kfree(dev);
John Fastabend546ac1f2017-07-17 09:28:56 -0700288}
289
290static int dev_map_delete_elem(struct bpf_map *map, void *key)
291{
292 struct bpf_dtab *dtab = container_of(map, struct bpf_dtab, map);
293 struct bpf_dtab_netdev *old_dev;
294 int k = *(u32 *)key;
295
296 if (k >= map->max_entries)
297 return -EINVAL;
298
Daniel Borkmannaf4d0452017-08-23 01:47:54 +0200299 /* Use call_rcu() here to ensure any rcu critical sections have
300 * completed, but this does not guarantee a flush has happened
John Fastabend546ac1f2017-07-17 09:28:56 -0700301 * yet. Because driver side rcu_read_lock/unlock only protects the
302 * running XDP program. However, for pending flush operations the
303 * dev and ctx are stored in another per cpu map. And additionally,
304 * the driver tear down ensures all soft irqs are complete before
305 * removing the net device in the case of dev_put equals zero.
306 */
307 old_dev = xchg(&dtab->netdev_map[k], NULL);
308 if (old_dev)
309 call_rcu(&old_dev->rcu, __dev_map_entry_free);
310 return 0;
311}
312
313static int dev_map_update_elem(struct bpf_map *map, void *key, void *value,
314 u64 map_flags)
315{
316 struct bpf_dtab *dtab = container_of(map, struct bpf_dtab, map);
317 struct net *net = current->nsproxy->net_ns;
318 struct bpf_dtab_netdev *dev, *old_dev;
319 u32 i = *(u32 *)key;
320 u32 ifindex = *(u32 *)value;
321
322 if (unlikely(map_flags > BPF_EXIST))
323 return -EINVAL;
John Fastabend546ac1f2017-07-17 09:28:56 -0700324 if (unlikely(i >= dtab->map.max_entries))
325 return -E2BIG;
John Fastabend546ac1f2017-07-17 09:28:56 -0700326 if (unlikely(map_flags == BPF_NOEXIST))
327 return -EEXIST;
328
329 if (!ifindex) {
330 dev = NULL;
331 } else {
Martin KaFai Lau96eabe72017-08-18 11:28:00 -0700332 dev = kmalloc_node(sizeof(*dev), GFP_ATOMIC | __GFP_NOWARN,
333 map->numa_node);
John Fastabend546ac1f2017-07-17 09:28:56 -0700334 if (!dev)
335 return -ENOMEM;
336
337 dev->dev = dev_get_by_index(net, ifindex);
338 if (!dev->dev) {
339 kfree(dev);
340 return -EINVAL;
341 }
342
Daniel Borkmannaf4d0452017-08-23 01:47:54 +0200343 dev->bit = i;
John Fastabend546ac1f2017-07-17 09:28:56 -0700344 dev->dtab = dtab;
345 }
346
347 /* Use call_rcu() here to ensure rcu critical sections have completed
348 * Remembering the driver side flush operation will happen before the
349 * net device is removed.
350 */
351 old_dev = xchg(&dtab->netdev_map[i], dev);
352 if (old_dev)
353 call_rcu(&old_dev->rcu, __dev_map_entry_free);
354
355 return 0;
356}
357
358const struct bpf_map_ops dev_map_ops = {
359 .map_alloc = dev_map_alloc,
360 .map_free = dev_map_free,
361 .map_get_next_key = dev_map_get_next_key,
362 .map_lookup_elem = dev_map_lookup_elem,
363 .map_update_elem = dev_map_update_elem,
364 .map_delete_elem = dev_map_delete_elem,
365};
John Fastabend2ddf71e2017-07-17 09:30:02 -0700366
367static int dev_map_notification(struct notifier_block *notifier,
368 ulong event, void *ptr)
369{
370 struct net_device *netdev = netdev_notifier_info_to_dev(ptr);
371 struct bpf_dtab *dtab;
372 int i;
373
374 switch (event) {
375 case NETDEV_UNREGISTER:
John Fastabend4cc7b952017-08-04 22:02:19 -0700376 /* This rcu_read_lock/unlock pair is needed because
377 * dev_map_list is an RCU list AND to ensure a delete
378 * operation does not free a netdev_map entry while we
379 * are comparing it against the netdev being unregistered.
380 */
381 rcu_read_lock();
382 list_for_each_entry_rcu(dtab, &dev_map_list, list) {
John Fastabend2ddf71e2017-07-17 09:30:02 -0700383 for (i = 0; i < dtab->map.max_entries; i++) {
John Fastabend4cc7b952017-08-04 22:02:19 -0700384 struct bpf_dtab_netdev *dev, *odev;
John Fastabend2ddf71e2017-07-17 09:30:02 -0700385
John Fastabend4cc7b952017-08-04 22:02:19 -0700386 dev = READ_ONCE(dtab->netdev_map[i]);
John Fastabend2ddf71e2017-07-17 09:30:02 -0700387 if (!dev ||
388 dev->dev->ifindex != netdev->ifindex)
389 continue;
John Fastabend4cc7b952017-08-04 22:02:19 -0700390 odev = cmpxchg(&dtab->netdev_map[i], dev, NULL);
391 if (dev == odev)
John Fastabend2ddf71e2017-07-17 09:30:02 -0700392 call_rcu(&dev->rcu,
393 __dev_map_entry_free);
394 }
395 }
John Fastabend4cc7b952017-08-04 22:02:19 -0700396 rcu_read_unlock();
John Fastabend2ddf71e2017-07-17 09:30:02 -0700397 break;
398 default:
399 break;
400 }
401 return NOTIFY_OK;
402}
403
404static struct notifier_block dev_map_notifier = {
405 .notifier_call = dev_map_notification,
406};
407
408static int __init dev_map_init(void)
409{
410 register_netdevice_notifier(&dev_map_notifier);
411 return 0;
412}
413
414subsys_initcall(dev_map_init);