1b801dda8d2a075baa882f3e4ce6f8cb7380d4b7
[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 #include <net/gre.h>
8
9 #include <linux/version.h>
10 #ifdef GRE_USE_KERNEL_GRE_HANDLE_OFFLOADS
11 #include_next <net/vxlan.h>
12
13 static inline int rpl_vxlan_xmit_skb(struct vxlan_sock *vs,
14                    struct rtable *rt, struct sk_buff *skb,
15                    __be32 src, __be32 dst, __u8 tos, __u8 ttl, __be16 df,
16                    __be16 src_port, __be16 dst_port, __be32 vni)
17 {
18         if (skb->encapsulation && skb_is_gso(skb)) {
19                 kfree_skb(skb);
20                 return -ENOSYS;
21         }
22
23 #ifdef HAVE_VXLAN_XMIT_SKB_XNET_ARG
24         return vxlan_xmit_skb(vs, rt, skb, src, dst, tos, ttl, df,
25                               src_port, dst_port, vni, false);
26 #else
27 #ifndef HAVE_IPTUNNEL_XMIT_NET
28         return vxlan_xmit_skb(vs, rt, skb, src, dst, tos, ttl, df,
29                               src_port, dst_port, vni);
30 #else
31         return vxlan_xmit_skb(NULL, vs, rt, skb, src, dst, tos, ttl, df,
32                               src_port, dst_port, vni);
33 #endif
34
35 #endif
36 }
37
38 #define vxlan_xmit_skb rpl_vxlan_xmit_skb
39 #else
40
41 struct vxlan_sock;
42 typedef void (vxlan_rcv_t)(struct vxlan_sock *vs, struct sk_buff *skb, __be32 key);
43
44 /* per UDP socket information */
45 struct vxlan_sock {
46         struct hlist_node hlist;
47         vxlan_rcv_t      *rcv;
48         void             *data;
49         struct work_struct del_work;
50         struct socket    *sock;
51         struct rcu_head   rcu;
52 };
53
54 struct vxlan_sock *vxlan_sock_add(struct net *net, __be16 port,
55                                   vxlan_rcv_t *rcv, void *data,
56                                   bool no_share, bool ipv6);
57
58 void vxlan_sock_release(struct vxlan_sock *vs);
59
60 int vxlan_xmit_skb(struct vxlan_sock *vs,
61                    struct rtable *rt, struct sk_buff *skb,
62                    __be32 src, __be32 dst, __u8 tos, __u8 ttl, __be16 df,
63                    __be16 src_port, __be16 dst_port, __be32 vni);
64
65 __be16 vxlan_src_port(__u16 port_min, __u16 port_max, struct sk_buff *skb);
66
67 #endif /* 3.12 */
68 #endif