• David Barroso's avatar
    neigh: Explicitly declare RCU-bh read side critical section in neigh_xmit() · f4de1e74
    David Barroso authored
    [ Upstream commit b560f03d ]
    
    neigh_xmit() expects to be called inside an RCU-bh read side critical
    section, and while one of its two current callers gets this right, the
    other one doesn't.
    
    More specifically, neigh_xmit() has two callers, mpls_forward() and
    mpls_output(), and while both callers call neigh_xmit() under
    rcu_read_lock(), this provides sufficient protection for neigh_xmit()
    only in the case of mpls_forward(), as that is always called from
    softirq context and therefore doesn't need explicit BH protection,
    while mpls_output() can be called from process context with softirqs
    enabled.
    
    When mpls_output() is called from process context, with softirqs
    enabled, we can be preempted by a softirq at any time, and RCU-bh
    considers the completion of a softirq as signaling the end of any
    pending read-side critical sections, so if we do get a softirq
    while we are in the part of neigh_xmit() that exp...
    f4de1e74
neighbour.c 78.4 KB