2010-08-10 20:11:48 -04:00
|
|
|
/*
|
2012-05-02 15:21:36 -07:00
|
|
|
* Copyright (c) 2007-2012 Nicira, Inc.
|
2010-08-10 20:11:48 -04:00
|
|
|
*
|
2011-11-16 13:39:40 -08:00
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
|
* modify it under the terms of version 2 of the GNU General Public
|
|
|
|
|
* License as published by the Free Software Foundation.
|
|
|
|
|
*
|
|
|
|
|
* This program is distributed in the hope that it will be useful, but
|
|
|
|
|
* WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
|
* General Public License for more details.
|
|
|
|
|
*
|
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
|
|
|
|
|
* 02110-1301, USA
|
2010-08-10 20:11:48 -04:00
|
|
|
*/
|
|
|
|
|
|
2012-01-30 06:56:54 -08:00
|
|
|
#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
|
|
|
|
|
|
2010-08-10 20:11:48 -04:00
|
|
|
#include <linux/if_arp.h>
|
|
|
|
|
#include <linux/if_ether.h>
|
|
|
|
|
#include <linux/ip.h>
|
|
|
|
|
#include <linux/if_vlan.h>
|
2011-10-24 12:27:36 -07:00
|
|
|
#include <linux/igmp.h>
|
2010-08-10 20:11:48 -04:00
|
|
|
#include <linux/in.h>
|
|
|
|
|
#include <linux/in_route.h>
|
2011-10-24 12:27:36 -07:00
|
|
|
#include <linux/inetdevice.h>
|
2010-08-10 20:11:48 -04:00
|
|
|
#include <linux/jhash.h>
|
2011-09-09 19:09:47 -07:00
|
|
|
#include <linux/list.h>
|
2010-08-10 20:11:48 -04:00
|
|
|
#include <linux/kernel.h>
|
|
|
|
|
#include <linux/version.h>
|
2010-08-27 13:55:02 -07:00
|
|
|
#include <linux/workqueue.h>
|
2011-09-09 19:09:47 -07:00
|
|
|
#include <linux/rculist.h>
|
2010-08-10 20:11:48 -04:00
|
|
|
|
|
|
|
|
#include <net/dsfield.h>
|
|
|
|
|
#include <net/dst.h>
|
|
|
|
|
#include <net/icmp.h>
|
|
|
|
|
#include <net/inet_ecn.h>
|
|
|
|
|
#include <net/ip.h>
|
|
|
|
|
#if defined(CONFIG_IPV6) || defined(CONFIG_IPV6_MODULE)
|
|
|
|
|
#include <net/ipv6.h>
|
|
|
|
|
#endif
|
|
|
|
|
#include <net/route.h>
|
|
|
|
|
#include <net/xfrm.h>
|
|
|
|
|
|
2010-11-22 14:17:24 -08:00
|
|
|
#include "checksum.h"
|
2010-08-10 20:11:48 -04:00
|
|
|
#include "datapath.h"
|
|
|
|
|
#include "tunnel.h"
|
2010-12-29 22:13:15 -08:00
|
|
|
#include "vlan.h"
|
2010-08-10 20:11:48 -04:00
|
|
|
#include "vport.h"
|
2010-08-27 13:55:02 -07:00
|
|
|
#include "vport-internal_dev.h"
|
|
|
|
|
|
2011-09-09 19:09:47 -07:00
|
|
|
#define PORT_TABLE_SIZE 1024
|
2010-08-10 20:11:48 -04:00
|
|
|
|
2011-09-09 19:09:47 -07:00
|
|
|
static struct hlist_head *port_table __read_mostly;
|
2010-08-27 13:55:02 -07:00
|
|
|
|
2010-08-10 20:11:48 -04:00
|
|
|
/*
|
|
|
|
|
* These are just used as an optimization: they don't require any kind of
|
|
|
|
|
* synchronization because we could have just as easily read the value before
|
|
|
|
|
* the port change happened.
|
|
|
|
|
*/
|
2010-11-23 16:34:22 -08:00
|
|
|
static unsigned int key_local_remote_ports __read_mostly;
|
|
|
|
|
static unsigned int key_remote_ports __read_mostly;
|
2011-11-07 20:01:52 -08:00
|
|
|
static unsigned int key_multicast_ports __read_mostly;
|
2010-11-23 16:34:22 -08:00
|
|
|
static unsigned int local_remote_ports __read_mostly;
|
|
|
|
|
static unsigned int remote_ports __read_mostly;
|
2012-10-20 12:18:05 -07:00
|
|
|
static unsigned int null_ports __read_mostly;
|
2011-11-07 20:01:52 -08:00
|
|
|
static unsigned int multicast_ports __read_mostly;
|
2010-08-10 20:11:48 -04:00
|
|
|
|
|
|
|
|
#if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,36)
|
|
|
|
|
#define rt_dst(rt) (rt->dst)
|
|
|
|
|
#else
|
|
|
|
|
#define rt_dst(rt) (rt->u.dst)
|
|
|
|
|
#endif
|
|
|
|
|
|
2011-11-07 15:53:01 -08:00
|
|
|
static struct vport *tnl_vport_to_vport(const struct tnl_vport *tnl_vport)
|
2010-08-10 20:11:48 -04:00
|
|
|
{
|
|
|
|
|
return vport_from_priv(tnl_vport);
|
|
|
|
|
}
|
|
|
|
|
|
2010-08-27 13:55:02 -07:00
|
|
|
static void free_config_rcu(struct rcu_head *rcu)
|
2010-08-10 20:11:48 -04:00
|
|
|
{
|
|
|
|
|
struct tnl_mutable_config *c = container_of(rcu, struct tnl_mutable_config, rcu);
|
|
|
|
|
kfree(c);
|
|
|
|
|
}
|
|
|
|
|
|
2011-10-24 12:27:36 -07:00
|
|
|
/* Frees the portion of 'mutable' that requires RTNL and thus can't happen
|
|
|
|
|
* within an RCU callback. Fortunately this part doesn't require waiting for
|
|
|
|
|
* an RCU grace period.
|
|
|
|
|
*/
|
|
|
|
|
static void free_mutable_rtnl(struct tnl_mutable_config *mutable)
|
|
|
|
|
{
|
|
|
|
|
ASSERT_RTNL();
|
|
|
|
|
if (ipv4_is_multicast(mutable->key.daddr) && mutable->mlink) {
|
|
|
|
|
struct in_device *in_dev;
|
2012-01-30 06:56:54 -08:00
|
|
|
in_dev = inetdev_by_index(port_key_get_net(&mutable->key), mutable->mlink);
|
2011-10-24 12:27:36 -07:00
|
|
|
if (in_dev)
|
|
|
|
|
ip_mc_dec_group(in_dev, mutable->key.daddr);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2010-08-10 20:11:48 -04:00
|
|
|
static void assign_config_rcu(struct vport *vport,
|
|
|
|
|
struct tnl_mutable_config *new_config)
|
|
|
|
|
{
|
|
|
|
|
struct tnl_vport *tnl_vport = tnl_vport_priv(vport);
|
|
|
|
|
struct tnl_mutable_config *old_config;
|
|
|
|
|
|
2010-12-05 11:22:04 -08:00
|
|
|
old_config = rtnl_dereference(tnl_vport->mutable);
|
2010-08-10 20:11:48 -04:00
|
|
|
rcu_assign_pointer(tnl_vport->mutable, new_config);
|
2011-10-24 12:27:36 -07:00
|
|
|
|
|
|
|
|
free_mutable_rtnl(old_config);
|
2010-08-27 13:55:02 -07:00
|
|
|
call_rcu(&old_config->rcu, free_config_rcu);
|
|
|
|
|
}
|
|
|
|
|
|
2010-08-10 20:11:48 -04:00
|
|
|
static unsigned int *find_port_pool(const struct tnl_mutable_config *mutable)
|
|
|
|
|
{
|
2011-11-07 20:01:52 -08:00
|
|
|
bool is_multicast = ipv4_is_multicast(mutable->key.daddr);
|
|
|
|
|
|
2011-01-26 12:28:59 -08:00
|
|
|
if (mutable->flags & TNL_F_IN_KEY_MATCH) {
|
2011-09-30 14:32:31 -07:00
|
|
|
if (mutable->key.saddr)
|
2010-08-10 20:11:48 -04:00
|
|
|
return &local_remote_ports;
|
2011-11-07 20:01:52 -08:00
|
|
|
else if (is_multicast)
|
|
|
|
|
return &multicast_ports;
|
2010-08-10 20:11:48 -04:00
|
|
|
else
|
|
|
|
|
return &remote_ports;
|
|
|
|
|
} else {
|
2011-09-30 14:32:31 -07:00
|
|
|
if (mutable->key.saddr)
|
2010-08-10 20:11:48 -04:00
|
|
|
return &key_local_remote_ports;
|
2011-11-07 20:01:52 -08:00
|
|
|
else if (is_multicast)
|
|
|
|
|
return &key_multicast_ports;
|
2012-10-20 12:18:05 -07:00
|
|
|
else if (mutable->key.daddr)
|
2010-08-10 20:11:48 -04:00
|
|
|
return &key_remote_ports;
|
2012-10-20 12:18:05 -07:00
|
|
|
else
|
|
|
|
|
return &null_ports;
|
2010-08-10 20:11:48 -04:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2011-09-30 14:32:31 -07:00
|
|
|
static u32 port_hash(const struct port_lookup_key *key)
|
2010-08-10 20:11:48 -04:00
|
|
|
{
|
2011-11-07 15:53:01 -08:00
|
|
|
return jhash2((u32 *)key, (PORT_KEY_LEN / sizeof(u32)), 0);
|
2010-08-10 20:11:48 -04:00
|
|
|
}
|
|
|
|
|
|
2011-11-07 15:53:01 -08:00
|
|
|
static struct hlist_head *find_bucket(u32 hash)
|
2011-09-09 19:09:47 -07:00
|
|
|
{
|
|
|
|
|
return &port_table[(hash & (PORT_TABLE_SIZE - 1))];
|
2010-08-27 13:55:02 -07:00
|
|
|
}
|
|
|
|
|
|
2011-09-09 19:09:47 -07:00
|
|
|
static void port_table_add_port(struct vport *vport)
|
2010-08-10 20:11:48 -04:00
|
|
|
{
|
|
|
|
|
struct tnl_vport *tnl_vport = tnl_vport_priv(vport);
|
2011-09-30 14:32:31 -07:00
|
|
|
const struct tnl_mutable_config *mutable;
|
|
|
|
|
u32 hash;
|
2010-08-10 20:11:48 -04:00
|
|
|
|
2011-09-30 14:32:31 -07:00
|
|
|
mutable = rtnl_dereference(tnl_vport->mutable);
|
|
|
|
|
hash = port_hash(&mutable->key);
|
2011-09-09 19:09:47 -07:00
|
|
|
hlist_add_head_rcu(&tnl_vport->hash_node, find_bucket(hash));
|
2010-08-27 13:55:02 -07:00
|
|
|
|
2010-12-05 11:22:04 -08:00
|
|
|
(*find_port_pool(rtnl_dereference(tnl_vport->mutable)))++;
|
2010-08-27 13:55:02 -07:00
|
|
|
}
|
|
|
|
|
|
2011-09-09 19:09:47 -07:00
|
|
|
static void port_table_move_port(struct vport *vport,
|
|
|
|
|
struct tnl_mutable_config *new_mutable)
|
2010-08-27 13:55:02 -07:00
|
|
|
{
|
|
|
|
|
struct tnl_vport *tnl_vport = tnl_vport_priv(vport);
|
|
|
|
|
u32 hash;
|
|
|
|
|
|
2011-09-30 14:32:31 -07:00
|
|
|
hash = port_hash(&new_mutable->key);
|
2011-09-09 19:09:47 -07:00
|
|
|
hlist_del_init_rcu(&tnl_vport->hash_node);
|
|
|
|
|
hlist_add_head_rcu(&tnl_vport->hash_node, find_bucket(hash));
|
2010-08-10 20:11:48 -04:00
|
|
|
|
2010-12-05 11:22:04 -08:00
|
|
|
(*find_port_pool(rtnl_dereference(tnl_vport->mutable)))--;
|
2010-08-27 13:55:02 -07:00
|
|
|
assign_config_rcu(vport, new_mutable);
|
2010-12-05 11:22:04 -08:00
|
|
|
(*find_port_pool(rtnl_dereference(tnl_vport->mutable)))++;
|
2010-08-10 20:11:48 -04:00
|
|
|
}
|
|
|
|
|
|
2011-09-09 19:09:47 -07:00
|
|
|
static void port_table_remove_port(struct vport *vport)
|
2010-08-10 20:11:48 -04:00
|
|
|
{
|
|
|
|
|
struct tnl_vport *tnl_vport = tnl_vport_priv(vport);
|
|
|
|
|
|
2011-09-09 19:09:47 -07:00
|
|
|
hlist_del_init_rcu(&tnl_vport->hash_node);
|
|
|
|
|
|
2010-12-05 11:22:04 -08:00
|
|
|
(*find_port_pool(rtnl_dereference(tnl_vport->mutable)))--;
|
2011-09-09 19:09:47 -07:00
|
|
|
}
|
2010-08-10 20:11:48 -04:00
|
|
|
|
2011-10-14 14:28:49 -07:00
|
|
|
static struct vport *port_table_lookup(struct port_lookup_key *key,
|
|
|
|
|
const struct tnl_mutable_config **pmutable)
|
2011-09-09 19:09:47 -07:00
|
|
|
{
|
|
|
|
|
struct hlist_node *n;
|
|
|
|
|
struct hlist_head *bucket;
|
2011-09-30 14:32:31 -07:00
|
|
|
u32 hash = port_hash(key);
|
2011-11-07 15:53:01 -08:00
|
|
|
struct tnl_vport *tnl_vport;
|
2011-09-09 19:09:47 -07:00
|
|
|
|
|
|
|
|
bucket = find_bucket(hash);
|
|
|
|
|
|
|
|
|
|
hlist_for_each_entry_rcu(tnl_vport, n, bucket, hash_node) {
|
2011-09-30 14:32:31 -07:00
|
|
|
struct tnl_mutable_config *mutable;
|
|
|
|
|
|
|
|
|
|
mutable = rcu_dereference_rtnl(tnl_vport->mutable);
|
2011-10-04 17:48:33 -07:00
|
|
|
if (!memcmp(&mutable->key, key, PORT_KEY_LEN)) {
|
2011-09-30 14:32:31 -07:00
|
|
|
*pmutable = mutable;
|
2011-10-14 14:28:49 -07:00
|
|
|
return tnl_vport_to_vport(tnl_vport);
|
2011-09-30 14:32:31 -07:00
|
|
|
}
|
2011-09-09 19:09:47 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return NULL;
|
2010-08-10 20:11:48 -04:00
|
|
|
}
|
|
|
|
|
|
2012-01-30 06:56:54 -08:00
|
|
|
struct vport *ovs_tnl_find_port(struct net *net, __be32 saddr, __be32 daddr,
|
|
|
|
|
__be64 key, int tunnel_type,
|
2011-11-21 17:15:20 -08:00
|
|
|
const struct tnl_mutable_config **mutable)
|
2010-08-10 20:11:48 -04:00
|
|
|
{
|
|
|
|
|
struct port_lookup_key lookup;
|
2011-10-14 14:28:49 -07:00
|
|
|
struct vport *vport;
|
2011-11-05 17:18:04 -07:00
|
|
|
bool is_multicast = ipv4_is_multicast(saddr);
|
2011-10-24 12:27:36 -07:00
|
|
|
|
2012-01-30 06:56:54 -08:00
|
|
|
port_key_set_net(&lookup, net);
|
2010-11-30 15:58:55 -08:00
|
|
|
lookup.saddr = saddr;
|
|
|
|
|
lookup.daddr = daddr;
|
2010-08-10 20:11:48 -04:00
|
|
|
|
2011-10-14 15:33:49 -07:00
|
|
|
/* First try for exact match on in_key. */
|
|
|
|
|
lookup.in_key = key;
|
|
|
|
|
lookup.tunnel_type = tunnel_type | TNL_T_KEY_EXACT;
|
2011-11-05 17:18:04 -07:00
|
|
|
if (!is_multicast && key_local_remote_ports) {
|
2011-10-14 15:33:49 -07:00
|
|
|
vport = port_table_lookup(&lookup, mutable);
|
|
|
|
|
if (vport)
|
|
|
|
|
return vport;
|
2010-08-10 20:11:48 -04:00
|
|
|
}
|
2011-10-14 15:33:49 -07:00
|
|
|
if (key_remote_ports) {
|
|
|
|
|
lookup.saddr = 0;
|
|
|
|
|
vport = port_table_lookup(&lookup, mutable);
|
|
|
|
|
if (vport)
|
|
|
|
|
return vport;
|
2010-08-10 20:11:48 -04:00
|
|
|
|
2011-10-14 15:33:49 -07:00
|
|
|
lookup.saddr = saddr;
|
|
|
|
|
}
|
2010-08-10 20:11:48 -04:00
|
|
|
|
2011-10-14 15:33:49 -07:00
|
|
|
/* Then try matches that wildcard in_key. */
|
|
|
|
|
lookup.in_key = 0;
|
|
|
|
|
lookup.tunnel_type = tunnel_type | TNL_T_KEY_MATCH;
|
2011-11-05 17:18:04 -07:00
|
|
|
if (!is_multicast && local_remote_ports) {
|
2011-10-14 15:33:49 -07:00
|
|
|
vport = port_table_lookup(&lookup, mutable);
|
|
|
|
|
if (vport)
|
|
|
|
|
return vport;
|
|
|
|
|
}
|
|
|
|
|
if (remote_ports) {
|
|
|
|
|
lookup.saddr = 0;
|
|
|
|
|
vport = port_table_lookup(&lookup, mutable);
|
|
|
|
|
if (vport)
|
|
|
|
|
return vport;
|
2010-08-10 20:11:48 -04:00
|
|
|
}
|
|
|
|
|
|
2011-11-05 17:18:04 -07:00
|
|
|
if (is_multicast) {
|
|
|
|
|
lookup.saddr = 0;
|
|
|
|
|
lookup.daddr = saddr;
|
2011-11-07 20:01:52 -08:00
|
|
|
if (key_multicast_ports) {
|
2011-11-05 17:18:04 -07:00
|
|
|
lookup.tunnel_type = tunnel_type | TNL_T_KEY_EXACT;
|
|
|
|
|
lookup.in_key = key;
|
|
|
|
|
vport = port_table_lookup(&lookup, mutable);
|
|
|
|
|
if (vport)
|
|
|
|
|
return vport;
|
|
|
|
|
}
|
2011-11-07 20:01:52 -08:00
|
|
|
if (multicast_ports) {
|
2011-11-05 17:18:04 -07:00
|
|
|
lookup.tunnel_type = tunnel_type | TNL_T_KEY_MATCH;
|
|
|
|
|
lookup.in_key = 0;
|
|
|
|
|
vport = port_table_lookup(&lookup, mutable);
|
|
|
|
|
if (vport)
|
|
|
|
|
return vport;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2012-10-20 12:18:05 -07:00
|
|
|
if (null_ports) {
|
|
|
|
|
lookup.daddr = 0;
|
|
|
|
|
lookup.saddr = 0;
|
2012-12-17 12:07:07 -08:00
|
|
|
lookup.in_key = 0;
|
2012-10-20 12:18:05 -07:00
|
|
|
lookup.tunnel_type = tunnel_type;
|
|
|
|
|
vport = port_table_lookup(&lookup, mutable);
|
|
|
|
|
if (vport)
|
|
|
|
|
return vport;
|
|
|
|
|
}
|
2010-08-10 20:11:48 -04:00
|
|
|
return NULL;
|
|
|
|
|
}
|
|
|
|
|
|
2012-10-20 12:15:24 -07:00
|
|
|
static void ecn_decapsulate(struct sk_buff *skb)
|
2010-08-27 13:55:02 -07:00
|
|
|
{
|
2012-10-20 12:15:24 -07:00
|
|
|
if (unlikely(INET_ECN_is_ce(OVS_CB(skb)->tun_key->ipv4_tos))) {
|
2010-08-27 13:55:02 -07:00
|
|
|
__be16 protocol = skb->protocol;
|
2010-12-03 19:17:20 -08:00
|
|
|
|
|
|
|
|
skb_set_network_header(skb, ETH_HLEN);
|
2010-08-27 13:55:02 -07:00
|
|
|
|
2011-03-08 17:33:14 -08:00
|
|
|
if (protocol == htons(ETH_P_8021Q)) {
|
2010-08-27 13:55:02 -07:00
|
|
|
if (unlikely(!pskb_may_pull(skb, VLAN_ETH_HLEN)))
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
protocol = vlan_eth_hdr(skb)->h_vlan_encapsulated_proto;
|
2010-12-03 19:17:20 -08:00
|
|
|
skb_set_network_header(skb, VLAN_ETH_HLEN);
|
2010-08-27 13:55:02 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (protocol == htons(ETH_P_IP)) {
|
2010-12-03 19:17:20 -08:00
|
|
|
if (unlikely(!pskb_may_pull(skb, skb_network_offset(skb)
|
2010-08-27 13:55:02 -07:00
|
|
|
+ sizeof(struct iphdr))))
|
|
|
|
|
return;
|
|
|
|
|
|
2010-12-03 19:17:20 -08:00
|
|
|
IP_ECN_set_ce(ip_hdr(skb));
|
2010-08-27 13:55:02 -07:00
|
|
|
}
|
|
|
|
|
#if defined(CONFIG_IPV6) || defined(CONFIG_IPV6_MODULE)
|
|
|
|
|
else if (protocol == htons(ETH_P_IPV6)) {
|
2010-12-03 19:17:20 -08:00
|
|
|
if (unlikely(!pskb_may_pull(skb, skb_network_offset(skb)
|
2010-08-27 13:55:02 -07:00
|
|
|
+ sizeof(struct ipv6hdr))))
|
|
|
|
|
return;
|
|
|
|
|
|
2010-12-03 19:17:20 -08:00
|
|
|
IP6_ECN_set_ce(ipv6_hdr(skb));
|
2010-08-27 13:55:02 -07:00
|
|
|
}
|
|
|
|
|
#endif
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2011-03-08 17:33:14 -08:00
|
|
|
/**
|
2011-11-21 17:15:20 -08:00
|
|
|
* ovs_tnl_rcv - ingress point for generic tunnel code
|
2011-03-08 17:33:14 -08:00
|
|
|
*
|
|
|
|
|
* @vport: port this packet was received on
|
|
|
|
|
* @skb: received packet
|
|
|
|
|
* @tos: ToS from encapsulating IP packet, used to copy ECN bits
|
|
|
|
|
*
|
|
|
|
|
* Must be called with rcu_read_lock.
|
|
|
|
|
*
|
|
|
|
|
* Packets received by this function are in the following state:
|
|
|
|
|
* - skb->data points to the inner Ethernet header.
|
|
|
|
|
* - The inner Ethernet header is in the linear data area.
|
|
|
|
|
* - skb->csum does not include the inner Ethernet header.
|
|
|
|
|
* - The layer pointers are undefined.
|
|
|
|
|
*/
|
2012-10-20 12:15:24 -07:00
|
|
|
void ovs_tnl_rcv(struct vport *vport, struct sk_buff *skb)
|
2010-08-27 13:55:02 -07:00
|
|
|
{
|
2011-03-08 17:33:14 -08:00
|
|
|
struct ethhdr *eh;
|
2010-12-03 18:06:23 -08:00
|
|
|
|
2011-03-08 17:33:14 -08:00
|
|
|
skb_reset_mac_header(skb);
|
|
|
|
|
eh = eth_hdr(skb);
|
2010-12-03 18:06:23 -08:00
|
|
|
|
|
|
|
|
if (likely(ntohs(eh->h_proto) >= 1536))
|
|
|
|
|
skb->protocol = eh->h_proto;
|
|
|
|
|
else
|
|
|
|
|
skb->protocol = htons(ETH_P_802_2);
|
2010-08-27 13:55:02 -07:00
|
|
|
|
|
|
|
|
skb_dst_drop(skb);
|
|
|
|
|
nf_reset(skb);
|
2011-02-07 11:07:14 +09:00
|
|
|
skb_clear_rxhash(skb);
|
2010-08-27 13:55:02 -07:00
|
|
|
secpath_reset(skb);
|
|
|
|
|
|
2012-10-20 12:15:24 -07:00
|
|
|
ecn_decapsulate(skb);
|
2010-12-29 22:13:15 -08:00
|
|
|
vlan_set_tci(skb, 0);
|
2010-08-27 13:55:02 -07:00
|
|
|
|
2011-05-27 15:53:49 -07:00
|
|
|
if (unlikely(compute_ip_summed(skb, false))) {
|
|
|
|
|
kfree_skb(skb);
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
2011-11-21 17:15:20 -08:00
|
|
|
ovs_vport_receive(vport, skb);
|
2010-08-27 13:55:02 -07:00
|
|
|
}
|
|
|
|
|
|
2012-11-05 13:44:23 -08:00
|
|
|
static struct rtable *find_route(struct net *net,
|
|
|
|
|
__be32 *saddr, __be32 daddr, u8 ipproto,
|
|
|
|
|
u8 tos)
|
2011-10-24 12:27:36 -07:00
|
|
|
{
|
2012-11-05 13:44:23 -08:00
|
|
|
struct rtable *rt;
|
2012-05-21 12:18:50 -07:00
|
|
|
/* Tunnel configuration keeps DSCP part of TOS bits, But Linux
|
|
|
|
|
* router expect RT_TOS bits only. */
|
|
|
|
|
|
2011-10-24 12:27:36 -07:00
|
|
|
#if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,39)
|
2011-11-07 15:53:01 -08:00
|
|
|
struct flowi fl = { .nl_u = { .ip4_u = {
|
2012-10-20 12:15:24 -07:00
|
|
|
.daddr = daddr,
|
2012-11-05 13:44:23 -08:00
|
|
|
.saddr = *saddr,
|
2012-05-21 12:18:50 -07:00
|
|
|
.tos = RT_TOS(tos) } },
|
|
|
|
|
.proto = ipproto };
|
2011-10-24 12:27:36 -07:00
|
|
|
|
2012-11-05 13:44:23 -08:00
|
|
|
if (unlikely(ip_route_output_key(net, &rt, &fl)))
|
2011-10-24 12:27:36 -07:00
|
|
|
return ERR_PTR(-EADDRNOTAVAIL);
|
2012-11-05 13:44:23 -08:00
|
|
|
*saddr = fl.nl_u.ip4_u.saddr;
|
2011-10-24 12:27:36 -07:00
|
|
|
return rt;
|
|
|
|
|
#else
|
2012-10-20 12:15:24 -07:00
|
|
|
struct flowi4 fl = { .daddr = daddr,
|
2012-11-05 13:44:23 -08:00
|
|
|
.saddr = *saddr,
|
2012-05-21 12:18:50 -07:00
|
|
|
.flowi4_tos = RT_TOS(tos),
|
2011-10-24 12:27:36 -07:00
|
|
|
.flowi4_proto = ipproto };
|
|
|
|
|
|
2012-11-05 13:44:23 -08:00
|
|
|
rt = ip_route_output_key(net, &fl);
|
|
|
|
|
*saddr = fl.saddr;
|
|
|
|
|
return rt;
|
2011-10-24 12:27:36 -07:00
|
|
|
#endif
|
|
|
|
|
}
|
|
|
|
|
|
2011-11-07 15:53:01 -08:00
|
|
|
static bool need_linearize(const struct sk_buff *skb)
|
2010-08-10 20:11:48 -04:00
|
|
|
{
|
2010-08-27 13:55:02 -07:00
|
|
|
int i;
|
|
|
|
|
|
|
|
|
|
if (unlikely(skb_shinfo(skb)->frag_list))
|
|
|
|
|
return true;
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* Generally speaking we should linearize if there are paged frags.
|
|
|
|
|
* However, if all of the refcounts are 1 we know nobody else can
|
|
|
|
|
* change them from underneath us and we can skip the linearization.
|
|
|
|
|
*/
|
|
|
|
|
for (i = 0; i < skb_shinfo(skb)->nr_frags; i++)
|
2011-11-08 15:25:12 -08:00
|
|
|
if (unlikely(page_count(skb_frag_page(&skb_shinfo(skb)->frags[i])) > 1))
|
2010-08-27 13:55:02 -07:00
|
|
|
return true;
|
|
|
|
|
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static struct sk_buff *handle_offloads(struct sk_buff *skb,
|
|
|
|
|
const struct tnl_mutable_config *mutable,
|
2012-10-20 12:15:24 -07:00
|
|
|
const struct rtable *rt,
|
|
|
|
|
int tunnel_hlen)
|
2010-08-27 13:55:02 -07:00
|
|
|
{
|
|
|
|
|
int min_headroom;
|
2010-08-10 20:11:48 -04:00
|
|
|
int err;
|
|
|
|
|
|
2010-08-27 13:55:02 -07:00
|
|
|
min_headroom = LL_RESERVED_SPACE(rt_dst(rt).dev) + rt_dst(rt).header_len
|
2012-10-20 12:15:24 -07:00
|
|
|
+ tunnel_hlen
|
2010-12-29 22:13:15 -08:00
|
|
|
+ (vlan_tx_tag_present(skb) ? VLAN_HLEN : 0);
|
|
|
|
|
|
2011-06-07 17:09:35 -07:00
|
|
|
if (skb_headroom(skb) < min_headroom || skb_header_cloned(skb)) {
|
|
|
|
|
int head_delta = SKB_DATA_ALIGN(min_headroom -
|
|
|
|
|
skb_headroom(skb) +
|
|
|
|
|
16);
|
|
|
|
|
err = pskb_expand_head(skb, max_t(int, head_delta, 0),
|
|
|
|
|
0, GFP_ATOMIC);
|
|
|
|
|
if (unlikely(err))
|
|
|
|
|
goto error_free;
|
2010-12-29 22:13:15 -08:00
|
|
|
}
|
2010-08-10 20:11:48 -04:00
|
|
|
|
2011-05-27 15:53:49 -07:00
|
|
|
forward_ip_summed(skb, true);
|
|
|
|
|
|
2010-08-27 13:55:02 -07:00
|
|
|
if (skb_is_gso(skb)) {
|
|
|
|
|
struct sk_buff *nskb;
|
|
|
|
|
|
2013-02-06 14:40:36 -08:00
|
|
|
nskb = __skb_gso_segment(skb, 0, false);
|
2010-12-10 16:41:33 -08:00
|
|
|
if (IS_ERR(nskb)) {
|
2011-06-16 15:32:26 -07:00
|
|
|
kfree_skb(skb);
|
2010-08-27 13:55:02 -07:00
|
|
|
err = PTR_ERR(nskb);
|
|
|
|
|
goto error;
|
|
|
|
|
}
|
2010-08-10 20:11:48 -04:00
|
|
|
|
2011-06-16 15:32:26 -07:00
|
|
|
consume_skb(skb);
|
2010-08-27 13:55:02 -07:00
|
|
|
skb = nskb;
|
2011-05-27 15:53:49 -07:00
|
|
|
} else if (get_ip_summed(skb) == OVS_CSUM_PARTIAL) {
|
2010-12-29 22:13:15 -08:00
|
|
|
/* Pages aren't locked and could change at any time.
|
|
|
|
|
* If this happens after we compute the checksum, the
|
|
|
|
|
* checksum will be wrong. We linearize now to avoid
|
|
|
|
|
* this problem.
|
|
|
|
|
*/
|
|
|
|
|
if (unlikely(need_linearize(skb))) {
|
|
|
|
|
err = __skb_linearize(skb);
|
2010-08-27 13:55:02 -07:00
|
|
|
if (unlikely(err))
|
2010-08-10 20:11:48 -04:00
|
|
|
goto error_free;
|
2010-12-29 22:13:15 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
err = skb_checksum_help(skb);
|
|
|
|
|
if (unlikely(err))
|
|
|
|
|
goto error_free;
|
2011-05-27 15:53:49 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
set_ip_summed(skb, OVS_CSUM_NONE);
|
2010-08-10 20:11:48 -04:00
|
|
|
|
2010-08-27 13:55:02 -07:00
|
|
|
return skb;
|
2010-08-10 20:11:48 -04:00
|
|
|
|
2010-08-27 13:55:02 -07:00
|
|
|
error_free:
|
|
|
|
|
kfree_skb(skb);
|
|
|
|
|
error:
|
|
|
|
|
return ERR_PTR(err);
|
|
|
|
|
}
|
2010-08-10 20:11:48 -04:00
|
|
|
|
2010-08-27 13:55:02 -07:00
|
|
|
static int send_frags(struct sk_buff *skb,
|
2012-10-20 12:15:24 -07:00
|
|
|
int tunnel_hlen)
|
2010-08-27 13:55:02 -07:00
|
|
|
{
|
|
|
|
|
int sent_len;
|
2010-08-10 20:11:48 -04:00
|
|
|
|
2010-08-27 13:55:02 -07:00
|
|
|
sent_len = 0;
|
2010-08-16 10:32:41 -04:00
|
|
|
while (skb) {
|
|
|
|
|
struct sk_buff *next = skb->next;
|
2012-10-20 12:15:24 -07:00
|
|
|
int frag_len = skb->len - tunnel_hlen;
|
2011-03-01 15:31:32 -08:00
|
|
|
int err;
|
2010-08-10 20:11:48 -04:00
|
|
|
|
2010-08-16 10:32:41 -04:00
|
|
|
skb->next = NULL;
|
2010-12-02 13:07:36 -08:00
|
|
|
memset(IPCB(skb), 0, sizeof(*IPCB(skb)));
|
2010-11-19 13:10:14 -08:00
|
|
|
|
2010-08-16 10:32:41 -04:00
|
|
|
err = ip_local_out(skb);
|
|
|
|
|
skb = next;
|
2011-03-01 15:31:32 -08:00
|
|
|
if (unlikely(net_xmit_eval(err)))
|
|
|
|
|
goto free_frags;
|
|
|
|
|
sent_len += frag_len;
|
2010-08-27 13:55:02 -07:00
|
|
|
}
|
2010-08-16 10:32:41 -04:00
|
|
|
|
2010-08-27 13:55:02 -07:00
|
|
|
return sent_len;
|
2010-08-10 20:11:48 -04:00
|
|
|
|
2010-08-16 10:32:41 -04:00
|
|
|
free_frags:
|
|
|
|
|
/*
|
|
|
|
|
* There's no point in continuing to send fragments once one has been
|
|
|
|
|
* dropped so just free the rest. This may help improve the congestion
|
|
|
|
|
* that caused the first packet to be dropped.
|
|
|
|
|
*/
|
2011-11-21 17:15:20 -08:00
|
|
|
ovs_tnl_free_linked_skbs(skb);
|
2010-08-27 13:55:02 -07:00
|
|
|
return sent_len;
|
2010-08-10 20:11:48 -04:00
|
|
|
}
|
|
|
|
|
|
2011-11-21 17:15:20 -08:00
|
|
|
int ovs_tnl_send(struct vport *vport, struct sk_buff *skb)
|
2010-08-10 20:11:48 -04:00
|
|
|
{
|
|
|
|
|
struct tnl_vport *tnl_vport = tnl_vport_priv(vport);
|
|
|
|
|
const struct tnl_mutable_config *mutable = rcu_dereference(tnl_vport->mutable);
|
2010-08-27 13:55:02 -07:00
|
|
|
enum vport_err_type err = VPORT_E_TX_ERROR;
|
2010-08-10 20:11:48 -04:00
|
|
|
struct rtable *rt;
|
2012-10-20 12:15:24 -07:00
|
|
|
struct ovs_key_ipv4_tunnel tun_key;
|
2010-08-27 13:55:02 -07:00
|
|
|
int sent_len = 0;
|
2012-10-20 12:15:24 -07:00
|
|
|
int tunnel_hlen;
|
2013-01-25 12:44:00 -08:00
|
|
|
__be16 frag_off;
|
2012-10-20 12:15:24 -07:00
|
|
|
__be32 daddr;
|
|
|
|
|
__be32 saddr;
|
2010-08-27 13:55:02 -07:00
|
|
|
u8 ttl;
|
|
|
|
|
u8 tos;
|
2010-08-10 20:11:48 -04:00
|
|
|
|
|
|
|
|
/* Validate the protocol headers before we try to use them. */
|
2010-12-29 22:13:15 -08:00
|
|
|
if (skb->protocol == htons(ETH_P_8021Q) &&
|
|
|
|
|
!vlan_tx_tag_present(skb)) {
|
2010-08-10 20:11:48 -04:00
|
|
|
if (unlikely(!pskb_may_pull(skb, VLAN_ETH_HLEN)))
|
|
|
|
|
goto error_free;
|
|
|
|
|
|
|
|
|
|
skb->protocol = vlan_eth_hdr(skb)->h_vlan_encapsulated_proto;
|
|
|
|
|
skb_set_network_header(skb, VLAN_ETH_HLEN);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (skb->protocol == htons(ETH_P_IP)) {
|
2010-08-27 13:55:02 -07:00
|
|
|
if (unlikely(!pskb_may_pull(skb, skb_network_offset(skb)
|
|
|
|
|
+ sizeof(struct iphdr))))
|
2010-08-10 20:11:48 -04:00
|
|
|
skb->protocol = 0;
|
|
|
|
|
}
|
|
|
|
|
#if defined(CONFIG_IPV6) || defined(CONFIG_IPV6_MODULE)
|
|
|
|
|
else if (skb->protocol == htons(ETH_P_IPV6)) {
|
2010-08-27 13:55:02 -07:00
|
|
|
if (unlikely(!pskb_may_pull(skb, skb_network_offset(skb)
|
|
|
|
|
+ sizeof(struct ipv6hdr))))
|
2010-08-10 20:11:48 -04:00
|
|
|
skb->protocol = 0;
|
|
|
|
|
}
|
|
|
|
|
#endif
|
|
|
|
|
|
2012-10-20 12:15:24 -07:00
|
|
|
/* If OVS_CB(skb)->tun_key is NULL, point it at the local tun_key here,
|
|
|
|
|
* and zero it out.
|
|
|
|
|
*/
|
|
|
|
|
if (!OVS_CB(skb)->tun_key) {
|
|
|
|
|
memset(&tun_key, 0, sizeof(tun_key));
|
|
|
|
|
OVS_CB(skb)->tun_key = &tun_key;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
tunnel_hlen = tnl_vport->tnl_ops->hdr_len(mutable, OVS_CB(skb)->tun_key);
|
|
|
|
|
if (unlikely(tunnel_hlen < 0)) {
|
|
|
|
|
err = VPORT_E_TX_DROPPED;
|
|
|
|
|
goto error_free;
|
|
|
|
|
}
|
|
|
|
|
tunnel_hlen += sizeof(struct iphdr);
|
|
|
|
|
|
|
|
|
|
if (OVS_CB(skb)->tun_key->ipv4_dst) {
|
|
|
|
|
daddr = OVS_CB(skb)->tun_key->ipv4_dst;
|
|
|
|
|
saddr = OVS_CB(skb)->tun_key->ipv4_src;
|
|
|
|
|
tos = OVS_CB(skb)->tun_key->ipv4_tos;
|
|
|
|
|
ttl = OVS_CB(skb)->tun_key->ipv4_ttl;
|
2013-01-25 12:44:00 -08:00
|
|
|
frag_off = OVS_CB(skb)->tun_key->tun_flags &
|
|
|
|
|
OVS_TNL_F_DONT_FRAGMENT ? htons(IP_DF) : 0;
|
2012-10-20 12:15:24 -07:00
|
|
|
} else {
|
|
|
|
|
u8 inner_tos;
|
|
|
|
|
daddr = mutable->key.daddr;
|
|
|
|
|
saddr = mutable->key.saddr;
|
|
|
|
|
|
2012-10-20 12:18:05 -07:00
|
|
|
if (unlikely(!daddr)) {
|
|
|
|
|
/* Trying to sent packet from Null-port without
|
|
|
|
|
* tunnel info? Drop this packet. */
|
|
|
|
|
err = VPORT_E_TX_DROPPED;
|
|
|
|
|
goto error_free;
|
|
|
|
|
}
|
|
|
|
|
|
2012-10-20 12:15:24 -07:00
|
|
|
/* ToS */
|
|
|
|
|
if (skb->protocol == htons(ETH_P_IP))
|
|
|
|
|
inner_tos = ip_hdr(skb)->tos;
|
2010-08-10 20:11:48 -04:00
|
|
|
#if defined(CONFIG_IPV6) || defined(CONFIG_IPV6_MODULE)
|
2012-10-20 12:15:24 -07:00
|
|
|
else if (skb->protocol == htons(ETH_P_IPV6))
|
|
|
|
|
inner_tos = ipv6_get_dsfield(ipv6_hdr(skb));
|
2010-08-10 20:11:48 -04:00
|
|
|
#endif
|
2012-10-20 12:15:24 -07:00
|
|
|
else
|
|
|
|
|
inner_tos = 0;
|
2010-08-10 20:11:48 -04:00
|
|
|
|
2012-10-20 12:15:24 -07:00
|
|
|
if (mutable->flags & TNL_F_TOS_INHERIT)
|
|
|
|
|
tos = inner_tos;
|
|
|
|
|
else
|
|
|
|
|
tos = mutable->tos;
|
|
|
|
|
|
|
|
|
|
tos = INET_ECN_encapsulate(tos, inner_tos);
|
|
|
|
|
|
|
|
|
|
/* TTL */
|
|
|
|
|
ttl = mutable->ttl;
|
|
|
|
|
if (mutable->flags & TNL_F_TTL_INHERIT) {
|
|
|
|
|
if (skb->protocol == htons(ETH_P_IP))
|
|
|
|
|
ttl = ip_hdr(skb)->ttl;
|
|
|
|
|
#if defined(CONFIG_IPV6) || defined(CONFIG_IPV6_MODULE)
|
|
|
|
|
else if (skb->protocol == htons(ETH_P_IPV6))
|
|
|
|
|
ttl = ipv6_hdr(skb)->hop_limit;
|
|
|
|
|
#endif
|
|
|
|
|
}
|
|
|
|
|
|
2013-01-25 12:44:00 -08:00
|
|
|
frag_off = mutable->flags & TNL_F_DF_DEFAULT ? htons(IP_DF) : 0;
|
2012-10-20 12:15:24 -07:00
|
|
|
}
|
2010-08-10 20:11:48 -04:00
|
|
|
|
2010-08-27 13:55:02 -07:00
|
|
|
/* Route lookup */
|
2012-11-05 13:44:23 -08:00
|
|
|
rt = find_route(port_key_get_net(&mutable->key), &saddr, daddr,
|
|
|
|
|
tnl_vport->tnl_ops->ipproto, tos);
|
2012-11-05 13:44:00 -08:00
|
|
|
if (IS_ERR(rt))
|
2010-08-27 13:55:02 -07:00
|
|
|
goto error_free;
|
|
|
|
|
|
|
|
|
|
/* Reset SKB */
|
|
|
|
|
nf_reset(skb);
|
|
|
|
|
secpath_reset(skb);
|
|
|
|
|
skb_dst_drop(skb);
|
2011-02-07 11:07:14 +09:00
|
|
|
skb_clear_rxhash(skb);
|
2010-08-27 13:55:02 -07:00
|
|
|
|
|
|
|
|
/* Offloading */
|
2012-10-20 12:15:24 -07:00
|
|
|
skb = handle_offloads(skb, mutable, rt, tunnel_hlen);
|
2012-11-05 13:44:00 -08:00
|
|
|
if (IS_ERR(skb)) {
|
|
|
|
|
skb = NULL;
|
|
|
|
|
goto err_free_rt;
|
|
|
|
|
}
|
2010-08-27 13:55:02 -07:00
|
|
|
|
2012-10-20 12:15:24 -07:00
|
|
|
/* TTL Fixup. */
|
|
|
|
|
if (!OVS_CB(skb)->tun_key->ipv4_dst) {
|
|
|
|
|
if (!(mutable->flags & TNL_F_TTL_INHERIT)) {
|
|
|
|
|
if (!ttl)
|
|
|
|
|
ttl = ip4_dst_hoplimit(&rt_dst(rt));
|
|
|
|
|
}
|
2010-08-10 20:11:48 -04:00
|
|
|
}
|
|
|
|
|
|
2010-08-27 13:55:02 -07:00
|
|
|
while (skb) {
|
|
|
|
|
struct iphdr *iph;
|
|
|
|
|
struct sk_buff *next_skb = skb->next;
|
|
|
|
|
skb->next = NULL;
|
2010-08-10 20:11:48 -04:00
|
|
|
|
2010-12-29 22:13:15 -08:00
|
|
|
if (unlikely(vlan_deaccel_tag(skb)))
|
|
|
|
|
goto next;
|
|
|
|
|
|
2012-11-05 13:44:00 -08:00
|
|
|
skb_push(skb, tunnel_hlen);
|
|
|
|
|
skb_reset_network_header(skb);
|
|
|
|
|
skb_set_transport_header(skb, sizeof(struct iphdr));
|
2010-08-10 20:11:48 -04:00
|
|
|
|
2012-11-05 13:44:00 -08:00
|
|
|
if (next_skb)
|
|
|
|
|
skb_dst_set(skb, dst_clone(&rt_dst(rt)));
|
|
|
|
|
else
|
|
|
|
|
skb_dst_set(skb, &rt_dst(rt));
|
|
|
|
|
|
|
|
|
|
/* Push IP header. */
|
2010-08-27 13:55:02 -07:00
|
|
|
iph = ip_hdr(skb);
|
2012-11-05 13:44:00 -08:00
|
|
|
iph->version = 4;
|
|
|
|
|
iph->ihl = sizeof(struct iphdr) >> 2;
|
|
|
|
|
iph->protocol = tnl_vport->tnl_ops->ipproto;
|
2012-11-05 13:44:23 -08:00
|
|
|
iph->daddr = daddr;
|
|
|
|
|
iph->saddr = saddr;
|
2012-11-05 13:44:00 -08:00
|
|
|
iph->tos = tos;
|
|
|
|
|
iph->ttl = ttl;
|
|
|
|
|
iph->frag_off = frag_off;
|
2010-08-27 13:55:02 -07:00
|
|
|
ip_select_ident(iph, &rt_dst(rt), NULL);
|
2010-08-10 20:11:48 -04:00
|
|
|
|
2012-11-05 13:44:00 -08:00
|
|
|
/* Push Tunnel header. */
|
|
|
|
|
skb = tnl_vport->tnl_ops->build_header(vport, mutable,
|
2012-10-20 12:15:24 -07:00
|
|
|
&rt_dst(rt), skb, tunnel_hlen);
|
2010-08-27 13:55:02 -07:00
|
|
|
if (unlikely(!skb))
|
|
|
|
|
goto next;
|
2010-08-10 20:11:48 -04:00
|
|
|
|
2012-11-05 13:44:00 -08:00
|
|
|
sent_len += send_frags(skb, tunnel_hlen);
|
2010-08-27 13:55:02 -07:00
|
|
|
|
|
|
|
|
next:
|
2010-08-10 20:11:48 -04:00
|
|
|
skb = next_skb;
|
2010-08-27 13:55:02 -07:00
|
|
|
}
|
2010-08-10 20:11:48 -04:00
|
|
|
|
2010-08-27 13:55:02 -07:00
|
|
|
if (unlikely(sent_len == 0))
|
2011-11-21 17:15:20 -08:00
|
|
|
ovs_vport_record_error(vport, VPORT_E_TX_DROPPED);
|
2010-08-16 10:32:41 -04:00
|
|
|
|
2012-11-05 13:44:00 -08:00
|
|
|
return sent_len;
|
2010-08-10 20:11:48 -04:00
|
|
|
|
2012-11-05 13:44:00 -08:00
|
|
|
err_free_rt:
|
|
|
|
|
ip_rt_put(rt);
|
2010-08-10 20:11:48 -04:00
|
|
|
error_free:
|
2011-11-21 17:15:20 -08:00
|
|
|
ovs_tnl_free_linked_skbs(skb);
|
|
|
|
|
ovs_vport_record_error(vport, err);
|
2010-08-27 13:55:02 -07:00
|
|
|
return sent_len;
|
2010-08-10 20:11:48 -04:00
|
|
|
}
|
|
|
|
|
|
2011-08-18 10:35:40 -07:00
|
|
|
static const struct nla_policy tnl_policy[OVS_TUNNEL_ATTR_MAX + 1] = {
|
|
|
|
|
[OVS_TUNNEL_ATTR_FLAGS] = { .type = NLA_U32 },
|
|
|
|
|
[OVS_TUNNEL_ATTR_DST_IPV4] = { .type = NLA_U32 },
|
|
|
|
|
[OVS_TUNNEL_ATTR_SRC_IPV4] = { .type = NLA_U32 },
|
|
|
|
|
[OVS_TUNNEL_ATTR_OUT_KEY] = { .type = NLA_U64 },
|
|
|
|
|
[OVS_TUNNEL_ATTR_IN_KEY] = { .type = NLA_U64 },
|
|
|
|
|
[OVS_TUNNEL_ATTR_TOS] = { .type = NLA_U8 },
|
|
|
|
|
[OVS_TUNNEL_ATTR_TTL] = { .type = NLA_U8 },
|
2012-12-05 16:06:46 -05:00
|
|
|
[OVS_TUNNEL_ATTR_DST_PORT] = { .type = NLA_U16 },
|
2011-01-26 12:28:59 -08:00
|
|
|
};
|
|
|
|
|
|
2011-11-07 15:53:01 -08:00
|
|
|
/* Sets OVS_TUNNEL_ATTR_* fields in 'mutable', which must initially be
|
|
|
|
|
* zeroed. */
|
2012-01-30 06:56:54 -08:00
|
|
|
static int tnl_set_config(struct net *net, struct nlattr *options,
|
|
|
|
|
const struct tnl_ops *tnl_ops,
|
2011-01-06 13:18:10 -08:00
|
|
|
const struct vport *cur_vport,
|
|
|
|
|
struct tnl_mutable_config *mutable)
|
2010-08-10 20:11:48 -04:00
|
|
|
{
|
|
|
|
|
const struct vport *old_vport;
|
|
|
|
|
const struct tnl_mutable_config *old_mutable;
|
2011-08-18 10:35:40 -07:00
|
|
|
struct nlattr *a[OVS_TUNNEL_ATTR_MAX + 1];
|
2011-01-26 12:28:59 -08:00
|
|
|
int err;
|
2010-08-10 20:11:48 -04:00
|
|
|
|
2012-10-20 12:18:05 -07:00
|
|
|
port_key_set_net(&mutable->key, net);
|
|
|
|
|
mutable->key.tunnel_type = tnl_ops->tunnel_type;
|
2011-01-26 12:28:59 -08:00
|
|
|
if (!options)
|
2012-10-20 12:18:05 -07:00
|
|
|
goto out;
|
2010-08-27 13:55:02 -07:00
|
|
|
|
2011-08-18 10:35:40 -07:00
|
|
|
err = nla_parse_nested(a, OVS_TUNNEL_ATTR_MAX, options, tnl_policy);
|
2011-01-26 12:28:59 -08:00
|
|
|
if (err)
|
|
|
|
|
return err;
|
|
|
|
|
|
2012-12-29 08:58:40 +02:00
|
|
|
/* Process attributes possibly useful for null_ports first */
|
|
|
|
|
if (a[OVS_TUNNEL_ATTR_DST_PORT])
|
|
|
|
|
mutable->dst_port =
|
|
|
|
|
htons(nla_get_u16(a[OVS_TUNNEL_ATTR_DST_PORT]));
|
|
|
|
|
|
|
|
|
|
if (a[OVS_TUNNEL_ATTR_DST_IPV4])
|
|
|
|
|
mutable->key.daddr = nla_get_be32(a[OVS_TUNNEL_ATTR_DST_IPV4]);
|
2010-08-27 13:55:02 -07:00
|
|
|
|
2012-12-29 08:58:40 +02:00
|
|
|
/* Skip the rest if configuring a null_port */
|
|
|
|
|
if (!mutable->key.daddr)
|
|
|
|
|
goto out;
|
|
|
|
|
|
|
|
|
|
if (a[OVS_TUNNEL_ATTR_FLAGS])
|
|
|
|
|
mutable->flags = nla_get_u32(a[OVS_TUNNEL_ATTR_FLAGS])
|
|
|
|
|
& TNL_F_PUBLIC;
|
2012-10-20 12:18:05 -07:00
|
|
|
|
2011-10-24 12:27:36 -07:00
|
|
|
if (a[OVS_TUNNEL_ATTR_SRC_IPV4]) {
|
|
|
|
|
if (ipv4_is_multicast(mutable->key.daddr))
|
|
|
|
|
return -EINVAL;
|
|
|
|
|
mutable->key.saddr = nla_get_be32(a[OVS_TUNNEL_ATTR_SRC_IPV4]);
|
|
|
|
|
}
|
2011-01-26 12:28:59 -08:00
|
|
|
|
2011-08-18 10:35:40 -07:00
|
|
|
if (a[OVS_TUNNEL_ATTR_TOS]) {
|
|
|
|
|
mutable->tos = nla_get_u8(a[OVS_TUNNEL_ATTR_TOS]);
|
2012-05-21 12:18:50 -07:00
|
|
|
/* Reject ToS config with ECN bits set. */
|
|
|
|
|
if (mutable->tos & INET_ECN_MASK)
|
2011-01-26 12:28:59 -08:00
|
|
|
return -EINVAL;
|
|
|
|
|
}
|
|
|
|
|
|
2011-08-18 10:35:40 -07:00
|
|
|
if (a[OVS_TUNNEL_ATTR_TTL])
|
|
|
|
|
mutable->ttl = nla_get_u8(a[OVS_TUNNEL_ATTR_TTL]);
|
2011-01-26 12:28:59 -08:00
|
|
|
|
2011-08-18 10:35:40 -07:00
|
|
|
if (!a[OVS_TUNNEL_ATTR_IN_KEY]) {
|
2011-09-30 14:32:31 -07:00
|
|
|
mutable->key.tunnel_type |= TNL_T_KEY_MATCH;
|
2011-01-26 12:28:59 -08:00
|
|
|
mutable->flags |= TNL_F_IN_KEY_MATCH;
|
|
|
|
|
} else {
|
2011-09-30 14:32:31 -07:00
|
|
|
mutable->key.tunnel_type |= TNL_T_KEY_EXACT;
|
|
|
|
|
mutable->key.in_key = nla_get_be64(a[OVS_TUNNEL_ATTR_IN_KEY]);
|
2011-01-26 12:28:59 -08:00
|
|
|
}
|
|
|
|
|
|
2011-08-18 10:35:40 -07:00
|
|
|
if (!a[OVS_TUNNEL_ATTR_OUT_KEY])
|
2011-01-26 12:28:59 -08:00
|
|
|
mutable->flags |= TNL_F_OUT_KEY_ACTION;
|
|
|
|
|
else
|
2011-08-18 10:35:40 -07:00
|
|
|
mutable->out_key = nla_get_be64(a[OVS_TUNNEL_ATTR_OUT_KEY]);
|
2010-08-10 20:11:48 -04:00
|
|
|
|
2011-10-24 12:27:36 -07:00
|
|
|
mutable->mlink = 0;
|
|
|
|
|
if (ipv4_is_multicast(mutable->key.daddr)) {
|
|
|
|
|
struct net_device *dev;
|
|
|
|
|
struct rtable *rt;
|
2012-11-05 13:44:23 -08:00
|
|
|
__be32 saddr = mutable->key.saddr;
|
2011-10-24 12:27:36 -07:00
|
|
|
|
2012-11-05 13:44:23 -08:00
|
|
|
rt = find_route(port_key_get_net(&mutable->key),
|
|
|
|
|
&saddr, mutable->key.daddr,
|
|
|
|
|
tnl_ops->ipproto, mutable->tos);
|
2011-10-24 12:27:36 -07:00
|
|
|
if (IS_ERR(rt))
|
|
|
|
|
return -EADDRNOTAVAIL;
|
|
|
|
|
dev = rt_dst(rt).dev;
|
|
|
|
|
ip_rt_put(rt);
|
|
|
|
|
if (__in_dev_get_rtnl(dev) == NULL)
|
|
|
|
|
return -EADDRNOTAVAIL;
|
|
|
|
|
mutable->mlink = dev->ifindex;
|
|
|
|
|
ip_mc_inc_group(__in_dev_get_rtnl(dev), mutable->key.daddr);
|
|
|
|
|
}
|
|
|
|
|
|
2012-10-20 12:18:05 -07:00
|
|
|
out:
|
|
|
|
|
old_vport = port_table_lookup(&mutable->key, &old_mutable);
|
|
|
|
|
if (old_vport && old_vport != cur_vport)
|
|
|
|
|
return -EEXIST;
|
|
|
|
|
|
2010-08-10 20:11:48 -04:00
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
2011-11-21 17:15:20 -08:00
|
|
|
struct vport *ovs_tnl_create(const struct vport_parms *parms,
|
|
|
|
|
const struct vport_ops *vport_ops,
|
|
|
|
|
const struct tnl_ops *tnl_ops)
|
2010-08-10 20:11:48 -04:00
|
|
|
{
|
|
|
|
|
struct vport *vport;
|
|
|
|
|
struct tnl_vport *tnl_vport;
|
2010-12-23 16:36:26 -08:00
|
|
|
struct tnl_mutable_config *mutable;
|
2010-08-10 20:11:48 -04:00
|
|
|
int err;
|
|
|
|
|
|
2011-11-21 17:15:20 -08:00
|
|
|
vport = ovs_vport_alloc(sizeof(struct tnl_vport), vport_ops, parms);
|
2010-08-10 20:11:48 -04:00
|
|
|
if (IS_ERR(vport)) {
|
|
|
|
|
err = PTR_ERR(vport);
|
|
|
|
|
goto error;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
tnl_vport = tnl_vport_priv(vport);
|
|
|
|
|
|
2010-11-04 16:32:57 -07:00
|
|
|
strcpy(tnl_vport->name, parms->name);
|
2010-08-10 20:11:48 -04:00
|
|
|
tnl_vport->tnl_ops = tnl_ops;
|
|
|
|
|
|
2010-12-23 16:36:26 -08:00
|
|
|
mutable = kzalloc(sizeof(struct tnl_mutable_config), GFP_KERNEL);
|
|
|
|
|
if (!mutable) {
|
2010-08-10 20:11:48 -04:00
|
|
|
err = -ENOMEM;
|
|
|
|
|
goto error_free_vport;
|
|
|
|
|
}
|
|
|
|
|
|
2012-01-30 06:56:54 -08:00
|
|
|
err = tnl_set_config(ovs_dp_get_net(parms->dp), parms->options, tnl_ops,
|
|
|
|
|
NULL, mutable);
|
2010-08-10 20:11:48 -04:00
|
|
|
if (err)
|
|
|
|
|
goto error_free_mutable;
|
|
|
|
|
|
2010-12-23 16:36:26 -08:00
|
|
|
rcu_assign_pointer(tnl_vport->mutable, mutable);
|
|
|
|
|
|
2011-09-09 19:09:47 -07:00
|
|
|
port_table_add_port(vport);
|
2010-08-10 20:11:48 -04:00
|
|
|
return vport;
|
|
|
|
|
|
|
|
|
|
error_free_mutable:
|
2011-10-24 12:27:36 -07:00
|
|
|
free_mutable_rtnl(mutable);
|
2010-12-23 16:36:26 -08:00
|
|
|
kfree(mutable);
|
2010-08-10 20:11:48 -04:00
|
|
|
error_free_vport:
|
2011-11-21 17:15:20 -08:00
|
|
|
ovs_vport_free(vport);
|
2010-08-10 20:11:48 -04:00
|
|
|
error:
|
|
|
|
|
return ERR_PTR(err);
|
|
|
|
|
}
|
|
|
|
|
|
2011-11-21 17:15:20 -08:00
|
|
|
int ovs_tnl_set_options(struct vport *vport, struct nlattr *options)
|
2010-08-10 20:11:48 -04:00
|
|
|
{
|
|
|
|
|
struct tnl_vport *tnl_vport = tnl_vport_priv(vport);
|
2011-01-26 12:28:59 -08:00
|
|
|
const struct tnl_mutable_config *old_mutable;
|
2010-08-10 20:11:48 -04:00
|
|
|
struct tnl_mutable_config *mutable;
|
|
|
|
|
int err;
|
|
|
|
|
|
2012-10-20 12:18:05 -07:00
|
|
|
old_mutable = rtnl_dereference(tnl_vport->mutable);
|
|
|
|
|
if (!old_mutable->key.daddr)
|
|
|
|
|
return -EINVAL;
|
|
|
|
|
|
2011-01-26 12:28:59 -08:00
|
|
|
mutable = kzalloc(sizeof(struct tnl_mutable_config), GFP_KERNEL);
|
2010-08-10 20:11:48 -04:00
|
|
|
if (!mutable) {
|
|
|
|
|
err = -ENOMEM;
|
|
|
|
|
goto error;
|
|
|
|
|
}
|
|
|
|
|
|
2011-01-26 12:28:59 -08:00
|
|
|
/* Parse the others configured by userspace. */
|
2012-01-30 06:56:54 -08:00
|
|
|
err = tnl_set_config(ovs_dp_get_net(vport->dp), options, tnl_vport->tnl_ops,
|
|
|
|
|
vport, mutable);
|
2010-08-10 20:11:48 -04:00
|
|
|
if (err)
|
|
|
|
|
goto error_free;
|
|
|
|
|
|
2011-09-30 14:32:31 -07:00
|
|
|
if (port_hash(&mutable->key) != port_hash(&old_mutable->key))
|
2011-09-09 19:09:47 -07:00
|
|
|
port_table_move_port(vport, mutable);
|
2011-10-17 11:32:23 -07:00
|
|
|
else
|
|
|
|
|
assign_config_rcu(vport, mutable);
|
2010-08-10 20:11:48 -04:00
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
|
|
error_free:
|
2011-10-24 12:27:36 -07:00
|
|
|
free_mutable_rtnl(mutable);
|
2010-08-10 20:11:48 -04:00
|
|
|
kfree(mutable);
|
|
|
|
|
error:
|
|
|
|
|
return err;
|
|
|
|
|
}
|
|
|
|
|
|
2011-11-21 17:15:20 -08:00
|
|
|
int ovs_tnl_get_options(const struct vport *vport, struct sk_buff *skb)
|
2011-01-26 12:28:59 -08:00
|
|
|
{
|
|
|
|
|
const struct tnl_vport *tnl_vport = tnl_vport_priv(vport);
|
|
|
|
|
const struct tnl_mutable_config *mutable = rcu_dereference_rtnl(tnl_vport->mutable);
|
|
|
|
|
|
2012-12-29 08:58:40 +02:00
|
|
|
if (mutable->dst_port && nla_put_u16(skb, OVS_TUNNEL_ATTR_DST_PORT,
|
|
|
|
|
ntohs(mutable->dst_port)))
|
2012-04-02 13:25:21 -07:00
|
|
|
goto nla_put_failure;
|
|
|
|
|
|
2012-12-29 08:58:40 +02:00
|
|
|
/* Skip the rest for null_ports */
|
|
|
|
|
if (!mutable->key.daddr)
|
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
|
|
if (nla_put_be32(skb, OVS_TUNNEL_ATTR_DST_IPV4, mutable->key.daddr))
|
|
|
|
|
goto nla_put_failure;
|
|
|
|
|
if (nla_put_u32(skb, OVS_TUNNEL_ATTR_FLAGS,
|
|
|
|
|
mutable->flags & TNL_F_PUBLIC))
|
|
|
|
|
goto nla_put_failure;
|
2012-04-02 13:25:21 -07:00
|
|
|
if (!(mutable->flags & TNL_F_IN_KEY_MATCH) &&
|
|
|
|
|
nla_put_be64(skb, OVS_TUNNEL_ATTR_IN_KEY, mutable->key.in_key))
|
|
|
|
|
goto nla_put_failure;
|
|
|
|
|
if (!(mutable->flags & TNL_F_OUT_KEY_ACTION) &&
|
|
|
|
|
nla_put_be64(skb, OVS_TUNNEL_ATTR_OUT_KEY, mutable->out_key))
|
|
|
|
|
goto nla_put_failure;
|
|
|
|
|
if (mutable->key.saddr &&
|
|
|
|
|
nla_put_be32(skb, OVS_TUNNEL_ATTR_SRC_IPV4, mutable->key.saddr))
|
|
|
|
|
goto nla_put_failure;
|
|
|
|
|
if (mutable->tos && nla_put_u8(skb, OVS_TUNNEL_ATTR_TOS, mutable->tos))
|
|
|
|
|
goto nla_put_failure;
|
|
|
|
|
if (mutable->ttl && nla_put_u8(skb, OVS_TUNNEL_ATTR_TTL, mutable->ttl))
|
|
|
|
|
goto nla_put_failure;
|
2011-01-26 12:28:59 -08:00
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
|
|
nla_put_failure:
|
|
|
|
|
return -EMSGSIZE;
|
|
|
|
|
}
|
|
|
|
|
|
2010-08-27 13:55:02 -07:00
|
|
|
static void free_port_rcu(struct rcu_head *rcu)
|
2010-08-10 20:11:48 -04:00
|
|
|
{
|
2010-12-23 16:44:22 -08:00
|
|
|
struct tnl_vport *tnl_vport = container_of(rcu,
|
|
|
|
|
struct tnl_vport, rcu);
|
2010-08-10 20:11:48 -04:00
|
|
|
|
2010-12-23 16:44:22 -08:00
|
|
|
kfree((struct tnl_mutable __force *)tnl_vport->mutable);
|
2011-11-21 17:15:20 -08:00
|
|
|
ovs_vport_free(tnl_vport_to_vport(tnl_vport));
|
2010-08-10 20:11:48 -04:00
|
|
|
}
|
|
|
|
|
|
2011-11-21 17:15:20 -08:00
|
|
|
void ovs_tnl_destroy(struct vport *vport)
|
2010-08-10 20:11:48 -04:00
|
|
|
{
|
|
|
|
|
struct tnl_vport *tnl_vport = tnl_vport_priv(vport);
|
2011-10-24 12:27:36 -07:00
|
|
|
struct tnl_mutable_config *mutable;
|
2010-12-23 16:28:23 -08:00
|
|
|
|
|
|
|
|
mutable = rtnl_dereference(tnl_vport->mutable);
|
2011-09-09 19:09:47 -07:00
|
|
|
port_table_remove_port(vport);
|
2011-10-24 12:27:36 -07:00
|
|
|
free_mutable_rtnl(mutable);
|
2010-08-27 13:55:02 -07:00
|
|
|
call_rcu(&tnl_vport->rcu, free_port_rcu);
|
2010-08-10 20:11:48 -04:00
|
|
|
}
|
|
|
|
|
|
2011-11-21 17:15:20 -08:00
|
|
|
const char *ovs_tnl_get_name(const struct vport *vport)
|
2010-08-10 20:11:48 -04:00
|
|
|
{
|
|
|
|
|
const struct tnl_vport *tnl_vport = tnl_vport_priv(vport);
|
|
|
|
|
return tnl_vport->name;
|
|
|
|
|
}
|
|
|
|
|
|
2011-11-21 17:15:20 -08:00
|
|
|
void ovs_tnl_free_linked_skbs(struct sk_buff *skb)
|
2010-08-27 13:55:02 -07:00
|
|
|
{
|
|
|
|
|
while (skb) {
|
|
|
|
|
struct sk_buff *next = skb->next;
|
|
|
|
|
kfree_skb(skb);
|
|
|
|
|
skb = next;
|
|
|
|
|
}
|
|
|
|
|
}
|
2011-09-09 19:09:47 -07:00
|
|
|
|
2011-11-21 17:15:20 -08:00
|
|
|
int ovs_tnl_init(void)
|
2011-09-09 19:09:47 -07:00
|
|
|
{
|
|
|
|
|
int i;
|
|
|
|
|
|
|
|
|
|
port_table = kmalloc(PORT_TABLE_SIZE * sizeof(struct hlist_head *),
|
2012-01-30 06:56:54 -08:00
|
|
|
GFP_KERNEL);
|
2011-09-09 19:09:47 -07:00
|
|
|
if (!port_table)
|
|
|
|
|
return -ENOMEM;
|
|
|
|
|
|
|
|
|
|
for (i = 0; i < PORT_TABLE_SIZE; i++)
|
|
|
|
|
INIT_HLIST_HEAD(&port_table[i]);
|
|
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
2011-11-21 17:15:20 -08:00
|
|
|
void ovs_tnl_exit(void)
|
2011-09-09 19:09:47 -07:00
|
|
|
{
|
|
|
|
|
kfree(port_table);
|
|
|
|
|
}
|