blob: 2926f1f00d656af1e4d9ee10e79ac558f1d125f7 [file] [log] [blame]
Martin KaFai Lau6ac99e82019-04-26 16:39:39 -07001/* SPDX-License-Identifier: GPL-2.0 */
2/* Copyright (c) 2019 Facebook */
3#ifndef _BPF_SK_STORAGE_H
4#define _BPF_SK_STORAGE_H
5
KP Singhf836a562020-08-25 20:29:15 +02006#include <linux/rculist.h>
7#include <linux/list.h>
8#include <linux/hash.h>
KP Singh4cc9ce4e2020-08-25 20:29:14 +02009#include <linux/types.h>
10#include <linux/spinlock.h>
KP Singhf836a562020-08-25 20:29:15 +020011#include <linux/bpf.h>
12#include <net/sock.h>
13#include <uapi/linux/sock_diag.h>
14#include <uapi/linux/btf.h>
KP Singh450af8d2020-08-25 20:29:16 +020015#include <linux/bpf_local_storage.h>
KP Singh4cc9ce4e2020-08-25 20:29:14 +020016
Martin KaFai Lau6ac99e82019-04-26 16:39:39 -070017struct sock;
18
19void bpf_sk_storage_free(struct sock *sk);
20
21extern const struct bpf_func_proto bpf_sk_storage_get_proto;
22extern const struct bpf_func_proto bpf_sk_storage_delete_proto;
Martin KaFai Lau8e4597c2020-11-12 13:13:13 -080023extern const struct bpf_func_proto bpf_sk_storage_get_tracing_proto;
24extern const struct bpf_func_proto bpf_sk_storage_delete_tracing_proto;
Martin KaFai Lau6ac99e82019-04-26 16:39:39 -070025
KP Singhf836a562020-08-25 20:29:15 +020026struct bpf_local_storage_elem;
Martin KaFai Lau1ed4d922020-02-25 15:04:21 -080027struct bpf_sk_storage_diag;
28struct sk_buff;
29struct nlattr;
Martin KaFai Lau1ed4d922020-02-25 15:04:21 -080030
Stanislav Fomichev8f51dfc2019-08-14 10:37:49 -070031#ifdef CONFIG_BPF_SYSCALL
32int bpf_sk_storage_clone(const struct sock *sk, struct sock *newsk);
Martin KaFai Lau1ed4d922020-02-25 15:04:21 -080033struct bpf_sk_storage_diag *
34bpf_sk_storage_diag_alloc(const struct nlattr *nla_stgs);
35void bpf_sk_storage_diag_free(struct bpf_sk_storage_diag *diag);
36int bpf_sk_storage_diag_put(struct bpf_sk_storage_diag *diag,
37 struct sock *sk, struct sk_buff *skb,
38 int stg_array_type,
39 unsigned int *res_diag_size);
Stanislav Fomichev8f51dfc2019-08-14 10:37:49 -070040#else
41static inline int bpf_sk_storage_clone(const struct sock *sk,
42 struct sock *newsk)
43{
44 return 0;
45}
Martin KaFai Lau1ed4d922020-02-25 15:04:21 -080046static inline struct bpf_sk_storage_diag *
47bpf_sk_storage_diag_alloc(const struct nlattr *nla)
48{
49 return NULL;
50}
51static inline void bpf_sk_storage_diag_free(struct bpf_sk_storage_diag *diag)
52{
53}
54static inline int bpf_sk_storage_diag_put(struct bpf_sk_storage_diag *diag,
55 struct sock *sk, struct sk_buff *skb,
56 int stg_array_type,
57 unsigned int *res_diag_size)
58{
59 return 0;
60}
Stanislav Fomichev8f51dfc2019-08-14 10:37:49 -070061#endif
62
Martin KaFai Lau6ac99e82019-04-26 16:39:39 -070063#endif /* _BPF_SK_STORAGE_H */