blob: 09f279c0182be4c05144c5caca6548cacfebbd49 [file] [log] [blame]
Thomas Gleixnerd2912cb2019-06-04 10:11:33 +02001// SPDX-License-Identifier: GPL-2.0-only
John W. Linville2d07dc72015-05-13 12:57:30 -04002/*
3 * GENEVE: Generic Network Virtualization Encapsulation
4 *
5 * Copyright (c) 2015 Red Hat, Inc.
John W. Linville2d07dc72015-05-13 12:57:30 -04006 */
7
8#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
9
10#include <linux/kernel.h>
11#include <linux/module.h>
John W. Linville2d07dc72015-05-13 12:57:30 -040012#include <linux/etherdevice.h>
13#include <linux/hash.h>
David Ahern3616d082019-03-22 06:06:09 -070014#include <net/ipv6_stubs.h>
Pravin B Shelare305ac62015-08-26 23:46:52 -070015#include <net/dst_metadata.h>
Jesse Gross8e816df2015-08-28 16:54:40 -070016#include <net/gro_cells.h>
John W. Linville2d07dc72015-05-13 12:57:30 -040017#include <net/rtnetlink.h>
18#include <net/geneve.h>
Pravin B Shelar371bd102015-08-26 23:46:54 -070019#include <net/protocol.h>
John W. Linville2d07dc72015-05-13 12:57:30 -040020
21#define GENEVE_NETDEV_VER "0.6"
22
John W. Linville2d07dc72015-05-13 12:57:30 -040023#define GENEVE_N_VID (1u << 24)
24#define GENEVE_VID_MASK (GENEVE_N_VID - 1)
25
26#define VNI_HASH_BITS 10
27#define VNI_HASH_SIZE (1<<VNI_HASH_BITS)
28
29static bool log_ecn_error = true;
30module_param(log_ecn_error, bool, 0644);
31MODULE_PARM_DESC(log_ecn_error, "Log packets received with corrupted ECN");
32
Pravin B Shelar371bd102015-08-26 23:46:54 -070033#define GENEVE_VER 0
34#define GENEVE_BASE_HLEN (sizeof(struct udphdr) + sizeof(struct genevehdr))
Alexey Kodanev5edbea62018-04-19 15:42:30 +030035#define GENEVE_IPV4_HLEN (ETH_HLEN + sizeof(struct iphdr) + GENEVE_BASE_HLEN)
36#define GENEVE_IPV6_HLEN (ETH_HLEN + sizeof(struct ipv6hdr) + GENEVE_BASE_HLEN)
Pravin B Shelar371bd102015-08-26 23:46:54 -070037
John W. Linville2d07dc72015-05-13 12:57:30 -040038/* per-network namespace private data for this module */
39struct geneve_net {
Pravin B Shelar371bd102015-08-26 23:46:54 -070040 struct list_head geneve_list;
Pravin B Shelar371bd102015-08-26 23:46:54 -070041 struct list_head sock_list;
John W. Linville2d07dc72015-05-13 12:57:30 -040042};
43
Alexey Dobriyanc7d03a02016-11-17 04:58:21 +030044static unsigned int geneve_net_id;
Pravin B Shelar371bd102015-08-26 23:46:54 -070045
Jiri Benc4b4c21f2017-07-02 19:00:58 +020046struct geneve_dev_node {
47 struct hlist_node hlist;
48 struct geneve_dev *geneve;
49};
50
John W. Linville2d07dc72015-05-13 12:57:30 -040051/* Pseudo network device */
52struct geneve_dev {
Jiri Benc4b4c21f2017-07-02 19:00:58 +020053 struct geneve_dev_node hlist4; /* vni hash table for IPv4 socket */
54#if IS_ENABLED(CONFIG_IPV6)
55 struct geneve_dev_node hlist6; /* vni hash table for IPv6 socket */
56#endif
John W. Linville2d07dc72015-05-13 12:57:30 -040057 struct net *net; /* netns for packet i/o */
58 struct net_device *dev; /* netdev for geneve tunnel */
pravin shelar9b4437a2016-11-21 11:02:58 -080059 struct ip_tunnel_info info;
pravin shelarfceb9c32016-10-28 09:59:16 -070060 struct geneve_sock __rcu *sock4; /* IPv4 socket used for geneve tunnel */
John W. Linville8ed66f02015-10-26 17:01:44 -040061#if IS_ENABLED(CONFIG_IPV6)
pravin shelarfceb9c32016-10-28 09:59:16 -070062 struct geneve_sock __rcu *sock6; /* IPv6 socket used for geneve tunnel */
John W. Linville8ed66f02015-10-26 17:01:44 -040063#endif
John W. Linville2d07dc72015-05-13 12:57:30 -040064 struct list_head next; /* geneve's per namespace list */
Jesse Gross8e816df2015-08-28 16:54:40 -070065 struct gro_cells gro_cells;
pravin shelar9b4437a2016-11-21 11:02:58 -080066 bool collect_md;
67 bool use_udp6_rx_checksums;
Hangbin Liu52d0d4042018-09-12 10:04:21 +080068 bool ttl_inherit;
Stefano Brivioa025fb52018-11-08 12:19:19 +010069 enum ifla_geneve_df df;
John W. Linville2d07dc72015-05-13 12:57:30 -040070};
71
Pravin B Shelar371bd102015-08-26 23:46:54 -070072struct geneve_sock {
73 bool collect_md;
Pravin B Shelar371bd102015-08-26 23:46:54 -070074 struct list_head list;
75 struct socket *sock;
76 struct rcu_head rcu;
77 int refcnt;
Pravin B Shelar66d47002015-08-26 23:46:55 -070078 struct hlist_head vni_list[VNI_HASH_SIZE];
Pravin B Shelar371bd102015-08-26 23:46:54 -070079};
John W. Linville2d07dc72015-05-13 12:57:30 -040080
81static inline __u32 geneve_net_vni_hash(u8 vni[3])
82{
83 __u32 vnid;
84
85 vnid = (vni[0] << 16) | (vni[1] << 8) | vni[2];
86 return hash_32(vnid, VNI_HASH_BITS);
87}
88
Pravin B Shelare305ac62015-08-26 23:46:52 -070089static __be64 vni_to_tunnel_id(const __u8 *vni)
90{
91#ifdef __BIG_ENDIAN
92 return (vni[0] << 16) | (vni[1] << 8) | vni[2];
93#else
94 return (__force __be64)(((__force u64)vni[0] << 40) |
95 ((__force u64)vni[1] << 48) |
96 ((__force u64)vni[2] << 56));
97#endif
98}
99
pravin shelar9b4437a2016-11-21 11:02:58 -0800100/* Convert 64 bit tunnel ID to 24 bit VNI. */
101static void tunnel_id_to_vni(__be64 tun_id, __u8 *vni)
102{
103#ifdef __BIG_ENDIAN
104 vni[0] = (__force __u8)(tun_id >> 16);
105 vni[1] = (__force __u8)(tun_id >> 8);
106 vni[2] = (__force __u8)tun_id;
107#else
108 vni[0] = (__force __u8)((__force u64)tun_id >> 40);
109 vni[1] = (__force __u8)((__force u64)tun_id >> 48);
110 vni[2] = (__force __u8)((__force u64)tun_id >> 56);
111#endif
112}
113
pravin shelar2e0b26e2016-11-21 11:03:01 -0800114static bool eq_tun_id_and_vni(u8 *tun_id, u8 *vni)
115{
pravin shelar2e0b26e2016-11-21 11:03:01 -0800116 return !memcmp(vni, &tun_id[5], 3);
pravin shelar2e0b26e2016-11-21 11:03:01 -0800117}
118
Jiri Benc1e9f12e2016-02-18 11:22:49 +0100119static sa_family_t geneve_get_sk_family(struct geneve_sock *gs)
120{
121 return gs->sock->sk->sk_family;
122}
123
Pravin B Shelar66d47002015-08-26 23:46:55 -0700124static struct geneve_dev *geneve_lookup(struct geneve_sock *gs,
Pravin B Shelar371bd102015-08-26 23:46:54 -0700125 __be32 addr, u8 vni[])
John W. Linville2d07dc72015-05-13 12:57:30 -0400126{
John W. Linville2d07dc72015-05-13 12:57:30 -0400127 struct hlist_head *vni_list_head;
Jiri Benc4b4c21f2017-07-02 19:00:58 +0200128 struct geneve_dev_node *node;
John W. Linville2d07dc72015-05-13 12:57:30 -0400129 __u32 hash;
130
John W. Linville2d07dc72015-05-13 12:57:30 -0400131 /* Find the device for this VNI */
Pravin B Shelar371bd102015-08-26 23:46:54 -0700132 hash = geneve_net_vni_hash(vni);
Pravin B Shelar66d47002015-08-26 23:46:55 -0700133 vni_list_head = &gs->vni_list[hash];
Jiri Benc4b4c21f2017-07-02 19:00:58 +0200134 hlist_for_each_entry_rcu(node, vni_list_head, hlist) {
135 if (eq_tun_id_and_vni((u8 *)&node->geneve->info.key.tun_id, vni) &&
136 addr == node->geneve->info.key.u.ipv4.dst)
137 return node->geneve;
John W. Linville2d07dc72015-05-13 12:57:30 -0400138 }
Pravin B Shelare305ac62015-08-26 23:46:52 -0700139 return NULL;
140}
141
John W. Linville8ed66f02015-10-26 17:01:44 -0400142#if IS_ENABLED(CONFIG_IPV6)
143static struct geneve_dev *geneve6_lookup(struct geneve_sock *gs,
144 struct in6_addr addr6, u8 vni[])
145{
146 struct hlist_head *vni_list_head;
Jiri Benc4b4c21f2017-07-02 19:00:58 +0200147 struct geneve_dev_node *node;
John W. Linville8ed66f02015-10-26 17:01:44 -0400148 __u32 hash;
149
150 /* Find the device for this VNI */
151 hash = geneve_net_vni_hash(vni);
152 vni_list_head = &gs->vni_list[hash];
Jiri Benc4b4c21f2017-07-02 19:00:58 +0200153 hlist_for_each_entry_rcu(node, vni_list_head, hlist) {
154 if (eq_tun_id_and_vni((u8 *)&node->geneve->info.key.tun_id, vni) &&
155 ipv6_addr_equal(&addr6, &node->geneve->info.key.u.ipv6.dst))
156 return node->geneve;
John W. Linville8ed66f02015-10-26 17:01:44 -0400157 }
158 return NULL;
159}
160#endif
161
Pravin B Shelar371bd102015-08-26 23:46:54 -0700162static inline struct genevehdr *geneve_hdr(const struct sk_buff *skb)
163{
164 return (struct genevehdr *)(udp_hdr(skb) + 1);
165}
166
Jiri Benc9fc47542016-02-18 11:22:50 +0100167static struct geneve_dev *geneve_lookup_skb(struct geneve_sock *gs,
168 struct sk_buff *skb)
Pravin B Shelare305ac62015-08-26 23:46:52 -0700169{
John W. Linville8ed66f02015-10-26 17:01:44 -0400170 static u8 zero_vni[3];
pravin shelar9b4437a2016-11-21 11:02:58 -0800171 u8 *vni;
Pravin B Shelare305ac62015-08-26 23:46:52 -0700172
Jiri Benc1e9f12e2016-02-18 11:22:49 +0100173 if (geneve_get_sk_family(gs) == AF_INET) {
Jiri Benc9fc47542016-02-18 11:22:50 +0100174 struct iphdr *iph;
pravin shelar9b4437a2016-11-21 11:02:58 -0800175 __be32 addr;
Jiri Benc9fc47542016-02-18 11:22:50 +0100176
John W. Linville8ed66f02015-10-26 17:01:44 -0400177 iph = ip_hdr(skb); /* outer IP header... */
Pravin B Shelar371bd102015-08-26 23:46:54 -0700178
John W. Linville8ed66f02015-10-26 17:01:44 -0400179 if (gs->collect_md) {
180 vni = zero_vni;
181 addr = 0;
182 } else {
Jiri Benc9fc47542016-02-18 11:22:50 +0100183 vni = geneve_hdr(skb)->vni;
John W. Linville8ed66f02015-10-26 17:01:44 -0400184 addr = iph->saddr;
185 }
186
Jiri Benc9fc47542016-02-18 11:22:50 +0100187 return geneve_lookup(gs, addr, vni);
John W. Linville8ed66f02015-10-26 17:01:44 -0400188#if IS_ENABLED(CONFIG_IPV6)
Jiri Benc1e9f12e2016-02-18 11:22:49 +0100189 } else if (geneve_get_sk_family(gs) == AF_INET6) {
pravin shelar9b4437a2016-11-21 11:02:58 -0800190 static struct in6_addr zero_addr6;
Jiri Benc9fc47542016-02-18 11:22:50 +0100191 struct ipv6hdr *ip6h;
192 struct in6_addr addr6;
193
John W. Linville8ed66f02015-10-26 17:01:44 -0400194 ip6h = ipv6_hdr(skb); /* outer IPv6 header... */
195
196 if (gs->collect_md) {
197 vni = zero_vni;
198 addr6 = zero_addr6;
199 } else {
Jiri Benc9fc47542016-02-18 11:22:50 +0100200 vni = geneve_hdr(skb)->vni;
John W. Linville8ed66f02015-10-26 17:01:44 -0400201 addr6 = ip6h->saddr;
202 }
203
Jiri Benc9fc47542016-02-18 11:22:50 +0100204 return geneve6_lookup(gs, addr6, vni);
John W. Linville8ed66f02015-10-26 17:01:44 -0400205#endif
Pravin B Shelar371bd102015-08-26 23:46:54 -0700206 }
Jiri Benc9fc47542016-02-18 11:22:50 +0100207 return NULL;
208}
209
210/* geneve receive/decap routine */
211static void geneve_rx(struct geneve_dev *geneve, struct geneve_sock *gs,
212 struct sk_buff *skb)
213{
214 struct genevehdr *gnvh = geneve_hdr(skb);
215 struct metadata_dst *tun_dst = NULL;
216 struct pcpu_sw_netstats *stats;
Girish Moodalbailfe741e22017-06-08 17:07:48 -0700217 unsigned int len;
Jiri Benc9fc47542016-02-18 11:22:50 +0100218 int err = 0;
219 void *oiph;
John W. Linville2d07dc72015-05-13 12:57:30 -0400220
Pravin B Shelar371bd102015-08-26 23:46:54 -0700221 if (ip_tunnel_collect_metadata() || gs->collect_md) {
Pravin B Shelare305ac62015-08-26 23:46:52 -0700222 __be16 flags;
Pravin B Shelare305ac62015-08-26 23:46:52 -0700223
224 flags = TUNNEL_KEY | TUNNEL_GENEVE_OPT |
225 (gnvh->oam ? TUNNEL_OAM : 0) |
226 (gnvh->critical ? TUNNEL_CRIT_OPT : 0);
227
Jiri Benc1e9f12e2016-02-18 11:22:49 +0100228 tun_dst = udp_tun_rx_dst(skb, geneve_get_sk_family(gs), flags,
Pravin B Shelare305ac62015-08-26 23:46:52 -0700229 vni_to_tunnel_id(gnvh->vni),
230 gnvh->opt_len * 4);
Girish Moodalbailfe741e22017-06-08 17:07:48 -0700231 if (!tun_dst) {
232 geneve->dev->stats.rx_dropped++;
Pravin B Shelare305ac62015-08-26 23:46:52 -0700233 goto drop;
Girish Moodalbailfe741e22017-06-08 17:07:48 -0700234 }
Pravin B Shelare305ac62015-08-26 23:46:52 -0700235 /* Update tunnel dst according to Geneve options. */
Pravin B Shelar4c222792015-08-30 18:09:38 -0700236 ip_tunnel_info_opts_set(&tun_dst->u.tun_info,
Pieter Jansen van Vuuren256c87c2018-06-26 21:39:36 -0700237 gnvh->options, gnvh->opt_len * 4,
238 TUNNEL_GENEVE_OPT);
Pravin B Shelare305ac62015-08-26 23:46:52 -0700239 } else {
240 /* Drop packets w/ critical options,
241 * since we don't support any...
242 */
Girish Moodalbailfe741e22017-06-08 17:07:48 -0700243 if (gnvh->critical) {
244 geneve->dev->stats.rx_frame_errors++;
245 geneve->dev->stats.rx_errors++;
Pravin B Shelare305ac62015-08-26 23:46:52 -0700246 goto drop;
Girish Moodalbailfe741e22017-06-08 17:07:48 -0700247 }
Pravin B Shelare305ac62015-08-26 23:46:52 -0700248 }
John W. Linville2d07dc72015-05-13 12:57:30 -0400249
250 skb_reset_mac_header(skb);
John W. Linville2d07dc72015-05-13 12:57:30 -0400251 skb->protocol = eth_type_trans(skb, geneve->dev);
252 skb_postpull_rcsum(skb, eth_hdr(skb), ETH_HLEN);
253
Pravin B Shelare305ac62015-08-26 23:46:52 -0700254 if (tun_dst)
255 skb_dst_set(skb, &tun_dst->dst);
256
John W. Linville2d07dc72015-05-13 12:57:30 -0400257 /* Ignore packet loops (and multicast echo) */
Girish Moodalbailfe741e22017-06-08 17:07:48 -0700258 if (ether_addr_equal(eth_hdr(skb)->h_source, geneve->dev->dev_addr)) {
259 geneve->dev->stats.rx_errors++;
John W. Linville2d07dc72015-05-13 12:57:30 -0400260 goto drop;
Girish Moodalbailfe741e22017-06-08 17:07:48 -0700261 }
John W. Linville2d07dc72015-05-13 12:57:30 -0400262
Jiri Benc9fc47542016-02-18 11:22:50 +0100263 oiph = skb_network_header(skb);
John W. Linville2d07dc72015-05-13 12:57:30 -0400264 skb_reset_network_header(skb);
265
Jiri Benc9fc47542016-02-18 11:22:50 +0100266 if (geneve_get_sk_family(gs) == AF_INET)
267 err = IP_ECN_decapsulate(oiph, skb);
John W. Linville8ed66f02015-10-26 17:01:44 -0400268#if IS_ENABLED(CONFIG_IPV6)
Jiri Benc9fc47542016-02-18 11:22:50 +0100269 else
270 err = IP6_ECN_decapsulate(oiph, skb);
John W. Linville8ed66f02015-10-26 17:01:44 -0400271#endif
John W. Linville2d07dc72015-05-13 12:57:30 -0400272
273 if (unlikely(err)) {
John W. Linville8ed66f02015-10-26 17:01:44 -0400274 if (log_ecn_error) {
Jiri Benc9fc47542016-02-18 11:22:50 +0100275 if (geneve_get_sk_family(gs) == AF_INET)
John W. Linville8ed66f02015-10-26 17:01:44 -0400276 net_info_ratelimited("non-ECT from %pI4 "
277 "with TOS=%#x\n",
Jiri Benc9fc47542016-02-18 11:22:50 +0100278 &((struct iphdr *)oiph)->saddr,
279 ((struct iphdr *)oiph)->tos);
John W. Linville8ed66f02015-10-26 17:01:44 -0400280#if IS_ENABLED(CONFIG_IPV6)
Jiri Benc9fc47542016-02-18 11:22:50 +0100281 else
John W. Linville8ed66f02015-10-26 17:01:44 -0400282 net_info_ratelimited("non-ECT from %pI6\n",
Jiri Benc9fc47542016-02-18 11:22:50 +0100283 &((struct ipv6hdr *)oiph)->saddr);
John W. Linville8ed66f02015-10-26 17:01:44 -0400284#endif
285 }
John W. Linville2d07dc72015-05-13 12:57:30 -0400286 if (err > 1) {
287 ++geneve->dev->stats.rx_frame_errors;
288 ++geneve->dev->stats.rx_errors;
289 goto drop;
290 }
291 }
292
Girish Moodalbailfe741e22017-06-08 17:07:48 -0700293 len = skb->len;
294 err = gro_cells_receive(&geneve->gro_cells, skb);
295 if (likely(err == NET_RX_SUCCESS)) {
296 stats = this_cpu_ptr(geneve->dev->tstats);
297 u64_stats_update_begin(&stats->syncp);
298 stats->rx_packets++;
299 stats->rx_bytes += len;
300 u64_stats_update_end(&stats->syncp);
301 }
John W. Linville2d07dc72015-05-13 12:57:30 -0400302 return;
303drop:
304 /* Consume bad packet */
305 kfree_skb(skb);
306}
307
308/* Setup stats when device is created */
309static int geneve_init(struct net_device *dev)
310{
Jesse Gross8e816df2015-08-28 16:54:40 -0700311 struct geneve_dev *geneve = netdev_priv(dev);
312 int err;
313
John W. Linville2d07dc72015-05-13 12:57:30 -0400314 dev->tstats = netdev_alloc_pcpu_stats(struct pcpu_sw_netstats);
315 if (!dev->tstats)
316 return -ENOMEM;
Jesse Gross8e816df2015-08-28 16:54:40 -0700317
318 err = gro_cells_init(&geneve->gro_cells, dev);
319 if (err) {
320 free_percpu(dev->tstats);
321 return err;
322 }
323
pravin shelar9b4437a2016-11-21 11:02:58 -0800324 err = dst_cache_init(&geneve->info.dst_cache, GFP_KERNEL);
Paolo Abeni468dfff2016-02-12 15:43:58 +0100325 if (err) {
326 free_percpu(dev->tstats);
327 gro_cells_destroy(&geneve->gro_cells);
328 return err;
329 }
John W. Linville2d07dc72015-05-13 12:57:30 -0400330 return 0;
331}
332
333static void geneve_uninit(struct net_device *dev)
334{
Jesse Gross8e816df2015-08-28 16:54:40 -0700335 struct geneve_dev *geneve = netdev_priv(dev);
336
pravin shelar9b4437a2016-11-21 11:02:58 -0800337 dst_cache_destroy(&geneve->info.dst_cache);
Jesse Gross8e816df2015-08-28 16:54:40 -0700338 gro_cells_destroy(&geneve->gro_cells);
John W. Linville2d07dc72015-05-13 12:57:30 -0400339 free_percpu(dev->tstats);
340}
341
Pravin B Shelar371bd102015-08-26 23:46:54 -0700342/* Callback from net/ipv4/udp.c to receive packets */
343static int geneve_udp_encap_recv(struct sock *sk, struct sk_buff *skb)
344{
345 struct genevehdr *geneveh;
Jiri Benc9fc47542016-02-18 11:22:50 +0100346 struct geneve_dev *geneve;
Pravin B Shelar371bd102015-08-26 23:46:54 -0700347 struct geneve_sock *gs;
348 int opts_len;
349
Girish Moodalbailfe741e22017-06-08 17:07:48 -0700350 /* Need UDP and Geneve header to be present */
Pravin B Shelar371bd102015-08-26 23:46:54 -0700351 if (unlikely(!pskb_may_pull(skb, GENEVE_BASE_HLEN)))
Hannes Frederic Sowae5aed002016-05-19 15:58:33 +0200352 goto drop;
Pravin B Shelar371bd102015-08-26 23:46:54 -0700353
354 /* Return packets with reserved bits set */
355 geneveh = geneve_hdr(skb);
356 if (unlikely(geneveh->ver != GENEVE_VER))
Hannes Frederic Sowae5aed002016-05-19 15:58:33 +0200357 goto drop;
Pravin B Shelar371bd102015-08-26 23:46:54 -0700358
359 if (unlikely(geneveh->proto_type != htons(ETH_P_TEB)))
Hannes Frederic Sowae5aed002016-05-19 15:58:33 +0200360 goto drop;
Pravin B Shelar371bd102015-08-26 23:46:54 -0700361
Jiri Benc9fc47542016-02-18 11:22:50 +0100362 gs = rcu_dereference_sk_user_data(sk);
363 if (!gs)
364 goto drop;
365
366 geneve = geneve_lookup_skb(gs, skb);
367 if (!geneve)
368 goto drop;
369
Pravin B Shelar371bd102015-08-26 23:46:54 -0700370 opts_len = geneveh->opt_len * 4;
371 if (iptunnel_pull_header(skb, GENEVE_BASE_HLEN + opts_len,
Jiri Benc7f290c92016-02-18 11:22:52 +0100372 htons(ETH_P_TEB),
Girish Moodalbailfe741e22017-06-08 17:07:48 -0700373 !net_eq(geneve->net, dev_net(geneve->dev)))) {
374 geneve->dev->stats.rx_dropped++;
Pravin B Shelar371bd102015-08-26 23:46:54 -0700375 goto drop;
Girish Moodalbailfe741e22017-06-08 17:07:48 -0700376 }
Pravin B Shelar371bd102015-08-26 23:46:54 -0700377
Jiri Benc9fc47542016-02-18 11:22:50 +0100378 geneve_rx(geneve, gs, skb);
Pravin B Shelar371bd102015-08-26 23:46:54 -0700379 return 0;
380
381drop:
382 /* Consume bad packet */
383 kfree_skb(skb);
384 return 0;
Pravin B Shelar371bd102015-08-26 23:46:54 -0700385}
386
Stefano Brivioa0796642018-11-08 12:19:18 +0100387/* Callback from net/ipv{4,6}/udp.c to check that we have a tunnel for errors */
388static int geneve_udp_encap_err_lookup(struct sock *sk, struct sk_buff *skb)
389{
390 struct genevehdr *geneveh;
391 struct geneve_sock *gs;
392 u8 zero_vni[3] = { 0 };
393 u8 *vni = zero_vni;
394
Stefano Brivioeccc73a2019-06-11 00:27:06 +0200395 if (!pskb_may_pull(skb, skb_transport_offset(skb) + GENEVE_BASE_HLEN))
Stefano Brivioa0796642018-11-08 12:19:18 +0100396 return -EINVAL;
397
398 geneveh = geneve_hdr(skb);
399 if (geneveh->ver != GENEVE_VER)
400 return -EINVAL;
401
402 if (geneveh->proto_type != htons(ETH_P_TEB))
403 return -EINVAL;
404
405 gs = rcu_dereference_sk_user_data(sk);
406 if (!gs)
407 return -ENOENT;
408
409 if (geneve_get_sk_family(gs) == AF_INET) {
410 struct iphdr *iph = ip_hdr(skb);
411 __be32 addr4 = 0;
412
413 if (!gs->collect_md) {
414 vni = geneve_hdr(skb)->vni;
415 addr4 = iph->daddr;
416 }
417
418 return geneve_lookup(gs, addr4, vni) ? 0 : -ENOENT;
419 }
420
421#if IS_ENABLED(CONFIG_IPV6)
422 if (geneve_get_sk_family(gs) == AF_INET6) {
423 struct ipv6hdr *ip6h = ipv6_hdr(skb);
Nathan Chancellor8a962c42018-11-16 18:36:27 -0700424 struct in6_addr addr6;
425
426 memset(&addr6, 0, sizeof(struct in6_addr));
Stefano Brivioa0796642018-11-08 12:19:18 +0100427
428 if (!gs->collect_md) {
429 vni = geneve_hdr(skb)->vni;
430 addr6 = ip6h->daddr;
431 }
432
433 return geneve6_lookup(gs, addr6, vni) ? 0 : -ENOENT;
434 }
435#endif
436
437 return -EPFNOSUPPORT;
438}
439
Pravin B Shelar371bd102015-08-26 23:46:54 -0700440static struct socket *geneve_create_sock(struct net *net, bool ipv6,
pravin shelar9b4437a2016-11-21 11:02:58 -0800441 __be16 port, bool ipv6_rx_csum)
Pravin B Shelar371bd102015-08-26 23:46:54 -0700442{
443 struct socket *sock;
444 struct udp_port_cfg udp_conf;
445 int err;
446
447 memset(&udp_conf, 0, sizeof(udp_conf));
448
449 if (ipv6) {
450 udp_conf.family = AF_INET6;
John W. Linville8ed66f02015-10-26 17:01:44 -0400451 udp_conf.ipv6_v6only = 1;
pravin shelar9b4437a2016-11-21 11:02:58 -0800452 udp_conf.use_udp6_rx_checksums = ipv6_rx_csum;
Pravin B Shelar371bd102015-08-26 23:46:54 -0700453 } else {
454 udp_conf.family = AF_INET;
455 udp_conf.local_ip.s_addr = htonl(INADDR_ANY);
456 }
457
458 udp_conf.local_udp_port = port;
459
460 /* Open UDP socket */
461 err = udp_sock_create(net, &udp_conf, &sock);
462 if (err < 0)
463 return ERR_PTR(err);
464
465 return sock;
466}
467
Pravin B Shelar371bd102015-08-26 23:46:54 -0700468static int geneve_hlen(struct genevehdr *gh)
469{
470 return sizeof(*gh) + gh->opt_len * 4;
471}
472
David Millerd4546c22018-06-24 14:13:49 +0900473static struct sk_buff *geneve_gro_receive(struct sock *sk,
474 struct list_head *head,
475 struct sk_buff *skb)
Pravin B Shelar371bd102015-08-26 23:46:54 -0700476{
David Millerd4546c22018-06-24 14:13:49 +0900477 struct sk_buff *pp = NULL;
478 struct sk_buff *p;
Pravin B Shelar371bd102015-08-26 23:46:54 -0700479 struct genevehdr *gh, *gh2;
480 unsigned int hlen, gh_len, off_gnv;
481 const struct packet_offload *ptype;
482 __be16 type;
483 int flush = 1;
484
485 off_gnv = skb_gro_offset(skb);
486 hlen = off_gnv + sizeof(*gh);
487 gh = skb_gro_header_fast(skb, off_gnv);
488 if (skb_gro_header_hard(skb, hlen)) {
489 gh = skb_gro_header_slow(skb, hlen, off_gnv);
490 if (unlikely(!gh))
491 goto out;
492 }
493
494 if (gh->ver != GENEVE_VER || gh->oam)
495 goto out;
496 gh_len = geneve_hlen(gh);
497
498 hlen = off_gnv + gh_len;
499 if (skb_gro_header_hard(skb, hlen)) {
500 gh = skb_gro_header_slow(skb, hlen, off_gnv);
501 if (unlikely(!gh))
502 goto out;
503 }
504
David Millerd4546c22018-06-24 14:13:49 +0900505 list_for_each_entry(p, head, list) {
Pravin B Shelar371bd102015-08-26 23:46:54 -0700506 if (!NAPI_GRO_CB(p)->same_flow)
507 continue;
508
509 gh2 = (struct genevehdr *)(p->data + off_gnv);
510 if (gh->opt_len != gh2->opt_len ||
511 memcmp(gh, gh2, gh_len)) {
512 NAPI_GRO_CB(p)->same_flow = 0;
513 continue;
514 }
515 }
516
517 type = gh->proto_type;
518
519 rcu_read_lock();
520 ptype = gro_find_receive_by_type(type);
Alexander Duyckc194cf92016-03-09 09:24:23 -0800521 if (!ptype)
Pravin B Shelar371bd102015-08-26 23:46:54 -0700522 goto out_unlock;
Pravin B Shelar371bd102015-08-26 23:46:54 -0700523
524 skb_gro_pull(skb, gh_len);
525 skb_gro_postpull_rcsum(skb, gh, gh_len);
Sabrina Dubrocafcd91dd2016-10-20 15:58:02 +0200526 pp = call_gro_receive(ptype->callbacks.gro_receive, head, skb);
Alexander Duyckc194cf92016-03-09 09:24:23 -0800527 flush = 0;
Pravin B Shelar371bd102015-08-26 23:46:54 -0700528
529out_unlock:
530 rcu_read_unlock();
531out:
Sabrina Dubroca603d4cf2018-06-30 17:38:55 +0200532 skb_gro_flush_final(skb, pp, flush);
Pravin B Shelar371bd102015-08-26 23:46:54 -0700533
534 return pp;
535}
536
Tom Herbert4a0090a2016-04-05 08:22:55 -0700537static int geneve_gro_complete(struct sock *sk, struct sk_buff *skb,
538 int nhoff)
Pravin B Shelar371bd102015-08-26 23:46:54 -0700539{
540 struct genevehdr *gh;
541 struct packet_offload *ptype;
542 __be16 type;
543 int gh_len;
544 int err = -ENOSYS;
545
Pravin B Shelar371bd102015-08-26 23:46:54 -0700546 gh = (struct genevehdr *)(skb->data + nhoff);
547 gh_len = geneve_hlen(gh);
548 type = gh->proto_type;
549
550 rcu_read_lock();
551 ptype = gro_find_complete_by_type(type);
552 if (ptype)
553 err = ptype->callbacks.gro_complete(skb, nhoff + gh_len);
554
555 rcu_read_unlock();
Jarno Rajahalme229740c2016-05-03 16:10:21 -0700556
557 skb_set_inner_mac_header(skb, nhoff + gh_len);
558
Pravin B Shelar371bd102015-08-26 23:46:54 -0700559 return err;
560}
561
562/* Create new listen socket if needed */
563static struct geneve_sock *geneve_socket_create(struct net *net, __be16 port,
pravin shelar9b4437a2016-11-21 11:02:58 -0800564 bool ipv6, bool ipv6_rx_csum)
Pravin B Shelar371bd102015-08-26 23:46:54 -0700565{
566 struct geneve_net *gn = net_generic(net, geneve_net_id);
567 struct geneve_sock *gs;
568 struct socket *sock;
569 struct udp_tunnel_sock_cfg tunnel_cfg;
Pravin B Shelar66d47002015-08-26 23:46:55 -0700570 int h;
Pravin B Shelar371bd102015-08-26 23:46:54 -0700571
572 gs = kzalloc(sizeof(*gs), GFP_KERNEL);
573 if (!gs)
574 return ERR_PTR(-ENOMEM);
575
pravin shelar9b4437a2016-11-21 11:02:58 -0800576 sock = geneve_create_sock(net, ipv6, port, ipv6_rx_csum);
Pravin B Shelar371bd102015-08-26 23:46:54 -0700577 if (IS_ERR(sock)) {
578 kfree(gs);
579 return ERR_CAST(sock);
580 }
581
582 gs->sock = sock;
583 gs->refcnt = 1;
Pravin B Shelar66d47002015-08-26 23:46:55 -0700584 for (h = 0; h < VNI_HASH_SIZE; ++h)
585 INIT_HLIST_HEAD(&gs->vni_list[h]);
Pravin B Shelar371bd102015-08-26 23:46:54 -0700586
587 /* Initialize the geneve udp offloads structure */
Alexander Duycke7b3db52016-06-16 12:20:52 -0700588 udp_tunnel_notify_add_rx_port(gs->sock, UDP_TUNNEL_TYPE_GENEVE);
Pravin B Shelar371bd102015-08-26 23:46:54 -0700589
590 /* Mark socket as an encapsulation socket */
Tom Herbert4a0090a2016-04-05 08:22:55 -0700591 memset(&tunnel_cfg, 0, sizeof(tunnel_cfg));
Pravin B Shelar371bd102015-08-26 23:46:54 -0700592 tunnel_cfg.sk_user_data = gs;
593 tunnel_cfg.encap_type = 1;
Tom Herbert4a0090a2016-04-05 08:22:55 -0700594 tunnel_cfg.gro_receive = geneve_gro_receive;
595 tunnel_cfg.gro_complete = geneve_gro_complete;
Pravin B Shelar371bd102015-08-26 23:46:54 -0700596 tunnel_cfg.encap_rcv = geneve_udp_encap_recv;
Stefano Brivioa0796642018-11-08 12:19:18 +0100597 tunnel_cfg.encap_err_lookup = geneve_udp_encap_err_lookup;
Pravin B Shelar371bd102015-08-26 23:46:54 -0700598 tunnel_cfg.encap_destroy = NULL;
599 setup_udp_tunnel_sock(net, sock, &tunnel_cfg);
Pravin B Shelar371bd102015-08-26 23:46:54 -0700600 list_add(&gs->list, &gn->sock_list);
601 return gs;
602}
603
John W. Linville8ed66f02015-10-26 17:01:44 -0400604static void __geneve_sock_release(struct geneve_sock *gs)
Pravin B Shelar371bd102015-08-26 23:46:54 -0700605{
John W. Linville8ed66f02015-10-26 17:01:44 -0400606 if (!gs || --gs->refcnt)
Pravin B Shelar371bd102015-08-26 23:46:54 -0700607 return;
608
609 list_del(&gs->list);
Alexander Duycke7b3db52016-06-16 12:20:52 -0700610 udp_tunnel_notify_del_rx_port(gs->sock, UDP_TUNNEL_TYPE_GENEVE);
Pravin B Shelar371bd102015-08-26 23:46:54 -0700611 udp_tunnel_sock_release(gs->sock);
612 kfree_rcu(gs, rcu);
613}
614
John W. Linville8ed66f02015-10-26 17:01:44 -0400615static void geneve_sock_release(struct geneve_dev *geneve)
616{
pravin shelarfceb9c32016-10-28 09:59:16 -0700617 struct geneve_sock *gs4 = rtnl_dereference(geneve->sock4);
John W. Linville8ed66f02015-10-26 17:01:44 -0400618#if IS_ENABLED(CONFIG_IPV6)
pravin shelarfceb9c32016-10-28 09:59:16 -0700619 struct geneve_sock *gs6 = rtnl_dereference(geneve->sock6);
620
621 rcu_assign_pointer(geneve->sock6, NULL);
622#endif
623
624 rcu_assign_pointer(geneve->sock4, NULL);
625 synchronize_net();
626
627 __geneve_sock_release(gs4);
628#if IS_ENABLED(CONFIG_IPV6)
629 __geneve_sock_release(gs6);
John W. Linville8ed66f02015-10-26 17:01:44 -0400630#endif
631}
632
Pravin B Shelar371bd102015-08-26 23:46:54 -0700633static struct geneve_sock *geneve_find_sock(struct geneve_net *gn,
John W. Linville8ed66f02015-10-26 17:01:44 -0400634 sa_family_t family,
Pravin B Shelar371bd102015-08-26 23:46:54 -0700635 __be16 dst_port)
636{
637 struct geneve_sock *gs;
638
639 list_for_each_entry(gs, &gn->sock_list, list) {
640 if (inet_sk(gs->sock->sk)->inet_sport == dst_port &&
Jiri Benc1e9f12e2016-02-18 11:22:49 +0100641 geneve_get_sk_family(gs) == family) {
Pravin B Shelar371bd102015-08-26 23:46:54 -0700642 return gs;
643 }
644 }
645 return NULL;
646}
647
John W. Linville8ed66f02015-10-26 17:01:44 -0400648static int geneve_sock_add(struct geneve_dev *geneve, bool ipv6)
John W. Linville2d07dc72015-05-13 12:57:30 -0400649{
John W. Linville2d07dc72015-05-13 12:57:30 -0400650 struct net *net = geneve->net;
Pravin B Shelar371bd102015-08-26 23:46:54 -0700651 struct geneve_net *gn = net_generic(net, geneve_net_id);
Jiri Benc4b4c21f2017-07-02 19:00:58 +0200652 struct geneve_dev_node *node;
John W. Linville2d07dc72015-05-13 12:57:30 -0400653 struct geneve_sock *gs;
pravin shelar9b4437a2016-11-21 11:02:58 -0800654 __u8 vni[3];
Pravin B Shelar66d47002015-08-26 23:46:55 -0700655 __u32 hash;
John W. Linville2d07dc72015-05-13 12:57:30 -0400656
pravin shelar9b4437a2016-11-21 11:02:58 -0800657 gs = geneve_find_sock(gn, ipv6 ? AF_INET6 : AF_INET, geneve->info.key.tp_dst);
Pravin B Shelar371bd102015-08-26 23:46:54 -0700658 if (gs) {
659 gs->refcnt++;
660 goto out;
661 }
662
pravin shelar9b4437a2016-11-21 11:02:58 -0800663 gs = geneve_socket_create(net, geneve->info.key.tp_dst, ipv6,
664 geneve->use_udp6_rx_checksums);
John W. Linville2d07dc72015-05-13 12:57:30 -0400665 if (IS_ERR(gs))
666 return PTR_ERR(gs);
667
Pravin B Shelar371bd102015-08-26 23:46:54 -0700668out:
669 gs->collect_md = geneve->collect_md;
John W. Linville8ed66f02015-10-26 17:01:44 -0400670#if IS_ENABLED(CONFIG_IPV6)
Jiri Benc4b4c21f2017-07-02 19:00:58 +0200671 if (ipv6) {
pravin shelarfceb9c32016-10-28 09:59:16 -0700672 rcu_assign_pointer(geneve->sock6, gs);
Jiri Benc4b4c21f2017-07-02 19:00:58 +0200673 node = &geneve->hlist6;
674 } else
John W. Linville8ed66f02015-10-26 17:01:44 -0400675#endif
Jiri Benc4b4c21f2017-07-02 19:00:58 +0200676 {
pravin shelarfceb9c32016-10-28 09:59:16 -0700677 rcu_assign_pointer(geneve->sock4, gs);
Jiri Benc4b4c21f2017-07-02 19:00:58 +0200678 node = &geneve->hlist4;
679 }
680 node->geneve = geneve;
Pravin B Shelar66d47002015-08-26 23:46:55 -0700681
pravin shelar9b4437a2016-11-21 11:02:58 -0800682 tunnel_id_to_vni(geneve->info.key.tun_id, vni);
683 hash = geneve_net_vni_hash(vni);
Jiri Benc4b4c21f2017-07-02 19:00:58 +0200684 hlist_add_head_rcu(&node->hlist, &gs->vni_list[hash]);
John W. Linville2d07dc72015-05-13 12:57:30 -0400685 return 0;
686}
687
John W. Linville8ed66f02015-10-26 17:01:44 -0400688static int geneve_open(struct net_device *dev)
689{
690 struct geneve_dev *geneve = netdev_priv(dev);
John W. Linville8ed66f02015-10-26 17:01:44 -0400691 bool metadata = geneve->collect_md;
Jiri Benccf1c9cc2019-02-28 14:56:04 +0100692 bool ipv4, ipv6;
John W. Linville8ed66f02015-10-26 17:01:44 -0400693 int ret = 0;
694
Jiri Benccf1c9cc2019-02-28 14:56:04 +0100695 ipv6 = geneve->info.mode & IP_TUNNEL_INFO_IPV6 || metadata;
696 ipv4 = !ipv6 || metadata;
John W. Linville8ed66f02015-10-26 17:01:44 -0400697#if IS_ENABLED(CONFIG_IPV6)
Jiri Benccf1c9cc2019-02-28 14:56:04 +0100698 if (ipv6) {
John W. Linville8ed66f02015-10-26 17:01:44 -0400699 ret = geneve_sock_add(geneve, true);
Jiri Benccf1c9cc2019-02-28 14:56:04 +0100700 if (ret < 0 && ret != -EAFNOSUPPORT)
701 ipv4 = false;
702 }
John W. Linville8ed66f02015-10-26 17:01:44 -0400703#endif
Jiri Benccf1c9cc2019-02-28 14:56:04 +0100704 if (ipv4)
John W. Linville8ed66f02015-10-26 17:01:44 -0400705 ret = geneve_sock_add(geneve, false);
706 if (ret < 0)
707 geneve_sock_release(geneve);
708
709 return ret;
710}
711
John W. Linville2d07dc72015-05-13 12:57:30 -0400712static int geneve_stop(struct net_device *dev)
713{
714 struct geneve_dev *geneve = netdev_priv(dev);
John W. Linville2d07dc72015-05-13 12:57:30 -0400715
Jiri Benc4b4c21f2017-07-02 19:00:58 +0200716 hlist_del_init_rcu(&geneve->hlist4.hlist);
717#if IS_ENABLED(CONFIG_IPV6)
718 hlist_del_init_rcu(&geneve->hlist6.hlist);
719#endif
John W. Linville8ed66f02015-10-26 17:01:44 -0400720 geneve_sock_release(geneve);
John W. Linville2d07dc72015-05-13 12:57:30 -0400721 return 0;
722}
723
John W. Linville8ed66f02015-10-26 17:01:44 -0400724static void geneve_build_header(struct genevehdr *geneveh,
pravin shelarc3ef5aa2016-11-21 11:02:59 -0800725 const struct ip_tunnel_info *info)
John W. Linville8ed66f02015-10-26 17:01:44 -0400726{
727 geneveh->ver = GENEVE_VER;
pravin shelarc3ef5aa2016-11-21 11:02:59 -0800728 geneveh->opt_len = info->options_len / 4;
729 geneveh->oam = !!(info->key.tun_flags & TUNNEL_OAM);
730 geneveh->critical = !!(info->key.tun_flags & TUNNEL_CRIT_OPT);
John W. Linville8ed66f02015-10-26 17:01:44 -0400731 geneveh->rsvd1 = 0;
pravin shelarc3ef5aa2016-11-21 11:02:59 -0800732 tunnel_id_to_vni(info->key.tun_id, geneveh->vni);
John W. Linville8ed66f02015-10-26 17:01:44 -0400733 geneveh->proto_type = htons(ETH_P_TEB);
734 geneveh->rsvd2 = 0;
735
Pieter Jansen van Vuuren256c87c2018-06-26 21:39:36 -0700736 if (info->key.tun_flags & TUNNEL_GENEVE_OPT)
737 ip_tunnel_info_opts_get(geneveh->options, info);
John W. Linville8ed66f02015-10-26 17:01:44 -0400738}
739
pravin shelarc3ef5aa2016-11-21 11:02:59 -0800740static int geneve_build_skb(struct dst_entry *dst, struct sk_buff *skb,
741 const struct ip_tunnel_info *info,
742 bool xnet, int ip_hdr_len)
Pravin B Shelar371bd102015-08-26 23:46:54 -0700743{
pravin shelarc3ef5aa2016-11-21 11:02:59 -0800744 bool udp_sum = !!(info->key.tun_flags & TUNNEL_CSUM);
Pravin B Shelar371bd102015-08-26 23:46:54 -0700745 struct genevehdr *gnvh;
746 int min_headroom;
747 int err;
748
pravin shelarc3ef5aa2016-11-21 11:02:59 -0800749 skb_reset_mac_header(skb);
John W. Linville8ed66f02015-10-26 17:01:44 -0400750 skb_scrub_packet(skb, xnet);
751
pravin shelarc3ef5aa2016-11-21 11:02:59 -0800752 min_headroom = LL_RESERVED_SPACE(dst->dev) + dst->header_len +
753 GENEVE_BASE_HLEN + info->options_len + ip_hdr_len;
John W. Linville8ed66f02015-10-26 17:01:44 -0400754 err = skb_cow_head(skb, min_headroom);
Alexander Duyckaed069d2016-04-14 15:33:37 -0400755 if (unlikely(err))
John W. Linville8ed66f02015-10-26 17:01:44 -0400756 goto free_dst;
John W. Linville8ed66f02015-10-26 17:01:44 -0400757
Alexander Duyckaed069d2016-04-14 15:33:37 -0400758 err = udp_tunnel_handle_offloads(skb, udp_sum);
Dan Carpenter1ba64fa2016-04-19 17:30:56 +0300759 if (err)
John W. Linville8ed66f02015-10-26 17:01:44 -0400760 goto free_dst;
John W. Linville8ed66f02015-10-26 17:01:44 -0400761
Johannes Bergd58ff352017-06-16 14:29:23 +0200762 gnvh = __skb_push(skb, sizeof(*gnvh) + info->options_len);
pravin shelarc3ef5aa2016-11-21 11:02:59 -0800763 geneve_build_header(gnvh, info);
John W. Linville8ed66f02015-10-26 17:01:44 -0400764 skb_set_inner_protocol(skb, htons(ETH_P_TEB));
765 return 0;
766
767free_dst:
768 dst_release(dst);
769 return err;
770}
John W. Linville8ed66f02015-10-26 17:01:44 -0400771
772static struct rtable *geneve_get_v4_rt(struct sk_buff *skb,
773 struct net_device *dev,
Girish Moodalbail5b861f62017-07-20 22:44:20 -0700774 struct geneve_sock *gs4,
John W. Linville8ed66f02015-10-26 17:01:44 -0400775 struct flowi4 *fl4,
pravin shelarc3ef5aa2016-11-21 11:02:59 -0800776 const struct ip_tunnel_info *info)
Pravin B Shelare305ac62015-08-26 23:46:52 -0700777{
Daniel Borkmanndb3c6132016-03-04 15:15:07 +0100778 bool use_cache = ip_tunnel_dst_cache_usable(skb, info);
Pravin B Shelare305ac62015-08-26 23:46:52 -0700779 struct geneve_dev *geneve = netdev_priv(dev);
Paolo Abeni468dfff2016-02-12 15:43:58 +0100780 struct dst_cache *dst_cache;
Pravin B Shelare305ac62015-08-26 23:46:52 -0700781 struct rtable *rt = NULL;
782 __u8 tos;
783
Girish Moodalbail5b861f62017-07-20 22:44:20 -0700784 if (!gs4)
pravin shelarfceb9c32016-10-28 09:59:16 -0700785 return ERR_PTR(-EIO);
786
Pravin B Shelare305ac62015-08-26 23:46:52 -0700787 memset(fl4, 0, sizeof(*fl4));
788 fl4->flowi4_mark = skb->mark;
789 fl4->flowi4_proto = IPPROTO_UDP;
pravin shelar9b4437a2016-11-21 11:02:58 -0800790 fl4->daddr = info->key.u.ipv4.dst;
791 fl4->saddr = info->key.u.ipv4.src;
Pravin B Shelare305ac62015-08-26 23:46:52 -0700792
pravin shelar9b4437a2016-11-21 11:02:58 -0800793 tos = info->key.tos;
794 if ((tos == 1) && !geneve->collect_md) {
795 tos = ip_tunnel_get_dsfield(ip_hdr(skb), skb);
796 use_cache = false;
Paolo Abeni468dfff2016-02-12 15:43:58 +0100797 }
pravin shelar9b4437a2016-11-21 11:02:58 -0800798 fl4->flowi4_tos = RT_TOS(tos);
Paolo Abeni468dfff2016-02-12 15:43:58 +0100799
pravin shelarc3ef5aa2016-11-21 11:02:59 -0800800 dst_cache = (struct dst_cache *)&info->dst_cache;
Paolo Abeni468dfff2016-02-12 15:43:58 +0100801 if (use_cache) {
802 rt = dst_cache_get_ip4(dst_cache, &fl4->saddr);
803 if (rt)
804 return rt;
Pravin B Shelare305ac62015-08-26 23:46:52 -0700805 }
Pravin B Shelare305ac62015-08-26 23:46:52 -0700806 rt = ip_route_output_key(geneve->net, fl4);
807 if (IS_ERR(rt)) {
808 netdev_dbg(dev, "no route to %pI4\n", &fl4->daddr);
Pravin B Shelarfc4099f2015-10-22 18:17:16 -0700809 return ERR_PTR(-ENETUNREACH);
Pravin B Shelare305ac62015-08-26 23:46:52 -0700810 }
811 if (rt->dst.dev == dev) { /* is this necessary? */
812 netdev_dbg(dev, "circular route to %pI4\n", &fl4->daddr);
Pravin B Shelare305ac62015-08-26 23:46:52 -0700813 ip_rt_put(rt);
Pravin B Shelarfc4099f2015-10-22 18:17:16 -0700814 return ERR_PTR(-ELOOP);
Pravin B Shelare305ac62015-08-26 23:46:52 -0700815 }
Paolo Abeni468dfff2016-02-12 15:43:58 +0100816 if (use_cache)
817 dst_cache_set_ip4(dst_cache, &rt->dst, fl4->saddr);
Pravin B Shelare305ac62015-08-26 23:46:52 -0700818 return rt;
819}
820
John W. Linville8ed66f02015-10-26 17:01:44 -0400821#if IS_ENABLED(CONFIG_IPV6)
822static struct dst_entry *geneve_get_v6_dst(struct sk_buff *skb,
823 struct net_device *dev,
Girish Moodalbail5b861f62017-07-20 22:44:20 -0700824 struct geneve_sock *gs6,
John W. Linville8ed66f02015-10-26 17:01:44 -0400825 struct flowi6 *fl6,
pravin shelarc3ef5aa2016-11-21 11:02:59 -0800826 const struct ip_tunnel_info *info)
John W. Linville8ed66f02015-10-26 17:01:44 -0400827{
Daniel Borkmanndb3c6132016-03-04 15:15:07 +0100828 bool use_cache = ip_tunnel_dst_cache_usable(skb, info);
John W. Linville8ed66f02015-10-26 17:01:44 -0400829 struct geneve_dev *geneve = netdev_priv(dev);
John W. Linville8ed66f02015-10-26 17:01:44 -0400830 struct dst_entry *dst = NULL;
Paolo Abeni468dfff2016-02-12 15:43:58 +0100831 struct dst_cache *dst_cache;
John W. Linville3a56f862015-10-26 17:01:45 -0400832 __u8 prio;
John W. Linville8ed66f02015-10-26 17:01:44 -0400833
pravin shelarfceb9c32016-10-28 09:59:16 -0700834 if (!gs6)
835 return ERR_PTR(-EIO);
836
John W. Linville8ed66f02015-10-26 17:01:44 -0400837 memset(fl6, 0, sizeof(*fl6));
838 fl6->flowi6_mark = skb->mark;
839 fl6->flowi6_proto = IPPROTO_UDP;
pravin shelar9b4437a2016-11-21 11:02:58 -0800840 fl6->daddr = info->key.u.ipv6.dst;
841 fl6->saddr = info->key.u.ipv6.src;
842 prio = info->key.tos;
843 if ((prio == 1) && !geneve->collect_md) {
844 prio = ip_tunnel_get_dsfield(ip_hdr(skb), skb);
845 use_cache = false;
Paolo Abeni468dfff2016-02-12 15:43:58 +0100846 }
847
pravin shelar9b4437a2016-11-21 11:02:58 -0800848 fl6->flowlabel = ip6_make_flowinfo(RT_TOS(prio),
849 info->key.label);
pravin shelarc3ef5aa2016-11-21 11:02:59 -0800850 dst_cache = (struct dst_cache *)&info->dst_cache;
Paolo Abeni468dfff2016-02-12 15:43:58 +0100851 if (use_cache) {
852 dst = dst_cache_get_ip6(dst_cache, &fl6->saddr);
853 if (dst)
854 return dst;
John W. Linville8ed66f02015-10-26 17:01:44 -0400855 }
Sabrina Dubroca6c8991f2019-12-04 15:35:53 +0100856 dst = ipv6_stub->ipv6_dst_lookup_flow(geneve->net, gs6->sock->sk, fl6,
857 NULL);
858 if (IS_ERR(dst)) {
John W. Linville8ed66f02015-10-26 17:01:44 -0400859 netdev_dbg(dev, "no route to %pI6\n", &fl6->daddr);
860 return ERR_PTR(-ENETUNREACH);
861 }
862 if (dst->dev == dev) { /* is this necessary? */
863 netdev_dbg(dev, "circular route to %pI6\n", &fl6->daddr);
864 dst_release(dst);
865 return ERR_PTR(-ELOOP);
866 }
867
Paolo Abeni468dfff2016-02-12 15:43:58 +0100868 if (use_cache)
869 dst_cache_set_ip6(dst_cache, dst, &fl6->saddr);
John W. Linville8ed66f02015-10-26 17:01:44 -0400870 return dst;
871}
872#endif
873
pravin shelar9b4437a2016-11-21 11:02:58 -0800874static int geneve_xmit_skb(struct sk_buff *skb, struct net_device *dev,
pravin shelarc3ef5aa2016-11-21 11:02:59 -0800875 struct geneve_dev *geneve,
876 const struct ip_tunnel_info *info)
Pravin B Shelare305ac62015-08-26 23:46:52 -0700877{
pravin shelar9b4437a2016-11-21 11:02:58 -0800878 bool xnet = !net_eq(geneve->net, dev_net(geneve->dev));
879 struct geneve_sock *gs4 = rcu_dereference(geneve->sock4);
880 const struct ip_tunnel_key *key = &info->key;
881 struct rtable *rt;
John W. Linville2d07dc72015-05-13 12:57:30 -0400882 struct flowi4 fl4;
John W. Linville8760ce52015-06-01 15:51:34 -0400883 __u8 tos, ttl;
Stefano Brivioa025fb52018-11-08 12:19:19 +0100884 __be16 df = 0;
Pravin B Shelare305ac62015-08-26 23:46:52 -0700885 __be16 sport;
pravin shelarbcceeec2016-11-21 11:03:00 -0800886 int err;
John W. Linville2d07dc72015-05-13 12:57:30 -0400887
Girish Moodalbail5b861f62017-07-20 22:44:20 -0700888 rt = geneve_get_v4_rt(skb, dev, gs4, &fl4, info);
pravin shelar9b4437a2016-11-21 11:02:58 -0800889 if (IS_ERR(rt))
890 return PTR_ERR(rt);
Pravin B Shelar371bd102015-08-26 23:46:54 -0700891
Stefano Brivio6b4f92a2018-10-12 23:53:59 +0200892 skb_tunnel_check_pmtu(skb, &rt->dst,
893 GENEVE_IPV4_HLEN + info->options_len);
Xin Long52a589d2017-12-25 14:43:58 +0800894
Pravin B Shelar371bd102015-08-26 23:46:54 -0700895 sport = udp_flow_src_port(geneve->net, skb, 1, USHRT_MAX, true);
pravin shelar9b4437a2016-11-21 11:02:58 -0800896 if (geneve->collect_md) {
897 tos = ip_tunnel_ecn_encap(key->tos, ip_hdr(skb), skb);
Pravin B Shelar371bd102015-08-26 23:46:54 -0700898 ttl = key->ttl;
Stefano Brivioa025fb52018-11-08 12:19:19 +0100899
900 df = key->tun_flags & TUNNEL_DONT_FRAGMENT ? htons(IP_DF) : 0;
Pravin B Shelare305ac62015-08-26 23:46:52 -0700901 } else {
pravin shelar9b4437a2016-11-21 11:02:58 -0800902 tos = ip_tunnel_ecn_encap(fl4.flowi4_tos, ip_hdr(skb), skb);
Hangbin Liu52d0d4042018-09-12 10:04:21 +0800903 if (geneve->ttl_inherit)
904 ttl = ip_tunnel_get_ttl(ip_hdr(skb), skb);
905 else
906 ttl = key->ttl;
907 ttl = ttl ? : ip4_dst_hoplimit(&rt->dst);
Stefano Brivioa025fb52018-11-08 12:19:19 +0100908
909 if (geneve->df == GENEVE_DF_SET) {
910 df = htons(IP_DF);
911 } else if (geneve->df == GENEVE_DF_INHERIT) {
912 struct ethhdr *eth = eth_hdr(skb);
913
914 if (ntohs(eth->h_proto) == ETH_P_IPV6) {
915 df = htons(IP_DF);
916 } else if (ntohs(eth->h_proto) == ETH_P_IP) {
917 struct iphdr *iph = ip_hdr(skb);
918
919 if (iph->frag_off & htons(IP_DF))
920 df = htons(IP_DF);
921 }
922 }
John W. Linville2d07dc72015-05-13 12:57:30 -0400923 }
pravin shelar9b4437a2016-11-21 11:02:58 -0800924
pravin shelarc3ef5aa2016-11-21 11:02:59 -0800925 err = geneve_build_skb(&rt->dst, skb, info, xnet, sizeof(struct iphdr));
pravin shelar9b4437a2016-11-21 11:02:58 -0800926 if (unlikely(err))
927 return err;
928
Pravin B Shelar039f5062015-12-24 14:34:54 -0800929 udp_tunnel_xmit_skb(rt, gs4->sock->sk, skb, fl4.saddr, fl4.daddr,
pravin shelar9b4437a2016-11-21 11:02:58 -0800930 tos, ttl, df, sport, geneve->info.key.tp_dst,
Pravin B Shelar039f5062015-12-24 14:34:54 -0800931 !net_eq(geneve->net, dev_net(geneve->dev)),
pravin shelar9b4437a2016-11-21 11:02:58 -0800932 !(info->key.tun_flags & TUNNEL_CSUM));
933 return 0;
John W. Linville2d07dc72015-05-13 12:57:30 -0400934}
935
John W. Linville8ed66f02015-10-26 17:01:44 -0400936#if IS_ENABLED(CONFIG_IPV6)
pravin shelar9b4437a2016-11-21 11:02:58 -0800937static int geneve6_xmit_skb(struct sk_buff *skb, struct net_device *dev,
pravin shelarc3ef5aa2016-11-21 11:02:59 -0800938 struct geneve_dev *geneve,
939 const struct ip_tunnel_info *info)
John W. Linville8ed66f02015-10-26 17:01:44 -0400940{
pravin shelar9b4437a2016-11-21 11:02:58 -0800941 bool xnet = !net_eq(geneve->net, dev_net(geneve->dev));
942 struct geneve_sock *gs6 = rcu_dereference(geneve->sock6);
943 const struct ip_tunnel_key *key = &info->key;
John W. Linville8ed66f02015-10-26 17:01:44 -0400944 struct dst_entry *dst = NULL;
John W. Linville8ed66f02015-10-26 17:01:44 -0400945 struct flowi6 fl6;
John W. Linville3a56f862015-10-26 17:01:45 -0400946 __u8 prio, ttl;
John W. Linville8ed66f02015-10-26 17:01:44 -0400947 __be16 sport;
pravin shelarbcceeec2016-11-21 11:03:00 -0800948 int err;
John W. Linville8ed66f02015-10-26 17:01:44 -0400949
Girish Moodalbail5b861f62017-07-20 22:44:20 -0700950 dst = geneve_get_v6_dst(skb, dev, gs6, &fl6, info);
pravin shelar9b4437a2016-11-21 11:02:58 -0800951 if (IS_ERR(dst))
952 return PTR_ERR(dst);
John W. Linville8ed66f02015-10-26 17:01:44 -0400953
Stefano Brivio6b4f92a2018-10-12 23:53:59 +0200954 skb_tunnel_check_pmtu(skb, dst, GENEVE_IPV6_HLEN + info->options_len);
Xin Long52a589d2017-12-25 14:43:58 +0800955
John W. Linville8ed66f02015-10-26 17:01:44 -0400956 sport = udp_flow_src_port(geneve->net, skb, 1, USHRT_MAX, true);
pravin shelar9b4437a2016-11-21 11:02:58 -0800957 if (geneve->collect_md) {
958 prio = ip_tunnel_ecn_encap(key->tos, ip_hdr(skb), skb);
John W. Linville8ed66f02015-10-26 17:01:44 -0400959 ttl = key->ttl;
960 } else {
Daniel Borkmann95caf6f2016-03-18 18:37:58 +0100961 prio = ip_tunnel_ecn_encap(ip6_tclass(fl6.flowlabel),
pravin shelar9b4437a2016-11-21 11:02:58 -0800962 ip_hdr(skb), skb);
Hangbin Liu52d0d4042018-09-12 10:04:21 +0800963 if (geneve->ttl_inherit)
964 ttl = ip_tunnel_get_ttl(ip_hdr(skb), skb);
965 else
966 ttl = key->ttl;
967 ttl = ttl ? : ip6_dst_hoplimit(dst);
John W. Linville8ed66f02015-10-26 17:01:44 -0400968 }
Haishuang Yan31ac1c12016-11-28 13:26:58 +0800969 err = geneve_build_skb(dst, skb, info, xnet, sizeof(struct ipv6hdr));
pravin shelar9b4437a2016-11-21 11:02:58 -0800970 if (unlikely(err))
971 return err;
Daniel Borkmann8eb3b992016-03-09 03:00:04 +0100972
Pravin B Shelar039f5062015-12-24 14:34:54 -0800973 udp_tunnel6_xmit_skb(dst, gs6->sock->sk, skb, dev,
pravin shelar9b4437a2016-11-21 11:02:58 -0800974 &fl6.saddr, &fl6.daddr, prio, ttl,
975 info->key.label, sport, geneve->info.key.tp_dst,
976 !(info->key.tun_flags & TUNNEL_CSUM));
977 return 0;
John W. Linville8ed66f02015-10-26 17:01:44 -0400978}
979#endif
980
981static netdev_tx_t geneve_xmit(struct sk_buff *skb, struct net_device *dev)
982{
983 struct geneve_dev *geneve = netdev_priv(dev);
984 struct ip_tunnel_info *info = NULL;
pravin shelar9b4437a2016-11-21 11:02:58 -0800985 int err;
John W. Linville8ed66f02015-10-26 17:01:44 -0400986
pravin shelar9b4437a2016-11-21 11:02:58 -0800987 if (geneve->collect_md) {
John W. Linville8ed66f02015-10-26 17:01:44 -0400988 info = skb_tunnel_info(skb);
pravin shelar9b4437a2016-11-21 11:02:58 -0800989 if (unlikely(!info || !(info->mode & IP_TUNNEL_INFO_TX))) {
990 err = -EINVAL;
991 netdev_dbg(dev, "no tunnel metadata\n");
992 goto tx_error;
993 }
994 } else {
995 info = &geneve->info;
996 }
John W. Linville8ed66f02015-10-26 17:01:44 -0400997
Jakub Kicinskia717e3f2017-02-24 11:43:37 -0800998 rcu_read_lock();
John W. Linville8ed66f02015-10-26 17:01:44 -0400999#if IS_ENABLED(CONFIG_IPV6)
pravin shelar9b4437a2016-11-21 11:02:58 -08001000 if (info->mode & IP_TUNNEL_INFO_IPV6)
1001 err = geneve6_xmit_skb(skb, dev, geneve, info);
1002 else
John W. Linville8ed66f02015-10-26 17:01:44 -04001003#endif
pravin shelar9b4437a2016-11-21 11:02:58 -08001004 err = geneve_xmit_skb(skb, dev, geneve, info);
Jakub Kicinskia717e3f2017-02-24 11:43:37 -08001005 rcu_read_unlock();
pravin shelar9b4437a2016-11-21 11:02:58 -08001006
1007 if (likely(!err))
1008 return NETDEV_TX_OK;
1009tx_error:
1010 dev_kfree_skb(skb);
1011
1012 if (err == -ELOOP)
1013 dev->stats.collisions++;
1014 else if (err == -ENETUNREACH)
1015 dev->stats.tx_carrier_errors++;
1016
1017 dev->stats.tx_errors++;
1018 return NETDEV_TX_OK;
John W. Linville8ed66f02015-10-26 17:01:44 -04001019}
1020
Jarod Wilson91572082016-10-20 13:55:20 -04001021static int geneve_change_mtu(struct net_device *dev, int new_mtu)
David Wragg55e5bfb2016-02-10 00:05:57 +00001022{
Jarod Wilson91572082016-10-20 13:55:20 -04001023 if (new_mtu > dev->max_mtu)
1024 new_mtu = dev->max_mtu;
Alexey Kodanev321acc12018-04-19 15:42:31 +03001025 else if (new_mtu < dev->min_mtu)
1026 new_mtu = dev->min_mtu;
David Wraggaeee0e62016-02-18 17:43:29 +00001027
David Wragg55e5bfb2016-02-10 00:05:57 +00001028 dev->mtu = new_mtu;
1029 return 0;
1030}
1031
Pravin B Shelarfc4099f2015-10-22 18:17:16 -07001032static int geneve_fill_metadata_dst(struct net_device *dev, struct sk_buff *skb)
1033{
1034 struct ip_tunnel_info *info = skb_tunnel_info(skb);
1035 struct geneve_dev *geneve = netdev_priv(dev);
Pravin B Shelarfc4099f2015-10-22 18:17:16 -07001036
John W. Linvilleb8812fa2015-10-27 09:49:00 -04001037 if (ip_tunnel_info_af(info) == AF_INET) {
pravin shelar9b4437a2016-11-21 11:02:58 -08001038 struct rtable *rt;
1039 struct flowi4 fl4;
Girish Moodalbail5b861f62017-07-20 22:44:20 -07001040 struct geneve_sock *gs4 = rcu_dereference(geneve->sock4);
pravin shelar9b4437a2016-11-21 11:02:58 -08001041
Girish Moodalbail5b861f62017-07-20 22:44:20 -07001042 rt = geneve_get_v4_rt(skb, dev, gs4, &fl4, info);
John W. Linvilleb8812fa2015-10-27 09:49:00 -04001043 if (IS_ERR(rt))
1044 return PTR_ERR(rt);
1045
1046 ip_rt_put(rt);
1047 info->key.u.ipv4.src = fl4.saddr;
1048#if IS_ENABLED(CONFIG_IPV6)
1049 } else if (ip_tunnel_info_af(info) == AF_INET6) {
pravin shelar9b4437a2016-11-21 11:02:58 -08001050 struct dst_entry *dst;
1051 struct flowi6 fl6;
Girish Moodalbail5b861f62017-07-20 22:44:20 -07001052 struct geneve_sock *gs6 = rcu_dereference(geneve->sock6);
pravin shelar9b4437a2016-11-21 11:02:58 -08001053
Girish Moodalbail5b861f62017-07-20 22:44:20 -07001054 dst = geneve_get_v6_dst(skb, dev, gs6, &fl6, info);
John W. Linvilleb8812fa2015-10-27 09:49:00 -04001055 if (IS_ERR(dst))
1056 return PTR_ERR(dst);
1057
1058 dst_release(dst);
1059 info->key.u.ipv6.src = fl6.saddr;
1060#endif
1061 } else {
Pravin B Shelarfc4099f2015-10-22 18:17:16 -07001062 return -EINVAL;
John W. Linvilleb8812fa2015-10-27 09:49:00 -04001063 }
Pravin B Shelarfc4099f2015-10-22 18:17:16 -07001064
Pravin B Shelarfc4099f2015-10-22 18:17:16 -07001065 info->key.tp_src = udp_flow_src_port(geneve->net, skb,
1066 1, USHRT_MAX, true);
pravin shelar9b4437a2016-11-21 11:02:58 -08001067 info->key.tp_dst = geneve->info.key.tp_dst;
Pravin B Shelarfc4099f2015-10-22 18:17:16 -07001068 return 0;
1069}
1070
John W. Linville2d07dc72015-05-13 12:57:30 -04001071static const struct net_device_ops geneve_netdev_ops = {
1072 .ndo_init = geneve_init,
1073 .ndo_uninit = geneve_uninit,
1074 .ndo_open = geneve_open,
1075 .ndo_stop = geneve_stop,
1076 .ndo_start_xmit = geneve_xmit,
1077 .ndo_get_stats64 = ip_tunnel_get_stats64,
David Wragg55e5bfb2016-02-10 00:05:57 +00001078 .ndo_change_mtu = geneve_change_mtu,
John W. Linville2d07dc72015-05-13 12:57:30 -04001079 .ndo_validate_addr = eth_validate_addr,
1080 .ndo_set_mac_address = eth_mac_addr,
Pravin B Shelarfc4099f2015-10-22 18:17:16 -07001081 .ndo_fill_metadata_dst = geneve_fill_metadata_dst,
John W. Linville2d07dc72015-05-13 12:57:30 -04001082};
1083
1084static void geneve_get_drvinfo(struct net_device *dev,
1085 struct ethtool_drvinfo *drvinfo)
1086{
1087 strlcpy(drvinfo->version, GENEVE_NETDEV_VER, sizeof(drvinfo->version));
1088 strlcpy(drvinfo->driver, "geneve", sizeof(drvinfo->driver));
1089}
1090
1091static const struct ethtool_ops geneve_ethtool_ops = {
1092 .get_drvinfo = geneve_get_drvinfo,
1093 .get_link = ethtool_op_get_link,
1094};
1095
1096/* Info for udev, that this is a virtual tunnel endpoint */
1097static struct device_type geneve_type = {
1098 .name = "geneve",
1099};
1100
Sabrina Dubrocae5de25d2016-07-11 13:12:28 +02001101/* Calls the ndo_udp_tunnel_add of the caller in order to
Singhai, Anjali05ca4022015-12-14 12:21:20 -08001102 * supply the listening GENEVE udp ports. Callers are expected
Sabrina Dubrocae5de25d2016-07-11 13:12:28 +02001103 * to implement the ndo_udp_tunnel_add.
Singhai, Anjali05ca4022015-12-14 12:21:20 -08001104 */
Sabrina Dubroca2d2b13f2017-07-21 12:49:32 +02001105static void geneve_offload_rx_ports(struct net_device *dev, bool push)
Singhai, Anjali05ca4022015-12-14 12:21:20 -08001106{
1107 struct net *net = dev_net(dev);
1108 struct geneve_net *gn = net_generic(net, geneve_net_id);
1109 struct geneve_sock *gs;
Hannes Frederic Sowa681e6832016-04-18 21:19:48 +02001110
Singhai, Anjali05ca4022015-12-14 12:21:20 -08001111 rcu_read_lock();
Sabrina Dubroca2d2b13f2017-07-21 12:49:32 +02001112 list_for_each_entry_rcu(gs, &gn->sock_list, list) {
1113 if (push) {
1114 udp_tunnel_push_rx_port(dev, gs->sock,
1115 UDP_TUNNEL_TYPE_GENEVE);
1116 } else {
1117 udp_tunnel_drop_rx_port(dev, gs->sock,
1118 UDP_TUNNEL_TYPE_GENEVE);
1119 }
1120 }
Singhai, Anjali05ca4022015-12-14 12:21:20 -08001121 rcu_read_unlock();
1122}
Singhai, Anjali05ca4022015-12-14 12:21:20 -08001123
John W. Linville2d07dc72015-05-13 12:57:30 -04001124/* Initialize the device structure. */
1125static void geneve_setup(struct net_device *dev)
1126{
1127 ether_setup(dev);
1128
1129 dev->netdev_ops = &geneve_netdev_ops;
1130 dev->ethtool_ops = &geneve_ethtool_ops;
David S. Millercf124db2017-05-08 12:52:56 -04001131 dev->needs_free_netdev = true;
John W. Linville2d07dc72015-05-13 12:57:30 -04001132
1133 SET_NETDEV_DEVTYPE(dev, &geneve_type);
1134
John W. Linville2d07dc72015-05-13 12:57:30 -04001135 dev->features |= NETIF_F_LLTX;
1136 dev->features |= NETIF_F_SG | NETIF_F_HW_CSUM;
1137 dev->features |= NETIF_F_RXCSUM;
1138 dev->features |= NETIF_F_GSO_SOFTWARE;
1139
John W. Linville2d07dc72015-05-13 12:57:30 -04001140 dev->hw_features |= NETIF_F_SG | NETIF_F_HW_CSUM | NETIF_F_RXCSUM;
1141 dev->hw_features |= NETIF_F_GSO_SOFTWARE;
John W. Linville2d07dc72015-05-13 12:57:30 -04001142
Jarod Wilson91572082016-10-20 13:55:20 -04001143 /* MTU range: 68 - (something less than 65535) */
1144 dev->min_mtu = ETH_MIN_MTU;
1145 /* The max_mtu calculation does not take account of GENEVE
1146 * options, to avoid excluding potentially valid
1147 * configurations. This will be further reduced by IPvX hdr size.
1148 */
1149 dev->max_mtu = IP_MAX_MTU - GENEVE_BASE_HLEN - dev->hard_header_len;
1150
John W. Linville2d07dc72015-05-13 12:57:30 -04001151 netif_keep_dst(dev);
Jiri Bencfc41cdb2016-02-17 15:31:35 +01001152 dev->priv_flags &= ~IFF_TX_SKB_SHARING;
Phil Suttered961ac2015-08-18 10:30:31 +02001153 dev->priv_flags |= IFF_LIVE_ADDR_CHANGE | IFF_NO_QUEUE;
Pravin B Shelar87cd3dc2015-08-26 23:46:48 -07001154 eth_hw_addr_random(dev);
John W. Linville2d07dc72015-05-13 12:57:30 -04001155}
1156
1157static const struct nla_policy geneve_policy[IFLA_GENEVE_MAX + 1] = {
1158 [IFLA_GENEVE_ID] = { .type = NLA_U32 },
Pankaj Bharadiyac5936422019-12-09 10:31:43 -08001159 [IFLA_GENEVE_REMOTE] = { .len = sizeof_field(struct iphdr, daddr) },
John W. Linville8ed66f02015-10-26 17:01:44 -04001160 [IFLA_GENEVE_REMOTE6] = { .len = sizeof(struct in6_addr) },
John W. Linville8760ce52015-06-01 15:51:34 -04001161 [IFLA_GENEVE_TTL] = { .type = NLA_U8 },
John W. Linvilled8951122015-06-01 15:51:35 -04001162 [IFLA_GENEVE_TOS] = { .type = NLA_U8 },
Daniel Borkmann8eb3b992016-03-09 03:00:04 +01001163 [IFLA_GENEVE_LABEL] = { .type = NLA_U32 },
Pravin B Shelarcd7918b2015-08-26 23:46:51 -07001164 [IFLA_GENEVE_PORT] = { .type = NLA_U16 },
Pravin B Shelare305ac62015-08-26 23:46:52 -07001165 [IFLA_GENEVE_COLLECT_METADATA] = { .type = NLA_FLAG },
Tom Herbertabe492b2015-12-10 12:37:45 -08001166 [IFLA_GENEVE_UDP_CSUM] = { .type = NLA_U8 },
1167 [IFLA_GENEVE_UDP_ZERO_CSUM6_TX] = { .type = NLA_U8 },
1168 [IFLA_GENEVE_UDP_ZERO_CSUM6_RX] = { .type = NLA_U8 },
Hangbin Liu52d0d4042018-09-12 10:04:21 +08001169 [IFLA_GENEVE_TTL_INHERIT] = { .type = NLA_U8 },
Stefano Brivioa025fb52018-11-08 12:19:19 +01001170 [IFLA_GENEVE_DF] = { .type = NLA_U8 },
John W. Linville2d07dc72015-05-13 12:57:30 -04001171};
1172
Matthias Schiffera8b8a8892017-06-25 23:56:01 +02001173static int geneve_validate(struct nlattr *tb[], struct nlattr *data[],
1174 struct netlink_ext_ack *extack)
John W. Linville2d07dc72015-05-13 12:57:30 -04001175{
1176 if (tb[IFLA_ADDRESS]) {
Girish Moodalbailc5ebc442017-08-09 01:09:28 -07001177 if (nla_len(tb[IFLA_ADDRESS]) != ETH_ALEN) {
1178 NL_SET_ERR_MSG_ATTR(extack, tb[IFLA_ADDRESS],
1179 "Provided link layer address is not Ethernet");
John W. Linville2d07dc72015-05-13 12:57:30 -04001180 return -EINVAL;
Girish Moodalbailc5ebc442017-08-09 01:09:28 -07001181 }
John W. Linville2d07dc72015-05-13 12:57:30 -04001182
Girish Moodalbailc5ebc442017-08-09 01:09:28 -07001183 if (!is_valid_ether_addr(nla_data(tb[IFLA_ADDRESS]))) {
1184 NL_SET_ERR_MSG_ATTR(extack, tb[IFLA_ADDRESS],
1185 "Provided Ethernet address is not unicast");
John W. Linville2d07dc72015-05-13 12:57:30 -04001186 return -EADDRNOTAVAIL;
Girish Moodalbailc5ebc442017-08-09 01:09:28 -07001187 }
John W. Linville2d07dc72015-05-13 12:57:30 -04001188 }
1189
Girish Moodalbailc5ebc442017-08-09 01:09:28 -07001190 if (!data) {
1191 NL_SET_ERR_MSG(extack,
1192 "Not enough attributes provided to perform the operation");
John W. Linville2d07dc72015-05-13 12:57:30 -04001193 return -EINVAL;
Girish Moodalbailc5ebc442017-08-09 01:09:28 -07001194 }
John W. Linville2d07dc72015-05-13 12:57:30 -04001195
1196 if (data[IFLA_GENEVE_ID]) {
1197 __u32 vni = nla_get_u32(data[IFLA_GENEVE_ID]);
1198
Girish Moodalbailc5ebc442017-08-09 01:09:28 -07001199 if (vni >= GENEVE_N_VID) {
1200 NL_SET_ERR_MSG_ATTR(extack, data[IFLA_GENEVE_ID],
1201 "Geneve ID must be lower than 16777216");
John W. Linville2d07dc72015-05-13 12:57:30 -04001202 return -ERANGE;
Girish Moodalbailc5ebc442017-08-09 01:09:28 -07001203 }
John W. Linville2d07dc72015-05-13 12:57:30 -04001204 }
1205
Stefano Brivioa025fb52018-11-08 12:19:19 +01001206 if (data[IFLA_GENEVE_DF]) {
1207 enum ifla_geneve_df df = nla_get_u8(data[IFLA_GENEVE_DF]);
1208
1209 if (df < 0 || df > GENEVE_DF_MAX) {
1210 NL_SET_ERR_MSG_ATTR(extack, tb[IFLA_GENEVE_DF],
1211 "Invalid DF attribute");
1212 return -EINVAL;
1213 }
1214 }
1215
John W. Linville2d07dc72015-05-13 12:57:30 -04001216 return 0;
1217}
1218
Pravin B Shelar371bd102015-08-26 23:46:54 -07001219static struct geneve_dev *geneve_find_dev(struct geneve_net *gn,
pravin shelar9b4437a2016-11-21 11:02:58 -08001220 const struct ip_tunnel_info *info,
Pravin B Shelar371bd102015-08-26 23:46:54 -07001221 bool *tun_on_same_port,
1222 bool *tun_collect_md)
1223{
pravin shelar9b4437a2016-11-21 11:02:58 -08001224 struct geneve_dev *geneve, *t = NULL;
Pravin B Shelar371bd102015-08-26 23:46:54 -07001225
1226 *tun_on_same_port = false;
1227 *tun_collect_md = false;
Pravin B Shelar371bd102015-08-26 23:46:54 -07001228 list_for_each_entry(geneve, &gn->geneve_list, next) {
pravin shelar9b4437a2016-11-21 11:02:58 -08001229 if (info->key.tp_dst == geneve->info.key.tp_dst) {
Pravin B Shelar371bd102015-08-26 23:46:54 -07001230 *tun_collect_md = geneve->collect_md;
1231 *tun_on_same_port = true;
1232 }
pravin shelar9b4437a2016-11-21 11:02:58 -08001233 if (info->key.tun_id == geneve->info.key.tun_id &&
1234 info->key.tp_dst == geneve->info.key.tp_dst &&
1235 !memcmp(&info->key.u, &geneve->info.key.u, sizeof(info->key.u)))
Pravin B Shelar371bd102015-08-26 23:46:54 -07001236 t = geneve;
1237 }
1238 return t;
1239}
1240
pravin shelar9b4437a2016-11-21 11:02:58 -08001241static bool is_tnl_info_zero(const struct ip_tunnel_info *info)
1242{
Stefano Brivio3fa5f112017-10-20 13:31:36 +02001243 return !(info->key.tun_id || info->key.tun_flags || info->key.tos ||
1244 info->key.ttl || info->key.label || info->key.tp_src ||
1245 memchr_inv(&info->key.u, 0, sizeof(info->key.u)));
pravin shelar9b4437a2016-11-21 11:02:58 -08001246}
1247
Girish Moodalbail5b861f62017-07-20 22:44:20 -07001248static bool geneve_dst_addr_equal(struct ip_tunnel_info *a,
1249 struct ip_tunnel_info *b)
1250{
1251 if (ip_tunnel_info_af(a) == AF_INET)
1252 return a->key.u.ipv4.dst == b->key.u.ipv4.dst;
1253 else
1254 return ipv6_addr_equal(&a->key.u.ipv6.dst, &b->key.u.ipv6.dst);
1255}
1256
Pravin B Shelare305ac62015-08-26 23:46:52 -07001257static int geneve_configure(struct net *net, struct net_device *dev,
Girish Moodalbailc5ebc442017-08-09 01:09:28 -07001258 struct netlink_ext_ack *extack,
pravin shelar9b4437a2016-11-21 11:02:58 -08001259 const struct ip_tunnel_info *info,
Hangbin Liu52d0d4042018-09-12 10:04:21 +08001260 bool metadata, bool ipv6_rx_csum,
Stefano Brivioa025fb52018-11-08 12:19:19 +01001261 bool ttl_inherit, enum ifla_geneve_df df)
John W. Linville2d07dc72015-05-13 12:57:30 -04001262{
1263 struct geneve_net *gn = net_generic(net, geneve_net_id);
Pravin B Shelar371bd102015-08-26 23:46:54 -07001264 struct geneve_dev *t, *geneve = netdev_priv(dev);
1265 bool tun_collect_md, tun_on_same_port;
Paolo Abeni184fc8b2015-12-23 16:54:27 +01001266 int err, encap_len;
John W. Linville2d07dc72015-05-13 12:57:30 -04001267
Girish Moodalbailc5ebc442017-08-09 01:09:28 -07001268 if (metadata && !is_tnl_info_zero(info)) {
1269 NL_SET_ERR_MSG(extack,
1270 "Device is externally controlled, so attributes (VNI, Port, and so on) must not be specified");
John W. Linville8ed66f02015-10-26 17:01:44 -04001271 return -EINVAL;
Girish Moodalbailc5ebc442017-08-09 01:09:28 -07001272 }
John W. Linville2d07dc72015-05-13 12:57:30 -04001273
1274 geneve->net = net;
1275 geneve->dev = dev;
1276
pravin shelar9b4437a2016-11-21 11:02:58 -08001277 t = geneve_find_dev(gn, info, &tun_on_same_port, &tun_collect_md);
Pravin B Shelar371bd102015-08-26 23:46:54 -07001278 if (t)
1279 return -EBUSY;
1280
Paolo Abeni184fc8b2015-12-23 16:54:27 +01001281 /* make enough headroom for basic scenario */
1282 encap_len = GENEVE_BASE_HLEN + ETH_HLEN;
Eric Garver9a1c44d2017-06-02 14:54:10 -04001283 if (!metadata && ip_tunnel_info_af(info) == AF_INET) {
Paolo Abeni184fc8b2015-12-23 16:54:27 +01001284 encap_len += sizeof(struct iphdr);
Jarod Wilson91572082016-10-20 13:55:20 -04001285 dev->max_mtu -= sizeof(struct iphdr);
1286 } else {
Paolo Abeni184fc8b2015-12-23 16:54:27 +01001287 encap_len += sizeof(struct ipv6hdr);
Jarod Wilson91572082016-10-20 13:55:20 -04001288 dev->max_mtu -= sizeof(struct ipv6hdr);
1289 }
Paolo Abeni184fc8b2015-12-23 16:54:27 +01001290 dev->needed_headroom = encap_len + ETH_HLEN;
1291
Pravin B Shelar371bd102015-08-26 23:46:54 -07001292 if (metadata) {
Girish Moodalbailc5ebc442017-08-09 01:09:28 -07001293 if (tun_on_same_port) {
1294 NL_SET_ERR_MSG(extack,
1295 "There can be only one externally controlled device on a destination port");
Pravin B Shelar371bd102015-08-26 23:46:54 -07001296 return -EPERM;
Girish Moodalbailc5ebc442017-08-09 01:09:28 -07001297 }
Pravin B Shelar371bd102015-08-26 23:46:54 -07001298 } else {
Girish Moodalbailc5ebc442017-08-09 01:09:28 -07001299 if (tun_collect_md) {
1300 NL_SET_ERR_MSG(extack,
1301 "There already exists an externally controlled device on this destination port");
Pravin B Shelar371bd102015-08-26 23:46:54 -07001302 return -EPERM;
Girish Moodalbailc5ebc442017-08-09 01:09:28 -07001303 }
Pravin B Shelar371bd102015-08-26 23:46:54 -07001304 }
1305
pravin shelar9b4437a2016-11-21 11:02:58 -08001306 dst_cache_reset(&geneve->info.dst_cache);
1307 geneve->info = *info;
1308 geneve->collect_md = metadata;
1309 geneve->use_udp6_rx_checksums = ipv6_rx_csum;
Hangbin Liu52d0d4042018-09-12 10:04:21 +08001310 geneve->ttl_inherit = ttl_inherit;
Stefano Brivioa025fb52018-11-08 12:19:19 +01001311 geneve->df = df;
Paolo Abeni468dfff2016-02-12 15:43:58 +01001312
John W. Linville2d07dc72015-05-13 12:57:30 -04001313 err = register_netdevice(dev);
1314 if (err)
1315 return err;
1316
1317 list_add(&geneve->next, &gn->geneve_list);
John W. Linville2d07dc72015-05-13 12:57:30 -04001318 return 0;
1319}
1320
pravin shelar9b4437a2016-11-21 11:02:58 -08001321static void init_tnl_info(struct ip_tunnel_info *info, __u16 dst_port)
1322{
1323 memset(info, 0, sizeof(*info));
1324 info->key.tp_dst = htons(dst_port);
1325}
1326
Girish Moodalbailc5ebc442017-08-09 01:09:28 -07001327static int geneve_nl2info(struct nlattr *tb[], struct nlattr *data[],
1328 struct netlink_ext_ack *extack,
1329 struct ip_tunnel_info *info, bool *metadata,
Hangbin Liu52d0d4042018-09-12 10:04:21 +08001330 bool *use_udp6_rx_checksums, bool *ttl_inherit,
Stefano Brivioa025fb52018-11-08 12:19:19 +01001331 enum ifla_geneve_df *df, bool changelink)
Pravin B Shelare305ac62015-08-26 23:46:52 -07001332{
Girish Moodalbailc5ebc442017-08-09 01:09:28 -07001333 int attrtype;
1334
1335 if (data[IFLA_GENEVE_REMOTE] && data[IFLA_GENEVE_REMOTE6]) {
1336 NL_SET_ERR_MSG(extack,
1337 "Cannot specify both IPv4 and IPv6 Remote addresses");
John W. Linville8ed66f02015-10-26 17:01:44 -04001338 return -EINVAL;
Girish Moodalbailc5ebc442017-08-09 01:09:28 -07001339 }
John W. Linville8ed66f02015-10-26 17:01:44 -04001340
1341 if (data[IFLA_GENEVE_REMOTE]) {
Girish Moodalbailc5ebc442017-08-09 01:09:28 -07001342 if (changelink && (ip_tunnel_info_af(info) == AF_INET6)) {
1343 attrtype = IFLA_GENEVE_REMOTE;
1344 goto change_notsup;
1345 }
Girish Moodalbail5b861f62017-07-20 22:44:20 -07001346
1347 info->key.u.ipv4.dst =
John W. Linville8ed66f02015-10-26 17:01:44 -04001348 nla_get_in_addr(data[IFLA_GENEVE_REMOTE]);
John W. Linville8ed66f02015-10-26 17:01:44 -04001349
Dave Taht842841e2019-09-02 16:29:36 -07001350 if (ipv4_is_multicast(info->key.u.ipv4.dst)) {
Girish Moodalbailc5ebc442017-08-09 01:09:28 -07001351 NL_SET_ERR_MSG_ATTR(extack, data[IFLA_GENEVE_REMOTE],
1352 "Remote IPv4 address cannot be Multicast");
John W. Linville8ed66f02015-10-26 17:01:44 -04001353 return -EINVAL;
1354 }
1355 }
1356
pravin shelar9b4437a2016-11-21 11:02:58 -08001357 if (data[IFLA_GENEVE_REMOTE6]) {
Alexey Kodanev4c52a882018-04-19 15:42:29 +03001358#if IS_ENABLED(CONFIG_IPV6)
Girish Moodalbailc5ebc442017-08-09 01:09:28 -07001359 if (changelink && (ip_tunnel_info_af(info) == AF_INET)) {
1360 attrtype = IFLA_GENEVE_REMOTE6;
1361 goto change_notsup;
1362 }
Girish Moodalbail5b861f62017-07-20 22:44:20 -07001363
1364 info->mode = IP_TUNNEL_INFO_IPV6;
1365 info->key.u.ipv6.dst =
pravin shelar9b4437a2016-11-21 11:02:58 -08001366 nla_get_in6_addr(data[IFLA_GENEVE_REMOTE6]);
Pravin B Shelare305ac62015-08-26 23:46:52 -07001367
Girish Moodalbail5b861f62017-07-20 22:44:20 -07001368 if (ipv6_addr_type(&info->key.u.ipv6.dst) &
pravin shelar9b4437a2016-11-21 11:02:58 -08001369 IPV6_ADDR_LINKLOCAL) {
Girish Moodalbailc5ebc442017-08-09 01:09:28 -07001370 NL_SET_ERR_MSG_ATTR(extack, data[IFLA_GENEVE_REMOTE6],
1371 "Remote IPv6 address cannot be link-local");
pravin shelar9b4437a2016-11-21 11:02:58 -08001372 return -EINVAL;
1373 }
Girish Moodalbail5b861f62017-07-20 22:44:20 -07001374 if (ipv6_addr_is_multicast(&info->key.u.ipv6.dst)) {
Girish Moodalbailc5ebc442017-08-09 01:09:28 -07001375 NL_SET_ERR_MSG_ATTR(extack, data[IFLA_GENEVE_REMOTE6],
1376 "Remote IPv6 address cannot be Multicast");
pravin shelar9b4437a2016-11-21 11:02:58 -08001377 return -EINVAL;
1378 }
Girish Moodalbail5b861f62017-07-20 22:44:20 -07001379 info->key.tun_flags |= TUNNEL_CSUM;
1380 *use_udp6_rx_checksums = true;
pravin shelar9b4437a2016-11-21 11:02:58 -08001381#else
Girish Moodalbailc5ebc442017-08-09 01:09:28 -07001382 NL_SET_ERR_MSG_ATTR(extack, data[IFLA_GENEVE_REMOTE6],
1383 "IPv6 support not enabled in the kernel");
pravin shelar9b4437a2016-11-21 11:02:58 -08001384 return -EPFNOSUPPORT;
1385#endif
1386 }
1387
1388 if (data[IFLA_GENEVE_ID]) {
1389 __u32 vni;
1390 __u8 tvni[3];
Girish Moodalbail5b861f62017-07-20 22:44:20 -07001391 __be64 tunid;
pravin shelar9b4437a2016-11-21 11:02:58 -08001392
1393 vni = nla_get_u32(data[IFLA_GENEVE_ID]);
1394 tvni[0] = (vni & 0x00ff0000) >> 16;
1395 tvni[1] = (vni & 0x0000ff00) >> 8;
1396 tvni[2] = vni & 0x000000ff;
1397
Girish Moodalbail5b861f62017-07-20 22:44:20 -07001398 tunid = vni_to_tunnel_id(tvni);
Girish Moodalbailc5ebc442017-08-09 01:09:28 -07001399 if (changelink && (tunid != info->key.tun_id)) {
1400 attrtype = IFLA_GENEVE_ID;
1401 goto change_notsup;
1402 }
Girish Moodalbail5b861f62017-07-20 22:44:20 -07001403 info->key.tun_id = tunid;
pravin shelar9b4437a2016-11-21 11:02:58 -08001404 }
Girish Moodalbail5b861f62017-07-20 22:44:20 -07001405
Hangbin Liua97d97b2018-09-29 23:06:29 +08001406 if (data[IFLA_GENEVE_TTL_INHERIT]) {
1407 if (nla_get_u8(data[IFLA_GENEVE_TTL_INHERIT]))
1408 *ttl_inherit = true;
1409 else
1410 *ttl_inherit = false;
1411 } else if (data[IFLA_GENEVE_TTL]) {
Girish Moodalbail5b861f62017-07-20 22:44:20 -07001412 info->key.ttl = nla_get_u8(data[IFLA_GENEVE_TTL]);
Hangbin Liua97d97b2018-09-29 23:06:29 +08001413 *ttl_inherit = false;
1414 }
Hangbin Liu52d0d4042018-09-12 10:04:21 +08001415
Pravin B Shelare305ac62015-08-26 23:46:52 -07001416 if (data[IFLA_GENEVE_TOS])
Girish Moodalbail5b861f62017-07-20 22:44:20 -07001417 info->key.tos = nla_get_u8(data[IFLA_GENEVE_TOS]);
Pravin B Shelare305ac62015-08-26 23:46:52 -07001418
Stefano Brivioa025fb52018-11-08 12:19:19 +01001419 if (data[IFLA_GENEVE_DF])
1420 *df = nla_get_u8(data[IFLA_GENEVE_DF]);
1421
pravin shelar9b4437a2016-11-21 11:02:58 -08001422 if (data[IFLA_GENEVE_LABEL]) {
Girish Moodalbail5b861f62017-07-20 22:44:20 -07001423 info->key.label = nla_get_be32(data[IFLA_GENEVE_LABEL]) &
pravin shelar9b4437a2016-11-21 11:02:58 -08001424 IPV6_FLOWLABEL_MASK;
Girish Moodalbailc5ebc442017-08-09 01:09:28 -07001425 if (info->key.label && (!(info->mode & IP_TUNNEL_INFO_IPV6))) {
1426 NL_SET_ERR_MSG_ATTR(extack, data[IFLA_GENEVE_LABEL],
1427 "Label attribute only applies for IPv6 Geneve devices");
pravin shelar9b4437a2016-11-21 11:02:58 -08001428 return -EINVAL;
Girish Moodalbailc5ebc442017-08-09 01:09:28 -07001429 }
pravin shelar9b4437a2016-11-21 11:02:58 -08001430 }
Daniel Borkmann8eb3b992016-03-09 03:00:04 +01001431
Girish Moodalbail5b861f62017-07-20 22:44:20 -07001432 if (data[IFLA_GENEVE_PORT]) {
Girish Moodalbailc5ebc442017-08-09 01:09:28 -07001433 if (changelink) {
1434 attrtype = IFLA_GENEVE_PORT;
1435 goto change_notsup;
1436 }
Girish Moodalbail5b861f62017-07-20 22:44:20 -07001437 info->key.tp_dst = nla_get_be16(data[IFLA_GENEVE_PORT]);
1438 }
Pravin B Shelare305ac62015-08-26 23:46:52 -07001439
Girish Moodalbail5b861f62017-07-20 22:44:20 -07001440 if (data[IFLA_GENEVE_COLLECT_METADATA]) {
Girish Moodalbailc5ebc442017-08-09 01:09:28 -07001441 if (changelink) {
1442 attrtype = IFLA_GENEVE_COLLECT_METADATA;
1443 goto change_notsup;
1444 }
Girish Moodalbail5b861f62017-07-20 22:44:20 -07001445 *metadata = true;
1446 }
Pravin B Shelare305ac62015-08-26 23:46:52 -07001447
Girish Moodalbail5b861f62017-07-20 22:44:20 -07001448 if (data[IFLA_GENEVE_UDP_CSUM]) {
Girish Moodalbailc5ebc442017-08-09 01:09:28 -07001449 if (changelink) {
1450 attrtype = IFLA_GENEVE_UDP_CSUM;
1451 goto change_notsup;
1452 }
Girish Moodalbail5b861f62017-07-20 22:44:20 -07001453 if (nla_get_u8(data[IFLA_GENEVE_UDP_CSUM]))
1454 info->key.tun_flags |= TUNNEL_CSUM;
1455 }
Tom Herbertabe492b2015-12-10 12:37:45 -08001456
Girish Moodalbail5b861f62017-07-20 22:44:20 -07001457 if (data[IFLA_GENEVE_UDP_ZERO_CSUM6_TX]) {
Hangbin Liuf9094b72017-11-23 11:27:24 +08001458#if IS_ENABLED(CONFIG_IPV6)
Girish Moodalbailc5ebc442017-08-09 01:09:28 -07001459 if (changelink) {
1460 attrtype = IFLA_GENEVE_UDP_ZERO_CSUM6_TX;
1461 goto change_notsup;
1462 }
Girish Moodalbail5b861f62017-07-20 22:44:20 -07001463 if (nla_get_u8(data[IFLA_GENEVE_UDP_ZERO_CSUM6_TX]))
1464 info->key.tun_flags &= ~TUNNEL_CSUM;
Hangbin Liuf9094b72017-11-23 11:27:24 +08001465#else
1466 NL_SET_ERR_MSG_ATTR(extack, data[IFLA_GENEVE_UDP_ZERO_CSUM6_TX],
1467 "IPv6 support not enabled in the kernel");
1468 return -EPFNOSUPPORT;
1469#endif
Girish Moodalbail5b861f62017-07-20 22:44:20 -07001470 }
Tom Herbertabe492b2015-12-10 12:37:45 -08001471
Girish Moodalbail5b861f62017-07-20 22:44:20 -07001472 if (data[IFLA_GENEVE_UDP_ZERO_CSUM6_RX]) {
Hangbin Liuf9094b72017-11-23 11:27:24 +08001473#if IS_ENABLED(CONFIG_IPV6)
Girish Moodalbailc5ebc442017-08-09 01:09:28 -07001474 if (changelink) {
1475 attrtype = IFLA_GENEVE_UDP_ZERO_CSUM6_RX;
1476 goto change_notsup;
1477 }
Girish Moodalbail5b861f62017-07-20 22:44:20 -07001478 if (nla_get_u8(data[IFLA_GENEVE_UDP_ZERO_CSUM6_RX]))
1479 *use_udp6_rx_checksums = false;
Hangbin Liuf9094b72017-11-23 11:27:24 +08001480#else
1481 NL_SET_ERR_MSG_ATTR(extack, data[IFLA_GENEVE_UDP_ZERO_CSUM6_RX],
1482 "IPv6 support not enabled in the kernel");
1483 return -EPFNOSUPPORT;
1484#endif
Girish Moodalbail5b861f62017-07-20 22:44:20 -07001485 }
1486
1487 return 0;
Girish Moodalbailc5ebc442017-08-09 01:09:28 -07001488change_notsup:
1489 NL_SET_ERR_MSG_ATTR(extack, data[attrtype],
1490 "Changing VNI, Port, endpoint IP address family, external, and UDP checksum attributes are not supported");
1491 return -EOPNOTSUPP;
Girish Moodalbail5b861f62017-07-20 22:44:20 -07001492}
1493
Alexey Kodanevc40e89f2018-04-19 15:42:32 +03001494static void geneve_link_config(struct net_device *dev,
1495 struct ip_tunnel_info *info, struct nlattr *tb[])
1496{
1497 struct geneve_dev *geneve = netdev_priv(dev);
1498 int ldev_mtu = 0;
1499
1500 if (tb[IFLA_MTU]) {
1501 geneve_change_mtu(dev, nla_get_u32(tb[IFLA_MTU]));
1502 return;
1503 }
1504
1505 switch (ip_tunnel_info_af(info)) {
1506 case AF_INET: {
1507 struct flowi4 fl4 = { .daddr = info->key.u.ipv4.dst };
1508 struct rtable *rt = ip_route_output_key(geneve->net, &fl4);
1509
1510 if (!IS_ERR(rt) && rt->dst.dev) {
1511 ldev_mtu = rt->dst.dev->mtu - GENEVE_IPV4_HLEN;
1512 ip_rt_put(rt);
1513 }
1514 break;
1515 }
1516#if IS_ENABLED(CONFIG_IPV6)
1517 case AF_INET6: {
Hangbin Liuc0a47e42019-02-07 18:36:10 +08001518 struct rt6_info *rt;
1519
1520 if (!__in6_dev_get(dev))
1521 break;
1522
1523 rt = rt6_lookup(geneve->net, &info->key.u.ipv6.dst, NULL, 0,
1524 NULL, 0);
Alexey Kodanevc40e89f2018-04-19 15:42:32 +03001525
1526 if (rt && rt->dst.dev)
1527 ldev_mtu = rt->dst.dev->mtu - GENEVE_IPV6_HLEN;
1528 ip6_rt_put(rt);
1529 break;
1530 }
1531#endif
1532 }
1533
1534 if (ldev_mtu <= 0)
1535 return;
1536
1537 geneve_change_mtu(dev, ldev_mtu - info->options_len);
1538}
1539
Girish Moodalbail5b861f62017-07-20 22:44:20 -07001540static int geneve_newlink(struct net *net, struct net_device *dev,
1541 struct nlattr *tb[], struct nlattr *data[],
1542 struct netlink_ext_ack *extack)
1543{
Stefano Brivioa025fb52018-11-08 12:19:19 +01001544 enum ifla_geneve_df df = GENEVE_DF_UNSET;
Girish Moodalbail5b861f62017-07-20 22:44:20 -07001545 bool use_udp6_rx_checksums = false;
1546 struct ip_tunnel_info info;
Hangbin Liu52d0d4042018-09-12 10:04:21 +08001547 bool ttl_inherit = false;
Girish Moodalbail5b861f62017-07-20 22:44:20 -07001548 bool metadata = false;
1549 int err;
1550
1551 init_tnl_info(&info, GENEVE_UDP_PORT);
Girish Moodalbailc5ebc442017-08-09 01:09:28 -07001552 err = geneve_nl2info(tb, data, extack, &info, &metadata,
Stefano Brivioa025fb52018-11-08 12:19:19 +01001553 &use_udp6_rx_checksums, &ttl_inherit, &df, false);
Girish Moodalbail5b861f62017-07-20 22:44:20 -07001554 if (err)
1555 return err;
Tom Herbertabe492b2015-12-10 12:37:45 -08001556
Alexey Kodanevc40e89f2018-04-19 15:42:32 +03001557 err = geneve_configure(net, dev, extack, &info, metadata,
Stefano Brivioa025fb52018-11-08 12:19:19 +01001558 use_udp6_rx_checksums, ttl_inherit, df);
Alexey Kodanevc40e89f2018-04-19 15:42:32 +03001559 if (err)
1560 return err;
1561
1562 geneve_link_config(dev, &info, tb);
1563
1564 return 0;
Pravin B Shelare305ac62015-08-26 23:46:52 -07001565}
1566
Girish Moodalbail5b861f62017-07-20 22:44:20 -07001567/* Quiesces the geneve device data path for both TX and RX.
1568 *
1569 * On transmit geneve checks for non-NULL geneve_sock before it proceeds.
1570 * So, if we set that socket to NULL under RCU and wait for synchronize_net()
1571 * to complete for the existing set of in-flight packets to be transmitted,
1572 * then we would have quiesced the transmit data path. All the future packets
1573 * will get dropped until we unquiesce the data path.
1574 *
1575 * On receive geneve dereference the geneve_sock stashed in the socket. So,
1576 * if we set that to NULL under RCU and wait for synchronize_net() to
1577 * complete, then we would have quiesced the receive data path.
1578 */
1579static void geneve_quiesce(struct geneve_dev *geneve, struct geneve_sock **gs4,
1580 struct geneve_sock **gs6)
1581{
1582 *gs4 = rtnl_dereference(geneve->sock4);
1583 rcu_assign_pointer(geneve->sock4, NULL);
1584 if (*gs4)
1585 rcu_assign_sk_user_data((*gs4)->sock->sk, NULL);
1586#if IS_ENABLED(CONFIG_IPV6)
1587 *gs6 = rtnl_dereference(geneve->sock6);
1588 rcu_assign_pointer(geneve->sock6, NULL);
1589 if (*gs6)
1590 rcu_assign_sk_user_data((*gs6)->sock->sk, NULL);
1591#else
1592 *gs6 = NULL;
1593#endif
1594 synchronize_net();
1595}
1596
1597/* Resumes the geneve device data path for both TX and RX. */
1598static void geneve_unquiesce(struct geneve_dev *geneve, struct geneve_sock *gs4,
1599 struct geneve_sock __maybe_unused *gs6)
1600{
1601 rcu_assign_pointer(geneve->sock4, gs4);
1602 if (gs4)
1603 rcu_assign_sk_user_data(gs4->sock->sk, gs4);
1604#if IS_ENABLED(CONFIG_IPV6)
1605 rcu_assign_pointer(geneve->sock6, gs6);
1606 if (gs6)
1607 rcu_assign_sk_user_data(gs6->sock->sk, gs6);
1608#endif
1609 synchronize_net();
1610}
1611
1612static int geneve_changelink(struct net_device *dev, struct nlattr *tb[],
1613 struct nlattr *data[],
1614 struct netlink_ext_ack *extack)
1615{
1616 struct geneve_dev *geneve = netdev_priv(dev);
1617 struct geneve_sock *gs4, *gs6;
1618 struct ip_tunnel_info info;
1619 bool metadata;
1620 bool use_udp6_rx_checksums;
Stefano Brivioa025fb52018-11-08 12:19:19 +01001621 enum ifla_geneve_df df;
Hangbin Liu52d0d4042018-09-12 10:04:21 +08001622 bool ttl_inherit;
Girish Moodalbail5b861f62017-07-20 22:44:20 -07001623 int err;
1624
1625 /* If the geneve device is configured for metadata (or externally
1626 * controlled, for example, OVS), then nothing can be changed.
1627 */
1628 if (geneve->collect_md)
1629 return -EOPNOTSUPP;
1630
1631 /* Start with the existing info. */
1632 memcpy(&info, &geneve->info, sizeof(info));
1633 metadata = geneve->collect_md;
1634 use_udp6_rx_checksums = geneve->use_udp6_rx_checksums;
Hangbin Liu52d0d4042018-09-12 10:04:21 +08001635 ttl_inherit = geneve->ttl_inherit;
Girish Moodalbailc5ebc442017-08-09 01:09:28 -07001636 err = geneve_nl2info(tb, data, extack, &info, &metadata,
Stefano Brivioa025fb52018-11-08 12:19:19 +01001637 &use_udp6_rx_checksums, &ttl_inherit, &df, true);
Girish Moodalbail5b861f62017-07-20 22:44:20 -07001638 if (err)
1639 return err;
1640
Alexey Kodanevc40e89f2018-04-19 15:42:32 +03001641 if (!geneve_dst_addr_equal(&geneve->info, &info)) {
Girish Moodalbail5b861f62017-07-20 22:44:20 -07001642 dst_cache_reset(&info.dst_cache);
Alexey Kodanevc40e89f2018-04-19 15:42:32 +03001643 geneve_link_config(dev, &info, tb);
1644 }
Girish Moodalbail5b861f62017-07-20 22:44:20 -07001645
1646 geneve_quiesce(geneve, &gs4, &gs6);
1647 geneve->info = info;
1648 geneve->collect_md = metadata;
1649 geneve->use_udp6_rx_checksums = use_udp6_rx_checksums;
Hangbin Liu52d0d4042018-09-12 10:04:21 +08001650 geneve->ttl_inherit = ttl_inherit;
Girish Moodalbail5b861f62017-07-20 22:44:20 -07001651 geneve_unquiesce(geneve, gs4, gs6);
1652
1653 return 0;
1654}
1655
John W. Linville2d07dc72015-05-13 12:57:30 -04001656static void geneve_dellink(struct net_device *dev, struct list_head *head)
1657{
1658 struct geneve_dev *geneve = netdev_priv(dev);
1659
John W. Linville2d07dc72015-05-13 12:57:30 -04001660 list_del(&geneve->next);
1661 unregister_netdevice_queue(dev, head);
1662}
1663
1664static size_t geneve_get_size(const struct net_device *dev)
1665{
1666 return nla_total_size(sizeof(__u32)) + /* IFLA_GENEVE_ID */
John W. Linville8ed66f02015-10-26 17:01:44 -04001667 nla_total_size(sizeof(struct in6_addr)) + /* IFLA_GENEVE_REMOTE{6} */
John W. Linville8760ce52015-06-01 15:51:34 -04001668 nla_total_size(sizeof(__u8)) + /* IFLA_GENEVE_TTL */
John W. Linvilled8951122015-06-01 15:51:35 -04001669 nla_total_size(sizeof(__u8)) + /* IFLA_GENEVE_TOS */
Stefano Brivioa025fb52018-11-08 12:19:19 +01001670 nla_total_size(sizeof(__u8)) + /* IFLA_GENEVE_DF */
Daniel Borkmann8eb3b992016-03-09 03:00:04 +01001671 nla_total_size(sizeof(__be32)) + /* IFLA_GENEVE_LABEL */
John W. Linville7bbe33f2015-09-22 13:09:32 -04001672 nla_total_size(sizeof(__be16)) + /* IFLA_GENEVE_PORT */
Pravin B Shelare305ac62015-08-26 23:46:52 -07001673 nla_total_size(0) + /* IFLA_GENEVE_COLLECT_METADATA */
Tom Herbertabe492b2015-12-10 12:37:45 -08001674 nla_total_size(sizeof(__u8)) + /* IFLA_GENEVE_UDP_CSUM */
1675 nla_total_size(sizeof(__u8)) + /* IFLA_GENEVE_UDP_ZERO_CSUM6_TX */
1676 nla_total_size(sizeof(__u8)) + /* IFLA_GENEVE_UDP_ZERO_CSUM6_RX */
Hangbin Liu52d0d4042018-09-12 10:04:21 +08001677 nla_total_size(sizeof(__u8)) + /* IFLA_GENEVE_TTL_INHERIT */
John W. Linville2d07dc72015-05-13 12:57:30 -04001678 0;
1679}
1680
1681static int geneve_fill_info(struct sk_buff *skb, const struct net_device *dev)
1682{
1683 struct geneve_dev *geneve = netdev_priv(dev);
pravin shelar9b4437a2016-11-21 11:02:58 -08001684 struct ip_tunnel_info *info = &geneve->info;
Hangbin Liu52d0d4042018-09-12 10:04:21 +08001685 bool ttl_inherit = geneve->ttl_inherit;
Hangbin Liufd7eafd2017-11-15 09:43:09 +08001686 bool metadata = geneve->collect_md;
pravin shelar9b4437a2016-11-21 11:02:58 -08001687 __u8 tmp_vni[3];
John W. Linville2d07dc72015-05-13 12:57:30 -04001688 __u32 vni;
1689
pravin shelar9b4437a2016-11-21 11:02:58 -08001690 tunnel_id_to_vni(info->key.tun_id, tmp_vni);
1691 vni = (tmp_vni[0] << 16) | (tmp_vni[1] << 8) | tmp_vni[2];
John W. Linville2d07dc72015-05-13 12:57:30 -04001692 if (nla_put_u32(skb, IFLA_GENEVE_ID, vni))
1693 goto nla_put_failure;
1694
Hangbin Liufd7eafd2017-11-15 09:43:09 +08001695 if (!metadata && ip_tunnel_info_af(info) == AF_INET) {
John W. Linville8ed66f02015-10-26 17:01:44 -04001696 if (nla_put_in_addr(skb, IFLA_GENEVE_REMOTE,
pravin shelar9b4437a2016-11-21 11:02:58 -08001697 info->key.u.ipv4.dst))
John W. Linville8ed66f02015-10-26 17:01:44 -04001698 goto nla_put_failure;
pravin shelar9b4437a2016-11-21 11:02:58 -08001699 if (nla_put_u8(skb, IFLA_GENEVE_UDP_CSUM,
1700 !!(info->key.tun_flags & TUNNEL_CSUM)))
1701 goto nla_put_failure;
1702
John W. Linville8ed66f02015-10-26 17:01:44 -04001703#if IS_ENABLED(CONFIG_IPV6)
Hangbin Liufd7eafd2017-11-15 09:43:09 +08001704 } else if (!metadata) {
John W. Linville8ed66f02015-10-26 17:01:44 -04001705 if (nla_put_in6_addr(skb, IFLA_GENEVE_REMOTE6,
pravin shelar9b4437a2016-11-21 11:02:58 -08001706 &info->key.u.ipv6.dst))
1707 goto nla_put_failure;
pravin shelar9b4437a2016-11-21 11:02:58 -08001708 if (nla_put_u8(skb, IFLA_GENEVE_UDP_ZERO_CSUM6_TX,
1709 !(info->key.tun_flags & TUNNEL_CSUM)))
1710 goto nla_put_failure;
Eric Garver11387fe2017-05-23 18:37:27 -04001711#endif
Hangbin Liufd7eafd2017-11-15 09:43:09 +08001712 }
John W. Linville2d07dc72015-05-13 12:57:30 -04001713
pravin shelar9b4437a2016-11-21 11:02:58 -08001714 if (nla_put_u8(skb, IFLA_GENEVE_TTL, info->key.ttl) ||
1715 nla_put_u8(skb, IFLA_GENEVE_TOS, info->key.tos) ||
1716 nla_put_be32(skb, IFLA_GENEVE_LABEL, info->key.label))
John W. Linville8760ce52015-06-01 15:51:34 -04001717 goto nla_put_failure;
1718
Stefano Brivioa025fb52018-11-08 12:19:19 +01001719 if (nla_put_u8(skb, IFLA_GENEVE_DF, geneve->df))
1720 goto nla_put_failure;
1721
pravin shelar9b4437a2016-11-21 11:02:58 -08001722 if (nla_put_be16(skb, IFLA_GENEVE_PORT, info->key.tp_dst))
Pravin B Shelarcd7918b2015-08-26 23:46:51 -07001723 goto nla_put_failure;
1724
Hangbin Liufd7eafd2017-11-15 09:43:09 +08001725 if (metadata && nla_put_flag(skb, IFLA_GENEVE_COLLECT_METADATA))
Hangbin Liuf9094b72017-11-23 11:27:24 +08001726 goto nla_put_failure;
Hangbin Liufd7eafd2017-11-15 09:43:09 +08001727
Hangbin Liuf9094b72017-11-23 11:27:24 +08001728#if IS_ENABLED(CONFIG_IPV6)
Hangbin Liufd7eafd2017-11-15 09:43:09 +08001729 if (nla_put_u8(skb, IFLA_GENEVE_UDP_ZERO_CSUM6_RX,
1730 !geneve->use_udp6_rx_checksums))
1731 goto nla_put_failure;
Hangbin Liuf9094b72017-11-23 11:27:24 +08001732#endif
Hangbin Liufd7eafd2017-11-15 09:43:09 +08001733
Hangbin Liu52d0d4042018-09-12 10:04:21 +08001734 if (nla_put_u8(skb, IFLA_GENEVE_TTL_INHERIT, ttl_inherit))
1735 goto nla_put_failure;
1736
John W. Linville2d07dc72015-05-13 12:57:30 -04001737 return 0;
1738
1739nla_put_failure:
1740 return -EMSGSIZE;
1741}
1742
1743static struct rtnl_link_ops geneve_link_ops __read_mostly = {
1744 .kind = "geneve",
1745 .maxtype = IFLA_GENEVE_MAX,
1746 .policy = geneve_policy,
1747 .priv_size = sizeof(struct geneve_dev),
1748 .setup = geneve_setup,
1749 .validate = geneve_validate,
1750 .newlink = geneve_newlink,
Girish Moodalbail5b861f62017-07-20 22:44:20 -07001751 .changelink = geneve_changelink,
John W. Linville2d07dc72015-05-13 12:57:30 -04001752 .dellink = geneve_dellink,
1753 .get_size = geneve_get_size,
1754 .fill_info = geneve_fill_info,
1755};
1756
Pravin B Shelare305ac62015-08-26 23:46:52 -07001757struct net_device *geneve_dev_create_fb(struct net *net, const char *name,
1758 u8 name_assign_type, u16 dst_port)
1759{
1760 struct nlattr *tb[IFLA_MAX + 1];
pravin shelar9b4437a2016-11-21 11:02:58 -08001761 struct ip_tunnel_info info;
Pravin B Shelare305ac62015-08-26 23:46:52 -07001762 struct net_device *dev;
Nicolas Dichtel106da662016-06-13 10:31:04 +02001763 LIST_HEAD(list_kill);
Pravin B Shelare305ac62015-08-26 23:46:52 -07001764 int err;
1765
1766 memset(tb, 0, sizeof(tb));
1767 dev = rtnl_create_link(net, name, name_assign_type,
David Ahernd0522f12018-11-06 12:51:14 -08001768 &geneve_link_ops, tb, NULL);
Pravin B Shelare305ac62015-08-26 23:46:52 -07001769 if (IS_ERR(dev))
1770 return dev;
1771
pravin shelar9b4437a2016-11-21 11:02:58 -08001772 init_tnl_info(&info, dst_port);
Stefano Brivioa025fb52018-11-08 12:19:19 +01001773 err = geneve_configure(net, dev, NULL, &info,
1774 true, true, false, GENEVE_DF_UNSET);
Nicolas Dichtel106da662016-06-13 10:31:04 +02001775 if (err) {
1776 free_netdev(dev);
1777 return ERR_PTR(err);
1778 }
David Wragg7e059152016-02-10 00:05:58 +00001779
1780 /* openvswitch users expect packet sizes to be unrestricted,
1781 * so set the largest MTU we can.
1782 */
Jarod Wilson91572082016-10-20 13:55:20 -04001783 err = geneve_change_mtu(dev, IP_MAX_MTU);
David Wragg7e059152016-02-10 00:05:58 +00001784 if (err)
1785 goto err;
1786
Nicolas Dichtel41009482016-06-13 10:31:07 +02001787 err = rtnl_configure_link(dev, NULL);
1788 if (err < 0)
1789 goto err;
1790
Pravin B Shelare305ac62015-08-26 23:46:52 -07001791 return dev;
pravin shelar9b4437a2016-11-21 11:02:58 -08001792err:
Nicolas Dichtel106da662016-06-13 10:31:04 +02001793 geneve_dellink(dev, &list_kill);
1794 unregister_netdevice_many(&list_kill);
David Wragg7e059152016-02-10 00:05:58 +00001795 return ERR_PTR(err);
Pravin B Shelare305ac62015-08-26 23:46:52 -07001796}
1797EXPORT_SYMBOL_GPL(geneve_dev_create_fb);
1798
Hannes Frederic Sowa681e6832016-04-18 21:19:48 +02001799static int geneve_netdevice_event(struct notifier_block *unused,
1800 unsigned long event, void *ptr)
1801{
1802 struct net_device *dev = netdev_notifier_info_to_dev(ptr);
1803
Sabrina Dubroca2d2b13f2017-07-21 12:49:32 +02001804 if (event == NETDEV_UDP_TUNNEL_PUSH_INFO ||
Sabrina Dubroca04584952017-07-21 12:49:33 +02001805 event == NETDEV_UDP_TUNNEL_DROP_INFO) {
Sabrina Dubroca2d2b13f2017-07-21 12:49:32 +02001806 geneve_offload_rx_ports(dev, event == NETDEV_UDP_TUNNEL_PUSH_INFO);
Sabrina Dubroca04584952017-07-21 12:49:33 +02001807 } else if (event == NETDEV_UNREGISTER) {
1808 geneve_offload_rx_ports(dev, false);
1809 } else if (event == NETDEV_REGISTER) {
1810 geneve_offload_rx_ports(dev, true);
1811 }
Hannes Frederic Sowa681e6832016-04-18 21:19:48 +02001812
1813 return NOTIFY_DONE;
1814}
1815
1816static struct notifier_block geneve_notifier_block __read_mostly = {
1817 .notifier_call = geneve_netdevice_event,
1818};
1819
John W. Linville2d07dc72015-05-13 12:57:30 -04001820static __net_init int geneve_init_net(struct net *net)
1821{
1822 struct geneve_net *gn = net_generic(net, geneve_net_id);
John W. Linville2d07dc72015-05-13 12:57:30 -04001823
1824 INIT_LIST_HEAD(&gn->geneve_list);
Pravin B Shelar371bd102015-08-26 23:46:54 -07001825 INIT_LIST_HEAD(&gn->sock_list);
John W. Linville2d07dc72015-05-13 12:57:30 -04001826 return 0;
1827}
1828
Haishuang Yan2843a252017-12-16 17:54:50 +08001829static void geneve_destroy_tunnels(struct net *net, struct list_head *head)
John W. Linville2d07dc72015-05-13 12:57:30 -04001830{
1831 struct geneve_net *gn = net_generic(net, geneve_net_id);
1832 struct geneve_dev *geneve, *next;
1833 struct net_device *dev, *aux;
John W. Linville2d07dc72015-05-13 12:57:30 -04001834
1835 /* gather any geneve devices that were moved into this ns */
1836 for_each_netdev_safe(net, dev, aux)
1837 if (dev->rtnl_link_ops == &geneve_link_ops)
Haishuang Yan2843a252017-12-16 17:54:50 +08001838 unregister_netdevice_queue(dev, head);
John W. Linville2d07dc72015-05-13 12:57:30 -04001839
1840 /* now gather any other geneve devices that were created in this ns */
1841 list_for_each_entry_safe(geneve, next, &gn->geneve_list, next) {
1842 /* If geneve->dev is in the same netns, it was already added
1843 * to the list by the previous loop.
1844 */
1845 if (!net_eq(dev_net(geneve->dev), net))
Haishuang Yan2843a252017-12-16 17:54:50 +08001846 unregister_netdevice_queue(geneve->dev, head);
John W. Linville2d07dc72015-05-13 12:57:30 -04001847 }
Haishuang Yan2843a252017-12-16 17:54:50 +08001848}
1849
1850static void __net_exit geneve_exit_batch_net(struct list_head *net_list)
1851{
1852 struct net *net;
1853 LIST_HEAD(list);
1854
1855 rtnl_lock();
1856 list_for_each_entry(net, net_list, exit_list)
1857 geneve_destroy_tunnels(net, &list);
1858
John W. Linville2d07dc72015-05-13 12:57:30 -04001859 /* unregister the devices gathered above */
1860 unregister_netdevice_many(&list);
1861 rtnl_unlock();
Florian Westphal0fda7602020-03-14 08:18:42 +01001862
1863 list_for_each_entry(net, net_list, exit_list) {
1864 const struct geneve_net *gn = net_generic(net, geneve_net_id);
1865
1866 WARN_ON_ONCE(!list_empty(&gn->sock_list));
1867 }
John W. Linville2d07dc72015-05-13 12:57:30 -04001868}
1869
1870static struct pernet_operations geneve_net_ops = {
1871 .init = geneve_init_net,
Haishuang Yan2843a252017-12-16 17:54:50 +08001872 .exit_batch = geneve_exit_batch_net,
John W. Linville2d07dc72015-05-13 12:57:30 -04001873 .id = &geneve_net_id,
1874 .size = sizeof(struct geneve_net),
1875};
1876
1877static int __init geneve_init_module(void)
1878{
1879 int rc;
1880
1881 rc = register_pernet_subsys(&geneve_net_ops);
1882 if (rc)
1883 goto out1;
1884
Hannes Frederic Sowa681e6832016-04-18 21:19:48 +02001885 rc = register_netdevice_notifier(&geneve_notifier_block);
John W. Linville2d07dc72015-05-13 12:57:30 -04001886 if (rc)
1887 goto out2;
1888
Hannes Frederic Sowa681e6832016-04-18 21:19:48 +02001889 rc = rtnl_link_register(&geneve_link_ops);
1890 if (rc)
1891 goto out3;
1892
John W. Linville2d07dc72015-05-13 12:57:30 -04001893 return 0;
Hannes Frederic Sowa681e6832016-04-18 21:19:48 +02001894out3:
1895 unregister_netdevice_notifier(&geneve_notifier_block);
John W. Linville2d07dc72015-05-13 12:57:30 -04001896out2:
1897 unregister_pernet_subsys(&geneve_net_ops);
1898out1:
1899 return rc;
1900}
1901late_initcall(geneve_init_module);
1902
1903static void __exit geneve_cleanup_module(void)
1904{
1905 rtnl_link_unregister(&geneve_link_ops);
Hannes Frederic Sowa681e6832016-04-18 21:19:48 +02001906 unregister_netdevice_notifier(&geneve_notifier_block);
John W. Linville2d07dc72015-05-13 12:57:30 -04001907 unregister_pernet_subsys(&geneve_net_ops);
1908}
1909module_exit(geneve_cleanup_module);
1910
1911MODULE_LICENSE("GPL");
1912MODULE_VERSION(GENEVE_NETDEV_VER);
1913MODULE_AUTHOR("John W. Linville <linville@tuxdriver.com>");
1914MODULE_DESCRIPTION("Interface driver for GENEVE encapsulated traffic");
1915MODULE_ALIAS_RTNL_LINK("geneve");