BPF Archive mirror
 help / color / mirror / Atom feed
From: Benjamin Tissoires <bentiss@kernel.org>
To: Alexei Starovoitov <ast@kernel.org>,
	 Daniel Borkmann <daniel@iogearbox.net>,
	Andrii Nakryiko <andrii@kernel.org>,
	 Martin KaFai Lau <martin.lau@linux.dev>,
	Eduard Zingerman <eddyz87@gmail.com>, Song Liu <song@kernel.org>,
	 Yonghong Song <yonghong.song@linux.dev>,
	John Fastabend <john.fastabend@gmail.com>,
	 KP Singh <kpsingh@kernel.org>,
	Stanislav Fomichev <sdf@google.com>, Hao Luo <haoluo@google.com>,
	 Jiri Olsa <jolsa@kernel.org>, Mykola Lysenko <mykolal@fb.com>,
	Shuah Khan <shuah@kernel.org>
Cc: bpf@vger.kernel.org, linux-kernel@vger.kernel.org,
	 linux-kselftest@vger.kernel.org
Subject: Re: [PATCH v2 2/3] bpf: do not walk twice the hash map on free
Date: Tue, 30 Apr 2024 12:39:38 +0200	[thread overview]
Message-ID: <aqjmjzyiip3fmyivrnn3uvz7qbao3xbvazkaztd5wamubzqaaf@24wrep4lmbqp> (raw)
In-Reply-To: <20240430-bpf-next-v2-2-140aa50f0f19@kernel.org>

