diff mbox series

[bpf-next,v4,1/5] bpf: clean up sockmap related Kconfigs

Message ID 20210216064250.38331-2-xiyou.wangcong@gmail.com
State New
Headers show
Series sock_map: clean up and refactor code for BPF_SK_SKB_VERDICT | expand

Commit Message

Cong Wang Feb. 16, 2021, 6:42 a.m. UTC
From: Cong Wang <cong.wang@bytedance.com>

As suggested by John, clean up sockmap related Kconfigs:

Reduce the scope of CONFIG_BPF_STREAM_PARSER down to TCP stream
parser, to reflect its name.

Make the rest sockmap code simply depend on CONFIG_BPF_SYSCALL.
And leave CONFIG_NET_SOCK_MSG untouched, as it is used by
non-sockmap cases.

Cc: Daniel Borkmann <daniel@iogearbox.net>
Cc: Jakub Sitnicki <jakub@cloudflare.com>
Reviewed-by: Lorenz Bauer <lmb@cloudflare.com>
Acked-by: John Fastabend <john.fastabend@gmail.com>
Signed-off-by: Cong Wang <cong.wang@bytedance.com>
---
 include/linux/bpf.h       |  20 +++---
 include/linux/bpf_types.h |   2 -
 include/linux/skmsg.h     |  22 ++++++
 include/net/tcp.h         |  13 ++--
 include/net/udp.h         |   4 +-
 init/Kconfig              |   1 +
 net/Kconfig               |   6 +-
 net/core/Makefile         |   2 +-
 net/core/skmsg.c          | 139 ++++++++++++++++++++------------------
 net/core/sock_map.c       |   2 +
 net/ipv4/Makefile         |   2 +-
 net/ipv4/tcp_bpf.c        |   4 +-
 net/ipv4/udp_bpf.c        |   2 +
 13 files changed, 121 insertions(+), 98 deletions(-)

Comments

Jakub Sitnicki Feb. 19, 2021, 6:25 p.m. UTC | #1
On Tue, Feb 16, 2021 at 07:42 AM CET, Cong Wang wrote:
> From: Cong Wang <cong.wang@bytedance.com>

>

> As suggested by John, clean up sockmap related Kconfigs:

>

> Reduce the scope of CONFIG_BPF_STREAM_PARSER down to TCP stream

> parser, to reflect its name.

>

> Make the rest sockmap code simply depend on CONFIG_BPF_SYSCALL.

> And leave CONFIG_NET_SOCK_MSG untouched, as it is used by

> non-sockmap cases.

>

> Cc: Daniel Borkmann <daniel@iogearbox.net>

> Cc: Jakub Sitnicki <jakub@cloudflare.com>

> Reviewed-by: Lorenz Bauer <lmb@cloudflare.com>

> Acked-by: John Fastabend <john.fastabend@gmail.com>

> Signed-off-by: Cong Wang <cong.wang@bytedance.com>

> ---


Sorry for the delay. There's a lot happening here. Took me a while to
dig through it.

I have a couple of nit-picks, which easily can be addressed as
follow-ups, and one comment.

sock_map_prog_update and sk_psock_done_strp are only used in
net/core/sock_map.c and can be static.

[...]

> diff --git a/net/ipv4/tcp_bpf.c b/net/ipv4/tcp_bpf.c

> index bc7d2a586e18..b2c4865eb39b 100644

> --- a/net/ipv4/tcp_bpf.c

> +++ b/net/ipv4/tcp_bpf.c

> @@ -229,7 +229,6 @@ int tcp_bpf_sendmsg_redir(struct sock *sk, struct sk_msg *msg,

>  }

>  EXPORT_SYMBOL_GPL(tcp_bpf_sendmsg_redir);

>

> -#ifdef CONFIG_BPF_STREAM_PARSER

>  static bool tcp_bpf_stream_read(const struct sock *sk)

