blob: 493cd382b8aa0f187fcaf1dc520da765f9595fe0 [file] [log] [blame]
John W. Linville2d07dc72015-05-13 12:57:30 -04001/*
2 * GENEVE: Generic Network Virtualization Encapsulation
3 *
4 * Copyright (c) 2015 Red Hat, Inc.
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License version 2 as
8 * published by the Free Software Foundation.
9 */
10
11#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
12
13#include <linux/kernel.h>
14#include <linux/module.h>
John W. Linville2d07dc72015-05-13 12:57:30 -040015#include <linux/etherdevice.h>
16#include <linux/hash.h>
Pravin B Shelare305ac62015-08-26 23:46:52 -070017#include <net/dst_metadata.h>
Jesse Gross8e816df2015-08-28 16:54:40 -070018#include <net/gro_cells.h>
John W. Linville2d07dc72015-05-13 12:57:30 -040019#include <net/rtnetlink.h>
20#include <net/geneve.h>
Pravin B Shelar371bd102015-08-26 23:46:54 -070021#include <net/protocol.h>
John W. Linville2d07dc72015-05-13 12:57:30 -040022
23#define GENEVE_NETDEV_VER "0.6"
24
25#define GENEVE_UDP_PORT 6081
26
27#define GENEVE_N_VID (1u << 24)
28#define GENEVE_VID_MASK (GENEVE_N_VID - 1)
29
30#define VNI_HASH_BITS 10
31#define VNI_HASH_SIZE (1<<VNI_HASH_BITS)
32
33static bool log_ecn_error = true;
34module_param(log_ecn_error, bool, 0644);
35MODULE_PARM_DESC(log_ecn_error, "Log packets received with corrupted ECN");
36
Pravin B Shelar371bd102015-08-26 23:46:54 -070037#define GENEVE_VER 0
38#define GENEVE_BASE_HLEN (sizeof(struct udphdr) + sizeof(struct genevehdr))
Alexey Kodanev5edbea62018-04-19 15:42:30 +030039#define GENEVE_IPV4_HLEN (ETH_HLEN + sizeof(struct iphdr) + GENEVE_BASE_HLEN)
40#define GENEVE_IPV6_HLEN (ETH_HLEN + sizeof(struct ipv6hdr) + GENEVE_BASE_HLEN)
Pravin B Shelar371bd102015-08-26 23:46:54 -070041
John W. Linville2d07dc72015-05-13 12:57:30 -040042/* per-network namespace private data for this module */
43struct geneve_net {
Pravin B Shelar371bd102015-08-26 23:46:54 -070044 struct list_head geneve_list;
Pravin B Shelar371bd102015-08-26 23:46:54 -070045 struct list_head sock_list;
John W. Linville2d07dc72015-05-13 12:57:30 -040046};
47
Alexey Dobriyanc7d03a02016-11-17 04:58:21 +030048static unsigned int geneve_net_id;
Pravin B Shelar371bd102015-08-26 23:46:54 -070049
Jiri Benc4b4c21f2017-07-02 19:00:58 +020050struct geneve_dev_node {
51 struct hlist_node hlist;
52 struct geneve_dev *geneve;
53};
54
John W. Linville2d07dc72015-05-13 12:57:30 -040055/* Pseudo network device */
56struct geneve_dev {
Jiri Benc4b4c21f2017-07-02 19:00:58 +020057 struct geneve_dev_node hlist4; /* vni hash table for IPv4 socket */
58#if IS_ENABLED(CONFIG_IPV6)
59 struct geneve_dev_node hlist6; /* vni hash table for IPv6 socket */
60#endif
John W. Linville2d07dc72015-05-13 12:57:30 -040061 struct net *net; /* netns for packet i/o */
62 struct net_device *dev; /* netdev for geneve tunnel */
pravin shelar9b4437a2016-11-21 11:02:58 -080063 struct ip_tunnel_info info;
pravin shelarfceb9c32016-10-28 09:59:16 -070064 struct geneve_sock __rcu *sock4; /* IPv4 socket used for geneve tunnel */
John W. Linville8ed66f02015-10-26 17:01:44 -040065#if IS_ENABLED(CONFIG_IPV6)
pravin shelarfceb9c32016-10-28 09:59:16 -070066 struct geneve_sock __rcu *sock6; /* IPv6 socket used for geneve tunnel */
John W. Linville8ed66f02015-10-26 17:01:44 -040067#endif
John W. Linville2d07dc72015-05-13 12:57:30 -040068 struct list_head next; /* geneve's per namespace list */
Jesse Gross8e816df2015-08-28 16:54:40 -070069 struct gro_cells gro_cells;
pravin shelar9b4437a2016-11-21 11:02:58 -080070 bool collect_md;
71 bool use_udp6_rx_checksums;
John W. Linville2d07dc72015-05-13 12:57:30 -040072};
73
Pravin B Shelar371bd102015-08-26 23:46:54 -070074struct geneve_sock {
75 bool collect_md;
Pravin B Shelar371bd102015-08-26 23:46:54 -070076 struct list_head list;
77 struct socket *sock;
78 struct rcu_head rcu;
79 int refcnt;
Pravin B Shelar66d47002015-08-26 23:46:55 -070080 struct hlist_head vni_list[VNI_HASH_SIZE];
Pravin B Shelar371bd102015-08-26 23:46:54 -070081};
John W. Linville2d07dc72015-05-13 12:57:30 -040082
83static inline __u32 geneve_net_vni_hash(u8 vni[3])
84{
85 __u32 vnid;
86
87 vnid = (vni[0] << 16) | (vni[1] << 8) | vni[2];
88 return hash_32(vnid, VNI_HASH_BITS);
89}
90
Pravin B Shelare305ac62015-08-26 23:46:52 -070091static __be64 vni_to_tunnel_id(const __u8 *vni)
92{
93#ifdef __BIG_ENDIAN
94 return (vni[0] << 16) | (vni[1] << 8) | vni[2];
95#else
96 return (__force __be64)(((__force u64)vni[0] << 40) |
97 ((__force u64)vni[1] << 48) |
98 ((__force u64)vni[2] << 56));
99#endif
100}
101
pravin shelar9b4437a2016-11-21 11:02:58 -0800102/* Convert 64 bit tunnel ID to 24 bit VNI. */
103static void tunnel_id_to_vni(__be64 tun_id, __u8 *vni)
104{
105#ifdef __BIG_ENDIAN
106 vni[0] = (__force __u8)(tun_id >> 16);
107 vni[1] = (__force __u8)(tun_id >> 8);
108 vni[2] = (__force __u8)tun_id;
109#else
110 vni[0] = (__force __u8)((__force u64)tun_id >> 40);
111 vni[1] = (__force __u8)((__force u64)tun_id >> 48);
112 vni[2] = (__force __u8)((__force u64)tun_id >> 56);
113#endif
114}
115
pravin shelar2e0b26e2016-11-21 11:03:01 -0800116static bool eq_tun_id_and_vni(u8 *tun_id, u8 *vni)
117{
pravin shelar2e0b26e2016-11-21 11:03:01 -0800118 return !memcmp(vni, &tun_id[5], 3);
pravin shelar2e0b26e2016-11-21 11:03:01 -0800119}
120
Jiri Benc1e9f12e2016-02-18 11:22:49 +0100121static sa_family_t geneve_get_sk_family(struct geneve_sock *gs)
122{
123 return gs->sock->sk->sk_family;
124}
125
Pravin B Shelar66d47002015-08-26 23:46:55 -0700126static struct geneve_dev *geneve_lookup(struct geneve_sock *gs,
Pravin B Shelar371bd102015-08-26 23:46:54 -0700127 __be32 addr, u8 vni[])
John W. Linville2d07dc72015-05-13 12:57:30 -0400128{
John W. Linville2d07dc72015-05-13 12:57:30 -0400129 struct hlist_head *vni_list_head;
Jiri Benc4b4c21f2017-07-02 19:00:58 +0200130 struct geneve_dev_node *node;
John W. Linville2d07dc72015-05-13 12:57:30 -0400131 __u32 hash;
132
John W. Linville2d07dc72015-05-13 12:57:30 -0400133 /* Find the device for this VNI */
Pravin B Shelar371bd102015-08-26 23:46:54 -0700134 hash = geneve_net_vni_hash(vni);
Pravin B Shelar66d47002015-08-26 23:46:55 -0700135 vni_list_head = &gs->vni_list[hash];
Jiri Benc4b4c21f2017-07-02 19:00:58 +0200136 hlist_for_each_entry_rcu(node, vni_list_head, hlist) {
137 if (eq_tun_id_and_vni((u8 *)&node->geneve->info.key.tun_id, vni) &&
138 addr == node->geneve->info.key.u.ipv4.dst)
139 return node->geneve;
John W. Linville2d07dc72015-05-13 12:57:30 -0400140 }
Pravin B Shelare305ac62015-08-26 23:46:52 -0700141 return NULL;
142}
143
John W. Linville8ed66f02015-10-26 17:01:44 -0400144#if IS_ENABLED(CONFIG_IPV6)
145static struct geneve_dev *geneve6_lookup(struct geneve_sock *gs,
146 struct in6_addr addr6, u8 vni[])
147{
148 struct hlist_head *vni_list_head;
Jiri Benc4b4c21f2017-07-02 19:00:58 +0200149 struct geneve_dev_node *node;
John W. Linville8ed66f02015-10-26 17:01:44 -0400150 __u32 hash;
151
152 /* Find the device for this VNI */
153 hash = geneve_net_vni_hash(vni);
154 vni_list_head = &gs->vni_list[hash];
Jiri Benc4b4c21f2017-07-02 19:00:58 +0200155 hlist_for_each_entry_rcu(node, vni_list_head, hlist) {
156 if (eq_tun_id_and_vni((u8 *)&node->geneve->info.key.tun_id, vni) &&
157 ipv6_addr_equal(&addr6, &node->geneve->info.key.u.ipv6.dst))
158 return node->geneve;
John W. Linville8ed66f02015-10-26 17:01:44 -0400159 }
160 return NULL;
161}
162#endif
163
Pravin B Shelar371bd102015-08-26 23:46:54 -0700164static inline struct genevehdr *geneve_hdr(const struct sk_buff *skb)
165{
166 return (struct genevehdr *)(udp_hdr(skb) + 1);
167}
168
Jiri Benc9fc47542016-02-18 11:22:50 +0100169static struct geneve_dev *geneve_lookup_skb(struct geneve_sock *gs,
170 struct sk_buff *skb)
Pravin B Shelare305ac62015-08-26 23:46:52 -0700171{
John W. Linville8ed66f02015-10-26 17:01:44 -0400172 static u8 zero_vni[3];
pravin shelar9b4437a2016-11-21 11:02:58 -0800173 u8 *vni;
Pravin B Shelare305ac62015-08-26 23:46:52 -0700174
Jiri Benc1e9f12e2016-02-18 11:22:49 +0100175 if (geneve_get_sk_family(gs) == AF_INET) {
Jiri Benc9fc47542016-02-18 11:22:50 +0100176 struct iphdr *iph;
pravin shelar9b4437a2016-11-21 11:02:58 -0800177 __be32 addr;
Jiri Benc9fc47542016-02-18 11:22:50 +0100178
John W. Linville8ed66f02015-10-26 17:01:44 -0400179 iph = ip_hdr(skb); /* outer IP header... */
Pravin B Shelar371bd102015-08-26 23:46:54 -0700180
John W. Linville8ed66f02015-10-26 17:01:44 -0400181 if (gs->collect_md) {
182 vni = zero_vni;
183 addr = 0;
184 } else {
Jiri Benc9fc47542016-02-18 11:22:50 +0100185 vni = geneve_hdr(skb)->vni;
John W. Linville8ed66f02015-10-26 17:01:44 -0400186 addr = iph->saddr;
187 }
188
Jiri Benc9fc47542016-02-18 11:22:50 +0100189 return geneve_lookup(gs, addr, vni);
John W. Linville8ed66f02015-10-26 17:01:44 -0400190#if IS_ENABLED(CONFIG_IPV6)
Jiri Benc1e9f12e2016-02-18 11:22:49 +0100191 } else if (geneve_get_sk_family(gs) == AF_INET6) {
pravin shelar9b4437a2016-11-21 11:02:58 -0800192 static struct in6_addr zero_addr6;
Jiri Benc9fc47542016-02-18 11:22:50 +0100193 struct ipv6hdr *ip6h;
194 struct in6_addr addr6;
195
John W. Linville8ed66f02015-10-26 17:01:44 -0400196 ip6h = ipv6_hdr(skb); /* outer IPv6 header... */
197
198 if (gs->collect_md) {
199 vni = zero_vni;
200 addr6 = zero_addr6;
201 } else {
Jiri Benc9fc47542016-02-18 11:22:50 +0100202 vni = geneve_hdr(skb)->vni;
John W. Linville8ed66f02015-10-26 17:01:44 -0400203 addr6 = ip6h->saddr;
204 }
205
Jiri Benc9fc47542016-02-18 11:22:50 +0100206 return geneve6_lookup(gs, addr6, vni);
John W. Linville8ed66f02015-10-26 17:01:44 -0400207#endif
Pravin B Shelar371bd102015-08-26 23:46:54 -0700208 }
Jiri Benc9fc47542016-02-18 11:22:50 +0100209 return NULL;
210}
211
212/* geneve receive/decap routine */
213static void geneve_rx(struct geneve_dev *geneve, struct geneve_sock *gs,
214 struct sk_buff *skb)
215{
216 struct genevehdr *gnvh = geneve_hdr(skb);
217 struct metadata_dst *tun_dst = NULL;
218 struct pcpu_sw_netstats *stats;
Girish Moodalbailfe741e22017-06-08 17:07:48 -0700219 unsigned int len;
Jiri Benc9fc47542016-02-18 11:22:50 +0100220 int err = 0;
221 void *oiph;
John W. Linville2d07dc72015-05-13 12:57:30 -0400222
Pravin B Shelar371bd102015-08-26 23:46:54 -0700223 if (ip_tunnel_collect_metadata() || gs->collect_md) {
Pravin B Shelare305ac62015-08-26 23:46:52 -0700224 __be16 flags;
Pravin B Shelare305ac62015-08-26 23:46:52 -0700225
226 flags = TUNNEL_KEY | TUNNEL_GENEVE_OPT |
227 (gnvh->oam ? TUNNEL_OAM : 0) |
228 (gnvh->critical ? TUNNEL_CRIT_OPT : 0);
229
Jiri Benc1e9f12e2016-02-18 11:22:49 +0100230 tun_dst = udp_tun_rx_dst(skb, geneve_get_sk_family(gs), flags,
Pravin B Shelare305ac62015-08-26 23:46:52 -0700231 vni_to_tunnel_id(gnvh->vni),
232 gnvh->opt_len * 4);
Girish Moodalbailfe741e22017-06-08 17:07:48 -0700233 if (!tun_dst) {
234 geneve->dev->stats.rx_dropped++;
Pravin B Shelare305ac62015-08-26 23:46:52 -0700235 goto drop;
Girish Moodalbailfe741e22017-06-08 17:07:48 -0700236 }
Pravin B Shelare305ac62015-08-26 23:46:52 -0700237 /* Update tunnel dst according to Geneve options. */
Pravin B Shelar4c222792015-08-30 18:09:38 -0700238 ip_tunnel_info_opts_set(&tun_dst->u.tun_info,
Pieter Jansen van Vuuren256c87c2018-06-26 21:39:36 -0700239 gnvh->options, gnvh->opt_len * 4,
240 TUNNEL_GENEVE_OPT);
Pravin B Shelare305ac62015-08-26 23:46:52 -0700241 } else {
242 /* Drop packets w/ critical options,
243 * since we don't support any...
244 */
Girish Moodalbailfe741e22017-06-08 17:07:48 -0700245 if (gnvh->critical) {
246 geneve->dev->stats.rx_frame_errors++;
247 geneve->dev->stats.rx_errors++;
Pravin B Shelare305ac62015-08-26 23:46:52 -0700248 goto drop;
Girish Moodalbailfe741e22017-06-08 17:07:48 -0700249 }
Pravin B Shelare305ac62015-08-26 23:46:52 -0700250 }
John W. Linville2d07dc72015-05-13 12:57:30 -0400251
252 skb_reset_mac_header(skb);
John W. Linville2d07dc72015-05-13 12:57:30 -0400253 skb->protocol = eth_type_trans(skb, geneve->dev);
254 skb_postpull_rcsum(skb, eth_hdr(skb), ETH_HLEN);
255
Pravin B Shelare305ac62015-08-26 23:46:52 -0700256 if (tun_dst)
257 skb_dst_set(skb, &tun_dst->dst);
258
John W. Linville2d07dc72015-05-13 12:57:30 -0400259 /* Ignore packet loops (and multicast echo) */
Girish Moodalbailfe741e22017-06-08 17:07:48 -0700260 if (ether_addr_equal(eth_hdr(skb)->h_source, geneve->dev->dev_addr)) {
261 geneve->dev->stats.rx_errors++;
John W. Linville2d07dc72015-05-13 12:57:30 -0400262 goto drop;
Girish Moodalbailfe741e22017-06-08 17:07:48 -0700263 }
John W. Linville2d07dc72015-05-13 12:57:30 -0400264
Jiri Benc9fc47542016-02-18 11:22:50 +0100265 oiph = skb_network_header(skb);
John W. Linville2d07dc72015-05-13 12:57:30 -0400266 skb_reset_network_header(skb);
267
Jiri Benc9fc47542016-02-18 11:22:50 +0100268 if (geneve_get_sk_family(gs) == AF_INET)
269 err = IP_ECN_decapsulate(oiph, skb);
John W. Linville8ed66f02015-10-26 17:01:44 -0400270#if IS_ENABLED(CONFIG_IPV6)
Jiri Benc9fc47542016-02-18 11:22:50 +0100271 else
272 err = IP6_ECN_decapsulate(oiph, skb);
John W. Linville8ed66f02015-10-26 17:01:44 -0400273#endif
John W. Linville2d07dc72015-05-13 12:57:30 -0400274
275 if (unlikely(err)) {
John W. Linville8ed66f02015-10-26 17:01:44 -0400276 if (log_ecn_error) {
Jiri Benc9fc47542016-02-18 11:22:50 +0100277 if (geneve_get_sk_family(gs) == AF_INET)
John W. Linville8ed66f02015-10-26 17:01:44 -0400278 net_info_ratelimited("non-ECT from %pI4 "
279 "with TOS=%#x\n",
Jiri Benc9fc47542016-02-18 11:22:50 +0100280 &((struct iphdr *)oiph)->saddr,
281 ((struct iphdr *)oiph)->tos);
John W. Linville8ed66f02015-10-26 17:01:44 -0400282#if IS_ENABLED(CONFIG_IPV6)
Jiri Benc9fc47542016-02-18 11:22:50 +0100283 else
John W. Linville8ed66f02015-10-26 17:01:44 -0400284 net_info_ratelimited("non-ECT from %pI6\n",
Jiri Benc9fc47542016-02-18 11:22:50 +0100285 &((struct ipv6hdr *)oiph)->saddr);
John W. Linville8ed66f02015-10-26 17:01:44 -0400286#endif
287 }
John W. Linville2d07dc72015-05-13 12:57:30 -0400288 if (err > 1) {
289 ++geneve->dev->stats.rx_frame_errors;
290 ++geneve->dev->stats.rx_errors;
291 goto drop;
292 }
293 }
294
Girish Moodalbailfe741e22017-06-08 17:07:48 -0700295 len = skb->len;
296 err = gro_cells_receive(&geneve->gro_cells, skb);
297 if (likely(err == NET_RX_SUCCESS)) {
298 stats = this_cpu_ptr(geneve->dev->tstats);
299 u64_stats_update_begin(&stats->syncp);
300 stats->rx_packets++;
301 stats->rx_bytes += len;
302 u64_stats_update_end(&stats->syncp);
303 }
John W. Linville2d07dc72015-05-13 12:57:30 -0400304 return;
305drop:
306 /* Consume bad packet */
307 kfree_skb(skb);
308}
309
310/* Setup stats when device is created */
311static int geneve_init(struct net_device *dev)
312{
Jesse Gross8e816df2015-08-28 16:54:40 -0700313 struct geneve_dev *geneve = netdev_priv(dev);
314 int err;
315
John W. Linville2d07dc72015-05-13 12:57:30 -0400316 dev->tstats = netdev_alloc_pcpu_stats(struct pcpu_sw_netstats);
317 if (!dev->tstats)
318 return -ENOMEM;
Jesse Gross8e816df2015-08-28 16:54:40 -0700319
320 err = gro_cells_init(&geneve->gro_cells, dev);
321 if (err) {
322 free_percpu(dev->tstats);
323 return err;
324 }
325
pravin shelar9b4437a2016-11-21 11:02:58 -0800326 err = dst_cache_init(&geneve->info.dst_cache, GFP_KERNEL);
Paolo Abeni468dfff2016-02-12 15:43:58 +0100327 if (err) {
328 free_percpu(dev->tstats);
329 gro_cells_destroy(&geneve->gro_cells);
330 return err;
331 }
John W. Linville2d07dc72015-05-13 12:57:30 -0400332 return 0;
333}
334
335static void geneve_uninit(struct net_device *dev)
336{
Jesse Gross8e816df2015-08-28 16:54:40 -0700337 struct geneve_dev *geneve = netdev_priv(dev);
338
pravin shelar9b4437a2016-11-21 11:02:58 -0800339 dst_cache_destroy(&geneve->info.dst_cache);
Jesse Gross8e816df2015-08-28 16:54:40 -0700340 gro_cells_destroy(&geneve->gro_cells);
John W. Linville2d07dc72015-05-13 12:57:30 -0400341 free_percpu(dev->tstats);
342}
343
Pravin B Shelar371bd102015-08-26 23:46:54 -0700344/* Callback from net/ipv4/udp.c to receive packets */
345static int geneve_udp_encap_recv(struct sock *sk, struct sk_buff *skb)
346{
347 struct genevehdr *geneveh;
Jiri Benc9fc47542016-02-18 11:22:50 +0100348 struct geneve_dev *geneve;
Pravin B Shelar371bd102015-08-26 23:46:54 -0700349 struct geneve_sock *gs;
350 int opts_len;
351
Girish Moodalbailfe741e22017-06-08 17:07:48 -0700352 /* Need UDP and Geneve header to be present */
Pravin B Shelar371bd102015-08-26 23:46:54 -0700353 if (unlikely(!pskb_may_pull(skb, GENEVE_BASE_HLEN)))
Hannes Frederic Sowae5aed002016-05-19 15:58:33 +0200354 goto drop;
Pravin B Shelar371bd102015-08-26 23:46:54 -0700355
356 /* Return packets with reserved bits set */
357 geneveh = geneve_hdr(skb);
358 if (unlikely(geneveh->ver != GENEVE_VER))
Hannes Frederic Sowae5aed002016-05-19 15:58:33 +0200359 goto drop;
Pravin B Shelar371bd102015-08-26 23:46:54 -0700360
361 if (unlikely(geneveh->proto_type != htons(ETH_P_TEB)))
Hannes Frederic Sowae5aed002016-05-19 15:58:33 +0200362 goto drop;
Pravin B Shelar371bd102015-08-26 23:46:54 -0700363
Jiri Benc9fc47542016-02-18 11:22:50 +0100364 gs = rcu_dereference_sk_user_data(sk);
365 if (!gs)
366 goto drop;
367
368 geneve = geneve_lookup_skb(gs, skb);
369 if (!geneve)
370 goto drop;
371
Pravin B Shelar371bd102015-08-26 23:46:54 -0700372 opts_len = geneveh->opt_len * 4;
373 if (iptunnel_pull_header(skb, GENEVE_BASE_HLEN + opts_len,
Jiri Benc7f290c92016-02-18 11:22:52 +0100374 htons(ETH_P_TEB),
Girish Moodalbailfe741e22017-06-08 17:07:48 -0700375 !net_eq(geneve->net, dev_net(geneve->dev)))) {
376 geneve->dev->stats.rx_dropped++;
Pravin B Shelar371bd102015-08-26 23:46:54 -0700377 goto drop;
Girish Moodalbailfe741e22017-06-08 17:07:48 -0700378 }
Pravin B Shelar371bd102015-08-26 23:46:54 -0700379
Jiri Benc9fc47542016-02-18 11:22:50 +0100380 geneve_rx(geneve, gs, skb);
Pravin B Shelar371bd102015-08-26 23:46:54 -0700381 return 0;
382
383drop:
384 /* Consume bad packet */
385 kfree_skb(skb);
386 return 0;
Pravin B Shelar371bd102015-08-26 23:46:54 -0700387}
388
389static struct socket *geneve_create_sock(struct net *net, bool ipv6,
pravin shelar9b4437a2016-11-21 11:02:58 -0800390 __be16 port, bool ipv6_rx_csum)
Pravin B Shelar371bd102015-08-26 23:46:54 -0700391{
392 struct socket *sock;
393 struct udp_port_cfg udp_conf;
394 int err;
395
396 memset(&udp_conf, 0, sizeof(udp_conf));
397
398 if (ipv6) {
399 udp_conf.family = AF_INET6;
John W. Linville8ed66f02015-10-26 17:01:44 -0400400 udp_conf.ipv6_v6only = 1;
pravin shelar9b4437a2016-11-21 11:02:58 -0800401 udp_conf.use_udp6_rx_checksums = ipv6_rx_csum;
Pravin B Shelar371bd102015-08-26 23:46:54 -0700402 } else {
403 udp_conf.family = AF_INET;
404 udp_conf.local_ip.s_addr = htonl(INADDR_ANY);
405 }
406
407 udp_conf.local_udp_port = port;
408
409 /* Open UDP socket */
410 err = udp_sock_create(net, &udp_conf, &sock);
411 if (err < 0)
412 return ERR_PTR(err);
413
414 return sock;
415}
416
Pravin B Shelar371bd102015-08-26 23:46:54 -0700417static int geneve_hlen(struct genevehdr *gh)
418{
419 return sizeof(*gh) + gh->opt_len * 4;
420}
421
David Millerd4546c22018-06-24 14:13:49 +0900422static struct sk_buff *geneve_gro_receive(struct sock *sk,
423 struct list_head *head,
424 struct sk_buff *skb)
Pravin B Shelar371bd102015-08-26 23:46:54 -0700425{
David Millerd4546c22018-06-24 14:13:49 +0900426 struct sk_buff *pp = NULL;
427 struct sk_buff *p;
Pravin B Shelar371bd102015-08-26 23:46:54 -0700428 struct genevehdr *gh, *gh2;
429 unsigned int hlen, gh_len, off_gnv;
430 const struct packet_offload *ptype;
431 __be16 type;
432 int flush = 1;
433
434 off_gnv = skb_gro_offset(skb);
435 hlen = off_gnv + sizeof(*gh);
436 gh = skb_gro_header_fast(skb, off_gnv);
437 if (skb_gro_header_hard(skb, hlen)) {
438 gh = skb_gro_header_slow(skb, hlen, off_gnv);
439 if (unlikely(!gh))
440 goto out;
441 }
442
443 if (gh->ver != GENEVE_VER || gh->oam)
444 goto out;
445 gh_len = geneve_hlen(gh);
446
447 hlen = off_gnv + gh_len;
448 if (skb_gro_header_hard(skb, hlen)) {
449 gh = skb_gro_header_slow(skb, hlen, off_gnv);
450 if (unlikely(!gh))
451 goto out;
452 }
453
David Millerd4546c22018-06-24 14:13:49 +0900454 list_for_each_entry(p, head, list) {
Pravin B Shelar371bd102015-08-26 23:46:54 -0700455 if (!NAPI_GRO_CB(p)->same_flow)
456 continue;
457
458 gh2 = (struct genevehdr *)(p->data + off_gnv);
459 if (gh->opt_len != gh2->opt_len ||
460 memcmp(gh, gh2, gh_len)) {
461 NAPI_GRO_CB(p)->same_flow = 0;
462 continue;
463 }
464 }
465
466 type = gh->proto_type;
467
468 rcu_read_lock();
469 ptype = gro_find_receive_by_type(type);
Alexander Duyckc194cf92016-03-09 09:24:23 -0800470 if (!ptype)
Pravin B Shelar371bd102015-08-26 23:46:54 -0700471 goto out_unlock;
Pravin B Shelar371bd102015-08-26 23:46:54 -0700472
473 skb_gro_pull(skb, gh_len);
474 skb_gro_postpull_rcsum(skb, gh, gh_len);
Sabrina Dubrocafcd91dd2016-10-20 15:58:02 +0200475 pp = call_gro_receive(ptype->callbacks.gro_receive, head, skb);
Alexander Duyckc194cf92016-03-09 09:24:23 -0800476 flush = 0;
Pravin B Shelar371bd102015-08-26 23:46:54 -0700477
478out_unlock:
479 rcu_read_unlock();
480out:
Sabrina Dubroca603d4cf2018-06-30 17:38:55 +0200481 skb_gro_flush_final(skb, pp, flush);
Pravin B Shelar371bd102015-08-26 23:46:54 -0700482
483 return pp;
484}
485
Tom Herbert4a0090a2016-04-05 08:22:55 -0700486static int geneve_gro_complete(struct sock *sk, struct sk_buff *skb,
487 int nhoff)
Pravin B Shelar371bd102015-08-26 23:46:54 -0700488{
489 struct genevehdr *gh;
490 struct packet_offload *ptype;
491 __be16 type;
492 int gh_len;
493 int err = -ENOSYS;
494
Pravin B Shelar371bd102015-08-26 23:46:54 -0700495 gh = (struct genevehdr *)(skb->data + nhoff);
496 gh_len = geneve_hlen(gh);
497 type = gh->proto_type;
498
499 rcu_read_lock();
500 ptype = gro_find_complete_by_type(type);
501 if (ptype)
502 err = ptype->callbacks.gro_complete(skb, nhoff + gh_len);
503
504 rcu_read_unlock();
Jarno Rajahalme229740c2016-05-03 16:10:21 -0700505
506 skb_set_inner_mac_header(skb, nhoff + gh_len);
507
Pravin B Shelar371bd102015-08-26 23:46:54 -0700508 return err;
509}
510
511/* Create new listen socket if needed */
512static struct geneve_sock *geneve_socket_create(struct net *net, __be16 port,
pravin shelar9b4437a2016-11-21 11:02:58 -0800513 bool ipv6, bool ipv6_rx_csum)
Pravin B Shelar371bd102015-08-26 23:46:54 -0700514{
515 struct geneve_net *gn = net_generic(net, geneve_net_id);
516 struct geneve_sock *gs;
517 struct socket *sock;
518 struct udp_tunnel_sock_cfg tunnel_cfg;
Pravin B Shelar66d47002015-08-26 23:46:55 -0700519 int h;
Pravin B Shelar371bd102015-08-26 23:46:54 -0700520
521 gs = kzalloc(sizeof(*gs), GFP_KERNEL);
522 if (!gs)
523 return ERR_PTR(-ENOMEM);
524
pravin shelar9b4437a2016-11-21 11:02:58 -0800525 sock = geneve_create_sock(net, ipv6, port, ipv6_rx_csum);
Pravin B Shelar371bd102015-08-26 23:46:54 -0700526 if (IS_ERR(sock)) {
527 kfree(gs);
528 return ERR_CAST(sock);
529 }
530
531 gs->sock = sock;
532 gs->refcnt = 1;
Pravin B Shelar66d47002015-08-26 23:46:55 -0700533 for (h = 0; h < VNI_HASH_SIZE; ++h)
534 INIT_HLIST_HEAD(&gs->vni_list[h]);
Pravin B Shelar371bd102015-08-26 23:46:54 -0700535
536 /* Initialize the geneve udp offloads structure */
Alexander Duycke7b3db52016-06-16 12:20:52 -0700537 udp_tunnel_notify_add_rx_port(gs->sock, UDP_TUNNEL_TYPE_GENEVE);
Pravin B Shelar371bd102015-08-26 23:46:54 -0700538
539 /* Mark socket as an encapsulation socket */
Tom Herbert4a0090a2016-04-05 08:22:55 -0700540 memset(&tunnel_cfg, 0, sizeof(tunnel_cfg));
Pravin B Shelar371bd102015-08-26 23:46:54 -0700541 tunnel_cfg.sk_user_data = gs;
542 tunnel_cfg.encap_type = 1;
Tom Herbert4a0090a2016-04-05 08:22:55 -0700543 tunnel_cfg.gro_receive = geneve_gro_receive;
544 tunnel_cfg.gro_complete = geneve_gro_complete;
Pravin B Shelar371bd102015-08-26 23:46:54 -0700545 tunnel_cfg.encap_rcv = geneve_udp_encap_recv;
546 tunnel_cfg.encap_destroy = NULL;
547 setup_udp_tunnel_sock(net, sock, &tunnel_cfg);
Pravin B Shelar371bd102015-08-26 23:46:54 -0700548 list_add(&gs->list, &gn->sock_list);
549 return gs;
550}
551
John W. Linville8ed66f02015-10-26 17:01:44 -0400552static void __geneve_sock_release(struct geneve_sock *gs)
Pravin B Shelar371bd102015-08-26 23:46:54 -0700553{
John W. Linville8ed66f02015-10-26 17:01:44 -0400554 if (!gs || --gs->refcnt)
Pravin B Shelar371bd102015-08-26 23:46:54 -0700555 return;
556
557 list_del(&gs->list);
Alexander Duycke7b3db52016-06-16 12:20:52 -0700558 udp_tunnel_notify_del_rx_port(gs->sock, UDP_TUNNEL_TYPE_GENEVE);
Pravin B Shelar371bd102015-08-26 23:46:54 -0700559 udp_tunnel_sock_release(gs->sock);
560 kfree_rcu(gs, rcu);
561}
562
John W. Linville8ed66f02015-10-26 17:01:44 -0400563static void geneve_sock_release(struct geneve_dev *geneve)
564{
pravin shelarfceb9c32016-10-28 09:59:16 -0700565 struct geneve_sock *gs4 = rtnl_dereference(geneve->sock4);
John W. Linville8ed66f02015-10-26 17:01:44 -0400566#if IS_ENABLED(CONFIG_IPV6)
pravin shelarfceb9c32016-10-28 09:59:16 -0700567 struct geneve_sock *gs6 = rtnl_dereference(geneve->sock6);
568
569 rcu_assign_pointer(geneve->sock6, NULL);
570#endif
571
572 rcu_assign_pointer(geneve->sock4, NULL);
573 synchronize_net();
574
575 __geneve_sock_release(gs4);
576#if IS_ENABLED(CONFIG_IPV6)
577 __geneve_sock_release(gs6);
John W. Linville8ed66f02015-10-26 17:01:44 -0400578#endif
579}
580
Pravin B Shelar371bd102015-08-26 23:46:54 -0700581static struct geneve_sock *geneve_find_sock(struct geneve_net *gn,
John W. Linville8ed66f02015-10-26 17:01:44 -0400582 sa_family_t family,
Pravin B Shelar371bd102015-08-26 23:46:54 -0700583 __be16 dst_port)
584{
585 struct geneve_sock *gs;
586
587 list_for_each_entry(gs, &gn->sock_list, list) {
588 if (inet_sk(gs->sock->sk)->inet_sport == dst_port &&
Jiri Benc1e9f12e2016-02-18 11:22:49 +0100589 geneve_get_sk_family(gs) == family) {
Pravin B Shelar371bd102015-08-26 23:46:54 -0700590 return gs;
591 }
592 }
593 return NULL;
594}
595
John W. Linville8ed66f02015-10-26 17:01:44 -0400596static int geneve_sock_add(struct geneve_dev *geneve, bool ipv6)
John W. Linville2d07dc72015-05-13 12:57:30 -0400597{
John W. Linville2d07dc72015-05-13 12:57:30 -0400598 struct net *net = geneve->net;
Pravin B Shelar371bd102015-08-26 23:46:54 -0700599 struct geneve_net *gn = net_generic(net, geneve_net_id);
Jiri Benc4b4c21f2017-07-02 19:00:58 +0200600 struct geneve_dev_node *node;
John W. Linville2d07dc72015-05-13 12:57:30 -0400601 struct geneve_sock *gs;
pravin shelar9b4437a2016-11-21 11:02:58 -0800602 __u8 vni[3];
Pravin B Shelar66d47002015-08-26 23:46:55 -0700603 __u32 hash;
John W. Linville2d07dc72015-05-13 12:57:30 -0400604
pravin shelar9b4437a2016-11-21 11:02:58 -0800605 gs = geneve_find_sock(gn, ipv6 ? AF_INET6 : AF_INET, geneve->info.key.tp_dst);
Pravin B Shelar371bd102015-08-26 23:46:54 -0700606 if (gs) {
607 gs->refcnt++;
608 goto out;
609 }
610
pravin shelar9b4437a2016-11-21 11:02:58 -0800611 gs = geneve_socket_create(net, geneve->info.key.tp_dst, ipv6,
612 geneve->use_udp6_rx_checksums);
John W. Linville2d07dc72015-05-13 12:57:30 -0400613 if (IS_ERR(gs))
614 return PTR_ERR(gs);
615
Pravin B Shelar371bd102015-08-26 23:46:54 -0700616out:
617 gs->collect_md = geneve->collect_md;
John W. Linville8ed66f02015-10-26 17:01:44 -0400618#if IS_ENABLED(CONFIG_IPV6)
Jiri Benc4b4c21f2017-07-02 19:00:58 +0200619 if (ipv6) {
pravin shelarfceb9c32016-10-28 09:59:16 -0700620 rcu_assign_pointer(geneve->sock6, gs);
Jiri Benc4b4c21f2017-07-02 19:00:58 +0200621 node = &geneve->hlist6;
622 } else
John W. Linville8ed66f02015-10-26 17:01:44 -0400623#endif
Jiri Benc4b4c21f2017-07-02 19:00:58 +0200624 {
pravin shelarfceb9c32016-10-28 09:59:16 -0700625 rcu_assign_pointer(geneve->sock4, gs);
Jiri Benc4b4c21f2017-07-02 19:00:58 +0200626 node = &geneve->hlist4;
627 }
628 node->geneve = geneve;
Pravin B Shelar66d47002015-08-26 23:46:55 -0700629
pravin shelar9b4437a2016-11-21 11:02:58 -0800630 tunnel_id_to_vni(geneve->info.key.tun_id, vni);
631 hash = geneve_net_vni_hash(vni);
Jiri Benc4b4c21f2017-07-02 19:00:58 +0200632 hlist_add_head_rcu(&node->hlist, &gs->vni_list[hash]);
John W. Linville2d07dc72015-05-13 12:57:30 -0400633 return 0;
634}
635
John W. Linville8ed66f02015-10-26 17:01:44 -0400636static int geneve_open(struct net_device *dev)
637{
638 struct geneve_dev *geneve = netdev_priv(dev);
pravin shelar9b4437a2016-11-21 11:02:58 -0800639 bool ipv6 = !!(geneve->info.mode & IP_TUNNEL_INFO_IPV6);
John W. Linville8ed66f02015-10-26 17:01:44 -0400640 bool metadata = geneve->collect_md;
641 int ret = 0;
642
John W. Linville8ed66f02015-10-26 17:01:44 -0400643#if IS_ENABLED(CONFIG_IPV6)
John W. Linville8ed66f02015-10-26 17:01:44 -0400644 if (ipv6 || metadata)
645 ret = geneve_sock_add(geneve, true);
646#endif
647 if (!ret && (!ipv6 || metadata))
648 ret = geneve_sock_add(geneve, false);
649 if (ret < 0)
650 geneve_sock_release(geneve);
651
652 return ret;
653}
654
John W. Linville2d07dc72015-05-13 12:57:30 -0400655static int geneve_stop(struct net_device *dev)
656{
657 struct geneve_dev *geneve = netdev_priv(dev);
John W. Linville2d07dc72015-05-13 12:57:30 -0400658
Jiri Benc4b4c21f2017-07-02 19:00:58 +0200659 hlist_del_init_rcu(&geneve->hlist4.hlist);
660#if IS_ENABLED(CONFIG_IPV6)
661 hlist_del_init_rcu(&geneve->hlist6.hlist);
662#endif
John W. Linville8ed66f02015-10-26 17:01:44 -0400663 geneve_sock_release(geneve);
John W. Linville2d07dc72015-05-13 12:57:30 -0400664 return 0;
665}
666
John W. Linville8ed66f02015-10-26 17:01:44 -0400667static void geneve_build_header(struct genevehdr *geneveh,
pravin shelarc3ef5aa2016-11-21 11:02:59 -0800668 const struct ip_tunnel_info *info)
John W. Linville8ed66f02015-10-26 17:01:44 -0400669{
670 geneveh->ver = GENEVE_VER;
pravin shelarc3ef5aa2016-11-21 11:02:59 -0800671 geneveh->opt_len = info->options_len / 4;
672 geneveh->oam = !!(info->key.tun_flags & TUNNEL_OAM);
673 geneveh->critical = !!(info->key.tun_flags & TUNNEL_CRIT_OPT);
John W. Linville8ed66f02015-10-26 17:01:44 -0400674 geneveh->rsvd1 = 0;
pravin shelarc3ef5aa2016-11-21 11:02:59 -0800675 tunnel_id_to_vni(info->key.tun_id, geneveh->vni);
John W. Linville8ed66f02015-10-26 17:01:44 -0400676 geneveh->proto_type = htons(ETH_P_TEB);
677 geneveh->rsvd2 = 0;
678
Pieter Jansen van Vuuren256c87c2018-06-26 21:39:36 -0700679 if (info->key.tun_flags & TUNNEL_GENEVE_OPT)
680 ip_tunnel_info_opts_get(geneveh->options, info);
John W. Linville8ed66f02015-10-26 17:01:44 -0400681}
682
pravin shelarc3ef5aa2016-11-21 11:02:59 -0800683static int geneve_build_skb(struct dst_entry *dst, struct sk_buff *skb,
684 const struct ip_tunnel_info *info,
685 bool xnet, int ip_hdr_len)
Pravin B Shelar371bd102015-08-26 23:46:54 -0700686{
pravin shelarc3ef5aa2016-11-21 11:02:59 -0800687 bool udp_sum = !!(info->key.tun_flags & TUNNEL_CSUM);
Pravin B Shelar371bd102015-08-26 23:46:54 -0700688 struct genevehdr *gnvh;
689 int min_headroom;
690 int err;
691
pravin shelarc3ef5aa2016-11-21 11:02:59 -0800692 skb_reset_mac_header(skb);
John W. Linville8ed66f02015-10-26 17:01:44 -0400693 skb_scrub_packet(skb, xnet);
694
pravin shelarc3ef5aa2016-11-21 11:02:59 -0800695 min_headroom = LL_RESERVED_SPACE(dst->dev) + dst->header_len +
696 GENEVE_BASE_HLEN + info->options_len + ip_hdr_len;
John W. Linville8ed66f02015-10-26 17:01:44 -0400697 err = skb_cow_head(skb, min_headroom);
Alexander Duyckaed069d2016-04-14 15:33:37 -0400698 if (unlikely(err))
John W. Linville8ed66f02015-10-26 17:01:44 -0400699 goto free_dst;
John W. Linville8ed66f02015-10-26 17:01:44 -0400700
Alexander Duyckaed069d2016-04-14 15:33:37 -0400701 err = udp_tunnel_handle_offloads(skb, udp_sum);
Dan Carpenter1ba64fa2016-04-19 17:30:56 +0300702 if (err)
John W. Linville8ed66f02015-10-26 17:01:44 -0400703 goto free_dst;
John W. Linville8ed66f02015-10-26 17:01:44 -0400704
Johannes Bergd58ff352017-06-16 14:29:23 +0200705 gnvh = __skb_push(skb, sizeof(*gnvh) + info->options_len);
pravin shelarc3ef5aa2016-11-21 11:02:59 -0800706 geneve_build_header(gnvh, info);
John W. Linville8ed66f02015-10-26 17:01:44 -0400707 skb_set_inner_protocol(skb, htons(ETH_P_TEB));
708 return 0;
709
710free_dst:
711 dst_release(dst);
712 return err;
713}
John W. Linville8ed66f02015-10-26 17:01:44 -0400714
715static struct rtable *geneve_get_v4_rt(struct sk_buff *skb,
716 struct net_device *dev,
Girish Moodalbail5b861f62017-07-20 22:44:20 -0700717 struct geneve_sock *gs4,
John W. Linville8ed66f02015-10-26 17:01:44 -0400718 struct flowi4 *fl4,
pravin shelarc3ef5aa2016-11-21 11:02:59 -0800719 const struct ip_tunnel_info *info)
Pravin B Shelare305ac62015-08-26 23:46:52 -0700720{
Daniel Borkmanndb3c6132016-03-04 15:15:07 +0100721 bool use_cache = ip_tunnel_dst_cache_usable(skb, info);
Pravin B Shelare305ac62015-08-26 23:46:52 -0700722 struct geneve_dev *geneve = netdev_priv(dev);
Paolo Abeni468dfff2016-02-12 15:43:58 +0100723 struct dst_cache *dst_cache;
Pravin B Shelare305ac62015-08-26 23:46:52 -0700724 struct rtable *rt = NULL;
725 __u8 tos;
726
Girish Moodalbail5b861f62017-07-20 22:44:20 -0700727 if (!gs4)
pravin shelarfceb9c32016-10-28 09:59:16 -0700728 return ERR_PTR(-EIO);
729
Pravin B Shelare305ac62015-08-26 23:46:52 -0700730 memset(fl4, 0, sizeof(*fl4));
731 fl4->flowi4_mark = skb->mark;
732 fl4->flowi4_proto = IPPROTO_UDP;
pravin shelar9b4437a2016-11-21 11:02:58 -0800733 fl4->daddr = info->key.u.ipv4.dst;
734 fl4->saddr = info->key.u.ipv4.src;
Pravin B Shelare305ac62015-08-26 23:46:52 -0700735
pravin shelar9b4437a2016-11-21 11:02:58 -0800736 tos = info->key.tos;
737 if ((tos == 1) && !geneve->collect_md) {
738 tos = ip_tunnel_get_dsfield(ip_hdr(skb), skb);
739 use_cache = false;
Paolo Abeni468dfff2016-02-12 15:43:58 +0100740 }
pravin shelar9b4437a2016-11-21 11:02:58 -0800741 fl4->flowi4_tos = RT_TOS(tos);
Paolo Abeni468dfff2016-02-12 15:43:58 +0100742
pravin shelarc3ef5aa2016-11-21 11:02:59 -0800743 dst_cache = (struct dst_cache *)&info->dst_cache;
Paolo Abeni468dfff2016-02-12 15:43:58 +0100744 if (use_cache) {
745 rt = dst_cache_get_ip4(dst_cache, &fl4->saddr);
746 if (rt)
747 return rt;
Pravin B Shelare305ac62015-08-26 23:46:52 -0700748 }
Pravin B Shelare305ac62015-08-26 23:46:52 -0700749 rt = ip_route_output_key(geneve->net, fl4);
750 if (IS_ERR(rt)) {
751 netdev_dbg(dev, "no route to %pI4\n", &fl4->daddr);
Pravin B Shelarfc4099f2015-10-22 18:17:16 -0700752 return ERR_PTR(-ENETUNREACH);
Pravin B Shelare305ac62015-08-26 23:46:52 -0700753 }
754 if (rt->dst.dev == dev) { /* is this necessary? */
755 netdev_dbg(dev, "circular route to %pI4\n", &fl4->daddr);
Pravin B Shelare305ac62015-08-26 23:46:52 -0700756 ip_rt_put(rt);
Pravin B Shelarfc4099f2015-10-22 18:17:16 -0700757 return ERR_PTR(-ELOOP);
Pravin B Shelare305ac62015-08-26 23:46:52 -0700758 }
Paolo Abeni468dfff2016-02-12 15:43:58 +0100759 if (use_cache)
760 dst_cache_set_ip4(dst_cache, &rt->dst, fl4->saddr);
Pravin B Shelare305ac62015-08-26 23:46:52 -0700761 return rt;
762}
763
John W. Linville8ed66f02015-10-26 17:01:44 -0400764#if IS_ENABLED(CONFIG_IPV6)
765static struct dst_entry *geneve_get_v6_dst(struct sk_buff *skb,
766 struct net_device *dev,
Girish Moodalbail5b861f62017-07-20 22:44:20 -0700767 struct geneve_sock *gs6,
John W. Linville8ed66f02015-10-26 17:01:44 -0400768 struct flowi6 *fl6,
pravin shelarc3ef5aa2016-11-21 11:02:59 -0800769 const struct ip_tunnel_info *info)
John W. Linville8ed66f02015-10-26 17:01:44 -0400770{
Daniel Borkmanndb3c6132016-03-04 15:15:07 +0100771 bool use_cache = ip_tunnel_dst_cache_usable(skb, info);
John W. Linville8ed66f02015-10-26 17:01:44 -0400772 struct geneve_dev *geneve = netdev_priv(dev);
John W. Linville8ed66f02015-10-26 17:01:44 -0400773 struct dst_entry *dst = NULL;
Paolo Abeni468dfff2016-02-12 15:43:58 +0100774 struct dst_cache *dst_cache;
John W. Linville3a56f862015-10-26 17:01:45 -0400775 __u8 prio;
John W. Linville8ed66f02015-10-26 17:01:44 -0400776
pravin shelarfceb9c32016-10-28 09:59:16 -0700777 if (!gs6)
778 return ERR_PTR(-EIO);
779
John W. Linville8ed66f02015-10-26 17:01:44 -0400780 memset(fl6, 0, sizeof(*fl6));
781 fl6->flowi6_mark = skb->mark;
782 fl6->flowi6_proto = IPPROTO_UDP;
pravin shelar9b4437a2016-11-21 11:02:58 -0800783 fl6->daddr = info->key.u.ipv6.dst;
784 fl6->saddr = info->key.u.ipv6.src;
785 prio = info->key.tos;
786 if ((prio == 1) && !geneve->collect_md) {
787 prio = ip_tunnel_get_dsfield(ip_hdr(skb), skb);
788 use_cache = false;
Paolo Abeni468dfff2016-02-12 15:43:58 +0100789 }
790
pravin shelar9b4437a2016-11-21 11:02:58 -0800791 fl6->flowlabel = ip6_make_flowinfo(RT_TOS(prio),
792 info->key.label);
pravin shelarc3ef5aa2016-11-21 11:02:59 -0800793 dst_cache = (struct dst_cache *)&info->dst_cache;
Paolo Abeni468dfff2016-02-12 15:43:58 +0100794 if (use_cache) {
795 dst = dst_cache_get_ip6(dst_cache, &fl6->saddr);
796 if (dst)
797 return dst;
John W. Linville8ed66f02015-10-26 17:01:44 -0400798 }
John W. Linville8ed66f02015-10-26 17:01:44 -0400799 if (ipv6_stub->ipv6_dst_lookup(geneve->net, gs6->sock->sk, &dst, fl6)) {
800 netdev_dbg(dev, "no route to %pI6\n", &fl6->daddr);
801 return ERR_PTR(-ENETUNREACH);
802 }
803 if (dst->dev == dev) { /* is this necessary? */
804 netdev_dbg(dev, "circular route to %pI6\n", &fl6->daddr);
805 dst_release(dst);
806 return ERR_PTR(-ELOOP);
807 }
808
Paolo Abeni468dfff2016-02-12 15:43:58 +0100809 if (use_cache)
810 dst_cache_set_ip6(dst_cache, dst, &fl6->saddr);
John W. Linville8ed66f02015-10-26 17:01:44 -0400811 return dst;
812}
813#endif
814
pravin shelar9b4437a2016-11-21 11:02:58 -0800815static int geneve_xmit_skb(struct sk_buff *skb, struct net_device *dev,
pravin shelarc3ef5aa2016-11-21 11:02:59 -0800816 struct geneve_dev *geneve,
817 const struct ip_tunnel_info *info)
Pravin B Shelare305ac62015-08-26 23:46:52 -0700818{
pravin shelar9b4437a2016-11-21 11:02:58 -0800819 bool xnet = !net_eq(geneve->net, dev_net(geneve->dev));
820 struct geneve_sock *gs4 = rcu_dereference(geneve->sock4);
821 const struct ip_tunnel_key *key = &info->key;
822 struct rtable *rt;
John W. Linville2d07dc72015-05-13 12:57:30 -0400823 struct flowi4 fl4;
John W. Linville8760ce52015-06-01 15:51:34 -0400824 __u8 tos, ttl;
Pravin B Shelare305ac62015-08-26 23:46:52 -0700825 __be16 sport;
Pravin B Shelar371bd102015-08-26 23:46:54 -0700826 __be16 df;
pravin shelarbcceeec2016-11-21 11:03:00 -0800827 int err;
John W. Linville2d07dc72015-05-13 12:57:30 -0400828
Girish Moodalbail5b861f62017-07-20 22:44:20 -0700829 rt = geneve_get_v4_rt(skb, dev, gs4, &fl4, info);
pravin shelar9b4437a2016-11-21 11:02:58 -0800830 if (IS_ERR(rt))
831 return PTR_ERR(rt);
Pravin B Shelar371bd102015-08-26 23:46:54 -0700832
Stefano Brivio6b4f92a2018-10-12 23:53:59 +0200833 skb_tunnel_check_pmtu(skb, &rt->dst,
834 GENEVE_IPV4_HLEN + info->options_len);
Xin Long52a589d2017-12-25 14:43:58 +0800835
Pravin B Shelar371bd102015-08-26 23:46:54 -0700836 sport = udp_flow_src_port(geneve->net, skb, 1, USHRT_MAX, true);
pravin shelar9b4437a2016-11-21 11:02:58 -0800837 if (geneve->collect_md) {
838 tos = ip_tunnel_ecn_encap(key->tos, ip_hdr(skb), skb);
Pravin B Shelar371bd102015-08-26 23:46:54 -0700839 ttl = key->ttl;
Pravin B Shelare305ac62015-08-26 23:46:52 -0700840 } else {
pravin shelar9b4437a2016-11-21 11:02:58 -0800841 tos = ip_tunnel_ecn_encap(fl4.flowi4_tos, ip_hdr(skb), skb);
842 ttl = key->ttl ? : ip4_dst_hoplimit(&rt->dst);
John W. Linville2d07dc72015-05-13 12:57:30 -0400843 }
pravin shelar9b4437a2016-11-21 11:02:58 -0800844 df = key->tun_flags & TUNNEL_DONT_FRAGMENT ? htons(IP_DF) : 0;
845
pravin shelarc3ef5aa2016-11-21 11:02:59 -0800846 err = geneve_build_skb(&rt->dst, skb, info, xnet, sizeof(struct iphdr));
pravin shelar9b4437a2016-11-21 11:02:58 -0800847 if (unlikely(err))
848 return err;
849
Pravin B Shelar039f5062015-12-24 14:34:54 -0800850 udp_tunnel_xmit_skb(rt, gs4->sock->sk, skb, fl4.saddr, fl4.daddr,
pravin shelar9b4437a2016-11-21 11:02:58 -0800851 tos, ttl, df, sport, geneve->info.key.tp_dst,
Pravin B Shelar039f5062015-12-24 14:34:54 -0800852 !net_eq(geneve->net, dev_net(geneve->dev)),
pravin shelar9b4437a2016-11-21 11:02:58 -0800853 !(info->key.tun_flags & TUNNEL_CSUM));
854 return 0;
John W. Linville2d07dc72015-05-13 12:57:30 -0400855}
856
John W. Linville8ed66f02015-10-26 17:01:44 -0400857#if IS_ENABLED(CONFIG_IPV6)
pravin shelar9b4437a2016-11-21 11:02:58 -0800858static int geneve6_xmit_skb(struct sk_buff *skb, struct net_device *dev,
pravin shelarc3ef5aa2016-11-21 11:02:59 -0800859 struct geneve_dev *geneve,
860 const struct ip_tunnel_info *info)
John W. Linville8ed66f02015-10-26 17:01:44 -0400861{
pravin shelar9b4437a2016-11-21 11:02:58 -0800862 bool xnet = !net_eq(geneve->net, dev_net(geneve->dev));
863 struct geneve_sock *gs6 = rcu_dereference(geneve->sock6);
864 const struct ip_tunnel_key *key = &info->key;
John W. Linville8ed66f02015-10-26 17:01:44 -0400865 struct dst_entry *dst = NULL;
John W. Linville8ed66f02015-10-26 17:01:44 -0400866 struct flowi6 fl6;
John W. Linville3a56f862015-10-26 17:01:45 -0400867 __u8 prio, ttl;
John W. Linville8ed66f02015-10-26 17:01:44 -0400868 __be16 sport;
pravin shelarbcceeec2016-11-21 11:03:00 -0800869 int err;
John W. Linville8ed66f02015-10-26 17:01:44 -0400870
Girish Moodalbail5b861f62017-07-20 22:44:20 -0700871 dst = geneve_get_v6_dst(skb, dev, gs6, &fl6, info);
pravin shelar9b4437a2016-11-21 11:02:58 -0800872 if (IS_ERR(dst))
873 return PTR_ERR(dst);
John W. Linville8ed66f02015-10-26 17:01:44 -0400874
Stefano Brivio6b4f92a2018-10-12 23:53:59 +0200875 skb_tunnel_check_pmtu(skb, dst, GENEVE_IPV6_HLEN + info->options_len);
Xin Long52a589d2017-12-25 14:43:58 +0800876
John W. Linville8ed66f02015-10-26 17:01:44 -0400877 sport = udp_flow_src_port(geneve->net, skb, 1, USHRT_MAX, true);
pravin shelar9b4437a2016-11-21 11:02:58 -0800878 if (geneve->collect_md) {
879 prio = ip_tunnel_ecn_encap(key->tos, ip_hdr(skb), skb);
John W. Linville8ed66f02015-10-26 17:01:44 -0400880 ttl = key->ttl;
881 } else {
Daniel Borkmann95caf6f2016-03-18 18:37:58 +0100882 prio = ip_tunnel_ecn_encap(ip6_tclass(fl6.flowlabel),
pravin shelar9b4437a2016-11-21 11:02:58 -0800883 ip_hdr(skb), skb);
884 ttl = key->ttl ? : ip6_dst_hoplimit(dst);
John W. Linville8ed66f02015-10-26 17:01:44 -0400885 }
Haishuang Yan31ac1c12016-11-28 13:26:58 +0800886 err = geneve_build_skb(dst, skb, info, xnet, sizeof(struct ipv6hdr));
pravin shelar9b4437a2016-11-21 11:02:58 -0800887 if (unlikely(err))
888 return err;
Daniel Borkmann8eb3b992016-03-09 03:00:04 +0100889
Pravin B Shelar039f5062015-12-24 14:34:54 -0800890 udp_tunnel6_xmit_skb(dst, gs6->sock->sk, skb, dev,
pravin shelar9b4437a2016-11-21 11:02:58 -0800891 &fl6.saddr, &fl6.daddr, prio, ttl,
892 info->key.label, sport, geneve->info.key.tp_dst,
893 !(info->key.tun_flags & TUNNEL_CSUM));
894 return 0;
John W. Linville8ed66f02015-10-26 17:01:44 -0400895}
896#endif
897
898static netdev_tx_t geneve_xmit(struct sk_buff *skb, struct net_device *dev)
899{
900 struct geneve_dev *geneve = netdev_priv(dev);
901 struct ip_tunnel_info *info = NULL;
pravin shelar9b4437a2016-11-21 11:02:58 -0800902 int err;
John W. Linville8ed66f02015-10-26 17:01:44 -0400903
pravin shelar9b4437a2016-11-21 11:02:58 -0800904 if (geneve->collect_md) {
John W. Linville8ed66f02015-10-26 17:01:44 -0400905 info = skb_tunnel_info(skb);
pravin shelar9b4437a2016-11-21 11:02:58 -0800906 if (unlikely(!info || !(info->mode & IP_TUNNEL_INFO_TX))) {
907 err = -EINVAL;
908 netdev_dbg(dev, "no tunnel metadata\n");
909 goto tx_error;
910 }
911 } else {
912 info = &geneve->info;
913 }
John W. Linville8ed66f02015-10-26 17:01:44 -0400914
Jakub Kicinskia717e3f2017-02-24 11:43:37 -0800915 rcu_read_lock();
John W. Linville8ed66f02015-10-26 17:01:44 -0400916#if IS_ENABLED(CONFIG_IPV6)
pravin shelar9b4437a2016-11-21 11:02:58 -0800917 if (info->mode & IP_TUNNEL_INFO_IPV6)
918 err = geneve6_xmit_skb(skb, dev, geneve, info);
919 else
John W. Linville8ed66f02015-10-26 17:01:44 -0400920#endif
pravin shelar9b4437a2016-11-21 11:02:58 -0800921 err = geneve_xmit_skb(skb, dev, geneve, info);
Jakub Kicinskia717e3f2017-02-24 11:43:37 -0800922 rcu_read_unlock();
pravin shelar9b4437a2016-11-21 11:02:58 -0800923
924 if (likely(!err))
925 return NETDEV_TX_OK;
926tx_error:
927 dev_kfree_skb(skb);
928
929 if (err == -ELOOP)
930 dev->stats.collisions++;
931 else if (err == -ENETUNREACH)
932 dev->stats.tx_carrier_errors++;
933
934 dev->stats.tx_errors++;
935 return NETDEV_TX_OK;
John W. Linville8ed66f02015-10-26 17:01:44 -0400936}
937
Jarod Wilson91572082016-10-20 13:55:20 -0400938static int geneve_change_mtu(struct net_device *dev, int new_mtu)
David Wragg55e5bfb2016-02-10 00:05:57 +0000939{
Jarod Wilson91572082016-10-20 13:55:20 -0400940 if (new_mtu > dev->max_mtu)
941 new_mtu = dev->max_mtu;
Alexey Kodanev321acc12018-04-19 15:42:31 +0300942 else if (new_mtu < dev->min_mtu)
943 new_mtu = dev->min_mtu;
David Wraggaeee0e62016-02-18 17:43:29 +0000944
David Wragg55e5bfb2016-02-10 00:05:57 +0000945 dev->mtu = new_mtu;
946 return 0;
947}
948
Pravin B Shelarfc4099f2015-10-22 18:17:16 -0700949static int geneve_fill_metadata_dst(struct net_device *dev, struct sk_buff *skb)
950{
951 struct ip_tunnel_info *info = skb_tunnel_info(skb);
952 struct geneve_dev *geneve = netdev_priv(dev);
Pravin B Shelarfc4099f2015-10-22 18:17:16 -0700953
John W. Linvilleb8812fa2015-10-27 09:49:00 -0400954 if (ip_tunnel_info_af(info) == AF_INET) {
pravin shelar9b4437a2016-11-21 11:02:58 -0800955 struct rtable *rt;
956 struct flowi4 fl4;
Girish Moodalbail5b861f62017-07-20 22:44:20 -0700957 struct geneve_sock *gs4 = rcu_dereference(geneve->sock4);
pravin shelar9b4437a2016-11-21 11:02:58 -0800958
Girish Moodalbail5b861f62017-07-20 22:44:20 -0700959 rt = geneve_get_v4_rt(skb, dev, gs4, &fl4, info);
John W. Linvilleb8812fa2015-10-27 09:49:00 -0400960 if (IS_ERR(rt))
961 return PTR_ERR(rt);
962
963 ip_rt_put(rt);
964 info->key.u.ipv4.src = fl4.saddr;
965#if IS_ENABLED(CONFIG_IPV6)
966 } else if (ip_tunnel_info_af(info) == AF_INET6) {
pravin shelar9b4437a2016-11-21 11:02:58 -0800967 struct dst_entry *dst;
968 struct flowi6 fl6;
Girish Moodalbail5b861f62017-07-20 22:44:20 -0700969 struct geneve_sock *gs6 = rcu_dereference(geneve->sock6);
pravin shelar9b4437a2016-11-21 11:02:58 -0800970
Girish Moodalbail5b861f62017-07-20 22:44:20 -0700971 dst = geneve_get_v6_dst(skb, dev, gs6, &fl6, info);
John W. Linvilleb8812fa2015-10-27 09:49:00 -0400972 if (IS_ERR(dst))
973 return PTR_ERR(dst);
974
975 dst_release(dst);
976 info->key.u.ipv6.src = fl6.saddr;
977#endif
978 } else {
Pravin B Shelarfc4099f2015-10-22 18:17:16 -0700979 return -EINVAL;
John W. Linvilleb8812fa2015-10-27 09:49:00 -0400980 }
Pravin B Shelarfc4099f2015-10-22 18:17:16 -0700981
Pravin B Shelarfc4099f2015-10-22 18:17:16 -0700982 info->key.tp_src = udp_flow_src_port(geneve->net, skb,
983 1, USHRT_MAX, true);
pravin shelar9b4437a2016-11-21 11:02:58 -0800984 info->key.tp_dst = geneve->info.key.tp_dst;
Pravin B Shelarfc4099f2015-10-22 18:17:16 -0700985 return 0;
986}
987
John W. Linville2d07dc72015-05-13 12:57:30 -0400988static const struct net_device_ops geneve_netdev_ops = {
989 .ndo_init = geneve_init,
990 .ndo_uninit = geneve_uninit,
991 .ndo_open = geneve_open,
992 .ndo_stop = geneve_stop,
993 .ndo_start_xmit = geneve_xmit,
994 .ndo_get_stats64 = ip_tunnel_get_stats64,
David Wragg55e5bfb2016-02-10 00:05:57 +0000995 .ndo_change_mtu = geneve_change_mtu,
John W. Linville2d07dc72015-05-13 12:57:30 -0400996 .ndo_validate_addr = eth_validate_addr,
997 .ndo_set_mac_address = eth_mac_addr,
Pravin B Shelarfc4099f2015-10-22 18:17:16 -0700998 .ndo_fill_metadata_dst = geneve_fill_metadata_dst,
John W. Linville2d07dc72015-05-13 12:57:30 -0400999};
1000
1001static void geneve_get_drvinfo(struct net_device *dev,
1002 struct ethtool_drvinfo *drvinfo)
1003{
1004 strlcpy(drvinfo->version, GENEVE_NETDEV_VER, sizeof(drvinfo->version));
1005 strlcpy(drvinfo->driver, "geneve", sizeof(drvinfo->driver));
1006}
1007
1008static const struct ethtool_ops geneve_ethtool_ops = {
1009 .get_drvinfo = geneve_get_drvinfo,
1010 .get_link = ethtool_op_get_link,
1011};
1012
1013/* Info for udev, that this is a virtual tunnel endpoint */
1014static struct device_type geneve_type = {
1015 .name = "geneve",
1016};
1017
Sabrina Dubrocae5de25d2016-07-11 13:12:28 +02001018/* Calls the ndo_udp_tunnel_add of the caller in order to
Singhai, Anjali05ca4022015-12-14 12:21:20 -08001019 * supply the listening GENEVE udp ports. Callers are expected
Sabrina Dubrocae5de25d2016-07-11 13:12:28 +02001020 * to implement the ndo_udp_tunnel_add.
Singhai, Anjali05ca4022015-12-14 12:21:20 -08001021 */
Sabrina Dubroca2d2b13f2017-07-21 12:49:32 +02001022static void geneve_offload_rx_ports(struct net_device *dev, bool push)
Singhai, Anjali05ca4022015-12-14 12:21:20 -08001023{
1024 struct net *net = dev_net(dev);
1025 struct geneve_net *gn = net_generic(net, geneve_net_id);
1026 struct geneve_sock *gs;
Hannes Frederic Sowa681e6832016-04-18 21:19:48 +02001027
Singhai, Anjali05ca4022015-12-14 12:21:20 -08001028 rcu_read_lock();
Sabrina Dubroca2d2b13f2017-07-21 12:49:32 +02001029 list_for_each_entry_rcu(gs, &gn->sock_list, list) {
1030 if (push) {
1031 udp_tunnel_push_rx_port(dev, gs->sock,
1032 UDP_TUNNEL_TYPE_GENEVE);
1033 } else {
1034 udp_tunnel_drop_rx_port(dev, gs->sock,
1035 UDP_TUNNEL_TYPE_GENEVE);
1036 }
1037 }
Singhai, Anjali05ca4022015-12-14 12:21:20 -08001038 rcu_read_unlock();
1039}
Singhai, Anjali05ca4022015-12-14 12:21:20 -08001040
John W. Linville2d07dc72015-05-13 12:57:30 -04001041/* Initialize the device structure. */
1042static void geneve_setup(struct net_device *dev)
1043{
1044 ether_setup(dev);
1045
1046 dev->netdev_ops = &geneve_netdev_ops;
1047 dev->ethtool_ops = &geneve_ethtool_ops;
David S. Millercf124db2017-05-08 12:52:56 -04001048 dev->needs_free_netdev = true;
John W. Linville2d07dc72015-05-13 12:57:30 -04001049
1050 SET_NETDEV_DEVTYPE(dev, &geneve_type);
1051
John W. Linville2d07dc72015-05-13 12:57:30 -04001052 dev->features |= NETIF_F_LLTX;
1053 dev->features |= NETIF_F_SG | NETIF_F_HW_CSUM;
1054 dev->features |= NETIF_F_RXCSUM;
1055 dev->features |= NETIF_F_GSO_SOFTWARE;
1056
John W. Linville2d07dc72015-05-13 12:57:30 -04001057 dev->hw_features |= NETIF_F_SG | NETIF_F_HW_CSUM | NETIF_F_RXCSUM;
1058 dev->hw_features |= NETIF_F_GSO_SOFTWARE;
John W. Linville2d07dc72015-05-13 12:57:30 -04001059
Jarod Wilson91572082016-10-20 13:55:20 -04001060 /* MTU range: 68 - (something less than 65535) */
1061 dev->min_mtu = ETH_MIN_MTU;
1062 /* The max_mtu calculation does not take account of GENEVE
1063 * options, to avoid excluding potentially valid
1064 * configurations. This will be further reduced by IPvX hdr size.
1065 */
1066 dev->max_mtu = IP_MAX_MTU - GENEVE_BASE_HLEN - dev->hard_header_len;
1067
John W. Linville2d07dc72015-05-13 12:57:30 -04001068 netif_keep_dst(dev);
Jiri Bencfc41cdb2016-02-17 15:31:35 +01001069 dev->priv_flags &= ~IFF_TX_SKB_SHARING;
Phil Suttered961ac2015-08-18 10:30:31 +02001070 dev->priv_flags |= IFF_LIVE_ADDR_CHANGE | IFF_NO_QUEUE;
Pravin B Shelar87cd3dc2015-08-26 23:46:48 -07001071 eth_hw_addr_random(dev);
John W. Linville2d07dc72015-05-13 12:57:30 -04001072}
1073
1074static const struct nla_policy geneve_policy[IFLA_GENEVE_MAX + 1] = {
1075 [IFLA_GENEVE_ID] = { .type = NLA_U32 },
1076 [IFLA_GENEVE_REMOTE] = { .len = FIELD_SIZEOF(struct iphdr, daddr) },
John W. Linville8ed66f02015-10-26 17:01:44 -04001077 [IFLA_GENEVE_REMOTE6] = { .len = sizeof(struct in6_addr) },
John W. Linville8760ce52015-06-01 15:51:34 -04001078 [IFLA_GENEVE_TTL] = { .type = NLA_U8 },
John W. Linvilled8951122015-06-01 15:51:35 -04001079 [IFLA_GENEVE_TOS] = { .type = NLA_U8 },
Daniel Borkmann8eb3b992016-03-09 03:00:04 +01001080 [IFLA_GENEVE_LABEL] = { .type = NLA_U32 },
Pravin B Shelarcd7918b2015-08-26 23:46:51 -07001081 [IFLA_GENEVE_PORT] = { .type = NLA_U16 },
Pravin B Shelare305ac62015-08-26 23:46:52 -07001082 [IFLA_GENEVE_COLLECT_METADATA] = { .type = NLA_FLAG },
Tom Herbertabe492b2015-12-10 12:37:45 -08001083 [IFLA_GENEVE_UDP_CSUM] = { .type = NLA_U8 },
1084 [IFLA_GENEVE_UDP_ZERO_CSUM6_TX] = { .type = NLA_U8 },
1085 [IFLA_GENEVE_UDP_ZERO_CSUM6_RX] = { .type = NLA_U8 },
John W. Linville2d07dc72015-05-13 12:57:30 -04001086};
1087
Matthias Schiffera8b8a8892017-06-25 23:56:01 +02001088static int geneve_validate(struct nlattr *tb[], struct nlattr *data[],
1089 struct netlink_ext_ack *extack)
John W. Linville2d07dc72015-05-13 12:57:30 -04001090{
1091 if (tb[IFLA_ADDRESS]) {
Girish Moodalbailc5ebc442017-08-09 01:09:28 -07001092 if (nla_len(tb[IFLA_ADDRESS]) != ETH_ALEN) {
1093 NL_SET_ERR_MSG_ATTR(extack, tb[IFLA_ADDRESS],
1094 "Provided link layer address is not Ethernet");
John W. Linville2d07dc72015-05-13 12:57:30 -04001095 return -EINVAL;
Girish Moodalbailc5ebc442017-08-09 01:09:28 -07001096 }
John W. Linville2d07dc72015-05-13 12:57:30 -04001097
Girish Moodalbailc5ebc442017-08-09 01:09:28 -07001098 if (!is_valid_ether_addr(nla_data(tb[IFLA_ADDRESS]))) {
1099 NL_SET_ERR_MSG_ATTR(extack, tb[IFLA_ADDRESS],
1100 "Provided Ethernet address is not unicast");
John W. Linville2d07dc72015-05-13 12:57:30 -04001101 return -EADDRNOTAVAIL;
Girish Moodalbailc5ebc442017-08-09 01:09:28 -07001102 }
John W. Linville2d07dc72015-05-13 12:57:30 -04001103 }
1104
Girish Moodalbailc5ebc442017-08-09 01:09:28 -07001105 if (!data) {
1106 NL_SET_ERR_MSG(extack,
1107 "Not enough attributes provided to perform the operation");
John W. Linville2d07dc72015-05-13 12:57:30 -04001108 return -EINVAL;
Girish Moodalbailc5ebc442017-08-09 01:09:28 -07001109 }
John W. Linville2d07dc72015-05-13 12:57:30 -04001110
1111 if (data[IFLA_GENEVE_ID]) {
1112 __u32 vni = nla_get_u32(data[IFLA_GENEVE_ID]);
1113
Girish Moodalbailc5ebc442017-08-09 01:09:28 -07001114 if (vni >= GENEVE_N_VID) {
1115 NL_SET_ERR_MSG_ATTR(extack, data[IFLA_GENEVE_ID],
1116 "Geneve ID must be lower than 16777216");
John W. Linville2d07dc72015-05-13 12:57:30 -04001117 return -ERANGE;
Girish Moodalbailc5ebc442017-08-09 01:09:28 -07001118 }
John W. Linville2d07dc72015-05-13 12:57:30 -04001119 }
1120
1121 return 0;
1122}
1123
Pravin B Shelar371bd102015-08-26 23:46:54 -07001124static struct geneve_dev *geneve_find_dev(struct geneve_net *gn,
pravin shelar9b4437a2016-11-21 11:02:58 -08001125 const struct ip_tunnel_info *info,
Pravin B Shelar371bd102015-08-26 23:46:54 -07001126 bool *tun_on_same_port,
1127 bool *tun_collect_md)
1128{
pravin shelar9b4437a2016-11-21 11:02:58 -08001129 struct geneve_dev *geneve, *t = NULL;
Pravin B Shelar371bd102015-08-26 23:46:54 -07001130
1131 *tun_on_same_port = false;
1132 *tun_collect_md = false;
Pravin B Shelar371bd102015-08-26 23:46:54 -07001133 list_for_each_entry(geneve, &gn->geneve_list, next) {
pravin shelar9b4437a2016-11-21 11:02:58 -08001134 if (info->key.tp_dst == geneve->info.key.tp_dst) {
Pravin B Shelar371bd102015-08-26 23:46:54 -07001135 *tun_collect_md = geneve->collect_md;
1136 *tun_on_same_port = true;
1137 }
pravin shelar9b4437a2016-11-21 11:02:58 -08001138 if (info->key.tun_id == geneve->info.key.tun_id &&
1139 info->key.tp_dst == geneve->info.key.tp_dst &&
1140 !memcmp(&info->key.u, &geneve->info.key.u, sizeof(info->key.u)))
Pravin B Shelar371bd102015-08-26 23:46:54 -07001141 t = geneve;
1142 }
1143 return t;
1144}
1145
pravin shelar9b4437a2016-11-21 11:02:58 -08001146static bool is_tnl_info_zero(const struct ip_tunnel_info *info)
1147{
Stefano Brivio3fa5f112017-10-20 13:31:36 +02001148 return !(info->key.tun_id || info->key.tun_flags || info->key.tos ||
1149 info->key.ttl || info->key.label || info->key.tp_src ||
1150 memchr_inv(&info->key.u, 0, sizeof(info->key.u)));
pravin shelar9b4437a2016-11-21 11:02:58 -08001151}
1152
Girish Moodalbail5b861f62017-07-20 22:44:20 -07001153static bool geneve_dst_addr_equal(struct ip_tunnel_info *a,
1154 struct ip_tunnel_info *b)
1155{
1156 if (ip_tunnel_info_af(a) == AF_INET)
1157 return a->key.u.ipv4.dst == b->key.u.ipv4.dst;
1158 else
1159 return ipv6_addr_equal(&a->key.u.ipv6.dst, &b->key.u.ipv6.dst);
1160}
1161
Pravin B Shelare305ac62015-08-26 23:46:52 -07001162static int geneve_configure(struct net *net, struct net_device *dev,
Girish Moodalbailc5ebc442017-08-09 01:09:28 -07001163 struct netlink_ext_ack *extack,
pravin shelar9b4437a2016-11-21 11:02:58 -08001164 const struct ip_tunnel_info *info,
1165 bool metadata, bool ipv6_rx_csum)
John W. Linville2d07dc72015-05-13 12:57:30 -04001166{
1167 struct geneve_net *gn = net_generic(net, geneve_net_id);
Pravin B Shelar371bd102015-08-26 23:46:54 -07001168 struct geneve_dev *t, *geneve = netdev_priv(dev);
1169 bool tun_collect_md, tun_on_same_port;
Paolo Abeni184fc8b2015-12-23 16:54:27 +01001170 int err, encap_len;
John W. Linville2d07dc72015-05-13 12:57:30 -04001171
Girish Moodalbailc5ebc442017-08-09 01:09:28 -07001172 if (metadata && !is_tnl_info_zero(info)) {
1173 NL_SET_ERR_MSG(extack,
1174 "Device is externally controlled, so attributes (VNI, Port, and so on) must not be specified");
John W. Linville8ed66f02015-10-26 17:01:44 -04001175 return -EINVAL;
Girish Moodalbailc5ebc442017-08-09 01:09:28 -07001176 }
John W. Linville2d07dc72015-05-13 12:57:30 -04001177
1178 geneve->net = net;
1179 geneve->dev = dev;
1180
pravin shelar9b4437a2016-11-21 11:02:58 -08001181 t = geneve_find_dev(gn, info, &tun_on_same_port, &tun_collect_md);
Pravin B Shelar371bd102015-08-26 23:46:54 -07001182 if (t)
1183 return -EBUSY;
1184
Paolo Abeni184fc8b2015-12-23 16:54:27 +01001185 /* make enough headroom for basic scenario */
1186 encap_len = GENEVE_BASE_HLEN + ETH_HLEN;
Eric Garver9a1c44d2017-06-02 14:54:10 -04001187 if (!metadata && ip_tunnel_info_af(info) == AF_INET) {
Paolo Abeni184fc8b2015-12-23 16:54:27 +01001188 encap_len += sizeof(struct iphdr);
Jarod Wilson91572082016-10-20 13:55:20 -04001189 dev->max_mtu -= sizeof(struct iphdr);
1190 } else {
Paolo Abeni184fc8b2015-12-23 16:54:27 +01001191 encap_len += sizeof(struct ipv6hdr);
Jarod Wilson91572082016-10-20 13:55:20 -04001192 dev->max_mtu -= sizeof(struct ipv6hdr);
1193 }
Paolo Abeni184fc8b2015-12-23 16:54:27 +01001194 dev->needed_headroom = encap_len + ETH_HLEN;
1195
Pravin B Shelar371bd102015-08-26 23:46:54 -07001196 if (metadata) {
Girish Moodalbailc5ebc442017-08-09 01:09:28 -07001197 if (tun_on_same_port) {
1198 NL_SET_ERR_MSG(extack,
1199 "There can be only one externally controlled device on a destination port");
Pravin B Shelar371bd102015-08-26 23:46:54 -07001200 return -EPERM;
Girish Moodalbailc5ebc442017-08-09 01:09:28 -07001201 }
Pravin B Shelar371bd102015-08-26 23:46:54 -07001202 } else {
Girish Moodalbailc5ebc442017-08-09 01:09:28 -07001203 if (tun_collect_md) {
1204 NL_SET_ERR_MSG(extack,
1205 "There already exists an externally controlled device on this destination port");
Pravin B Shelar371bd102015-08-26 23:46:54 -07001206 return -EPERM;
Girish Moodalbailc5ebc442017-08-09 01:09:28 -07001207 }
Pravin B Shelar371bd102015-08-26 23:46:54 -07001208 }
1209
pravin shelar9b4437a2016-11-21 11:02:58 -08001210 dst_cache_reset(&geneve->info.dst_cache);
1211 geneve->info = *info;
1212 geneve->collect_md = metadata;
1213 geneve->use_udp6_rx_checksums = ipv6_rx_csum;
Paolo Abeni468dfff2016-02-12 15:43:58 +01001214
John W. Linville2d07dc72015-05-13 12:57:30 -04001215 err = register_netdevice(dev);
1216 if (err)
1217 return err;
1218
1219 list_add(&geneve->next, &gn->geneve_list);
John W. Linville2d07dc72015-05-13 12:57:30 -04001220 return 0;
1221}
1222
pravin shelar9b4437a2016-11-21 11:02:58 -08001223static void init_tnl_info(struct ip_tunnel_info *info, __u16 dst_port)
1224{
1225 memset(info, 0, sizeof(*info));
1226 info->key.tp_dst = htons(dst_port);
1227}
1228
Girish Moodalbailc5ebc442017-08-09 01:09:28 -07001229static int geneve_nl2info(struct nlattr *tb[], struct nlattr *data[],
1230 struct netlink_ext_ack *extack,
1231 struct ip_tunnel_info *info, bool *metadata,
1232 bool *use_udp6_rx_checksums, bool changelink)
Pravin B Shelare305ac62015-08-26 23:46:52 -07001233{
Girish Moodalbailc5ebc442017-08-09 01:09:28 -07001234 int attrtype;
1235
1236 if (data[IFLA_GENEVE_REMOTE] && data[IFLA_GENEVE_REMOTE6]) {
1237 NL_SET_ERR_MSG(extack,
1238 "Cannot specify both IPv4 and IPv6 Remote addresses");
John W. Linville8ed66f02015-10-26 17:01:44 -04001239 return -EINVAL;
Girish Moodalbailc5ebc442017-08-09 01:09:28 -07001240 }
John W. Linville8ed66f02015-10-26 17:01:44 -04001241
1242 if (data[IFLA_GENEVE_REMOTE]) {
Girish Moodalbailc5ebc442017-08-09 01:09:28 -07001243 if (changelink && (ip_tunnel_info_af(info) == AF_INET6)) {
1244 attrtype = IFLA_GENEVE_REMOTE;
1245 goto change_notsup;
1246 }
Girish Moodalbail5b861f62017-07-20 22:44:20 -07001247
1248 info->key.u.ipv4.dst =
John W. Linville8ed66f02015-10-26 17:01:44 -04001249 nla_get_in_addr(data[IFLA_GENEVE_REMOTE]);
John W. Linville8ed66f02015-10-26 17:01:44 -04001250
Girish Moodalbail5b861f62017-07-20 22:44:20 -07001251 if (IN_MULTICAST(ntohl(info->key.u.ipv4.dst))) {
Girish Moodalbailc5ebc442017-08-09 01:09:28 -07001252 NL_SET_ERR_MSG_ATTR(extack, data[IFLA_GENEVE_REMOTE],
1253 "Remote IPv4 address cannot be Multicast");
John W. Linville8ed66f02015-10-26 17:01:44 -04001254 return -EINVAL;
1255 }
1256 }
1257
pravin shelar9b4437a2016-11-21 11:02:58 -08001258 if (data[IFLA_GENEVE_REMOTE6]) {
Alexey Kodanev4c52a882018-04-19 15:42:29 +03001259#if IS_ENABLED(CONFIG_IPV6)
Girish Moodalbailc5ebc442017-08-09 01:09:28 -07001260 if (changelink && (ip_tunnel_info_af(info) == AF_INET)) {
1261 attrtype = IFLA_GENEVE_REMOTE6;
1262 goto change_notsup;
1263 }
Girish Moodalbail5b861f62017-07-20 22:44:20 -07001264
1265 info->mode = IP_TUNNEL_INFO_IPV6;
1266 info->key.u.ipv6.dst =
pravin shelar9b4437a2016-11-21 11:02:58 -08001267 nla_get_in6_addr(data[IFLA_GENEVE_REMOTE6]);
Pravin B Shelare305ac62015-08-26 23:46:52 -07001268
Girish Moodalbail5b861f62017-07-20 22:44:20 -07001269 if (ipv6_addr_type(&info->key.u.ipv6.dst) &
pravin shelar9b4437a2016-11-21 11:02:58 -08001270 IPV6_ADDR_LINKLOCAL) {
Girish Moodalbailc5ebc442017-08-09 01:09:28 -07001271 NL_SET_ERR_MSG_ATTR(extack, data[IFLA_GENEVE_REMOTE6],
1272 "Remote IPv6 address cannot be link-local");
pravin shelar9b4437a2016-11-21 11:02:58 -08001273 return -EINVAL;
1274 }
Girish Moodalbail5b861f62017-07-20 22:44:20 -07001275 if (ipv6_addr_is_multicast(&info->key.u.ipv6.dst)) {
Girish Moodalbailc5ebc442017-08-09 01:09:28 -07001276 NL_SET_ERR_MSG_ATTR(extack, data[IFLA_GENEVE_REMOTE6],
1277 "Remote IPv6 address cannot be Multicast");
pravin shelar9b4437a2016-11-21 11:02:58 -08001278 return -EINVAL;
1279 }
Girish Moodalbail5b861f62017-07-20 22:44:20 -07001280 info->key.tun_flags |= TUNNEL_CSUM;
1281 *use_udp6_rx_checksums = true;
pravin shelar9b4437a2016-11-21 11:02:58 -08001282#else
Girish Moodalbailc5ebc442017-08-09 01:09:28 -07001283 NL_SET_ERR_MSG_ATTR(extack, data[IFLA_GENEVE_REMOTE6],
1284 "IPv6 support not enabled in the kernel");
pravin shelar9b4437a2016-11-21 11:02:58 -08001285 return -EPFNOSUPPORT;
1286#endif
1287 }
1288
1289 if (data[IFLA_GENEVE_ID]) {
1290 __u32 vni;
1291 __u8 tvni[3];
Girish Moodalbail5b861f62017-07-20 22:44:20 -07001292 __be64 tunid;
pravin shelar9b4437a2016-11-21 11:02:58 -08001293
1294 vni = nla_get_u32(data[IFLA_GENEVE_ID]);
1295 tvni[0] = (vni & 0x00ff0000) >> 16;
1296 tvni[1] = (vni & 0x0000ff00) >> 8;
1297 tvni[2] = vni & 0x000000ff;
1298
Girish Moodalbail5b861f62017-07-20 22:44:20 -07001299 tunid = vni_to_tunnel_id(tvni);
Girish Moodalbailc5ebc442017-08-09 01:09:28 -07001300 if (changelink && (tunid != info->key.tun_id)) {
1301 attrtype = IFLA_GENEVE_ID;
1302 goto change_notsup;
1303 }
Girish Moodalbail5b861f62017-07-20 22:44:20 -07001304 info->key.tun_id = tunid;
pravin shelar9b4437a2016-11-21 11:02:58 -08001305 }
Girish Moodalbail5b861f62017-07-20 22:44:20 -07001306
Pravin B Shelare305ac62015-08-26 23:46:52 -07001307 if (data[IFLA_GENEVE_TTL])
Girish Moodalbail5b861f62017-07-20 22:44:20 -07001308 info->key.ttl = nla_get_u8(data[IFLA_GENEVE_TTL]);
Pravin B Shelare305ac62015-08-26 23:46:52 -07001309
1310 if (data[IFLA_GENEVE_TOS])
Girish Moodalbail5b861f62017-07-20 22:44:20 -07001311 info->key.tos = nla_get_u8(data[IFLA_GENEVE_TOS]);
Pravin B Shelare305ac62015-08-26 23:46:52 -07001312
pravin shelar9b4437a2016-11-21 11:02:58 -08001313 if (data[IFLA_GENEVE_LABEL]) {
Girish Moodalbail5b861f62017-07-20 22:44:20 -07001314 info->key.label = nla_get_be32(data[IFLA_GENEVE_LABEL]) &
pravin shelar9b4437a2016-11-21 11:02:58 -08001315 IPV6_FLOWLABEL_MASK;
Girish Moodalbailc5ebc442017-08-09 01:09:28 -07001316 if (info->key.label && (!(info->mode & IP_TUNNEL_INFO_IPV6))) {
1317 NL_SET_ERR_MSG_ATTR(extack, data[IFLA_GENEVE_LABEL],
1318 "Label attribute only applies for IPv6 Geneve devices");
pravin shelar9b4437a2016-11-21 11:02:58 -08001319 return -EINVAL;
Girish Moodalbailc5ebc442017-08-09 01:09:28 -07001320 }
pravin shelar9b4437a2016-11-21 11:02:58 -08001321 }
Daniel Borkmann8eb3b992016-03-09 03:00:04 +01001322
Girish Moodalbail5b861f62017-07-20 22:44:20 -07001323 if (data[IFLA_GENEVE_PORT]) {
Girish Moodalbailc5ebc442017-08-09 01:09:28 -07001324 if (changelink) {
1325 attrtype = IFLA_GENEVE_PORT;
1326 goto change_notsup;
1327 }
Girish Moodalbail5b861f62017-07-20 22:44:20 -07001328 info->key.tp_dst = nla_get_be16(data[IFLA_GENEVE_PORT]);
1329 }
Pravin B Shelare305ac62015-08-26 23:46:52 -07001330
Girish Moodalbail5b861f62017-07-20 22:44:20 -07001331 if (data[IFLA_GENEVE_COLLECT_METADATA]) {
Girish Moodalbailc5ebc442017-08-09 01:09:28 -07001332 if (changelink) {
1333 attrtype = IFLA_GENEVE_COLLECT_METADATA;
1334 goto change_notsup;
1335 }
Girish Moodalbail5b861f62017-07-20 22:44:20 -07001336 *metadata = true;
1337 }
Pravin B Shelare305ac62015-08-26 23:46:52 -07001338
Girish Moodalbail5b861f62017-07-20 22:44:20 -07001339 if (data[IFLA_GENEVE_UDP_CSUM]) {
Girish Moodalbailc5ebc442017-08-09 01:09:28 -07001340 if (changelink) {
1341 attrtype = IFLA_GENEVE_UDP_CSUM;
1342 goto change_notsup;
1343 }
Girish Moodalbail5b861f62017-07-20 22:44:20 -07001344 if (nla_get_u8(data[IFLA_GENEVE_UDP_CSUM]))
1345 info->key.tun_flags |= TUNNEL_CSUM;
1346 }
Tom Herbertabe492b2015-12-10 12:37:45 -08001347
Girish Moodalbail5b861f62017-07-20 22:44:20 -07001348 if (data[IFLA_GENEVE_UDP_ZERO_CSUM6_TX]) {
Hangbin Liuf9094b72017-11-23 11:27:24 +08001349#if IS_ENABLED(CONFIG_IPV6)
Girish Moodalbailc5ebc442017-08-09 01:09:28 -07001350 if (changelink) {
1351 attrtype = IFLA_GENEVE_UDP_ZERO_CSUM6_TX;
1352 goto change_notsup;
1353 }
Girish Moodalbail5b861f62017-07-20 22:44:20 -07001354 if (nla_get_u8(data[IFLA_GENEVE_UDP_ZERO_CSUM6_TX]))
1355 info->key.tun_flags &= ~TUNNEL_CSUM;
Hangbin Liuf9094b72017-11-23 11:27:24 +08001356#else
1357 NL_SET_ERR_MSG_ATTR(extack, data[IFLA_GENEVE_UDP_ZERO_CSUM6_TX],
1358 "IPv6 support not enabled in the kernel");
1359 return -EPFNOSUPPORT;
1360#endif
Girish Moodalbail5b861f62017-07-20 22:44:20 -07001361 }
Tom Herbertabe492b2015-12-10 12:37:45 -08001362
Girish Moodalbail5b861f62017-07-20 22:44:20 -07001363 if (data[IFLA_GENEVE_UDP_ZERO_CSUM6_RX]) {
Hangbin Liuf9094b72017-11-23 11:27:24 +08001364#if IS_ENABLED(CONFIG_IPV6)
Girish Moodalbailc5ebc442017-08-09 01:09:28 -07001365 if (changelink) {
1366 attrtype = IFLA_GENEVE_UDP_ZERO_CSUM6_RX;
1367 goto change_notsup;
1368 }
Girish Moodalbail5b861f62017-07-20 22:44:20 -07001369 if (nla_get_u8(data[IFLA_GENEVE_UDP_ZERO_CSUM6_RX]))
1370 *use_udp6_rx_checksums = false;
Hangbin Liuf9094b72017-11-23 11:27:24 +08001371#else
1372 NL_SET_ERR_MSG_ATTR(extack, data[IFLA_GENEVE_UDP_ZERO_CSUM6_RX],
1373 "IPv6 support not enabled in the kernel");
1374 return -EPFNOSUPPORT;
1375#endif
Girish Moodalbail5b861f62017-07-20 22:44:20 -07001376 }
1377
1378 return 0;
Girish Moodalbailc5ebc442017-08-09 01:09:28 -07001379change_notsup:
1380 NL_SET_ERR_MSG_ATTR(extack, data[attrtype],
1381 "Changing VNI, Port, endpoint IP address family, external, and UDP checksum attributes are not supported");
1382 return -EOPNOTSUPP;
Girish Moodalbail5b861f62017-07-20 22:44:20 -07001383}
1384
Alexey Kodanevc40e89f2018-04-19 15:42:32 +03001385static void geneve_link_config(struct net_device *dev,
1386 struct ip_tunnel_info *info, struct nlattr *tb[])
1387{
1388 struct geneve_dev *geneve = netdev_priv(dev);
1389 int ldev_mtu = 0;
1390
1391 if (tb[IFLA_MTU]) {
1392 geneve_change_mtu(dev, nla_get_u32(tb[IFLA_MTU]));
1393 return;
1394 }
1395
1396 switch (ip_tunnel_info_af(info)) {
1397 case AF_INET: {
1398 struct flowi4 fl4 = { .daddr = info->key.u.ipv4.dst };
1399 struct rtable *rt = ip_route_output_key(geneve->net, &fl4);
1400
1401 if (!IS_ERR(rt) && rt->dst.dev) {
1402 ldev_mtu = rt->dst.dev->mtu - GENEVE_IPV4_HLEN;
1403 ip_rt_put(rt);
1404 }
1405 break;
1406 }
1407#if IS_ENABLED(CONFIG_IPV6)
1408 case AF_INET6: {
1409 struct rt6_info *rt = rt6_lookup(geneve->net,
1410 &info->key.u.ipv6.dst, NULL, 0,
1411 NULL, 0);
1412
1413 if (rt && rt->dst.dev)
1414 ldev_mtu = rt->dst.dev->mtu - GENEVE_IPV6_HLEN;
1415 ip6_rt_put(rt);
1416 break;
1417 }
1418#endif
1419 }
1420
1421 if (ldev_mtu <= 0)
1422 return;
1423
1424 geneve_change_mtu(dev, ldev_mtu - info->options_len);
1425}
1426
Girish Moodalbail5b861f62017-07-20 22:44:20 -07001427static int geneve_newlink(struct net *net, struct net_device *dev,
1428 struct nlattr *tb[], struct nlattr *data[],
1429 struct netlink_ext_ack *extack)
1430{
1431 bool use_udp6_rx_checksums = false;
1432 struct ip_tunnel_info info;
1433 bool metadata = false;
1434 int err;
1435
1436 init_tnl_info(&info, GENEVE_UDP_PORT);
Girish Moodalbailc5ebc442017-08-09 01:09:28 -07001437 err = geneve_nl2info(tb, data, extack, &info, &metadata,
Girish Moodalbail5b861f62017-07-20 22:44:20 -07001438 &use_udp6_rx_checksums, false);
1439 if (err)
1440 return err;
Tom Herbertabe492b2015-12-10 12:37:45 -08001441
Alexey Kodanevc40e89f2018-04-19 15:42:32 +03001442 err = geneve_configure(net, dev, extack, &info, metadata,
1443 use_udp6_rx_checksums);
1444 if (err)
1445 return err;
1446
1447 geneve_link_config(dev, &info, tb);
1448
1449 return 0;
Pravin B Shelare305ac62015-08-26 23:46:52 -07001450}
1451
Girish Moodalbail5b861f62017-07-20 22:44:20 -07001452/* Quiesces the geneve device data path for both TX and RX.
1453 *
1454 * On transmit geneve checks for non-NULL geneve_sock before it proceeds.
1455 * So, if we set that socket to NULL under RCU and wait for synchronize_net()
1456 * to complete for the existing set of in-flight packets to be transmitted,
1457 * then we would have quiesced the transmit data path. All the future packets
1458 * will get dropped until we unquiesce the data path.
1459 *
1460 * On receive geneve dereference the geneve_sock stashed in the socket. So,
1461 * if we set that to NULL under RCU and wait for synchronize_net() to
1462 * complete, then we would have quiesced the receive data path.
1463 */
1464static void geneve_quiesce(struct geneve_dev *geneve, struct geneve_sock **gs4,
1465 struct geneve_sock **gs6)
1466{
1467 *gs4 = rtnl_dereference(geneve->sock4);
1468 rcu_assign_pointer(geneve->sock4, NULL);
1469 if (*gs4)
1470 rcu_assign_sk_user_data((*gs4)->sock->sk, NULL);
1471#if IS_ENABLED(CONFIG_IPV6)
1472 *gs6 = rtnl_dereference(geneve->sock6);
1473 rcu_assign_pointer(geneve->sock6, NULL);
1474 if (*gs6)
1475 rcu_assign_sk_user_data((*gs6)->sock->sk, NULL);
1476#else
1477 *gs6 = NULL;
1478#endif
1479 synchronize_net();
1480}
1481
1482/* Resumes the geneve device data path for both TX and RX. */
1483static void geneve_unquiesce(struct geneve_dev *geneve, struct geneve_sock *gs4,
1484 struct geneve_sock __maybe_unused *gs6)
1485{
1486 rcu_assign_pointer(geneve->sock4, gs4);
1487 if (gs4)
1488 rcu_assign_sk_user_data(gs4->sock->sk, gs4);
1489#if IS_ENABLED(CONFIG_IPV6)
1490 rcu_assign_pointer(geneve->sock6, gs6);
1491 if (gs6)
1492 rcu_assign_sk_user_data(gs6->sock->sk, gs6);
1493#endif
1494 synchronize_net();
1495}
1496
1497static int geneve_changelink(struct net_device *dev, struct nlattr *tb[],
1498 struct nlattr *data[],
1499 struct netlink_ext_ack *extack)
1500{
1501 struct geneve_dev *geneve = netdev_priv(dev);
1502 struct geneve_sock *gs4, *gs6;
1503 struct ip_tunnel_info info;
1504 bool metadata;
1505 bool use_udp6_rx_checksums;
1506 int err;
1507
1508 /* If the geneve device is configured for metadata (or externally
1509 * controlled, for example, OVS), then nothing can be changed.
1510 */
1511 if (geneve->collect_md)
1512 return -EOPNOTSUPP;
1513
1514 /* Start with the existing info. */
1515 memcpy(&info, &geneve->info, sizeof(info));
1516 metadata = geneve->collect_md;
1517 use_udp6_rx_checksums = geneve->use_udp6_rx_checksums;
Girish Moodalbailc5ebc442017-08-09 01:09:28 -07001518 err = geneve_nl2info(tb, data, extack, &info, &metadata,
Girish Moodalbail5b861f62017-07-20 22:44:20 -07001519 &use_udp6_rx_checksums, true);
1520 if (err)
1521 return err;
1522
Alexey Kodanevc40e89f2018-04-19 15:42:32 +03001523 if (!geneve_dst_addr_equal(&geneve->info, &info)) {
Girish Moodalbail5b861f62017-07-20 22:44:20 -07001524 dst_cache_reset(&info.dst_cache);
Alexey Kodanevc40e89f2018-04-19 15:42:32 +03001525 geneve_link_config(dev, &info, tb);
1526 }
Girish Moodalbail5b861f62017-07-20 22:44:20 -07001527
1528 geneve_quiesce(geneve, &gs4, &gs6);
1529 geneve->info = info;
1530 geneve->collect_md = metadata;
1531 geneve->use_udp6_rx_checksums = use_udp6_rx_checksums;
1532 geneve_unquiesce(geneve, gs4, gs6);
1533
1534 return 0;
1535}
1536
John W. Linville2d07dc72015-05-13 12:57:30 -04001537static void geneve_dellink(struct net_device *dev, struct list_head *head)
1538{
1539 struct geneve_dev *geneve = netdev_priv(dev);
1540
John W. Linville2d07dc72015-05-13 12:57:30 -04001541 list_del(&geneve->next);
1542 unregister_netdevice_queue(dev, head);
1543}
1544
1545static size_t geneve_get_size(const struct net_device *dev)
1546{
1547 return nla_total_size(sizeof(__u32)) + /* IFLA_GENEVE_ID */
John W. Linville8ed66f02015-10-26 17:01:44 -04001548 nla_total_size(sizeof(struct in6_addr)) + /* IFLA_GENEVE_REMOTE{6} */
John W. Linville8760ce52015-06-01 15:51:34 -04001549 nla_total_size(sizeof(__u8)) + /* IFLA_GENEVE_TTL */
John W. Linvilled8951122015-06-01 15:51:35 -04001550 nla_total_size(sizeof(__u8)) + /* IFLA_GENEVE_TOS */
Daniel Borkmann8eb3b992016-03-09 03:00:04 +01001551 nla_total_size(sizeof(__be32)) + /* IFLA_GENEVE_LABEL */
John W. Linville7bbe33f2015-09-22 13:09:32 -04001552 nla_total_size(sizeof(__be16)) + /* IFLA_GENEVE_PORT */
Pravin B Shelare305ac62015-08-26 23:46:52 -07001553 nla_total_size(0) + /* IFLA_GENEVE_COLLECT_METADATA */
Tom Herbertabe492b2015-12-10 12:37:45 -08001554 nla_total_size(sizeof(__u8)) + /* IFLA_GENEVE_UDP_CSUM */
1555 nla_total_size(sizeof(__u8)) + /* IFLA_GENEVE_UDP_ZERO_CSUM6_TX */
1556 nla_total_size(sizeof(__u8)) + /* IFLA_GENEVE_UDP_ZERO_CSUM6_RX */
John W. Linville2d07dc72015-05-13 12:57:30 -04001557 0;
1558}
1559
1560static int geneve_fill_info(struct sk_buff *skb, const struct net_device *dev)
1561{
1562 struct geneve_dev *geneve = netdev_priv(dev);
pravin shelar9b4437a2016-11-21 11:02:58 -08001563 struct ip_tunnel_info *info = &geneve->info;
Hangbin Liufd7eafd2017-11-15 09:43:09 +08001564 bool metadata = geneve->collect_md;
pravin shelar9b4437a2016-11-21 11:02:58 -08001565 __u8 tmp_vni[3];
John W. Linville2d07dc72015-05-13 12:57:30 -04001566 __u32 vni;
1567
pravin shelar9b4437a2016-11-21 11:02:58 -08001568 tunnel_id_to_vni(info->key.tun_id, tmp_vni);
1569 vni = (tmp_vni[0] << 16) | (tmp_vni[1] << 8) | tmp_vni[2];
John W. Linville2d07dc72015-05-13 12:57:30 -04001570 if (nla_put_u32(skb, IFLA_GENEVE_ID, vni))
1571 goto nla_put_failure;
1572
Hangbin Liufd7eafd2017-11-15 09:43:09 +08001573 if (!metadata && ip_tunnel_info_af(info) == AF_INET) {
John W. Linville8ed66f02015-10-26 17:01:44 -04001574 if (nla_put_in_addr(skb, IFLA_GENEVE_REMOTE,
pravin shelar9b4437a2016-11-21 11:02:58 -08001575 info->key.u.ipv4.dst))
John W. Linville8ed66f02015-10-26 17:01:44 -04001576 goto nla_put_failure;
pravin shelar9b4437a2016-11-21 11:02:58 -08001577 if (nla_put_u8(skb, IFLA_GENEVE_UDP_CSUM,
1578 !!(info->key.tun_flags & TUNNEL_CSUM)))
1579 goto nla_put_failure;
1580
John W. Linville8ed66f02015-10-26 17:01:44 -04001581#if IS_ENABLED(CONFIG_IPV6)
Hangbin Liufd7eafd2017-11-15 09:43:09 +08001582 } else if (!metadata) {
John W. Linville8ed66f02015-10-26 17:01:44 -04001583 if (nla_put_in6_addr(skb, IFLA_GENEVE_REMOTE6,
pravin shelar9b4437a2016-11-21 11:02:58 -08001584 &info->key.u.ipv6.dst))
1585 goto nla_put_failure;
pravin shelar9b4437a2016-11-21 11:02:58 -08001586 if (nla_put_u8(skb, IFLA_GENEVE_UDP_ZERO_CSUM6_TX,
1587 !(info->key.tun_flags & TUNNEL_CSUM)))
1588 goto nla_put_failure;
Eric Garver11387fe2017-05-23 18:37:27 -04001589#endif
Hangbin Liufd7eafd2017-11-15 09:43:09 +08001590 }
John W. Linville2d07dc72015-05-13 12:57:30 -04001591
pravin shelar9b4437a2016-11-21 11:02:58 -08001592 if (nla_put_u8(skb, IFLA_GENEVE_TTL, info->key.ttl) ||
1593 nla_put_u8(skb, IFLA_GENEVE_TOS, info->key.tos) ||
1594 nla_put_be32(skb, IFLA_GENEVE_LABEL, info->key.label))
John W. Linville8760ce52015-06-01 15:51:34 -04001595 goto nla_put_failure;
1596
pravin shelar9b4437a2016-11-21 11:02:58 -08001597 if (nla_put_be16(skb, IFLA_GENEVE_PORT, info->key.tp_dst))
Pravin B Shelarcd7918b2015-08-26 23:46:51 -07001598 goto nla_put_failure;
1599
Hangbin Liufd7eafd2017-11-15 09:43:09 +08001600 if (metadata && nla_put_flag(skb, IFLA_GENEVE_COLLECT_METADATA))
Hangbin Liuf9094b72017-11-23 11:27:24 +08001601 goto nla_put_failure;
Hangbin Liufd7eafd2017-11-15 09:43:09 +08001602
Hangbin Liuf9094b72017-11-23 11:27:24 +08001603#if IS_ENABLED(CONFIG_IPV6)
Hangbin Liufd7eafd2017-11-15 09:43:09 +08001604 if (nla_put_u8(skb, IFLA_GENEVE_UDP_ZERO_CSUM6_RX,
1605 !geneve->use_udp6_rx_checksums))
1606 goto nla_put_failure;
Hangbin Liuf9094b72017-11-23 11:27:24 +08001607#endif
Hangbin Liufd7eafd2017-11-15 09:43:09 +08001608
John W. Linville2d07dc72015-05-13 12:57:30 -04001609 return 0;
1610
1611nla_put_failure:
1612 return -EMSGSIZE;
1613}
1614
1615static struct rtnl_link_ops geneve_link_ops __read_mostly = {
1616 .kind = "geneve",
1617 .maxtype = IFLA_GENEVE_MAX,
1618 .policy = geneve_policy,
1619 .priv_size = sizeof(struct geneve_dev),
1620 .setup = geneve_setup,
1621 .validate = geneve_validate,
1622 .newlink = geneve_newlink,
Girish Moodalbail5b861f62017-07-20 22:44:20 -07001623 .changelink = geneve_changelink,
John W. Linville2d07dc72015-05-13 12:57:30 -04001624 .dellink = geneve_dellink,
1625 .get_size = geneve_get_size,
1626 .fill_info = geneve_fill_info,
1627};
1628
Pravin B Shelare305ac62015-08-26 23:46:52 -07001629struct net_device *geneve_dev_create_fb(struct net *net, const char *name,
1630 u8 name_assign_type, u16 dst_port)
1631{
1632 struct nlattr *tb[IFLA_MAX + 1];
pravin shelar9b4437a2016-11-21 11:02:58 -08001633 struct ip_tunnel_info info;
Pravin B Shelare305ac62015-08-26 23:46:52 -07001634 struct net_device *dev;
Nicolas Dichtel106da662016-06-13 10:31:04 +02001635 LIST_HEAD(list_kill);
Pravin B Shelare305ac62015-08-26 23:46:52 -07001636 int err;
1637
1638 memset(tb, 0, sizeof(tb));
1639 dev = rtnl_create_link(net, name, name_assign_type,
1640 &geneve_link_ops, tb);
1641 if (IS_ERR(dev))
1642 return dev;
1643
pravin shelar9b4437a2016-11-21 11:02:58 -08001644 init_tnl_info(&info, dst_port);
Girish Moodalbailc5ebc442017-08-09 01:09:28 -07001645 err = geneve_configure(net, dev, NULL, &info, true, true);
Nicolas Dichtel106da662016-06-13 10:31:04 +02001646 if (err) {
1647 free_netdev(dev);
1648 return ERR_PTR(err);
1649 }
David Wragg7e059152016-02-10 00:05:58 +00001650
1651 /* openvswitch users expect packet sizes to be unrestricted,
1652 * so set the largest MTU we can.
1653 */
Jarod Wilson91572082016-10-20 13:55:20 -04001654 err = geneve_change_mtu(dev, IP_MAX_MTU);
David Wragg7e059152016-02-10 00:05:58 +00001655 if (err)
1656 goto err;
1657
Nicolas Dichtel41009482016-06-13 10:31:07 +02001658 err = rtnl_configure_link(dev, NULL);
1659 if (err < 0)
1660 goto err;
1661
Pravin B Shelare305ac62015-08-26 23:46:52 -07001662 return dev;
pravin shelar9b4437a2016-11-21 11:02:58 -08001663err:
Nicolas Dichtel106da662016-06-13 10:31:04 +02001664 geneve_dellink(dev, &list_kill);
1665 unregister_netdevice_many(&list_kill);
David Wragg7e059152016-02-10 00:05:58 +00001666 return ERR_PTR(err);
Pravin B Shelare305ac62015-08-26 23:46:52 -07001667}
1668EXPORT_SYMBOL_GPL(geneve_dev_create_fb);
1669
Hannes Frederic Sowa681e6832016-04-18 21:19:48 +02001670static int geneve_netdevice_event(struct notifier_block *unused,
1671 unsigned long event, void *ptr)
1672{
1673 struct net_device *dev = netdev_notifier_info_to_dev(ptr);
1674
Sabrina Dubroca2d2b13f2017-07-21 12:49:32 +02001675 if (event == NETDEV_UDP_TUNNEL_PUSH_INFO ||
Sabrina Dubroca04584952017-07-21 12:49:33 +02001676 event == NETDEV_UDP_TUNNEL_DROP_INFO) {
Sabrina Dubroca2d2b13f2017-07-21 12:49:32 +02001677 geneve_offload_rx_ports(dev, event == NETDEV_UDP_TUNNEL_PUSH_INFO);
Sabrina Dubroca04584952017-07-21 12:49:33 +02001678 } else if (event == NETDEV_UNREGISTER) {
1679 geneve_offload_rx_ports(dev, false);
1680 } else if (event == NETDEV_REGISTER) {
1681 geneve_offload_rx_ports(dev, true);
1682 }
Hannes Frederic Sowa681e6832016-04-18 21:19:48 +02001683
1684 return NOTIFY_DONE;
1685}
1686
1687static struct notifier_block geneve_notifier_block __read_mostly = {
1688 .notifier_call = geneve_netdevice_event,
1689};
1690
John W. Linville2d07dc72015-05-13 12:57:30 -04001691static __net_init int geneve_init_net(struct net *net)
1692{
1693 struct geneve_net *gn = net_generic(net, geneve_net_id);
John W. Linville2d07dc72015-05-13 12:57:30 -04001694
1695 INIT_LIST_HEAD(&gn->geneve_list);
Pravin B Shelar371bd102015-08-26 23:46:54 -07001696 INIT_LIST_HEAD(&gn->sock_list);
John W. Linville2d07dc72015-05-13 12:57:30 -04001697 return 0;
1698}
1699
Haishuang Yan2843a252017-12-16 17:54:50 +08001700static void geneve_destroy_tunnels(struct net *net, struct list_head *head)
John W. Linville2d07dc72015-05-13 12:57:30 -04001701{
1702 struct geneve_net *gn = net_generic(net, geneve_net_id);
1703 struct geneve_dev *geneve, *next;
1704 struct net_device *dev, *aux;
John W. Linville2d07dc72015-05-13 12:57:30 -04001705
1706 /* gather any geneve devices that were moved into this ns */
1707 for_each_netdev_safe(net, dev, aux)
1708 if (dev->rtnl_link_ops == &geneve_link_ops)
Haishuang Yan2843a252017-12-16 17:54:50 +08001709 unregister_netdevice_queue(dev, head);
John W. Linville2d07dc72015-05-13 12:57:30 -04001710
1711 /* now gather any other geneve devices that were created in this ns */
1712 list_for_each_entry_safe(geneve, next, &gn->geneve_list, next) {
1713 /* If geneve->dev is in the same netns, it was already added
1714 * to the list by the previous loop.
1715 */
1716 if (!net_eq(dev_net(geneve->dev), net))
Haishuang Yan2843a252017-12-16 17:54:50 +08001717 unregister_netdevice_queue(geneve->dev, head);
John W. Linville2d07dc72015-05-13 12:57:30 -04001718 }
1719
Haishuang Yan2843a252017-12-16 17:54:50 +08001720 WARN_ON_ONCE(!list_empty(&gn->sock_list));
1721}
1722
1723static void __net_exit geneve_exit_batch_net(struct list_head *net_list)
1724{
1725 struct net *net;
1726 LIST_HEAD(list);
1727
1728 rtnl_lock();
1729 list_for_each_entry(net, net_list, exit_list)
1730 geneve_destroy_tunnels(net, &list);
1731
John W. Linville2d07dc72015-05-13 12:57:30 -04001732 /* unregister the devices gathered above */
1733 unregister_netdevice_many(&list);
1734 rtnl_unlock();
1735}
1736
1737static struct pernet_operations geneve_net_ops = {
1738 .init = geneve_init_net,
Haishuang Yan2843a252017-12-16 17:54:50 +08001739 .exit_batch = geneve_exit_batch_net,
John W. Linville2d07dc72015-05-13 12:57:30 -04001740 .id = &geneve_net_id,
1741 .size = sizeof(struct geneve_net),
1742};
1743
1744static int __init geneve_init_module(void)
1745{
1746 int rc;
1747
1748 rc = register_pernet_subsys(&geneve_net_ops);
1749 if (rc)
1750 goto out1;
1751
Hannes Frederic Sowa681e6832016-04-18 21:19:48 +02001752 rc = register_netdevice_notifier(&geneve_notifier_block);
John W. Linville2d07dc72015-05-13 12:57:30 -04001753 if (rc)
1754 goto out2;
1755
Hannes Frederic Sowa681e6832016-04-18 21:19:48 +02001756 rc = rtnl_link_register(&geneve_link_ops);
1757 if (rc)
1758 goto out3;
1759
John W. Linville2d07dc72015-05-13 12:57:30 -04001760 return 0;
Hannes Frederic Sowa681e6832016-04-18 21:19:48 +02001761out3:
1762 unregister_netdevice_notifier(&geneve_notifier_block);
John W. Linville2d07dc72015-05-13 12:57:30 -04001763out2:
1764 unregister_pernet_subsys(&geneve_net_ops);
1765out1:
1766 return rc;
1767}
1768late_initcall(geneve_init_module);
1769
1770static void __exit geneve_cleanup_module(void)
1771{
1772 rtnl_link_unregister(&geneve_link_ops);
Hannes Frederic Sowa681e6832016-04-18 21:19:48 +02001773 unregister_netdevice_notifier(&geneve_notifier_block);
John W. Linville2d07dc72015-05-13 12:57:30 -04001774 unregister_pernet_subsys(&geneve_net_ops);
1775}
1776module_exit(geneve_cleanup_module);
1777
1778MODULE_LICENSE("GPL");
1779MODULE_VERSION(GENEVE_NETDEV_VER);
1780MODULE_AUTHOR("John W. Linville <linville@tuxdriver.com>");
1781MODULE_DESCRIPTION("Interface driver for GENEVE encapsulated traffic");
1782MODULE_ALIAS_RTNL_LINK("geneve");