On 9/1/26 7:28 AM, [email protected] wrote:
> From: Yuan Chen <[email protected]>
> 
> rhtab_delete_elem() and rhtab_map_update_existing() eagerly call
> bpf_obj_free_fields() when an element is deleted or its value is
> replaced. This runs kptr destructors in the caller's execution
> context, which is unsafe for BPF programs running in NMI context
> (e.g. perf_event programs attached to hardware PMU overflows):
> referenced kptr destructors may take locks or otherwise cannot run
> in NMI.
> 
> Commit a3a81d247651 ("bpf: Cancel special fields on map value
> recycle") switched the hash map and array recycle paths to
> bpf_obj_cancel_fields(), which only cancels NMI-safe fields (timer,
> workqueue, task_work), but it missed the resizable hashtab.
> rhtab_map_update_existing() even documents the intended "cancel"
> semantics while still calling bpf_obj_free_fields().
> 
> Fix the resizable hashtab the same way: call bpf_obj_cancel_fields()
> on delete and in-place update, matching htab. Referenced kptrs stay
> attached to the recycled element and are destroyed by rhtab_mem_dtor()
> once the element is eventually freed, keeping the reference accounting
> balanced. No special-field initialization is added to the element
> alloc path: fresh elements come zeroed from the bpf mem allocator,
> recycled elements already had their timer/workqueue/task_work slots
> reset by bpf_obj_cancel_fields(), and check_and_init_map_value() would
> zero the kptr slot of a recycled element, dropping the reference
> without releasing it.
> 
> Verified with a selftest: a perf_event (NMI) program overwrites a
> rhtab element that holds a referenced task kptr, and a second phase
> deletes and re-inserts the element to exercise the recycle path.
> Before the patch the NMI update eagerly released the kptr and the
> recycle path zeroed the inherited slot; after the patch the kptr is
> inherited on both paths and the probe observes it non-NULL.
> 
> Fixes: a3a81d247651 ("bpf: Cancel special fields on map value recycle")
> Suggested-by: Mykyta Yatsenko <[email protected]>
> Signed-off-by: Yuan Chen <[email protected]>
> ---
>  kernel/bpf/hashtab.c | 32 ++++++++++++++++----------------
>  1 file changed, 16 insertions(+), 16 deletions(-)
> 
> diff --git a/kernel/bpf/hashtab.c b/kernel/bpf/hashtab.c
> index d40cb5dd446c..aaedda3730f3 100644
> --- a/kernel/bpf/hashtab.c
> +++ b/kernel/bpf/hashtab.c
> @@ -2864,16 +2864,6 @@ static int rhtab_map_alloc_check(union bpf_attr *attr)
>       return htab_map_alloc_check(attr);
>  }
>  
> -static void rhtab_check_and_free_fields(struct bpf_rhtab *rhtab,
> -                                     struct rhtab_elem *elem)
> -{
> -     if (IS_ERR_OR_NULL(rhtab->map.record))
> -             return;
> -
> -     bpf_obj_free_fields(rhtab->map.record,
> -                         rhtab_elem_value(elem, rhtab->map.key_size));
> -}
> -
>  static void rhtab_mem_dtor(void *obj, void *ctx)
>  {
>       struct htab_btf_record *hrec = ctx;
> @@ -2963,8 +2953,9 @@ static int rhtab_delete_elem(struct bpf_rhtab *rhtab, 
> struct rhtab_elem *elem, v
>               rhtab_read_elem_value(&rhtab->map, copy, elem, flags);
>               check_and_init_map_value(&rhtab->map, copy);
>       }
> -     /* Release internal structs: kptr, bpf_timer, task_work, wq */
> -     rhtab_check_and_free_fields(rhtab, elem);
> +     /* Cancel NMI-safe fields; full destruction happens in rhtab_mem_dtor */
> +     bpf_obj_cancel_fields(&rhtab->map,
> +                           rhtab_elem_value(elem, rhtab->map.key_size));
>       bpf_mem_cache_free_rcu(&rhtab->ma, elem);
>       return 0;
>  }
> @@ -3022,10 +3013,12 @@ static long rhtab_map_update_existing(struct bpf_map 
> *map, struct rhtab_elem *el
>        * BPF_F_LOCK, matching arraymap semantics.
>        *
>        * copy_map_value() skips special-field offsets, so old timers/
> -      * kptrs/etc. still sit in the slot. Cancel them after the copy
> -      * to match arraymap's update semantics.
> +      * kptrs/etc. still sit in the slot. Cancel the NMI-safe ones after
> +      * the copy to match arraymap's update semantics; referenced kptrs
> +      * stay attached and are destroyed by rhtab_mem_dtor().
>        */
> -     rhtab_check_and_free_fields(rhtab, elem);
> +     bpf_obj_cancel_fields(&rhtab->map,
> +                           rhtab_elem_value(elem, rhtab->map.key_size));
>       return 0;
>  }
>  
> @@ -3066,7 +3059,14 @@ static long rhtab_map_update_elem(struct bpf_map *map, 
> void *key, void *value, u
>  
>       memcpy(elem->data, key, map->key_size);
>       copy_map_value(map, rhtab_elem_value(elem, map->key_size), value);
> -     check_and_init_map_value(map, rhtab_elem_value(elem, map->key_size));
> +     /*
> +      * No explicit special-field initialization, matching the hash map's
> +      * non-prealloc path: fresh elements come zeroed from the bpf mem
> +      * allocator, and recycled elements had their timer/workqueue/task_work
> +      * slots reset by bpf_obj_cancel_fields() on delete. kptr slots are
> +      * left untouched so a recycled element keeps owning its reference
> +      * until rhtab_mem_dtor() releases it.
> +      */

I'm not sure this comment is useful, we don't comment on why we are not zeroing
special fields in htab, so why here.
Please address the finding of the bot regarding the old_val variable and for the
next respin send the patch series independently, not as a response to an old 
thread.
>  
>       /* Prevent deadlock for NMI programs attempting to take bucket lock */
>       bpf_disable_instrumentation();


Reply via email to