Linux kernel mirror (for testing)
git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel
os
linux
1// SPDX-License-Identifier: GPL-2.0
2/* Copyright (c) 2019 Facebook */
3#include <linux/rculist.h>
4#include <linux/list.h>
5#include <linux/hash.h>
6#include <linux/types.h>
7#include <linux/spinlock.h>
8#include <linux/bpf.h>
9#include <linux/btf.h>
10#include <linux/btf_ids.h>
11#include <linux/bpf_local_storage.h>
12#include <net/bpf_sk_storage.h>
13#include <net/sock.h>
14#include <uapi/linux/sock_diag.h>
15#include <uapi/linux/btf.h>
16#include <linux/rcupdate_trace.h>
17
18DEFINE_BPF_STORAGE_CACHE(sk_cache);
19
20static struct bpf_local_storage_data *
21bpf_sk_storage_lookup(struct sock *sk, struct bpf_map *map, bool cacheit_lockit)
22{
23 struct bpf_local_storage *sk_storage;
24 struct bpf_local_storage_map *smap;
25
26 sk_storage =
27 rcu_dereference_check(sk->sk_bpf_storage, bpf_rcu_lock_held());
28 if (!sk_storage)
29 return NULL;
30
31 smap = (struct bpf_local_storage_map *)map;
32 return bpf_local_storage_lookup(sk_storage, smap, cacheit_lockit);
33}
34
35static int bpf_sk_storage_del(struct sock *sk, struct bpf_map *map)
36{
37 struct bpf_local_storage_data *sdata;
38
39 sdata = bpf_sk_storage_lookup(sk, map, false);
40 if (!sdata)
41 return -ENOENT;
42
43 bpf_selem_unlink(SELEM(sdata), false);
44
45 return 0;
46}
47
48/* Called by __sk_destruct() & bpf_sk_storage_clone() */
49void bpf_sk_storage_free(struct sock *sk)
50{
51 struct bpf_local_storage *sk_storage;
52
53 rcu_read_lock();
54 sk_storage = rcu_dereference(sk->sk_bpf_storage);
55 if (!sk_storage) {
56 rcu_read_unlock();
57 return;
58 }
59
60 bpf_local_storage_destroy(sk_storage);
61 rcu_read_unlock();
62}
63
64static void bpf_sk_storage_map_free(struct bpf_map *map)
65{
66 bpf_local_storage_map_free(map, &sk_cache, NULL);
67}
68
69static struct bpf_map *bpf_sk_storage_map_alloc(union bpf_attr *attr)
70{
71 return bpf_local_storage_map_alloc(attr, &sk_cache, false);
72}
73
74static int notsupp_get_next_key(struct bpf_map *map, void *key,
75 void *next_key)
76{
77 return -ENOTSUPP;
78}
79
80static void *bpf_fd_sk_storage_lookup_elem(struct bpf_map *map, void *key)
81{
82 struct bpf_local_storage_data *sdata;
83 struct socket *sock;
84 int fd, err;
85
86 fd = *(int *)key;
87 sock = sockfd_lookup(fd, &err);
88 if (sock) {
89 sdata = bpf_sk_storage_lookup(sock->sk, map, true);
90 sockfd_put(sock);
91 return sdata ? sdata->data : NULL;
92 }
93
94 return ERR_PTR(err);
95}
96
97static long bpf_fd_sk_storage_update_elem(struct bpf_map *map, void *key,
98 void *value, u64 map_flags)
99{
100 struct bpf_local_storage_data *sdata;
101 struct socket *sock;
102 int fd, err;
103
104 fd = *(int *)key;
105 sock = sockfd_lookup(fd, &err);
106 if (sock) {
107 sdata = bpf_local_storage_update(
108 sock->sk, (struct bpf_local_storage_map *)map, value,
109 map_flags, GFP_ATOMIC);
110 sockfd_put(sock);
111 return PTR_ERR_OR_ZERO(sdata);
112 }
113
114 return err;
115}
116
117static long bpf_fd_sk_storage_delete_elem(struct bpf_map *map, void *key)
118{
119 struct socket *sock;
120 int fd, err;
121
122 fd = *(int *)key;
123 sock = sockfd_lookup(fd, &err);
124 if (sock) {
125 err = bpf_sk_storage_del(sock->sk, map);
126 sockfd_put(sock);
127 return err;
128 }
129
130 return err;
131}
132
133static struct bpf_local_storage_elem *
134bpf_sk_storage_clone_elem(struct sock *newsk,
135 struct bpf_local_storage_map *smap,
136 struct bpf_local_storage_elem *selem)
137{
138 struct bpf_local_storage_elem *copy_selem;
139
140 copy_selem = bpf_selem_alloc(smap, newsk, NULL, true, GFP_ATOMIC);
141 if (!copy_selem)
142 return NULL;
143
144 if (btf_record_has_field(smap->map.record, BPF_SPIN_LOCK))
145 copy_map_value_locked(&smap->map, SDATA(copy_selem)->data,
146 SDATA(selem)->data, true);
147 else
148 copy_map_value(&smap->map, SDATA(copy_selem)->data,
149 SDATA(selem)->data);
150
151 return copy_selem;
152}
153
154int bpf_sk_storage_clone(const struct sock *sk, struct sock *newsk)
155{
156 struct bpf_local_storage *new_sk_storage = NULL;
157 struct bpf_local_storage *sk_storage;
158 struct bpf_local_storage_elem *selem;
159 int ret = 0;
160
161 RCU_INIT_POINTER(newsk->sk_bpf_storage, NULL);
162
163 rcu_read_lock();
164 sk_storage = rcu_dereference(sk->sk_bpf_storage);
165
166 if (!sk_storage || hlist_empty(&sk_storage->list))
167 goto out;
168
169 hlist_for_each_entry_rcu(selem, &sk_storage->list, snode) {
170 struct bpf_local_storage_elem *copy_selem;
171 struct bpf_local_storage_map *smap;
172 struct bpf_map *map;
173
174 smap = rcu_dereference(SDATA(selem)->smap);
175 if (!(smap->map.map_flags & BPF_F_CLONE))
176 continue;
177
178 /* Note that for lockless listeners adding new element
179 * here can race with cleanup in bpf_local_storage_map_free.
180 * Try to grab map refcnt to make sure that it's still
181 * alive and prevent concurrent removal.
182 */
183 map = bpf_map_inc_not_zero(&smap->map);
184 if (IS_ERR(map))
185 continue;
186
187 copy_selem = bpf_sk_storage_clone_elem(newsk, smap, selem);
188 if (!copy_selem) {
189 ret = -ENOMEM;
190 bpf_map_put(map);
191 goto out;
192 }
193
194 if (new_sk_storage) {
195 bpf_selem_link_map(smap, copy_selem);
196 bpf_selem_link_storage_nolock(new_sk_storage, copy_selem);
197 } else {
198 ret = bpf_local_storage_alloc(newsk, smap, copy_selem, GFP_ATOMIC);
199 if (ret) {
200 bpf_selem_free(copy_selem, smap, true);
201 atomic_sub(smap->elem_size,
202 &newsk->sk_omem_alloc);
203 bpf_map_put(map);
204 goto out;
205 }
206
207 new_sk_storage =
208 rcu_dereference(copy_selem->local_storage);
209 }
210 bpf_map_put(map);
211 }
212
213out:
214 rcu_read_unlock();
215
216 /* In case of an error, don't free anything explicitly here, the
217 * caller is responsible to call bpf_sk_storage_free.
218 */
219
220 return ret;
221}
222
223/* *gfp_flags* is a hidden argument provided by the verifier */
224BPF_CALL_5(bpf_sk_storage_get, struct bpf_map *, map, struct sock *, sk,
225 void *, value, u64, flags, gfp_t, gfp_flags)
226{
227 struct bpf_local_storage_data *sdata;
228
229 WARN_ON_ONCE(!bpf_rcu_lock_held());
230 if (!sk || !sk_fullsock(sk) || flags > BPF_SK_STORAGE_GET_F_CREATE)
231 return (unsigned long)NULL;
232
233 sdata = bpf_sk_storage_lookup(sk, map, true);
234 if (sdata)
235 return (unsigned long)sdata->data;
236
237 if (flags == BPF_SK_STORAGE_GET_F_CREATE &&
238 /* Cannot add new elem to a going away sk.
239 * Otherwise, the new elem may become a leak
240 * (and also other memory issues during map
241 * destruction).
242 */
243 refcount_inc_not_zero(&sk->sk_refcnt)) {
244 sdata = bpf_local_storage_update(
245 sk, (struct bpf_local_storage_map *)map, value,
246 BPF_NOEXIST, gfp_flags);
247 /* sk must be a fullsock (guaranteed by verifier),
248 * so sock_gen_put() is unnecessary.
249 */
250 sock_put(sk);
251 return IS_ERR(sdata) ?
252 (unsigned long)NULL : (unsigned long)sdata->data;
253 }
254
255 return (unsigned long)NULL;
256}
257
258BPF_CALL_2(bpf_sk_storage_delete, struct bpf_map *, map, struct sock *, sk)
259{
260 WARN_ON_ONCE(!bpf_rcu_lock_held());
261 if (!sk || !sk_fullsock(sk))
262 return -EINVAL;
263
264 if (refcount_inc_not_zero(&sk->sk_refcnt)) {
265 int err;
266
267 err = bpf_sk_storage_del(sk, map);
268 sock_put(sk);
269 return err;
270 }
271
272 return -ENOENT;
273}
274
275static int bpf_sk_storage_charge(struct bpf_local_storage_map *smap,
276 void *owner, u32 size)
277{
278 int optmem_max = READ_ONCE(sysctl_optmem_max);
279 struct sock *sk = (struct sock *)owner;
280
281 /* same check as in sock_kmalloc() */
282 if (size <= optmem_max &&
283 atomic_read(&sk->sk_omem_alloc) + size < optmem_max) {
284 atomic_add(size, &sk->sk_omem_alloc);
285 return 0;
286 }
287
288 return -ENOMEM;
289}
290
291static void bpf_sk_storage_uncharge(struct bpf_local_storage_map *smap,
292 void *owner, u32 size)
293{
294 struct sock *sk = owner;
295
296 atomic_sub(size, &sk->sk_omem_alloc);
297}
298
299static struct bpf_local_storage __rcu **
300bpf_sk_storage_ptr(void *owner)
301{
302 struct sock *sk = owner;
303
304 return &sk->sk_bpf_storage;
305}
306
307const struct bpf_map_ops sk_storage_map_ops = {
308 .map_meta_equal = bpf_map_meta_equal,
309 .map_alloc_check = bpf_local_storage_map_alloc_check,
310 .map_alloc = bpf_sk_storage_map_alloc,
311 .map_free = bpf_sk_storage_map_free,
312 .map_get_next_key = notsupp_get_next_key,
313 .map_lookup_elem = bpf_fd_sk_storage_lookup_elem,
314 .map_update_elem = bpf_fd_sk_storage_update_elem,
315 .map_delete_elem = bpf_fd_sk_storage_delete_elem,
316 .map_check_btf = bpf_local_storage_map_check_btf,
317 .map_btf_id = &bpf_local_storage_map_btf_id[0],
318 .map_local_storage_charge = bpf_sk_storage_charge,
319 .map_local_storage_uncharge = bpf_sk_storage_uncharge,
320 .map_owner_storage_ptr = bpf_sk_storage_ptr,
321 .map_mem_usage = bpf_local_storage_map_mem_usage,
322};
323
324const struct bpf_func_proto bpf_sk_storage_get_proto = {
325 .func = bpf_sk_storage_get,
326 .gpl_only = false,
327 .ret_type = RET_PTR_TO_MAP_VALUE_OR_NULL,
328 .arg1_type = ARG_CONST_MAP_PTR,
329 .arg2_type = ARG_PTR_TO_BTF_ID_SOCK_COMMON,
330 .arg3_type = ARG_PTR_TO_MAP_VALUE_OR_NULL,
331 .arg4_type = ARG_ANYTHING,
332};
333
334const struct bpf_func_proto bpf_sk_storage_get_cg_sock_proto = {
335 .func = bpf_sk_storage_get,
336 .gpl_only = false,
337 .ret_type = RET_PTR_TO_MAP_VALUE_OR_NULL,
338 .arg1_type = ARG_CONST_MAP_PTR,
339 .arg2_type = ARG_PTR_TO_CTX, /* context is 'struct sock' */
340 .arg3_type = ARG_PTR_TO_MAP_VALUE_OR_NULL,
341 .arg4_type = ARG_ANYTHING,
342};
343
344const struct bpf_func_proto bpf_sk_storage_delete_proto = {
345 .func = bpf_sk_storage_delete,
346 .gpl_only = false,
347 .ret_type = RET_INTEGER,
348 .arg1_type = ARG_CONST_MAP_PTR,
349 .arg2_type = ARG_PTR_TO_BTF_ID_SOCK_COMMON,
350};
351
352static bool bpf_sk_storage_tracing_allowed(const struct bpf_prog *prog)
353{
354 const struct btf *btf_vmlinux;
355 const struct btf_type *t;
356 const char *tname;
357 u32 btf_id;
358
359 if (prog->aux->dst_prog)
360 return false;
361
362 /* Ensure the tracing program is not tracing
363 * any bpf_sk_storage*() function and also
364 * use the bpf_sk_storage_(get|delete) helper.
365 */
366 switch (prog->expected_attach_type) {
367 case BPF_TRACE_ITER:
368 case BPF_TRACE_RAW_TP:
369 /* bpf_sk_storage has no trace point */
370 return true;
371 case BPF_TRACE_FENTRY:
372 case BPF_TRACE_FEXIT:
373 btf_vmlinux = bpf_get_btf_vmlinux();
374 if (IS_ERR_OR_NULL(btf_vmlinux))
375 return false;
376 btf_id = prog->aux->attach_btf_id;
377 t = btf_type_by_id(btf_vmlinux, btf_id);
378 tname = btf_name_by_offset(btf_vmlinux, t->name_off);
379 return !!strncmp(tname, "bpf_sk_storage",
380 strlen("bpf_sk_storage"));
381 default:
382 return false;
383 }
384
385 return false;
386}
387
388/* *gfp_flags* is a hidden argument provided by the verifier */
389BPF_CALL_5(bpf_sk_storage_get_tracing, struct bpf_map *, map, struct sock *, sk,
390 void *, value, u64, flags, gfp_t, gfp_flags)
391{
392 WARN_ON_ONCE(!bpf_rcu_lock_held());
393 if (in_hardirq() || in_nmi())
394 return (unsigned long)NULL;
395
396 return (unsigned long)____bpf_sk_storage_get(map, sk, value, flags,
397 gfp_flags);
398}
399
400BPF_CALL_2(bpf_sk_storage_delete_tracing, struct bpf_map *, map,
401 struct sock *, sk)
402{
403 WARN_ON_ONCE(!bpf_rcu_lock_held());
404 if (in_hardirq() || in_nmi())
405 return -EPERM;
406
407 return ____bpf_sk_storage_delete(map, sk);
408}
409
410const struct bpf_func_proto bpf_sk_storage_get_tracing_proto = {
411 .func = bpf_sk_storage_get_tracing,
412 .gpl_only = false,
413 .ret_type = RET_PTR_TO_MAP_VALUE_OR_NULL,
414 .arg1_type = ARG_CONST_MAP_PTR,
415 .arg2_type = ARG_PTR_TO_BTF_ID_OR_NULL,
416 .arg2_btf_id = &btf_sock_ids[BTF_SOCK_TYPE_SOCK_COMMON],
417 .arg3_type = ARG_PTR_TO_MAP_VALUE_OR_NULL,
418 .arg4_type = ARG_ANYTHING,
419 .allowed = bpf_sk_storage_tracing_allowed,
420};
421
422const struct bpf_func_proto bpf_sk_storage_delete_tracing_proto = {
423 .func = bpf_sk_storage_delete_tracing,
424 .gpl_only = false,
425 .ret_type = RET_INTEGER,
426 .arg1_type = ARG_CONST_MAP_PTR,
427 .arg2_type = ARG_PTR_TO_BTF_ID_OR_NULL,
428 .arg2_btf_id = &btf_sock_ids[BTF_SOCK_TYPE_SOCK_COMMON],
429 .allowed = bpf_sk_storage_tracing_allowed,
430};
431
432struct bpf_sk_storage_diag {
433 u32 nr_maps;
434 struct bpf_map *maps[];
435};
436
437/* The reply will be like:
438 * INET_DIAG_BPF_SK_STORAGES (nla_nest)
439 * SK_DIAG_BPF_STORAGE (nla_nest)
440 * SK_DIAG_BPF_STORAGE_MAP_ID (nla_put_u32)
441 * SK_DIAG_BPF_STORAGE_MAP_VALUE (nla_reserve_64bit)
442 * SK_DIAG_BPF_STORAGE (nla_nest)
443 * SK_DIAG_BPF_STORAGE_MAP_ID (nla_put_u32)
444 * SK_DIAG_BPF_STORAGE_MAP_VALUE (nla_reserve_64bit)
445 * ....
446 */
447static int nla_value_size(u32 value_size)
448{
449 /* SK_DIAG_BPF_STORAGE (nla_nest)
450 * SK_DIAG_BPF_STORAGE_MAP_ID (nla_put_u32)
451 * SK_DIAG_BPF_STORAGE_MAP_VALUE (nla_reserve_64bit)
452 */
453 return nla_total_size(0) + nla_total_size(sizeof(u32)) +
454 nla_total_size_64bit(value_size);
455}
456
457void bpf_sk_storage_diag_free(struct bpf_sk_storage_diag *diag)
458{
459 u32 i;
460
461 if (!diag)
462 return;
463
464 for (i = 0; i < diag->nr_maps; i++)
465 bpf_map_put(diag->maps[i]);
466
467 kfree(diag);
468}
469EXPORT_SYMBOL_GPL(bpf_sk_storage_diag_free);
470
471static bool diag_check_dup(const struct bpf_sk_storage_diag *diag,
472 const struct bpf_map *map)
473{
474 u32 i;
475
476 for (i = 0; i < diag->nr_maps; i++) {
477 if (diag->maps[i] == map)
478 return true;
479 }
480
481 return false;
482}
483
484struct bpf_sk_storage_diag *
485bpf_sk_storage_diag_alloc(const struct nlattr *nla_stgs)
486{
487 struct bpf_sk_storage_diag *diag;
488 struct nlattr *nla;
489 u32 nr_maps = 0;
490 int rem, err;
491
492 /* bpf_local_storage_map is currently limited to CAP_SYS_ADMIN as
493 * the map_alloc_check() side also does.
494 */
495 if (!bpf_capable())
496 return ERR_PTR(-EPERM);
497
498 nla_for_each_nested(nla, nla_stgs, rem) {
499 if (nla_type(nla) == SK_DIAG_BPF_STORAGE_REQ_MAP_FD)
500 nr_maps++;
501 }
502
503 diag = kzalloc(struct_size(diag, maps, nr_maps), GFP_KERNEL);
504 if (!diag)
505 return ERR_PTR(-ENOMEM);
506
507 nla_for_each_nested(nla, nla_stgs, rem) {
508 struct bpf_map *map;
509 int map_fd;
510
511 if (nla_type(nla) != SK_DIAG_BPF_STORAGE_REQ_MAP_FD)
512 continue;
513
514 map_fd = nla_get_u32(nla);
515 map = bpf_map_get(map_fd);
516 if (IS_ERR(map)) {
517 err = PTR_ERR(map);
518 goto err_free;
519 }
520 if (map->map_type != BPF_MAP_TYPE_SK_STORAGE) {
521 bpf_map_put(map);
522 err = -EINVAL;
523 goto err_free;
524 }
525 if (diag_check_dup(diag, map)) {
526 bpf_map_put(map);
527 err = -EEXIST;
528 goto err_free;
529 }
530 diag->maps[diag->nr_maps++] = map;
531 }
532
533 return diag;
534
535err_free:
536 bpf_sk_storage_diag_free(diag);
537 return ERR_PTR(err);
538}
539EXPORT_SYMBOL_GPL(bpf_sk_storage_diag_alloc);
540
541static int diag_get(struct bpf_local_storage_data *sdata, struct sk_buff *skb)
542{
543 struct nlattr *nla_stg, *nla_value;
544 struct bpf_local_storage_map *smap;
545
546 /* It cannot exceed max nlattr's payload */
547 BUILD_BUG_ON(U16_MAX - NLA_HDRLEN < BPF_LOCAL_STORAGE_MAX_VALUE_SIZE);
548
549 nla_stg = nla_nest_start(skb, SK_DIAG_BPF_STORAGE);
550 if (!nla_stg)
551 return -EMSGSIZE;
552
553 smap = rcu_dereference(sdata->smap);
554 if (nla_put_u32(skb, SK_DIAG_BPF_STORAGE_MAP_ID, smap->map.id))
555 goto errout;
556
557 nla_value = nla_reserve_64bit(skb, SK_DIAG_BPF_STORAGE_MAP_VALUE,
558 smap->map.value_size,
559 SK_DIAG_BPF_STORAGE_PAD);
560 if (!nla_value)
561 goto errout;
562
563 if (btf_record_has_field(smap->map.record, BPF_SPIN_LOCK))
564 copy_map_value_locked(&smap->map, nla_data(nla_value),
565 sdata->data, true);
566 else
567 copy_map_value(&smap->map, nla_data(nla_value), sdata->data);
568
569 nla_nest_end(skb, nla_stg);
570 return 0;
571
572errout:
573 nla_nest_cancel(skb, nla_stg);
574 return -EMSGSIZE;
575}
576
577static int bpf_sk_storage_diag_put_all(struct sock *sk, struct sk_buff *skb,
578 int stg_array_type,
579 unsigned int *res_diag_size)
580{
581 /* stg_array_type (e.g. INET_DIAG_BPF_SK_STORAGES) */
582 unsigned int diag_size = nla_total_size(0);
583 struct bpf_local_storage *sk_storage;
584 struct bpf_local_storage_elem *selem;
585 struct bpf_local_storage_map *smap;
586 struct nlattr *nla_stgs;
587 unsigned int saved_len;
588 int err = 0;
589
590 rcu_read_lock();
591
592 sk_storage = rcu_dereference(sk->sk_bpf_storage);
593 if (!sk_storage || hlist_empty(&sk_storage->list)) {
594 rcu_read_unlock();
595 return 0;
596 }
597
598 nla_stgs = nla_nest_start(skb, stg_array_type);
599 if (!nla_stgs)
600 /* Continue to learn diag_size */
601 err = -EMSGSIZE;
602
603 saved_len = skb->len;
604 hlist_for_each_entry_rcu(selem, &sk_storage->list, snode) {
605 smap = rcu_dereference(SDATA(selem)->smap);
606 diag_size += nla_value_size(smap->map.value_size);
607
608 if (nla_stgs && diag_get(SDATA(selem), skb))
609 /* Continue to learn diag_size */
610 err = -EMSGSIZE;
611 }
612
613 rcu_read_unlock();
614
615 if (nla_stgs) {
616 if (saved_len == skb->len)
617 nla_nest_cancel(skb, nla_stgs);
618 else
619 nla_nest_end(skb, nla_stgs);
620 }
621
622 if (diag_size == nla_total_size(0)) {
623 *res_diag_size = 0;
624 return 0;
625 }
626
627 *res_diag_size = diag_size;
628 return err;
629}
630
631int bpf_sk_storage_diag_put(struct bpf_sk_storage_diag *diag,
632 struct sock *sk, struct sk_buff *skb,
633 int stg_array_type,
634 unsigned int *res_diag_size)
635{
636 /* stg_array_type (e.g. INET_DIAG_BPF_SK_STORAGES) */
637 unsigned int diag_size = nla_total_size(0);
638 struct bpf_local_storage *sk_storage;
639 struct bpf_local_storage_data *sdata;
640 struct nlattr *nla_stgs;
641 unsigned int saved_len;
642 int err = 0;
643 u32 i;
644
645 *res_diag_size = 0;
646
647 /* No map has been specified. Dump all. */
648 if (!diag->nr_maps)
649 return bpf_sk_storage_diag_put_all(sk, skb, stg_array_type,
650 res_diag_size);
651
652 rcu_read_lock();
653 sk_storage = rcu_dereference(sk->sk_bpf_storage);
654 if (!sk_storage || hlist_empty(&sk_storage->list)) {
655 rcu_read_unlock();
656 return 0;
657 }
658
659 nla_stgs = nla_nest_start(skb, stg_array_type);
660 if (!nla_stgs)
661 /* Continue to learn diag_size */
662 err = -EMSGSIZE;
663
664 saved_len = skb->len;
665 for (i = 0; i < diag->nr_maps; i++) {
666 sdata = bpf_local_storage_lookup(sk_storage,
667 (struct bpf_local_storage_map *)diag->maps[i],
668 false);
669
670 if (!sdata)
671 continue;
672
673 diag_size += nla_value_size(diag->maps[i]->value_size);
674
675 if (nla_stgs && diag_get(sdata, skb))
676 /* Continue to learn diag_size */
677 err = -EMSGSIZE;
678 }
679 rcu_read_unlock();
680
681 if (nla_stgs) {
682 if (saved_len == skb->len)
683 nla_nest_cancel(skb, nla_stgs);
684 else
685 nla_nest_end(skb, nla_stgs);
686 }
687
688 if (diag_size == nla_total_size(0)) {
689 *res_diag_size = 0;
690 return 0;
691 }
692
693 *res_diag_size = diag_size;
694 return err;
695}
696EXPORT_SYMBOL_GPL(bpf_sk_storage_diag_put);
697
698struct bpf_iter_seq_sk_storage_map_info {
699 struct bpf_map *map;
700 unsigned int bucket_id;
701 unsigned skip_elems;
702};
703
704static struct bpf_local_storage_elem *
705bpf_sk_storage_map_seq_find_next(struct bpf_iter_seq_sk_storage_map_info *info,
706 struct bpf_local_storage_elem *prev_selem)
707 __acquires(RCU) __releases(RCU)
708{
709 struct bpf_local_storage *sk_storage;
710 struct bpf_local_storage_elem *selem;
711 u32 skip_elems = info->skip_elems;
712 struct bpf_local_storage_map *smap;
713 u32 bucket_id = info->bucket_id;
714 u32 i, count, n_buckets;
715 struct bpf_local_storage_map_bucket *b;
716
717 smap = (struct bpf_local_storage_map *)info->map;
718 n_buckets = 1U << smap->bucket_log;
719 if (bucket_id >= n_buckets)
720 return NULL;
721
722 /* try to find next selem in the same bucket */
723 selem = prev_selem;
724 count = 0;
725 while (selem) {
726 selem = hlist_entry_safe(rcu_dereference(hlist_next_rcu(&selem->map_node)),
727 struct bpf_local_storage_elem, map_node);
728 if (!selem) {
729 /* not found, unlock and go to the next bucket */
730 b = &smap->buckets[bucket_id++];
731 rcu_read_unlock();
732 skip_elems = 0;
733 break;
734 }
735 sk_storage = rcu_dereference(selem->local_storage);
736 if (sk_storage) {
737 info->skip_elems = skip_elems + count;
738 return selem;
739 }
740 count++;
741 }
742
743 for (i = bucket_id; i < (1U << smap->bucket_log); i++) {
744 b = &smap->buckets[i];
745 rcu_read_lock();
746 count = 0;
747 hlist_for_each_entry_rcu(selem, &b->list, map_node) {
748 sk_storage = rcu_dereference(selem->local_storage);
749 if (sk_storage && count >= skip_elems) {
750 info->bucket_id = i;
751 info->skip_elems = count;
752 return selem;
753 }
754 count++;
755 }
756 rcu_read_unlock();
757 skip_elems = 0;
758 }
759
760 info->bucket_id = i;
761 info->skip_elems = 0;
762 return NULL;
763}
764
765static void *bpf_sk_storage_map_seq_start(struct seq_file *seq, loff_t *pos)
766{
767 struct bpf_local_storage_elem *selem;
768
769 selem = bpf_sk_storage_map_seq_find_next(seq->private, NULL);
770 if (!selem)
771 return NULL;
772
773 if (*pos == 0)
774 ++*pos;
775 return selem;
776}
777
778static void *bpf_sk_storage_map_seq_next(struct seq_file *seq, void *v,
779 loff_t *pos)
780{
781 struct bpf_iter_seq_sk_storage_map_info *info = seq->private;
782
783 ++*pos;
784 ++info->skip_elems;
785 return bpf_sk_storage_map_seq_find_next(seq->private, v);
786}
787
788struct bpf_iter__bpf_sk_storage_map {
789 __bpf_md_ptr(struct bpf_iter_meta *, meta);
790 __bpf_md_ptr(struct bpf_map *, map);
791 __bpf_md_ptr(struct sock *, sk);
792 __bpf_md_ptr(void *, value);
793};
794
795DEFINE_BPF_ITER_FUNC(bpf_sk_storage_map, struct bpf_iter_meta *meta,
796 struct bpf_map *map, struct sock *sk,
797 void *value)
798
799static int __bpf_sk_storage_map_seq_show(struct seq_file *seq,
800 struct bpf_local_storage_elem *selem)
801{
802 struct bpf_iter_seq_sk_storage_map_info *info = seq->private;
803 struct bpf_iter__bpf_sk_storage_map ctx = {};
804 struct bpf_local_storage *sk_storage;
805 struct bpf_iter_meta meta;
806 struct bpf_prog *prog;
807 int ret = 0;
808
809 meta.seq = seq;
810 prog = bpf_iter_get_info(&meta, selem == NULL);
811 if (prog) {
812 ctx.meta = &meta;
813 ctx.map = info->map;
814 if (selem) {
815 sk_storage = rcu_dereference(selem->local_storage);
816 ctx.sk = sk_storage->owner;
817 ctx.value = SDATA(selem)->data;
818 }
819 ret = bpf_iter_run_prog(prog, &ctx);
820 }
821
822 return ret;
823}
824
825static int bpf_sk_storage_map_seq_show(struct seq_file *seq, void *v)
826{
827 return __bpf_sk_storage_map_seq_show(seq, v);
828}
829
830static void bpf_sk_storage_map_seq_stop(struct seq_file *seq, void *v)
831 __releases(RCU)
832{
833 if (!v)
834 (void)__bpf_sk_storage_map_seq_show(seq, v);
835 else
836 rcu_read_unlock();
837}
838
839static int bpf_iter_init_sk_storage_map(void *priv_data,
840 struct bpf_iter_aux_info *aux)
841{
842 struct bpf_iter_seq_sk_storage_map_info *seq_info = priv_data;
843
844 bpf_map_inc_with_uref(aux->map);
845 seq_info->map = aux->map;
846 return 0;
847}
848
849static void bpf_iter_fini_sk_storage_map(void *priv_data)
850{
851 struct bpf_iter_seq_sk_storage_map_info *seq_info = priv_data;
852
853 bpf_map_put_with_uref(seq_info->map);
854}
855
856static int bpf_iter_attach_map(struct bpf_prog *prog,
857 union bpf_iter_link_info *linfo,
858 struct bpf_iter_aux_info *aux)
859{
860 struct bpf_map *map;
861 int err = -EINVAL;
862
863 if (!linfo->map.map_fd)
864 return -EBADF;
865
866 map = bpf_map_get_with_uref(linfo->map.map_fd);
867 if (IS_ERR(map))
868 return PTR_ERR(map);
869
870 if (map->map_type != BPF_MAP_TYPE_SK_STORAGE)
871 goto put_map;
872
873 if (prog->aux->max_rdwr_access > map->value_size) {
874 err = -EACCES;
875 goto put_map;
876 }
877
878 aux->map = map;
879 return 0;
880
881put_map:
882 bpf_map_put_with_uref(map);
883 return err;
884}
885
886static void bpf_iter_detach_map(struct bpf_iter_aux_info *aux)
887{
888 bpf_map_put_with_uref(aux->map);
889}
890
891static const struct seq_operations bpf_sk_storage_map_seq_ops = {
892 .start = bpf_sk_storage_map_seq_start,
893 .next = bpf_sk_storage_map_seq_next,
894 .stop = bpf_sk_storage_map_seq_stop,
895 .show = bpf_sk_storage_map_seq_show,
896};
897
898static const struct bpf_iter_seq_info iter_seq_info = {
899 .seq_ops = &bpf_sk_storage_map_seq_ops,
900 .init_seq_private = bpf_iter_init_sk_storage_map,
901 .fini_seq_private = bpf_iter_fini_sk_storage_map,
902 .seq_priv_size = sizeof(struct bpf_iter_seq_sk_storage_map_info),
903};
904
905static struct bpf_iter_reg bpf_sk_storage_map_reg_info = {
906 .target = "bpf_sk_storage_map",
907 .attach_target = bpf_iter_attach_map,
908 .detach_target = bpf_iter_detach_map,
909 .show_fdinfo = bpf_iter_map_show_fdinfo,
910 .fill_link_info = bpf_iter_map_fill_link_info,
911 .ctx_arg_info_size = 2,
912 .ctx_arg_info = {
913 { offsetof(struct bpf_iter__bpf_sk_storage_map, sk),
914 PTR_TO_BTF_ID_OR_NULL },
915 { offsetof(struct bpf_iter__bpf_sk_storage_map, value),
916 PTR_TO_BUF | PTR_MAYBE_NULL },
917 },
918 .seq_info = &iter_seq_info,
919};
920
921static int __init bpf_sk_storage_map_iter_init(void)
922{
923 bpf_sk_storage_map_reg_info.ctx_arg_info[0].btf_id =
924 btf_sock_ids[BTF_SOCK_TYPE_SOCK];
925 return bpf_iter_reg_target(&bpf_sk_storage_map_reg_info);
926}
927late_initcall(bpf_sk_storage_map_iter_init);