2013-07-01 14:38:33 -07:00
|
|
|
#ifndef __NET_VXLAN_WRAPPER_H
|
|
|
|
|
#define __NET_VXLAN_WRAPPER_H 1
|
|
|
|
|
|
|
|
|
|
#include <linux/skbuff.h>
|
|
|
|
|
#include <linux/netdevice.h>
|
|
|
|
|
#include <linux/udp.h>
|
2014-09-29 21:39:56 -07:00
|
|
|
#include <net/gre.h>
|
2013-07-01 14:38:33 -07:00
|
|
|
|
2014-02-07 10:46:53 -08:00
|
|
|
#include <linux/version.h>
|
2014-10-10 08:21:18 -07:00
|
|
|
#ifdef USE_KERNEL_TUNNEL_API
|
2014-02-07 10:46:53 -08:00
|
|
|
#include_next <net/vxlan.h>
|
2014-07-03 11:38:29 -07:00
|
|
|
|
|
|
|
|
static inline int rpl_vxlan_xmit_skb(struct vxlan_sock *vs,
|
|
|
|
|
struct rtable *rt, struct sk_buff *skb,
|
|
|
|
|
__be32 src, __be32 dst, __u8 tos, __u8 ttl, __be16 df,
|
|
|
|
|
__be16 src_port, __be16 dst_port, __be32 vni)
|
|
|
|
|
{
|
2014-12-19 01:55:45 -08:00
|
|
|
if ((ovs_skb_get_inner_protocol(skb) || skb->encapsulation) &&
|
|
|
|
|
skb_is_gso(skb)) {
|
2014-07-03 11:38:29 -07:00
|
|
|
kfree_skb(skb);
|
|
|
|
|
return -ENOSYS;
|
|
|
|
|
}
|
|
|
|
|
|
2014-09-18 14:48:56 +02:00
|
|
|
#ifdef HAVE_VXLAN_XMIT_SKB_XNET_ARG
|
|
|
|
|
return vxlan_xmit_skb(vs, rt, skb, src, dst, tos, ttl, df,
|
|
|
|
|
src_port, dst_port, vni, false);
|
|
|
|
|
#else
|
2014-09-29 21:39:56 -07:00
|
|
|
#ifndef HAVE_IPTUNNEL_XMIT_NET
|
2014-07-03 11:38:29 -07:00
|
|
|
return vxlan_xmit_skb(vs, rt, skb, src, dst, tos, ttl, df,
|
|
|
|
|
src_port, dst_port, vni);
|
2014-09-29 21:39:56 -07:00
|
|
|
#else
|
|
|
|
|
return vxlan_xmit_skb(NULL, vs, rt, skb, src, dst, tos, ttl, df,
|
|
|
|
|
src_port, dst_port, vni);
|
|
|
|
|
#endif
|
|
|
|
|
|
2014-09-18 14:48:56 +02:00
|
|
|
#endif
|
2014-07-03 11:38:29 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#define vxlan_xmit_skb rpl_vxlan_xmit_skb
|
2014-02-07 10:46:53 -08:00
|
|
|
#else
|
|
|
|
|
|
2013-08-26 11:05:35 -07:00
|
|
|
struct vxlan_sock;
|
|
|
|
|
typedef void (vxlan_rcv_t)(struct vxlan_sock *vs, struct sk_buff *skb, __be32 key);
|
|
|
|
|
|
2013-07-01 14:38:33 -07:00
|
|
|
/* per UDP socket information */
|
|
|
|
|
struct vxlan_sock {
|
|
|
|
|
struct hlist_node hlist;
|
2013-08-26 11:05:35 -07:00
|
|
|
vxlan_rcv_t *rcv;
|
|
|
|
|
void *data;
|
2013-07-01 14:38:33 -07:00
|
|
|
struct work_struct del_work;
|
2013-08-26 11:05:35 -07:00
|
|
|
struct socket *sock;
|
|
|
|
|
struct rcu_head rcu;
|
2013-07-01 14:38:33 -07:00
|
|
|
};
|
|
|
|
|
|
2013-08-26 11:05:35 -07:00
|
|
|
struct vxlan_sock *vxlan_sock_add(struct net *net, __be16 port,
|
|
|
|
|
vxlan_rcv_t *rcv, void *data,
|
2014-02-07 10:46:53 -08:00
|
|
|
bool no_share, bool ipv6);
|
2013-07-01 14:38:33 -07:00
|
|
|
|
2013-08-26 11:05:35 -07:00
|
|
|
void vxlan_sock_release(struct vxlan_sock *vs);
|
2013-07-01 14:38:33 -07:00
|
|
|
|
2013-09-06 11:39:15 -07:00
|
|
|
int vxlan_xmit_skb(struct vxlan_sock *vs,
|
2013-07-01 14:38:33 -07:00
|
|
|
struct rtable *rt, struct sk_buff *skb,
|
|
|
|
|
__be32 src, __be32 dst, __u8 tos, __u8 ttl, __be16 df,
|
|
|
|
|
__be16 src_port, __be16 dst_port, __be32 vni);
|
|
|
|
|
|
|
|
|
|
__be16 vxlan_src_port(__u16 port_min, __u16 port_max, struct sk_buff *skb);
|
|
|
|
|
|
2014-02-07 10:46:53 -08:00
|
|
|
#endif /* 3.12 */
|
2013-07-01 14:38:33 -07:00
|
|
|
#endif
|