[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <CADKFtnS7JRHz1eg8M3V52MAcJUW3bVch2siaoqQSqMPW7ZrfUg@mail.gmail.com>
Date: Mon, 23 Sep 2024 10:48:24 -0700
From: Jordan Rife <jrife@...gle.com>
To: Sahand <sahandevs@...il.com>
Cc: davem@...emloft.net, edumazet@...gle.com, kuba@...nel.org,
pabeni@...hat.com, netdev@...r.kernel.org
Subject: Re: [PATCH] net: expose __sock_sendmsg() symbol
Should this be backported? I'm wondering if this needs a "Fixes" tag.
-Jordan
On Mon, Sep 23, 2024 at 10:03 AM Sahand <sahandevs@...il.com> wrote:
>
> From: Sahand Akbarzadeh <sahandevs@...il.com>
>
> Commit 86a7e0b69bd5b812e48a20c66c2161744f3caa16 ("net: prevent rewrite
> of msg_name in sock_sendmsg()") moved the original implementation of
> sock_sendmsg() to __sock_sendmsg() and made sock_sendmsg() a wrapper
> with extra checks. However, __sys_sendto() still uses __sock_sendmsg()
> directly, causing BPF programs attached to kprobe:sock_sendmsg() to not
> trigger on sendto() calls.
>
> This patch exposes the __sock_sendmsg() symbol to allow writing BPF
> programs similar to those for older kernels.
>
> Signed-off-by: Sahand Akbarzadeh <sahandevs@...il.com>
> ---
> include/linux/net.h | 1 +
> net/socket.c | 2 +-
> 2 files changed, 2 insertions(+), 1 deletion(-)
>
> diff --git a/include/linux/net.h b/include/linux/net.h
> index b75bc534c..983be8a14 100644
> --- a/include/linux/net.h
> +++ b/include/linux/net.h
> @@ -258,6 +258,7 @@ int sock_create_kern(struct net *net, int family, int type, int proto, struct so
> int sock_create_lite(int family, int type, int proto, struct socket **res);
> struct socket *sock_alloc(void);
> void sock_release(struct socket *sock);
> +int __sock_sendmsg(struct socket *sock, struct msghdr *msg);
> int sock_sendmsg(struct socket *sock, struct msghdr *msg);
> int sock_recvmsg(struct socket *sock, struct msghdr *msg, int flags);
> struct file *sock_alloc_file(struct socket *sock, int flags, const char *dname);
> diff --git a/net/socket.c b/net/socket.c
> index 8d8b84fa4..5c790205d 100644
> --- a/net/socket.c
> +++ b/net/socket.c
> @@ -737,7 +737,7 @@ static inline int sock_sendmsg_nosec(struct socket *sock, struct msghdr *msg)
> return ret;
> }
>
> -static int __sock_sendmsg(struct socket *sock, struct msghdr *msg)
> +int __sock_sendmsg(struct socket *sock, struct msghdr *msg)
> {
> int err = security_socket_sendmsg(sock, msg,
> msg_data_left(msg));
> --
> 2.43.0
>
Powered by blists - more mailing lists