datapath: Remove skb->mark compat code.
[sliver-openvswitch.git] / datapath / vport-vxlan.c
1 /*
2  * Copyright (c) 2013 Nicira, Inc.
3  * Copyright (c) 2013 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
24 #include <linux/in.h>
25 #include <linux/ip.h>
26 #include <linux/net.h>
27 #include <linux/rculist.h>
28 #include <linux/udp.h>
29
30 #include <net/icmp.h>
31 #include <net/ip.h>
32 #include <net/udp.h>
33 #include <net/ip_tunnels.h>
34 #include <net/udp.h>
35 #include <net/rtnetlink.h>
36 #include <net/route.h>
37 #include <net/dsfield.h>
38 #include <net/inet_ecn.h>
39 #include <net/net_namespace.h>
40 #include <net/netns/generic.h>
41 #include <net/vxlan.h>
42
43 #include "datapath.h"
44 #include "vport.h"
45
46 /**
47  * struct vxlan_port - Keeps track of open UDP ports
48  * @vs: vxlan_sock created for the port.
49  * @name: vport name.
50  */
51 struct vxlan_port {
52         struct vxlan_sock *vs;
53         char name[IFNAMSIZ];
54 };
55
56 static inline struct vxlan_port *vxlan_vport(const struct vport *vport)
57 {
58         return vport_priv(vport);
59 }
60
61 /* Called with rcu_read_lock and BH disabled. */
62 static void vxlan_rcv(struct vxlan_sock *vs, struct sk_buff *skb, __be32 vx_vni)
63 {
64         struct ovs_key_ipv4_tunnel tun_key;
65         struct vport *vport = vs->data;
66         struct iphdr *iph;
67         __be64 key;
68
69         /* Save outer tunnel values */
70         iph = ip_hdr(skb);
71         key = cpu_to_be64(ntohl(vx_vni) >> 8);
72         ovs_flow_tun_key_init(&tun_key, iph, key, TUNNEL_KEY);
73
74         ovs_vport_receive(vport, skb, &tun_key);
75 }
76
77 static int vxlan_get_options(const struct vport *vport, struct sk_buff *skb)
78 {
79         struct vxlan_port *vxlan_port = vxlan_vport(vport);
80         __be16 dst_port = inet_sport(vxlan_port->vs->sock->sk);
81
82         if (nla_put_u16(skb, OVS_TUNNEL_ATTR_DST_PORT, ntohs(dst_port)))
83                 return -EMSGSIZE;
84         return 0;
85 }
86
87 static void vxlan_tnl_destroy(struct vport *vport)
88 {
89         struct vxlan_port *vxlan_port = vxlan_vport(vport);
90
91         vxlan_sock_release(vxlan_port->vs);
92
93         ovs_vport_deferred_free(vport);
94 }
95
96 static struct vport *vxlan_tnl_create(const struct vport_parms *parms)
97 {
98         struct net *net = ovs_dp_get_net(parms->dp);
99         struct nlattr *options = parms->options;
100         struct vxlan_port *vxlan_port;
101         struct vxlan_sock *vs;
102         struct vport *vport;
103         struct nlattr *a;
104         u16 dst_port;
105         int err;
106
107         if (!options) {
108                 err = -EINVAL;
109                 goto error;
110         }
111         a = nla_find_nested(options, OVS_TUNNEL_ATTR_DST_PORT);
112         if (a && nla_len(a) == sizeof(u16)) {
113                 dst_port = nla_get_u16(a);
114         } else {
115                 /* Require destination port from userspace. */
116                 err = -EINVAL;
117                 goto error;
118         }
119
120         vport = ovs_vport_alloc(sizeof(struct vxlan_port),
121                                 &ovs_vxlan_vport_ops, parms);
122         if (IS_ERR(vport))
123                 return vport;
124
125         vxlan_port = vxlan_vport(vport);
126         strncpy(vxlan_port->name, parms->name, IFNAMSIZ);
127
128         vs = vxlan_sock_add(net, htons(dst_port), vxlan_rcv, vport, true);
129         if (IS_ERR(vs)) {
130                 ovs_vport_free(vport);
131                 return (void *)vs;
132         }
133         vxlan_port->vs = vs;
134
135         return vport;
136
137 error:
138         return ERR_PTR(err);
139 }
140
141 static int vxlan_tnl_send(struct vport *vport, struct sk_buff *skb)
142 {
143         struct vxlan_port *vxlan_port = vxlan_vport(vport);
144         __be16 dst_port = inet_sport(vxlan_port->vs->sock->sk);
145         struct net *net = ovs_dp_get_net(vport->dp);
146         struct rtable *rt;
147         __be16 src_port;
148         __be32 saddr;
149         __be16 df;
150         int port_min;
151         int port_max;
152         int err;
153
154         if (unlikely(!OVS_CB(skb)->tun_key)) {
155                 err = -EINVAL;
156                 goto error;
157         }
158
159         forward_ip_summed(skb, true);
160
161         /* Route lookup */
162         saddr = OVS_CB(skb)->tun_key->ipv4_src;
163         rt = find_route(ovs_dp_get_net(vport->dp),
164                         &saddr,
165                         OVS_CB(skb)->tun_key->ipv4_dst,
166                         IPPROTO_UDP,
167                         OVS_CB(skb)->tun_key->ipv4_tos,
168                         skb->mark);
169         if (IS_ERR(rt)) {
170                 err = PTR_ERR(rt);
171                 goto error;
172         }
173
174         df = OVS_CB(skb)->tun_key->tun_flags & TUNNEL_DONT_FRAGMENT ?
175                 htons(IP_DF) : 0;
176
177         skb->local_df = 1;
178
179         inet_get_local_port_range(&port_min, &port_max);
180         src_port = vxlan_src_port(port_min, port_max, skb);
181
182         err = vxlan_xmit_skb(net, vxlan_port->vs, rt, skb,
183                              saddr, OVS_CB(skb)->tun_key->ipv4_dst,
184                              OVS_CB(skb)->tun_key->ipv4_tos,
185                              OVS_CB(skb)->tun_key->ipv4_ttl, df,
186                              src_port, dst_port,
187                              htonl(be64_to_cpu(OVS_CB(skb)->tun_key->tun_id) << 8));
188         if (err < 0)
189                 ip_rt_put(rt);
190 error:
191         return err;
192 }
193
194 static const char *vxlan_get_name(const struct vport *vport)
195 {
196         struct vxlan_port *vxlan_port = vxlan_vport(vport);
197         return vxlan_port->name;
198 }
199
200 const struct vport_ops ovs_vxlan_vport_ops = {
201         .type           = OVS_VPORT_TYPE_VXLAN,
202         .create         = vxlan_tnl_create,
203         .destroy        = vxlan_tnl_destroy,
204         .get_name       = vxlan_get_name,
205         .get_options    = vxlan_get_options,
206         .send           = vxlan_tnl_send,
207 };