blob: cb2ea8facd8d901aea7a494b9181cce428bd8851 [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 }
John W. Linville8ed66f02015-10-26 17:01:44 -0400856 if (ipv6_stub->ipv6_dst_lookup(geneve->net, gs6->sock->sk, &dst, fl6)) {
857 netdev_dbg(dev, "no route to %pI6\n", &fl6->daddr);
858 return ERR_PTR(-ENETUNREACH);
859 }
860 if (dst->dev == dev) { /* is this necessary? */
861 netdev_dbg(dev, "circular route to %pI6\n", &fl6->daddr);
862 dst_release(dst);
863 return ERR_PTR(-ELOOP);
864 }
865
Paolo Abeni468dfff2016-02-12 15:43:58 +0100866 if (use_cache)
867 dst_cache_set_ip6(dst_cache, dst, &fl6->saddr);
John W. Linville8ed66f02015-10-26 17:01:44 -0400868 return dst;
869}
870#endif
871
pravin shelar9b4437a2016-11-21 11:02:58 -0800872static int geneve_xmit_skb(struct sk_buff *skb, struct net_device *dev,
pravin shelarc3ef5aa2016-11-21 11:02:59 -0800873 struct geneve_dev *geneve,
874 const struct ip_tunnel_info *info)
Pravin B Shelare305ac62015-08-26 23:46:52 -0700875{
pravin shelar9b4437a2016-11-21 11:02:58 -0800876 bool xnet = !net_eq(geneve->net, dev_net(geneve->dev));
877 struct geneve_sock *gs4 = rcu_dereference(geneve->sock4);
878 const struct ip_tunnel_key *key = &info->key;
879 struct rtable *rt;
John W. Linville2d07dc72015-05-13 12:57:30 -0400880 struct flowi4 fl4;
John W. Linville8760ce52015-06-01 15:51:34 -0400881 __u8 tos, ttl;
Stefano Brivioa025fb52018-11-08 12:19:19 +0100882 __be16 df = 0;
Pravin B Shelare305ac62015-08-26 23:46:52 -0700883 __be16 sport;
pravin shelarbcceeec2016-11-21 11:03:00 -0800884 int err;
John W. Linville2d07dc72015-05-13 12:57:30 -0400885
Girish Moodalbail5b861f62017-07-20 22:44:20 -0700886 rt = geneve_get_v4_rt(skb, dev, gs4, &fl4, info);
pravin shelar9b4437a2016-11-21 11:02:58 -0800887 if (IS_ERR(rt))
888 return PTR_ERR(rt);
Pravin B Shelar371bd102015-08-26 23:46:54 -0700889
Stefano Brivio6b4f92a2018-10-12 23:53:59 +0200890 skb_tunnel_check_pmtu(skb, &rt->dst,
891 GENEVE_IPV4_HLEN + info->options_len);
Xin Long52a589d2017-12-25 14:43:58 +0800892
Pravin B Shelar371bd102015-08-26 23:46:54 -0700893 sport = udp_flow_src_port(geneve->net, skb, 1, USHRT_MAX, true);
pravin shelar9b4437a2016-11-21 11:02:58 -0800894 if (geneve->collect_md) {
895 tos = ip_tunnel_ecn_encap(key->tos, ip_hdr(skb), skb);
Pravin B Shelar371bd102015-08-26 23:46:54 -0700896 ttl = key->ttl;
Stefano Brivioa025fb52018-11-08 12:19:19 +0100897
898 df = key->tun_flags & TUNNEL_DONT_FRAGMENT ? htons(IP_DF) : 0;
Pravin B Shelare305ac62015-08-26 23:46:52 -0700899 } else {
pravin shelar9b4437a2016-11-21 11:02:58 -0800900 tos = ip_tunnel_ecn_encap(fl4.flowi4_tos, ip_hdr(skb), skb);
Hangbin Liu52d0d4042018-09-12 10:04:21 +0800901 if (geneve->ttl_inherit)
902 ttl = ip_tunnel_get_ttl(ip_hdr(skb), skb);
903 else
904 ttl = key->ttl;
905 ttl = ttl ? : ip4_dst_hoplimit(&rt->dst);
Stefano Brivioa025fb52018-11-08 12:19:19 +0100906
907 if (geneve->df == GENEVE_DF_SET) {
908 df = htons(IP_DF);
909 } else if (geneve->df == GENEVE_DF_INHERIT) {
910 struct ethhdr *eth = eth_hdr(skb);
911
912 if (ntohs(eth->h_proto) == ETH_P_IPV6) {
913 df = htons(IP_DF);
914 } else if (ntohs(eth->h_proto) == ETH_P_IP) {
915 struct iphdr *iph = ip_hdr(skb);
916
917 if (iph->frag_off & htons(IP_DF))
918 df = htons(IP_DF);
919 }
920 }
John W. Linville2d07dc72015-05-13 12:57:30 -0400921 }
pravin shelar9b4437a2016-11-21 11:02:58 -0800922
pravin shelarc3ef5aa2016-11-21 11:02:59 -0800923 err = geneve_build_skb(&rt->dst, skb, info, xnet, sizeof(struct iphdr));
pravin shelar9b4437a2016-11-21 11:02:58 -0800924 if (unlikely(err))
925 return err;
926
Pravin B Shelar039f5062015-12-24 14:34:54 -0800927 udp_tunnel_xmit_skb(rt, gs4->sock->sk, skb, fl4.saddr, fl4.daddr,
pravin shelar9b4437a2016-11-21 11:02:58 -0800928 tos, ttl, df, sport, geneve->info.key.tp_dst,
Pravin B Shelar039f5062015-12-24 14:34:54 -0800929 !net_eq(geneve->net, dev_net(geneve->dev)),
pravin shelar9b4437a2016-11-21 11:02:58 -0800930 !(info->key.tun_flags & TUNNEL_CSUM));
931 return 0;
John W. Linville2d07dc72015-05-13 12:57:30 -0400932}
933
John W. Linville8ed66f02015-10-26 17:01:44 -0400934#if IS_ENABLED(CONFIG_IPV6)
pravin shelar9b4437a2016-11-21 11:02:58 -0800935static int geneve6_xmit_skb(struct sk_buff *skb, struct net_device *dev,
pravin shelarc3ef5aa2016-11-21 11:02:59 -0800936 struct geneve_dev *geneve,
937 const struct ip_tunnel_info *info)
John W. Linville8ed66f02015-10-26 17:01:44 -0400938{
pravin shelar9b4437a2016-11-21 11:02:58 -0800939 bool xnet = !net_eq(geneve->net, dev_net(geneve->dev));
940 struct geneve_sock *gs6 = rcu_dereference(geneve->sock6);
941 const struct ip_tunnel_key *key = &info->key;
John W. Linville8ed66f02015-10-26 17:01:44 -0400942 struct dst_entry *dst = NULL;
John W. Linville8ed66f02015-10-26 17:01:44 -0400943 struct flowi6 fl6;
John W. Linville3a56f862015-10-26 17:01:45 -0400944 __u8 prio, ttl;
John W. Linville8ed66f02015-10-26 17:01:44 -0400945 __be16 sport;
pravin shelarbcceeec2016-11-21 11:03:00 -0800946 int err;
John W. Linville8ed66f02015-10-26 17:01:44 -0400947
Girish Moodalbail5b861f62017-07-20 22:44:20 -0700948 dst = geneve_get_v6_dst(skb, dev, gs6, &fl6, info);
pravin shelar9b4437a2016-11-21 11:02:58 -0800949 if (IS_ERR(dst))
950 return PTR_ERR(dst);
John W. Linville8ed66f02015-10-26 17:01:44 -0400951
Stefano Brivio6b4f92a2018-10-12 23:53:59 +0200952 skb_tunnel_check_pmtu(skb, dst, GENEVE_IPV6_HLEN + info->options_len);
Xin Long52a589d2017-12-25 14:43:58 +0800953
John W. Linville8ed66f02015-10-26 17:01:44 -0400954 sport = udp_flow_src_port(geneve->net, skb, 1, USHRT_MAX, true);
pravin shelar9b4437a2016-11-21 11:02:58 -0800955 if (geneve->collect_md) {
956 prio = ip_tunnel_ecn_encap(key->tos, ip_hdr(skb), skb);
John W. Linville8ed66f02015-10-26 17:01:44 -0400957 ttl = key->ttl;
958 } else {
Daniel Borkmann95caf6f2016-03-18 18:37:58 +0100959 prio = ip_tunnel_ecn_encap(ip6_tclass(fl6.flowlabel),
pravin shelar9b4437a2016-11-21 11:02:58 -0800960 ip_hdr(skb), skb);
Hangbin Liu52d0d4042018-09-12 10:04:21 +0800961 if (geneve->ttl_inherit)
962 ttl = ip_tunnel_get_ttl(ip_hdr(skb), skb);
963 else
964 ttl = key->ttl;
965 ttl = ttl ? : ip6_dst_hoplimit(dst);
John W. Linville8ed66f02015-10-26 17:01:44 -0400966 }
Haishuang Yan31ac1c12016-11-28 13:26:58 +0800967 err = geneve_build_skb(dst, skb, info, xnet, sizeof(struct ipv6hdr));
pravin shelar9b4437a2016-11-21 11:02:58 -0800968 if (unlikely(err))
969 return err;
Daniel Borkmann8eb3b992016-03-09 03:00:04 +0100970
Pravin B Shelar039f5062015-12-24 14:34:54 -0800971 udp_tunnel6_xmit_skb(dst, gs6->sock->sk, skb, dev,
pravin shelar9b4437a2016-11-21 11:02:58 -0800972 &fl6.saddr, &fl6.daddr, prio, ttl,
973 info->key.label, sport, geneve->info.key.tp_dst,
974 !(info->key.tun_flags & TUNNEL_CSUM));
975 return 0;
John W. Linville8ed66f02015-10-26 17:01:44 -0400976}
977#endif
978
979static netdev_tx_t geneve_xmit(struct sk_buff *skb, struct net_device *dev)
980{
981 struct geneve_dev *geneve = netdev_priv(dev);
982 struct ip_tunnel_info *info = NULL;
pravin shelar9b4437a2016-11-21 11:02:58 -0800983 int err;
John W. Linville8ed66f02015-10-26 17:01:44 -0400984
pravin shelar9b4437a2016-11-21 11:02:58 -0800985 if (geneve->collect_md) {
John W. Linville8ed66f02015-10-26 17:01:44 -0400986 info = skb_tunnel_info(skb);
pravin shelar9b4437a2016-11-21 11:02:58 -0800987 if (unlikely(!info || !(info->mode & IP_TUNNEL_INFO_TX))) {
988 err = -EINVAL;
989 netdev_dbg(dev, "no tunnel metadata\n");
990 goto tx_error;
991 }
992 } else {
993 info = &geneve->info;
994 }
John W. Linville8ed66f02015-10-26 17:01:44 -0400995
Jakub Kicinskia717e3f2017-02-24 11:43:37 -0800996 rcu_read_lock();
John W. Linville8ed66f02015-10-26 17:01:44 -0400997#if IS_ENABLED(CONFIG_IPV6)
pravin shelar9b4437a2016-11-21 11:02:58 -0800998 if (info->mode & IP_TUNNEL_INFO_IPV6)
999 err = geneve6_xmit_skb(skb, dev, geneve, info);
1000 else
John W. Linville8ed66f02015-10-26 17:01:44 -04001001#endif
pravin shelar9b4437a2016-11-21 11:02:58 -08001002 err = geneve_xmit_skb(skb, dev, geneve, info);
Jakub Kicinskia717e3f2017-02-24 11:43:37 -08001003 rcu_read_unlock();
pravin shelar9b4437a2016-11-21 11:02:58 -08001004
1005 if (likely(!err))
1006 return NETDEV_TX_OK;
1007tx_error:
1008 dev_kfree_skb(skb);
1009
1010 if (err == -ELOOP)
1011 dev->stats.collisions++;
1012 else if (err == -ENETUNREACH)
1013 dev->stats.tx_carrier_errors++;
1014
1015 dev->stats.tx_errors++;
1016 return NETDEV_TX_OK;
John W. Linville8ed66f02015-10-26 17:01:44 -04001017}
1018
Jarod Wilson91572082016-10-20 13:55:20 -04001019static int geneve_change_mtu(struct net_device *dev, int new_mtu)
David Wragg55e5bfb2016-02-10 00:05:57 +00001020{
Jarod Wilson91572082016-10-20 13:55:20 -04001021 if (new_mtu > dev->max_mtu)
1022 new_mtu = dev->max_mtu;
Alexey Kodanev321acc12018-04-19 15:42:31 +03001023 else if (new_mtu < dev->min_mtu)
1024 new_mtu = dev->min_mtu;
David Wraggaeee0e62016-02-18 17:43:29 +00001025
David Wragg55e5bfb2016-02-10 00:05:57 +00001026 dev->mtu = new_mtu;
1027 return 0;
1028}
1029
Pravin B Shelarfc4099f2015-10-22 18:17:16 -07001030static int geneve_fill_metadata_dst(struct net_device *dev, struct sk_buff *skb)
1031{
1032 struct ip_tunnel_info *info = skb_tunnel_info(skb);
1033 struct geneve_dev *geneve = netdev_priv(dev);
Pravin B Shelarfc4099f2015-10-22 18:17:16 -07001034
John W. Linvilleb8812fa2015-10-27 09:49:00 -04001035 if (ip_tunnel_info_af(info) == AF_INET) {
pravin shelar9b4437a2016-11-21 11:02:58 -08001036 struct rtable *rt;
1037 struct flowi4 fl4;
Girish Moodalbail5b861f62017-07-20 22:44:20 -07001038 struct geneve_sock *gs4 = rcu_dereference(geneve->sock4);
pravin shelar9b4437a2016-11-21 11:02:58 -08001039
Girish Moodalbail5b861f62017-07-20 22:44:20 -07001040 rt = geneve_get_v4_rt(skb, dev, gs4, &fl4, info);
John W. Linvilleb8812fa2015-10-27 09:49:00 -04001041 if (IS_ERR(rt))
1042 return PTR_ERR(rt);
1043
1044 ip_rt_put(rt);
1045 info->key.u.ipv4.src = fl4.saddr;
1046#if IS_ENABLED(CONFIG_IPV6)
1047 } else if (ip_tunnel_info_af(info) == AF_INET6) {
pravin shelar9b4437a2016-11-21 11:02:58 -08001048 struct dst_entry *dst;
1049 struct flowi6 fl6;
Girish Moodalbail5b861f62017-07-20 22:44:20 -07001050 struct geneve_sock *gs6 = rcu_dereference(geneve->sock6);
pravin shelar9b4437a2016-11-21 11:02:58 -08001051
Girish Moodalbail5b861f62017-07-20 22:44:20 -07001052 dst = geneve_get_v6_dst(skb, dev, gs6, &fl6, info);
John W. Linvilleb8812fa2015-10-27 09:49:00 -04001053 if (IS_ERR(dst))
1054 return PTR_ERR(dst);
1055
1056 dst_release(dst);
1057 info->key.u.ipv6.src = fl6.saddr;
1058#endif
1059 } else {
Pravin B Shelarfc4099f2015-10-22 18:17:16 -07001060 return -EINVAL;
John W. Linvilleb8812fa2015-10-27 09:49:00 -04001061 }
Pravin B Shelarfc4099f2015-10-22 18:17:16 -07001062
Pravin B Shelarfc4099f2015-10-22 18:17:16 -07001063 info->key.tp_src = udp_flow_src_port(geneve->net, skb,
1064 1, USHRT_MAX, true);
pravin shelar9b4437a2016-11-21 11:02:58 -08001065 info->key.tp_dst = geneve->info.key.tp_dst;
Pravin B Shelarfc4099f2015-10-22 18:17:16 -07001066 return 0;
1067}
1068
John W. Linville2d07dc72015-05-13 12:57:30 -04001069static const struct net_device_ops geneve_netdev_ops = {
1070 .ndo_init = geneve_init,
1071 .ndo_uninit = geneve_uninit,
1072 .ndo_open = geneve_open,
1073 .ndo_stop = geneve_stop,
1074 .ndo_start_xmit = geneve_xmit,
1075 .ndo_get_stats64 = ip_tunnel_get_stats64,
David Wragg55e5bfb2016-02-10 00:05:57 +00001076 .ndo_change_mtu = geneve_change_mtu,
John W. Linville2d07dc72015-05-13 12:57:30 -04001077 .ndo_validate_addr = eth_validate_addr,
1078 .ndo_set_mac_address = eth_mac_addr,
Pravin B Shelarfc4099f2015-10-22 18:17:16 -07001079 .ndo_fill_metadata_dst = geneve_fill_metadata_dst,
John W. Linville2d07dc72015-05-13 12:57:30 -04001080};
1081
1082static void geneve_get_drvinfo(struct net_device *dev,
1083 struct ethtool_drvinfo *drvinfo)
1084{
1085 strlcpy(drvinfo->version, GENEVE_NETDEV_VER, sizeof(drvinfo->version));
1086 strlcpy(drvinfo->driver, "geneve", sizeof(drvinfo->driver));
1087}
1088
1089static const struct ethtool_ops geneve_ethtool_ops = {
1090 .get_drvinfo = geneve_get_drvinfo,
1091 .get_link = ethtool_op_get_link,
1092};
1093
1094/* Info for udev, that this is a virtual tunnel endpoint */
1095static struct device_type geneve_type = {
1096 .name = "geneve",
1097};
1098
Sabrina Dubrocae5de25d2016-07-11 13:12:28 +02001099/* Calls the ndo_udp_tunnel_add of the caller in order to
Singhai, Anjali05ca4022015-12-14 12:21:20 -08001100 * supply the listening GENEVE udp ports. Callers are expected
Sabrina Dubrocae5de25d2016-07-11 13:12:28 +02001101 * to implement the ndo_udp_tunnel_add.
Singhai, Anjali05ca4022015-12-14 12:21:20 -08001102 */
Sabrina Dubroca2d2b13f2017-07-21 12:49:32 +02001103static void geneve_offload_rx_ports(struct net_device *dev, bool push)
Singhai, Anjali05ca4022015-12-14 12:21:20 -08001104{
1105 struct net *net = dev_net(dev);
1106 struct geneve_net *gn = net_generic(net, geneve_net_id);
1107 struct geneve_sock *gs;
Hannes Frederic Sowa681e6832016-04-18 21:19:48 +02001108
Singhai, Anjali05ca4022015-12-14 12:21:20 -08001109 rcu_read_lock();
Sabrina Dubroca2d2b13f2017-07-21 12:49:32 +02001110 list_for_each_entry_rcu(gs, &gn->sock_list, list) {
1111 if (push) {
1112 udp_tunnel_push_rx_port(dev, gs->sock,
1113 UDP_TUNNEL_TYPE_GENEVE);
1114 } else {
1115 udp_tunnel_drop_rx_port(dev, gs->sock,
1116 UDP_TUNNEL_TYPE_GENEVE);
1117 }
1118 }
Singhai, Anjali05ca4022015-12-14 12:21:20 -08001119 rcu_read_unlock();
1120}
Singhai, Anjali05ca4022015-12-14 12:21:20 -08001121
John W. Linville2d07dc72015-05-13 12:57:30 -04001122/* Initialize the device structure. */
1123static void geneve_setup(struct net_device *dev)
1124{
1125 ether_setup(dev);
1126
1127 dev->netdev_ops = &geneve_netdev_ops;
1128 dev->ethtool_ops = &geneve_ethtool_ops;
David S. Millercf124db2017-05-08 12:52:56 -04001129 dev->needs_free_netdev = true;
John W. Linville2d07dc72015-05-13 12:57:30 -04001130
1131 SET_NETDEV_DEVTYPE(dev, &geneve_type);
1132
John W. Linville2d07dc72015-05-13 12:57:30 -04001133 dev->features |= NETIF_F_LLTX;
1134 dev->features |= NETIF_F_SG | NETIF_F_HW_CSUM;
1135 dev->features |= NETIF_F_RXCSUM;
1136 dev->features |= NETIF_F_GSO_SOFTWARE;
1137
John W. Linville2d07dc72015-05-13 12:57:30 -04001138 dev->hw_features |= NETIF_F_SG | NETIF_F_HW_CSUM | NETIF_F_RXCSUM;
1139 dev->hw_features |= NETIF_F_GSO_SOFTWARE;
John W. Linville2d07dc72015-05-13 12:57:30 -04001140
Jarod Wilson91572082016-10-20 13:55:20 -04001141 /* MTU range: 68 - (something less than 65535) */
1142 dev->min_mtu = ETH_MIN_MTU;
1143 /* The max_mtu calculation does not take account of GENEVE
1144 * options, to avoid excluding potentially valid
1145 * configurations. This will be further reduced by IPvX hdr size.
1146 */
1147 dev->max_mtu = IP_MAX_MTU - GENEVE_BASE_HLEN - dev->hard_header_len;
1148
John W. Linville2d07dc72015-05-13 12:57:30 -04001149 netif_keep_dst(dev);
Jiri Bencfc41cdb2016-02-17 15:31:35 +01001150 dev->priv_flags &= ~IFF_TX_SKB_SHARING;
Phil Suttered961ac2015-08-18 10:30:31 +02001151 dev->priv_flags |= IFF_LIVE_ADDR_CHANGE | IFF_NO_QUEUE;
Pravin B Shelar87cd3dc2015-08-26 23:46:48 -07001152 eth_hw_addr_random(dev);
John W. Linville2d07dc72015-05-13 12:57:30 -04001153}
1154
1155static const struct nla_policy geneve_policy[IFLA_GENEVE_MAX + 1] = {
1156 [IFLA_GENEVE_ID] = { .type = NLA_U32 },
1157 [IFLA_GENEVE_REMOTE] = { .len = FIELD_SIZEOF(struct iphdr, daddr) },
John W. Linville8ed66f02015-10-26 17:01:44 -04001158 [IFLA_GENEVE_REMOTE6] = { .len = sizeof(struct in6_addr) },
John W. Linville8760ce52015-06-01 15:51:34 -04001159 [IFLA_GENEVE_TTL] = { .type = NLA_U8 },
John W. Linvilled8951122015-06-01 15:51:35 -04001160 [IFLA_GENEVE_TOS] = { .type = NLA_U8 },
Daniel Borkmann8eb3b992016-03-09 03:00:04 +01001161 [IFLA_GENEVE_LABEL] = { .type = NLA_U32 },
Pravin B Shelarcd7918b2015-08-26 23:46:51 -07001162 [IFLA_GENEVE_PORT] = { .type = NLA_U16 },
Pravin B Shelare305ac62015-08-26 23:46:52 -07001163 [IFLA_GENEVE_COLLECT_METADATA] = { .type = NLA_FLAG },
Tom Herbertabe492b2015-12-10 12:37:45 -08001164 [IFLA_GENEVE_UDP_CSUM] = { .type = NLA_U8 },
1165 [IFLA_GENEVE_UDP_ZERO_CSUM6_TX] = { .type = NLA_U8 },
1166 [IFLA_GENEVE_UDP_ZERO_CSUM6_RX] = { .type = NLA_U8 },
Hangbin Liu52d0d4042018-09-12 10:04:21 +08001167 [IFLA_GENEVE_TTL_INHERIT] = { .type = NLA_U8 },
Stefano Brivioa025fb52018-11-08 12:19:19 +01001168 [IFLA_GENEVE_DF] = { .type = NLA_U8 },
John W. Linville2d07dc72015-05-13 12:57:30 -04001169};
1170
Matthias Schiffera8b8a8892017-06-25 23:56:01 +02001171static int geneve_validate(struct nlattr *tb[], struct nlattr *data[],
1172 struct netlink_ext_ack *extack)
John W. Linville2d07dc72015-05-13 12:57:30 -04001173{
1174 if (tb[IFLA_ADDRESS]) {
Girish Moodalbailc5ebc442017-08-09 01:09:28 -07001175 if (nla_len(tb[IFLA_ADDRESS]) != ETH_ALEN) {
1176 NL_SET_ERR_MSG_ATTR(extack, tb[IFLA_ADDRESS],
1177 "Provided link layer address is not Ethernet");
John W. Linville2d07dc72015-05-13 12:57:30 -04001178 return -EINVAL;
Girish Moodalbailc5ebc442017-08-09 01:09:28 -07001179 }
John W. Linville2d07dc72015-05-13 12:57:30 -04001180
Girish Moodalbailc5ebc442017-08-09 01:09:28 -07001181 if (!is_valid_ether_addr(nla_data(tb[IFLA_ADDRESS]))) {
1182 NL_SET_ERR_MSG_ATTR(extack, tb[IFLA_ADDRESS],
1183 "Provided Ethernet address is not unicast");
John W. Linville2d07dc72015-05-13 12:57:30 -04001184 return -EADDRNOTAVAIL;
Girish Moodalbailc5ebc442017-08-09 01:09:28 -07001185 }
John W. Linville2d07dc72015-05-13 12:57:30 -04001186 }
1187
Girish Moodalbailc5ebc442017-08-09 01:09:28 -07001188 if (!data) {
1189 NL_SET_ERR_MSG(extack,
1190 "Not enough attributes provided to perform the operation");
John W. Linville2d07dc72015-05-13 12:57:30 -04001191 return -EINVAL;
Girish Moodalbailc5ebc442017-08-09 01:09:28 -07001192 }
John W. Linville2d07dc72015-05-13 12:57:30 -04001193
1194 if (data[IFLA_GENEVE_ID]) {
1195 __u32 vni = nla_get_u32(data[IFLA_GENEVE_ID]);
1196
Girish Moodalbailc5ebc442017-08-09 01:09:28 -07001197 if (vni >= GENEVE_N_VID) {
1198 NL_SET_ERR_MSG_ATTR(extack, data[IFLA_GENEVE_ID],
1199 "Geneve ID must be lower than 16777216");
John W. Linville2d07dc72015-05-13 12:57:30 -04001200 return -ERANGE;
Girish Moodalbailc5ebc442017-08-09 01:09:28 -07001201 }
John W. Linville2d07dc72015-05-13 12:57:30 -04001202 }
1203
Stefano Brivioa025fb52018-11-08 12:19:19 +01001204 if (data[IFLA_GENEVE_DF]) {
1205 enum ifla_geneve_df df = nla_get_u8(data[IFLA_GENEVE_DF]);
1206
1207 if (df < 0 || df > GENEVE_DF_MAX) {
1208 NL_SET_ERR_MSG_ATTR(extack, tb[IFLA_GENEVE_DF],
1209 "Invalid DF attribute");
1210 return -EINVAL;
1211 }
1212 }
1213
John W. Linville2d07dc72015-05-13 12:57:30 -04001214 return 0;
1215}
1216
Pravin B Shelar371bd102015-08-26 23:46:54 -07001217static struct geneve_dev *geneve_find_dev(struct geneve_net *gn,
pravin shelar9b4437a2016-11-21 11:02:58 -08001218 const struct ip_tunnel_info *info,
Pravin B Shelar371bd102015-08-26 23:46:54 -07001219 bool *tun_on_same_port,
1220 bool *tun_collect_md)
1221{
pravin shelar9b4437a2016-11-21 11:02:58 -08001222 struct geneve_dev *geneve, *t = NULL;
Pravin B Shelar371bd102015-08-26 23:46:54 -07001223
1224 *tun_on_same_port = false;
1225 *tun_collect_md = false;
Pravin B Shelar371bd102015-08-26 23:46:54 -07001226 list_for_each_entry(geneve, &gn->geneve_list, next) {
pravin shelar9b4437a2016-11-21 11:02:58 -08001227 if (info->key.tp_dst == geneve->info.key.tp_dst) {
Pravin B Shelar371bd102015-08-26 23:46:54 -07001228 *tun_collect_md = geneve->collect_md;
1229 *tun_on_same_port = true;
1230 }
pravin shelar9b4437a2016-11-21 11:02:58 -08001231 if (info->key.tun_id == geneve->info.key.tun_id &&
1232 info->key.tp_dst == geneve->info.key.tp_dst &&
1233 !memcmp(&info->key.u, &geneve->info.key.u, sizeof(info->key.u)))
Pravin B Shelar371bd102015-08-26 23:46:54 -07001234 t = geneve;
1235 }
1236 return t;
1237}
1238
pravin shelar9b4437a2016-11-21 11:02:58 -08001239static bool is_tnl_info_zero(const struct ip_tunnel_info *info)
1240{
Stefano Brivio3fa5f112017-10-20 13:31:36 +02001241 return !(info->key.tun_id || info->key.tun_flags || info->key.tos ||
1242 info->key.ttl || info->key.label || info->key.tp_src ||
1243 memchr_inv(&info->key.u, 0, sizeof(info->key.u)));
pravin shelar9b4437a2016-11-21 11:02:58 -08001244}
1245
Girish Moodalbail5b861f62017-07-20 22:44:20 -07001246static bool geneve_dst_addr_equal(struct ip_tunnel_info *a,
1247 struct ip_tunnel_info *b)
1248{
1249 if (ip_tunnel_info_af(a) == AF_INET)
1250 return a->key.u.ipv4.dst == b->key.u.ipv4.dst;
1251 else
1252 return ipv6_addr_equal(&a->key.u.ipv6.dst, &b->key.u.ipv6.dst);
1253}
1254
Pravin B Shelare305ac62015-08-26 23:46:52 -07001255static int geneve_configure(struct net *net, struct net_device *dev,
Girish Moodalbailc5ebc442017-08-09 01:09:28 -07001256 struct netlink_ext_ack *extack,
pravin shelar9b4437a2016-11-21 11:02:58 -08001257 const struct ip_tunnel_info *info,
Hangbin Liu52d0d4042018-09-12 10:04:21 +08001258 bool metadata, bool ipv6_rx_csum,
Stefano Brivioa025fb52018-11-08 12:19:19 +01001259 bool ttl_inherit, enum ifla_geneve_df df)
John W. Linville2d07dc72015-05-13 12:57:30 -04001260{
1261 struct geneve_net *gn = net_generic(net, geneve_net_id);
Pravin B Shelar371bd102015-08-26 23:46:54 -07001262 struct geneve_dev *t, *geneve = netdev_priv(dev);
1263 bool tun_collect_md, tun_on_same_port;
Paolo Abeni184fc8b2015-12-23 16:54:27 +01001264 int err, encap_len;
John W. Linville2d07dc72015-05-13 12:57:30 -04001265
Girish Moodalbailc5ebc442017-08-09 01:09:28 -07001266 if (metadata && !is_tnl_info_zero(info)) {
1267 NL_SET_ERR_MSG(extack,
1268 "Device is externally controlled, so attributes (VNI, Port, and so on) must not be specified");
John W. Linville8ed66f02015-10-26 17:01:44 -04001269 return -EINVAL;
Girish Moodalbailc5ebc442017-08-09 01:09:28 -07001270 }
John W. Linville2d07dc72015-05-13 12:57:30 -04001271
1272 geneve->net = net;
1273 geneve->dev = dev;
1274
pravin shelar9b4437a2016-11-21 11:02:58 -08001275 t = geneve_find_dev(gn, info, &tun_on_same_port, &tun_collect_md);
Pravin B Shelar371bd102015-08-26 23:46:54 -07001276 if (t)
1277 return -EBUSY;
1278
Paolo Abeni184fc8b2015-12-23 16:54:27 +01001279 /* make enough headroom for basic scenario */
1280 encap_len = GENEVE_BASE_HLEN + ETH_HLEN;
Eric Garver9a1c44d2017-06-02 14:54:10 -04001281 if (!metadata && ip_tunnel_info_af(info) == AF_INET) {
Paolo Abeni184fc8b2015-12-23 16:54:27 +01001282 encap_len += sizeof(struct iphdr);
Jarod Wilson91572082016-10-20 13:55:20 -04001283 dev->max_mtu -= sizeof(struct iphdr);
1284 } else {
Paolo Abeni184fc8b2015-12-23 16:54:27 +01001285 encap_len += sizeof(struct ipv6hdr);
Jarod Wilson91572082016-10-20 13:55:20 -04001286 dev->max_mtu -= sizeof(struct ipv6hdr);
1287 }
Paolo Abeni184fc8b2015-12-23 16:54:27 +01001288 dev->needed_headroom = encap_len + ETH_HLEN;
1289
Pravin B Shelar371bd102015-08-26 23:46:54 -07001290 if (metadata) {
Girish Moodalbailc5ebc442017-08-09 01:09:28 -07001291 if (tun_on_same_port) {
1292 NL_SET_ERR_MSG(extack,
1293 "There can be only one externally controlled device on a destination port");
Pravin B Shelar371bd102015-08-26 23:46:54 -07001294 return -EPERM;
Girish Moodalbailc5ebc442017-08-09 01:09:28 -07001295 }
Pravin B Shelar371bd102015-08-26 23:46:54 -07001296 } else {
Girish Moodalbailc5ebc442017-08-09 01:09:28 -07001297 if (tun_collect_md) {
1298 NL_SET_ERR_MSG(extack,
1299 "There already exists an externally controlled device on this destination port");
Pravin B Shelar371bd102015-08-26 23:46:54 -07001300 return -EPERM;
Girish Moodalbailc5ebc442017-08-09 01:09:28 -07001301 }
Pravin B Shelar371bd102015-08-26 23:46:54 -07001302 }
1303
pravin shelar9b4437a2016-11-21 11:02:58 -08001304 dst_cache_reset(&geneve->info.dst_cache);
1305 geneve->info = *info;
1306 geneve->collect_md = metadata;
1307 geneve->use_udp6_rx_checksums = ipv6_rx_csum;
Hangbin Liu52d0d4042018-09-12 10:04:21 +08001308 geneve->ttl_inherit = ttl_inherit;
Stefano Brivioa025fb52018-11-08 12:19:19 +01001309 geneve->df = df;
Paolo Abeni468dfff2016-02-12 15:43:58 +01001310
John W. Linville2d07dc72015-05-13 12:57:30 -04001311 err = register_netdevice(dev);
1312 if (err)
1313 return err;
1314
1315 list_add(&geneve->next, &gn->geneve_list);
John W. Linville2d07dc72015-05-13 12:57:30 -04001316 return 0;
1317}
1318
pravin shelar9b4437a2016-11-21 11:02:58 -08001319static void init_tnl_info(struct ip_tunnel_info *info, __u16 dst_port)
1320{
1321 memset(info, 0, sizeof(*info));
1322 info->key.tp_dst = htons(dst_port);
1323}
1324
Girish Moodalbailc5ebc442017-08-09 01:09:28 -07001325static int geneve_nl2info(struct nlattr *tb[], struct nlattr *data[],
1326 struct netlink_ext_ack *extack,
1327 struct ip_tunnel_info *info, bool *metadata,
Hangbin Liu52d0d4042018-09-12 10:04:21 +08001328 bool *use_udp6_rx_checksums, bool *ttl_inherit,
Stefano Brivioa025fb52018-11-08 12:19:19 +01001329 enum ifla_geneve_df *df, bool changelink)
Pravin B Shelare305ac62015-08-26 23:46:52 -07001330{
Girish Moodalbailc5ebc442017-08-09 01:09:28 -07001331 int attrtype;
1332
1333 if (data[IFLA_GENEVE_REMOTE] && data[IFLA_GENEVE_REMOTE6]) {
1334 NL_SET_ERR_MSG(extack,
1335 "Cannot specify both IPv4 and IPv6 Remote addresses");
John W. Linville8ed66f02015-10-26 17:01:44 -04001336 return -EINVAL;
Girish Moodalbailc5ebc442017-08-09 01:09:28 -07001337 }
John W. Linville8ed66f02015-10-26 17:01:44 -04001338
1339 if (data[IFLA_GENEVE_REMOTE]) {
Girish Moodalbailc5ebc442017-08-09 01:09:28 -07001340 if (changelink && (ip_tunnel_info_af(info) == AF_INET6)) {
1341 attrtype = IFLA_GENEVE_REMOTE;
1342 goto change_notsup;
1343 }
Girish Moodalbail5b861f62017-07-20 22:44:20 -07001344
1345 info->key.u.ipv4.dst =
John W. Linville8ed66f02015-10-26 17:01:44 -04001346 nla_get_in_addr(data[IFLA_GENEVE_REMOTE]);
John W. Linville8ed66f02015-10-26 17:01:44 -04001347
Girish Moodalbail5b861f62017-07-20 22:44:20 -07001348 if (IN_MULTICAST(ntohl(info->key.u.ipv4.dst))) {
Girish Moodalbailc5ebc442017-08-09 01:09:28 -07001349 NL_SET_ERR_MSG_ATTR(extack, data[IFLA_GENEVE_REMOTE],
1350 "Remote IPv4 address cannot be Multicast");
John W. Linville8ed66f02015-10-26 17:01:44 -04001351 return -EINVAL;
1352 }
1353 }
1354
pravin shelar9b4437a2016-11-21 11:02:58 -08001355 if (data[IFLA_GENEVE_REMOTE6]) {
Alexey Kodanev4c52a882018-04-19 15:42:29 +03001356#if IS_ENABLED(CONFIG_IPV6)
Girish Moodalbailc5ebc442017-08-09 01:09:28 -07001357 if (changelink && (ip_tunnel_info_af(info) == AF_INET)) {
1358 attrtype = IFLA_GENEVE_REMOTE6;
1359 goto change_notsup;
1360 }
Girish Moodalbail5b861f62017-07-20 22:44:20 -07001361
1362 info->mode = IP_TUNNEL_INFO_IPV6;
1363 info->key.u.ipv6.dst =
pravin shelar9b4437a2016-11-21 11:02:58 -08001364 nla_get_in6_addr(data[IFLA_GENEVE_REMOTE6]);
Pravin B Shelare305ac62015-08-26 23:46:52 -07001365
Girish Moodalbail5b861f62017-07-20 22:44:20 -07001366 if (ipv6_addr_type(&info->key.u.ipv6.dst) &
pravin shelar9b4437a2016-11-21 11:02:58 -08001367 IPV6_ADDR_LINKLOCAL) {
Girish Moodalbailc5ebc442017-08-09 01:09:28 -07001368 NL_SET_ERR_MSG_ATTR(extack, data[IFLA_GENEVE_REMOTE6],
1369 "Remote IPv6 address cannot be link-local");
pravin shelar9b4437a2016-11-21 11:02:58 -08001370 return -EINVAL;
1371 }
Girish Moodalbail5b861f62017-07-20 22:44:20 -07001372 if (ipv6_addr_is_multicast(&info->key.u.ipv6.dst)) {
Girish Moodalbailc5ebc442017-08-09 01:09:28 -07001373 NL_SET_ERR_MSG_ATTR(extack, data[IFLA_GENEVE_REMOTE6],
1374 "Remote IPv6 address cannot be Multicast");
pravin shelar9b4437a2016-11-21 11:02:58 -08001375 return -EINVAL;
1376 }
Girish Moodalbail5b861f62017-07-20 22:44:20 -07001377 info->key.tun_flags |= TUNNEL_CSUM;
1378 *use_udp6_rx_checksums = true;
pravin shelar9b4437a2016-11-21 11:02:58 -08001379#else
Girish Moodalbailc5ebc442017-08-09 01:09:28 -07001380 NL_SET_ERR_MSG_ATTR(extack, data[IFLA_GENEVE_REMOTE6],
1381 "IPv6 support not enabled in the kernel");
pravin shelar9b4437a2016-11-21 11:02:58 -08001382 return -EPFNOSUPPORT;
1383#endif
1384 }
1385
1386 if (data[IFLA_GENEVE_ID]) {
1387 __u32 vni;
1388 __u8 tvni[3];
Girish Moodalbail5b861f62017-07-20 22:44:20 -07001389 __be64 tunid;
pravin shelar9b4437a2016-11-21 11:02:58 -08001390
1391 vni = nla_get_u32(data[IFLA_GENEVE_ID]);
1392 tvni[0] = (vni & 0x00ff0000) >> 16;
1393 tvni[1] = (vni & 0x0000ff00) >> 8;
1394 tvni[2] = vni & 0x000000ff;
1395
Girish Moodalbail5b861f62017-07-20 22:44:20 -07001396 tunid = vni_to_tunnel_id(tvni);
Girish Moodalbailc5ebc442017-08-09 01:09:28 -07001397 if (changelink && (tunid != info->key.tun_id)) {
1398 attrtype = IFLA_GENEVE_ID;
1399 goto change_notsup;
1400 }
Girish Moodalbail5b861f62017-07-20 22:44:20 -07001401 info->key.tun_id = tunid;
pravin shelar9b4437a2016-11-21 11:02:58 -08001402 }
Girish Moodalbail5b861f62017-07-20 22:44:20 -07001403
Hangbin Liua97d97b2018-09-29 23:06:29 +08001404 if (data[IFLA_GENEVE_TTL_INHERIT]) {
1405 if (nla_get_u8(data[IFLA_GENEVE_TTL_INHERIT]))
1406 *ttl_inherit = true;
1407 else
1408 *ttl_inherit = false;
1409 } else if (data[IFLA_GENEVE_TTL]) {
Girish Moodalbail5b861f62017-07-20 22:44:20 -07001410 info->key.ttl = nla_get_u8(data[IFLA_GENEVE_TTL]);
Hangbin Liua97d97b2018-09-29 23:06:29 +08001411 *ttl_inherit = false;
1412 }
Hangbin Liu52d0d4042018-09-12 10:04:21 +08001413
Pravin B Shelare305ac62015-08-26 23:46:52 -07001414 if (data[IFLA_GENEVE_TOS])
Girish Moodalbail5b861f62017-07-20 22:44:20 -07001415 info->key.tos = nla_get_u8(data[IFLA_GENEVE_TOS]);
Pravin B Shelare305ac62015-08-26 23:46:52 -07001416
Stefano Brivioa025fb52018-11-08 12:19:19 +01001417 if (data[IFLA_GENEVE_DF])
1418 *df = nla_get_u8(data[IFLA_GENEVE_DF]);
1419
pravin shelar9b4437a2016-11-21 11:02:58 -08001420 if (data[IFLA_GENEVE_LABEL]) {
Girish Moodalbail5b861f62017-07-20 22:44:20 -07001421 info->key.label = nla_get_be32(data[IFLA_GENEVE_LABEL]) &
pravin shelar9b4437a2016-11-21 11:02:58 -08001422 IPV6_FLOWLABEL_MASK;
Girish Moodalbailc5ebc442017-08-09 01:09:28 -07001423 if (info->key.label && (!(info->mode & IP_TUNNEL_INFO_IPV6))) {
1424 NL_SET_ERR_MSG_ATTR(extack, data[IFLA_GENEVE_LABEL],
1425 "Label attribute only applies for IPv6 Geneve devices");
pravin shelar9b4437a2016-11-21 11:02:58 -08001426 return -EINVAL;
Girish Moodalbailc5ebc442017-08-09 01:09:28 -07001427 }
pravin shelar9b4437a2016-11-21 11:02:58 -08001428 }
Daniel Borkmann8eb3b992016-03-09 03:00:04 +01001429
Girish Moodalbail5b861f62017-07-20 22:44:20 -07001430 if (data[IFLA_GENEVE_PORT]) {
Girish Moodalbailc5ebc442017-08-09 01:09:28 -07001431 if (changelink) {
1432 attrtype = IFLA_GENEVE_PORT;
1433 goto change_notsup;
1434 }
Girish Moodalbail5b861f62017-07-20 22:44:20 -07001435 info->key.tp_dst = nla_get_be16(data[IFLA_GENEVE_PORT]);
1436 }
Pravin B Shelare305ac62015-08-26 23:46:52 -07001437
Girish Moodalbail5b861f62017-07-20 22:44:20 -07001438 if (data[IFLA_GENEVE_COLLECT_METADATA]) {
Girish Moodalbailc5ebc442017-08-09 01:09:28 -07001439 if (changelink) {
1440 attrtype = IFLA_GENEVE_COLLECT_METADATA;
1441 goto change_notsup;
1442 }
Girish Moodalbail5b861f62017-07-20 22:44:20 -07001443 *metadata = true;
1444 }
Pravin B Shelare305ac62015-08-26 23:46:52 -07001445
Girish Moodalbail5b861f62017-07-20 22:44:20 -07001446 if (data[IFLA_GENEVE_UDP_CSUM]) {
Girish Moodalbailc5ebc442017-08-09 01:09:28 -07001447 if (changelink) {
1448 attrtype = IFLA_GENEVE_UDP_CSUM;
1449 goto change_notsup;
1450 }
Girish Moodalbail5b861f62017-07-20 22:44:20 -07001451 if (nla_get_u8(data[IFLA_GENEVE_UDP_CSUM]))
1452 info->key.tun_flags |= TUNNEL_CSUM;
1453 }
Tom Herbertabe492b2015-12-10 12:37:45 -08001454
Girish Moodalbail5b861f62017-07-20 22:44:20 -07001455 if (data[IFLA_GENEVE_UDP_ZERO_CSUM6_TX]) {
Hangbin Liuf9094b72017-11-23 11:27:24 +08001456#if IS_ENABLED(CONFIG_IPV6)
Girish Moodalbailc5ebc442017-08-09 01:09:28 -07001457 if (changelink) {
1458 attrtype = IFLA_GENEVE_UDP_ZERO_CSUM6_TX;
1459 goto change_notsup;
1460 }
Girish Moodalbail5b861f62017-07-20 22:44:20 -07001461 if (nla_get_u8(data[IFLA_GENEVE_UDP_ZERO_CSUM6_TX]))
1462 info->key.tun_flags &= ~TUNNEL_CSUM;
Hangbin Liuf9094b72017-11-23 11:27:24 +08001463#else
1464 NL_SET_ERR_MSG_ATTR(extack, data[IFLA_GENEVE_UDP_ZERO_CSUM6_TX],
1465 "IPv6 support not enabled in the kernel");
1466 return -EPFNOSUPPORT;
1467#endif
Girish Moodalbail5b861f62017-07-20 22:44:20 -07001468 }
Tom Herbertabe492b2015-12-10 12:37:45 -08001469
Girish Moodalbail5b861f62017-07-20 22:44:20 -07001470 if (data[IFLA_GENEVE_UDP_ZERO_CSUM6_RX]) {
Hangbin Liuf9094b72017-11-23 11:27:24 +08001471#if IS_ENABLED(CONFIG_IPV6)
Girish Moodalbailc5ebc442017-08-09 01:09:28 -07001472 if (changelink) {
1473 attrtype = IFLA_GENEVE_UDP_ZERO_CSUM6_RX;
1474 goto change_notsup;
1475 }
Girish Moodalbail5b861f62017-07-20 22:44:20 -07001476 if (nla_get_u8(data[IFLA_GENEVE_UDP_ZERO_CSUM6_RX]))
1477 *use_udp6_rx_checksums = false;
Hangbin Liuf9094b72017-11-23 11:27:24 +08001478#else
1479 NL_SET_ERR_MSG_ATTR(extack, data[IFLA_GENEVE_UDP_ZERO_CSUM6_RX],
1480 "IPv6 support not enabled in the kernel");
1481 return -EPFNOSUPPORT;
1482#endif
Girish Moodalbail5b861f62017-07-20 22:44:20 -07001483 }
1484
1485 return 0;
Girish Moodalbailc5ebc442017-08-09 01:09:28 -07001486change_notsup:
1487 NL_SET_ERR_MSG_ATTR(extack, data[attrtype],
1488 "Changing VNI, Port, endpoint IP address family, external, and UDP checksum attributes are not supported");
1489 return -EOPNOTSUPP;
Girish Moodalbail5b861f62017-07-20 22:44:20 -07001490}
1491
Alexey Kodanevc40e89f2018-04-19 15:42:32 +03001492static void geneve_link_config(struct net_device *dev,
1493 struct ip_tunnel_info *info, struct nlattr *tb[])
1494{
1495 struct geneve_dev *geneve = netdev_priv(dev);
1496 int ldev_mtu = 0;
1497
1498 if (tb[IFLA_MTU]) {
1499 geneve_change_mtu(dev, nla_get_u32(tb[IFLA_MTU]));
1500 return;
1501 }
1502
1503 switch (ip_tunnel_info_af(info)) {
1504 case AF_INET: {
1505 struct flowi4 fl4 = { .daddr = info->key.u.ipv4.dst };
1506 struct rtable *rt = ip_route_output_key(geneve->net, &fl4);
1507
1508 if (!IS_ERR(rt) && rt->dst.dev) {
1509 ldev_mtu = rt->dst.dev->mtu - GENEVE_IPV4_HLEN;
1510 ip_rt_put(rt);
1511 }
1512 break;
1513 }
1514#if IS_ENABLED(CONFIG_IPV6)
1515 case AF_INET6: {
Hangbin Liuc0a47e42019-02-07 18:36:10 +08001516 struct rt6_info *rt;
1517
1518 if (!__in6_dev_get(dev))
1519 break;
1520
1521 rt = rt6_lookup(geneve->net, &info->key.u.ipv6.dst, NULL, 0,
1522 NULL, 0);
Alexey Kodanevc40e89f2018-04-19 15:42:32 +03001523
1524 if (rt && rt->dst.dev)
1525 ldev_mtu = rt->dst.dev->mtu - GENEVE_IPV6_HLEN;
1526 ip6_rt_put(rt);
1527 break;
1528 }
1529#endif
1530 }
1531
1532 if (ldev_mtu <= 0)
1533 return;
1534
1535 geneve_change_mtu(dev, ldev_mtu - info->options_len);
1536}
1537
Girish Moodalbail5b861f62017-07-20 22:44:20 -07001538static int geneve_newlink(struct net *net, struct net_device *dev,
1539 struct nlattr *tb[], struct nlattr *data[],
1540 struct netlink_ext_ack *extack)
1541{
Stefano Brivioa025fb52018-11-08 12:19:19 +01001542 enum ifla_geneve_df df = GENEVE_DF_UNSET;
Girish Moodalbail5b861f62017-07-20 22:44:20 -07001543 bool use_udp6_rx_checksums = false;
1544 struct ip_tunnel_info info;
Hangbin Liu52d0d4042018-09-12 10:04:21 +08001545 bool ttl_inherit = false;
Girish Moodalbail5b861f62017-07-20 22:44:20 -07001546 bool metadata = false;
1547 int err;
1548
1549 init_tnl_info(&info, GENEVE_UDP_PORT);
Girish Moodalbailc5ebc442017-08-09 01:09:28 -07001550 err = geneve_nl2info(tb, data, extack, &info, &metadata,
Stefano Brivioa025fb52018-11-08 12:19:19 +01001551 &use_udp6_rx_checksums, &ttl_inherit, &df, false);
Girish Moodalbail5b861f62017-07-20 22:44:20 -07001552 if (err)
1553 return err;
Tom Herbertabe492b2015-12-10 12:37:45 -08001554
Alexey Kodanevc40e89f2018-04-19 15:42:32 +03001555 err = geneve_configure(net, dev, extack, &info, metadata,
Stefano Brivioa025fb52018-11-08 12:19:19 +01001556 use_udp6_rx_checksums, ttl_inherit, df);
Alexey Kodanevc40e89f2018-04-19 15:42:32 +03001557 if (err)
1558 return err;
1559
1560 geneve_link_config(dev, &info, tb);
1561
1562 return 0;
Pravin B Shelare305ac62015-08-26 23:46:52 -07001563}
1564
Girish Moodalbail5b861f62017-07-20 22:44:20 -07001565/* Quiesces the geneve device data path for both TX and RX.
1566 *
1567 * On transmit geneve checks for non-NULL geneve_sock before it proceeds.
1568 * So, if we set that socket to NULL under RCU and wait for synchronize_net()
1569 * to complete for the existing set of in-flight packets to be transmitted,
1570 * then we would have quiesced the transmit data path. All the future packets
1571 * will get dropped until we unquiesce the data path.
1572 *
1573 * On receive geneve dereference the geneve_sock stashed in the socket. So,
1574 * if we set that to NULL under RCU and wait for synchronize_net() to
1575 * complete, then we would have quiesced the receive data path.
1576 */
1577static void geneve_quiesce(struct geneve_dev *geneve, struct geneve_sock **gs4,
1578 struct geneve_sock **gs6)
1579{
1580 *gs4 = rtnl_dereference(geneve->sock4);
1581 rcu_assign_pointer(geneve->sock4, NULL);
1582 if (*gs4)
1583 rcu_assign_sk_user_data((*gs4)->sock->sk, NULL);
1584#if IS_ENABLED(CONFIG_IPV6)
1585 *gs6 = rtnl_dereference(geneve->sock6);
1586 rcu_assign_pointer(geneve->sock6, NULL);
1587 if (*gs6)
1588 rcu_assign_sk_user_data((*gs6)->sock->sk, NULL);
1589#else
1590 *gs6 = NULL;
1591#endif
1592 synchronize_net();
1593}
1594
1595/* Resumes the geneve device data path for both TX and RX. */
1596static void geneve_unquiesce(struct geneve_dev *geneve, struct geneve_sock *gs4,
1597 struct geneve_sock __maybe_unused *gs6)
1598{
1599 rcu_assign_pointer(geneve->sock4, gs4);
1600 if (gs4)
1601 rcu_assign_sk_user_data(gs4->sock->sk, gs4);
1602#if IS_ENABLED(CONFIG_IPV6)
1603 rcu_assign_pointer(geneve->sock6, gs6);
1604 if (gs6)
1605 rcu_assign_sk_user_data(gs6->sock->sk, gs6);
1606#endif
1607 synchronize_net();
1608}
1609
1610static int geneve_changelink(struct net_device *dev, struct nlattr *tb[],
1611 struct nlattr *data[],
1612 struct netlink_ext_ack *extack)
1613{
1614 struct geneve_dev *geneve = netdev_priv(dev);
1615 struct geneve_sock *gs4, *gs6;
1616 struct ip_tunnel_info info;
1617 bool metadata;
1618 bool use_udp6_rx_checksums;
Stefano Brivioa025fb52018-11-08 12:19:19 +01001619 enum ifla_geneve_df df;
Hangbin Liu52d0d4042018-09-12 10:04:21 +08001620 bool ttl_inherit;
Girish Moodalbail5b861f62017-07-20 22:44:20 -07001621 int err;
1622
1623 /* If the geneve device is configured for metadata (or externally
1624 * controlled, for example, OVS), then nothing can be changed.
1625 */
1626 if (geneve->collect_md)
1627 return -EOPNOTSUPP;
1628
1629 /* Start with the existing info. */
1630 memcpy(&info, &geneve->info, sizeof(info));
1631 metadata = geneve->collect_md;
1632 use_udp6_rx_checksums = geneve->use_udp6_rx_checksums;
Hangbin Liu52d0d4042018-09-12 10:04:21 +08001633 ttl_inherit = geneve->ttl_inherit;
Girish Moodalbailc5ebc442017-08-09 01:09:28 -07001634 err = geneve_nl2info(tb, data, extack, &info, &metadata,
Stefano Brivioa025fb52018-11-08 12:19:19 +01001635 &use_udp6_rx_checksums, &ttl_inherit, &df, true);
Girish Moodalbail5b861f62017-07-20 22:44:20 -07001636 if (err)
1637 return err;
1638
Alexey Kodanevc40e89f2018-04-19 15:42:32 +03001639 if (!geneve_dst_addr_equal(&geneve->info, &info)) {
Girish Moodalbail5b861f62017-07-20 22:44:20 -07001640 dst_cache_reset(&info.dst_cache);
Alexey Kodanevc40e89f2018-04-19 15:42:32 +03001641 geneve_link_config(dev, &info, tb);
1642 }
Girish Moodalbail5b861f62017-07-20 22:44:20 -07001643
1644 geneve_quiesce(geneve, &gs4, &gs6);
1645 geneve->info = info;
1646 geneve->collect_md = metadata;
1647 geneve->use_udp6_rx_checksums = use_udp6_rx_checksums;
Hangbin Liu52d0d4042018-09-12 10:04:21 +08001648 geneve->ttl_inherit = ttl_inherit;
Girish Moodalbail5b861f62017-07-20 22:44:20 -07001649 geneve_unquiesce(geneve, gs4, gs6);
1650
1651 return 0;
1652}
1653
John W. Linville2d07dc72015-05-13 12:57:30 -04001654static void geneve_dellink(struct net_device *dev, struct list_head *head)
1655{
1656 struct geneve_dev *geneve = netdev_priv(dev);
1657
John W. Linville2d07dc72015-05-13 12:57:30 -04001658 list_del(&geneve->next);
1659 unregister_netdevice_queue(dev, head);
1660}
1661
1662static size_t geneve_get_size(const struct net_device *dev)
1663{
1664 return nla_total_size(sizeof(__u32)) + /* IFLA_GENEVE_ID */
John W. Linville8ed66f02015-10-26 17:01:44 -04001665 nla_total_size(sizeof(struct in6_addr)) + /* IFLA_GENEVE_REMOTE{6} */
John W. Linville8760ce52015-06-01 15:51:34 -04001666 nla_total_size(sizeof(__u8)) + /* IFLA_GENEVE_TTL */
John W. Linvilled8951122015-06-01 15:51:35 -04001667 nla_total_size(sizeof(__u8)) + /* IFLA_GENEVE_TOS */
Stefano Brivioa025fb52018-11-08 12:19:19 +01001668 nla_total_size(sizeof(__u8)) + /* IFLA_GENEVE_DF */
Daniel Borkmann8eb3b992016-03-09 03:00:04 +01001669 nla_total_size(sizeof(__be32)) + /* IFLA_GENEVE_LABEL */
John W. Linville7bbe33f2015-09-22 13:09:32 -04001670 nla_total_size(sizeof(__be16)) + /* IFLA_GENEVE_PORT */
Pravin B Shelare305ac62015-08-26 23:46:52 -07001671 nla_total_size(0) + /* IFLA_GENEVE_COLLECT_METADATA */
Tom Herbertabe492b2015-12-10 12:37:45 -08001672 nla_total_size(sizeof(__u8)) + /* IFLA_GENEVE_UDP_CSUM */
1673 nla_total_size(sizeof(__u8)) + /* IFLA_GENEVE_UDP_ZERO_CSUM6_TX */
1674 nla_total_size(sizeof(__u8)) + /* IFLA_GENEVE_UDP_ZERO_CSUM6_RX */
Hangbin Liu52d0d4042018-09-12 10:04:21 +08001675 nla_total_size(sizeof(__u8)) + /* IFLA_GENEVE_TTL_INHERIT */
John W. Linville2d07dc72015-05-13 12:57:30 -04001676 0;
1677}
1678
1679static int geneve_fill_info(struct sk_buff *skb, const struct net_device *dev)
1680{
1681 struct geneve_dev *geneve = netdev_priv(dev);
pravin shelar9b4437a2016-11-21 11:02:58 -08001682 struct ip_tunnel_info *info = &geneve->info;
Hangbin Liu52d0d4042018-09-12 10:04:21 +08001683 bool ttl_inherit = geneve->ttl_inherit;
Hangbin Liufd7eafd2017-11-15 09:43:09 +08001684 bool metadata = geneve->collect_md;
pravin shelar9b4437a2016-11-21 11:02:58 -08001685 __u8 tmp_vni[3];
John W. Linville2d07dc72015-05-13 12:57:30 -04001686 __u32 vni;
1687
pravin shelar9b4437a2016-11-21 11:02:58 -08001688 tunnel_id_to_vni(info->key.tun_id, tmp_vni);
1689 vni = (tmp_vni[0] << 16) | (tmp_vni[1] << 8) | tmp_vni[2];
John W. Linville2d07dc72015-05-13 12:57:30 -04001690 if (nla_put_u32(skb, IFLA_GENEVE_ID, vni))
1691 goto nla_put_failure;
1692
Hangbin Liufd7eafd2017-11-15 09:43:09 +08001693 if (!metadata && ip_tunnel_info_af(info) == AF_INET) {
John W. Linville8ed66f02015-10-26 17:01:44 -04001694 if (nla_put_in_addr(skb, IFLA_GENEVE_REMOTE,
pravin shelar9b4437a2016-11-21 11:02:58 -08001695 info->key.u.ipv4.dst))
John W. Linville8ed66f02015-10-26 17:01:44 -04001696 goto nla_put_failure;
pravin shelar9b4437a2016-11-21 11:02:58 -08001697 if (nla_put_u8(skb, IFLA_GENEVE_UDP_CSUM,
1698 !!(info->key.tun_flags & TUNNEL_CSUM)))
1699 goto nla_put_failure;
1700
John W. Linville8ed66f02015-10-26 17:01:44 -04001701#if IS_ENABLED(CONFIG_IPV6)
Hangbin Liufd7eafd2017-11-15 09:43:09 +08001702 } else if (!metadata) {
John W. Linville8ed66f02015-10-26 17:01:44 -04001703 if (nla_put_in6_addr(skb, IFLA_GENEVE_REMOTE6,
pravin shelar9b4437a2016-11-21 11:02:58 -08001704 &info->key.u.ipv6.dst))
1705 goto nla_put_failure;
pravin shelar9b4437a2016-11-21 11:02:58 -08001706 if (nla_put_u8(skb, IFLA_GENEVE_UDP_ZERO_CSUM6_TX,
1707 !(info->key.tun_flags & TUNNEL_CSUM)))
1708 goto nla_put_failure;
Eric Garver11387fe2017-05-23 18:37:27 -04001709#endif
Hangbin Liufd7eafd2017-11-15 09:43:09 +08001710 }
John W. Linville2d07dc72015-05-13 12:57:30 -04001711
pravin shelar9b4437a2016-11-21 11:02:58 -08001712 if (nla_put_u8(skb, IFLA_GENEVE_TTL, info->key.ttl) ||
1713 nla_put_u8(skb, IFLA_GENEVE_TOS, info->key.tos) ||
1714 nla_put_be32(skb, IFLA_GENEVE_LABEL, info->key.label))
John W. Linville8760ce52015-06-01 15:51:34 -04001715 goto nla_put_failure;
1716
Stefano Brivioa025fb52018-11-08 12:19:19 +01001717 if (nla_put_u8(skb, IFLA_GENEVE_DF, geneve->df))
1718 goto nla_put_failure;
1719
pravin shelar9b4437a2016-11-21 11:02:58 -08001720 if (nla_put_be16(skb, IFLA_GENEVE_PORT, info->key.tp_dst))
Pravin B Shelarcd7918b2015-08-26 23:46:51 -07001721 goto nla_put_failure;
1722
Hangbin Liufd7eafd2017-11-15 09:43:09 +08001723 if (metadata && nla_put_flag(skb, IFLA_GENEVE_COLLECT_METADATA))
Hangbin Liuf9094b72017-11-23 11:27:24 +08001724 goto nla_put_failure;
Hangbin Liufd7eafd2017-11-15 09:43:09 +08001725
Hangbin Liuf9094b72017-11-23 11:27:24 +08001726#if IS_ENABLED(CONFIG_IPV6)
Hangbin Liufd7eafd2017-11-15 09:43:09 +08001727 if (nla_put_u8(skb, IFLA_GENEVE_UDP_ZERO_CSUM6_RX,
1728 !geneve->use_udp6_rx_checksums))
1729 goto nla_put_failure;
Hangbin Liuf9094b72017-11-23 11:27:24 +08001730#endif
Hangbin Liufd7eafd2017-11-15 09:43:09 +08001731
Hangbin Liu52d0d4042018-09-12 10:04:21 +08001732 if (nla_put_u8(skb, IFLA_GENEVE_TTL_INHERIT, ttl_inherit))
1733 goto nla_put_failure;
1734
John W. Linville2d07dc72015-05-13 12:57:30 -04001735 return 0;
1736
1737nla_put_failure:
1738 return -EMSGSIZE;
1739}
1740
1741static struct rtnl_link_ops geneve_link_ops __read_mostly = {
1742 .kind = "geneve",
1743 .maxtype = IFLA_GENEVE_MAX,
1744 .policy = geneve_policy,
1745 .priv_size = sizeof(struct geneve_dev),
1746 .setup = geneve_setup,
1747 .validate = geneve_validate,
1748 .newlink = geneve_newlink,
Girish Moodalbail5b861f62017-07-20 22:44:20 -07001749 .changelink = geneve_changelink,
John W. Linville2d07dc72015-05-13 12:57:30 -04001750 .dellink = geneve_dellink,
1751 .get_size = geneve_get_size,
1752 .fill_info = geneve_fill_info,
1753};
1754
Pravin B Shelare305ac62015-08-26 23:46:52 -07001755struct net_device *geneve_dev_create_fb(struct net *net, const char *name,
1756 u8 name_assign_type, u16 dst_port)
1757{
1758 struct nlattr *tb[IFLA_MAX + 1];
pravin shelar9b4437a2016-11-21 11:02:58 -08001759 struct ip_tunnel_info info;
Pravin B Shelare305ac62015-08-26 23:46:52 -07001760 struct net_device *dev;
Nicolas Dichtel106da662016-06-13 10:31:04 +02001761 LIST_HEAD(list_kill);
Pravin B Shelare305ac62015-08-26 23:46:52 -07001762 int err;
1763
1764 memset(tb, 0, sizeof(tb));
1765 dev = rtnl_create_link(net, name, name_assign_type,
David Ahernd0522f12018-11-06 12:51:14 -08001766 &geneve_link_ops, tb, NULL);
Pravin B Shelare305ac62015-08-26 23:46:52 -07001767 if (IS_ERR(dev))
1768 return dev;
1769
pravin shelar9b4437a2016-11-21 11:02:58 -08001770 init_tnl_info(&info, dst_port);
Stefano Brivioa025fb52018-11-08 12:19:19 +01001771 err = geneve_configure(net, dev, NULL, &info,
1772 true, true, false, GENEVE_DF_UNSET);
Nicolas Dichtel106da662016-06-13 10:31:04 +02001773 if (err) {
1774 free_netdev(dev);
1775 return ERR_PTR(err);
1776 }
David Wragg7e059152016-02-10 00:05:58 +00001777
1778 /* openvswitch users expect packet sizes to be unrestricted,
1779 * so set the largest MTU we can.
1780 */
Jarod Wilson91572082016-10-20 13:55:20 -04001781 err = geneve_change_mtu(dev, IP_MAX_MTU);
David Wragg7e059152016-02-10 00:05:58 +00001782 if (err)
1783 goto err;
1784
Nicolas Dichtel41009482016-06-13 10:31:07 +02001785 err = rtnl_configure_link(dev, NULL);
1786 if (err < 0)
1787 goto err;
1788
Pravin B Shelare305ac62015-08-26 23:46:52 -07001789 return dev;
pravin shelar9b4437a2016-11-21 11:02:58 -08001790err:
Nicolas Dichtel106da662016-06-13 10:31:04 +02001791 geneve_dellink(dev, &list_kill);
1792 unregister_netdevice_many(&list_kill);
David Wragg7e059152016-02-10 00:05:58 +00001793 return ERR_PTR(err);
Pravin B Shelare305ac62015-08-26 23:46:52 -07001794}
1795EXPORT_SYMBOL_GPL(geneve_dev_create_fb);
1796
Hannes Frederic Sowa681e6832016-04-18 21:19:48 +02001797static int geneve_netdevice_event(struct notifier_block *unused,
1798 unsigned long event, void *ptr)
1799{
1800 struct net_device *dev = netdev_notifier_info_to_dev(ptr);
1801
Sabrina Dubroca2d2b13f2017-07-21 12:49:32 +02001802 if (event == NETDEV_UDP_TUNNEL_PUSH_INFO ||
Sabrina Dubroca04584952017-07-21 12:49:33 +02001803 event == NETDEV_UDP_TUNNEL_DROP_INFO) {
Sabrina Dubroca2d2b13f2017-07-21 12:49:32 +02001804 geneve_offload_rx_ports(dev, event == NETDEV_UDP_TUNNEL_PUSH_INFO);
Sabrina Dubroca04584952017-07-21 12:49:33 +02001805 } else if (event == NETDEV_UNREGISTER) {
1806 geneve_offload_rx_ports(dev, false);
1807 } else if (event == NETDEV_REGISTER) {
1808 geneve_offload_rx_ports(dev, true);
1809 }
Hannes Frederic Sowa681e6832016-04-18 21:19:48 +02001810
1811 return NOTIFY_DONE;
1812}
1813
1814static struct notifier_block geneve_notifier_block __read_mostly = {
1815 .notifier_call = geneve_netdevice_event,
1816};
1817
John W. Linville2d07dc72015-05-13 12:57:30 -04001818static __net_init int geneve_init_net(struct net *net)
1819{
1820 struct geneve_net *gn = net_generic(net, geneve_net_id);
John W. Linville2d07dc72015-05-13 12:57:30 -04001821
1822 INIT_LIST_HEAD(&gn->geneve_list);
Pravin B Shelar371bd102015-08-26 23:46:54 -07001823 INIT_LIST_HEAD(&gn->sock_list);
John W. Linville2d07dc72015-05-13 12:57:30 -04001824 return 0;
1825}
1826
Haishuang Yan2843a252017-12-16 17:54:50 +08001827static void geneve_destroy_tunnels(struct net *net, struct list_head *head)
John W. Linville2d07dc72015-05-13 12:57:30 -04001828{
1829 struct geneve_net *gn = net_generic(net, geneve_net_id);
1830 struct geneve_dev *geneve, *next;
1831 struct net_device *dev, *aux;
John W. Linville2d07dc72015-05-13 12:57:30 -04001832
1833 /* gather any geneve devices that were moved into this ns */
1834 for_each_netdev_safe(net, dev, aux)
1835 if (dev->rtnl_link_ops == &geneve_link_ops)
Haishuang Yan2843a252017-12-16 17:54:50 +08001836 unregister_netdevice_queue(dev, head);
John W. Linville2d07dc72015-05-13 12:57:30 -04001837
1838 /* now gather any other geneve devices that were created in this ns */
1839 list_for_each_entry_safe(geneve, next, &gn->geneve_list, next) {
1840 /* If geneve->dev is in the same netns, it was already added
1841 * to the list by the previous loop.
1842 */
1843 if (!net_eq(dev_net(geneve->dev), net))
Haishuang Yan2843a252017-12-16 17:54:50 +08001844 unregister_netdevice_queue(geneve->dev, head);
John W. Linville2d07dc72015-05-13 12:57:30 -04001845 }
1846
Haishuang Yan2843a252017-12-16 17:54:50 +08001847 WARN_ON_ONCE(!list_empty(&gn->sock_list));
1848}
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();
1862}
1863
1864static struct pernet_operations geneve_net_ops = {
1865 .init = geneve_init_net,
Haishuang Yan2843a252017-12-16 17:54:50 +08001866 .exit_batch = geneve_exit_batch_net,
John W. Linville2d07dc72015-05-13 12:57:30 -04001867 .id = &geneve_net_id,
1868 .size = sizeof(struct geneve_net),
1869};
1870
1871static int __init geneve_init_module(void)
1872{
1873 int rc;
1874
1875 rc = register_pernet_subsys(&geneve_net_ops);
1876 if (rc)
1877 goto out1;
1878
Hannes Frederic Sowa681e6832016-04-18 21:19:48 +02001879 rc = register_netdevice_notifier(&geneve_notifier_block);
John W. Linville2d07dc72015-05-13 12:57:30 -04001880 if (rc)
1881 goto out2;
1882
Hannes Frederic Sowa681e6832016-04-18 21:19:48 +02001883 rc = rtnl_link_register(&geneve_link_ops);
1884 if (rc)
1885 goto out3;
1886
John W. Linville2d07dc72015-05-13 12:57:30 -04001887 return 0;
Hannes Frederic Sowa681e6832016-04-18 21:19:48 +02001888out3:
1889 unregister_netdevice_notifier(&geneve_notifier_block);
John W. Linville2d07dc72015-05-13 12:57:30 -04001890out2:
1891 unregister_pernet_subsys(&geneve_net_ops);
1892out1:
1893 return rc;
1894}
1895late_initcall(geneve_init_module);
1896
1897static void __exit geneve_cleanup_module(void)
1898{
1899 rtnl_link_unregister(&geneve_link_ops);
Hannes Frederic Sowa681e6832016-04-18 21:19:48 +02001900 unregister_netdevice_notifier(&geneve_notifier_block);
John W. Linville2d07dc72015-05-13 12:57:30 -04001901 unregister_pernet_subsys(&geneve_net_ops);
1902}
1903module_exit(geneve_cleanup_module);
1904
1905MODULE_LICENSE("GPL");
1906MODULE_VERSION(GENEVE_NETDEV_VER);
1907MODULE_AUTHOR("John W. Linville <linville@tuxdriver.com>");
1908MODULE_DESCRIPTION("Interface driver for GENEVE encapsulated traffic");
1909MODULE_ALIAS_RTNL_LINK("geneve");