You've already forked linux-apfs
mirror of
https://github.com/linux-apfs/linux-apfs.git
synced 2026-05-01 15:00:59 -07:00
TPROXY: supply a struct flowi->flags argument in inet_sk_rebuild_header()
inet_sk_rebuild_header() does a new route lookup if the dst_entry
associated with a socket becomes stale. However inet_sk_rebuild_header()
didn't use struct flowi->flags, causing the route lookup to
fail for foreign-bound IP_TRANSPARENT sockets, causing an error
state to be set for the sockets in question.
Signed-off-by: Balazs Scheidler <bazsi@balabit.hu>
Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
committed by
David S. Miller
parent
a134f85c13
commit
c828384582
@@ -1117,6 +1117,7 @@ int inet_sk_rebuild_header(struct sock *sk)
|
|||||||
},
|
},
|
||||||
},
|
},
|
||||||
.proto = sk->sk_protocol,
|
.proto = sk->sk_protocol,
|
||||||
|
.flags = inet_sk_flowi_flags(sk),
|
||||||
.uli_u = {
|
.uli_u = {
|
||||||
.ports = {
|
.ports = {
|
||||||
.sport = inet->sport,
|
.sport = inet->sport,
|
||||||
|
|||||||
Reference in New Issue
Block a user