Re: [PATCH 2/8] netfilter: ipset: Prepare ipset core for RCU locking instead of rwlock per set

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



Hi Pablo,

On Thu, 18 Dec 2014, Pablo Neira Ayuso wrote:

> Several comments to this new round.
> 
> On Fri, Dec 12, 2014 at 10:58:03PM +0100, Jozsef Kadlecsik wrote:
> > @@ -1407,9 +1407,13 @@ call_ad(struct sock *ctnl, struct sk_buff *skb, struct ip_set *set,
> >  	bool eexist = flags & IPSET_FLAG_EXIST, retried = false;
> >  
> >  	do {
> > -		write_lock_bh(&set->lock);
> > +		spin_lock_bh(&set->lock);
> >  		ret = set->variant->uadt(set, tb, adt, &lineno, flags, retried);
> > -		write_unlock_bh(&set->lock);
> > +		spin_unlock_bh(&set->lock);
> > +		if (ret == -EINPROGRESS) {
> > +			synchronize_rcu_bh();
> 
> Let me zoom in to code that is related to this -EINPROGRESS case.
> 
> > +			ret = 0;
> > +		}
> >  		retried = true;
> >  	} while (ret == -EAGAIN &&
> >  		 set->variant->resize &&
> 
> >From list_set_uadd():
> 
>        ...
>        if (n) {
>                list_set_replace(set, e, n);
>                ret = -EINPROGRESS;
> 
> This EINPROGRESS is propagated via set->variant->uadt(), which results
> in th synchronize_rcu_bh() from the core.
> 
> Then, let's have a look at list_set_replace():
> 
> >static inline void
> >list_set_replace(struct ip_set *set, struct set_elem *e, struct set_elem *old)
> >{
> >       list_replace_rcu(&old->list, &e->list);
> >       __list_set_del(set, old);
> >}
> 
> This uses list rcu safe variant, this is good.
> 
> >static void
> >__list_set_del(struct ip_set *set, struct set_elem *e)
> > {
> [...]
> >        kfree_rcu(e, rcu);
> >}
> 
> You use kfree_rcu() to defer the release of the object by when no
> readers are walking over those bits, good.
> 
> But then, you don't need the synchronize_rcu(). To clarify:
> 
> 1) If you release memory synchronously, you use this pattern:
> 
>   list_replace_rcu(...);
>   synchronize_rcu(); <---- waits until no readers are referencing to
>                            objects that we removes with the rcu safe list
>                            variant
>   kfree(...);
> 
> 2) If you release memory asynchronously, then:
> 
>   list_replace_rcu(...);
>   kfree_rcu(...);
> 
> In this case, I think you don't need to call synchronize_rcu() since
> you selected approach 2).

Yes, you're right - and thus the code will be simpler :-)
 
> More concerns: Let's revisit __list_set_del():
> 
> >static void
> >__list_set_del(struct ip_set *set, struct set_elem *e)
> > {
> >        struct list_set *map = set->data;
> > 
> >        ip_set_put_byindex(map->net, e->id);
> >        /* We may call it, because we don't have a to be destroyed
> >         * extension which is used by the kernel.
> >         */
> >        ip_set_ext_destroy(set, e);
>          ^.......................^
> 
> You may have a reader still walking on the extension area of the
> element by when you call this.

Hm, I think this is valid, too: there can be an ongoing listing.

> >        kfree_rcu(e, rcu);
> >}
> 
> The alternative to make sure that everything is released by when no
> readers are accessing the object anymore is to use call_rcu():
> 
>         call_rcu(e, ipset_list_free_rcu);
> 
> Then:
> 
> static void ipset_list_free_rcu(struct rcu_head *rcu)
> {
>         ip_set_put_byindex(...);
>         ip_set_ext_destroy(...);
>         kfree(set);
> }
> 
> This safely release memory with 100% guarantee no readers are accesing
> the object you're destroying.
> 
> *But* you have to make sure none of those function in the callback may
> sleep. Since this callback is called from the rcu softirq (interrupt
> context).

That is fine, no function which'd sleep is called.

> I suspect (actually I would need to make a closer look) you cannot use
> this pattern easily unless elements keep a pointer to the set they
> belong to, to access the data you need from the callback.

Yes, that is the case exactly...

Best regards,
Jozsef
-
E-mail  : kadlec@xxxxxxxxxxxxxxxxx, kadlecsik.jozsef@xxxxxxxxxxxxx
PGP key : http://www.kfki.hu/~kadlec/pgp_public_key.txt
Address : Wigner Research Centre for Physics, Hungarian Academy of Sciences
          H-1525 Budapest 114, POB. 49, Hungary
--
To unsubscribe from this list: send the line "unsubscribe netfilter-devel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at  http://vger.kernel.org/majordomo-info.html



[Index of Archives]     [Netfitler Users]     [LARTC]     [Bugtraq]     [Yosemite Forum]

  Powered by Linux