bpf: fix mlock precharge on arraymaps
[linux-2.6-block.git] / kernel / bpf / arraymap.c
1 /* Copyright (c) 2011-2014 PLUMgrid, http://plumgrid.com
2  * Copyright (c) 2016,2017 Facebook
3  *
4  * This program is free software; you can redistribute it and/or
5  * modify it under the terms of version 2 of the GNU General Public
6  * License as published by the Free Software Foundation.
7  *
8  * This program is distributed in the hope that it will be useful, but
9  * WITHOUT ANY WARRANTY; without even the implied warranty of
10  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11  * General Public License for more details.
12  */
13 #include <linux/bpf.h>
14 #include <linux/err.h>
15 #include <linux/slab.h>
16 #include <linux/mm.h>
17 #include <linux/filter.h>
18 #include <linux/perf_event.h>
19
20 #include "map_in_map.h"
21
22 #define ARRAY_CREATE_FLAG_MASK \
23         (BPF_F_NUMA_NODE | BPF_F_RDONLY | BPF_F_WRONLY)
24
25 static void bpf_array_free_percpu(struct bpf_array *array)
26 {
27         int i;
28
29         for (i = 0; i < array->map.max_entries; i++)
30                 free_percpu(array->pptrs[i]);
31 }
32
33 static int bpf_array_alloc_percpu(struct bpf_array *array)
34 {
35         void __percpu *ptr;
36         int i;
37
38         for (i = 0; i < array->map.max_entries; i++) {
39                 ptr = __alloc_percpu_gfp(array->elem_size, 8,
40                                          GFP_USER | __GFP_NOWARN);
41                 if (!ptr) {
42                         bpf_array_free_percpu(array);
43                         return -ENOMEM;
44                 }
45                 array->pptrs[i] = ptr;
46         }
47
48         return 0;
49 }
50
51 /* Called from syscall */
52 static int array_map_alloc_check(union bpf_attr *attr)
53 {
54         bool percpu = attr->map_type == BPF_MAP_TYPE_PERCPU_ARRAY;
55         int numa_node = bpf_map_attr_numa_node(attr);
56
57         /* check sanity of attributes */
58         if (attr->max_entries == 0 || attr->key_size != 4 ||
59             attr->value_size == 0 ||
60             attr->map_flags & ~ARRAY_CREATE_FLAG_MASK ||
61             (percpu && numa_node != NUMA_NO_NODE))
62                 return -EINVAL;
63
64         if (attr->value_size > KMALLOC_MAX_SIZE)
65                 /* if value_size is bigger, the user space won't be able to
66                  * access the elements.
67                  */
68                 return -E2BIG;
69
70         return 0;
71 }
72
73 static struct bpf_map *array_map_alloc(union bpf_attr *attr)
74 {
75         bool percpu = attr->map_type == BPF_MAP_TYPE_PERCPU_ARRAY;
76         int ret, numa_node = bpf_map_attr_numa_node(attr);
77         u32 elem_size, index_mask, max_entries;
78         bool unpriv = !capable(CAP_SYS_ADMIN);
79         u64 cost, array_size, mask64;
80         struct bpf_array *array;
81
82         elem_size = round_up(attr->value_size, 8);
83
84         max_entries = attr->max_entries;
85
86         /* On 32 bit archs roundup_pow_of_two() with max_entries that has
87          * upper most bit set in u32 space is undefined behavior due to
88          * resulting 1U << 32, so do it manually here in u64 space.
89          */
90         mask64 = fls_long(max_entries - 1);
91         mask64 = 1ULL << mask64;
92         mask64 -= 1;
93
94         index_mask = mask64;
95         if (unpriv) {
96                 /* round up array size to nearest power of 2,
97                  * since cpu will speculate within index_mask limits
98                  */
99                 max_entries = index_mask + 1;
100                 /* Check for overflows. */
101                 if (max_entries < attr->max_entries)
102                         return ERR_PTR(-E2BIG);
103         }
104
105         array_size = sizeof(*array);
106         if (percpu)
107                 array_size += (u64) max_entries * sizeof(void *);
108         else
109                 array_size += (u64) max_entries * elem_size;
110
111         /* make sure there is no u32 overflow later in round_up() */
112         cost = array_size;
113         if (cost >= U32_MAX - PAGE_SIZE)
114                 return ERR_PTR(-ENOMEM);
115         if (percpu) {
116                 cost += (u64)attr->max_entries * elem_size * num_possible_cpus();
117                 if (cost >= U32_MAX - PAGE_SIZE)
118                         return ERR_PTR(-ENOMEM);
119         }
120         cost = round_up(cost, PAGE_SIZE) >> PAGE_SHIFT;
121
122         ret = bpf_map_precharge_memlock(cost);
123         if (ret < 0)
124                 return ERR_PTR(ret);
125
126         /* allocate all map elements and zero-initialize them */
127         array = bpf_map_area_alloc(array_size, numa_node);
128         if (!array)
129                 return ERR_PTR(-ENOMEM);
130         array->index_mask = index_mask;
131         array->map.unpriv_array = unpriv;
132
133         /* copy mandatory map attributes */
134         bpf_map_init_from_attr(&array->map, attr);
135         array->map.pages = cost;
136         array->elem_size = elem_size;
137
138         if (percpu && bpf_array_alloc_percpu(array)) {
139                 bpf_map_area_free(array);
140                 return ERR_PTR(-ENOMEM);
141         }
142
143         return &array->map;
144 }
145
146 /* Called from syscall or from eBPF program */
147 static void *array_map_lookup_elem(struct bpf_map *map, void *key)
148 {
149         struct bpf_array *array = container_of(map, struct bpf_array, map);
150         u32 index = *(u32 *)key;
151
152         if (unlikely(index >= array->map.max_entries))
153                 return NULL;
154
155         return array->value + array->elem_size * (index & array->index_mask);
156 }
157
158 /* emit BPF instructions equivalent to C code of array_map_lookup_elem() */
159 static u32 array_map_gen_lookup(struct bpf_map *map, struct bpf_insn *insn_buf)
160 {
161         struct bpf_array *array = container_of(map, struct bpf_array, map);
162         struct bpf_insn *insn = insn_buf;
163         u32 elem_size = round_up(map->value_size, 8);
164         const int ret = BPF_REG_0;
165         const int map_ptr = BPF_REG_1;
166         const int index = BPF_REG_2;
167
168         *insn++ = BPF_ALU64_IMM(BPF_ADD, map_ptr, offsetof(struct bpf_array, value));
169         *insn++ = BPF_LDX_MEM(BPF_W, ret, index, 0);
170         if (map->unpriv_array) {
171                 *insn++ = BPF_JMP_IMM(BPF_JGE, ret, map->max_entries, 4);
172                 *insn++ = BPF_ALU32_IMM(BPF_AND, ret, array->index_mask);
173         } else {
174                 *insn++ = BPF_JMP_IMM(BPF_JGE, ret, map->max_entries, 3);
175         }
176
177         if (is_power_of_2(elem_size)) {
178                 *insn++ = BPF_ALU64_IMM(BPF_LSH, ret, ilog2(elem_size));
179         } else {
180                 *insn++ = BPF_ALU64_IMM(BPF_MUL, ret, elem_size);
181         }
182         *insn++ = BPF_ALU64_REG(BPF_ADD, ret, map_ptr);
183         *insn++ = BPF_JMP_IMM(BPF_JA, 0, 0, 1);
184         *insn++ = BPF_MOV64_IMM(ret, 0);
185         return insn - insn_buf;
186 }
187
188 /* Called from eBPF program */
189 static void *percpu_array_map_lookup_elem(struct bpf_map *map, void *key)
190 {
191         struct bpf_array *array = container_of(map, struct bpf_array, map);
192         u32 index = *(u32 *)key;
193
194         if (unlikely(index >= array->map.max_entries))
195                 return NULL;
196
197         return this_cpu_ptr(array->pptrs[index & array->index_mask]);
198 }
199
200 int bpf_percpu_array_copy(struct bpf_map *map, void *key, void *value)
201 {
202         struct bpf_array *array = container_of(map, struct bpf_array, map);
203         u32 index = *(u32 *)key;
204         void __percpu *pptr;
205         int cpu, off = 0;
206         u32 size;
207
208         if (unlikely(index >= array->map.max_entries))
209                 return -ENOENT;
210
211         /* per_cpu areas are zero-filled and bpf programs can only
212          * access 'value_size' of them, so copying rounded areas
213          * will not leak any kernel data
214          */
215         size = round_up(map->value_size, 8);
216         rcu_read_lock();
217         pptr = array->pptrs[index & array->index_mask];
218         for_each_possible_cpu(cpu) {
219                 bpf_long_memcpy(value + off, per_cpu_ptr(pptr, cpu), size);
220                 off += size;
221         }
222         rcu_read_unlock();
223         return 0;
224 }
225
226 /* Called from syscall */
227 static int array_map_get_next_key(struct bpf_map *map, void *key, void *next_key)
228 {
229         struct bpf_array *array = container_of(map, struct bpf_array, map);
230         u32 index = key ? *(u32 *)key : U32_MAX;
231         u32 *next = (u32 *)next_key;
232
233         if (index >= array->map.max_entries) {
234                 *next = 0;
235                 return 0;
236         }
237
238         if (index == array->map.max_entries - 1)
239                 return -ENOENT;
240
241         *next = index + 1;
242         return 0;
243 }
244
245 /* Called from syscall or from eBPF program */
246 static int array_map_update_elem(struct bpf_map *map, void *key, void *value,
247                                  u64 map_flags)
248 {
249         struct bpf_array *array = container_of(map, struct bpf_array, map);
250         u32 index = *(u32 *)key;
251
252         if (unlikely(map_flags > BPF_EXIST))
253                 /* unknown flags */
254                 return -EINVAL;
255
256         if (unlikely(index >= array->map.max_entries))
257                 /* all elements were pre-allocated, cannot insert a new one */
258                 return -E2BIG;
259
260         if (unlikely(map_flags == BPF_NOEXIST))
261                 /* all elements already exist */
262                 return -EEXIST;
263
264         if (array->map.map_type == BPF_MAP_TYPE_PERCPU_ARRAY)
265                 memcpy(this_cpu_ptr(array->pptrs[index & array->index_mask]),
266                        value, map->value_size);
267         else
268                 memcpy(array->value +
269                        array->elem_size * (index & array->index_mask),
270                        value, map->value_size);
271         return 0;
272 }
273
274 int bpf_percpu_array_update(struct bpf_map *map, void *key, void *value,
275                             u64 map_flags)
276 {
277         struct bpf_array *array = container_of(map, struct bpf_array, map);
278         u32 index = *(u32 *)key;
279         void __percpu *pptr;
280         int cpu, off = 0;
281         u32 size;
282
283         if (unlikely(map_flags > BPF_EXIST))
284                 /* unknown flags */
285                 return -EINVAL;
286
287         if (unlikely(index >= array->map.max_entries))
288                 /* all elements were pre-allocated, cannot insert a new one */
289                 return -E2BIG;
290
291         if (unlikely(map_flags == BPF_NOEXIST))
292                 /* all elements already exist */
293                 return -EEXIST;
294
295         /* the user space will provide round_up(value_size, 8) bytes that
296          * will be copied into per-cpu area. bpf programs can only access
297          * value_size of it. During lookup the same extra bytes will be
298          * returned or zeros which were zero-filled by percpu_alloc,
299          * so no kernel data leaks possible
300          */
301         size = round_up(map->value_size, 8);
302         rcu_read_lock();
303         pptr = array->pptrs[index & array->index_mask];
304         for_each_possible_cpu(cpu) {
305                 bpf_long_memcpy(per_cpu_ptr(pptr, cpu), value + off, size);
306                 off += size;
307         }
308         rcu_read_unlock();
309         return 0;
310 }
311
312 /* Called from syscall or from eBPF program */
313 static int array_map_delete_elem(struct bpf_map *map, void *key)
314 {
315         return -EINVAL;
316 }
317
318 /* Called when map->refcnt goes to zero, either from workqueue or from syscall */
319 static void array_map_free(struct bpf_map *map)
320 {
321         struct bpf_array *array = container_of(map, struct bpf_array, map);
322
323         /* at this point bpf_prog->aux->refcnt == 0 and this map->refcnt == 0,
324          * so the programs (can be more than one that used this map) were
325          * disconnected from events. Wait for outstanding programs to complete
326          * and free the array
327          */
328         synchronize_rcu();
329
330         if (array->map.map_type == BPF_MAP_TYPE_PERCPU_ARRAY)
331                 bpf_array_free_percpu(array);
332
333         bpf_map_area_free(array);
334 }
335
336 const struct bpf_map_ops array_map_ops = {
337         .map_alloc_check = array_map_alloc_check,
338         .map_alloc = array_map_alloc,
339         .map_free = array_map_free,
340         .map_get_next_key = array_map_get_next_key,
341         .map_lookup_elem = array_map_lookup_elem,
342         .map_update_elem = array_map_update_elem,
343         .map_delete_elem = array_map_delete_elem,
344         .map_gen_lookup = array_map_gen_lookup,
345 };
346
347 const struct bpf_map_ops percpu_array_map_ops = {
348         .map_alloc_check = array_map_alloc_check,
349         .map_alloc = array_map_alloc,
350         .map_free = array_map_free,
351         .map_get_next_key = array_map_get_next_key,
352         .map_lookup_elem = percpu_array_map_lookup_elem,
353         .map_update_elem = array_map_update_elem,
354         .map_delete_elem = array_map_delete_elem,
355 };
356
357 static int fd_array_map_alloc_check(union bpf_attr *attr)
358 {
359         /* only file descriptors can be stored in this type of map */
360         if (attr->value_size != sizeof(u32))
361                 return -EINVAL;
362         return array_map_alloc_check(attr);
363 }
364
365 static void fd_array_map_free(struct bpf_map *map)
366 {
367         struct bpf_array *array = container_of(map, struct bpf_array, map);
368         int i;
369
370         synchronize_rcu();
371
372         /* make sure it's empty */
373         for (i = 0; i < array->map.max_entries; i++)
374                 BUG_ON(array->ptrs[i] != NULL);
375
376         bpf_map_area_free(array);
377 }
378
379 static void *fd_array_map_lookup_elem(struct bpf_map *map, void *key)
380 {
381         return NULL;
382 }
383
384 /* only called from syscall */
385 int bpf_fd_array_map_lookup_elem(struct bpf_map *map, void *key, u32 *value)
386 {
387         void **elem, *ptr;
388         int ret =  0;
389
390         if (!map->ops->map_fd_sys_lookup_elem)
391                 return -ENOTSUPP;
392
393         rcu_read_lock();
394         elem = array_map_lookup_elem(map, key);
395         if (elem && (ptr = READ_ONCE(*elem)))
396                 *value = map->ops->map_fd_sys_lookup_elem(ptr);
397         else
398                 ret = -ENOENT;
399         rcu_read_unlock();
400
401         return ret;
402 }
403
404 /* only called from syscall */
405 int bpf_fd_array_map_update_elem(struct bpf_map *map, struct file *map_file,
406                                  void *key, void *value, u64 map_flags)
407 {
408         struct bpf_array *array = container_of(map, struct bpf_array, map);
409         void *new_ptr, *old_ptr;
410         u32 index = *(u32 *)key, ufd;
411
412         if (map_flags != BPF_ANY)
413                 return -EINVAL;
414
415         if (index >= array->map.max_entries)
416                 return -E2BIG;
417
418         ufd = *(u32 *)value;
419         new_ptr = map->ops->map_fd_get_ptr(map, map_file, ufd);
420         if (IS_ERR(new_ptr))
421                 return PTR_ERR(new_ptr);
422
423         old_ptr = xchg(array->ptrs + index, new_ptr);
424         if (old_ptr)
425                 map->ops->map_fd_put_ptr(old_ptr);
426
427         return 0;
428 }
429
430 static int fd_array_map_delete_elem(struct bpf_map *map, void *key)
431 {
432         struct bpf_array *array = container_of(map, struct bpf_array, map);
433         void *old_ptr;
434         u32 index = *(u32 *)key;
435
436         if (index >= array->map.max_entries)
437                 return -E2BIG;
438
439         old_ptr = xchg(array->ptrs + index, NULL);
440         if (old_ptr) {
441                 map->ops->map_fd_put_ptr(old_ptr);
442                 return 0;
443         } else {
444                 return -ENOENT;
445         }
446 }
447
448 static void *prog_fd_array_get_ptr(struct bpf_map *map,
449                                    struct file *map_file, int fd)
450 {
451         struct bpf_array *array = container_of(map, struct bpf_array, map);
452         struct bpf_prog *prog = bpf_prog_get(fd);
453
454         if (IS_ERR(prog))
455                 return prog;
456
457         if (!bpf_prog_array_compatible(array, prog)) {
458                 bpf_prog_put(prog);
459                 return ERR_PTR(-EINVAL);
460         }
461
462         return prog;
463 }
464
465 static void prog_fd_array_put_ptr(void *ptr)
466 {
467         bpf_prog_put(ptr);
468 }
469
470 static u32 prog_fd_array_sys_lookup_elem(void *ptr)
471 {
472         return ((struct bpf_prog *)ptr)->aux->id;
473 }
474
475 /* decrement refcnt of all bpf_progs that are stored in this map */
476 void bpf_fd_array_map_clear(struct bpf_map *map)
477 {
478         struct bpf_array *array = container_of(map, struct bpf_array, map);
479         int i;
480
481         for (i = 0; i < array->map.max_entries; i++)
482                 fd_array_map_delete_elem(map, &i);
483 }
484
485 const struct bpf_map_ops prog_array_map_ops = {
486         .map_alloc_check = fd_array_map_alloc_check,
487         .map_alloc = array_map_alloc,
488         .map_free = fd_array_map_free,
489         .map_get_next_key = array_map_get_next_key,
490         .map_lookup_elem = fd_array_map_lookup_elem,
491         .map_delete_elem = fd_array_map_delete_elem,
492         .map_fd_get_ptr = prog_fd_array_get_ptr,
493         .map_fd_put_ptr = prog_fd_array_put_ptr,
494         .map_fd_sys_lookup_elem = prog_fd_array_sys_lookup_elem,
495 };
496
497 static struct bpf_event_entry *bpf_event_entry_gen(struct file *perf_file,
498                                                    struct file *map_file)
499 {
500         struct bpf_event_entry *ee;
501
502         ee = kzalloc(sizeof(*ee), GFP_ATOMIC);
503         if (ee) {
504                 ee->event = perf_file->private_data;
505                 ee->perf_file = perf_file;
506                 ee->map_file = map_file;
507         }
508
509         return ee;
510 }
511
512 static void __bpf_event_entry_free(struct rcu_head *rcu)
513 {
514         struct bpf_event_entry *ee;
515
516         ee = container_of(rcu, struct bpf_event_entry, rcu);
517         fput(ee->perf_file);
518         kfree(ee);
519 }
520
521 static void bpf_event_entry_free_rcu(struct bpf_event_entry *ee)
522 {
523         call_rcu(&ee->rcu, __bpf_event_entry_free);
524 }
525
526 static void *perf_event_fd_array_get_ptr(struct bpf_map *map,
527                                          struct file *map_file, int fd)
528 {
529         struct bpf_event_entry *ee;
530         struct perf_event *event;
531         struct file *perf_file;
532         u64 value;
533
534         perf_file = perf_event_get(fd);
535         if (IS_ERR(perf_file))
536                 return perf_file;
537
538         ee = ERR_PTR(-EOPNOTSUPP);
539         event = perf_file->private_data;
540         if (perf_event_read_local(event, &value, NULL, NULL) == -EOPNOTSUPP)
541                 goto err_out;
542
543         ee = bpf_event_entry_gen(perf_file, map_file);
544         if (ee)
545                 return ee;
546         ee = ERR_PTR(-ENOMEM);
547 err_out:
548         fput(perf_file);
549         return ee;
550 }
551
552 static void perf_event_fd_array_put_ptr(void *ptr)
553 {
554         bpf_event_entry_free_rcu(ptr);
555 }
556
557 static void perf_event_fd_array_release(struct bpf_map *map,
558                                         struct file *map_file)
559 {
560         struct bpf_array *array = container_of(map, struct bpf_array, map);
561         struct bpf_event_entry *ee;
562         int i;
563
564         rcu_read_lock();
565         for (i = 0; i < array->map.max_entries; i++) {
566                 ee = READ_ONCE(array->ptrs[i]);
567                 if (ee && ee->map_file == map_file)
568                         fd_array_map_delete_elem(map, &i);
569         }
570         rcu_read_unlock();
571 }
572
573 const struct bpf_map_ops perf_event_array_map_ops = {
574         .map_alloc_check = fd_array_map_alloc_check,
575         .map_alloc = array_map_alloc,
576         .map_free = fd_array_map_free,
577         .map_get_next_key = array_map_get_next_key,
578         .map_lookup_elem = fd_array_map_lookup_elem,
579         .map_delete_elem = fd_array_map_delete_elem,
580         .map_fd_get_ptr = perf_event_fd_array_get_ptr,
581         .map_fd_put_ptr = perf_event_fd_array_put_ptr,
582         .map_release = perf_event_fd_array_release,
583 };
584
585 #ifdef CONFIG_CGROUPS
586 static void *cgroup_fd_array_get_ptr(struct bpf_map *map,
587                                      struct file *map_file /* not used */,
588                                      int fd)
589 {
590         return cgroup_get_from_fd(fd);
591 }
592
593 static void cgroup_fd_array_put_ptr(void *ptr)
594 {
595         /* cgroup_put free cgrp after a rcu grace period */
596         cgroup_put(ptr);
597 }
598
599 static void cgroup_fd_array_free(struct bpf_map *map)
600 {
601         bpf_fd_array_map_clear(map);
602         fd_array_map_free(map);
603 }
604
605 const struct bpf_map_ops cgroup_array_map_ops = {
606         .map_alloc_check = fd_array_map_alloc_check,
607         .map_alloc = array_map_alloc,
608         .map_free = cgroup_fd_array_free,
609         .map_get_next_key = array_map_get_next_key,
610         .map_lookup_elem = fd_array_map_lookup_elem,
611         .map_delete_elem = fd_array_map_delete_elem,
612         .map_fd_get_ptr = cgroup_fd_array_get_ptr,
613         .map_fd_put_ptr = cgroup_fd_array_put_ptr,
614 };
615 #endif
616
617 static struct bpf_map *array_of_map_alloc(union bpf_attr *attr)
618 {
619         struct bpf_map *map, *inner_map_meta;
620
621         inner_map_meta = bpf_map_meta_alloc(attr->inner_map_fd);
622         if (IS_ERR(inner_map_meta))
623                 return inner_map_meta;
624
625         map = array_map_alloc(attr);
626         if (IS_ERR(map)) {
627                 bpf_map_meta_free(inner_map_meta);
628                 return map;
629         }
630
631         map->inner_map_meta = inner_map_meta;
632
633         return map;
634 }
635
636 static void array_of_map_free(struct bpf_map *map)
637 {
638         /* map->inner_map_meta is only accessed by syscall which
639          * is protected by fdget/fdput.
640          */
641         bpf_map_meta_free(map->inner_map_meta);
642         bpf_fd_array_map_clear(map);
643         fd_array_map_free(map);
644 }
645
646 static void *array_of_map_lookup_elem(struct bpf_map *map, void *key)
647 {
648         struct bpf_map **inner_map = array_map_lookup_elem(map, key);
649
650         if (!inner_map)
651                 return NULL;
652
653         return READ_ONCE(*inner_map);
654 }
655
656 static u32 array_of_map_gen_lookup(struct bpf_map *map,
657                                    struct bpf_insn *insn_buf)
658 {
659         struct bpf_array *array = container_of(map, struct bpf_array, map);
660         u32 elem_size = round_up(map->value_size, 8);
661         struct bpf_insn *insn = insn_buf;
662         const int ret = BPF_REG_0;
663         const int map_ptr = BPF_REG_1;
664         const int index = BPF_REG_2;
665
666         *insn++ = BPF_ALU64_IMM(BPF_ADD, map_ptr, offsetof(struct bpf_array, value));
667         *insn++ = BPF_LDX_MEM(BPF_W, ret, index, 0);
668         if (map->unpriv_array) {
669                 *insn++ = BPF_JMP_IMM(BPF_JGE, ret, map->max_entries, 6);
670                 *insn++ = BPF_ALU32_IMM(BPF_AND, ret, array->index_mask);
671         } else {
672                 *insn++ = BPF_JMP_IMM(BPF_JGE, ret, map->max_entries, 5);
673         }
674         if (is_power_of_2(elem_size))
675                 *insn++ = BPF_ALU64_IMM(BPF_LSH, ret, ilog2(elem_size));
676         else
677                 *insn++ = BPF_ALU64_IMM(BPF_MUL, ret, elem_size);
678         *insn++ = BPF_ALU64_REG(BPF_ADD, ret, map_ptr);
679         *insn++ = BPF_LDX_MEM(BPF_DW, ret, ret, 0);
680         *insn++ = BPF_JMP_IMM(BPF_JEQ, ret, 0, 1);
681         *insn++ = BPF_JMP_IMM(BPF_JA, 0, 0, 1);
682         *insn++ = BPF_MOV64_IMM(ret, 0);
683
684         return insn - insn_buf;
685 }
686
687 const struct bpf_map_ops array_of_maps_map_ops = {
688         .map_alloc_check = fd_array_map_alloc_check,
689         .map_alloc = array_of_map_alloc,
690         .map_free = array_of_map_free,
691         .map_get_next_key = array_map_get_next_key,
692         .map_lookup_elem = array_of_map_lookup_elem,
693         .map_delete_elem = fd_array_map_delete_elem,
694         .map_fd_get_ptr = bpf_map_fd_get_ptr,
695         .map_fd_put_ptr = bpf_map_fd_put_ptr,
696         .map_fd_sys_lookup_elem = bpf_map_fd_sys_lookup_elem,
697         .map_gen_lookup = array_of_map_gen_lookup,
698 };