2 * Copyright (c) 2007-2012 Nicira, Inc.
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.
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.
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
19 #include <linux/kconfig.h>
20 #if IS_ENABLED(CONFIG_NET_IPGRE_DEMUX)
21 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
24 #include <linux/skbuff.h>
26 #include <linux/if_tunnel.h>
27 #include <linux/if_vlan.h>
29 #include <linux/in_route.h>
30 #include <linux/inetdevice.h>
31 #include <linux/jhash.h>
32 #include <linux/list.h>
33 #include <linux/kernel.h>
34 #include <linux/workqueue.h>
35 #include <linux/rculist.h>
36 #include <net/net_namespace.h>
37 #include <net/netns/generic.h>
38 #include <net/route.h>
43 #include <net/ip_tunnels.h>
45 #include <net/protocol.h>
50 /* Returns the least-significant 32 bits of a __be64. */
51 static __be32 be64_get_low32(__be64 x)
54 return (__force __be32)x;
56 return (__force __be32)((__force u64)x >> 32);
60 static __be16 filter_tnl_flags(__be16 flags)
62 return flags & (TUNNEL_CSUM | TUNNEL_KEY);
65 static struct sk_buff *__build_header(struct sk_buff *skb,
67 __be32 seq, __be16 gre64_flag)
69 const struct ovs_key_ipv4_tunnel *tun_key = OVS_CB(skb)->tun_key;
70 struct tnl_ptk_info tpi;
72 skb = gre_handle_offloads(skb, !!(tun_key->tun_flags & TUNNEL_CSUM));
76 tpi.flags = filter_tnl_flags(tun_key->tun_flags) | gre64_flag;
78 tpi.proto = htons(ETH_P_TEB);
79 tpi.key = be64_get_low32(tun_key->tun_id);
81 gre_build_header(skb, &tpi, tunnel_hlen);
86 static __be64 key_to_tunnel_id(__be32 key, __be32 seq)
89 return (__force __be64)((__force u64)seq << 32 | (__force u32)key);
91 return (__force __be64)((__force u64)key << 32 | (__force u32)seq);
95 /* Called with rcu_read_lock and BH disabled. */
96 static int gre_rcv(struct sk_buff *skb,
97 const struct tnl_ptk_info *tpi)
99 struct ovs_key_ipv4_tunnel tun_key;
100 struct ovs_net *ovs_net;
104 ovs_net = net_generic(dev_net(skb->dev), ovs_net_id);
105 if ((tpi->flags & TUNNEL_KEY) && (tpi->flags & TUNNEL_SEQ))
106 vport = rcu_dereference(ovs_net->vport_net.gre64_vport);
108 vport = rcu_dereference(ovs_net->vport_net.gre_vport);
109 if (unlikely(!vport))
110 return PACKET_REJECT;
112 key = key_to_tunnel_id(tpi->key, tpi->seq);
113 ovs_flow_tun_key_init(&tun_key, ip_hdr(skb), key, filter_tnl_flags(tpi->flags));
115 ovs_vport_receive(vport, skb, &tun_key);
119 static int __send(struct vport *vport, struct sk_buff *skb,
121 __be32 seq, __be16 gre64_flag)
130 saddr = OVS_CB(skb)->tun_key->ipv4_src;
131 rt = find_route(ovs_dp_get_net(vport->dp),
133 OVS_CB(skb)->tun_key->ipv4_dst,
135 OVS_CB(skb)->tun_key->ipv4_tos,
142 min_headroom = LL_RESERVED_SPACE(rt_dst(rt).dev) + rt_dst(rt).header_len
143 + tunnel_hlen + sizeof(struct iphdr)
144 + (vlan_tx_tag_present(skb) ? VLAN_HLEN : 0);
146 if (skb_headroom(skb) < min_headroom || skb_header_cloned(skb)) {
147 int head_delta = SKB_DATA_ALIGN(min_headroom -
150 err = pskb_expand_head(skb, max_t(int, head_delta, 0),
156 if (vlan_tx_tag_present(skb)) {
157 if (unlikely(!__vlan_put_tag(skb,
159 vlan_tx_tag_get(skb)))) {
163 vlan_set_tci(skb, 0);
166 /* Push Tunnel header. */
167 skb = __build_header(skb, tunnel_hlen, seq, gre64_flag);
168 if (unlikely(!skb)) {
173 df = OVS_CB(skb)->tun_key->tun_flags & TUNNEL_DONT_FRAGMENT ?
178 return iptunnel_xmit(rt, skb, saddr,
179 OVS_CB(skb)->tun_key->ipv4_dst, IPPROTO_GRE,
180 OVS_CB(skb)->tun_key->ipv4_tos,
181 OVS_CB(skb)->tun_key->ipv4_ttl, df);
188 static struct gre_cisco_protocol gre_protocol = {
193 static int gre_ports;
194 static int gre_init(void)
202 err = gre_cisco_register(&gre_protocol);
204 pr_warn("cannot register gre protocol handler\n");
209 static void gre_exit(void)
215 gre_cisco_unregister(&gre_protocol);
218 static const char *gre_get_name(const struct vport *vport)
220 return vport_priv(vport);
223 static struct vport *gre_create(const struct vport_parms *parms)
225 struct net *net = ovs_dp_get_net(parms->dp);
226 struct ovs_net *ovs_net;
234 ovs_net = net_generic(net, ovs_net_id);
235 if (ovsl_dereference(ovs_net->vport_net.gre_vport)) {
236 vport = ERR_PTR(-EEXIST);
240 vport = ovs_vport_alloc(IFNAMSIZ, &ovs_gre_vport_ops, parms);
244 strncpy(vport_priv(vport), parms->name, IFNAMSIZ);
245 rcu_assign_pointer(ovs_net->vport_net.gre_vport, vport);
253 static void gre_tnl_destroy(struct vport *vport)
255 struct net *net = ovs_dp_get_net(vport->dp);
256 struct ovs_net *ovs_net;
258 ovs_net = net_generic(net, ovs_net_id);
260 rcu_assign_pointer(ovs_net->vport_net.gre_vport, NULL);
261 ovs_vport_deferred_free(vport);
265 static int gre_send(struct vport *vport, struct sk_buff *skb)
269 if (unlikely(!OVS_CB(skb)->tun_key))
272 hlen = ip_gre_calc_hlen(OVS_CB(skb)->tun_key->tun_flags);
274 return __send(vport, skb, hlen, 0, 0);
277 const struct vport_ops ovs_gre_vport_ops = {
278 .type = OVS_VPORT_TYPE_GRE,
279 .create = gre_create,
280 .destroy = gre_tnl_destroy,
281 .get_name = gre_get_name,
286 static struct vport *gre64_create(const struct vport_parms *parms)
288 struct net *net = ovs_dp_get_net(parms->dp);
289 struct ovs_net *ovs_net;
297 ovs_net = net_generic(net, ovs_net_id);
298 if (ovsl_dereference(ovs_net->vport_net.gre64_vport)) {
299 vport = ERR_PTR(-EEXIST);
303 vport = ovs_vport_alloc(IFNAMSIZ, &ovs_gre64_vport_ops, parms);
307 strncpy(vport_priv(vport), parms->name, IFNAMSIZ);
308 rcu_assign_pointer(ovs_net->vport_net.gre64_vport, vport);
315 static void gre64_tnl_destroy(struct vport *vport)
317 struct net *net = ovs_dp_get_net(vport->dp);
318 struct ovs_net *ovs_net;
320 ovs_net = net_generic(net, ovs_net_id);
322 rcu_assign_pointer(ovs_net->vport_net.gre64_vport, NULL);
323 ovs_vport_deferred_free(vport);
327 static __be32 be64_get_high32(__be64 x)
330 return (__force __be32)((__force u64)x >> 32);
332 return (__force __be32)x;
336 static int gre64_send(struct vport *vport, struct sk_buff *skb)
338 int hlen = GRE_HEADER_SECTION + /* GRE Hdr */
339 GRE_HEADER_SECTION + /* GRE Key */
340 GRE_HEADER_SECTION; /* GRE SEQ */
343 if (unlikely(!OVS_CB(skb)->tun_key))
346 if (OVS_CB(skb)->tun_key->tun_flags & TUNNEL_CSUM)
347 hlen += GRE_HEADER_SECTION;
349 seq = be64_get_high32(OVS_CB(skb)->tun_key->tun_id);
350 return __send(vport, skb, hlen, seq, (TUNNEL_KEY|TUNNEL_SEQ));
353 const struct vport_ops ovs_gre64_vport_ops = {
354 .type = OVS_VPORT_TYPE_GRE64,
355 .create = gre64_create,
356 .destroy = gre64_tnl_destroy,
357 .get_name = gre_get_name,