* [PATCH net-next v6 0/2] Add F_SETFL for fcntl in test_sockmap
@ 2024-06-11 9:13 Geliang Tang
2024-06-11 9:13 ` [PATCH net-next v6 1/2] tls: wait for receiving next skb for sk_redirect Geliang Tang
2024-06-11 9:13 ` [PATCH net-next v6 2/2] selftests/bpf: Add F_SETFL for fcntl in test_sockmap Geliang Tang
0 siblings, 2 replies; 4+ messages in thread
From: Geliang Tang @ 2024-06-11 9:13 UTC (permalink / raw)
To: Andrii Nakryiko, Eduard Zingerman, Mykola Lysenko,
Alexei Starovoitov, Daniel Borkmann, Martin KaFai Lau, Song Liu,
Yonghong Song, John Fastabend, KP Singh, Stanislav Fomichev,
Hao Luo, Jiri Olsa, Shuah Khan, Boris Pismenny, Jakub Kicinski,
David S. Miller, Eric Dumazet, Paolo Abeni, Jakub Sitnicki
Cc: Geliang Tang, bpf, linux-kselftest, netdev
From: Geliang Tang <tanggeliang@kylinos.cn>
v6:
- add a fix for tls_sw_recvmsg().
v5:
- add a new patch "Check recv lengths in test_sockmap" instead of using
"continue" in msg_loop.
v4:
- address Martin's comments for v3. (thanks.)
- add Yonghong's "Acked-by" tags. (thanks.)
- update subject-prefix from "bpf-next" to "bpf".
Patch 1, v3 of "selftests/bpf: Add F_SETFL for fcntl":
- detect nonblock flag automatically, then test_sockmap can run in both
block and nonblock modes.
- use continue instead of again in v2.
Patch 2, fix for umount cgroup2 error.
Geliang Tang (2):
tls: wait for receiving next skb for sk_redirect
selftests/bpf: Add F_SETFL for fcntl in test_sockmap
net/tls/tls_sw.c | 2 ++
tools/testing/selftests/bpf/test_sockmap.c | 4 +++-
2 files changed, 5 insertions(+), 1 deletion(-)
--
2.43.0
^ permalink raw reply [flat|nested] 4+ messages in thread
* [PATCH net-next v6 1/2] tls: wait for receiving next skb for sk_redirect
2024-06-11 9:13 [PATCH net-next v6 0/2] Add F_SETFL for fcntl in test_sockmap Geliang Tang
@ 2024-06-11 9:13 ` Geliang Tang
2024-06-12 2:17 ` Jakub Kicinski
2024-06-11 9:13 ` [PATCH net-next v6 2/2] selftests/bpf: Add F_SETFL for fcntl in test_sockmap Geliang Tang
1 sibling, 1 reply; 4+ messages in thread
From: Geliang Tang @ 2024-06-11 9:13 UTC (permalink / raw)
To: Andrii Nakryiko, Eduard Zingerman, Mykola Lysenko,
Alexei Starovoitov, Daniel Borkmann, Martin KaFai Lau, Song Liu,
Yonghong Song, John Fastabend, KP Singh, Stanislav Fomichev,
Hao Luo, Jiri Olsa, Shuah Khan, Boris Pismenny, Jakub Kicinski,
David S. Miller, Eric Dumazet, Paolo Abeni, Jakub Sitnicki
Cc: Geliang Tang, bpf, linux-kselftest, netdev
From: Geliang Tang <tanggeliang@kylinos.cn>
tls_sw_recvmsg() doesn't work in nonblock mode, it returns -EAGAIN in
that case. This patch fixes it, always wait for receiving the next skb
for sk_redirect.
Signed-off-by: Geliang Tang <tanggeliang@kylinos.cn>
---
net/tls/tls_sw.c | 2 ++
1 file changed, 2 insertions(+)
diff --git a/net/tls/tls_sw.c b/net/tls/tls_sw.c
index 305a412785f5..d2558856ceeb 100644
--- a/net/tls/tls_sw.c
+++ b/net/tls/tls_sw.c
@@ -2099,6 +2099,8 @@ int tls_sw_recvmsg(struct sock *sk,
rxm->full_len = 0;
if (err == __SK_DROP)
consume_skb(skb);
+ if (err == __SK_REDIRECT && flags & MSG_DONTWAIT)
+ tls_rx_rec_wait(sk, psock, false, released);
continue;
}
}
--
2.43.0
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [PATCH net-next v6 1/2] tls: wait for receiving next skb for sk_redirect
2024-06-11 9:13 ` [PATCH net-next v6 1/2] tls: wait for receiving next skb for sk_redirect Geliang Tang
@ 2024-06-12 2:17 ` Jakub Kicinski
0 siblings, 0 replies; 4+ messages in thread
From: Jakub Kicinski @ 2024-06-12 2:17 UTC (permalink / raw)
To: Geliang Tang
Cc: Andrii Nakryiko, Eduard Zingerman, Mykola Lysenko,
Alexei Starovoitov, Daniel Borkmann, Martin KaFai Lau, Song Liu,
Yonghong Song, John Fastabend, KP Singh, Stanislav Fomichev,
Hao Luo, Jiri Olsa, Shuah Khan, Boris Pismenny, David S. Miller,
Eric Dumazet, Paolo Abeni, Jakub Sitnicki, Geliang Tang, bpf,
linux-kselftest, netdev
On Tue, 11 Jun 2024 17:13:34 +0800 Geliang Tang wrote:
> tls_sw_recvmsg() doesn't work in nonblock mode, it returns -EAGAIN in
> that case. This patch fixes it, always wait for receiving the next skb
> for sk_redirect.
Is this commit message basically saying "block in nonblock mode" or am
I missing something? Either way you have to at least improve the commit
message..
--
pw-bot: cr
^ permalink raw reply [flat|nested] 4+ messages in thread
* [PATCH net-next v6 2/2] selftests/bpf: Add F_SETFL for fcntl in test_sockmap
2024-06-11 9:13 [PATCH net-next v6 0/2] Add F_SETFL for fcntl in test_sockmap Geliang Tang
2024-06-11 9:13 ` [PATCH net-next v6 1/2] tls: wait for receiving next skb for sk_redirect Geliang Tang
@ 2024-06-11 9:13 ` Geliang Tang
1 sibling, 0 replies; 4+ messages in thread
From: Geliang Tang @ 2024-06-11 9:13 UTC (permalink / raw)
To: Andrii Nakryiko, Eduard Zingerman, Mykola Lysenko,
Alexei Starovoitov, Daniel Borkmann, Martin KaFai Lau, Song Liu,
Yonghong Song, John Fastabend, KP Singh, Stanislav Fomichev,
Hao Luo, Jiri Olsa, Shuah Khan, Boris Pismenny, Jakub Kicinski,
David S. Miller, Eric Dumazet, Paolo Abeni, Jakub Sitnicki
Cc: Geliang Tang, bpf, linux-kselftest, netdev
From: Geliang Tang <tanggeliang@kylinos.cn>
Incorrect arguments are passed to fcntl() in test_sockmap.c when invoking
it to set file status flags. If O_NONBLOCK is used as 2nd argument and
passed into fcntl, -EINVAL will be returned (See do_fcntl() in fs/fcntl.c).
The correct approach is to use F_SETFL as 2nd argument, and O_NONBLOCK as
3rd one.
Fixes: 16962b2404ac ("bpf: sockmap, add selftests")
Signed-off-by: Geliang Tang <tanggeliang@kylinos.cn>
Acked-by: Yonghong Song <yonghong.song@linux.dev>
---
tools/testing/selftests/bpf/test_sockmap.c | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/tools/testing/selftests/bpf/test_sockmap.c b/tools/testing/selftests/bpf/test_sockmap.c
index 9cba4ec844a5..99d3ca8e44bb 100644
--- a/tools/testing/selftests/bpf/test_sockmap.c
+++ b/tools/testing/selftests/bpf/test_sockmap.c
@@ -604,7 +604,9 @@ static int msg_loop(int fd, int iov_count, int iov_length, int cnt,
struct timeval timeout;
fd_set w;
- fcntl(fd, fd_flags);
+ if (fcntl(fd, F_SETFL, fd_flags))
+ goto out_errno;
+
/* Account for pop bytes noting each iteration of apply will
* call msg_pop_data helper so we need to account for this
* by calculating the number of apply iterations. Note user
--
2.43.0
^ permalink raw reply related [flat|nested] 4+ messages in thread
end of thread, other threads:[~2024-06-12 2:17 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-06-11 9:13 [PATCH net-next v6 0/2] Add F_SETFL for fcntl in test_sockmap Geliang Tang
2024-06-11 9:13 ` [PATCH net-next v6 1/2] tls: wait for receiving next skb for sk_redirect Geliang Tang
2024-06-12 2:17 ` Jakub Kicinski
2024-06-11 9:13 ` [PATCH net-next v6 2/2] selftests/bpf: Add F_SETFL for fcntl in test_sockmap Geliang Tang
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).