On Apr 30 2024, Benjamin Tissoires wrote:
> If someone stores both a timer and a workqueue in a hash map, on free, we
> would walk it twice.
> Add a check in htab_free_malloced_timers_or_wq and free the timers
> and workqueues if they are present.
> 
> Fixes: 246331e3f1ea ("bpf: allow struct bpf_wq to be embedded in arraymaps and hashmaps")
> Signed-off-by: Benjamin Tissoires <bentiss@kernel.org>
> 
> ---
> 
> changes in v2:
> - fix wq being not freed (and static call not used)
> ---
>  kernel/bpf/hashtab.c | 49 +++++++++++++------------------------------------
>  1 file changed, 13 insertions(+), 36 deletions(-)
> 
> diff --git a/kernel/bpf/hashtab.c b/kernel/bpf/hashtab.c
> index 0179183c543a..5eefadfc8ea9 100644
> --- a/kernel/bpf/hashtab.c
> +++ b/kernel/bpf/hashtab.c
> @@ -221,32 +221,11 @@ static bool htab_has_extra_elems(struct bpf_htab *htab)
>  	return !htab_is_percpu(htab) && !htab_is_lru(htab);
>  }
>  
> -static void htab_free_prealloced_timers(struct bpf_htab *htab)
> +static void htab_free_prealloced_timers_and_wq(struct bpf_htab *htab)
>  {
>  	u32 num_entries = htab->map.max_entries;
>  	int i;
>  
> -	if (!btf_record_has_field(htab->map.record, BPF_TIMER))
> -		return;
> -	if (htab_has_extra_elems(htab))
> -		num_entries += num_possible_cpus();
> -
> -	for (i = 0; i < num_entries; i++) {
> -		struct htab_elem *elem;
> -
> -		elem = get_htab_elem(htab, i);
> -		bpf_obj_free_timer(htab->map.record, elem->key + round_up(htab->map.key_size, 8));
> -		cond_resched();
> -	}
> -}
> -
> -static void htab_free_prealloced_wq(struct bpf_htab *htab)
> -{
> -	u32 num_entries = htab->map.max_entries;
> -	int i;
> -
> -	if (!btf_record_has_field(htab->map.record, BPF_WORKQUEUE))
> -		return;
>  	if (htab_has_extra_elems(htab))
>  		num_entries += num_possible_cpus();
>  
> @@ -254,8 +233,12 @@ static void htab_free_prealloced_wq(struct bpf_htab *htab)
>  		struct htab_elem *elem;
>  
>  		elem = get_htab_elem(htab, i);
> -		bpf_obj_free_workqueue(htab->map.record,
> -				       elem->key + round_up(htab->map.key_size, 8));
> +		if (btf_record_has_field(htab->map.record, BPF_TIMER))
> +			bpf_obj_free_timer(htab->map.record,
> +					   elem->key + round_up(htab->map.key_size, 8));
> +		else

Sorry, this else above is wrong, it should be a check on BPF_WORKQUEUE
instead.

v3 is n its way (with the proper bpf-next suffix this time).

Cheers,
Benjamin

> +			bpf_obj_free_workqueue(htab->map.record,
> +					       elem->key + round_up(htab->map.key_size, 8));
>  		cond_resched();
>  	}
>  }
> @@ -1515,7 +1498,7 @@ static void delete_all_elements(struct bpf_htab *htab)
>  	migrate_enable();
>  }
>  
> -static void htab_free_malloced_timers_or_wq(struct bpf_htab *htab, bool is_timer)
> +static void htab_free_malloced_timers_and_wq(struct bpf_htab *htab)
>  {
>  	int i;
>  
> @@ -1527,10 +1510,10 @@ static void htab_free_malloced_timers_or_wq(struct bpf_htab *htab, bool is_timer
>  
>  		hlist_nulls_for_each_entry(l, n, head, hash_node) {
>  			/* We only free timer on uref dropping to zero */
> -			if (is_timer)
> +			if (btf_record_has_field(htab->map.record, BPF_TIMER))
>  				bpf_obj_free_timer(htab->map.record,
>  						   l->key + round_up(htab->map.key_size, 8));
> -			else
> +			if (btf_record_has_field(htab->map.record, BPF_WORKQUEUE))
>  				bpf_obj_free_workqueue(htab->map.record,
>  						       l->key + round_up(htab->map.key_size, 8));
>  		}
> @@ -1544,17 +1527,11 @@ static void htab_map_free_timers_and_wq(struct bpf_map *map)
>  	struct bpf_htab *htab = container_of(map, struct bpf_htab, map);
>  
>  	/* We only free timer and workqueue on uref dropping to zero */
> -	if (btf_record_has_field(htab->map.record, BPF_TIMER)) {
> -		if (!htab_is_prealloc(htab))
> -			htab_free_malloced_timers_or_wq(htab, true);
> -		else
> -			htab_free_prealloced_timers(htab);
> -	}
> -	if (btf_record_has_field(htab->map.record, BPF_WORKQUEUE)) {
> +	if (btf_record_has_field(htab->map.record, BPF_TIMER | BPF_WORKQUEUE)) {
>  		if (!htab_is_prealloc(htab))
> -			htab_free_malloced_timers_or_wq(htab, false);
> +			htab_free_malloced_timers_and_wq(htab);
>  		else
> -			htab_free_prealloced_wq(htab);
> +			htab_free_prealloced_timers_and_wq(htab);
>  	}
>  }
>  
> 
> -- 
> 2.44.0
> 

  reply	other threads:[~2024-04-30 10:39 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-04-30  9:36 [PATCH v2 0/3] bpf_wq followup series Benjamin Tissoires
2024-04-30  9:36 ` [PATCH v2 1/3] bpf: do not walk twice the map on free Benjamin Tissoires
2024-04-30  9:36 ` [PATCH v2 2/3] bpf: do not walk twice the hash " Benjamin Tissoires
2024-04-30 10:39   ` Benjamin Tissoires [this message]
2024-04-30  9:36 ` [PATCH v2 3/3] selftests/bpf: drop an unused local variable Benjamin Tissoires

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=aqjmjzyiip3fmyivrnn3uvz7qbao3xbvazkaztd5wamubzqaaf@24wrep4lmbqp \
    --to=bentiss@kernel.org \
    --cc=andrii@kernel.org \
    --cc=ast@kernel.org \
    --cc=bpf@vger.kernel.org \
    --cc=daniel@iogearbox.net \
    --cc=eddyz87@gmail.com \
    --cc=haoluo@google.com \
    --cc=john.fastabend@gmail.com \
    --cc=jolsa@kernel.org \
    --cc=kpsingh@kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-kselftest@vger.kernel.org \
    --cc=martin.lau@linux.dev \
    --cc=mykolal@fb.com \
    --cc=sdf@google.com \
    --cc=shuah@kernel.org \
    --cc=song@kernel.org \
    --cc=yonghong.song@linux.dev \
    /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;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).