>  {

>  	struct sk_psock *psock;

> @@ -561,8 +560,10 @@ static void tcp_bpf_rebuild_protos(struct proto prot[TCP_BPF_NUM_CFGS],

>  				   struct proto *base)

>  {

>  	prot[TCP_BPF_BASE]			= *base;

> +#if defined(CONFIG_BPF_SYSCALL)

>  	prot[TCP_BPF_BASE].unhash		= sock_map_unhash;

>  	prot[TCP_BPF_BASE].close		= sock_map_close;

> +#endif

>  	prot[TCP_BPF_BASE].recvmsg		= tcp_bpf_recvmsg;

>  	prot[TCP_BPF_BASE].stream_memory_read	= tcp_bpf_stream_read;

>

> @@ -629,4 +630,3 @@ void tcp_bpf_clone(const struct sock *sk, struct sock *newsk)

>  	if (prot == &tcp_bpf_prots[family][TCP_BPF_BASE])

>  		newsk->sk_prot = sk->sk_prot_creator;

>  }

> -#endif /* CONFIG_BPF_STREAM_PARSER */


net/core/sock_map.o now is built only when CONFIG_BPF_SYSCALL is set.
While tcp_bpf_get_proto is only called from net/core/sock_map.o.

Seems there is no sense in compiling tcp_bpf_get_proto, and everything
it depends on which was enclosed by CONFIG_BPF_STREAM_PARSER check, when
CONFIG_BPF_SYSCALL is unset.

> diff --git a/net/ipv4/udp_bpf.c b/net/ipv4/udp_bpf.c

> index 7a94791efc1a..e635ccc175ca 100644

> --- a/net/ipv4/udp_bpf.c

> +++ b/net/ipv4/udp_bpf.c

> @@ -18,8 +18,10 @@ static struct proto udp_bpf_prots[UDP_BPF_NUM_PROTS];

>  static void udp_bpf_rebuild_protos(struct proto *prot, const struct proto *base)

>  {

>  	*prot        = *base;

> +#if defined(CONFIG_BPF_SYSCALL)

>  	prot->unhash = sock_map_unhash;

>  	prot->close  = sock_map_close;

> +#endif

>  }

>

>  static void udp_bpf_check_v6_needs_rebuild(struct proto *ops)


Same situation here but for udp_bpf_get_proto.
Cong Wang Feb. 19, 2021, 6:46 p.m. UTC | #2
On Fri, Feb 19, 2021 at 10:25 AM Jakub Sitnicki <jakub@cloudflare.com> wrote:
>

> On Tue, Feb 16, 2021 at 07:42 AM CET, Cong Wang wrote:

> > From: Cong Wang <cong.wang@bytedance.com>

> >

> > As suggested by John, clean up sockmap related Kconfigs:

> >

> > Reduce the scope of CONFIG_BPF_STREAM_PARSER down to TCP stream

> > parser, to reflect its name.

> >

> > Make the rest sockmap code simply depend on CONFIG_BPF_SYSCALL.

> > And leave CONFIG_NET_SOCK_MSG untouched, as it is used by

> > non-sockmap cases.

> >

> > Cc: Daniel Borkmann <daniel@iogearbox.net>

> > Cc: Jakub Sitnicki <jakub@cloudflare.com>

> > Reviewed-by: Lorenz Bauer <lmb@cloudflare.com>

> > Acked-by: John Fastabend <john.fastabend@gmail.com>

> > Signed-off-by: Cong Wang <cong.wang@bytedance.com>

> > ---

>

> Sorry for the delay. There's a lot happening here. Took me a while to

> dig through it.

>

> I have a couple of nit-picks, which easily can be addressed as

> follow-ups, and one comment.


No problem, it is not merged, so V5 is definitely not a problem.

>

> sock_map_prog_update and sk_psock_done_strp are only used in

> net/core/sock_map.c and can be static.


1. This seems to be unrelated to this patch? But I am still happy to
address it.

2. sk_psock_done_strp() is in skmsg.c, hence why it is non-static.
And I believe it fits in skmsg.c better than in sock_map.c, because
it operates on psock rather than sock_map itself.

So, I can make sock_map_prog_update() static in a separate patch
and carry it in V5.

>

> [...]

>

> > diff --git a/net/ipv4/tcp_bpf.c b/net/ipv4/tcp_bpf.c

> > index bc7d2a586e18..b2c4865eb39b 100644

> > --- a/net/ipv4/tcp_bpf.c

> > +++ b/net/ipv4/tcp_bpf.c

> > @@ -229,7 +229,6 @@ int tcp_bpf_sendmsg_redir(struct sock *sk, struct sk_msg *msg,

> >  }

> >  EXPORT_SYMBOL_GPL(tcp_bpf_sendmsg_redir);

> >

> > -#ifdef CONFIG_BPF_STREAM_PARSER

> >  static bool tcp_bpf_stream_read(const struct sock *sk)

> >  {

> >       struct sk_psock *psock;

> > @@ -561,8 +560,10 @@ static void tcp_bpf_rebuild_protos(struct proto prot[TCP_BPF_NUM_CFGS],

> >                                  struct proto *base)

> >  {

> >       prot[TCP_BPF_BASE]                      = *base;

> > +#if defined(CONFIG_BPF_SYSCALL)

> >       prot[TCP_BPF_BASE].unhash               = sock_map_unhash;

> >       prot[TCP_BPF_BASE].close                = sock_map_close;

> > +#endif

> >       prot[TCP_BPF_BASE].recvmsg              = tcp_bpf_recvmsg;

> >       prot[TCP_BPF_BASE].stream_memory_read   = tcp_bpf_stream_read;

> >

> > @@ -629,4 +630,3 @@ void tcp_bpf_clone(const struct sock *sk, struct sock *newsk)

> >       if (prot == &tcp_bpf_prots[family][TCP_BPF_BASE])

> >               newsk->sk_prot = sk->sk_prot_creator;

> >  }

> > -#endif /* CONFIG_BPF_STREAM_PARSER */

>

> net/core/sock_map.o now is built only when CONFIG_BPF_SYSCALL is set.

> While tcp_bpf_get_proto is only called from net/core/sock_map.o.

>

> Seems there is no sense in compiling tcp_bpf_get_proto, and everything

> it depends on which was enclosed by CONFIG_BPF_STREAM_PARSER check, when

> CONFIG_BPF_SYSCALL is unset.


I can try but I am definitely not sure whether kTLS is happy about
it, clearly kTLS at least uses __tcp_bpf_recvmsg() and
tcp_bpf_sendmsg_redir().

>

> > diff --git a/net/ipv4/udp_bpf.c b/net/ipv4/udp_bpf.c

> > index 7a94791efc1a..e635ccc175ca 100644

> > --- a/net/ipv4/udp_bpf.c

> > +++ b/net/ipv4/udp_bpf.c

> > @@ -18,8 +18,10 @@ static struct proto udp_bpf_prots[UDP_BPF_NUM_PROTS];

> >  static void udp_bpf_rebuild_protos(struct proto *prot, const struct proto *base)

> >  {

> >       *prot        = *base;

> > +#if defined(CONFIG_BPF_SYSCALL)

> >       prot->unhash = sock_map_unhash;

> >       prot->close  = sock_map_close;

> > +#endif

> >  }

> >

> >  static void udp_bpf_check_v6_needs_rebuild(struct proto *ops)

>

> Same situation here but for udp_bpf_get_proto.


UDP is different, as kTLS certainly doesn't and won't use it. I think
udp_bpf.c can be just put under CONFIG_BPF_SYSCALL.

Thanks.
Jakub Sitnicki Feb. 19, 2021, 10 p.m. UTC | #3
On Fri, Feb 19, 2021 at 07:46 PM CET, Cong Wang wrote:
> On Fri, Feb 19, 2021 at 10:25 AM Jakub Sitnicki <jakub@cloudflare.com> wrote:

>>

>> On Tue, Feb 16, 2021 at 07:42 AM CET, Cong Wang wrote:

>> > From: Cong Wang <cong.wang@bytedance.com>

>> >

>> > As suggested by John, clean up sockmap related Kconfigs:

>> >

>> > Reduce the scope of CONFIG_BPF_STREAM_PARSER down to TCP stream

>> > parser, to reflect its name.

>> >

>> > Make the rest sockmap code simply depend on CONFIG_BPF_SYSCALL.

>> > And leave CONFIG_NET_SOCK_MSG untouched, as it is used by

>> > non-sockmap cases.

>> >

>> > Cc: Daniel Borkmann <daniel@iogearbox.net>

>> > Cc: Jakub Sitnicki <jakub@cloudflare.com>

>> > Reviewed-by: Lorenz Bauer <lmb@cloudflare.com>

>> > Acked-by: John Fastabend <john.fastabend@gmail.com>

>> > Signed-off-by: Cong Wang <cong.wang@bytedance.com>

>> > ---

>>

>> Sorry for the delay. There's a lot happening here. Took me a while to

>> dig through it.

>>

>> I have a couple of nit-picks, which easily can be addressed as

>> follow-ups, and one comment.

>

> No problem, it is not merged, so V5 is definitely not a problem.

>

>>

>> sock_map_prog_update and sk_psock_done_strp are only used in

>> net/core/sock_map.c and can be static.

>

> 1. This seems to be unrelated to this patch? But I am still happy to

> address it.


Completely unrelated. Just a nit-pick. Feel free to ignore.

> 2. sk_psock_done_strp() is in skmsg.c, hence why it is non-static.

> And I believe it fits in skmsg.c better than in sock_map.c, because

> it operates on psock rather than sock_map itself.


I wrote that sk_psock_done_strp is used only in net/core/sock_map.c,
while I should have written that it's used only in net/core/skmsg.c.

Sorry, a mistake when copying from my notes. Also, feel free to ignore.

> So, I can make sock_map_prog_update() static in a separate patch

> and carry it in V5.


Completely up to you. I don't insist.

>>

>> [...]

>>

>> > diff --git a/net/ipv4/tcp_bpf.c b/net/ipv4/tcp_bpf.c

>> > index bc7d2a586e18..b2c4865eb39b 100644

>> > --- a/net/ipv4/tcp_bpf.c

>> > +++ b/net/ipv4/tcp_bpf.c

>> > @@ -229,7 +229,6 @@ int tcp_bpf_sendmsg_redir(struct sock *sk, struct sk_msg *msg,

>> >  }

>> >  EXPORT_SYMBOL_GPL(tcp_bpf_sendmsg_redir);

>> >

>> > -#ifdef CONFIG_BPF_STREAM_PARSER

>> >  static bool tcp_bpf_stream_read(const struct sock *sk)

>> >  {

>> >       struct sk_psock *psock;

>> > @@ -561,8 +560,10 @@ static void tcp_bpf_rebuild_protos(struct proto prot[TCP_BPF_NUM_CFGS],

>> >                                  struct proto *base)

>> >  {

>> >       prot[TCP_BPF_BASE]                      = *base;

>> > +#if defined(CONFIG_BPF_SYSCALL)

>> >       prot[TCP_BPF_BASE].unhash               = sock_map_unhash;

>> >       prot[TCP_BPF_BASE].close                = sock_map_close;

>> > +#endif

>> >       prot[TCP_BPF_BASE].recvmsg              = tcp_bpf_recvmsg;

>> >       prot[TCP_BPF_BASE].stream_memory_read   = tcp_bpf_stream_read;

>> >

>> > @@ -629,4 +630,3 @@ void tcp_bpf_clone(const struct sock *sk, struct sock *newsk)

>> >       if (prot == &tcp_bpf_prots[family][TCP_BPF_BASE])

>> >               newsk->sk_prot = sk->sk_prot_creator;

>> >  }

>> > -#endif /* CONFIG_BPF_STREAM_PARSER */

>>

>> net/core/sock_map.o now is built only when CONFIG_BPF_SYSCALL is set.

>> While tcp_bpf_get_proto is only called from net/core/sock_map.o.

>>

>> Seems there is no sense in compiling tcp_bpf_get_proto, and everything

>> it depends on which was enclosed by CONFIG_BPF_STREAM_PARSER check, when

>> CONFIG_BPF_SYSCALL is unset.

>

> I can try but I am definitely not sure whether kTLS is happy about

> it, clearly kTLS at least uses __tcp_bpf_recvmsg() and

> tcp_bpf_sendmsg_redir().


I think kTLS will be fine because that's the situation today.

__tcp_bpf_recvmsg and tcp_bpf_sendmsg_redir need to be left out,
naturally, is it is now.

(Although I think they could event be stubbed out. But that would be
unrelated to this change.)

After all how would we end up on code path in kTLS that utilizes sockmap
API, if sockmap can't be created when CONFIG_BPF_SYSCALL is unset.

>

>>

>> > diff --git a/net/ipv4/udp_bpf.c b/net/ipv4/udp_bpf.c

>> > index 7a94791efc1a..e635ccc175ca 100644

>> > --- a/net/ipv4/udp_bpf.c

>> > +++ b/net/ipv4/udp_bpf.c

>> > @@ -18,8 +18,10 @@ static struct proto udp_bpf_prots[UDP_BPF_NUM_PROTS];

>> >  static void udp_bpf_rebuild_protos(struct proto *prot, const struct proto *base)

>> >  {

>> >       *prot        = *base;

>> > +#if defined(CONFIG_BPF_SYSCALL)

>> >       prot->unhash = sock_map_unhash;

>> >       prot->close  = sock_map_close;

>> > +#endif

>> >  }

>> >

>> >  static void udp_bpf_check_v6_needs_rebuild(struct proto *ops)

>>

>> Same situation here but for udp_bpf_get_proto.

>

> UDP is different, as kTLS certainly doesn't and won't use it. I think

> udp_bpf.c can be just put under CONFIG_BPF_SYSCALL.

>

> Thanks.
diff mbox series

Patch

diff --git a/include/linux/bpf.h b/include/linux/bpf.h
index cccaef1088ea..e29600f01585 100644
--- a/include/linux/bpf.h
+++ b/include/linux/bpf.h
@@ -1741,6 +1741,14 @@  static inline bool bpf_map_is_dev_bound(struct bpf_map *map)
 
 struct bpf_map *bpf_map_offload_map_alloc(union bpf_attr *attr);
 void bpf_map_offload_map_free(struct bpf_map *map);
+
+int sock_map_prog_update(struct bpf_map *map, struct bpf_prog *prog,
+			 struct bpf_prog *old, u32 which);
+int sock_map_get_from_fd(const union bpf_attr *attr, struct bpf_prog *prog);
+int sock_map_prog_detach(const union bpf_attr *attr, enum bpf_prog_type ptype);
+int sock_map_update_elem_sys(struct bpf_map *map, void *key, void *value, u64 flags);
+void sock_map_unhash(struct sock *sk);
+void sock_map_close(struct sock *sk, long timeout);
 #else
 static inline int bpf_prog_offload_init(struct bpf_prog *prog,
 					union bpf_attr *attr)
@@ -1766,17 +1774,7 @@  static inline struct bpf_map *bpf_map_offload_map_alloc(union bpf_attr *attr)
 static inline void bpf_map_offload_map_free(struct bpf_map *map)
 {
 }
-#endif /* CONFIG_NET && CONFIG_BPF_SYSCALL */
 
-#if defined(CONFIG_BPF_STREAM_PARSER)
-int sock_map_prog_update(struct bpf_map *map, struct bpf_prog *prog,
-			 struct bpf_prog *old, u32 which);
-int sock_map_get_from_fd(const union bpf_attr *attr, struct bpf_prog *prog);
-int sock_map_prog_detach(const union bpf_attr *attr, enum bpf_prog_type ptype);
-int sock_map_update_elem_sys(struct bpf_map *map, void *key, void *value, u64 flags);
-void sock_map_unhash(struct sock *sk);
-void sock_map_close(struct sock *sk, long timeout);
-#else
 static inline int sock_map_prog_update(struct bpf_map *map,
 				       struct bpf_prog *prog,
 				       struct bpf_prog *old, u32 which)
@@ -1801,7 +1799,7 @@  static inline int sock_map_update_elem_sys(struct bpf_map *map, void *key, void
 {
 	return -EOPNOTSUPP;
 }
-#endif /* CONFIG_BPF_STREAM_PARSER */
+#endif /* CONFIG_NET && CONFIG_BPF_SYSCALL */
 
 #if defined(CONFIG_INET) && defined(CONFIG_BPF_SYSCALL)
 void bpf_sk_reuseport_detach(struct sock *sk);
diff --git a/include/linux/bpf_types.h b/include/linux/bpf_types.h
index 99f7fd657d87..d6b4a657c885 100644
--- a/include/linux/bpf_types.h
+++ b/include/linux/bpf_types.h
@@ -103,10 +103,8 @@  BPF_MAP_TYPE(BPF_MAP_TYPE_HASH_OF_MAPS, htab_of_maps_map_ops)
 BPF_MAP_TYPE(BPF_MAP_TYPE_DEVMAP, dev_map_ops)
 BPF_MAP_TYPE(BPF_MAP_TYPE_DEVMAP_HASH, dev_map_hash_ops)
 BPF_MAP_TYPE(BPF_MAP_TYPE_SK_STORAGE, sk_storage_map_ops)
-#if defined(CONFIG_BPF_STREAM_PARSER)
 BPF_MAP_TYPE(BPF_MAP_TYPE_SOCKMAP, sock_map_ops)
 BPF_MAP_TYPE(BPF_MAP_TYPE_SOCKHASH, sock_hash_ops)
-#endif
 #ifdef CONFIG_BPF_LSM
 BPF_MAP_TYPE(BPF_MAP_TYPE_INODE_STORAGE, inode_storage_map_ops)
 BPF_MAP_TYPE(BPF_MAP_TYPE_TASK_STORAGE, task_storage_map_ops)
diff --git a/include/linux/skmsg.h b/include/linux/skmsg.h
index 8edbbf5f2f93..041faef00937 100644
--- a/include/linux/skmsg.h
+++ b/include/linux/skmsg.h
@@ -71,7 +71,9 @@  struct sk_psock_link {
 };
 
 struct sk_psock_parser {
+#if IS_ENABLED(CONFIG_BPF_STREAM_PARSER)
 	struct strparser		strp;
+#endif
 	bool				enabled;
 	void (*saved_data_ready)(struct sock *sk);
 };
@@ -305,9 +307,29 @@  static inline void sk_psock_report_error(struct sk_psock *psock, int err)
 
 struct sk_psock *sk_psock_init(struct sock *sk, int node);
 
+#if IS_ENABLED(CONFIG_BPF_STREAM_PARSER)
 int sk_psock_init_strp(struct sock *sk, struct sk_psock *psock);
 void sk_psock_start_strp(struct sock *sk, struct sk_psock *psock);
 void sk_psock_stop_strp(struct sock *sk, struct sk_psock *psock);
+void sk_psock_done_strp(struct sk_psock *psock);
+#else
+static inline int sk_psock_init_strp(struct sock *sk, struct sk_psock *psock)
+{
+	return -EOPNOTSUPP;
+}
+
+static inline void sk_psock_start_strp(struct sock *sk, struct sk_psock *psock)
+{
+}
+
+static inline void sk_psock_stop_strp(struct sock *sk, struct sk_psock *psock)
+{
+}
+
+static inline void sk_psock_done_strp(struct sk_psock *psock)
+{
+}
+#endif
 void sk_psock_start_verdict(struct sock *sk, struct sk_psock *psock);
 void sk_psock_stop_verdict(struct sock *sk, struct sk_psock *psock);
 
diff --git a/include/net/tcp.h b/include/net/tcp.h
index 4bb42fb19711..99fdbf03aeee 100644
--- a/include/net/tcp.h
+++ b/include/net/tcp.h
@@ -2204,23 +2204,20 @@  void tcp_update_ulp(struct sock *sk, struct proto *p,
 	__MODULE_INFO(alias, alias_userspace, name);		\
 	__MODULE_INFO(alias, alias_tcp_ulp, "tcp-ulp-" name)
 
+#ifdef CONFIG_NET_SOCK_MSG
 struct sk_msg;
 struct sk_psock;
-
-#ifdef CONFIG_BPF_STREAM_PARSER
 struct proto *tcp_bpf_get_proto(struct sock *sk, struct sk_psock *psock);
 void tcp_bpf_clone(const struct sock *sk, struct sock *newsk);
-#else
-static inline void tcp_bpf_clone(const struct sock *sk, struct sock *newsk)
-{
-}
-#endif /* CONFIG_BPF_STREAM_PARSER */
 
-#ifdef CONFIG_NET_SOCK_MSG
 int tcp_bpf_sendmsg_redir(struct sock *sk, struct sk_msg *msg, u32 bytes,
 			  int flags);
 int __tcp_bpf_recvmsg(struct sock *sk, struct sk_psock *psock,
 		      struct msghdr *msg, int len, int flags);
+#else
+static inline void tcp_bpf_clone(const struct sock *sk, struct sock *newsk)
+{
+}
 #endif /* CONFIG_NET_SOCK_MSG */
 
 #ifdef CONFIG_CGROUP_BPF
diff --git a/include/net/udp.h b/include/net/udp.h
index 877832bed471..fcc73cc50007 100644
--- a/include/net/udp.h
+++ b/include/net/udp.h
@@ -511,9 +511,9 @@  static inline struct sk_buff *udp_rcv_segment(struct sock *sk,
 	return segs;
 }
 
-#ifdef CONFIG_BPF_STREAM_PARSER
+#ifdef CONFIG_NET_SOCK_MSG
 struct sk_psock;
 struct proto *udp_bpf_get_proto(struct sock *sk, struct sk_psock *psock);
-#endif /* BPF_STREAM_PARSER */
+#endif /* CONFIG_NET_SOCK_MSG */
 
 #endif	/* _UDP_H */
diff --git a/init/Kconfig b/init/Kconfig
index b77c60f8b963..163d76019f59 100644
--- a/init/Kconfig
+++ b/init/Kconfig
@@ -1703,6 +1703,7 @@  config BPF_SYSCALL
 	select BPF
 	select IRQ_WORK
 	select TASKS_TRACE_RCU
+	select NET_SOCK_MSG if NET
 	default n
 	help
 	  Enable the bpf() system call that allows to manipulate eBPF
diff --git a/net/Kconfig b/net/Kconfig
index f4c32d982af6..a4f60d0c630f 100644
--- a/net/Kconfig
+++ b/net/Kconfig
@@ -313,13 +313,9 @@  config BPF_STREAM_PARSER
 	select STREAM_PARSER
 	select NET_SOCK_MSG
 	help
-	  Enabling this allows a stream parser to be used with
+	  Enabling this allows a TCP stream parser to be used with
 	  BPF_MAP_TYPE_SOCKMAP.
 
-	  BPF_MAP_TYPE_SOCKMAP provides a map type to use with network sockets.
-	  It can be used to enforce socket policy, implement socket redirects,
-	  etc.
-
 config NET_FLOW_LIMIT
 	bool
 	depends on RPS
diff --git a/net/core/Makefile b/net/core/Makefile
index 3e2c378e5f31..05733689d050 100644
--- a/net/core/Makefile
+++ b/net/core/Makefile
@@ -28,10 +28,10 @@  obj-$(CONFIG_CGROUP_NET_PRIO) += netprio_cgroup.o
 obj-$(CONFIG_CGROUP_NET_CLASSID) += netclassid_cgroup.o
 obj-$(CONFIG_LWTUNNEL) += lwtunnel.o
 obj-$(CONFIG_LWTUNNEL_BPF) += lwt_bpf.o
-obj-$(CONFIG_BPF_STREAM_PARSER) += sock_map.o
 obj-$(CONFIG_DST_CACHE) += dst_cache.o
 obj-$(CONFIG_HWBM) += hwbm.o
 obj-$(CONFIG_NET_DEVLINK) += devlink.o
 obj-$(CONFIG_GRO_CELLS) += gro_cells.o
 obj-$(CONFIG_FAILOVER) += failover.o
+obj-$(CONFIG_BPF_SYSCALL) += sock_map.o
 obj-$(CONFIG_BPF_SYSCALL) += bpf_sk_storage.o
diff --git a/net/core/skmsg.c b/net/core/skmsg.c
index 1261512d6807..6cb5ff6f8f9c 100644
--- a/net/core/skmsg.c
+++ b/net/core/skmsg.c
@@ -651,9 +651,7 @@  static void sk_psock_destroy_deferred(struct work_struct *gc)
 
 	/* No sk_callback_lock since already detached. */
 
-	/* Parser has been stopped */
-	if (psock->progs.skb_parser)
-		strp_done(&psock->parser.strp);
+	sk_psock_done_strp(psock);
 
 	cancel_work_sync(&psock->work);
 
@@ -750,14 +748,6 @@  static int sk_psock_bpf_run(struct sk_psock *psock, struct bpf_prog *prog,
 	return bpf_prog_run_pin_on_cpu(prog, skb);
 }
 
-static struct sk_psock *sk_psock_from_strp(struct strparser *strp)
-{
-	struct sk_psock_parser *parser;
-
-	parser = container_of(strp, struct sk_psock_parser, strp);
-	return container_of(parser, struct sk_psock, parser);
-}
-
 static void sk_psock_skb_redirect(struct sk_buff *skb)
 {
 	struct sk_psock *psock_other;
@@ -866,6 +856,24 @@  static void sk_psock_verdict_apply(struct sk_psock *psock,
 	}
 }
 
+static void sk_psock_write_space(struct sock *sk)
+{
+	struct sk_psock *psock;
+	void (*write_space)(struct sock *sk) = NULL;
+
+	rcu_read_lock();
+	psock = sk_psock(sk);
+	if (likely(psock)) {
+		if (sk_psock_test_state(psock, SK_PSOCK_TX_ENABLED))
+			schedule_work(&psock->work);
+		write_space = psock->saved_write_space;
+	}
+	rcu_read_unlock();
+	if (write_space)
+		write_space(sk);
+}
+
+#if IS_ENABLED(CONFIG_BPF_STREAM_PARSER)
 static void sk_psock_strp_read(struct strparser *strp, struct sk_buff *skb)
 {
 	struct sk_psock *psock;
@@ -897,6 +905,14 @@  static int sk_psock_strp_read_done(struct strparser *strp, int err)
 	return err;
 }
 
+static struct sk_psock *sk_psock_from_strp(struct strparser *strp)
+{
+	struct sk_psock_parser *parser;
+
+	parser = container_of(strp, struct sk_psock_parser, strp);
+	return container_of(parser, struct sk_psock, parser);
+}
+
 static int sk_psock_strp_parse(struct strparser *strp, struct sk_buff *skb)
 {
 	struct sk_psock *psock = sk_psock_from_strp(strp);
@@ -933,6 +949,52 @@  static void sk_psock_strp_data_ready(struct sock *sk)
 	rcu_read_unlock();
 }
 
+int sk_psock_init_strp(struct sock *sk, struct sk_psock *psock)
+{
+	static const struct strp_callbacks cb = {
+		.rcv_msg	= sk_psock_strp_read,
+		.read_sock_done	= sk_psock_strp_read_done,
+		.parse_msg	= sk_psock_strp_parse,
+	};
+
+	psock->parser.enabled = false;
+	return strp_init(&psock->parser.strp, sk, &cb);
+}
+
+void sk_psock_start_strp(struct sock *sk, struct sk_psock *psock)
+{
+	struct sk_psock_parser *parser = &psock->parser;
+
+	if (parser->enabled)
+		return;
+
+	parser->saved_data_ready = sk->sk_data_ready;
+	sk->sk_data_ready = sk_psock_strp_data_ready;
+	sk->sk_write_space = sk_psock_write_space;
+	parser->enabled = true;
+}
+
+void sk_psock_stop_strp(struct sock *sk, struct sk_psock *psock)
+{
+	struct sk_psock_parser *parser = &psock->parser;
+
+	if (!parser->enabled)
+		return;
+
+	sk->sk_data_ready = parser->saved_data_ready;
+	parser->saved_data_ready = NULL;
+	strp_stop(&parser->strp);
+	parser->enabled = false;
+}
+
+void sk_psock_done_strp(struct sk_psock *psock)
+{
+	/* Parser has been stopped */
+	if (psock->progs.skb_parser)
+		strp_done(&psock->parser.strp);
+}
+#endif
+
 static int sk_psock_verdict_recv(read_descriptor_t *desc, struct sk_buff *skb,
 				 unsigned int offset, size_t orig_len)
 {
@@ -984,35 +1046,6 @@  static void sk_psock_verdict_data_ready(struct sock *sk)
 	sock->ops->read_sock(sk, &desc, sk_psock_verdict_recv);
 }
 
-static void sk_psock_write_space(struct sock *sk)
-{
-	struct sk_psock *psock;
-	void (*write_space)(struct sock *sk) = NULL;
-
-	rcu_read_lock();
-	psock = sk_psock(sk);
-	if (likely(psock)) {
-		if (sk_psock_test_state(psock, SK_PSOCK_TX_ENABLED))
-			schedule_work(&psock->work);
-		write_space = psock->saved_write_space;
-	}
-	rcu_read_unlock();
-	if (write_space)
-		write_space(sk);
-}
-
-int sk_psock_init_strp(struct sock *sk, struct sk_psock *psock)
-{
-	static const struct strp_callbacks cb = {
-		.rcv_msg	= sk_psock_strp_read,
-		.read_sock_done	= sk_psock_strp_read_done,
-		.parse_msg	= sk_psock_strp_parse,
-	};
-
-	psock->parser.enabled = false;
-	return strp_init(&psock->parser.strp, sk, &cb);
-}
-
 void sk_psock_start_verdict(struct sock *sk, struct sk_psock *psock)
 {
 	struct sk_psock_parser *parser = &psock->parser;
@@ -1026,32 +1059,6 @@  void sk_psock_start_verdict(struct sock *sk, struct sk_psock *psock)
 	parser->enabled = true;
 }
 
-void sk_psock_start_strp(struct sock *sk, struct sk_psock *psock)
-{
-	struct sk_psock_parser *parser = &psock->parser;
-
-	if (parser->enabled)
-		return;
-
-	parser->saved_data_ready = sk->sk_data_ready;
-	sk->sk_data_ready = sk_psock_strp_data_ready;
-	sk->sk_write_space = sk_psock_write_space;
-	parser->enabled = true;
-}
-
-void sk_psock_stop_strp(struct sock *sk, struct sk_psock *psock)
-{
-	struct sk_psock_parser *parser = &psock->parser;
-
-	if (!parser->enabled)
-		return;
-
-	sk->sk_data_ready = parser->saved_data_ready;
-	parser->saved_data_ready = NULL;
-	strp_stop(&parser->strp);
-	parser->enabled = false;
-}
-
 void sk_psock_stop_verdict(struct sock *sk, struct sk_psock *psock)
 {
 	struct sk_psock_parser *parser = &psock->parser;
diff --git a/net/core/sock_map.c b/net/core/sock_map.c
index d758fb83c884..ee3334dd3a38 100644
--- a/net/core/sock_map.c
+++ b/net/core/sock_map.c
@@ -1461,9 +1461,11 @@  int sock_map_prog_update(struct bpf_map *map, struct bpf_prog *prog,
 	case BPF_SK_MSG_VERDICT:
 		pprog = &progs->msg_parser;
 		break;
+#if IS_ENABLED(CONFIG_BPF_STREAM_PARSER)
 	case BPF_SK_SKB_STREAM_PARSER:
 		pprog = &progs->skb_parser;
 		break;
+#endif
 	case BPF_SK_SKB_STREAM_VERDICT:
 		pprog = &progs->skb_verdict;
 		break;
diff --git a/net/ipv4/Makefile b/net/ipv4/Makefile
index 5b77a46885b9..49debfefcc62 100644
--- a/net/ipv4/Makefile
+++ b/net/ipv4/Makefile
@@ -62,7 +62,7 @@  obj-$(CONFIG_TCP_CONG_LP) += tcp_lp.o
 obj-$(CONFIG_TCP_CONG_YEAH) += tcp_yeah.o
 obj-$(CONFIG_TCP_CONG_ILLINOIS) += tcp_illinois.o
 obj-$(CONFIG_NET_SOCK_MSG) += tcp_bpf.o
-obj-$(CONFIG_BPF_STREAM_PARSER) += udp_bpf.o
+obj-$(CONFIG_NET_SOCK_MSG) += udp_bpf.o
 obj-$(CONFIG_NETLABEL) += cipso_ipv4.o
 
 obj-$(CONFIG_XFRM) += xfrm4_policy.o xfrm4_state.o xfrm4_input.o \
diff --git a/net/ipv4/tcp_bpf.c b/net/ipv4/tcp_bpf.c
index bc7d2a586e18..b2c4865eb39b 100644
--- a/net/ipv4/tcp_bpf.c
+++ b/net/ipv4/tcp_bpf.c
@@ -229,7 +229,6 @@  int tcp_bpf_sendmsg_redir(struct sock *sk, struct sk_msg *msg,
 }
 EXPORT_SYMBOL_GPL(tcp_bpf_sendmsg_redir);
 
-#ifdef CONFIG_BPF_STREAM_PARSER
 static bool tcp_bpf_stream_read(const struct sock *sk)
 {
 	struct sk_psock *psock;
@@ -561,8 +560,10 @@  static void tcp_bpf_rebuild_protos(struct proto prot[TCP_BPF_NUM_CFGS],
 				   struct proto *base)
 {
 	prot[TCP_BPF_BASE]			= *base;
+#if defined(CONFIG_BPF_SYSCALL)
 	prot[TCP_BPF_BASE].unhash		= sock_map_unhash;
 	prot[TCP_BPF_BASE].close		= sock_map_close;
+#endif
 	prot[TCP_BPF_BASE].recvmsg		= tcp_bpf_recvmsg;
 	prot[TCP_BPF_BASE].stream_memory_read	= tcp_bpf_stream_read;
 
@@ -629,4 +630,3 @@  void tcp_bpf_clone(const struct sock *sk, struct sock *newsk)
 	if (prot == &tcp_bpf_prots[family][TCP_BPF_BASE])
 		newsk->sk_prot = sk->sk_prot_creator;
 }
-#endif /* CONFIG_BPF_STREAM_PARSER */
diff --git a/net/ipv4/udp_bpf.c b/net/ipv4/udp_bpf.c
index 7a94791efc1a..e635ccc175ca 100644
--- a/net/ipv4/udp_bpf.c
+++ b/net/ipv4/udp_bpf.c
@@ -18,8 +18,10 @@  static struct proto udp_bpf_prots[UDP_BPF_NUM_PROTS];
 static void udp_bpf_rebuild_protos(struct proto *prot, const struct proto *base)
 {
 	*prot        = *base;
+#if defined(CONFIG_BPF_SYSCALL)
 	prot->unhash = sock_map_unhash;
 	prot->close  = sock_map_close;
+#endif
 }
 
 static void udp_bpf_check_v6_needs_rebuild(struct proto *ops)