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-02-07 10:46:53 -08:00
|
|
|
#include <linux/version.h>
|
|
|
|
|
#if LINUX_VERSION_CODE >= KERNEL_VERSION(3,12,0)
|
|
|
|
|
#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)
|
|
|
|
|
{
|
|
|
|
|
if (skb->encapsulation && skb_is_gso(skb)) {
|
|
|
|
|
kfree_skb(skb);
|
|
|
|
|
return -ENOSYS;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return vxlan_xmit_skb(vs, rt, skb, src, dst, tos, ttl, df,
|
|
|
|
|
src_port, dst_port, vni);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#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
|