]> git.kernelconcepts.de Git - karo-tx-linux.git/commit
ipv4: Early TCP socket demux.
authorDavid S. Miller <davem@davemloft.net>
Wed, 20 Jun 2012 04:22:05 +0000 (21:22 -0700)
committerDavid S. Miller <davem@davemloft.net>
Wed, 20 Jun 2012 04:22:05 +0000 (21:22 -0700)
commit41063e9dd11956f2d285e12e4342e1d232ba0ea2
treed4df2f51044b4724a4767f0498c3df2f606b5ad7
parentf9242b6b28d61295f2bf7e8adfb1060b382e5381
ipv4: Early TCP socket demux.

Input packet processing for local sockets involves two major demuxes.
One for the route and one for the socket.

But we can optimize this down to one demux for certain kinds of local
sockets.

Currently we only do this for established TCP sockets, but it could
at least in theory be expanded to other kinds of connections.

If a TCP socket is established then it's identity is fully specified.

This means that whatever input route was used during the three-way
handshake must work equally well for the rest of the connection since
the keys will not change.

Once we move to established state, we cache the receive packet's input
route to use later.

Like the existing cached route in sk->sk_dst_cache used for output
packets, we have to check for route invalidations using dst->obsolete
and dst->ops->check().

Early demux occurs outside of a socket locked section, so when a route
invalidation occurs we defer the fixup of sk->sk_rx_dst until we are
actually inside of established state packet processing and thus have
the socket locked.

Signed-off-by: David S. Miller <davem@davemloft.net>
include/net/inet_hashtables.h
include/net/protocol.h
include/net/sock.h
include/net/tcp.h
net/core/sock.c
net/ipv4/af_inet.c
net/ipv4/ip_input.c
net/ipv4/tcp_input.c
net/ipv4/tcp_ipv4.c
net/ipv4/tcp_minisocks.c