gre: Restructure tunneling.
[sliver-openvswitch.git] / datapath / vport-vxlan.c
1 /*
2  * Copyright (c) 2011 Nicira, Inc.
3  * Copyright (c) 2012 Cisco Systems, Inc.
4  *
5  * This program is free software; you can redistribute it and/or
6  * modify it under the terms of version 2 of the GNU General Public
7  * License as published by the Free Software Foundation.
8  *
9  * This program is distributed in the hope that it will be useful, but
10  * WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12  * General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License
15  * along with this program; if not, write to the Free Software
16  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
17  * 02110-1301, USA
18  */
19
20 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
21
22 #include <linux/version.h>
23 #if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,26)
24
25 #include <linux/in.h>
26 #include <linux/ip.h>
27 #include <linux/net.h>
28 #include <linux/rculist.h>
29 #include <linux/udp.h>
30
31 #include <net/icmp.h>
32 #include <net/ip.h>
33 #include <net/udp.h>
34
35 #include "datapath.h"
36 #include "tunnel.h"
37 #include "vport.h"
38
39 #define VXLAN_FLAGS 0x08000000  /* struct vxlanhdr.vx_flags required value. */
40
41 /**
42  * struct vxlanhdr - VXLAN header
43  * @vx_flags: Must have the exact value %VXLAN_FLAGS.
44  * @vx_vni: VXLAN Network Identifier (VNI) in top 24 bits, low 8 bits zeroed.
45  */
46 struct vxlanhdr {
47         __be32 vx_flags;
48         __be32 vx_vni;
49 };
50
51 #define VXLAN_HLEN (sizeof(struct udphdr) + sizeof(struct vxlanhdr))
52
53 /**
54  * struct vxlan_port - Keeps track of open UDP ports
55  * @dst_port: vxlan UDP port no.
56  * @list: list element in @vxlan_ports.
57  * @vxlan_rcv_socket: The socket created for this port number.
58  * @name: vport name.
59  */
60 struct vxlan_port {
61         __be16 dst_port;
62         struct list_head list;
63         struct socket *vxlan_rcv_socket;
64         char name[IFNAMSIZ];
65 };
66
67 static LIST_HEAD(vxlan_ports);
68
69 static inline struct vxlan_port *vxlan_vport(const struct vport *vport)
70 {
71         return vport_priv(vport);
72 }
73
74 static struct vxlan_port *vxlan_find_port(struct net *net, __be16 port)
75 {
76         struct vxlan_port *vxlan_port;
77
78         list_for_each_entry_rcu(vxlan_port, &vxlan_ports, list) {
79
80                 if (vxlan_port->dst_port == port &&
81                         net_eq(sock_net(vxlan_port->vxlan_rcv_socket->sk), net))
82                         return vxlan_port;
83         }
84
85         return NULL;
86 }
87
88 static inline struct vxlanhdr *vxlan_hdr(const struct sk_buff *skb)
89 {
90         return (struct vxlanhdr *)(udp_hdr(skb) + 1);
91 }
92
93 static void vxlan_build_header(const struct vport *vport,
94                                struct sk_buff *skb,
95                                int tunnel_hlen)
96 {
97         struct vxlan_port *vxlan_port = vxlan_vport(vport);
98         struct udphdr *udph = udp_hdr(skb);
99         struct vxlanhdr *vxh = (struct vxlanhdr *)(udph + 1);
100         const struct ovs_key_ipv4_tunnel *tun_key = OVS_CB(skb)->tun_key;
101
102         udph->dest = vxlan_port->dst_port;
103         udph->source = htons(ovs_tnl_get_src_port(skb));
104         udph->check = 0;
105         udph->len = htons(skb->len - skb_transport_offset(skb));
106
107         vxh->vx_flags = htonl(VXLAN_FLAGS);
108         vxh->vx_vni = htonl(be64_to_cpu(tun_key->tun_id) << 8);
109 }
110
111 /* Called with rcu_read_lock and BH disabled. */
112 static int vxlan_rcv(struct sock *sk, struct sk_buff *skb)
113 {
114         struct vxlan_port *vxlan_vport;
115         struct vxlanhdr *vxh;
116         struct iphdr *iph;
117         struct ovs_key_ipv4_tunnel tun_key;
118         __be64 key;
119
120         vxlan_vport = vxlan_find_port(dev_net(skb->dev), udp_hdr(skb)->dest);
121         if (unlikely(!vxlan_vport))
122                 goto error;
123
124         if (unlikely(!pskb_may_pull(skb, VXLAN_HLEN + ETH_HLEN)))
125                 goto error;
126
127         vxh = vxlan_hdr(skb);
128         if (unlikely(vxh->vx_flags != htonl(VXLAN_FLAGS) ||
129                      vxh->vx_vni & htonl(0xff)))
130                 goto error;
131
132         skb_pull_rcsum(skb, VXLAN_HLEN);
133
134         key = cpu_to_be64(ntohl(vxh->vx_vni) >> 8);
135
136         /* Save outer tunnel values */
137         iph = ip_hdr(skb);
138         tnl_tun_key_init(&tun_key, iph, key, TUNNEL_KEY);
139
140         ovs_tnl_rcv(vport_from_priv(vxlan_vport), skb, &tun_key);
141         goto out;
142
143 error:
144         kfree_skb(skb);
145 out:
146         return 0;
147 }
148
149 /* Random value.  Irrelevant as long as it's not 0 since we set the handler. */
150 #define UDP_ENCAP_VXLAN 1
151 static int vxlan_socket_init(struct vxlan_port *vxlan_port, struct net *net)
152 {
153         struct sockaddr_in sin;
154         int err;
155
156         err = sock_create_kern(AF_INET, SOCK_DGRAM, 0,
157                                &vxlan_port->vxlan_rcv_socket);
158         if (err)
159                 goto error;
160
161         /* release net ref. */
162         sk_change_net(vxlan_port->vxlan_rcv_socket->sk, net);
163
164         sin.sin_family = AF_INET;
165         sin.sin_addr.s_addr = htonl(INADDR_ANY);
166         sin.sin_port = vxlan_port->dst_port;
167
168         err = kernel_bind(vxlan_port->vxlan_rcv_socket, (struct sockaddr *)&sin,
169                           sizeof(struct sockaddr_in));
170         if (err)
171                 goto error_sock;
172
173         udp_sk(vxlan_port->vxlan_rcv_socket->sk)->encap_type = UDP_ENCAP_VXLAN;
174         udp_sk(vxlan_port->vxlan_rcv_socket->sk)->encap_rcv = vxlan_rcv;
175
176         udp_encap_enable();
177
178         return 0;
179
180 error_sock:
181         sk_release_kernel(vxlan_port->vxlan_rcv_socket->sk);
182 error:
183         pr_warn("cannot register vxlan protocol handler\n");
184         return err;
185 }
186
187 static int vxlan_get_options(const struct vport *vport, struct sk_buff *skb)
188 {
189         struct vxlan_port *vxlan_port = vxlan_vport(vport);
190
191         if (nla_put_u16(skb, OVS_TUNNEL_ATTR_DST_PORT, ntohs(vxlan_port->dst_port)))
192                 return -EMSGSIZE;
193         return 0;
194 }
195
196 static void vxlan_tnl_destroy(struct vport *vport)
197 {
198         struct vxlan_port *vxlan_port = vxlan_vport(vport);
199
200         list_del_rcu(&vxlan_port->list);
201         /* Release socket */
202         sk_release_kernel(vxlan_port->vxlan_rcv_socket->sk);
203
204         ovs_vport_deferred_free(vport);
205 }
206
207 static struct vport *vxlan_tnl_create(const struct vport_parms *parms)
208 {
209         struct net *net = ovs_dp_get_net(parms->dp);
210         struct nlattr *options = parms->options;
211         struct vxlan_port *vxlan_port;
212         struct vport *vport;
213         struct nlattr *a;
214         int err;
215         u16 dst_port;
216
217         if (!options) {
218                 err = -EINVAL;
219                 goto error;
220         }
221         a = nla_find_nested(options, OVS_TUNNEL_ATTR_DST_PORT);
222         if (a && nla_len(a) == sizeof(u16)) {
223                 dst_port = nla_get_u16(a);
224         } else {
225                 /* Require destination port from userspace. */
226                 err = -EINVAL;
227                 goto error;
228         }
229
230         /* Verify if we already have a socket created for this port */
231         if (vxlan_find_port(net, htons(dst_port))) {
232                 err = -EEXIST;
233                 goto error;
234         }
235
236         vport = ovs_vport_alloc(sizeof(struct vxlan_port),
237                                 &ovs_vxlan_vport_ops, parms);
238         if (IS_ERR(vport))
239                 return vport;
240
241         vxlan_port = vxlan_vport(vport);
242         vxlan_port->dst_port = htons(dst_port);
243         strncpy(vxlan_port->name, parms->name, IFNAMSIZ);
244
245         err = vxlan_socket_init(vxlan_port, net);
246         if (err)
247                 goto error_free;
248
249         list_add_tail_rcu(&vxlan_port->list, &vxlan_ports);
250         return vport;
251
252 error_free:
253         ovs_vport_free(vport);
254 error:
255         return ERR_PTR(err);
256 }
257
258 static int vxlan_tnl_send(struct vport *vport, struct sk_buff *skb)
259 {
260         if (unlikely(!OVS_CB(skb)->tun_key))
261                 return -EINVAL;
262
263         return ovs_tnl_send(vport, skb, IPPROTO_UDP,
264                         VXLAN_HLEN, vxlan_build_header);
265 }
266
267 static const char *vxlan_get_name(const struct vport *vport)
268 {
269         struct vxlan_port *vxlan_port = vxlan_vport(vport);
270         return vxlan_port->name;
271 }
272
273 const struct vport_ops ovs_vxlan_vport_ops = {
274         .type           = OVS_VPORT_TYPE_VXLAN,
275         .create         = vxlan_tnl_create,
276         .destroy        = vxlan_tnl_destroy,
277         .get_name       = vxlan_get_name,
278         .get_options    = vxlan_get_options,
279         .send           = vxlan_tnl_send,
280 };
281 #else
282 #warning VXLAN tunneling will not be available on kernels before 2.6.26
283 #endif /* Linux kernel < 2.6.26 */