Re: [PATCH] Avoid null-pointer access in w1/slaves/w1_therm

From: Evgeniy Polyakov
Date: Wed Mar 18 2015 - 11:19:33 EST


Hi

18.03.2015, 07:20, "David Fries" <david@xxxxxxxxx>:
>  static void w1_therm_remove_slave(struct w1_slave *sl)
>  {
> + int refcnt = atomic_sub_return(1, THERM_REFCNT(sl->family_data));
> + while(refcnt) {
> + msleep(1000);
> + refcnt = atomic_read(THERM_REFCNT(sl->family_data));
> + }
>          kfree(sl->family_data);
>          sl->family_data = NULL;
>  }

Can we replace this whole atomic manipulations with kref_t and free family data in the place
which actually drops reference counter to zero?

I.e. we return from remove_slave() function potentially leaving family data floating around, it will be freed
when the last user drops the reference. There is still a race between increasing reference when starting
reading and removing slave device, i.e. one starts reading, while attached slave device is being removed,
but that's a different problem.
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/