On Tue, Nov 4, 2014 at 1:50 AM, Daniel Borkmann <dborkman@xxxxxxxxxx> wrote: > These WARN_ON_ONCE(!rcu_read_lock_held()) seem odd. While I see the point > that > you're holding RCU read lock on the lookup, can you elaborate on your RCU > usage > here and why it's necessary for delete/update? > > I suspect due to the synchronize_rcu() you're using and not using any RCU > accessors but plain memcpy() e.g. in case of the array ...? Correct in case of array. Also hash delete/update() call into lookup() internally that is using _rcu() helpers... Future map types might have much more complex implementations (like LPM), so it helps to state the rules early. Another reason is more complex to explain: A program that intends to access maps has to be one rcu critical section. So all lookup/update/delete calls are under rcu_lock_held. Since programs by themselves cannot have WARN_ON inside them, I've added WARN_ON in these three functions that will be called from the programs to make sure that kernel subsystems don't do (*prog->bpf_func)(...) without taking rcu_lock if they intend to let programs access maps. Having said that in the future we might have a case for programs that don't call into these functions at all and execute instructions only. Those won't need rcu_lock() wrap. I experimented with that for the patch where I replaced pred-tree walker with eBPF program. There is no rcu there. And no calls to map accessors. Has to be noted, that socket filters use rcu to protect sk_filter pointer and program itself. So for that use case we'll keep using rcu for foreseeable future. For tracing filters I had to add rcu_lock() around BPF_PROG_RUN() invocation and these WARN_ON checks saved me a lot of headache, so I prefer to keep them since they cost nothing when lockdep is off. -- To unsubscribe from this list: send the line "unsubscribe linux-api" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html