blob: a3c8ce6deb938bb617664b65803206956065e07b [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
Sabrina Dubroca9e06e852020-07-06 17:18:08 +020051struct geneve_config {
52 struct ip_tunnel_info info;
53 bool collect_md;
54 bool use_udp6_rx_checksums;
55 bool ttl_inherit;
56 enum ifla_geneve_df df;
57};
58
John W. Linville2d07dc72015-05-13 12:57:30 -040059/* Pseudo network device */
60struct geneve_dev {
Jiri Benc4b4c21f2017-07-02 19:00:58 +020061 struct geneve_dev_node hlist4; /* vni hash table for IPv4 socket */
62#if IS_ENABLED(CONFIG_IPV6)
63 struct geneve_dev_node hlist6; /* vni hash table for IPv6 socket */
64#endif
John W. Linville2d07dc72015-05-13 12:57:30 -040065 struct net *net; /* netns for packet i/o */
66 struct net_device *dev; /* netdev for geneve tunnel */
pravin shelarfceb9c32016-10-28 09:59:16 -070067 struct geneve_sock __rcu *sock4; /* IPv4 socket used for geneve tunnel */
John W. Linville8ed66f02015-10-26 17:01:44 -040068#if IS_ENABLED(CONFIG_IPV6)
pravin shelarfceb9c32016-10-28 09:59:16 -070069 struct geneve_sock __rcu *sock6; /* IPv6 socket used for geneve tunnel */
John W. Linville8ed66f02015-10-26 17:01:44 -040070#endif
John W. Linville2d07dc72015-05-13 12:57:30 -040071 struct list_head next; /* geneve's per namespace list */
Jesse Gross8e816df2015-08-28 16:54:40 -070072 struct gro_cells gro_cells;
Sabrina Dubroca9e06e852020-07-06 17:18:08 +020073 struct geneve_config cfg;
John W. Linville2d07dc72015-05-13 12:57:30 -040074};
75
Pravin B Shelar371bd102015-08-26 23:46:54 -070076struct geneve_sock {
77 bool collect_md;
Pravin B Shelar371bd102015-08-26 23:46:54 -070078 struct list_head list;
79 struct socket *sock;
80 struct rcu_head rcu;
81 int refcnt;
Pravin B Shelar66d47002015-08-26 23:46:55 -070082 struct hlist_head vni_list[VNI_HASH_SIZE];
Pravin B Shelar371bd102015-08-26 23:46:54 -070083};
John W. Linville2d07dc72015-05-13 12:57:30 -040084
85static inline __u32 geneve_net_vni_hash(u8 vni[3])
86{
87 __u32 vnid;
88
89 vnid = (vni[0] << 16) | (vni[1] << 8) | vni[2];
90 return hash_32(vnid, VNI_HASH_BITS);
91}
92
Pravin B Shelare305ac62015-08-26 23:46:52 -070093static __be64 vni_to_tunnel_id(const __u8 *vni)
94{
95#ifdef __BIG_ENDIAN
96 return (vni[0] << 16) | (vni[1] << 8) | vni[2];
97#else
98 return (__force __be64)(((__force u64)vni[0] << 40) |
99 ((__force u64)vni[1] << 48) |
100 ((__force u64)vni[2] << 56));
101#endif
102}
103
pravin shelar9b4437a2016-11-21 11:02:58 -0800104/* Convert 64 bit tunnel ID to 24 bit VNI. */
105static void tunnel_id_to_vni(__be64 tun_id, __u8 *vni)
106{
107#ifdef __BIG_ENDIAN
108 vni[0] = (__force __u8)(tun_id >> 16);
109 vni[1] = (__force __u8)(tun_id >> 8);
110 vni[2] = (__force __u8)tun_id;
111#else
112 vni[0] = (__force __u8)((__force u64)tun_id >> 40);
113 vni[1] = (__force __u8)((__force u64)tun_id >> 48);
114 vni[2] = (__force __u8)((__force u64)tun_id >> 56);
115#endif
116}
117
pravin shelar2e0b26e2016-11-21 11:03:01 -0800118static bool eq_tun_id_and_vni(u8 *tun_id, u8 *vni)
119{
pravin shelar2e0b26e2016-11-21 11:03:01 -0800120 return !memcmp(vni, &tun_id[5], 3);
pravin shelar2e0b26e2016-11-21 11:03:01 -0800121}
122
Jiri Benc1e9f12e2016-02-18 11:22:49 +0100123static sa_family_t geneve_get_sk_family(struct geneve_sock *gs)
124{
125 return gs->sock->sk->sk_family;
126}
127
Pravin B Shelar66d47002015-08-26 23:46:55 -0700128static struct geneve_dev *geneve_lookup(struct geneve_sock *gs,
Pravin B Shelar371bd102015-08-26 23:46:54 -0700129 __be32 addr, u8 vni[])
John W. Linville2d07dc72015-05-13 12:57:30 -0400130{
John W. Linville2d07dc72015-05-13 12:57:30 -0400131 struct hlist_head *vni_list_head;
Jiri Benc4b4c21f2017-07-02 19:00:58 +0200132 struct geneve_dev_node *node;
John W. Linville2d07dc72015-05-13 12:57:30 -0400133 __u32 hash;
134
John W. Linville2d07dc72015-05-13 12:57:30 -0400135 /* Find the device for this VNI */
Pravin B Shelar371bd102015-08-26 23:46:54 -0700136 hash = geneve_net_vni_hash(vni);
Pravin B Shelar66d47002015-08-26 23:46:55 -0700137 vni_list_head = &gs->vni_list[hash];
Jiri Benc4b4c21f2017-07-02 19:00:58 +0200138 hlist_for_each_entry_rcu(node, vni_list_head, hlist) {
Sabrina Dubroca9e06e852020-07-06 17:18:08 +0200139 if (eq_tun_id_and_vni((u8 *)&node->geneve->cfg.info.key.tun_id, vni) &&
140 addr == node->geneve->cfg.info.key.u.ipv4.dst)
Jiri Benc4b4c21f2017-07-02 19:00:58 +0200141 return node->geneve;
John W. Linville2d07dc72015-05-13 12:57:30 -0400142 }
Pravin B Shelare305ac62015-08-26 23:46:52 -0700143 return NULL;
144}
145
John W. Linville8ed66f02015-10-26 17:01:44 -0400146#if IS_ENABLED(CONFIG_IPV6)
147static struct geneve_dev *geneve6_lookup(struct geneve_sock *gs,
148 struct in6_addr addr6, u8 vni[])
149{
150 struct hlist_head *vni_list_head;
Jiri Benc4b4c21f2017-07-02 19:00:58 +0200151 struct geneve_dev_node *node;
John W. Linville8ed66f02015-10-26 17:01:44 -0400152 __u32 hash;
153
154 /* Find the device for this VNI */
155 hash = geneve_net_vni_hash(vni);
156 vni_list_head = &gs->vni_list[hash];
Jiri Benc4b4c21f2017-07-02 19:00:58 +0200157 hlist_for_each_entry_rcu(node, vni_list_head, hlist) {
Sabrina Dubroca9e06e852020-07-06 17:18:08 +0200158 if (eq_tun_id_and_vni((u8 *)&node->geneve->cfg.info.key.tun_id, vni) &&
159 ipv6_addr_equal(&addr6, &node->geneve->cfg.info.key.u.ipv6.dst))
Jiri Benc4b4c21f2017-07-02 19:00:58 +0200160 return node->geneve;
John W. Linville8ed66f02015-10-26 17:01:44 -0400161 }
162 return NULL;
163}
164#endif
165
Pravin B Shelar371bd102015-08-26 23:46:54 -0700166static inline struct genevehdr *geneve_hdr(const struct sk_buff *skb)
167{
168 return (struct genevehdr *)(udp_hdr(skb) + 1);
169}
170
Jiri Benc9fc47542016-02-18 11:22:50 +0100171static struct geneve_dev *geneve_lookup_skb(struct geneve_sock *gs,
172 struct sk_buff *skb)
Pravin B Shelare305ac62015-08-26 23:46:52 -0700173{
John W. Linville8ed66f02015-10-26 17:01:44 -0400174 static u8 zero_vni[3];
pravin shelar9b4437a2016-11-21 11:02:58 -0800175 u8 *vni;
Pravin B Shelare305ac62015-08-26 23:46:52 -0700176
Jiri Benc1e9f12e2016-02-18 11:22:49 +0100177 if (geneve_get_sk_family(gs) == AF_INET) {
Jiri Benc9fc47542016-02-18 11:22:50 +0100178 struct iphdr *iph;
pravin shelar9b4437a2016-11-21 11:02:58 -0800179 __be32 addr;
Jiri Benc9fc47542016-02-18 11:22:50 +0100180
John W. Linville8ed66f02015-10-26 17:01:44 -0400181 iph = ip_hdr(skb); /* outer IP header... */
Pravin B Shelar371bd102015-08-26 23:46:54 -0700182
John W. Linville8ed66f02015-10-26 17:01:44 -0400183 if (gs->collect_md) {
184 vni = zero_vni;
185 addr = 0;
186 } else {
Jiri Benc9fc47542016-02-18 11:22:50 +0100187 vni = geneve_hdr(skb)->vni;
John W. Linville8ed66f02015-10-26 17:01:44 -0400188 addr = iph->saddr;
189 }
190
Jiri Benc9fc47542016-02-18 11:22:50 +0100191 return geneve_lookup(gs, addr, vni);
John W. Linville8ed66f02015-10-26 17:01:44 -0400192#if IS_ENABLED(CONFIG_IPV6)
Jiri Benc1e9f12e2016-02-18 11:22:49 +0100193 } else if (geneve_get_sk_family(gs) == AF_INET6) {
pravin shelar9b4437a2016-11-21 11:02:58 -0800194 static struct in6_addr zero_addr6;
Jiri Benc9fc47542016-02-18 11:22:50 +0100195 struct ipv6hdr *ip6h;
196 struct in6_addr addr6;
197
John W. Linville8ed66f02015-10-26 17:01:44 -0400198 ip6h = ipv6_hdr(skb); /* outer IPv6 header... */
199
200 if (gs->collect_md) {
201 vni = zero_vni;
202 addr6 = zero_addr6;
203 } else {
Jiri Benc9fc47542016-02-18 11:22:50 +0100204 vni = geneve_hdr(skb)->vni;
John W. Linville8ed66f02015-10-26 17:01:44 -0400205 addr6 = ip6h->saddr;
206 }
207
Jiri Benc9fc47542016-02-18 11:22:50 +0100208 return geneve6_lookup(gs, addr6, vni);
John W. Linville8ed66f02015-10-26 17:01:44 -0400209#endif
Pravin B Shelar371bd102015-08-26 23:46:54 -0700210 }
Jiri Benc9fc47542016-02-18 11:22:50 +0100211 return NULL;
212}
213
214/* geneve receive/decap routine */
215static void geneve_rx(struct geneve_dev *geneve, struct geneve_sock *gs,
216 struct sk_buff *skb)
217{
218 struct genevehdr *gnvh = geneve_hdr(skb);
219 struct metadata_dst *tun_dst = NULL;
Girish Moodalbailfe741e22017-06-08 17:07:48 -0700220 unsigned int len;
Jiri Benc9fc47542016-02-18 11:22:50 +0100221 int err = 0;
222 void *oiph;
John W. Linville2d07dc72015-05-13 12:57:30 -0400223
Pravin B Shelar371bd102015-08-26 23:46:54 -0700224 if (ip_tunnel_collect_metadata() || gs->collect_md) {
Pravin B Shelare305ac62015-08-26 23:46:52 -0700225 __be16 flags;
Pravin B Shelare305ac62015-08-26 23:46:52 -0700226
227 flags = TUNNEL_KEY | TUNNEL_GENEVE_OPT |
228 (gnvh->oam ? TUNNEL_OAM : 0) |
229 (gnvh->critical ? TUNNEL_CRIT_OPT : 0);
230
Jiri Benc1e9f12e2016-02-18 11:22:49 +0100231 tun_dst = udp_tun_rx_dst(skb, geneve_get_sk_family(gs), flags,
Pravin B Shelare305ac62015-08-26 23:46:52 -0700232 vni_to_tunnel_id(gnvh->vni),
233 gnvh->opt_len * 4);
Girish Moodalbailfe741e22017-06-08 17:07:48 -0700234 if (!tun_dst) {
235 geneve->dev->stats.rx_dropped++;
Pravin B Shelare305ac62015-08-26 23:46:52 -0700236 goto drop;
Girish Moodalbailfe741e22017-06-08 17:07:48 -0700237 }
Pravin B Shelare305ac62015-08-26 23:46:52 -0700238 /* Update tunnel dst according to Geneve options. */
Pravin B Shelar4c222792015-08-30 18:09:38 -0700239 ip_tunnel_info_opts_set(&tun_dst->u.tun_info,
Pieter Jansen van Vuuren256c87c2018-06-26 21:39:36 -0700240 gnvh->options, gnvh->opt_len * 4,
241 TUNNEL_GENEVE_OPT);
Pravin B Shelare305ac62015-08-26 23:46:52 -0700242 } else {
243 /* Drop packets w/ critical options,
244 * since we don't support any...
245 */
Girish Moodalbailfe741e22017-06-08 17:07:48 -0700246 if (gnvh->critical) {
247 geneve->dev->stats.rx_frame_errors++;
248 geneve->dev->stats.rx_errors++;
Pravin B Shelare305ac62015-08-26 23:46:52 -0700249 goto drop;
Girish Moodalbailfe741e22017-06-08 17:07:48 -0700250 }
Pravin B Shelare305ac62015-08-26 23:46:52 -0700251 }
John W. Linville2d07dc72015-05-13 12:57:30 -0400252
253 skb_reset_mac_header(skb);
John W. Linville2d07dc72015-05-13 12:57:30 -0400254 skb->protocol = eth_type_trans(skb, geneve->dev);
255 skb_postpull_rcsum(skb, eth_hdr(skb), ETH_HLEN);
256
Pravin B Shelare305ac62015-08-26 23:46:52 -0700257 if (tun_dst)
258 skb_dst_set(skb, &tun_dst->dst);
259
John W. Linville2d07dc72015-05-13 12:57:30 -0400260 /* Ignore packet loops (and multicast echo) */
Girish Moodalbailfe741e22017-06-08 17:07:48 -0700261 if (ether_addr_equal(eth_hdr(skb)->h_source, geneve->dev->dev_addr)) {
262 geneve->dev->stats.rx_errors++;
John W. Linville2d07dc72015-05-13 12:57:30 -0400263 goto drop;
Girish Moodalbailfe741e22017-06-08 17:07:48 -0700264 }
John W. Linville2d07dc72015-05-13 12:57:30 -0400265
Jiri Benc9fc47542016-02-18 11:22:50 +0100266 oiph = skb_network_header(skb);
John W. Linville2d07dc72015-05-13 12:57:30 -0400267 skb_reset_network_header(skb);
268
Jiri Benc9fc47542016-02-18 11:22:50 +0100269 if (geneve_get_sk_family(gs) == AF_INET)
270 err = IP_ECN_decapsulate(oiph, skb);
John W. Linville8ed66f02015-10-26 17:01:44 -0400271#if IS_ENABLED(CONFIG_IPV6)
Jiri Benc9fc47542016-02-18 11:22:50 +0100272 else
273 err = IP6_ECN_decapsulate(oiph, skb);
John W. Linville8ed66f02015-10-26 17:01:44 -0400274#endif
John W. Linville2d07dc72015-05-13 12:57:30 -0400275
276 if (unlikely(err)) {
John W. Linville8ed66f02015-10-26 17:01:44 -0400277 if (log_ecn_error) {
Jiri Benc9fc47542016-02-18 11:22:50 +0100278 if (geneve_get_sk_family(gs) == AF_INET)
John W. Linville8ed66f02015-10-26 17:01:44 -0400279 net_info_ratelimited("non-ECT from %pI4 "
280 "with TOS=%#x\n",
Jiri Benc9fc47542016-02-18 11:22:50 +0100281 &((struct iphdr *)oiph)->saddr,
282 ((struct iphdr *)oiph)->tos);
John W. Linville8ed66f02015-10-26 17:01:44 -0400283#if IS_ENABLED(CONFIG_IPV6)
Jiri Benc9fc47542016-02-18 11:22:50 +0100284 else
John W. Linville8ed66f02015-10-26 17:01:44 -0400285 net_info_ratelimited("non-ECT from %pI6\n",
Jiri Benc9fc47542016-02-18 11:22:50 +0100286 &((struct ipv6hdr *)oiph)->saddr);
John W. Linville8ed66f02015-10-26 17:01:44 -0400287#endif
288 }
John W. Linville2d07dc72015-05-13 12:57:30 -0400289 if (err > 1) {
290 ++geneve->dev->stats.rx_frame_errors;
291 ++geneve->dev->stats.rx_errors;
292 goto drop;
293 }
294 }
295
Girish Moodalbailfe741e22017-06-08 17:07:48 -0700296 len = skb->len;
297 err = gro_cells_receive(&geneve->gro_cells, skb);
Fabian Frederick1e845272020-10-05 22:34:58 +0200298 if (likely(err == NET_RX_SUCCESS))
299 dev_sw_netstats_rx_add(geneve->dev, len);
300
John W. Linville2d07dc72015-05-13 12:57:30 -0400301 return;
302drop:
303 /* Consume bad packet */
304 kfree_skb(skb);
305}
306
307/* Setup stats when device is created */
308static int geneve_init(struct net_device *dev)
309{
Jesse Gross8e816df2015-08-28 16:54:40 -0700310 struct geneve_dev *geneve = netdev_priv(dev);
311 int err;
312
John W. Linville2d07dc72015-05-13 12:57:30 -0400313 dev->tstats = netdev_alloc_pcpu_stats(struct pcpu_sw_netstats);
314 if (!dev->tstats)
315 return -ENOMEM;
Jesse Gross8e816df2015-08-28 16:54:40 -0700316
317 err = gro_cells_init(&geneve->gro_cells, dev);
318 if (err) {
319 free_percpu(dev->tstats);
320 return err;
321 }
322
Sabrina Dubroca9e06e852020-07-06 17:18:08 +0200323 err = dst_cache_init(&geneve->cfg.info.dst_cache, GFP_KERNEL);
Paolo Abeni468dfff2016-02-12 15:43:58 +0100324 if (err) {
325 free_percpu(dev->tstats);
326 gro_cells_destroy(&geneve->gro_cells);
327 return err;
328 }
John W. Linville2d07dc72015-05-13 12:57:30 -0400329 return 0;
330}
331
332static void geneve_uninit(struct net_device *dev)
333{
Jesse Gross8e816df2015-08-28 16:54:40 -0700334 struct geneve_dev *geneve = netdev_priv(dev);
335
Sabrina Dubroca9e06e852020-07-06 17:18:08 +0200336 dst_cache_destroy(&geneve->cfg.info.dst_cache);
Jesse Gross8e816df2015-08-28 16:54:40 -0700337 gro_cells_destroy(&geneve->gro_cells);
John W. Linville2d07dc72015-05-13 12:57:30 -0400338 free_percpu(dev->tstats);
339}
340
Pravin B Shelar371bd102015-08-26 23:46:54 -0700341/* Callback from net/ipv4/udp.c to receive packets */
342static int geneve_udp_encap_recv(struct sock *sk, struct sk_buff *skb)
343{
344 struct genevehdr *geneveh;
Jiri Benc9fc47542016-02-18 11:22:50 +0100345 struct geneve_dev *geneve;
Pravin B Shelar371bd102015-08-26 23:46:54 -0700346 struct geneve_sock *gs;
347 int opts_len;
348
Girish Moodalbailfe741e22017-06-08 17:07:48 -0700349 /* Need UDP and Geneve header to be present */
Pravin B Shelar371bd102015-08-26 23:46:54 -0700350 if (unlikely(!pskb_may_pull(skb, GENEVE_BASE_HLEN)))
Hannes Frederic Sowae5aed002016-05-19 15:58:33 +0200351 goto drop;
Pravin B Shelar371bd102015-08-26 23:46:54 -0700352
353 /* Return packets with reserved bits set */
354 geneveh = geneve_hdr(skb);
355 if (unlikely(geneveh->ver != GENEVE_VER))
Hannes Frederic Sowae5aed002016-05-19 15:58:33 +0200356 goto drop;
Pravin B Shelar371bd102015-08-26 23:46:54 -0700357
358 if (unlikely(geneveh->proto_type != htons(ETH_P_TEB)))
Hannes Frederic Sowae5aed002016-05-19 15:58:33 +0200359 goto drop;
Pravin B Shelar371bd102015-08-26 23:46:54 -0700360
Jiri Benc9fc47542016-02-18 11:22:50 +0100361 gs = rcu_dereference_sk_user_data(sk);
362 if (!gs)
363 goto drop;
364
365 geneve = geneve_lookup_skb(gs, skb);
366 if (!geneve)
367 goto drop;
368
Pravin B Shelar371bd102015-08-26 23:46:54 -0700369 opts_len = geneveh->opt_len * 4;
370 if (iptunnel_pull_header(skb, GENEVE_BASE_HLEN + opts_len,
Jiri Benc7f290c92016-02-18 11:22:52 +0100371 htons(ETH_P_TEB),
Girish Moodalbailfe741e22017-06-08 17:07:48 -0700372 !net_eq(geneve->net, dev_net(geneve->dev)))) {
373 geneve->dev->stats.rx_dropped++;
Pravin B Shelar371bd102015-08-26 23:46:54 -0700374 goto drop;
Girish Moodalbailfe741e22017-06-08 17:07:48 -0700375 }
Pravin B Shelar371bd102015-08-26 23:46:54 -0700376
Jiri Benc9fc47542016-02-18 11:22:50 +0100377 geneve_rx(geneve, gs, skb);
Pravin B Shelar371bd102015-08-26 23:46:54 -0700378 return 0;
379
380drop:
381 /* Consume bad packet */
382 kfree_skb(skb);
383 return 0;
Pravin B Shelar371bd102015-08-26 23:46:54 -0700384}
385
Stefano Brivioa0796642018-11-08 12:19:18 +0100386/* Callback from net/ipv{4,6}/udp.c to check that we have a tunnel for errors */
387static int geneve_udp_encap_err_lookup(struct sock *sk, struct sk_buff *skb)
388{
389 struct genevehdr *geneveh;
390 struct geneve_sock *gs;
391 u8 zero_vni[3] = { 0 };
392 u8 *vni = zero_vni;
393
Stefano Brivioeccc73a2019-06-11 00:27:06 +0200394 if (!pskb_may_pull(skb, skb_transport_offset(skb) + GENEVE_BASE_HLEN))
Stefano Brivioa0796642018-11-08 12:19:18 +0100395 return -EINVAL;
396
397 geneveh = geneve_hdr(skb);
398 if (geneveh->ver != GENEVE_VER)
399 return -EINVAL;
400
401 if (geneveh->proto_type != htons(ETH_P_TEB))
402 return -EINVAL;
403
404 gs = rcu_dereference_sk_user_data(sk);
405 if (!gs)
406 return -ENOENT;
407
408 if (geneve_get_sk_family(gs) == AF_INET) {
409 struct iphdr *iph = ip_hdr(skb);
410 __be32 addr4 = 0;
411
412 if (!gs->collect_md) {
413 vni = geneve_hdr(skb)->vni;
414 addr4 = iph->daddr;
415 }
416
417 return geneve_lookup(gs, addr4, vni) ? 0 : -ENOENT;
418 }
419
420#if IS_ENABLED(CONFIG_IPV6)
421 if (geneve_get_sk_family(gs) == AF_INET6) {
422 struct ipv6hdr *ip6h = ipv6_hdr(skb);
Nathan Chancellor8a962c42018-11-16 18:36:27 -0700423 struct in6_addr addr6;
424
425 memset(&addr6, 0, sizeof(struct in6_addr));
Stefano Brivioa0796642018-11-08 12:19:18 +0100426
427 if (!gs->collect_md) {
428 vni = geneve_hdr(skb)->vni;
429 addr6 = ip6h->daddr;
430 }
431
432 return geneve6_lookup(gs, addr6, vni) ? 0 : -ENOENT;
433 }
434#endif
435
436 return -EPFNOSUPPORT;
437}
438
Pravin B Shelar371bd102015-08-26 23:46:54 -0700439static struct socket *geneve_create_sock(struct net *net, bool ipv6,
pravin shelar9b4437a2016-11-21 11:02:58 -0800440 __be16 port, bool ipv6_rx_csum)
Pravin B Shelar371bd102015-08-26 23:46:54 -0700441{
442 struct socket *sock;
443 struct udp_port_cfg udp_conf;
444 int err;
445
446 memset(&udp_conf, 0, sizeof(udp_conf));
447
448 if (ipv6) {
449 udp_conf.family = AF_INET6;
John W. Linville8ed66f02015-10-26 17:01:44 -0400450 udp_conf.ipv6_v6only = 1;
pravin shelar9b4437a2016-11-21 11:02:58 -0800451 udp_conf.use_udp6_rx_checksums = ipv6_rx_csum;
Pravin B Shelar371bd102015-08-26 23:46:54 -0700452 } else {
453 udp_conf.family = AF_INET;
454 udp_conf.local_ip.s_addr = htonl(INADDR_ANY);
455 }
456
457 udp_conf.local_udp_port = port;
458
459 /* Open UDP socket */
460 err = udp_sock_create(net, &udp_conf, &sock);
461 if (err < 0)
462 return ERR_PTR(err);
463
464 return sock;
465}
466
Pravin B Shelar371bd102015-08-26 23:46:54 -0700467static int geneve_hlen(struct genevehdr *gh)
468{
469 return sizeof(*gh) + gh->opt_len * 4;
470}
471
David Millerd4546c22018-06-24 14:13:49 +0900472static struct sk_buff *geneve_gro_receive(struct sock *sk,
473 struct list_head *head,
474 struct sk_buff *skb)
Pravin B Shelar371bd102015-08-26 23:46:54 -0700475{
David Millerd4546c22018-06-24 14:13:49 +0900476 struct sk_buff *pp = NULL;
477 struct sk_buff *p;
Pravin B Shelar371bd102015-08-26 23:46:54 -0700478 struct genevehdr *gh, *gh2;
479 unsigned int hlen, gh_len, off_gnv;
480 const struct packet_offload *ptype;
481 __be16 type;
482 int flush = 1;
483
484 off_gnv = skb_gro_offset(skb);
485 hlen = off_gnv + sizeof(*gh);
486 gh = skb_gro_header_fast(skb, off_gnv);
487 if (skb_gro_header_hard(skb, hlen)) {
488 gh = skb_gro_header_slow(skb, hlen, off_gnv);
489 if (unlikely(!gh))
490 goto out;
491 }
492
493 if (gh->ver != GENEVE_VER || gh->oam)
494 goto out;
495 gh_len = geneve_hlen(gh);
496
497 hlen = off_gnv + gh_len;
498 if (skb_gro_header_hard(skb, hlen)) {
499 gh = skb_gro_header_slow(skb, hlen, off_gnv);
500 if (unlikely(!gh))
501 goto out;
502 }
503
David Millerd4546c22018-06-24 14:13:49 +0900504 list_for_each_entry(p, head, list) {
Pravin B Shelar371bd102015-08-26 23:46:54 -0700505 if (!NAPI_GRO_CB(p)->same_flow)
506 continue;
507
508 gh2 = (struct genevehdr *)(p->data + off_gnv);
509 if (gh->opt_len != gh2->opt_len ||
510 memcmp(gh, gh2, gh_len)) {
511 NAPI_GRO_CB(p)->same_flow = 0;
512 continue;
513 }
514 }
515
516 type = gh->proto_type;
517
518 rcu_read_lock();
519 ptype = gro_find_receive_by_type(type);
Alexander Duyckc194cf92016-03-09 09:24:23 -0800520 if (!ptype)
Pravin B Shelar371bd102015-08-26 23:46:54 -0700521 goto out_unlock;
Pravin B Shelar371bd102015-08-26 23:46:54 -0700522
523 skb_gro_pull(skb, gh_len);
524 skb_gro_postpull_rcsum(skb, gh, gh_len);
Sabrina Dubrocafcd91dd2016-10-20 15:58:02 +0200525 pp = call_gro_receive(ptype->callbacks.gro_receive, head, skb);
Alexander Duyckc194cf92016-03-09 09:24:23 -0800526 flush = 0;
Pravin B Shelar371bd102015-08-26 23:46:54 -0700527
528out_unlock:
529 rcu_read_unlock();
530out:
Sabrina Dubroca603d4cf2018-06-30 17:38:55 +0200531 skb_gro_flush_final(skb, pp, flush);
Pravin B Shelar371bd102015-08-26 23:46:54 -0700532
533 return pp;
534}
535
Tom Herbert4a0090a2016-04-05 08:22:55 -0700536static int geneve_gro_complete(struct sock *sk, struct sk_buff *skb,
537 int nhoff)
Pravin B Shelar371bd102015-08-26 23:46:54 -0700538{
539 struct genevehdr *gh;
540 struct packet_offload *ptype;
541 __be16 type;
542 int gh_len;
543 int err = -ENOSYS;
544
Pravin B Shelar371bd102015-08-26 23:46:54 -0700545 gh = (struct genevehdr *)(skb->data + nhoff);
546 gh_len = geneve_hlen(gh);
547 type = gh->proto_type;
548
549 rcu_read_lock();
550 ptype = gro_find_complete_by_type(type);
551 if (ptype)
552 err = ptype->callbacks.gro_complete(skb, nhoff + gh_len);
553
554 rcu_read_unlock();
Jarno Rajahalme229740c2016-05-03 16:10:21 -0700555
556 skb_set_inner_mac_header(skb, nhoff + gh_len);
557
Pravin B Shelar371bd102015-08-26 23:46:54 -0700558 return err;
559}
560
561/* Create new listen socket if needed */
562static struct geneve_sock *geneve_socket_create(struct net *net, __be16 port,
pravin shelar9b4437a2016-11-21 11:02:58 -0800563 bool ipv6, bool ipv6_rx_csum)
Pravin B Shelar371bd102015-08-26 23:46:54 -0700564{
565 struct geneve_net *gn = net_generic(net, geneve_net_id);
566 struct geneve_sock *gs;
567 struct socket *sock;
568 struct udp_tunnel_sock_cfg tunnel_cfg;
Pravin B Shelar66d47002015-08-26 23:46:55 -0700569 int h;
Pravin B Shelar371bd102015-08-26 23:46:54 -0700570
571 gs = kzalloc(sizeof(*gs), GFP_KERNEL);
572 if (!gs)
573 return ERR_PTR(-ENOMEM);
574
pravin shelar9b4437a2016-11-21 11:02:58 -0800575 sock = geneve_create_sock(net, ipv6, port, ipv6_rx_csum);
Pravin B Shelar371bd102015-08-26 23:46:54 -0700576 if (IS_ERR(sock)) {
577 kfree(gs);
578 return ERR_CAST(sock);
579 }
580
581 gs->sock = sock;
582 gs->refcnt = 1;
Pravin B Shelar66d47002015-08-26 23:46:55 -0700583 for (h = 0; h < VNI_HASH_SIZE; ++h)
584 INIT_HLIST_HEAD(&gs->vni_list[h]);
Pravin B Shelar371bd102015-08-26 23:46:54 -0700585
586 /* Initialize the geneve udp offloads structure */
Alexander Duycke7b3db52016-06-16 12:20:52 -0700587 udp_tunnel_notify_add_rx_port(gs->sock, UDP_TUNNEL_TYPE_GENEVE);
Pravin B Shelar371bd102015-08-26 23:46:54 -0700588
589 /* Mark socket as an encapsulation socket */
Tom Herbert4a0090a2016-04-05 08:22:55 -0700590 memset(&tunnel_cfg, 0, sizeof(tunnel_cfg));
Pravin B Shelar371bd102015-08-26 23:46:54 -0700591 tunnel_cfg.sk_user_data = gs;
592 tunnel_cfg.encap_type = 1;
Tom Herbert4a0090a2016-04-05 08:22:55 -0700593 tunnel_cfg.gro_receive = geneve_gro_receive;
594 tunnel_cfg.gro_complete = geneve_gro_complete;
Pravin B Shelar371bd102015-08-26 23:46:54 -0700595 tunnel_cfg.encap_rcv = geneve_udp_encap_recv;
Stefano Brivioa0796642018-11-08 12:19:18 +0100596 tunnel_cfg.encap_err_lookup = geneve_udp_encap_err_lookup;
Pravin B Shelar371bd102015-08-26 23:46:54 -0700597 tunnel_cfg.encap_destroy = NULL;
598 setup_udp_tunnel_sock(net, sock, &tunnel_cfg);
Pravin B Shelar371bd102015-08-26 23:46:54 -0700599 list_add(&gs->list, &gn->sock_list);
600 return gs;
601}
602
John W. Linville8ed66f02015-10-26 17:01:44 -0400603static void __geneve_sock_release(struct geneve_sock *gs)
Pravin B Shelar371bd102015-08-26 23:46:54 -0700604{
John W. Linville8ed66f02015-10-26 17:01:44 -0400605 if (!gs || --gs->refcnt)
Pravin B Shelar371bd102015-08-26 23:46:54 -0700606 return;
607
608 list_del(&gs->list);
Alexander Duycke7b3db52016-06-16 12:20:52 -0700609 udp_tunnel_notify_del_rx_port(gs->sock, UDP_TUNNEL_TYPE_GENEVE);
Pravin B Shelar371bd102015-08-26 23:46:54 -0700610 udp_tunnel_sock_release(gs->sock);
611 kfree_rcu(gs, rcu);
612}
613
John W. Linville8ed66f02015-10-26 17:01:44 -0400614static void geneve_sock_release(struct geneve_dev *geneve)
615{
pravin shelarfceb9c32016-10-28 09:59:16 -0700616 struct geneve_sock *gs4 = rtnl_dereference(geneve->sock4);
John W. Linville8ed66f02015-10-26 17:01:44 -0400617#if IS_ENABLED(CONFIG_IPV6)
pravin shelarfceb9c32016-10-28 09:59:16 -0700618 struct geneve_sock *gs6 = rtnl_dereference(geneve->sock6);
619
620 rcu_assign_pointer(geneve->sock6, NULL);
621#endif
622
623 rcu_assign_pointer(geneve->sock4, NULL);
624 synchronize_net();
625
626 __geneve_sock_release(gs4);
627#if IS_ENABLED(CONFIG_IPV6)
628 __geneve_sock_release(gs6);
John W. Linville8ed66f02015-10-26 17:01:44 -0400629#endif
630}
631
Pravin B Shelar371bd102015-08-26 23:46:54 -0700632static struct geneve_sock *geneve_find_sock(struct geneve_net *gn,
John W. Linville8ed66f02015-10-26 17:01:44 -0400633 sa_family_t family,
Pravin B Shelar371bd102015-08-26 23:46:54 -0700634 __be16 dst_port)
635{
636 struct geneve_sock *gs;
637
638 list_for_each_entry(gs, &gn->sock_list, list) {
639 if (inet_sk(gs->sock->sk)->inet_sport == dst_port &&
Jiri Benc1e9f12e2016-02-18 11:22:49 +0100640 geneve_get_sk_family(gs) == family) {
Pravin B Shelar371bd102015-08-26 23:46:54 -0700641 return gs;
642 }
643 }
644 return NULL;
645}
646
John W. Linville8ed66f02015-10-26 17:01:44 -0400647static int geneve_sock_add(struct geneve_dev *geneve, bool ipv6)
John W. Linville2d07dc72015-05-13 12:57:30 -0400648{
John W. Linville2d07dc72015-05-13 12:57:30 -0400649 struct net *net = geneve->net;
Pravin B Shelar371bd102015-08-26 23:46:54 -0700650 struct geneve_net *gn = net_generic(net, geneve_net_id);
Jiri Benc4b4c21f2017-07-02 19:00:58 +0200651 struct geneve_dev_node *node;
John W. Linville2d07dc72015-05-13 12:57:30 -0400652 struct geneve_sock *gs;
pravin shelar9b4437a2016-11-21 11:02:58 -0800653 __u8 vni[3];
Pravin B Shelar66d47002015-08-26 23:46:55 -0700654 __u32 hash;
John W. Linville2d07dc72015-05-13 12:57:30 -0400655
Sabrina Dubroca9e06e852020-07-06 17:18:08 +0200656 gs = geneve_find_sock(gn, ipv6 ? AF_INET6 : AF_INET, geneve->cfg.info.key.tp_dst);
Pravin B Shelar371bd102015-08-26 23:46:54 -0700657 if (gs) {
658 gs->refcnt++;
659 goto out;
660 }
661
Sabrina Dubroca9e06e852020-07-06 17:18:08 +0200662 gs = geneve_socket_create(net, geneve->cfg.info.key.tp_dst, ipv6,
663 geneve->cfg.use_udp6_rx_checksums);
John W. Linville2d07dc72015-05-13 12:57:30 -0400664 if (IS_ERR(gs))
665 return PTR_ERR(gs);
666
Pravin B Shelar371bd102015-08-26 23:46:54 -0700667out:
Sabrina Dubroca9e06e852020-07-06 17:18:08 +0200668 gs->collect_md = geneve->cfg.collect_md;
John W. Linville8ed66f02015-10-26 17:01:44 -0400669#if IS_ENABLED(CONFIG_IPV6)
Jiri Benc4b4c21f2017-07-02 19:00:58 +0200670 if (ipv6) {
pravin shelarfceb9c32016-10-28 09:59:16 -0700671 rcu_assign_pointer(geneve->sock6, gs);
Jiri Benc4b4c21f2017-07-02 19:00:58 +0200672 node = &geneve->hlist6;
673 } else
John W. Linville8ed66f02015-10-26 17:01:44 -0400674#endif
Jiri Benc4b4c21f2017-07-02 19:00:58 +0200675 {
pravin shelarfceb9c32016-10-28 09:59:16 -0700676 rcu_assign_pointer(geneve->sock4, gs);
Jiri Benc4b4c21f2017-07-02 19:00:58 +0200677 node = &geneve->hlist4;
678 }
679 node->geneve = geneve;
Pravin B Shelar66d47002015-08-26 23:46:55 -0700680
Sabrina Dubroca9e06e852020-07-06 17:18:08 +0200681 tunnel_id_to_vni(geneve->cfg.info.key.tun_id, vni);
pravin shelar9b4437a2016-11-21 11:02:58 -0800682 hash = geneve_net_vni_hash(vni);
Jiri Benc4b4c21f2017-07-02 19:00:58 +0200683 hlist_add_head_rcu(&node->hlist, &gs->vni_list[hash]);
John W. Linville2d07dc72015-05-13 12:57:30 -0400684 return 0;
685}
686
John W. Linville8ed66f02015-10-26 17:01:44 -0400687static int geneve_open(struct net_device *dev)
688{
689 struct geneve_dev *geneve = netdev_priv(dev);
Sabrina Dubroca9e06e852020-07-06 17:18:08 +0200690 bool metadata = geneve->cfg.collect_md;
Jiri Benccf1c9cc2019-02-28 14:56:04 +0100691 bool ipv4, ipv6;
John W. Linville8ed66f02015-10-26 17:01:44 -0400692 int ret = 0;
693
Sabrina Dubroca9e06e852020-07-06 17:18:08 +0200694 ipv6 = geneve->cfg.info.mode & IP_TUNNEL_INFO_IPV6 || metadata;
Jiri Benccf1c9cc2019-02-28 14:56:04 +0100695 ipv4 = !ipv6 || metadata;
John W. Linville8ed66f02015-10-26 17:01:44 -0400696#if IS_ENABLED(CONFIG_IPV6)
Jiri Benccf1c9cc2019-02-28 14:56:04 +0100697 if (ipv6) {
John W. Linville8ed66f02015-10-26 17:01:44 -0400698 ret = geneve_sock_add(geneve, true);
Jiri Benccf1c9cc2019-02-28 14:56:04 +0100699 if (ret < 0 && ret != -EAFNOSUPPORT)
700 ipv4 = false;
701 }
John W. Linville8ed66f02015-10-26 17:01:44 -0400702#endif
Jiri Benccf1c9cc2019-02-28 14:56:04 +0100703 if (ipv4)
John W. Linville8ed66f02015-10-26 17:01:44 -0400704 ret = geneve_sock_add(geneve, false);
705 if (ret < 0)
706 geneve_sock_release(geneve);
707
708 return ret;
709}
710
John W. Linville2d07dc72015-05-13 12:57:30 -0400711static int geneve_stop(struct net_device *dev)
712{
713 struct geneve_dev *geneve = netdev_priv(dev);
John W. Linville2d07dc72015-05-13 12:57:30 -0400714
Jiri Benc4b4c21f2017-07-02 19:00:58 +0200715 hlist_del_init_rcu(&geneve->hlist4.hlist);
716#if IS_ENABLED(CONFIG_IPV6)
717 hlist_del_init_rcu(&geneve->hlist6.hlist);
718#endif
John W. Linville8ed66f02015-10-26 17:01:44 -0400719 geneve_sock_release(geneve);
John W. Linville2d07dc72015-05-13 12:57:30 -0400720 return 0;
721}
722
John W. Linville8ed66f02015-10-26 17:01:44 -0400723static void geneve_build_header(struct genevehdr *geneveh,
pravin shelarc3ef5aa2016-11-21 11:02:59 -0800724 const struct ip_tunnel_info *info)
John W. Linville8ed66f02015-10-26 17:01:44 -0400725{
726 geneveh->ver = GENEVE_VER;
pravin shelarc3ef5aa2016-11-21 11:02:59 -0800727 geneveh->opt_len = info->options_len / 4;
728 geneveh->oam = !!(info->key.tun_flags & TUNNEL_OAM);
729 geneveh->critical = !!(info->key.tun_flags & TUNNEL_CRIT_OPT);
John W. Linville8ed66f02015-10-26 17:01:44 -0400730 geneveh->rsvd1 = 0;
pravin shelarc3ef5aa2016-11-21 11:02:59 -0800731 tunnel_id_to_vni(info->key.tun_id, geneveh->vni);
John W. Linville8ed66f02015-10-26 17:01:44 -0400732 geneveh->proto_type = htons(ETH_P_TEB);
733 geneveh->rsvd2 = 0;
734
Pieter Jansen van Vuuren256c87c2018-06-26 21:39:36 -0700735 if (info->key.tun_flags & TUNNEL_GENEVE_OPT)
736 ip_tunnel_info_opts_get(geneveh->options, info);
John W. Linville8ed66f02015-10-26 17:01:44 -0400737}
738
pravin shelarc3ef5aa2016-11-21 11:02:59 -0800739static int geneve_build_skb(struct dst_entry *dst, struct sk_buff *skb,
740 const struct ip_tunnel_info *info,
741 bool xnet, int ip_hdr_len)
Pravin B Shelar371bd102015-08-26 23:46:54 -0700742{
pravin shelarc3ef5aa2016-11-21 11:02:59 -0800743 bool udp_sum = !!(info->key.tun_flags & TUNNEL_CSUM);
Pravin B Shelar371bd102015-08-26 23:46:54 -0700744 struct genevehdr *gnvh;
745 int min_headroom;
746 int err;
747
pravin shelarc3ef5aa2016-11-21 11:02:59 -0800748 skb_reset_mac_header(skb);
John W. Linville8ed66f02015-10-26 17:01:44 -0400749 skb_scrub_packet(skb, xnet);
750
pravin shelarc3ef5aa2016-11-21 11:02:59 -0800751 min_headroom = LL_RESERVED_SPACE(dst->dev) + dst->header_len +
752 GENEVE_BASE_HLEN + info->options_len + ip_hdr_len;
John W. Linville8ed66f02015-10-26 17:01:44 -0400753 err = skb_cow_head(skb, min_headroom);
Alexander Duyckaed069d2016-04-14 15:33:37 -0400754 if (unlikely(err))
John W. Linville8ed66f02015-10-26 17:01:44 -0400755 goto free_dst;
John W. Linville8ed66f02015-10-26 17:01:44 -0400756
Alexander Duyckaed069d2016-04-14 15:33:37 -0400757 err = udp_tunnel_handle_offloads(skb, udp_sum);
Dan Carpenter1ba64fa2016-04-19 17:30:56 +0300758 if (err)
John W. Linville8ed66f02015-10-26 17:01:44 -0400759 goto free_dst;
John W. Linville8ed66f02015-10-26 17:01:44 -0400760
Johannes Bergd58ff352017-06-16 14:29:23 +0200761 gnvh = __skb_push(skb, sizeof(*gnvh) + info->options_len);
pravin shelarc3ef5aa2016-11-21 11:02:59 -0800762 geneve_build_header(gnvh, info);
John W. Linville8ed66f02015-10-26 17:01:44 -0400763 skb_set_inner_protocol(skb, htons(ETH_P_TEB));
764 return 0;
765
766free_dst:
767 dst_release(dst);
768 return err;
769}
John W. Linville8ed66f02015-10-26 17:01:44 -0400770
771static struct rtable *geneve_get_v4_rt(struct sk_buff *skb,
772 struct net_device *dev,
Girish Moodalbail5b861f62017-07-20 22:44:20 -0700773 struct geneve_sock *gs4,
John W. Linville8ed66f02015-10-26 17:01:44 -0400774 struct flowi4 *fl4,
Mark Gray34beb212020-09-16 05:19:35 -0400775 const struct ip_tunnel_info *info,
776 __be16 dport, __be16 sport)
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;
Mark Gray34beb212020-09-16 05:19:35 -0400792 fl4->fl4_dport = dport;
793 fl4->fl4_sport = sport;
Pravin B Shelare305ac62015-08-26 23:46:52 -0700794
pravin shelar9b4437a2016-11-21 11:02:58 -0800795 tos = info->key.tos;
Sabrina Dubroca9e06e852020-07-06 17:18:08 +0200796 if ((tos == 1) && !geneve->cfg.collect_md) {
pravin shelar9b4437a2016-11-21 11:02:58 -0800797 tos = ip_tunnel_get_dsfield(ip_hdr(skb), skb);
798 use_cache = false;
Paolo Abeni468dfff2016-02-12 15:43:58 +0100799 }
pravin shelar9b4437a2016-11-21 11:02:58 -0800800 fl4->flowi4_tos = RT_TOS(tos);
Paolo Abeni468dfff2016-02-12 15:43:58 +0100801
pravin shelarc3ef5aa2016-11-21 11:02:59 -0800802 dst_cache = (struct dst_cache *)&info->dst_cache;
Paolo Abeni468dfff2016-02-12 15:43:58 +0100803 if (use_cache) {
804 rt = dst_cache_get_ip4(dst_cache, &fl4->saddr);
805 if (rt)
806 return rt;
Pravin B Shelare305ac62015-08-26 23:46:52 -0700807 }
Pravin B Shelare305ac62015-08-26 23:46:52 -0700808 rt = ip_route_output_key(geneve->net, fl4);
809 if (IS_ERR(rt)) {
810 netdev_dbg(dev, "no route to %pI4\n", &fl4->daddr);
Pravin B Shelarfc4099f2015-10-22 18:17:16 -0700811 return ERR_PTR(-ENETUNREACH);
Pravin B Shelare305ac62015-08-26 23:46:52 -0700812 }
813 if (rt->dst.dev == dev) { /* is this necessary? */
814 netdev_dbg(dev, "circular route to %pI4\n", &fl4->daddr);
Pravin B Shelare305ac62015-08-26 23:46:52 -0700815 ip_rt_put(rt);
Pravin B Shelarfc4099f2015-10-22 18:17:16 -0700816 return ERR_PTR(-ELOOP);
Pravin B Shelare305ac62015-08-26 23:46:52 -0700817 }
Paolo Abeni468dfff2016-02-12 15:43:58 +0100818 if (use_cache)
819 dst_cache_set_ip4(dst_cache, &rt->dst, fl4->saddr);
Pravin B Shelare305ac62015-08-26 23:46:52 -0700820 return rt;
821}
822
John W. Linville8ed66f02015-10-26 17:01:44 -0400823#if IS_ENABLED(CONFIG_IPV6)
824static struct dst_entry *geneve_get_v6_dst(struct sk_buff *skb,
825 struct net_device *dev,
Girish Moodalbail5b861f62017-07-20 22:44:20 -0700826 struct geneve_sock *gs6,
John W. Linville8ed66f02015-10-26 17:01:44 -0400827 struct flowi6 *fl6,
Mark Gray34beb212020-09-16 05:19:35 -0400828 const struct ip_tunnel_info *info,
829 __be16 dport, __be16 sport)
John W. Linville8ed66f02015-10-26 17:01:44 -0400830{
Daniel Borkmanndb3c6132016-03-04 15:15:07 +0100831 bool use_cache = ip_tunnel_dst_cache_usable(skb, info);
John W. Linville8ed66f02015-10-26 17:01:44 -0400832 struct geneve_dev *geneve = netdev_priv(dev);
John W. Linville8ed66f02015-10-26 17:01:44 -0400833 struct dst_entry *dst = NULL;
Paolo Abeni468dfff2016-02-12 15:43:58 +0100834 struct dst_cache *dst_cache;
John W. Linville3a56f862015-10-26 17:01:45 -0400835 __u8 prio;
John W. Linville8ed66f02015-10-26 17:01:44 -0400836
pravin shelarfceb9c32016-10-28 09:59:16 -0700837 if (!gs6)
838 return ERR_PTR(-EIO);
839
John W. Linville8ed66f02015-10-26 17:01:44 -0400840 memset(fl6, 0, sizeof(*fl6));
841 fl6->flowi6_mark = skb->mark;
842 fl6->flowi6_proto = IPPROTO_UDP;
pravin shelar9b4437a2016-11-21 11:02:58 -0800843 fl6->daddr = info->key.u.ipv6.dst;
844 fl6->saddr = info->key.u.ipv6.src;
Mark Gray34beb212020-09-16 05:19:35 -0400845 fl6->fl6_dport = dport;
846 fl6->fl6_sport = sport;
847
pravin shelar9b4437a2016-11-21 11:02:58 -0800848 prio = info->key.tos;
Sabrina Dubroca9e06e852020-07-06 17:18:08 +0200849 if ((prio == 1) && !geneve->cfg.collect_md) {
pravin shelar9b4437a2016-11-21 11:02:58 -0800850 prio = ip_tunnel_get_dsfield(ip_hdr(skb), skb);
851 use_cache = false;
Paolo Abeni468dfff2016-02-12 15:43:58 +0100852 }
853
pravin shelar9b4437a2016-11-21 11:02:58 -0800854 fl6->flowlabel = ip6_make_flowinfo(RT_TOS(prio),
855 info->key.label);
pravin shelarc3ef5aa2016-11-21 11:02:59 -0800856 dst_cache = (struct dst_cache *)&info->dst_cache;
Paolo Abeni468dfff2016-02-12 15:43:58 +0100857 if (use_cache) {
858 dst = dst_cache_get_ip6(dst_cache, &fl6->saddr);
859 if (dst)
860 return dst;
John W. Linville8ed66f02015-10-26 17:01:44 -0400861 }
Sabrina Dubroca6c8991f2019-12-04 15:35:53 +0100862 dst = ipv6_stub->ipv6_dst_lookup_flow(geneve->net, gs6->sock->sk, fl6,
863 NULL);
864 if (IS_ERR(dst)) {
John W. Linville8ed66f02015-10-26 17:01:44 -0400865 netdev_dbg(dev, "no route to %pI6\n", &fl6->daddr);
866 return ERR_PTR(-ENETUNREACH);
867 }
868 if (dst->dev == dev) { /* is this necessary? */
869 netdev_dbg(dev, "circular route to %pI6\n", &fl6->daddr);
870 dst_release(dst);
871 return ERR_PTR(-ELOOP);
872 }
873
Paolo Abeni468dfff2016-02-12 15:43:58 +0100874 if (use_cache)
875 dst_cache_set_ip6(dst_cache, dst, &fl6->saddr);
John W. Linville8ed66f02015-10-26 17:01:44 -0400876 return dst;
877}
878#endif
879
pravin shelar9b4437a2016-11-21 11:02:58 -0800880static int geneve_xmit_skb(struct sk_buff *skb, struct net_device *dev,
pravin shelarc3ef5aa2016-11-21 11:02:59 -0800881 struct geneve_dev *geneve,
882 const struct ip_tunnel_info *info)
Pravin B Shelare305ac62015-08-26 23:46:52 -0700883{
pravin shelar9b4437a2016-11-21 11:02:58 -0800884 bool xnet = !net_eq(geneve->net, dev_net(geneve->dev));
885 struct geneve_sock *gs4 = rcu_dereference(geneve->sock4);
886 const struct ip_tunnel_key *key = &info->key;
887 struct rtable *rt;
John W. Linville2d07dc72015-05-13 12:57:30 -0400888 struct flowi4 fl4;
John W. Linville8760ce52015-06-01 15:51:34 -0400889 __u8 tos, ttl;
Stefano Brivioa025fb52018-11-08 12:19:19 +0100890 __be16 df = 0;
Pravin B Shelare305ac62015-08-26 23:46:52 -0700891 __be16 sport;
pravin shelarbcceeec2016-11-21 11:03:00 -0800892 int err;
John W. Linville2d07dc72015-05-13 12:57:30 -0400893
Mark Gray34beb212020-09-16 05:19:35 -0400894 sport = udp_flow_src_port(geneve->net, skb, 1, USHRT_MAX, true);
895 rt = geneve_get_v4_rt(skb, dev, gs4, &fl4, info,
896 geneve->cfg.info.key.tp_dst, sport);
pravin shelar9b4437a2016-11-21 11:02:58 -0800897 if (IS_ERR(rt))
898 return PTR_ERR(rt);
Pravin B Shelar371bd102015-08-26 23:46:54 -0700899
Stefano Brivioc1a800e2020-08-04 07:53:45 +0200900 err = skb_tunnel_check_pmtu(skb, &rt->dst,
901 GENEVE_IPV4_HLEN + info->options_len,
902 netif_is_any_bridge_port(dev));
903 if (err < 0) {
904 dst_release(&rt->dst);
905 return err;
906 } else if (err) {
907 struct ip_tunnel_info *info;
908
909 info = skb_tunnel_info(skb);
910 if (info) {
911 info->key.u.ipv4.dst = fl4.saddr;
912 info->key.u.ipv4.src = fl4.daddr;
913 }
914
915 if (!pskb_may_pull(skb, ETH_HLEN)) {
916 dst_release(&rt->dst);
917 return -EINVAL;
918 }
919
920 skb->protocol = eth_type_trans(skb, geneve->dev);
921 netif_rx(skb);
922 dst_release(&rt->dst);
923 return -EMSGSIZE;
924 }
Xin Long52a589d2017-12-25 14:43:58 +0800925
Sabrina Dubroca9e06e852020-07-06 17:18:08 +0200926 if (geneve->cfg.collect_md) {
pravin shelar9b4437a2016-11-21 11:02:58 -0800927 tos = ip_tunnel_ecn_encap(key->tos, ip_hdr(skb), skb);
Pravin B Shelar371bd102015-08-26 23:46:54 -0700928 ttl = key->ttl;
Stefano Brivioa025fb52018-11-08 12:19:19 +0100929
930 df = key->tun_flags & TUNNEL_DONT_FRAGMENT ? htons(IP_DF) : 0;
Pravin B Shelare305ac62015-08-26 23:46:52 -0700931 } else {
pravin shelar9b4437a2016-11-21 11:02:58 -0800932 tos = ip_tunnel_ecn_encap(fl4.flowi4_tos, ip_hdr(skb), skb);
Sabrina Dubroca9e06e852020-07-06 17:18:08 +0200933 if (geneve->cfg.ttl_inherit)
Hangbin Liu52d0d4042018-09-12 10:04:21 +0800934 ttl = ip_tunnel_get_ttl(ip_hdr(skb), skb);
935 else
936 ttl = key->ttl;
937 ttl = ttl ? : ip4_dst_hoplimit(&rt->dst);
Stefano Brivioa025fb52018-11-08 12:19:19 +0100938
Sabrina Dubroca9e06e852020-07-06 17:18:08 +0200939 if (geneve->cfg.df == GENEVE_DF_SET) {
Stefano Brivioa025fb52018-11-08 12:19:19 +0100940 df = htons(IP_DF);
Sabrina Dubroca9e06e852020-07-06 17:18:08 +0200941 } else if (geneve->cfg.df == GENEVE_DF_INHERIT) {
Stefano Brivioa025fb52018-11-08 12:19:19 +0100942 struct ethhdr *eth = eth_hdr(skb);
943
944 if (ntohs(eth->h_proto) == ETH_P_IPV6) {
945 df = htons(IP_DF);
946 } else if (ntohs(eth->h_proto) == ETH_P_IP) {
947 struct iphdr *iph = ip_hdr(skb);
948
949 if (iph->frag_off & htons(IP_DF))
950 df = htons(IP_DF);
951 }
952 }
John W. Linville2d07dc72015-05-13 12:57:30 -0400953 }
pravin shelar9b4437a2016-11-21 11:02:58 -0800954
pravin shelarc3ef5aa2016-11-21 11:02:59 -0800955 err = geneve_build_skb(&rt->dst, skb, info, xnet, sizeof(struct iphdr));
pravin shelar9b4437a2016-11-21 11:02:58 -0800956 if (unlikely(err))
957 return err;
958
Pravin B Shelar039f5062015-12-24 14:34:54 -0800959 udp_tunnel_xmit_skb(rt, gs4->sock->sk, skb, fl4.saddr, fl4.daddr,
Sabrina Dubroca9e06e852020-07-06 17:18:08 +0200960 tos, ttl, df, sport, geneve->cfg.info.key.tp_dst,
Pravin B Shelar039f5062015-12-24 14:34:54 -0800961 !net_eq(geneve->net, dev_net(geneve->dev)),
pravin shelar9b4437a2016-11-21 11:02:58 -0800962 !(info->key.tun_flags & TUNNEL_CSUM));
963 return 0;
John W. Linville2d07dc72015-05-13 12:57:30 -0400964}
965
John W. Linville8ed66f02015-10-26 17:01:44 -0400966#if IS_ENABLED(CONFIG_IPV6)
pravin shelar9b4437a2016-11-21 11:02:58 -0800967static int geneve6_xmit_skb(struct sk_buff *skb, struct net_device *dev,
pravin shelarc3ef5aa2016-11-21 11:02:59 -0800968 struct geneve_dev *geneve,
969 const struct ip_tunnel_info *info)
John W. Linville8ed66f02015-10-26 17:01:44 -0400970{
pravin shelar9b4437a2016-11-21 11:02:58 -0800971 bool xnet = !net_eq(geneve->net, dev_net(geneve->dev));
972 struct geneve_sock *gs6 = rcu_dereference(geneve->sock6);
973 const struct ip_tunnel_key *key = &info->key;
John W. Linville8ed66f02015-10-26 17:01:44 -0400974 struct dst_entry *dst = NULL;
John W. Linville8ed66f02015-10-26 17:01:44 -0400975 struct flowi6 fl6;
John W. Linville3a56f862015-10-26 17:01:45 -0400976 __u8 prio, ttl;
John W. Linville8ed66f02015-10-26 17:01:44 -0400977 __be16 sport;
pravin shelarbcceeec2016-11-21 11:03:00 -0800978 int err;
John W. Linville8ed66f02015-10-26 17:01:44 -0400979
Mark Gray34beb212020-09-16 05:19:35 -0400980 sport = udp_flow_src_port(geneve->net, skb, 1, USHRT_MAX, true);
981 dst = geneve_get_v6_dst(skb, dev, gs6, &fl6, info,
982 geneve->cfg.info.key.tp_dst, sport);
pravin shelar9b4437a2016-11-21 11:02:58 -0800983 if (IS_ERR(dst))
984 return PTR_ERR(dst);
John W. Linville8ed66f02015-10-26 17:01:44 -0400985
Stefano Brivioc1a800e2020-08-04 07:53:45 +0200986 err = skb_tunnel_check_pmtu(skb, dst,
987 GENEVE_IPV6_HLEN + info->options_len,
988 netif_is_any_bridge_port(dev));
989 if (err < 0) {
990 dst_release(dst);
991 return err;
992 } else if (err) {
993 struct ip_tunnel_info *info = skb_tunnel_info(skb);
994
995 if (info) {
996 info->key.u.ipv6.dst = fl6.saddr;
997 info->key.u.ipv6.src = fl6.daddr;
998 }
999
1000 if (!pskb_may_pull(skb, ETH_HLEN)) {
1001 dst_release(dst);
1002 return -EINVAL;
1003 }
1004
1005 skb->protocol = eth_type_trans(skb, geneve->dev);
1006 netif_rx(skb);
1007 dst_release(dst);
1008 return -EMSGSIZE;
1009 }
Xin Long52a589d2017-12-25 14:43:58 +08001010
Sabrina Dubroca9e06e852020-07-06 17:18:08 +02001011 if (geneve->cfg.collect_md) {
pravin shelar9b4437a2016-11-21 11:02:58 -08001012 prio = ip_tunnel_ecn_encap(key->tos, ip_hdr(skb), skb);
John W. Linville8ed66f02015-10-26 17:01:44 -04001013 ttl = key->ttl;
1014 } else {
Daniel Borkmann95caf6f2016-03-18 18:37:58 +01001015 prio = ip_tunnel_ecn_encap(ip6_tclass(fl6.flowlabel),
pravin shelar9b4437a2016-11-21 11:02:58 -08001016 ip_hdr(skb), skb);
Sabrina Dubroca9e06e852020-07-06 17:18:08 +02001017 if (geneve->cfg.ttl_inherit)
Hangbin Liu52d0d4042018-09-12 10:04:21 +08001018 ttl = ip_tunnel_get_ttl(ip_hdr(skb), skb);
1019 else
1020 ttl = key->ttl;
1021 ttl = ttl ? : ip6_dst_hoplimit(dst);
John W. Linville8ed66f02015-10-26 17:01:44 -04001022 }
Haishuang Yan31ac1c12016-11-28 13:26:58 +08001023 err = geneve_build_skb(dst, skb, info, xnet, sizeof(struct ipv6hdr));
pravin shelar9b4437a2016-11-21 11:02:58 -08001024 if (unlikely(err))
1025 return err;
Daniel Borkmann8eb3b992016-03-09 03:00:04 +01001026
Pravin B Shelar039f5062015-12-24 14:34:54 -08001027 udp_tunnel6_xmit_skb(dst, gs6->sock->sk, skb, dev,
pravin shelar9b4437a2016-11-21 11:02:58 -08001028 &fl6.saddr, &fl6.daddr, prio, ttl,
Sabrina Dubroca9e06e852020-07-06 17:18:08 +02001029 info->key.label, sport, geneve->cfg.info.key.tp_dst,
pravin shelar9b4437a2016-11-21 11:02:58 -08001030 !(info->key.tun_flags & TUNNEL_CSUM));
1031 return 0;
John W. Linville8ed66f02015-10-26 17:01:44 -04001032}
1033#endif
1034
1035static netdev_tx_t geneve_xmit(struct sk_buff *skb, struct net_device *dev)
1036{
1037 struct geneve_dev *geneve = netdev_priv(dev);
1038 struct ip_tunnel_info *info = NULL;
pravin shelar9b4437a2016-11-21 11:02:58 -08001039 int err;
John W. Linville8ed66f02015-10-26 17:01:44 -04001040
Sabrina Dubroca9e06e852020-07-06 17:18:08 +02001041 if (geneve->cfg.collect_md) {
John W. Linville8ed66f02015-10-26 17:01:44 -04001042 info = skb_tunnel_info(skb);
pravin shelar9b4437a2016-11-21 11:02:58 -08001043 if (unlikely(!info || !(info->mode & IP_TUNNEL_INFO_TX))) {
pravin shelar9b4437a2016-11-21 11:02:58 -08001044 netdev_dbg(dev, "no tunnel metadata\n");
Jiri Benc9d149042020-06-03 11:12:14 +02001045 dev_kfree_skb(skb);
1046 dev->stats.tx_dropped++;
1047 return NETDEV_TX_OK;
pravin shelar9b4437a2016-11-21 11:02:58 -08001048 }
1049 } else {
Sabrina Dubroca9e06e852020-07-06 17:18:08 +02001050 info = &geneve->cfg.info;
pravin shelar9b4437a2016-11-21 11:02:58 -08001051 }
John W. Linville8ed66f02015-10-26 17:01:44 -04001052
Jakub Kicinskia717e3f2017-02-24 11:43:37 -08001053 rcu_read_lock();
John W. Linville8ed66f02015-10-26 17:01:44 -04001054#if IS_ENABLED(CONFIG_IPV6)
pravin shelar9b4437a2016-11-21 11:02:58 -08001055 if (info->mode & IP_TUNNEL_INFO_IPV6)
1056 err = geneve6_xmit_skb(skb, dev, geneve, info);
1057 else
John W. Linville8ed66f02015-10-26 17:01:44 -04001058#endif
pravin shelar9b4437a2016-11-21 11:02:58 -08001059 err = geneve_xmit_skb(skb, dev, geneve, info);
Jakub Kicinskia717e3f2017-02-24 11:43:37 -08001060 rcu_read_unlock();
pravin shelar9b4437a2016-11-21 11:02:58 -08001061
1062 if (likely(!err))
1063 return NETDEV_TX_OK;
Jiri Benc9d149042020-06-03 11:12:14 +02001064
Stefano Brivioc1a800e2020-08-04 07:53:45 +02001065 if (err != -EMSGSIZE)
1066 dev_kfree_skb(skb);
pravin shelar9b4437a2016-11-21 11:02:58 -08001067
1068 if (err == -ELOOP)
1069 dev->stats.collisions++;
1070 else if (err == -ENETUNREACH)
1071 dev->stats.tx_carrier_errors++;
1072
1073 dev->stats.tx_errors++;
1074 return NETDEV_TX_OK;
John W. Linville8ed66f02015-10-26 17:01:44 -04001075}
1076
Jarod Wilson91572082016-10-20 13:55:20 -04001077static int geneve_change_mtu(struct net_device *dev, int new_mtu)
David Wragg55e5bfb2016-02-10 00:05:57 +00001078{
Jarod Wilson91572082016-10-20 13:55:20 -04001079 if (new_mtu > dev->max_mtu)
1080 new_mtu = dev->max_mtu;
Alexey Kodanev321acc12018-04-19 15:42:31 +03001081 else if (new_mtu < dev->min_mtu)
1082 new_mtu = dev->min_mtu;
David Wraggaeee0e62016-02-18 17:43:29 +00001083
David Wragg55e5bfb2016-02-10 00:05:57 +00001084 dev->mtu = new_mtu;
1085 return 0;
1086}
1087
Pravin B Shelarfc4099f2015-10-22 18:17:16 -07001088static int geneve_fill_metadata_dst(struct net_device *dev, struct sk_buff *skb)
1089{
1090 struct ip_tunnel_info *info = skb_tunnel_info(skb);
1091 struct geneve_dev *geneve = netdev_priv(dev);
Mark Gray34beb212020-09-16 05:19:35 -04001092 __be16 sport;
Pravin B Shelarfc4099f2015-10-22 18:17:16 -07001093
John W. Linvilleb8812fa2015-10-27 09:49:00 -04001094 if (ip_tunnel_info_af(info) == AF_INET) {
pravin shelar9b4437a2016-11-21 11:02:58 -08001095 struct rtable *rt;
1096 struct flowi4 fl4;
1097
Mark Gray34beb212020-09-16 05:19:35 -04001098 struct geneve_sock *gs4 = rcu_dereference(geneve->sock4);
1099 sport = udp_flow_src_port(geneve->net, skb,
1100 1, USHRT_MAX, true);
1101
1102 rt = geneve_get_v4_rt(skb, dev, gs4, &fl4, info,
1103 geneve->cfg.info.key.tp_dst, sport);
John W. Linvilleb8812fa2015-10-27 09:49:00 -04001104 if (IS_ERR(rt))
1105 return PTR_ERR(rt);
1106
1107 ip_rt_put(rt);
1108 info->key.u.ipv4.src = fl4.saddr;
1109#if IS_ENABLED(CONFIG_IPV6)
1110 } else if (ip_tunnel_info_af(info) == AF_INET6) {
pravin shelar9b4437a2016-11-21 11:02:58 -08001111 struct dst_entry *dst;
1112 struct flowi6 fl6;
1113
Mark Gray34beb212020-09-16 05:19:35 -04001114 struct geneve_sock *gs6 = rcu_dereference(geneve->sock6);
1115 sport = udp_flow_src_port(geneve->net, skb,
1116 1, USHRT_MAX, true);
1117
1118 dst = geneve_get_v6_dst(skb, dev, gs6, &fl6, info,
1119 geneve->cfg.info.key.tp_dst, sport);
John W. Linvilleb8812fa2015-10-27 09:49:00 -04001120 if (IS_ERR(dst))
1121 return PTR_ERR(dst);
1122
1123 dst_release(dst);
1124 info->key.u.ipv6.src = fl6.saddr;
1125#endif
1126 } else {
Pravin B Shelarfc4099f2015-10-22 18:17:16 -07001127 return -EINVAL;
John W. Linvilleb8812fa2015-10-27 09:49:00 -04001128 }
Pravin B Shelarfc4099f2015-10-22 18:17:16 -07001129
Mark Gray34beb212020-09-16 05:19:35 -04001130 info->key.tp_src = sport;
Sabrina Dubroca9e06e852020-07-06 17:18:08 +02001131 info->key.tp_dst = geneve->cfg.info.key.tp_dst;
Pravin B Shelarfc4099f2015-10-22 18:17:16 -07001132 return 0;
1133}
1134
John W. Linville2d07dc72015-05-13 12:57:30 -04001135static const struct net_device_ops geneve_netdev_ops = {
1136 .ndo_init = geneve_init,
1137 .ndo_uninit = geneve_uninit,
1138 .ndo_open = geneve_open,
1139 .ndo_stop = geneve_stop,
1140 .ndo_start_xmit = geneve_xmit,
Heiner Kallweitb220a4a2020-11-07 21:52:06 +01001141 .ndo_get_stats64 = dev_get_tstats64,
David Wragg55e5bfb2016-02-10 00:05:57 +00001142 .ndo_change_mtu = geneve_change_mtu,
John W. Linville2d07dc72015-05-13 12:57:30 -04001143 .ndo_validate_addr = eth_validate_addr,
1144 .ndo_set_mac_address = eth_mac_addr,
Pravin B Shelarfc4099f2015-10-22 18:17:16 -07001145 .ndo_fill_metadata_dst = geneve_fill_metadata_dst,
John W. Linville2d07dc72015-05-13 12:57:30 -04001146};
1147
1148static void geneve_get_drvinfo(struct net_device *dev,
1149 struct ethtool_drvinfo *drvinfo)
1150{
1151 strlcpy(drvinfo->version, GENEVE_NETDEV_VER, sizeof(drvinfo->version));
1152 strlcpy(drvinfo->driver, "geneve", sizeof(drvinfo->driver));
1153}
1154
1155static const struct ethtool_ops geneve_ethtool_ops = {
1156 .get_drvinfo = geneve_get_drvinfo,
1157 .get_link = ethtool_op_get_link,
1158};
1159
1160/* Info for udev, that this is a virtual tunnel endpoint */
1161static struct device_type geneve_type = {
1162 .name = "geneve",
1163};
1164
Sabrina Dubrocae5de25d2016-07-11 13:12:28 +02001165/* Calls the ndo_udp_tunnel_add of the caller in order to
Singhai, Anjali05ca4022015-12-14 12:21:20 -08001166 * supply the listening GENEVE udp ports. Callers are expected
Sabrina Dubrocae5de25d2016-07-11 13:12:28 +02001167 * to implement the ndo_udp_tunnel_add.
Singhai, Anjali05ca4022015-12-14 12:21:20 -08001168 */
Sabrina Dubroca2d2b13f2017-07-21 12:49:32 +02001169static void geneve_offload_rx_ports(struct net_device *dev, bool push)
Singhai, Anjali05ca4022015-12-14 12:21:20 -08001170{
1171 struct net *net = dev_net(dev);
1172 struct geneve_net *gn = net_generic(net, geneve_net_id);
1173 struct geneve_sock *gs;
Hannes Frederic Sowa681e6832016-04-18 21:19:48 +02001174
Singhai, Anjali05ca4022015-12-14 12:21:20 -08001175 rcu_read_lock();
Sabrina Dubroca2d2b13f2017-07-21 12:49:32 +02001176 list_for_each_entry_rcu(gs, &gn->sock_list, list) {
1177 if (push) {
1178 udp_tunnel_push_rx_port(dev, gs->sock,
1179 UDP_TUNNEL_TYPE_GENEVE);
1180 } else {
1181 udp_tunnel_drop_rx_port(dev, gs->sock,
1182 UDP_TUNNEL_TYPE_GENEVE);
1183 }
1184 }
Singhai, Anjali05ca4022015-12-14 12:21:20 -08001185 rcu_read_unlock();
1186}
Singhai, Anjali05ca4022015-12-14 12:21:20 -08001187
John W. Linville2d07dc72015-05-13 12:57:30 -04001188/* Initialize the device structure. */
1189static void geneve_setup(struct net_device *dev)
1190{
1191 ether_setup(dev);
1192
1193 dev->netdev_ops = &geneve_netdev_ops;
1194 dev->ethtool_ops = &geneve_ethtool_ops;
David S. Millercf124db2017-05-08 12:52:56 -04001195 dev->needs_free_netdev = true;
John W. Linville2d07dc72015-05-13 12:57:30 -04001196
1197 SET_NETDEV_DEVTYPE(dev, &geneve_type);
1198
John W. Linville2d07dc72015-05-13 12:57:30 -04001199 dev->features |= NETIF_F_LLTX;
1200 dev->features |= NETIF_F_SG | NETIF_F_HW_CSUM;
1201 dev->features |= NETIF_F_RXCSUM;
1202 dev->features |= NETIF_F_GSO_SOFTWARE;
1203
John W. Linville2d07dc72015-05-13 12:57:30 -04001204 dev->hw_features |= NETIF_F_SG | NETIF_F_HW_CSUM | NETIF_F_RXCSUM;
1205 dev->hw_features |= NETIF_F_GSO_SOFTWARE;
John W. Linville2d07dc72015-05-13 12:57:30 -04001206
Jarod Wilson91572082016-10-20 13:55:20 -04001207 /* MTU range: 68 - (something less than 65535) */
1208 dev->min_mtu = ETH_MIN_MTU;
1209 /* The max_mtu calculation does not take account of GENEVE
1210 * options, to avoid excluding potentially valid
1211 * configurations. This will be further reduced by IPvX hdr size.
1212 */
1213 dev->max_mtu = IP_MAX_MTU - GENEVE_BASE_HLEN - dev->hard_header_len;
1214
John W. Linville2d07dc72015-05-13 12:57:30 -04001215 netif_keep_dst(dev);
Jiri Bencfc41cdb2016-02-17 15:31:35 +01001216 dev->priv_flags &= ~IFF_TX_SKB_SHARING;
Phil Suttered961ac2015-08-18 10:30:31 +02001217 dev->priv_flags |= IFF_LIVE_ADDR_CHANGE | IFF_NO_QUEUE;
Pravin B Shelar87cd3dc2015-08-26 23:46:48 -07001218 eth_hw_addr_random(dev);
John W. Linville2d07dc72015-05-13 12:57:30 -04001219}
1220
1221static const struct nla_policy geneve_policy[IFLA_GENEVE_MAX + 1] = {
1222 [IFLA_GENEVE_ID] = { .type = NLA_U32 },
Pankaj Bharadiyac5936422019-12-09 10:31:43 -08001223 [IFLA_GENEVE_REMOTE] = { .len = sizeof_field(struct iphdr, daddr) },
John W. Linville8ed66f02015-10-26 17:01:44 -04001224 [IFLA_GENEVE_REMOTE6] = { .len = sizeof(struct in6_addr) },
John W. Linville8760ce52015-06-01 15:51:34 -04001225 [IFLA_GENEVE_TTL] = { .type = NLA_U8 },
John W. Linvilled8951122015-06-01 15:51:35 -04001226 [IFLA_GENEVE_TOS] = { .type = NLA_U8 },
Daniel Borkmann8eb3b992016-03-09 03:00:04 +01001227 [IFLA_GENEVE_LABEL] = { .type = NLA_U32 },
Pravin B Shelarcd7918b2015-08-26 23:46:51 -07001228 [IFLA_GENEVE_PORT] = { .type = NLA_U16 },
Pravin B Shelare305ac62015-08-26 23:46:52 -07001229 [IFLA_GENEVE_COLLECT_METADATA] = { .type = NLA_FLAG },
Tom Herbertabe492b2015-12-10 12:37:45 -08001230 [IFLA_GENEVE_UDP_CSUM] = { .type = NLA_U8 },
1231 [IFLA_GENEVE_UDP_ZERO_CSUM6_TX] = { .type = NLA_U8 },
1232 [IFLA_GENEVE_UDP_ZERO_CSUM6_RX] = { .type = NLA_U8 },
Hangbin Liu52d0d4042018-09-12 10:04:21 +08001233 [IFLA_GENEVE_TTL_INHERIT] = { .type = NLA_U8 },
Stefano Brivioa025fb52018-11-08 12:19:19 +01001234 [IFLA_GENEVE_DF] = { .type = NLA_U8 },
John W. Linville2d07dc72015-05-13 12:57:30 -04001235};
1236
Matthias Schiffera8b8a8892017-06-25 23:56:01 +02001237static int geneve_validate(struct nlattr *tb[], struct nlattr *data[],
1238 struct netlink_ext_ack *extack)
John W. Linville2d07dc72015-05-13 12:57:30 -04001239{
1240 if (tb[IFLA_ADDRESS]) {
Girish Moodalbailc5ebc442017-08-09 01:09:28 -07001241 if (nla_len(tb[IFLA_ADDRESS]) != ETH_ALEN) {
1242 NL_SET_ERR_MSG_ATTR(extack, tb[IFLA_ADDRESS],
1243 "Provided link layer address is not Ethernet");
John W. Linville2d07dc72015-05-13 12:57:30 -04001244 return -EINVAL;
Girish Moodalbailc5ebc442017-08-09 01:09:28 -07001245 }
John W. Linville2d07dc72015-05-13 12:57:30 -04001246
Girish Moodalbailc5ebc442017-08-09 01:09:28 -07001247 if (!is_valid_ether_addr(nla_data(tb[IFLA_ADDRESS]))) {
1248 NL_SET_ERR_MSG_ATTR(extack, tb[IFLA_ADDRESS],
1249 "Provided Ethernet address is not unicast");
John W. Linville2d07dc72015-05-13 12:57:30 -04001250 return -EADDRNOTAVAIL;
Girish Moodalbailc5ebc442017-08-09 01:09:28 -07001251 }
John W. Linville2d07dc72015-05-13 12:57:30 -04001252 }
1253
Girish Moodalbailc5ebc442017-08-09 01:09:28 -07001254 if (!data) {
1255 NL_SET_ERR_MSG(extack,
1256 "Not enough attributes provided to perform the operation");
John W. Linville2d07dc72015-05-13 12:57:30 -04001257 return -EINVAL;
Girish Moodalbailc5ebc442017-08-09 01:09:28 -07001258 }
John W. Linville2d07dc72015-05-13 12:57:30 -04001259
1260 if (data[IFLA_GENEVE_ID]) {
1261 __u32 vni = nla_get_u32(data[IFLA_GENEVE_ID]);
1262
Girish Moodalbailc5ebc442017-08-09 01:09:28 -07001263 if (vni >= GENEVE_N_VID) {
1264 NL_SET_ERR_MSG_ATTR(extack, data[IFLA_GENEVE_ID],
1265 "Geneve ID must be lower than 16777216");
John W. Linville2d07dc72015-05-13 12:57:30 -04001266 return -ERANGE;
Girish Moodalbailc5ebc442017-08-09 01:09:28 -07001267 }
John W. Linville2d07dc72015-05-13 12:57:30 -04001268 }
1269
Stefano Brivioa025fb52018-11-08 12:19:19 +01001270 if (data[IFLA_GENEVE_DF]) {
1271 enum ifla_geneve_df df = nla_get_u8(data[IFLA_GENEVE_DF]);
1272
1273 if (df < 0 || df > GENEVE_DF_MAX) {
Sabrina Dubroca9a7b5b52020-04-22 17:29:51 +02001274 NL_SET_ERR_MSG_ATTR(extack, data[IFLA_GENEVE_DF],
Stefano Brivioa025fb52018-11-08 12:19:19 +01001275 "Invalid DF attribute");
1276 return -EINVAL;
1277 }
1278 }
1279
John W. Linville2d07dc72015-05-13 12:57:30 -04001280 return 0;
1281}
1282
Pravin B Shelar371bd102015-08-26 23:46:54 -07001283static struct geneve_dev *geneve_find_dev(struct geneve_net *gn,
pravin shelar9b4437a2016-11-21 11:02:58 -08001284 const struct ip_tunnel_info *info,
Pravin B Shelar371bd102015-08-26 23:46:54 -07001285 bool *tun_on_same_port,
1286 bool *tun_collect_md)
1287{
pravin shelar9b4437a2016-11-21 11:02:58 -08001288 struct geneve_dev *geneve, *t = NULL;
Pravin B Shelar371bd102015-08-26 23:46:54 -07001289
1290 *tun_on_same_port = false;
1291 *tun_collect_md = false;
Pravin B Shelar371bd102015-08-26 23:46:54 -07001292 list_for_each_entry(geneve, &gn->geneve_list, next) {
Sabrina Dubroca9e06e852020-07-06 17:18:08 +02001293 if (info->key.tp_dst == geneve->cfg.info.key.tp_dst) {
1294 *tun_collect_md = geneve->cfg.collect_md;
Pravin B Shelar371bd102015-08-26 23:46:54 -07001295 *tun_on_same_port = true;
1296 }
Sabrina Dubroca9e06e852020-07-06 17:18:08 +02001297 if (info->key.tun_id == geneve->cfg.info.key.tun_id &&
1298 info->key.tp_dst == geneve->cfg.info.key.tp_dst &&
1299 !memcmp(&info->key.u, &geneve->cfg.info.key.u, sizeof(info->key.u)))
Pravin B Shelar371bd102015-08-26 23:46:54 -07001300 t = geneve;
1301 }
1302 return t;
1303}
1304
pravin shelar9b4437a2016-11-21 11:02:58 -08001305static bool is_tnl_info_zero(const struct ip_tunnel_info *info)
1306{
Stefano Brivio3fa5f112017-10-20 13:31:36 +02001307 return !(info->key.tun_id || info->key.tun_flags || info->key.tos ||
1308 info->key.ttl || info->key.label || info->key.tp_src ||
1309 memchr_inv(&info->key.u, 0, sizeof(info->key.u)));
pravin shelar9b4437a2016-11-21 11:02:58 -08001310}
1311
Girish Moodalbail5b861f62017-07-20 22:44:20 -07001312static bool geneve_dst_addr_equal(struct ip_tunnel_info *a,
1313 struct ip_tunnel_info *b)
1314{
1315 if (ip_tunnel_info_af(a) == AF_INET)
1316 return a->key.u.ipv4.dst == b->key.u.ipv4.dst;
1317 else
1318 return ipv6_addr_equal(&a->key.u.ipv6.dst, &b->key.u.ipv6.dst);
1319}
1320
Pravin B Shelare305ac62015-08-26 23:46:52 -07001321static int geneve_configure(struct net *net, struct net_device *dev,
Girish Moodalbailc5ebc442017-08-09 01:09:28 -07001322 struct netlink_ext_ack *extack,
Sabrina Dubroca9e06e852020-07-06 17:18:08 +02001323 const struct geneve_config *cfg)
John W. Linville2d07dc72015-05-13 12:57:30 -04001324{
1325 struct geneve_net *gn = net_generic(net, geneve_net_id);
Pravin B Shelar371bd102015-08-26 23:46:54 -07001326 struct geneve_dev *t, *geneve = netdev_priv(dev);
Sabrina Dubroca9e06e852020-07-06 17:18:08 +02001327 const struct ip_tunnel_info *info = &cfg->info;
Pravin B Shelar371bd102015-08-26 23:46:54 -07001328 bool tun_collect_md, tun_on_same_port;
Paolo Abeni184fc8b2015-12-23 16:54:27 +01001329 int err, encap_len;
John W. Linville2d07dc72015-05-13 12:57:30 -04001330
Sabrina Dubroca9e06e852020-07-06 17:18:08 +02001331 if (cfg->collect_md && !is_tnl_info_zero(info)) {
Girish Moodalbailc5ebc442017-08-09 01:09:28 -07001332 NL_SET_ERR_MSG(extack,
1333 "Device is externally controlled, so attributes (VNI, Port, and so on) must not be specified");
John W. Linville8ed66f02015-10-26 17:01:44 -04001334 return -EINVAL;
Girish Moodalbailc5ebc442017-08-09 01:09:28 -07001335 }
John W. Linville2d07dc72015-05-13 12:57:30 -04001336
1337 geneve->net = net;
1338 geneve->dev = dev;
1339
pravin shelar9b4437a2016-11-21 11:02:58 -08001340 t = geneve_find_dev(gn, info, &tun_on_same_port, &tun_collect_md);
Pravin B Shelar371bd102015-08-26 23:46:54 -07001341 if (t)
1342 return -EBUSY;
1343
Paolo Abeni184fc8b2015-12-23 16:54:27 +01001344 /* make enough headroom for basic scenario */
1345 encap_len = GENEVE_BASE_HLEN + ETH_HLEN;
Sabrina Dubroca9e06e852020-07-06 17:18:08 +02001346 if (!cfg->collect_md && ip_tunnel_info_af(info) == AF_INET) {
Paolo Abeni184fc8b2015-12-23 16:54:27 +01001347 encap_len += sizeof(struct iphdr);
Jarod Wilson91572082016-10-20 13:55:20 -04001348 dev->max_mtu -= sizeof(struct iphdr);
1349 } else {
Paolo Abeni184fc8b2015-12-23 16:54:27 +01001350 encap_len += sizeof(struct ipv6hdr);
Jarod Wilson91572082016-10-20 13:55:20 -04001351 dev->max_mtu -= sizeof(struct ipv6hdr);
1352 }
Paolo Abeni184fc8b2015-12-23 16:54:27 +01001353 dev->needed_headroom = encap_len + ETH_HLEN;
1354
Sabrina Dubroca9e06e852020-07-06 17:18:08 +02001355 if (cfg->collect_md) {
Girish Moodalbailc5ebc442017-08-09 01:09:28 -07001356 if (tun_on_same_port) {
1357 NL_SET_ERR_MSG(extack,
1358 "There can be only one externally controlled device on a destination port");
Pravin B Shelar371bd102015-08-26 23:46:54 -07001359 return -EPERM;
Girish Moodalbailc5ebc442017-08-09 01:09:28 -07001360 }
Pravin B Shelar371bd102015-08-26 23:46:54 -07001361 } else {
Girish Moodalbailc5ebc442017-08-09 01:09:28 -07001362 if (tun_collect_md) {
1363 NL_SET_ERR_MSG(extack,
1364 "There already exists an externally controlled device on this destination port");
Pravin B Shelar371bd102015-08-26 23:46:54 -07001365 return -EPERM;
Girish Moodalbailc5ebc442017-08-09 01:09:28 -07001366 }
Pravin B Shelar371bd102015-08-26 23:46:54 -07001367 }
1368
Sabrina Dubroca9e06e852020-07-06 17:18:08 +02001369 dst_cache_reset(&geneve->cfg.info.dst_cache);
1370 memcpy(&geneve->cfg, cfg, sizeof(*cfg));
Paolo Abeni468dfff2016-02-12 15:43:58 +01001371
John W. Linville2d07dc72015-05-13 12:57:30 -04001372 err = register_netdevice(dev);
1373 if (err)
1374 return err;
1375
1376 list_add(&geneve->next, &gn->geneve_list);
John W. Linville2d07dc72015-05-13 12:57:30 -04001377 return 0;
1378}
1379
pravin shelar9b4437a2016-11-21 11:02:58 -08001380static void init_tnl_info(struct ip_tunnel_info *info, __u16 dst_port)
1381{
1382 memset(info, 0, sizeof(*info));
1383 info->key.tp_dst = htons(dst_port);
1384}
1385
Girish Moodalbailc5ebc442017-08-09 01:09:28 -07001386static int geneve_nl2info(struct nlattr *tb[], struct nlattr *data[],
1387 struct netlink_ext_ack *extack,
Sabrina Dubroca9e06e852020-07-06 17:18:08 +02001388 struct geneve_config *cfg, bool changelink)
Pravin B Shelare305ac62015-08-26 23:46:52 -07001389{
Sabrina Dubroca9e06e852020-07-06 17:18:08 +02001390 struct ip_tunnel_info *info = &cfg->info;
Girish Moodalbailc5ebc442017-08-09 01:09:28 -07001391 int attrtype;
1392
1393 if (data[IFLA_GENEVE_REMOTE] && data[IFLA_GENEVE_REMOTE6]) {
1394 NL_SET_ERR_MSG(extack,
1395 "Cannot specify both IPv4 and IPv6 Remote addresses");
John W. Linville8ed66f02015-10-26 17:01:44 -04001396 return -EINVAL;
Girish Moodalbailc5ebc442017-08-09 01:09:28 -07001397 }
John W. Linville8ed66f02015-10-26 17:01:44 -04001398
1399 if (data[IFLA_GENEVE_REMOTE]) {
Girish Moodalbailc5ebc442017-08-09 01:09:28 -07001400 if (changelink && (ip_tunnel_info_af(info) == AF_INET6)) {
1401 attrtype = IFLA_GENEVE_REMOTE;
1402 goto change_notsup;
1403 }
Girish Moodalbail5b861f62017-07-20 22:44:20 -07001404
1405 info->key.u.ipv4.dst =
John W. Linville8ed66f02015-10-26 17:01:44 -04001406 nla_get_in_addr(data[IFLA_GENEVE_REMOTE]);
John W. Linville8ed66f02015-10-26 17:01:44 -04001407
Dave Taht842841e2019-09-02 16:29:36 -07001408 if (ipv4_is_multicast(info->key.u.ipv4.dst)) {
Girish Moodalbailc5ebc442017-08-09 01:09:28 -07001409 NL_SET_ERR_MSG_ATTR(extack, data[IFLA_GENEVE_REMOTE],
1410 "Remote IPv4 address cannot be Multicast");
John W. Linville8ed66f02015-10-26 17:01:44 -04001411 return -EINVAL;
1412 }
1413 }
1414
pravin shelar9b4437a2016-11-21 11:02:58 -08001415 if (data[IFLA_GENEVE_REMOTE6]) {
Alexey Kodanev4c52a882018-04-19 15:42:29 +03001416#if IS_ENABLED(CONFIG_IPV6)
Girish Moodalbailc5ebc442017-08-09 01:09:28 -07001417 if (changelink && (ip_tunnel_info_af(info) == AF_INET)) {
1418 attrtype = IFLA_GENEVE_REMOTE6;
1419 goto change_notsup;
1420 }
Girish Moodalbail5b861f62017-07-20 22:44:20 -07001421
1422 info->mode = IP_TUNNEL_INFO_IPV6;
1423 info->key.u.ipv6.dst =
pravin shelar9b4437a2016-11-21 11:02:58 -08001424 nla_get_in6_addr(data[IFLA_GENEVE_REMOTE6]);
Pravin B Shelare305ac62015-08-26 23:46:52 -07001425
Girish Moodalbail5b861f62017-07-20 22:44:20 -07001426 if (ipv6_addr_type(&info->key.u.ipv6.dst) &
pravin shelar9b4437a2016-11-21 11:02:58 -08001427 IPV6_ADDR_LINKLOCAL) {
Girish Moodalbailc5ebc442017-08-09 01:09:28 -07001428 NL_SET_ERR_MSG_ATTR(extack, data[IFLA_GENEVE_REMOTE6],
1429 "Remote IPv6 address cannot be link-local");
pravin shelar9b4437a2016-11-21 11:02:58 -08001430 return -EINVAL;
1431 }
Girish Moodalbail5b861f62017-07-20 22:44:20 -07001432 if (ipv6_addr_is_multicast(&info->key.u.ipv6.dst)) {
Girish Moodalbailc5ebc442017-08-09 01:09:28 -07001433 NL_SET_ERR_MSG_ATTR(extack, data[IFLA_GENEVE_REMOTE6],
1434 "Remote IPv6 address cannot be Multicast");
pravin shelar9b4437a2016-11-21 11:02:58 -08001435 return -EINVAL;
1436 }
Girish Moodalbail5b861f62017-07-20 22:44:20 -07001437 info->key.tun_flags |= TUNNEL_CSUM;
Sabrina Dubroca9e06e852020-07-06 17:18:08 +02001438 cfg->use_udp6_rx_checksums = true;
pravin shelar9b4437a2016-11-21 11:02:58 -08001439#else
Girish Moodalbailc5ebc442017-08-09 01:09:28 -07001440 NL_SET_ERR_MSG_ATTR(extack, data[IFLA_GENEVE_REMOTE6],
1441 "IPv6 support not enabled in the kernel");
pravin shelar9b4437a2016-11-21 11:02:58 -08001442 return -EPFNOSUPPORT;
1443#endif
1444 }
1445
1446 if (data[IFLA_GENEVE_ID]) {
1447 __u32 vni;
1448 __u8 tvni[3];
Girish Moodalbail5b861f62017-07-20 22:44:20 -07001449 __be64 tunid;
pravin shelar9b4437a2016-11-21 11:02:58 -08001450
1451 vni = nla_get_u32(data[IFLA_GENEVE_ID]);
1452 tvni[0] = (vni & 0x00ff0000) >> 16;
1453 tvni[1] = (vni & 0x0000ff00) >> 8;
1454 tvni[2] = vni & 0x000000ff;
1455
Girish Moodalbail5b861f62017-07-20 22:44:20 -07001456 tunid = vni_to_tunnel_id(tvni);
Girish Moodalbailc5ebc442017-08-09 01:09:28 -07001457 if (changelink && (tunid != info->key.tun_id)) {
1458 attrtype = IFLA_GENEVE_ID;
1459 goto change_notsup;
1460 }
Girish Moodalbail5b861f62017-07-20 22:44:20 -07001461 info->key.tun_id = tunid;
pravin shelar9b4437a2016-11-21 11:02:58 -08001462 }
Girish Moodalbail5b861f62017-07-20 22:44:20 -07001463
Hangbin Liua97d97b2018-09-29 23:06:29 +08001464 if (data[IFLA_GENEVE_TTL_INHERIT]) {
1465 if (nla_get_u8(data[IFLA_GENEVE_TTL_INHERIT]))
Sabrina Dubroca9e06e852020-07-06 17:18:08 +02001466 cfg->ttl_inherit = true;
Hangbin Liua97d97b2018-09-29 23:06:29 +08001467 else
Sabrina Dubroca9e06e852020-07-06 17:18:08 +02001468 cfg->ttl_inherit = false;
Hangbin Liua97d97b2018-09-29 23:06:29 +08001469 } else if (data[IFLA_GENEVE_TTL]) {
Girish Moodalbail5b861f62017-07-20 22:44:20 -07001470 info->key.ttl = nla_get_u8(data[IFLA_GENEVE_TTL]);
Sabrina Dubroca9e06e852020-07-06 17:18:08 +02001471 cfg->ttl_inherit = false;
Hangbin Liua97d97b2018-09-29 23:06:29 +08001472 }
Hangbin Liu52d0d4042018-09-12 10:04:21 +08001473
Pravin B Shelare305ac62015-08-26 23:46:52 -07001474 if (data[IFLA_GENEVE_TOS])
Girish Moodalbail5b861f62017-07-20 22:44:20 -07001475 info->key.tos = nla_get_u8(data[IFLA_GENEVE_TOS]);
Pravin B Shelare305ac62015-08-26 23:46:52 -07001476
Stefano Brivioa025fb52018-11-08 12:19:19 +01001477 if (data[IFLA_GENEVE_DF])
Sabrina Dubroca9e06e852020-07-06 17:18:08 +02001478 cfg->df = nla_get_u8(data[IFLA_GENEVE_DF]);
Stefano Brivioa025fb52018-11-08 12:19:19 +01001479
pravin shelar9b4437a2016-11-21 11:02:58 -08001480 if (data[IFLA_GENEVE_LABEL]) {
Girish Moodalbail5b861f62017-07-20 22:44:20 -07001481 info->key.label = nla_get_be32(data[IFLA_GENEVE_LABEL]) &
pravin shelar9b4437a2016-11-21 11:02:58 -08001482 IPV6_FLOWLABEL_MASK;
Girish Moodalbailc5ebc442017-08-09 01:09:28 -07001483 if (info->key.label && (!(info->mode & IP_TUNNEL_INFO_IPV6))) {
1484 NL_SET_ERR_MSG_ATTR(extack, data[IFLA_GENEVE_LABEL],
1485 "Label attribute only applies for IPv6 Geneve devices");
pravin shelar9b4437a2016-11-21 11:02:58 -08001486 return -EINVAL;
Girish Moodalbailc5ebc442017-08-09 01:09:28 -07001487 }
pravin shelar9b4437a2016-11-21 11:02:58 -08001488 }
Daniel Borkmann8eb3b992016-03-09 03:00:04 +01001489
Girish Moodalbail5b861f62017-07-20 22:44:20 -07001490 if (data[IFLA_GENEVE_PORT]) {
Girish Moodalbailc5ebc442017-08-09 01:09:28 -07001491 if (changelink) {
1492 attrtype = IFLA_GENEVE_PORT;
1493 goto change_notsup;
1494 }
Girish Moodalbail5b861f62017-07-20 22:44:20 -07001495 info->key.tp_dst = nla_get_be16(data[IFLA_GENEVE_PORT]);
1496 }
Pravin B Shelare305ac62015-08-26 23:46:52 -07001497
Girish Moodalbail5b861f62017-07-20 22:44:20 -07001498 if (data[IFLA_GENEVE_COLLECT_METADATA]) {
Girish Moodalbailc5ebc442017-08-09 01:09:28 -07001499 if (changelink) {
1500 attrtype = IFLA_GENEVE_COLLECT_METADATA;
1501 goto change_notsup;
1502 }
Sabrina Dubroca9e06e852020-07-06 17:18:08 +02001503 cfg->collect_md = true;
Girish Moodalbail5b861f62017-07-20 22:44:20 -07001504 }
Pravin B Shelare305ac62015-08-26 23:46:52 -07001505
Girish Moodalbail5b861f62017-07-20 22:44:20 -07001506 if (data[IFLA_GENEVE_UDP_CSUM]) {
Girish Moodalbailc5ebc442017-08-09 01:09:28 -07001507 if (changelink) {
1508 attrtype = IFLA_GENEVE_UDP_CSUM;
1509 goto change_notsup;
1510 }
Girish Moodalbail5b861f62017-07-20 22:44:20 -07001511 if (nla_get_u8(data[IFLA_GENEVE_UDP_CSUM]))
1512 info->key.tun_flags |= TUNNEL_CSUM;
1513 }
Tom Herbertabe492b2015-12-10 12:37:45 -08001514
Girish Moodalbail5b861f62017-07-20 22:44:20 -07001515 if (data[IFLA_GENEVE_UDP_ZERO_CSUM6_TX]) {
Hangbin Liuf9094b72017-11-23 11:27:24 +08001516#if IS_ENABLED(CONFIG_IPV6)
Girish Moodalbailc5ebc442017-08-09 01:09:28 -07001517 if (changelink) {
1518 attrtype = IFLA_GENEVE_UDP_ZERO_CSUM6_TX;
1519 goto change_notsup;
1520 }
Girish Moodalbail5b861f62017-07-20 22:44:20 -07001521 if (nla_get_u8(data[IFLA_GENEVE_UDP_ZERO_CSUM6_TX]))
1522 info->key.tun_flags &= ~TUNNEL_CSUM;
Hangbin Liuf9094b72017-11-23 11:27:24 +08001523#else
1524 NL_SET_ERR_MSG_ATTR(extack, data[IFLA_GENEVE_UDP_ZERO_CSUM6_TX],
1525 "IPv6 support not enabled in the kernel");
1526 return -EPFNOSUPPORT;
1527#endif
Girish Moodalbail5b861f62017-07-20 22:44:20 -07001528 }
Tom Herbertabe492b2015-12-10 12:37:45 -08001529
Girish Moodalbail5b861f62017-07-20 22:44:20 -07001530 if (data[IFLA_GENEVE_UDP_ZERO_CSUM6_RX]) {
Hangbin Liuf9094b72017-11-23 11:27:24 +08001531#if IS_ENABLED(CONFIG_IPV6)
Girish Moodalbailc5ebc442017-08-09 01:09:28 -07001532 if (changelink) {
1533 attrtype = IFLA_GENEVE_UDP_ZERO_CSUM6_RX;
1534 goto change_notsup;
1535 }
Girish Moodalbail5b861f62017-07-20 22:44:20 -07001536 if (nla_get_u8(data[IFLA_GENEVE_UDP_ZERO_CSUM6_RX]))
Sabrina Dubroca9e06e852020-07-06 17:18:08 +02001537 cfg->use_udp6_rx_checksums = false;
Hangbin Liuf9094b72017-11-23 11:27:24 +08001538#else
1539 NL_SET_ERR_MSG_ATTR(extack, data[IFLA_GENEVE_UDP_ZERO_CSUM6_RX],
1540 "IPv6 support not enabled in the kernel");
1541 return -EPFNOSUPPORT;
1542#endif
Girish Moodalbail5b861f62017-07-20 22:44:20 -07001543 }
1544
1545 return 0;
Girish Moodalbailc5ebc442017-08-09 01:09:28 -07001546change_notsup:
1547 NL_SET_ERR_MSG_ATTR(extack, data[attrtype],
1548 "Changing VNI, Port, endpoint IP address family, external, and UDP checksum attributes are not supported");
1549 return -EOPNOTSUPP;
Girish Moodalbail5b861f62017-07-20 22:44:20 -07001550}
1551
Alexey Kodanevc40e89f2018-04-19 15:42:32 +03001552static void geneve_link_config(struct net_device *dev,
1553 struct ip_tunnel_info *info, struct nlattr *tb[])
1554{
1555 struct geneve_dev *geneve = netdev_priv(dev);
1556 int ldev_mtu = 0;
1557
1558 if (tb[IFLA_MTU]) {
1559 geneve_change_mtu(dev, nla_get_u32(tb[IFLA_MTU]));
1560 return;
1561 }
1562
1563 switch (ip_tunnel_info_af(info)) {
1564 case AF_INET: {
1565 struct flowi4 fl4 = { .daddr = info->key.u.ipv4.dst };
1566 struct rtable *rt = ip_route_output_key(geneve->net, &fl4);
1567
1568 if (!IS_ERR(rt) && rt->dst.dev) {
1569 ldev_mtu = rt->dst.dev->mtu - GENEVE_IPV4_HLEN;
1570 ip_rt_put(rt);
1571 }
1572 break;
1573 }
1574#if IS_ENABLED(CONFIG_IPV6)
1575 case AF_INET6: {
Hangbin Liuc0a47e42019-02-07 18:36:10 +08001576 struct rt6_info *rt;
1577
1578 if (!__in6_dev_get(dev))
1579 break;
1580
1581 rt = rt6_lookup(geneve->net, &info->key.u.ipv6.dst, NULL, 0,
1582 NULL, 0);
Alexey Kodanevc40e89f2018-04-19 15:42:32 +03001583
1584 if (rt && rt->dst.dev)
1585 ldev_mtu = rt->dst.dev->mtu - GENEVE_IPV6_HLEN;
1586 ip6_rt_put(rt);
1587 break;
1588 }
1589#endif
1590 }
1591
1592 if (ldev_mtu <= 0)
1593 return;
1594
1595 geneve_change_mtu(dev, ldev_mtu - info->options_len);
1596}
1597
Girish Moodalbail5b861f62017-07-20 22:44:20 -07001598static int geneve_newlink(struct net *net, struct net_device *dev,
1599 struct nlattr *tb[], struct nlattr *data[],
1600 struct netlink_ext_ack *extack)
1601{
Sabrina Dubroca9e06e852020-07-06 17:18:08 +02001602 struct geneve_config cfg = {
1603 .df = GENEVE_DF_UNSET,
1604 .use_udp6_rx_checksums = false,
1605 .ttl_inherit = false,
1606 .collect_md = false,
1607 };
Girish Moodalbail5b861f62017-07-20 22:44:20 -07001608 int err;
1609
Sabrina Dubroca9e06e852020-07-06 17:18:08 +02001610 init_tnl_info(&cfg.info, GENEVE_UDP_PORT);
1611 err = geneve_nl2info(tb, data, extack, &cfg, false);
Girish Moodalbail5b861f62017-07-20 22:44:20 -07001612 if (err)
1613 return err;
Tom Herbertabe492b2015-12-10 12:37:45 -08001614
Sabrina Dubroca9e06e852020-07-06 17:18:08 +02001615 err = geneve_configure(net, dev, extack, &cfg);
Alexey Kodanevc40e89f2018-04-19 15:42:32 +03001616 if (err)
1617 return err;
1618
Sabrina Dubroca9e06e852020-07-06 17:18:08 +02001619 geneve_link_config(dev, &cfg.info, tb);
Alexey Kodanevc40e89f2018-04-19 15:42:32 +03001620
1621 return 0;
Pravin B Shelare305ac62015-08-26 23:46:52 -07001622}
1623
Girish Moodalbail5b861f62017-07-20 22:44:20 -07001624/* Quiesces the geneve device data path for both TX and RX.
1625 *
1626 * On transmit geneve checks for non-NULL geneve_sock before it proceeds.
1627 * So, if we set that socket to NULL under RCU and wait for synchronize_net()
1628 * to complete for the existing set of in-flight packets to be transmitted,
1629 * then we would have quiesced the transmit data path. All the future packets
1630 * will get dropped until we unquiesce the data path.
1631 *
1632 * On receive geneve dereference the geneve_sock stashed in the socket. So,
1633 * if we set that to NULL under RCU and wait for synchronize_net() to
1634 * complete, then we would have quiesced the receive data path.
1635 */
1636static void geneve_quiesce(struct geneve_dev *geneve, struct geneve_sock **gs4,
1637 struct geneve_sock **gs6)
1638{
1639 *gs4 = rtnl_dereference(geneve->sock4);
1640 rcu_assign_pointer(geneve->sock4, NULL);
1641 if (*gs4)
1642 rcu_assign_sk_user_data((*gs4)->sock->sk, NULL);
1643#if IS_ENABLED(CONFIG_IPV6)
1644 *gs6 = rtnl_dereference(geneve->sock6);
1645 rcu_assign_pointer(geneve->sock6, NULL);
1646 if (*gs6)
1647 rcu_assign_sk_user_data((*gs6)->sock->sk, NULL);
1648#else
1649 *gs6 = NULL;
1650#endif
1651 synchronize_net();
1652}
1653
1654/* Resumes the geneve device data path for both TX and RX. */
1655static void geneve_unquiesce(struct geneve_dev *geneve, struct geneve_sock *gs4,
1656 struct geneve_sock __maybe_unused *gs6)
1657{
1658 rcu_assign_pointer(geneve->sock4, gs4);
1659 if (gs4)
1660 rcu_assign_sk_user_data(gs4->sock->sk, gs4);
1661#if IS_ENABLED(CONFIG_IPV6)
1662 rcu_assign_pointer(geneve->sock6, gs6);
1663 if (gs6)
1664 rcu_assign_sk_user_data(gs6->sock->sk, gs6);
1665#endif
1666 synchronize_net();
1667}
1668
1669static int geneve_changelink(struct net_device *dev, struct nlattr *tb[],
1670 struct nlattr *data[],
1671 struct netlink_ext_ack *extack)
1672{
1673 struct geneve_dev *geneve = netdev_priv(dev);
1674 struct geneve_sock *gs4, *gs6;
Sabrina Dubroca9e06e852020-07-06 17:18:08 +02001675 struct geneve_config cfg;
Girish Moodalbail5b861f62017-07-20 22:44:20 -07001676 int err;
1677
1678 /* If the geneve device is configured for metadata (or externally
1679 * controlled, for example, OVS), then nothing can be changed.
1680 */
Sabrina Dubroca9e06e852020-07-06 17:18:08 +02001681 if (geneve->cfg.collect_md)
Girish Moodalbail5b861f62017-07-20 22:44:20 -07001682 return -EOPNOTSUPP;
1683
1684 /* Start with the existing info. */
Sabrina Dubroca9e06e852020-07-06 17:18:08 +02001685 memcpy(&cfg, &geneve->cfg, sizeof(cfg));
1686 err = geneve_nl2info(tb, data, extack, &cfg, true);
Girish Moodalbail5b861f62017-07-20 22:44:20 -07001687 if (err)
1688 return err;
1689
Sabrina Dubroca9e06e852020-07-06 17:18:08 +02001690 if (!geneve_dst_addr_equal(&geneve->cfg.info, &cfg.info)) {
1691 dst_cache_reset(&cfg.info.dst_cache);
1692 geneve_link_config(dev, &cfg.info, tb);
Alexey Kodanevc40e89f2018-04-19 15:42:32 +03001693 }
Girish Moodalbail5b861f62017-07-20 22:44:20 -07001694
1695 geneve_quiesce(geneve, &gs4, &gs6);
Sabrina Dubroca9e06e852020-07-06 17:18:08 +02001696 memcpy(&geneve->cfg, &cfg, sizeof(cfg));
Girish Moodalbail5b861f62017-07-20 22:44:20 -07001697 geneve_unquiesce(geneve, gs4, gs6);
1698
1699 return 0;
1700}
1701
John W. Linville2d07dc72015-05-13 12:57:30 -04001702static void geneve_dellink(struct net_device *dev, struct list_head *head)
1703{
1704 struct geneve_dev *geneve = netdev_priv(dev);
1705
John W. Linville2d07dc72015-05-13 12:57:30 -04001706 list_del(&geneve->next);
1707 unregister_netdevice_queue(dev, head);
1708}
1709
1710static size_t geneve_get_size(const struct net_device *dev)
1711{
1712 return nla_total_size(sizeof(__u32)) + /* IFLA_GENEVE_ID */
John W. Linville8ed66f02015-10-26 17:01:44 -04001713 nla_total_size(sizeof(struct in6_addr)) + /* IFLA_GENEVE_REMOTE{6} */
John W. Linville8760ce52015-06-01 15:51:34 -04001714 nla_total_size(sizeof(__u8)) + /* IFLA_GENEVE_TTL */
John W. Linvilled8951122015-06-01 15:51:35 -04001715 nla_total_size(sizeof(__u8)) + /* IFLA_GENEVE_TOS */
Stefano Brivioa025fb52018-11-08 12:19:19 +01001716 nla_total_size(sizeof(__u8)) + /* IFLA_GENEVE_DF */
Daniel Borkmann8eb3b992016-03-09 03:00:04 +01001717 nla_total_size(sizeof(__be32)) + /* IFLA_GENEVE_LABEL */
John W. Linville7bbe33f2015-09-22 13:09:32 -04001718 nla_total_size(sizeof(__be16)) + /* IFLA_GENEVE_PORT */
Pravin B Shelare305ac62015-08-26 23:46:52 -07001719 nla_total_size(0) + /* IFLA_GENEVE_COLLECT_METADATA */
Tom Herbertabe492b2015-12-10 12:37:45 -08001720 nla_total_size(sizeof(__u8)) + /* IFLA_GENEVE_UDP_CSUM */
1721 nla_total_size(sizeof(__u8)) + /* IFLA_GENEVE_UDP_ZERO_CSUM6_TX */
1722 nla_total_size(sizeof(__u8)) + /* IFLA_GENEVE_UDP_ZERO_CSUM6_RX */
Hangbin Liu52d0d4042018-09-12 10:04:21 +08001723 nla_total_size(sizeof(__u8)) + /* IFLA_GENEVE_TTL_INHERIT */
John W. Linville2d07dc72015-05-13 12:57:30 -04001724 0;
1725}
1726
1727static int geneve_fill_info(struct sk_buff *skb, const struct net_device *dev)
1728{
1729 struct geneve_dev *geneve = netdev_priv(dev);
Sabrina Dubroca9e06e852020-07-06 17:18:08 +02001730 struct ip_tunnel_info *info = &geneve->cfg.info;
1731 bool ttl_inherit = geneve->cfg.ttl_inherit;
1732 bool metadata = geneve->cfg.collect_md;
pravin shelar9b4437a2016-11-21 11:02:58 -08001733 __u8 tmp_vni[3];
John W. Linville2d07dc72015-05-13 12:57:30 -04001734 __u32 vni;
1735
pravin shelar9b4437a2016-11-21 11:02:58 -08001736 tunnel_id_to_vni(info->key.tun_id, tmp_vni);
1737 vni = (tmp_vni[0] << 16) | (tmp_vni[1] << 8) | tmp_vni[2];
John W. Linville2d07dc72015-05-13 12:57:30 -04001738 if (nla_put_u32(skb, IFLA_GENEVE_ID, vni))
1739 goto nla_put_failure;
1740
Hangbin Liufd7eafd2017-11-15 09:43:09 +08001741 if (!metadata && ip_tunnel_info_af(info) == AF_INET) {
John W. Linville8ed66f02015-10-26 17:01:44 -04001742 if (nla_put_in_addr(skb, IFLA_GENEVE_REMOTE,
pravin shelar9b4437a2016-11-21 11:02:58 -08001743 info->key.u.ipv4.dst))
John W. Linville8ed66f02015-10-26 17:01:44 -04001744 goto nla_put_failure;
pravin shelar9b4437a2016-11-21 11:02:58 -08001745 if (nla_put_u8(skb, IFLA_GENEVE_UDP_CSUM,
1746 !!(info->key.tun_flags & TUNNEL_CSUM)))
1747 goto nla_put_failure;
1748
John W. Linville8ed66f02015-10-26 17:01:44 -04001749#if IS_ENABLED(CONFIG_IPV6)
Hangbin Liufd7eafd2017-11-15 09:43:09 +08001750 } else if (!metadata) {
John W. Linville8ed66f02015-10-26 17:01:44 -04001751 if (nla_put_in6_addr(skb, IFLA_GENEVE_REMOTE6,
pravin shelar9b4437a2016-11-21 11:02:58 -08001752 &info->key.u.ipv6.dst))
1753 goto nla_put_failure;
pravin shelar9b4437a2016-11-21 11:02:58 -08001754 if (nla_put_u8(skb, IFLA_GENEVE_UDP_ZERO_CSUM6_TX,
1755 !(info->key.tun_flags & TUNNEL_CSUM)))
1756 goto nla_put_failure;
Eric Garver11387fe2017-05-23 18:37:27 -04001757#endif
Hangbin Liufd7eafd2017-11-15 09:43:09 +08001758 }
John W. Linville2d07dc72015-05-13 12:57:30 -04001759
pravin shelar9b4437a2016-11-21 11:02:58 -08001760 if (nla_put_u8(skb, IFLA_GENEVE_TTL, info->key.ttl) ||
1761 nla_put_u8(skb, IFLA_GENEVE_TOS, info->key.tos) ||
1762 nla_put_be32(skb, IFLA_GENEVE_LABEL, info->key.label))
John W. Linville8760ce52015-06-01 15:51:34 -04001763 goto nla_put_failure;
1764
Sabrina Dubroca9e06e852020-07-06 17:18:08 +02001765 if (nla_put_u8(skb, IFLA_GENEVE_DF, geneve->cfg.df))
Stefano Brivioa025fb52018-11-08 12:19:19 +01001766 goto nla_put_failure;
1767
pravin shelar9b4437a2016-11-21 11:02:58 -08001768 if (nla_put_be16(skb, IFLA_GENEVE_PORT, info->key.tp_dst))
Pravin B Shelarcd7918b2015-08-26 23:46:51 -07001769 goto nla_put_failure;
1770
Hangbin Liufd7eafd2017-11-15 09:43:09 +08001771 if (metadata && nla_put_flag(skb, IFLA_GENEVE_COLLECT_METADATA))
Hangbin Liuf9094b72017-11-23 11:27:24 +08001772 goto nla_put_failure;
Hangbin Liufd7eafd2017-11-15 09:43:09 +08001773
Hangbin Liuf9094b72017-11-23 11:27:24 +08001774#if IS_ENABLED(CONFIG_IPV6)
Hangbin Liufd7eafd2017-11-15 09:43:09 +08001775 if (nla_put_u8(skb, IFLA_GENEVE_UDP_ZERO_CSUM6_RX,
Sabrina Dubroca9e06e852020-07-06 17:18:08 +02001776 !geneve->cfg.use_udp6_rx_checksums))
Hangbin Liufd7eafd2017-11-15 09:43:09 +08001777 goto nla_put_failure;
Hangbin Liuf9094b72017-11-23 11:27:24 +08001778#endif
Hangbin Liufd7eafd2017-11-15 09:43:09 +08001779
Hangbin Liu52d0d4042018-09-12 10:04:21 +08001780 if (nla_put_u8(skb, IFLA_GENEVE_TTL_INHERIT, ttl_inherit))
1781 goto nla_put_failure;
1782
John W. Linville2d07dc72015-05-13 12:57:30 -04001783 return 0;
1784
1785nla_put_failure:
1786 return -EMSGSIZE;
1787}
1788
1789static struct rtnl_link_ops geneve_link_ops __read_mostly = {
1790 .kind = "geneve",
1791 .maxtype = IFLA_GENEVE_MAX,
1792 .policy = geneve_policy,
1793 .priv_size = sizeof(struct geneve_dev),
1794 .setup = geneve_setup,
1795 .validate = geneve_validate,
1796 .newlink = geneve_newlink,
Girish Moodalbail5b861f62017-07-20 22:44:20 -07001797 .changelink = geneve_changelink,
John W. Linville2d07dc72015-05-13 12:57:30 -04001798 .dellink = geneve_dellink,
1799 .get_size = geneve_get_size,
1800 .fill_info = geneve_fill_info,
1801};
1802
Pravin B Shelare305ac62015-08-26 23:46:52 -07001803struct net_device *geneve_dev_create_fb(struct net *net, const char *name,
1804 u8 name_assign_type, u16 dst_port)
1805{
1806 struct nlattr *tb[IFLA_MAX + 1];
1807 struct net_device *dev;
Nicolas Dichtel106da662016-06-13 10:31:04 +02001808 LIST_HEAD(list_kill);
Pravin B Shelare305ac62015-08-26 23:46:52 -07001809 int err;
Sabrina Dubroca9e06e852020-07-06 17:18:08 +02001810 struct geneve_config cfg = {
1811 .df = GENEVE_DF_UNSET,
1812 .use_udp6_rx_checksums = true,
1813 .ttl_inherit = false,
1814 .collect_md = true,
1815 };
Pravin B Shelare305ac62015-08-26 23:46:52 -07001816
1817 memset(tb, 0, sizeof(tb));
1818 dev = rtnl_create_link(net, name, name_assign_type,
David Ahernd0522f12018-11-06 12:51:14 -08001819 &geneve_link_ops, tb, NULL);
Pravin B Shelare305ac62015-08-26 23:46:52 -07001820 if (IS_ERR(dev))
1821 return dev;
1822
Sabrina Dubroca9e06e852020-07-06 17:18:08 +02001823 init_tnl_info(&cfg.info, dst_port);
1824 err = geneve_configure(net, dev, NULL, &cfg);
Nicolas Dichtel106da662016-06-13 10:31:04 +02001825 if (err) {
1826 free_netdev(dev);
1827 return ERR_PTR(err);
1828 }
David Wragg7e059152016-02-10 00:05:58 +00001829
1830 /* openvswitch users expect packet sizes to be unrestricted,
1831 * so set the largest MTU we can.
1832 */
Jarod Wilson91572082016-10-20 13:55:20 -04001833 err = geneve_change_mtu(dev, IP_MAX_MTU);
David Wragg7e059152016-02-10 00:05:58 +00001834 if (err)
1835 goto err;
1836
Nicolas Dichtel41009482016-06-13 10:31:07 +02001837 err = rtnl_configure_link(dev, NULL);
1838 if (err < 0)
1839 goto err;
1840
Pravin B Shelare305ac62015-08-26 23:46:52 -07001841 return dev;
pravin shelar9b4437a2016-11-21 11:02:58 -08001842err:
Nicolas Dichtel106da662016-06-13 10:31:04 +02001843 geneve_dellink(dev, &list_kill);
1844 unregister_netdevice_many(&list_kill);
David Wragg7e059152016-02-10 00:05:58 +00001845 return ERR_PTR(err);
Pravin B Shelare305ac62015-08-26 23:46:52 -07001846}
1847EXPORT_SYMBOL_GPL(geneve_dev_create_fb);
1848
Hannes Frederic Sowa681e6832016-04-18 21:19:48 +02001849static int geneve_netdevice_event(struct notifier_block *unused,
1850 unsigned long event, void *ptr)
1851{
1852 struct net_device *dev = netdev_notifier_info_to_dev(ptr);
1853
Sabrina Dubroca2d2b13f2017-07-21 12:49:32 +02001854 if (event == NETDEV_UDP_TUNNEL_PUSH_INFO ||
Sabrina Dubroca04584952017-07-21 12:49:33 +02001855 event == NETDEV_UDP_TUNNEL_DROP_INFO) {
Sabrina Dubroca2d2b13f2017-07-21 12:49:32 +02001856 geneve_offload_rx_ports(dev, event == NETDEV_UDP_TUNNEL_PUSH_INFO);
Sabrina Dubroca04584952017-07-21 12:49:33 +02001857 } else if (event == NETDEV_UNREGISTER) {
Jakub Kicinskicc4e3832020-07-09 17:42:46 -07001858 if (!dev->udp_tunnel_nic_info)
1859 geneve_offload_rx_ports(dev, false);
Sabrina Dubroca04584952017-07-21 12:49:33 +02001860 } else if (event == NETDEV_REGISTER) {
Jakub Kicinskicc4e3832020-07-09 17:42:46 -07001861 if (!dev->udp_tunnel_nic_info)
1862 geneve_offload_rx_ports(dev, true);
Sabrina Dubroca04584952017-07-21 12:49:33 +02001863 }
Hannes Frederic Sowa681e6832016-04-18 21:19:48 +02001864
1865 return NOTIFY_DONE;
1866}
1867
1868static struct notifier_block geneve_notifier_block __read_mostly = {
1869 .notifier_call = geneve_netdevice_event,
1870};
1871
John W. Linville2d07dc72015-05-13 12:57:30 -04001872static __net_init int geneve_init_net(struct net *net)
1873{
1874 struct geneve_net *gn = net_generic(net, geneve_net_id);
John W. Linville2d07dc72015-05-13 12:57:30 -04001875
1876 INIT_LIST_HEAD(&gn->geneve_list);
Pravin B Shelar371bd102015-08-26 23:46:54 -07001877 INIT_LIST_HEAD(&gn->sock_list);
John W. Linville2d07dc72015-05-13 12:57:30 -04001878 return 0;
1879}
1880
Haishuang Yan2843a252017-12-16 17:54:50 +08001881static void geneve_destroy_tunnels(struct net *net, struct list_head *head)
John W. Linville2d07dc72015-05-13 12:57:30 -04001882{
1883 struct geneve_net *gn = net_generic(net, geneve_net_id);
1884 struct geneve_dev *geneve, *next;
1885 struct net_device *dev, *aux;
John W. Linville2d07dc72015-05-13 12:57:30 -04001886
1887 /* gather any geneve devices that were moved into this ns */
1888 for_each_netdev_safe(net, dev, aux)
1889 if (dev->rtnl_link_ops == &geneve_link_ops)
Haishuang Yan2843a252017-12-16 17:54:50 +08001890 unregister_netdevice_queue(dev, head);
John W. Linville2d07dc72015-05-13 12:57:30 -04001891
1892 /* now gather any other geneve devices that were created in this ns */
1893 list_for_each_entry_safe(geneve, next, &gn->geneve_list, next) {
1894 /* If geneve->dev is in the same netns, it was already added
1895 * to the list by the previous loop.
1896 */
1897 if (!net_eq(dev_net(geneve->dev), net))
Haishuang Yan2843a252017-12-16 17:54:50 +08001898 unregister_netdevice_queue(geneve->dev, head);
John W. Linville2d07dc72015-05-13 12:57:30 -04001899 }
Haishuang Yan2843a252017-12-16 17:54:50 +08001900}
1901
1902static void __net_exit geneve_exit_batch_net(struct list_head *net_list)
1903{
1904 struct net *net;
1905 LIST_HEAD(list);
1906
1907 rtnl_lock();
1908 list_for_each_entry(net, net_list, exit_list)
1909 geneve_destroy_tunnels(net, &list);
1910
John W. Linville2d07dc72015-05-13 12:57:30 -04001911 /* unregister the devices gathered above */
1912 unregister_netdevice_many(&list);
1913 rtnl_unlock();
Florian Westphal0fda7602020-03-14 08:18:42 +01001914
1915 list_for_each_entry(net, net_list, exit_list) {
1916 const struct geneve_net *gn = net_generic(net, geneve_net_id);
1917
1918 WARN_ON_ONCE(!list_empty(&gn->sock_list));
1919 }
John W. Linville2d07dc72015-05-13 12:57:30 -04001920}
1921
1922static struct pernet_operations geneve_net_ops = {
1923 .init = geneve_init_net,
Haishuang Yan2843a252017-12-16 17:54:50 +08001924 .exit_batch = geneve_exit_batch_net,
John W. Linville2d07dc72015-05-13 12:57:30 -04001925 .id = &geneve_net_id,
1926 .size = sizeof(struct geneve_net),
1927};
1928
1929static int __init geneve_init_module(void)
1930{
1931 int rc;
1932
1933 rc = register_pernet_subsys(&geneve_net_ops);
1934 if (rc)
1935 goto out1;
1936
Hannes Frederic Sowa681e6832016-04-18 21:19:48 +02001937 rc = register_netdevice_notifier(&geneve_notifier_block);
John W. Linville2d07dc72015-05-13 12:57:30 -04001938 if (rc)
1939 goto out2;
1940
Hannes Frederic Sowa681e6832016-04-18 21:19:48 +02001941 rc = rtnl_link_register(&geneve_link_ops);
1942 if (rc)
1943 goto out3;
1944
John W. Linville2d07dc72015-05-13 12:57:30 -04001945 return 0;
Hannes Frederic Sowa681e6832016-04-18 21:19:48 +02001946out3:
1947 unregister_netdevice_notifier(&geneve_notifier_block);
John W. Linville2d07dc72015-05-13 12:57:30 -04001948out2:
1949 unregister_pernet_subsys(&geneve_net_ops);
1950out1:
1951 return rc;
1952}
1953late_initcall(geneve_init_module);
1954
1955static void __exit geneve_cleanup_module(void)
1956{
1957 rtnl_link_unregister(&geneve_link_ops);
Hannes Frederic Sowa681e6832016-04-18 21:19:48 +02001958 unregister_netdevice_notifier(&geneve_notifier_block);
John W. Linville2d07dc72015-05-13 12:57:30 -04001959 unregister_pernet_subsys(&geneve_net_ops);
1960}
1961module_exit(geneve_cleanup_module);
1962
1963MODULE_LICENSE("GPL");
1964MODULE_VERSION(GENEVE_NETDEV_VER);
1965MODULE_AUTHOR("John W. Linville <linville@tuxdriver.com>");
1966MODULE_DESCRIPTION("Interface driver for GENEVE encapsulated traffic");
1967MODULE_ALIAS_RTNL_LINK("geneve");