[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <5215C1F4.9030609@windriver.com>
Date: Thu, 22 Aug 2013 15:47:00 +0800
From: Fan Du <fan.du@...driver.com>
To: Steffen Klassert <steffen.klassert@...unet.com>
CC: <netdev@...r.kernel.org>
Subject: Re: [PATCH RFC 2/2] ipv6: Add support for IPsec virtual tunnel interfaces
On 2013年08月19日 14:27, Steffen Klassert wrote:
> This patch adds IPv6 support for IPsec virtual tunnel interfaces
> (vti). IPsec virtual tunnel interfaces provide a routable interface
> for IPsec tunnel endpoints.
>
> Signed-off-by: Steffen Klassert<steffen.klassert@...unet.com>
> ---
> net/ipv6/Kconfig | 11 +
> net/ipv6/Makefile | 1 +
> net/ipv6/ip6_vti.c | 1092 ++++++++++++++++++++++++++++++++++++++++++++++++++++
> 3 files changed, 1104 insertions(+)
> create mode 100644 net/ipv6/ip6_vti.c
>
> diff --git a/net/ipv6/Kconfig b/net/ipv6/Kconfig
> index 11b13ea..e1a8d90 100644
> --- a/net/ipv6/Kconfig
> +++ b/net/ipv6/Kconfig
> @@ -153,6 +153,17 @@ config INET6_XFRM_MODE_ROUTEOPTIMIZATION
> ---help---
> Support for MIPv6 route optimization mode.
>
> +config IPV6_VTI
> +tristate "Virtual (secure) IPv6: tunneling"
> + select IPV6_TUNNEL
> + depends on INET6_XFRM_MODE_TUNNEL
> + ---help---
> + Tunneling means encapsulating data of one protocol type within
> + another protocol and sending it over a channel that understands the
> + encapsulating protocol. This can be used with xfrm mode tunnel to give
> + the notion of a secure tunnel for IPSEC and then use routing protocol
> + on top.
> +
> config IPV6_SIT
> tristate "IPv6: IPv6-in-IPv4 tunnel (SIT driver)"
> select INET_TUNNEL
> diff --git a/net/ipv6/Makefile b/net/ipv6/Makefile
> index 470a9c0..17bb830 100644
> --- a/net/ipv6/Makefile
> +++ b/net/ipv6/Makefile
> @@ -36,6 +36,7 @@ obj-$(CONFIG_INET6_XFRM_MODE_BEET) += xfrm6_mode_beet.o
> obj-$(CONFIG_IPV6_MIP6) += mip6.o
> obj-$(CONFIG_NETFILTER) += netfilter/
>
> +obj-$(CONFIG_IPV6_VTI) += ip6_vti.o
> obj-$(CONFIG_IPV6_SIT) += sit.o
> obj-$(CONFIG_IPV6_TUNNEL) += ip6_tunnel.o
> obj-$(CONFIG_IPV6_GRE) += ip6_gre.o
> diff --git a/net/ipv6/ip6_vti.c b/net/ipv6/ip6_vti.c
> new file mode 100644
> index 0000000..fb0b6b0
> --- /dev/null
> +++ b/net/ipv6/ip6_vti.c
> @@ -0,0 +1,1092 @@
> +/*
> + * IPv6 virtual tunneling interface
> + *
> + * Copyright (C) 2013 secunet Security Networks AG
> + *
> + * Author:
> + * Steffen Klassert<steffen.klassert@...unet.com>
> + *
> + * Based on:
> + * net/ipv6/ip6_tunnel.c
> + *
> + * This program is free software; you can redistribute it and/or
> + * modify it under the terms of the GNU General Public License
> + * as published by the Free Software Foundation; either version
> + * 2 of the License, or (at your option) any later version.
> + */
> +
> +#include<linux/module.h>
> +#include<linux/capability.h>
> +#include<linux/errno.h>
> +#include<linux/types.h>
> +#include<linux/sockios.h>
> +#include<linux/icmp.h>
> +#include<linux/if.h>
> +#include<linux/in.h>
> +#include<linux/ip.h>
> +#include<linux/if_tunnel.h>
> +#include<linux/net.h>
> +#include<linux/in6.h>
> +#include<linux/netdevice.h>
> +#include<linux/if_arp.h>
> +#include<linux/icmpv6.h>
> +#include<linux/init.h>
> +#include<linux/route.h>
> +#include<linux/rtnetlink.h>
> +#include<linux/netfilter_ipv6.h>
> +#include<linux/slab.h>
> +#include<linux/hash.h>
> +
> +#include<asm/uaccess.h>
> +#include<linux/atomic.h>
> +
> +#include<net/icmp.h>
> +#include<net/ip.h>
> +#include<net/ip_tunnels.h>
> +#include<net/ipv6.h>
> +#include<net/ip6_route.h>
> +#include<net/addrconf.h>
> +#include<net/ip6_tunnel.h>
> +#include<net/xfrm.h>
> +#include<net/net_namespace.h>
> +#include<net/netns/generic.h>
> +
> +#define IPV6_TCLASS_MASK (IPV6_FLOWINFO_MASK& ~IPV6_FLOWLABEL_MASK)
> +
> +#define HASH_SIZE_SHIFT 5
> +#define HASH_SIZE (1<< HASH_SIZE_SHIFT)
> +
> +static u32 HASH(const struct in6_addr *addr1, const struct in6_addr *addr2)
> +{
> + u32 hash = ipv6_addr_hash(addr1) ^ ipv6_addr_hash(addr2);
> +
> + return hash_32(hash, HASH_SIZE_SHIFT);
> +}
> +
> +static int vti6_dev_init(struct net_device *dev);
> +static void vti6_dev_setup(struct net_device *dev);
> +static struct rtnl_link_ops vti6_link_ops __read_mostly;
> +
> +static int vti6_net_id __read_mostly;
> +struct vti6_net {
> + /* the IPv6 tunnel fallback device */
> + struct net_device *fb_tnl_dev;
> + /* lists for storing tunnels in use */
> + struct ip6_tnl __rcu *tnls_r_l[HASH_SIZE];
> + struct ip6_tnl __rcu *tnls_wc[1];
> + struct ip6_tnl __rcu **tnls[2];
> +};
> +
> +static struct net_device_stats *vti6_get_stats(struct net_device *dev)
> +{
> + struct pcpu_tstats sum = { 0 };
> + int i;
> +
> + for_each_possible_cpu(i) {
> + const struct pcpu_tstats *tstats = per_cpu_ptr(dev->tstats, i);
> +
> + sum.rx_packets += tstats->rx_packets;
> + sum.rx_bytes += tstats->rx_bytes;
> + sum.tx_packets += tstats->tx_packets;
> + sum.tx_bytes += tstats->tx_bytes;
> + }
> + dev->stats.rx_packets = sum.rx_packets;
> + dev->stats.rx_bytes = sum.rx_bytes;
> + dev->stats.tx_packets = sum.tx_packets;
> + dev->stats.tx_bytes = sum.tx_bytes;
> + return&dev->stats;
> +}
> +
> +#define for_each_vti6_tunnel_rcu(start) \
> + for (t = rcu_dereference(start); t; t = rcu_dereference(t->next))
> +
> +/**
> + * vti6_tnl_lookup - fetch tunnel matching the end-point addresses
> + * @net: network namespace
> + * @remote: the address of the tunnel exit-point
> + * @local: the address of the tunnel entry-point
> + *
> + * Return:
> + * tunnel matching given end-points if found,
> + * else fallback tunnel if its device is up,
> + * else %NULL
> + **/
> +static struct ip6_tnl *
> +vti6_tnl_lookup(struct net *net, const struct in6_addr *remote,
> + const struct in6_addr *local)
> +{
> + unsigned int hash = HASH(remote, local);
> + struct ip6_tnl *t;
> + struct vti6_net *ip6n = net_generic(net, vti6_net_id);
> +
> + for_each_vti6_tunnel_rcu(ip6n->tnls_r_l[hash]) {
> + if (ipv6_addr_equal(local,&t->parms.laddr)&&
> + ipv6_addr_equal(remote,&t->parms.raddr)&&
> + (t->dev->flags& IFF_UP))
> + return t;
> + }
> + t = rcu_dereference(ip6n->tnls_wc[0]);
> + if (t&& (t->dev->flags& IFF_UP))
> + return t;
> +
> + return NULL;
> +}
> +
> +/**
> + * vti6_tnl_bucket - get head of list matching given tunnel parameters
> + * @p: parameters containing tunnel end-points
> + *
> + * Description:
> + * vti6_tnl_bucket() returns the head of the list matching the
> + *&struct in6_addr entries laddr and raddr in @p.
> + *
> + * Return: head of IPv6 tunnel list
> + **/
> +static struct ip6_tnl __rcu **
> +vti6_tnl_bucket(struct vti6_net *ip6n, const struct __ip6_tnl_parm *p)
> +{
> + const struct in6_addr *remote =&p->raddr;
> + const struct in6_addr *local =&p->laddr;
> + unsigned int h = 0;
> + int prio = 0;
> +
> + if (!ipv6_addr_any(remote) || !ipv6_addr_any(local)) {
> + prio = 1;
> + h = HASH(remote, local);
> + }
> + return&ip6n->tnls[prio][h];
> +}
> +
> +static void
> +vti6_tnl_link(struct vti6_net *ip6n, struct ip6_tnl *t)
> +{
> + struct ip6_tnl __rcu **tp = vti6_tnl_bucket(ip6n,&t->parms);
> +
> + rcu_assign_pointer(t->next , rtnl_dereference(*tp));
> + rcu_assign_pointer(*tp, t);
> +}
> +
> +static void
> +vti6_tnl_unlink(struct vti6_net *ip6n, struct ip6_tnl *t)
> +{
> + struct ip6_tnl __rcu **tp;
> + struct ip6_tnl *iter;
> +
> + for (tp = vti6_tnl_bucket(ip6n,&t->parms);
> + (iter = rtnl_dereference(*tp)) != NULL;
> + tp =&iter->next) {
> + if (t == iter) {
> + rcu_assign_pointer(*tp, t->next);
> + break;
> + }
> + }
> +}
> +
> +static void vti6_dev_free(struct net_device *dev)
> +{
> + free_percpu(dev->tstats);
> + free_netdev(dev);
> +}
> +
> +static int vti6_tnl_create2(struct net_device *dev)
> +{
> + struct ip6_tnl *t = netdev_priv(dev);
> + struct net *net = dev_net(dev);
> + struct vti6_net *ip6n = net_generic(net, vti6_net_id);
> + int err;
> +
> + err = vti6_dev_init(dev);
> + if (err< 0)
> + goto out;
> +
> + err = register_netdevice(dev);
> + if (err< 0)
> + goto out;
> +
> + strcpy(t->parms.name, dev->name);
> + dev->rtnl_link_ops =&vti6_link_ops;
> +
> + dev_hold(dev);
> + vti6_tnl_link(ip6n, t);
> +
> + return 0;
> +
> +out:
> + return err;
> +}
> +static struct ip6_tnl *vti6_tnl_create(struct net *net, struct __ip6_tnl_parm *p)
> +{
> + struct net_device *dev;
> + struct ip6_tnl *t;
> + char name[IFNAMSIZ];
> + int err;
> +
> + if (p->name[0])
> + strlcpy(name, p->name, IFNAMSIZ);
> + else
> + sprintf(name, "ip6_vti%%d");
> +
> + dev = alloc_netdev(sizeof (*t), name, vti6_dev_setup);
> + if (dev == NULL)
> + goto failed;
> +
> + dev_net_set(dev, net);
> +
> + t = netdev_priv(dev);
> + t->parms = *p;
> + t->net = dev_net(dev);
> +
> + err = vti6_tnl_create2(dev);
> + if (err< 0)
> + goto failed_free;
> +
> + return t;
> +
> +failed_free:
> + vti6_dev_free(dev);
> +failed:
> + return NULL;
> +}
> +
> +/**
> + * vti6_locate - find or create tunnel matching given parameters
> + * @net: network namespace
> + * @p: tunnel parameters
> + * @create: != 0 if allowed to create new tunnel if no match found
> + *
> + * Description:
> + * vti6_locate() first tries to locate an existing tunnel
> + * based on @parms. If this is unsuccessful, but @create is set a new
> + * tunnel device is created and registered for use.
> + *
> + * Return:
> + * matching tunnel or NULL
> + **/
> +static struct ip6_tnl *vti6_locate(struct net *net, struct __ip6_tnl_parm *p, int create)
> +{
> + const struct in6_addr *remote =&p->raddr;
> + const struct in6_addr *local =&p->laddr;
> + struct ip6_tnl __rcu **tp;
> + struct ip6_tnl *t;
> + struct vti6_net *ip6n = net_generic(net, vti6_net_id);
> +
> + for (tp = vti6_tnl_bucket(ip6n, p);
> + (t = rtnl_dereference(*tp)) != NULL;
> + tp =&t->next) {
> + if (ipv6_addr_equal(local,&t->parms.laddr)&&
> + ipv6_addr_equal(remote,&t->parms.raddr))
> + return t;
> + }
> + if (!create)
> + return NULL;
> + return vti6_tnl_create(net, p);
> +}
> +
> +/**
> + * vti6_dev_uninit - tunnel device uninitializer
> + * @dev: the device to be destroyed
> + *
> + * Description:
> + * vti6_dev_uninit() removes tunnel from its list
> + **/
> +static void
> +vti6_dev_uninit(struct net_device *dev)
> +{
> + struct ip6_tnl *t = netdev_priv(dev);
> + struct net *net = dev_net(dev);
> + struct vti6_net *ip6n = net_generic(net, vti6_net_id);
> +
> + if (dev == ip6n->fb_tnl_dev)
> + RCU_INIT_POINTER(ip6n->tnls_wc[0], NULL);
> + else
> + vti6_tnl_unlink(ip6n, t);
> + ip6_tnl_dst_reset(t);
> + dev_put(dev);
> +}
> +
> +/**
> + * vti6_tnl_err - tunnel error handler
> + *
> + * Description:
> + * vti6_err() handle errors in the tunnel.
> + **/
> +static int
> +vti6_err(struct sk_buff *skb, struct inet6_skb_parm *opt,
> + u8 type, u8 code, int offset, __be32 info)
> +{
> + struct net *net = dev_net(skb->dev);
> + const struct ipv6hdr *ipv6h = (const struct ipv6hdr *) skb->data;
> + struct ip6_tnl *t;
> + int err = -ENOENT;
> +
> + rcu_read_lock();
> + if ((t = vti6_tnl_lookup(net,&ipv6h->daddr,
> + &ipv6h->saddr)) == NULL)
> + goto out;
> +
> + if (t->parms.proto != IPPROTO_IPV6&& t->parms.proto != 0)
> + goto out;
> +
> + err = 0;
> +
> + switch (type) {
> + case ICMPV6_DEST_UNREACH:
> + case ICMPV6_TIME_EXCEED:
> + case ICMPV6_PARAMPROB:
> + break;
> + case ICMPV6_PKT_TOOBIG:
> + ip6_update_pmtu(skb, net, info, 0, 0);
> + }
> +
> +
> +out:
> + rcu_read_unlock();
> + return err;
> +}
> +
> +static int vti6_rcv(struct sk_buff *skb)
> +{
> + struct ip6_tnl *t;
> + const struct ipv6hdr *ipv6h = ipv6_hdr(skb);
> +
> + rcu_read_lock();
> +
> + if ((t = vti6_tnl_lookup(dev_net(skb->dev),&ipv6h->saddr,
> + &ipv6h->daddr)) != NULL) {
> + struct pcpu_tstats *tstats;
> +
> + if (t->parms.proto != IPPROTO_IPV6&& t->parms.proto != 0) {
> + rcu_read_unlock();
> + goto discard;
> + }
> +
> + if (!xfrm6_policy_check(NULL, XFRM_POLICY_IN, skb)) {
> + rcu_read_unlock();
> + return 0;
> + }
> +
> + if (!ip6_tnl_rcv_ctl(t,&ipv6h->daddr,&ipv6h->saddr)) {
> + t->dev->stats.rx_dropped++;
> + rcu_read_unlock();
> + goto discard;
> + }
> +
> + tstats = this_cpu_ptr(t->dev->tstats);
> + tstats->rx_packets++;
> + tstats->rx_bytes += skb->len;
> +
> + skb->mark = 0;
> + secpath_reset(skb);
> + skb->dev = t->dev;
> +
> + rcu_read_unlock();
> + return 0;
> + }
> + rcu_read_unlock();
> + return 1;
> +
> +discard:
> + kfree_skb(skb);
> + return 0;
> +}
> +
> +/**
> + * vti6_addr_conflict - compare packet addresses to tunnel's own
> + * @t: the outgoing tunnel device
> + * @hdr: IPv6 header from the incoming packet
> + *
> + * Description:
> + * Avoid trivial tunneling loop by checking that tunnel exit-point
> + * doesn't match source of incoming packet.
> + *
> + * Return:
> + * 1 if conflict,
> + * 0 else
> + **/
> +static inline bool
> +vti6_addr_conflict(const struct ip6_tnl *t, const struct ipv6hdr *hdr)
> +{
> + return ipv6_addr_equal(&t->parms.raddr,&hdr->saddr);
> +}
> +
> +/**
> + * vti6_xmit - send a packet
> + * @skb: the outgoing socket buffer
> + * @dev: the outgoing tunnel device
> + **/
> +static int vti6_xmit(struct sk_buff *skb, struct net_device *dev)
> +{
> + struct net *net = dev_net(dev);
> + struct ip6_tnl *t = netdev_priv(dev);
> + struct net_device_stats *stats =&t->dev->stats;
> + struct dst_entry *dst = NULL, *ndst = NULL;
> + struct flowi6 fl6;
> + struct ipv6hdr *ipv6h = ipv6_hdr(skb);
> + struct net_device *tdev;
> + int err = -1;
> +
> + if ((t->parms.proto != IPPROTO_IPV6&& t->parms.proto != 0) ||
> + !ip6_tnl_xmit_ctl(t) || vti6_addr_conflict(t, ipv6h))
> + return err;
> +
> + dst = ip6_tnl_dst_check(t);
> + if (!dst) {
> + memcpy(&fl6,&t->fl.u.ip6, sizeof(fl6));
> +
> + ndst = ip6_route_output(net, NULL,&fl6);
> +
> + if (ndst->error)
> + goto tx_err_link_failure;
> + ndst = xfrm_lookup(net, ndst, flowi6_to_flowi(&fl6), NULL, 0);
> + if (IS_ERR(ndst)) {
> + err = PTR_ERR(ndst);
> + ndst = NULL;
> + goto tx_err_link_failure;
> + }
> + dst = ndst;
> + }
> +
> + if (!dst->xfrm || dst->xfrm->props.mode != XFRM_MODE_TUNNEL)
> + goto tx_err_link_failure;
> +
> + tdev = dst->dev;
> +
> + if (tdev == dev) {
> + stats->collisions++;
> + net_warn_ratelimited("%s: Local routing loop detected!\n",
> + t->parms.name);
> + goto tx_err_dst_release;
> + }
> +
> +
> + skb_dst_drop(skb);
> + skb_dst_set_noref(skb, dst);
> +
> + ip6tunnel_xmit(skb, dev);
> + if (ndst)
> + ip6_tnl_dst_store(t, ndst);
> + return 0;
> +tx_err_link_failure:
> + stats->tx_carrier_errors++;
> + dst_link_failure(skb);
> +tx_err_dst_release:
Maybe it's necessary to count stats->tx_errors as well.
> + dst_release(ndst);
> + return err;
> +}
--
浮沉随浪只记今朝笑
--fan
--
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Powered by blists - more mailing lists