ipv4: Elide fib_validate_source() completely when possible.
If rpfilter is off (or the SKB has an IPSEC path) and there are not
tclassid users, we don't have to do anything at all when
fib_validate_source() is invoked besides setting the itag to zero.
We monitor tclassid uses with a counter (modified only under RTNL and
marked __read_mostly) and we protect the fib_validate_source() real
work with a test against this counter and whether rpfilter is to be
done.
Having a way to know whether we need no tclassid processing or not
also opens the door for future optimized rpfilter algorithms that do
not perform full FIB lookups.
Signed-off-by:
David S. Miller <davem@davemloft.net>
Showing
- include/net/fib_rules.h 1 addition, 0 deletionsinclude/net/fib_rules.h
- include/net/ip_fib.h 5 additions, 0 deletionsinclude/net/ip_fib.h
- net/core/fib_rules.c 4 additions, 0 deletionsnet/core/fib_rules.c
- net/ipv4/fib_frontend.c 24 additions, 8 deletionsnet/ipv4/fib_frontend.c
- net/ipv4/fib_rules.c 15 additions, 1 deletionnet/ipv4/fib_rules.c
- net/ipv4/fib_semantics.c 10 additions, 0 deletionsnet/ipv4/fib_semantics.c
Please register or sign in to comment