datapath: vxlan: remove net arg from vxlan[6]_xmit_skb()
[sliver-openvswitch.git] / datapath / linux / compat / vxlan.c
1 /*
2  * Copyright (c) 2007-2013 Nicira, Inc.
3  *
4  * This program is free software; you can redistribute it and/or
5  * modify it under the terms of version 2 of the GNU General Public
6  * License as published by the Free Software Foundation.
7  *
8  * This program is distributed in the hope that it will be useful, but
9  * WITHOUT ANY WARRANTY; without even the implied warranty of
10  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11  * General Public License for more details.
12  *
13  * You should have received a copy of the GNU General Public License
14  * along with this program; if not, write to the Free Software
15  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
16  * 02110-1301, USA
17  *
18  * This code is derived from kernel vxlan module.
19  */
20
21 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
22
23 #include <linux/kernel.h>
24 #include <linux/types.h>
25 #include <linux/module.h>
26 #include <linux/errno.h>
27 #include <linux/slab.h>
28 #include <linux/skbuff.h>
29 #include <linux/rculist.h>
30 #include <linux/netdevice.h>
31 #include <linux/in.h>
32 #include <linux/ip.h>
33 #include <linux/udp.h>
34 #include <linux/igmp.h>
35 #include <linux/etherdevice.h>
36 #include <linux/if_ether.h>
37 #include <linux/if_vlan.h>
38 #include <linux/hash.h>
39 #include <linux/ethtool.h>
40 #include <net/arp.h>
41 #include <net/ndisc.h>
42 #include <net/ip.h>
43 #include <net/ip_tunnels.h>
44 #include <net/icmp.h>
45 #include <net/udp.h>
46 #include <net/rtnetlink.h>
47 #include <net/route.h>
48 #include <net/dsfield.h>
49 #include <net/inet_ecn.h>
50 #include <net/net_namespace.h>
51 #include <net/netns/generic.h>
52 #include <net/vxlan.h>
53
54 #include "compat.h"
55 #include "gso.h"
56 #include "vlan.h"
57
58 #define PORT_HASH_BITS  8
59 #define PORT_HASH_SIZE  (1<<PORT_HASH_BITS)
60
61 /* IP header + UDP + VXLAN + Ethernet header */
62 #define VXLAN_HEADROOM (20 + 8 + 8 + 14)
63 #define VXLAN_HLEN (sizeof(struct udphdr) + sizeof(struct vxlanhdr))
64
65 #define VXLAN_FLAGS 0x08000000  /* struct vxlanhdr.vx_flags required value. */
66
67 /* VXLAN protocol header */
68 struct vxlanhdr {
69         __be32 vx_flags;
70         __be32 vx_vni;
71 };
72
73 static int vxlan_net_id;
74
75 static int vxlan_init_module(void);
76 static void vxlan_cleanup_module(void);
77
78 /* per-network namespace private data for this module */
79 struct vxlan_net {
80         struct hlist_head sock_list[PORT_HASH_SIZE];
81         spinlock_t  sock_lock;
82 };
83
84 /* Socket hash table head */
85 static inline struct hlist_head *vs_head(struct net *net, __be16 port)
86 {
87         struct vxlan_net *vn = net_generic(net, vxlan_net_id);
88
89         return &vn->sock_list[hash_32(ntohs(port), PORT_HASH_BITS)];
90 }
91
92 /* Find VXLAN socket based on network namespace and UDP port */
93
94 static struct vxlan_sock *vxlan_find_sock(struct net *net, __be16 port)
95 {
96         struct vxlan_sock *vs;
97
98         hlist_for_each_entry_rcu(vs, vs_head(net, port), hlist) {
99                 if (inet_sport(vs->sock->sk) == port)
100                         return vs;
101         }
102         return NULL;
103 }
104
105 /* Callback from net/ipv4/udp.c to receive packets */
106 static int vxlan_udp_encap_recv(struct sock *sk, struct sk_buff *skb)
107 {
108         struct vxlan_sock *vs;
109         struct vxlanhdr *vxh;
110
111         /* Need Vxlan and inner Ethernet header to be present */
112         if (!pskb_may_pull(skb, VXLAN_HLEN))
113                 goto error;
114
115         /* Return packets with reserved bits set */
116         vxh = (struct vxlanhdr *)(udp_hdr(skb) + 1);
117         if (vxh->vx_flags != htonl(VXLAN_FLAGS) ||
118             (vxh->vx_vni & htonl(0xff))) {
119                 pr_warn("invalid vxlan flags=%#x vni=%#x\n",
120                         ntohl(vxh->vx_flags), ntohl(vxh->vx_vni));
121                 goto error;
122         }
123
124         if (iptunnel_pull_header(skb, VXLAN_HLEN, htons(ETH_P_TEB)))
125                 goto drop;
126
127         vs = vxlan_find_sock(sock_net(sk), inet_sport(sk));
128         if (!vs)
129                 goto drop;
130
131         vs->rcv(vs, skb, vxh->vx_vni);
132         return 0;
133
134 drop:
135         /* Consume bad packet */
136         kfree_skb(skb);
137         return 0;
138
139 error:
140         /* Return non vxlan pkt */
141         return 1;
142 }
143
144 static void vxlan_sock_put(struct sk_buff *skb)
145 {
146         sock_put(skb->sk);
147 }
148
149 /* On transmit, associate with the tunnel socket */
150 static void vxlan_set_owner(struct sock *sk, struct sk_buff *skb)
151 {
152         skb_orphan(skb);
153         sock_hold(sk);
154         skb->sk = sk;
155         skb->destructor = vxlan_sock_put;
156 }
157
158 /* Compute source port for outgoing packet
159  *   first choice to use L4 flow hash since it will spread
160  *     better and maybe available from hardware
161  *   secondary choice is to use jhash on the Ethernet header
162  */
163 __be16 vxlan_src_port(__u16 port_min, __u16 port_max, struct sk_buff *skb)
164 {
165         unsigned int range = (port_max - port_min) + 1;
166         u32 hash;
167
168         hash = skb_get_rxhash(skb);
169         if (!hash)
170                 hash = jhash(skb->data, 2 * ETH_ALEN,
171                              (__force u32) skb->protocol);
172
173         return htons((((u64) hash * range) >> 32) + port_min);
174 }
175
176 static void vxlan_gso(struct sk_buff *skb)
177 {
178         int udp_offset = skb_transport_offset(skb);
179         struct udphdr *uh;
180
181         uh = udp_hdr(skb);
182         uh->len = htons(skb->len - udp_offset);
183
184         /* csum segment if tunnel sets skb with csum. */
185         if (unlikely(uh->check)) {
186                 struct iphdr *iph = ip_hdr(skb);
187
188                 uh->check = ~csum_tcpudp_magic(iph->saddr, iph->daddr,
189                                                skb->len - udp_offset,
190                                                IPPROTO_UDP, 0);
191                 uh->check = csum_fold(skb_checksum(skb, udp_offset,
192                                       skb->len - udp_offset, 0));
193
194                 if (uh->check == 0)
195                         uh->check = CSUM_MANGLED_0;
196
197         }
198         skb->ip_summed = CHECKSUM_NONE;
199 }
200
201 static int handle_offloads(struct sk_buff *skb)
202 {
203         if (skb_is_gso(skb)) {
204                 OVS_GSO_CB(skb)->fix_segment = vxlan_gso;
205         } else {
206                 if (skb->ip_summed != CHECKSUM_PARTIAL)
207                         skb->ip_summed = CHECKSUM_NONE;
208         }
209         return 0;
210 }
211
212 int vxlan_xmit_skb(struct vxlan_sock *vs,
213                    struct rtable *rt, struct sk_buff *skb,
214                    __be32 src, __be32 dst, __u8 tos, __u8 ttl, __be16 df,
215                    __be16 src_port, __be16 dst_port, __be32 vni)
216 {
217         struct vxlanhdr *vxh;
218         struct udphdr *uh;
219         int min_headroom;
220         int err;
221
222         skb_reset_inner_headers(skb);
223
224         min_headroom = LL_RESERVED_SPACE(rt_dst(rt).dev) + rt_dst(rt).header_len
225                         + VXLAN_HLEN + sizeof(struct iphdr)
226                         + (vlan_tx_tag_present(skb) ? VLAN_HLEN : 0);
227
228         /* Need space for new headers (invalidates iph ptr) */
229         err = skb_cow_head(skb, min_headroom);
230         if (unlikely(err))
231                 return err;
232
233         if (vlan_tx_tag_present(skb)) {
234                 if (unlikely(!__vlan_put_tag(skb,
235                                                 skb->vlan_proto,
236                                                 vlan_tx_tag_get(skb))))
237                         return -ENOMEM;
238
239                 vlan_set_tci(skb, 0);
240         }
241
242         vxh = (struct vxlanhdr *) __skb_push(skb, sizeof(*vxh));
243         vxh->vx_flags = htonl(VXLAN_FLAGS);
244         vxh->vx_vni = vni;
245
246         __skb_push(skb, sizeof(*uh));
247         skb_reset_transport_header(skb);
248         uh = udp_hdr(skb);
249
250         uh->dest = dst_port;
251         uh->source = src_port;
252
253         uh->len = htons(skb->len);
254         uh->check = 0;
255
256         vxlan_set_owner(vs->sock->sk, skb);
257
258         err = handle_offloads(skb);
259         if (err)
260                 return err;
261
262         return iptunnel_xmit(rt, skb, src, dst, IPPROTO_UDP, tos, ttl, df);
263 }
264
265 static void rcu_free_vs(struct rcu_head *rcu)
266 {
267         struct vxlan_sock *vs = container_of(rcu, struct vxlan_sock, rcu);
268
269         kfree(vs);
270 }
271
272 static void vxlan_del_work(struct work_struct *work)
273 {
274         struct vxlan_sock *vs = container_of(work, struct vxlan_sock, del_work);
275
276         sk_release_kernel(vs->sock->sk);
277         call_rcu(&vs->rcu, rcu_free_vs);
278         vxlan_cleanup_module();
279 }
280
281 static struct vxlan_sock *vxlan_socket_create(struct net *net, __be16 port,
282                                               vxlan_rcv_t *rcv, void *data)
283 {
284         struct vxlan_net *vn = net_generic(net, vxlan_net_id);
285         struct vxlan_sock *vs;
286         struct sock *sk;
287         struct sockaddr_in vxlan_addr = {
288                 .sin_family = AF_INET,
289                 .sin_addr.s_addr = htonl(INADDR_ANY),
290                 .sin_port = port,
291         };
292         int rc;
293
294         vs = kmalloc(sizeof(*vs), GFP_KERNEL);
295         if (!vs) {
296                 pr_debug("memory alocation failure\n");
297                 return ERR_PTR(-ENOMEM);
298         }
299
300         INIT_WORK(&vs->del_work, vxlan_del_work);
301
302         /* Create UDP socket for encapsulation receive. */
303         rc = sock_create_kern(AF_INET, SOCK_DGRAM, IPPROTO_UDP, &vs->sock);
304         if (rc < 0) {
305                 pr_debug("UDP socket create failed\n");
306                 kfree(vs);
307                 return ERR_PTR(rc);
308         }
309
310         /* Put in proper namespace */
311         sk = vs->sock->sk;
312         sk_change_net(sk, net);
313
314         rc = kernel_bind(vs->sock, (struct sockaddr *) &vxlan_addr,
315                         sizeof(vxlan_addr));
316         if (rc < 0) {
317                 pr_debug("bind for UDP socket %pI4:%u (%d)\n",
318                                 &vxlan_addr.sin_addr, ntohs(vxlan_addr.sin_port), rc);
319                 sk_release_kernel(sk);
320                 kfree(vs);
321                 return ERR_PTR(rc);
322         }
323         vs->rcv = rcv;
324         vs->data = data;
325
326         /* Disable multicast loopback */
327         inet_sk(sk)->mc_loop = 0;
328         spin_lock(&vn->sock_lock);
329         hlist_add_head_rcu(&vs->hlist, vs_head(net, port));
330         spin_unlock(&vn->sock_lock);
331
332         /* Mark socket as an encapsulation socket. */
333         udp_sk(sk)->encap_type = 1;
334         udp_sk(sk)->encap_rcv = vxlan_udp_encap_recv;
335         udp_encap_enable();
336         return vs;
337 }
338
339 struct vxlan_sock *vxlan_sock_add(struct net *net, __be16 port,
340                                   vxlan_rcv_t *rcv, void *data,
341                                   bool no_share)
342 {
343         struct vxlan_net *vn;
344         struct vxlan_sock *vs;
345         int err;
346
347         err = vxlan_init_module();
348         if (err)
349                 return ERR_PTR(err);
350
351         vn = net_generic(net, vxlan_net_id);
352         vs = vxlan_socket_create(net, port, rcv, data);
353         return vs;
354 }
355
356 void vxlan_sock_release(struct vxlan_sock *vs)
357 {
358         struct vxlan_net *vn = net_generic(sock_net(vs->sock->sk), vxlan_net_id);
359
360         spin_lock(&vn->sock_lock);
361         hlist_del_rcu(&vs->hlist);
362         spin_unlock(&vn->sock_lock);
363
364         queue_work(&vs->del_work);
365 }
366
367 static int vxlan_init_net(struct net *net)
368 {
369         struct vxlan_net *vn = net_generic(net, vxlan_net_id);
370         unsigned int h;
371
372         spin_lock_init(&vn->sock_lock);
373
374         for (h = 0; h < PORT_HASH_SIZE; ++h)
375                 INIT_HLIST_HEAD(&vn->sock_list[h]);
376
377         return 0;
378 }
379
380 static struct pernet_operations vxlan_net_ops = {
381         .init = vxlan_init_net,
382         .id   = &vxlan_net_id,
383         .size = sizeof(struct vxlan_net),
384 };
385
386 static int refcnt;
387 static DEFINE_MUTEX(init_lock);
388 DEFINE_COMPAT_PNET_REG_FUNC(device);
389
390 static int vxlan_init_module(void)
391 {
392         int err = 0;
393
394         mutex_lock(&init_lock);
395         if (refcnt)
396                 goto out;
397         err = register_pernet_device(&vxlan_net_ops);
398 out:
399         if (!err)
400                 refcnt++;
401         mutex_unlock(&init_lock);
402         return err;
403 }
404
405 static void vxlan_cleanup_module(void)
406 {
407         mutex_lock(&init_lock);
408         refcnt--;
409         if (refcnt)
410                 goto out;
411         unregister_pernet_device(&vxlan_net_ops);
412 out:
413         mutex_unlock(&init_lock);
414 }