* [PATCH v6] af_unix: Read with MSG_PEEK loops if the first unread byte is OOB
@ 2024-06-11 8:46 Rao Shoaib
2024-06-11 16:14 ` Kuniyuki Iwashima
2024-06-13 15:10 ` patchwork-bot+netdevbpf
0 siblings, 2 replies; 3+ messages in thread
From: Rao Shoaib @ 2024-06-11 8:46 UTC (permalink / raw)
To: davem, edumazet, kuba, pabeni; +Cc: kuniyu, netdev, Rao Shoaib
Read with MSG_PEEK flag loops if the first byte to read is an OOB byte.
commit 22dd70eb2c3d ("af_unix: Don't peek OOB data without MSG_OOB.")
addresses the loop issue but does not address the issue that no data
beyond OOB byte can be read.
>>> from socket import *
>>> c1, c2 = socketpair(AF_UNIX, SOCK_STREAM)
>>> c1.send(b'a', MSG_OOB)
1
>>> c1.send(b'b')
1
>>> c2.recv(1, MSG_PEEK | MSG_DONTWAIT)
b'b'
>>> from socket import *
>>> c1, c2 = socketpair(AF_UNIX, SOCK_STREAM)
>>> c2.setsockopt(SOL_SOCKET, SO_OOBINLINE, 1)
>>> c1.send(b'a', MSG_OOB)
1
>>> c1.send(b'b')
1
>>> c2.recv(1, MSG_PEEK | MSG_DONTWAIT)
b'a'
>>> c2.recv(1, MSG_PEEK | MSG_DONTWAIT)
b'a'
>>> c2.recv(1, MSG_DONTWAIT)
b'a'
>>> c2.recv(1, MSG_PEEK | MSG_DONTWAIT)
b'b'
>>>
Fixes: 314001f0bf92 ("af_unix: Add OOB support")
Signed-off-by: Rao Shoaib <Rao.Shoaib@oracle.com>
---
net/unix/af_unix.c | 18 +++++++++---------
1 file changed, 9 insertions(+), 9 deletions(-)
diff --git a/net/unix/af_unix.c b/net/unix/af_unix.c
index 80846279de9f..5e695a9a609c 100644
--- a/net/unix/af_unix.c
+++ b/net/unix/af_unix.c
@@ -2625,18 +2625,18 @@ static struct sk_buff *manage_oob(struct sk_buff *skb, struct sock *sk,
if (skb == u->oob_skb) {
if (copied) {
skb = NULL;
- } else if (sock_flag(sk, SOCK_URGINLINE)) {
- if (!(flags & MSG_PEEK)) {
+ } else if (!(flags & MSG_PEEK)) {
+ if (sock_flag(sk, SOCK_URGINLINE)) {
WRITE_ONCE(u->oob_skb, NULL);
consume_skb(skb);
+ } else {
+ __skb_unlink(skb, &sk->sk_receive_queue);
+ WRITE_ONCE(u->oob_skb, NULL);
+ unlinked_skb = skb;
+ skb = skb_peek(&sk->sk_receive_queue);
}
- } else if (flags & MSG_PEEK) {
- skb = NULL;
- } else {
- __skb_unlink(skb, &sk->sk_receive_queue);
- WRITE_ONCE(u->oob_skb, NULL);
- unlinked_skb = skb;
- skb = skb_peek(&sk->sk_receive_queue);
+ } else if (!sock_flag(sk, SOCK_URGINLINE)) {
+ skb = skb_peek_next(skb, &sk->sk_receive_queue);
}
}
--
2.39.3
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH v6] af_unix: Read with MSG_PEEK loops if the first unread byte is OOB
2024-06-11 8:46 [PATCH v6] af_unix: Read with MSG_PEEK loops if the first unread byte is OOB Rao Shoaib
@ 2024-06-11 16:14 ` Kuniyuki Iwashima
2024-06-13 15:10 ` patchwork-bot+netdevbpf
1 sibling, 0 replies; 3+ messages in thread
From: Kuniyuki Iwashima @ 2024-06-11 16:14 UTC (permalink / raw)
To: rao.shoaib; +Cc: davem, edumazet, kuba, kuniyu, netdev, pabeni
From: Rao Shoaib <Rao.Shoaib@oracle.com>
Date: Tue, 11 Jun 2024 01:46:39 -0700
> Read with MSG_PEEK flag loops if the first byte to read is an OOB byte.
> commit 22dd70eb2c3d ("af_unix: Don't peek OOB data without MSG_OOB.")
> addresses the loop issue but does not address the issue that no data
> beyond OOB byte can be read.
>
> >>> from socket import *
> >>> c1, c2 = socketpair(AF_UNIX, SOCK_STREAM)
> >>> c1.send(b'a', MSG_OOB)
> 1
> >>> c1.send(b'b')
> 1
> >>> c2.recv(1, MSG_PEEK | MSG_DONTWAIT)
> b'b'
>
> >>> from socket import *
> >>> c1, c2 = socketpair(AF_UNIX, SOCK_STREAM)
> >>> c2.setsockopt(SOL_SOCKET, SO_OOBINLINE, 1)
> >>> c1.send(b'a', MSG_OOB)
> 1
> >>> c1.send(b'b')
> 1
> >>> c2.recv(1, MSG_PEEK | MSG_DONTWAIT)
> b'a'
> >>> c2.recv(1, MSG_PEEK | MSG_DONTWAIT)
> b'a'
> >>> c2.recv(1, MSG_DONTWAIT)
> b'a'
> >>> c2.recv(1, MSG_PEEK | MSG_DONTWAIT)
> b'b'
> >>>
>
> Fixes: 314001f0bf92 ("af_unix: Add OOB support")
>
No newline is needed here, but I think it isn't worth v7
and can be fixed during merge.
> Signed-off-by: Rao Shoaib <Rao.Shoaib@oracle.com>
Reviewed-by: Kuniyuki Iwashima <kuniyu@amazon.com>
Thanks!
> ---
> net/unix/af_unix.c | 18 +++++++++---------
> 1 file changed, 9 insertions(+), 9 deletions(-)
>
> diff --git a/net/unix/af_unix.c b/net/unix/af_unix.c
> index 80846279de9f..5e695a9a609c 100644
> --- a/net/unix/af_unix.c
> +++ b/net/unix/af_unix.c
> @@ -2625,18 +2625,18 @@ static struct sk_buff *manage_oob(struct sk_buff *skb, struct sock *sk,
> if (skb == u->oob_skb) {
> if (copied) {
> skb = NULL;
> - } else if (sock_flag(sk, SOCK_URGINLINE)) {
> - if (!(flags & MSG_PEEK)) {
> + } else if (!(flags & MSG_PEEK)) {
> + if (sock_flag(sk, SOCK_URGINLINE)) {
> WRITE_ONCE(u->oob_skb, NULL);
> consume_skb(skb);
> + } else {
> + __skb_unlink(skb, &sk->sk_receive_queue);
> + WRITE_ONCE(u->oob_skb, NULL);
> + unlinked_skb = skb;
> + skb = skb_peek(&sk->sk_receive_queue);
> }
> - } else if (flags & MSG_PEEK) {
> - skb = NULL;
> - } else {
> - __skb_unlink(skb, &sk->sk_receive_queue);
> - WRITE_ONCE(u->oob_skb, NULL);
> - unlinked_skb = skb;
> - skb = skb_peek(&sk->sk_receive_queue);
> + } else if (!sock_flag(sk, SOCK_URGINLINE)) {
> + skb = skb_peek_next(skb, &sk->sk_receive_queue);
> }
> }
>
> --
> 2.39.3
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH v6] af_unix: Read with MSG_PEEK loops if the first unread byte is OOB
2024-06-11 8:46 [PATCH v6] af_unix: Read with MSG_PEEK loops if the first unread byte is OOB Rao Shoaib
2024-06-11 16:14 ` Kuniyuki Iwashima
@ 2024-06-13 15:10 ` patchwork-bot+netdevbpf
1 sibling, 0 replies; 3+ messages in thread
From: patchwork-bot+netdevbpf @ 2024-06-13 15:10 UTC (permalink / raw)
To: Rao Shoaib; +Cc: davem, edumazet, kuba, pabeni, kuniyu, netdev, Rao.Shoaib
Hello:
This patch was applied to netdev/net.git (main)
by Jakub Kicinski <kuba@kernel.org>:
On Tue, 11 Jun 2024 01:46:39 -0700 you wrote:
> Read with MSG_PEEK flag loops if the first byte to read is an OOB byte.
> commit 22dd70eb2c3d ("af_unix: Don't peek OOB data without MSG_OOB.")
> addresses the loop issue but does not address the issue that no data
> beyond OOB byte can be read.
>
> >>> from socket import *
> >>> c1, c2 = socketpair(AF_UNIX, SOCK_STREAM)
> >>> c1.send(b'a', MSG_OOB)
> 1
> >>> c1.send(b'b')
> 1
> >>> c2.recv(1, MSG_PEEK | MSG_DONTWAIT)
> b'b'
>
> [...]
Here is the summary with links:
- [v6] af_unix: Read with MSG_PEEK loops if the first unread byte is OOB
https://git.kernel.org/netdev/net/c/a6736a0addd6
You are awesome, thank you!
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2024-06-13 15:10 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-06-11 8:46 [PATCH v6] af_unix: Read with MSG_PEEK loops if the first unread byte is OOB Rao Shoaib
2024-06-11 16:14 ` Kuniyuki Iwashima
2024-06-13 15:10 ` patchwork-bot+netdevbpf
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).