mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-11 21:38:32 +08:00
net: ipv4: add check for l3slave for index returned in IP_PKTINFO
Similar to the loopback device, for packets sent through a VRF device the index returned in ipi_ifindex needs to be the saved index in rt_iif. Signed-off-by: David Ahern <dsahern@gmail.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
4f04256c98
commit
1dfa76390b
@ -1207,6 +1207,7 @@ e_inval:
|
|||||||
void ipv4_pktinfo_prepare(const struct sock *sk, struct sk_buff *skb)
|
void ipv4_pktinfo_prepare(const struct sock *sk, struct sk_buff *skb)
|
||||||
{
|
{
|
||||||
struct in_pktinfo *pktinfo = PKTINFO_SKB_CB(skb);
|
struct in_pktinfo *pktinfo = PKTINFO_SKB_CB(skb);
|
||||||
|
bool l3slave = ipv4_l3mdev_skb(IPCB(skb)->flags);
|
||||||
bool prepare = (inet_sk(sk)->cmsg_flags & IP_CMSG_PKTINFO) ||
|
bool prepare = (inet_sk(sk)->cmsg_flags & IP_CMSG_PKTINFO) ||
|
||||||
ipv6_sk_rxinfo(sk);
|
ipv6_sk_rxinfo(sk);
|
||||||
|
|
||||||
@ -1220,7 +1221,7 @@ void ipv4_pktinfo_prepare(const struct sock *sk, struct sk_buff *skb)
|
|||||||
* (e.g., process binds socket to eth0 for Tx which is
|
* (e.g., process binds socket to eth0 for Tx which is
|
||||||
* redirected to loopback in the rtable/dst).
|
* redirected to loopback in the rtable/dst).
|
||||||
*/
|
*/
|
||||||
if (pktinfo->ipi_ifindex == LOOPBACK_IFINDEX)
|
if (pktinfo->ipi_ifindex == LOOPBACK_IFINDEX || l3slave)
|
||||||
pktinfo->ipi_ifindex = inet_iif(skb);
|
pktinfo->ipi_ifindex = inet_iif(skb);
|
||||||
|
|
||||||
pktinfo->ipi_spec_dst.s_addr = fib_compute_spec_dst(skb);
|
pktinfo->ipi_spec_dst.s_addr = fib_compute_spec_dst(skb);
|
||||||
|
Loading…
Reference in New Issue
Block a user