From: Martin KaFai Lau <martin.lau@linux.dev>
To: Aditi Ghag <aditi.ghag@isovalent.com>
Cc: kafai@fb.com, sdf@google.com, edumazet@google.com, bpf@vger.kernel.org
Subject: Re: [PATCH v5 bpf-next 3/7] udp: seq_file: Helper function to match socket attributes
Date: Fri, 31 Mar 2023 13:09:30 -0700 [thread overview]
Message-ID: <42a8dceb-2551-715b-b871-db55eb43bd0a@linux.dev> (raw)
In-Reply-To: <20230330151758.531170-4-aditi.ghag@isovalent.com>
On 3/30/23 8:17 AM, Aditi Ghag wrote:
> This is a preparatory commit to refactor code that matches socket
> attributes in iterators to a helper function, and use it in the
> proc fs iterator.
>
> Signed-off-by: Aditi Ghag <aditi.ghag@isovalent.com>
> ---
> net/ipv4/udp.c | 35 ++++++++++++++++++++++++++++-------
> 1 file changed, 28 insertions(+), 7 deletions(-)
>
> diff --git a/net/ipv4/udp.c b/net/ipv4/udp.c
> index c574c8c17ec9..cead4acb64c6 100644
> --- a/net/ipv4/udp.c
> +++ b/net/ipv4/udp.c
> @@ -2983,6 +2983,8 @@ EXPORT_SYMBOL(udp_prot);
> /* ------------------------------------------------------------------------ */
> #ifdef CONFIG_PROC_FS
>
> +static inline bool seq_sk_match(struct seq_file *seq, const struct sock *sk);
> +
> static struct udp_table *udp_get_table_afinfo(struct udp_seq_afinfo *afinfo,
> struct net *net)
> {
> @@ -3010,10 +3012,7 @@ static struct sock *udp_get_first(struct seq_file *seq, int start)
>
> spin_lock_bh(&hslot->lock);
> sk_for_each(sk, &hslot->head) {
> - if (!net_eq(sock_net(sk), net))
> - continue;
> - if (afinfo->family == AF_UNSPEC ||
> - sk->sk_family == afinfo->family)
> + if (seq_sk_match(seq, sk))
> goto found;
> }
> spin_unlock_bh(&hslot->lock);
> @@ -3034,9 +3033,7 @@ static struct sock *udp_get_next(struct seq_file *seq, struct sock *sk)
>
> do {
> sk = sk_next(sk);
> - } while (sk && (!net_eq(sock_net(sk), net) ||
> - (afinfo->family != AF_UNSPEC &&
> - sk->sk_family != afinfo->family)));
> + } while (sk && !seq_sk_match(seq, sk));
>
> if (!sk) {
> udptable = udp_get_table_afinfo(afinfo, net);
> @@ -3143,6 +3140,17 @@ struct bpf_iter__udp {
> int bucket __aligned(8);
> };
>
> +static unsigned short seq_file_family(const struct seq_file *seq);
> +
> +static inline bool seq_sk_match(struct seq_file *seq, const struct sock *sk)
This won't work under CONFIG_BPF_SYSCALL. The bot also complained.
It has to be under CONFIG_PROG_FS.
No need to use inline and leave it to compiler.
The earlier forward declaration is unnecessary. Define the function earlier instead.
> +{
> + unsigned short family = seq_file_family(seq);
> +
> + /* AF_UNSPEC is used as a match all */
> + return ((family == AF_UNSPEC || family == sk->sk_family) &&
> + net_eq(sock_net(sk), seq_file_net(seq)));
> +}
> +
> static int udp_prog_seq_show(struct bpf_prog *prog, struct bpf_iter_meta *meta,
> struct udp_sock *udp_sk, uid_t uid, int bucket)
> {
> @@ -3194,6 +3202,19 @@ static const struct seq_operations bpf_iter_udp_seq_ops = {
> .stop = bpf_iter_udp_seq_stop,
> .show = bpf_iter_udp_seq_show,
> };
> +
> +static unsigned short seq_file_family(const struct seq_file *seq)
The same here because seq_sk_match() uses seq_file_family().
> +{
> + const struct udp_seq_afinfo *afinfo;
> +
> + /* BPF iterator: bpf programs to filter sockets. */
> + if (seq->op == &bpf_iter_udp_seq_ops)
Note that bpf_iter_udp_seq_ops is only defined under CONFIG_BPF_SYSCALL though.
See how the seq_file_family() is handling it in tcp_ipv4.c.
> + return AF_UNSPEC;
> +
> + /* Proc fs iterator */
> + afinfo = pde_data(file_inode(seq->file));
> + return afinfo->family;
> +}
> #endif
>
> const struct seq_operations udp_seq_ops = {
next prev parent reply other threads:[~2023-03-31 20:09 UTC|newest]
Thread overview: 33+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-03-30 15:17 [PATCH v5 bpf-next 0/7] bpf: Add socket destroy capability Aditi Ghag
2023-03-30 15:17 ` [PATCH v5 bpf-next 1/7] bpf: tcp: Avoid taking fast sock lock in iterator Aditi Ghag
2023-03-30 15:17 ` [PATCH v5 bpf-next 2/7] udp: seq_file: Remove bpf_seq_afinfo from udp_iter_state Aditi Ghag
2023-03-30 17:35 ` Martin KaFai Lau
2023-03-30 15:17 ` [PATCH v5 bpf-next 3/7] udp: seq_file: Helper function to match socket attributes Aditi Ghag
2023-03-30 18:40 ` kernel test robot
2023-03-30 18:51 ` kernel test robot
2023-03-31 2:52 ` kernel test robot
2023-03-31 20:09 ` Martin KaFai Lau [this message]
2023-04-03 15:27 ` Aditi Ghag
2023-04-02 6:18 ` kernel test robot
2023-03-30 15:17 ` [PATCH v5 bpf-next 4/7] bpf: udp: Implement batching for sockets iterator Aditi Ghag
2023-03-31 21:08 ` Martin KaFai Lau
2023-04-03 15:54 ` Aditi Ghag
2023-04-03 19:20 ` Martin KaFai Lau
2023-03-30 15:17 ` [PATCH v5 bpf-next 5/7] bpf: Add bpf_sock_destroy kfunc Aditi Ghag
2023-03-31 22:24 ` Martin KaFai Lau
2023-04-04 6:09 ` [RFC PATCH bpf-next] bpf: Add a kfunc filter function to 'struct btf_kfunc_id_set' Martin KaFai Lau
2023-04-05 15:05 ` Aditi Ghag
2023-04-05 17:26 ` Martin KaFai Lau
2023-04-10 23:05 ` Aditi Ghag
2023-04-12 15:21 ` Aditi Ghag
2023-03-30 15:17 ` [PATCH v5 bpf-next 6/7] selftests/bpf: Add helper to get port using getsockname Aditi Ghag
2023-03-30 18:41 ` Stanislav Fomichev
2023-03-31 21:37 ` Martin KaFai Lau
2023-03-30 15:17 ` [PATCH v5 bpf-next 7/7] selftests/bpf: Test bpf_sock_destroy Aditi Ghag
2023-03-30 18:46 ` Stanislav Fomichev
2023-03-31 22:32 ` Martin KaFai Lau
2023-04-03 15:55 ` Aditi Ghag
2023-04-03 17:35 ` Martin KaFai Lau
2023-04-04 0:15 ` Aditi Ghag
2023-04-04 1:41 ` Martin KaFai Lau
2023-04-04 14:24 ` Aditi Ghag
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=42a8dceb-2551-715b-b871-db55eb43bd0a@linux.dev \
--to=martin.lau@linux.dev \
--cc=aditi.ghag@isovalent.com \
--cc=bpf@vger.kernel.org \
--cc=edumazet@google.com \
--cc=kafai@fb.com \
--cc=sdf@google.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox