Netdev List
 help / color / mirror / Atom feed
* [PATCH] net/packet: Allow MSG_NOSIGNAL flag in packet_recvmsg
@ 2023-03-08 15:18 Adnan Dizdarevic
  2023-03-08 15:35 ` Jens Axboe
  2023-03-08 15:38 ` Willem de Bruijn
  0 siblings, 2 replies; 4+ messages in thread
From: Adnan Dizdarevic @ 2023-03-08 15:18 UTC (permalink / raw)
  To: willemdebruijn.kernel@gmail.com
  Cc: axboe@kernel.dk, asml.silence@gmail.com, davem@davemloft.net,
	edumazet@google.com, kuba@kernel.org, pabeni@redhat.com,
	netdev@vger.kernel.org, linux-kernel@vger.kernel.org

By adding MSG_NOSIGNAL flag to allowed flags in packet_recvmsg, this
patch fixes io_uring recvmsg operations returning -EINVAL when used with
packet socket file descriptors.

In io_uring, MSG_NOSIGNAL flag is added in:
io_uring/net.c/io_recvmsg_prep

Signed-off-by: Adnan Dizdarevic <adnan.dizdarevic@eks-intec.de>
---
 net/packet/af_packet.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/net/packet/af_packet.c b/net/packet/af_packet.c
index d4e76e2ae153..5ce62194af9e 100644
--- a/net/packet/af_packet.c
+++ b/net/packet/af_packet.c
@@ -3410,7 +3410,8 @@ static int packet_recvmsg(struct socket *sock, struct msghdr *msg, size_t len,
 	unsigned int origlen = 0;
 
 	err = -EINVAL;
-	if (flags & ~(MSG_PEEK|MSG_DONTWAIT|MSG_TRUNC|MSG_CMSG_COMPAT|MSG_ERRQUEUE))
+	if (flags & ~(MSG_PEEK | MSG_DONTWAIT | MSG_TRUNC | MSG_CMSG_COMPAT |
+			MSG_ERRQUEUE | MSG_NOSIGNAL))
 		goto out;
 
 #if 0
-- 
2.37.2



^ permalink raw reply related	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2023-03-09  6:38 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-03-08 15:18 [PATCH] net/packet: Allow MSG_NOSIGNAL flag in packet_recvmsg Adnan Dizdarevic
2023-03-08 15:35 ` Jens Axboe
2023-03-08 15:38 ` Willem de Bruijn
2023-03-09  6:38   ` Adnan Dizdarevic

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox