2e56a9bda1482d407553a5cd427a5e507ef20cf6
[cascardo/ovs.git] / datapath / linux / compat / include / net / vxlan.h
1 #ifndef __NET_VXLAN_WRAPPER_H
2 #define __NET_VXLAN_WRAPPER_H  1
3
4 #include <linux/skbuff.h>
5 #include <linux/netdevice.h>
6 #include <linux/udp.h>
7
8 #include <linux/version.h>
9 #if LINUX_VERSION_CODE >= KERNEL_VERSION(3,12,0)
10 #include_next <net/vxlan.h>
11
12 static inline int rpl_vxlan_xmit_skb(struct vxlan_sock *vs,
13                    struct rtable *rt, struct sk_buff *skb,
14                    __be32 src, __be32 dst, __u8 tos, __u8 ttl, __be16 df,
15                    __be16 src_port, __be16 dst_port, __be32 vni)
16 {
17         if (skb->encapsulation && skb_is_gso(skb)) {
18                 kfree_skb(skb);
19                 return -ENOSYS;
20         }
21
22 #ifdef HAVE_VXLAN_XMIT_SKB_XNET_ARG
23         return vxlan_xmit_skb(vs, rt, skb, src, dst, tos, ttl, df,
24                               src_port, dst_port, vni, false);
25 #else
26         return vxlan_xmit_skb(vs, rt, skb, src, dst, tos, ttl, df,
27                               src_port, dst_port, vni);
28 #endif
29 }
30
31 #define vxlan_xmit_skb rpl_vxlan_xmit_skb
32 #else
33
34 struct vxlan_sock;
35 typedef void (vxlan_rcv_t)(struct vxlan_sock *vs, struct sk_buff *skb, __be32 key);
36
37 /* per UDP socket information */
38 struct vxlan_sock {
39         struct hlist_node hlist;
40         vxlan_rcv_t      *rcv;
41         void             *data;
42         struct work_struct del_work;
43         struct socket    *sock;
44         struct rcu_head   rcu;
45 };
46
47 struct vxlan_sock *vxlan_sock_add(struct net *net, __be16 port,
48                                   vxlan_rcv_t *rcv, void *data,
49                                   bool no_share, bool ipv6);
50
51 void vxlan_sock_release(struct vxlan_sock *vs);
52
53 int vxlan_xmit_skb(struct vxlan_sock *vs,
54                    struct rtable *rt, struct sk_buff *skb,
55                    __be32 src, __be32 dst, __u8 tos, __u8 ttl, __be16 df,
56                    __be16 src_port, __be16 dst_port, __be32 vni);
57
58 __be16 vxlan_src_port(__u16 port_min, __u16 port_max, struct sk_buff *skb);
59
60 #endif /* 3.12 */
61 #endif