2023-04-03 13:04:54

by Denis Arefev

[permalink] [raw]
Subject: [PATCH] net: Added security socket

Added security_socket_connect
in kernel_connect

Signed-off-by: Denis Arefev <[email protected]>
---
net/socket.c | 6 ++++++
1 file changed, 6 insertions(+)

diff --git a/net/socket.c b/net/socket.c
index 9c92c0e6c4da..9afa2b44a9e5 100644
--- a/net/socket.c
+++ b/net/socket.c
@@ -3526,6 +3526,12 @@ EXPORT_SYMBOL(kernel_accept);
int kernel_connect(struct socket *sock, struct sockaddr *addr, int addrlen,
int flags)
{
+ int err;
+
+ err = security_socket_connect(sock, (struct sockaddr *)addr, addrlen);
+ if (err)
+ return err;
+
return sock->ops->connect(sock, addr, addrlen, flags);
}
EXPORT_SYMBOL(kernel_connect);
--
2.25.1


2023-04-03 15:53:22

by Alexander Duyck

[permalink] [raw]
Subject: Re: [PATCH] net: Added security socket

On Mon, 2023-04-03 at 15:43 +0300, Denis Arefev wrote:
> Added security_socket_connect
> in kernel_connect
>
> Signed-off-by: Denis Arefev <[email protected]>
> ---
> net/socket.c | 6 ++++++
> 1 file changed, 6 insertions(+)
>
> diff --git a/net/socket.c b/net/socket.c
> index 9c92c0e6c4da..9afa2b44a9e5 100644
> --- a/net/socket.c
> +++ b/net/socket.c
> @@ -3526,6 +3526,12 @@ EXPORT_SYMBOL(kernel_accept);
> int kernel_connect(struct socket *sock, struct sockaddr *addr, int addrlen,
> int flags)
> {
> + int err;
> +
> + err = security_socket_connect(sock, (struct sockaddr *)addr, addrlen);
> + if (err)
> + return err;
> +
> return sock->ops->connect(sock, addr, addrlen, flags);
> }
> EXPORT_SYMBOL(kernel_connect);

Why would we need to be adding this? If we are already operating within
kernel space it seems like it would be more problematic than not to
have to push items out to userspace for security. Assuming an attacker
is operating at the kernel level the system is already compromised is
it not?

Also assuming we do need this why are we only dealing with connect when
we should probably also be looking at all the other kernel socket calls
then as well?

2023-04-04 08:09:37

by Denis Arefev

[permalink] [raw]
Subject: [PATCH] net: Added security socket

Hi Alexander. I understand your concern.
That's right kernel_connect is in kernel space,
but kernel_connect is used in RPC requests (/net/sunrpc/xprtsock.c),
and the RPC protocol is used by the NFS server.
Note kernel_sendmsg is already protected.

2023-04-04 15:23:59

by Alexander Duyck

[permalink] [raw]
Subject: Re: [PATCH] net: Added security socket

On Tue, Apr 4, 2023 at 1:00 AM Denis Arefev <[email protected]> wrote:
>
> Hi Alexander. I understand your concern.
> That's right kernel_connect is in kernel space,
> but kernel_connect is used in RPC requests (/net/sunrpc/xprtsock.c),
> and the RPC protocol is used by the NFS server.
> Note kernel_sendmsg is already protected.

Can you add a write-up about the need for this in the patch
description? Your patch description described what you are doing but
not the why. My main concern is that your patch may end up causing
issues that could later be reverted by someone if they don't
understand the motivation behind why you are making this change.

Calling out things like the fact that you are trying to add security
to RPC sockets would be useful and would make it easier for patch
review as people more familiar with the security code could also tell
you if this is the correct approach to this or not.

Thanks,

- Alex