ip_tunnels: record IP version in tunnel info
There's currently nothing preventing directing packets with IPv6 encapsulation data to IPv4 tunnels (and vice versa). If this happens, IPv6 addresses are incorrectly interpreted as IPv4 ones. Track whether the given ip_tunnel_key contains IPv4 or IPv6 data. Store this in ip_tunnel_info. Reject packets at appropriate places if they are supposed to be encapsulated into an incompatible protocol. Signed-off-by: Jiri Benc <jbenc@redhat.com> Acked-by: Alexei Starovoitov <ast@plumgrid.com> Acked-by: Thomas Graf <tgraf@suug.ch> Acked-by: Pravin B Shelar <pshelar@nicira.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:

committed by
David S. Miller

parent
46fa062ad6
commit
7f9562a1f4
@@ -105,6 +105,7 @@ static inline struct metadata_dst *ipv6_tun_rx_dst(struct sk_buff *skb,
|
||||
info->key.u.ipv6.dst = ip6h->daddr;
|
||||
info->key.tos = ipv6_get_dsfield(ip6h);
|
||||
info->key.ttl = ip6h->hop_limit;
|
||||
info->mode = IP_TUNNEL_INFO_IPV6;
|
||||
return tun_dst;
|
||||
}
|
||||
|
||||
|
@@ -4,6 +4,7 @@
|
||||
#include <linux/if_tunnel.h>
|
||||
#include <linux/netdevice.h>
|
||||
#include <linux/skbuff.h>
|
||||
#include <linux/socket.h>
|
||||
#include <linux/types.h>
|
||||
#include <linux/u64_stats_sync.h>
|
||||
#include <net/dsfield.h>
|
||||
@@ -52,6 +53,7 @@ struct ip_tunnel_key {
|
||||
|
||||
/* Flags for ip_tunnel_info mode. */
|
||||
#define IP_TUNNEL_INFO_TX 0x01 /* represents tx tunnel parameters */
|
||||
#define IP_TUNNEL_INFO_IPV6 0x02 /* key contains IPv6 addresses */
|
||||
|
||||
struct ip_tunnel_info {
|
||||
struct ip_tunnel_key key;
|
||||
@@ -208,6 +210,8 @@ static inline void __ip_tunnel_info_init(struct ip_tunnel_info *tun_info,
|
||||
|
||||
tun_info->options = opts;
|
||||
tun_info->options_len = opts_len;
|
||||
|
||||
tun_info->mode = 0;
|
||||
}
|
||||
|
||||
static inline void ip_tunnel_info_init(struct ip_tunnel_info *tun_info,
|
||||
@@ -221,6 +225,12 @@ static inline void ip_tunnel_info_init(struct ip_tunnel_info *tun_info,
|
||||
tun_id, tun_flags, opts, opts_len);
|
||||
}
|
||||
|
||||
static inline unsigned short ip_tunnel_info_af(const struct ip_tunnel_info
|
||||
*tun_info)
|
||||
{
|
||||
return tun_info->mode & IP_TUNNEL_INFO_IPV6 ? AF_INET6 : AF_INET;
|
||||
}
|
||||
|
||||
#ifdef CONFIG_INET
|
||||
|
||||
int ip_tunnel_init(struct net_device *dev);
|
||||
|
Reference in New Issue
Block a user