Commit 0516ef27 authored by Stephen Suryaputra's avatar Stephen Suryaputra Committed by Greg Kroah-Hartman

vrf: check accept_source_route on the original netdevice

[ Upstream commit 8c83f2df ]

Configuration check to accept source route IP options should be made on
the incoming netdevice when the skb->dev is an l3mdev master. The route
lookup for the source route next hop also needs the incoming netdev.

v2->v3:
- Simplify by passing the original netdevice down the stack (per David
  Ahern).
Signed-off-by: default avatarStephen Suryaputra <ssuryaextr@gmail.com>
Reviewed-by: default avatarDavid Ahern <dsahern@gmail.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
Signed-off-by: default avatarSasha Levin <sashal@kernel.org>
parent 7243e352
...@@ -648,7 +648,7 @@ int ip_options_get_from_user(struct net *net, struct ip_options_rcu **optp, ...@@ -648,7 +648,7 @@ int ip_options_get_from_user(struct net *net, struct ip_options_rcu **optp,
unsigned char __user *data, int optlen); unsigned char __user *data, int optlen);
void ip_options_undo(struct ip_options *opt); void ip_options_undo(struct ip_options *opt);
void ip_forward_options(struct sk_buff *skb); void ip_forward_options(struct sk_buff *skb);
int ip_options_rcv_srr(struct sk_buff *skb); int ip_options_rcv_srr(struct sk_buff *skb, struct net_device *dev);
/* /*
* Functions provided by ip_sockglue.c * Functions provided by ip_sockglue.c
......
...@@ -258,11 +258,10 @@ int ip_local_deliver(struct sk_buff *skb) ...@@ -258,11 +258,10 @@ int ip_local_deliver(struct sk_buff *skb)
ip_local_deliver_finish); ip_local_deliver_finish);
} }
static inline bool ip_rcv_options(struct sk_buff *skb) static inline bool ip_rcv_options(struct sk_buff *skb, struct net_device *dev)
{ {
struct ip_options *opt; struct ip_options *opt;
const struct iphdr *iph; const struct iphdr *iph;
struct net_device *dev = skb->dev;
/* It looks as overkill, because not all /* It looks as overkill, because not all
IP options require packet mangling. IP options require packet mangling.
...@@ -298,7 +297,7 @@ static inline bool ip_rcv_options(struct sk_buff *skb) ...@@ -298,7 +297,7 @@ static inline bool ip_rcv_options(struct sk_buff *skb)
} }
} }
if (ip_options_rcv_srr(skb)) if (ip_options_rcv_srr(skb, dev))
goto drop; goto drop;
} }
...@@ -354,7 +353,7 @@ static int ip_rcv_finish_core(struct net *net, struct sock *sk, ...@@ -354,7 +353,7 @@ static int ip_rcv_finish_core(struct net *net, struct sock *sk,
} }
#endif #endif
if (iph->ihl > 5 && ip_rcv_options(skb)) if (iph->ihl > 5 && ip_rcv_options(skb, dev))
goto drop; goto drop;
rt = skb_rtable(skb); rt = skb_rtable(skb);
......
...@@ -612,7 +612,7 @@ void ip_forward_options(struct sk_buff *skb) ...@@ -612,7 +612,7 @@ void ip_forward_options(struct sk_buff *skb)
} }
} }
int ip_options_rcv_srr(struct sk_buff *skb) int ip_options_rcv_srr(struct sk_buff *skb, struct net_device *dev)
{ {
struct ip_options *opt = &(IPCB(skb)->opt); struct ip_options *opt = &(IPCB(skb)->opt);
int srrspace, srrptr; int srrspace, srrptr;
...@@ -647,7 +647,7 @@ int ip_options_rcv_srr(struct sk_buff *skb) ...@@ -647,7 +647,7 @@ int ip_options_rcv_srr(struct sk_buff *skb)
orefdst = skb->_skb_refdst; orefdst = skb->_skb_refdst;
skb_dst_set(skb, NULL); skb_dst_set(skb, NULL);
err = ip_route_input(skb, nexthop, iph->saddr, iph->tos, skb->dev); err = ip_route_input(skb, nexthop, iph->saddr, iph->tos, dev);
rt2 = skb_rtable(skb); rt2 = skb_rtable(skb);
if (err || (rt2->rt_type != RTN_UNICAST && rt2->rt_type != RTN_LOCAL)) { if (err || (rt2->rt_type != RTN_UNICAST && rt2->rt_type != RTN_LOCAL)) {
skb_dst_drop(skb); skb_dst_drop(skb);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment