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