0f0ff16c543cc7b78718ddac2b2fdb5c1e92f4cf
[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 #ifndef HAVE_IPTUNNEL_XMIT_NET
23         return vxlan_xmit_skb(vs, rt, skb, src, dst, tos, ttl, df,
24                               src_port, dst_port, vni);
25 #else
26         return vxlan_xmit_skb(NULL, vs, rt, skb, src, dst, tos, ttl, df,
27                               src_port, dst_port, vni);
28 #endif
29 }
30 #define vxlan_xmit_skb rpl_vxlan_xmit_skb
31 #else
32
33 struct vxlan_sock;
34 typedef void (vxlan_rcv_t)(struct vxlan_sock *vs, struct sk_buff *skb, __be32 key);
35
36 /* per UDP socket information */
37 struct vxlan_sock {
38         struct hlist_node hlist;
39         vxlan_rcv_t      *rcv;
40         void             *data;
41         struct work_struct del_work;
42         struct socket    *sock;
43         struct rcu_head   rcu;
44 };
45
46 struct vxlan_sock *vxlan_sock_add(struct net *net, __be16 port,
47                                   vxlan_rcv_t *rcv, void *data,
48                                   bool no_share, bool ipv6);
49
50 void vxlan_sock_release(struct vxlan_sock *vs);
51
52 int vxlan_xmit_skb(struct vxlan_sock *vs,
53                    struct rtable *rt, struct sk_buff *skb,
54                    __be32 src, __be32 dst, __u8 tos, __u8 ttl, __be16 df,
55                    __be16 src_port, __be16 dst_port, __be32 vni);
56
57 __be16 vxlan_src_port(__u16 port_min, __u16 port_max, struct sk_buff *skb);
58
59 #endif /* 3.12 */
60 #endif