blob: 3a41627cbdfe58e6a8bc134c5625278b59eb417c [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001/* SPDX-License-Identifier: GPL-2.0 */
Pravin B Shelar012a5722013-08-19 11:23:07 -07002#ifndef __NET_VXLAN_H
3#define __NET_VXLAN_H 1
4
Jesse Gross5f352272014-12-23 22:37:26 -08005#include <linux/if_vlan.h>
Alexander Duyck86a98052016-06-16 12:20:44 -07006#include <net/udp_tunnel.h>
Thomas Grafee122c72015-07-21 10:43:58 +02007#include <net/dst_metadata.h>
Ido Schimmel5ff4ff42018-10-17 08:53:20 +00008#include <net/rtnetlink.h>
Petr Machata9a997352018-10-17 08:53:22 +00009#include <net/switchdev.h>
Roopa Prabhu1274e1c2020-05-21 22:26:14 -070010#include <net/nexthop.h>
Pravin B Shelar012a5722013-08-19 11:23:07 -070011
Moshe Shemeshbea96412019-03-21 15:51:39 -070012#define IANA_VXLAN_UDP_PORT 4789
13
Jiri Benc828788a2016-02-02 18:09:13 +010014/* VXLAN protocol (RFC 7348) header:
Thomas Graf35114942015-01-15 03:53:55 +010015 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Jiri Benc828788a2016-02-02 18:09:13 +010016 * |R|R|R|R|I|R|R|R| Reserved |
Thomas Graf35114942015-01-15 03:53:55 +010017 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
18 * | VXLAN Network Identifier (VNI) | Reserved |
19 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
20 *
Jiri Benc828788a2016-02-02 18:09:13 +010021 * I = VXLAN Network Identifier (VNI) present.
22 */
23struct vxlanhdr {
24 __be32 vx_flags;
25 __be32 vx_vni;
26};
27
28/* VXLAN header flags. */
Jiri Benc54bfd872016-02-16 21:58:58 +010029#define VXLAN_HF_VNI cpu_to_be32(BIT(27))
Jiri Benc828788a2016-02-02 18:09:13 +010030
31#define VXLAN_N_VID (1u << 24)
32#define VXLAN_VID_MASK (VXLAN_N_VID - 1)
Jiri Benc54bfd872016-02-16 21:58:58 +010033#define VXLAN_VNI_MASK cpu_to_be32(VXLAN_VID_MASK << 8)
Jiri Benc828788a2016-02-02 18:09:13 +010034#define VXLAN_HLEN (sizeof(struct udphdr) + sizeof(struct vxlanhdr))
35
36#define VNI_HASH_BITS 10
37#define VNI_HASH_SIZE (1<<VNI_HASH_BITS)
38#define FDB_HASH_BITS 8
39#define FDB_HASH_SIZE (1<<FDB_HASH_BITS)
40
41/* Remote checksum offload for VXLAN (VXLAN_F_REMCSUM_[RT]X):
42 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
43 * |R|R|R|R|I|R|R|R|R|R|C| Reserved |
44 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
45 * | VXLAN Network Identifier (VNI) |O| Csum start |
46 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
47 *
48 * C = Remote checksum offload bit. When set indicates that the
49 * remote checksum offload data is present.
50 *
51 * O = Offset bit. Indicates the checksum offset relative to
52 * checksum start.
53 *
54 * Csum start = Checksum start divided by two.
55 *
56 * http://tools.ietf.org/html/draft-herbert-vxlan-rco
57 */
58
59/* VXLAN-RCO header flags. */
Jiri Benc54bfd872016-02-16 21:58:58 +010060#define VXLAN_HF_RCO cpu_to_be32(BIT(21))
Jiri Benc828788a2016-02-02 18:09:13 +010061
62/* Remote checksum offload header option */
Jiri Benc54bfd872016-02-16 21:58:58 +010063#define VXLAN_RCO_MASK cpu_to_be32(0x7f) /* Last byte of vni field */
64#define VXLAN_RCO_UDP cpu_to_be32(0x80) /* Indicate UDP RCO (TCP when not set *) */
65#define VXLAN_RCO_SHIFT 1 /* Left shift of start */
Jiri Benc828788a2016-02-02 18:09:13 +010066#define VXLAN_RCO_SHIFT_MASK ((1 << VXLAN_RCO_SHIFT) - 1)
Jiri Benc54bfd872016-02-16 21:58:58 +010067#define VXLAN_MAX_REMCSUM_START (0x7f << VXLAN_RCO_SHIFT)
Jiri Benc828788a2016-02-02 18:09:13 +010068
69/*
70 * VXLAN Group Based Policy Extension (VXLAN_F_GBP):
71 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
72 * |G|R|R|R|I|R|R|R|R|D|R|R|A|R|R|R| Group Policy ID |
73 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
74 * | VXLAN Network Identifier (VNI) | Reserved |
75 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
76 *
77 * G = Group Policy ID present.
78 *
Thomas Graf35114942015-01-15 03:53:55 +010079 * D = Don't Learn bit. When set, this bit indicates that the egress
80 * VTEP MUST NOT learn the source address of the encapsulated frame.
81 *
82 * A = Indicates that the group policy has already been applied to
83 * this packet. Policies MUST NOT be applied by devices when the
84 * A bit is set.
85 *
Jiri Benc828788a2016-02-02 18:09:13 +010086 * https://tools.ietf.org/html/draft-smith-vxlan-group-policy
Thomas Graf35114942015-01-15 03:53:55 +010087 */
88struct vxlanhdr_gbp {
Jiri Benc0e715d62016-02-02 18:09:11 +010089 u8 vx_flags;
Thomas Graf35114942015-01-15 03:53:55 +010090#ifdef __LITTLE_ENDIAN_BITFIELD
Jiri Benc0e715d62016-02-02 18:09:11 +010091 u8 reserved_flags1:3,
Thomas Graf35114942015-01-15 03:53:55 +010092 policy_applied:1,
93 reserved_flags2:2,
94 dont_learn:1,
95 reserved_flags3:1;
96#elif defined(__BIG_ENDIAN_BITFIELD)
Jiri Benc0e715d62016-02-02 18:09:11 +010097 u8 reserved_flags1:1,
Thomas Graf35114942015-01-15 03:53:55 +010098 dont_learn:1,
99 reserved_flags2:2,
100 policy_applied:1,
101 reserved_flags3:3;
102#else
103#error "Please fix <asm/byteorder.h>"
104#endif
105 __be16 policy_id;
106 __be32 vx_vni;
107};
108
Jiri Benc828788a2016-02-02 18:09:13 +0100109/* VXLAN-GBP header flags. */
Jiri Benc54bfd872016-02-16 21:58:58 +0100110#define VXLAN_HF_GBP cpu_to_be32(BIT(31))
Jiri Benc828788a2016-02-02 18:09:13 +0100111
Jiri Benc54bfd872016-02-16 21:58:58 +0100112#define VXLAN_GBP_USED_BITS (VXLAN_HF_GBP | cpu_to_be32(0xFFFFFF))
Thomas Graf35114942015-01-15 03:53:55 +0100113
114/* skb->mark mapping
115 *
116 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
117 * |R|R|R|R|R|R|R|R|R|D|R|R|A|R|R|R| Group Policy ID |
118 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
119 */
120#define VXLAN_GBP_DONT_LEARN (BIT(6) << 16)
121#define VXLAN_GBP_POLICY_APPLIED (BIT(3) << 16)
122#define VXLAN_GBP_ID_MASK (0xFFFF)
123
Jiri Bence1e53142016-04-05 14:47:13 +0200124/*
125 * VXLAN Generic Protocol Extension (VXLAN_F_GPE):
126 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
127 * |R|R|Ver|I|P|R|O| Reserved |Next Protocol |
128 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
129 * | VXLAN Network Identifier (VNI) | Reserved |
130 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
131 *
132 * Ver = Version. Indicates VXLAN GPE protocol version.
133 *
134 * P = Next Protocol Bit. The P bit is set to indicate that the
135 * Next Protocol field is present.
136 *
137 * O = OAM Flag Bit. The O bit is set to indicate that the packet
138 * is an OAM packet.
139 *
140 * Next Protocol = This 8 bit field indicates the protocol header
141 * immediately following the VXLAN GPE header.
142 *
143 * https://tools.ietf.org/html/draft-ietf-nvo3-vxlan-gpe-01
144 */
145
146struct vxlanhdr_gpe {
147#if defined(__LITTLE_ENDIAN_BITFIELD)
148 u8 oam_flag:1,
149 reserved_flags1:1,
150 np_applied:1,
151 instance_applied:1,
152 version:2,
William Tuf1c8d372018-01-02 14:05:19 -0800153 reserved_flags2:2;
Jiri Bence1e53142016-04-05 14:47:13 +0200154#elif defined(__BIG_ENDIAN_BITFIELD)
155 u8 reserved_flags2:2,
156 version:2,
157 instance_applied:1,
158 np_applied:1,
159 reserved_flags1:1,
160 oam_flag:1;
161#endif
162 u8 reserved_flags3;
163 u8 reserved_flags4;
164 u8 next_protocol;
165 __be32 vx_vni;
166};
167
168/* VXLAN-GPE header flags. */
169#define VXLAN_HF_VER cpu_to_be32(BIT(29) | BIT(28))
170#define VXLAN_HF_NP cpu_to_be32(BIT(26))
171#define VXLAN_HF_OAM cpu_to_be32(BIT(24))
172
173#define VXLAN_GPE_USED_BITS (VXLAN_HF_VER | VXLAN_HF_NP | VXLAN_HF_OAM | \
174 cpu_to_be32(0xff))
175
Thomas Graf35114942015-01-15 03:53:55 +0100176struct vxlan_metadata {
Thomas Graf35114942015-01-15 03:53:55 +0100177 u32 gbp;
178};
179
Pravin B Shelar012a5722013-08-19 11:23:07 -0700180/* per UDP socket information */
181struct vxlan_sock {
182 struct hlist_node hlist;
Pravin B Shelar012a5722013-08-19 11:23:07 -0700183 struct socket *sock;
Pravin B Shelar012a5722013-08-19 11:23:07 -0700184 struct hlist_head vni_list[VNI_HASH_SIZE];
Reshetova, Elena66af8462017-07-04 15:52:59 +0300185 refcount_t refcnt;
Tom Herbertdfd86452015-01-12 17:00:38 -0800186 u32 flags;
Pravin B Shelar012a5722013-08-19 11:23:07 -0700187};
188
Thomas Graf0dfbdf42015-07-21 10:44:02 +0200189union vxlan_addr {
190 struct sockaddr_in sin;
191 struct sockaddr_in6 sin6;
192 struct sockaddr sa;
193};
194
195struct vxlan_rdst {
196 union vxlan_addr remote_ip;
197 __be16 remote_port;
Petr Machata0efe1172018-10-17 08:53:26 +0000198 u8 offloaded:1;
Jiri Benc54bfd872016-02-16 21:58:58 +0100199 __be32 remote_vni;
Thomas Graf0dfbdf42015-07-21 10:44:02 +0200200 u32 remote_ifindex;
Taehee Yoo0ce18222019-10-21 18:47:57 +0000201 struct net_device *remote_dev;
Thomas Graf0dfbdf42015-07-21 10:44:02 +0200202 struct list_head list;
203 struct rcu_head rcu;
Paolo Abeni0c1d70a2016-02-12 15:43:56 +0100204 struct dst_cache dst_cache;
Thomas Graf0dfbdf42015-07-21 10:44:02 +0200205};
206
207struct vxlan_config {
208 union vxlan_addr remote_ip;
209 union vxlan_addr saddr;
Jiri Benc54bfd872016-02-16 21:58:58 +0100210 __be32 vni;
Thomas Graf0dfbdf42015-07-21 10:44:02 +0200211 int remote_ifindex;
212 int mtu;
213 __be16 dst_port;
Jiri Benc0e715d62016-02-02 18:09:11 +0100214 u16 port_min;
215 u16 port_max;
216 u8 tos;
217 u8 ttl;
Daniel Borkmanne7f70af2016-03-09 03:00:03 +0100218 __be32 label;
Thomas Graf0dfbdf42015-07-21 10:44:02 +0200219 u32 flags;
220 unsigned long age_interval;
221 unsigned int addrmax;
222 bool no_share;
Stefano Briviob4d306972018-11-08 12:19:16 +0100223 enum ifla_vxlan_df df;
Thomas Graf0dfbdf42015-07-21 10:44:02 +0200224};
225
Jiri Benc69e76662017-07-02 19:00:57 +0200226struct vxlan_dev_node {
227 struct hlist_node hlist;
228 struct vxlan_dev *vxlan;
229};
230
Thomas Graf0dfbdf42015-07-21 10:44:02 +0200231/* Pseudo network device */
232struct vxlan_dev {
Jiri Benc69e76662017-07-02 19:00:57 +0200233 struct vxlan_dev_node hlist4; /* vni hash table for IPv4 socket */
234#if IS_ENABLED(CONFIG_IPV6)
235 struct vxlan_dev_node hlist6; /* vni hash table for IPv6 socket */
236#endif
Thomas Graf0dfbdf42015-07-21 10:44:02 +0200237 struct list_head next; /* vxlan's per namespace list */
pravin shelarc6fcc4f2016-10-28 09:59:15 -0700238 struct vxlan_sock __rcu *vn4_sock; /* listening socket for IPv4 */
Jiri Bencb1be00a2015-09-24 13:50:02 +0200239#if IS_ENABLED(CONFIG_IPV6)
pravin shelarc6fcc4f2016-10-28 09:59:15 -0700240 struct vxlan_sock __rcu *vn6_sock; /* listening socket for IPv6 */
Jiri Bencb1be00a2015-09-24 13:50:02 +0200241#endif
Thomas Graf0dfbdf42015-07-21 10:44:02 +0200242 struct net_device *dev;
243 struct net *net; /* netns for packet i/o */
244 struct vxlan_rdst default_dst; /* default destination */
Thomas Graf0dfbdf42015-07-21 10:44:02 +0200245
246 struct timer_list age_timer;
Litao jiaofe1e0712019-06-06 17:57:58 +0800247 spinlock_t hash_lock[FDB_HASH_SIZE];
Thomas Graf0dfbdf42015-07-21 10:44:02 +0200248 unsigned int addrcnt;
Tom Herbert58ce31c2015-08-19 17:07:33 -0700249 struct gro_cells gro_cells;
Thomas Graf0dfbdf42015-07-21 10:44:02 +0200250
251 struct vxlan_config cfg;
252
253 struct hlist_head fdb_head[FDB_HASH_SIZE];
254};
255
Tom Herbert359a0ea2014-06-04 17:20:29 -0700256#define VXLAN_F_LEARN 0x01
257#define VXLAN_F_PROXY 0x02
258#define VXLAN_F_RSC 0x04
259#define VXLAN_F_L2MISS 0x08
260#define VXLAN_F_L3MISS 0x10
261#define VXLAN_F_IPV6 0x20
Alexander Duyck6ceb31c2016-02-19 11:26:31 -0800262#define VXLAN_F_UDP_ZERO_CSUM_TX 0x40
Tom Herbert359a0ea2014-06-04 17:20:29 -0700263#define VXLAN_F_UDP_ZERO_CSUM6_TX 0x80
264#define VXLAN_F_UDP_ZERO_CSUM6_RX 0x100
Tom Herbertdfd86452015-01-12 17:00:38 -0800265#define VXLAN_F_REMCSUM_TX 0x200
266#define VXLAN_F_REMCSUM_RX 0x400
Thomas Graf35114942015-01-15 03:53:55 +0100267#define VXLAN_F_GBP 0x800
Tom Herbert0ace2ca2015-02-10 16:30:32 -0800268#define VXLAN_F_REMCSUM_NOPARTIAL 0x1000
Thomas Grafee122c72015-07-21 10:43:58 +0200269#define VXLAN_F_COLLECT_METADATA 0x2000
Jiri Bence1e53142016-04-05 14:47:13 +0200270#define VXLAN_F_GPE 0x4000
Matthias Schiffer0f22a3c2017-06-19 10:03:58 +0200271#define VXLAN_F_IPV6_LINKLOCAL 0x8000
Hangbin Liu72f6d712018-04-17 14:11:28 +0800272#define VXLAN_F_TTL_INHERIT 0x10000
Tom Herbert359a0ea2014-06-04 17:20:29 -0700273
Simon Hormand299ce12015-03-12 11:00:10 +0900274/* Flags that are used in the receive path. These flags must match in
Tom Herbertaf33c1a2015-01-20 11:23:05 -0800275 * order for a socket to be shareable
276 */
277#define VXLAN_F_RCV_FLAGS (VXLAN_F_GBP | \
Jiri Bence1e53142016-04-05 14:47:13 +0200278 VXLAN_F_GPE | \
Tom Herbertaf33c1a2015-01-20 11:23:05 -0800279 VXLAN_F_UDP_ZERO_CSUM6_RX | \
Tom Herbert0ace2ca2015-02-10 16:30:32 -0800280 VXLAN_F_REMCSUM_RX | \
Thomas Grafee122c72015-07-21 10:43:58 +0200281 VXLAN_F_REMCSUM_NOPARTIAL | \
Alexei Starovoitovda8b43c2015-08-04 22:51:07 -0700282 VXLAN_F_COLLECT_METADATA)
Thomas Grafac5132d2015-01-15 03:53:56 +0100283
Jiri Bence1e53142016-04-05 14:47:13 +0200284/* Flags that can be set together with VXLAN_F_GPE. */
285#define VXLAN_F_ALLOWED_GPE (VXLAN_F_GPE | \
286 VXLAN_F_IPV6 | \
Matthias Schiffer0f22a3c2017-06-19 10:03:58 +0200287 VXLAN_F_IPV6_LINKLOCAL | \
Jiri Bence1e53142016-04-05 14:47:13 +0200288 VXLAN_F_UDP_ZERO_CSUM_TX | \
289 VXLAN_F_UDP_ZERO_CSUM6_TX | \
290 VXLAN_F_UDP_ZERO_CSUM6_RX | \
291 VXLAN_F_COLLECT_METADATA)
292
Thomas Graf0dfbdf42015-07-21 10:44:02 +0200293struct net_device *vxlan_dev_create(struct net *net, const char *name,
294 u8 name_assign_type, struct vxlan_config *conf);
295
Jesse Gross5f352272014-12-23 22:37:26 -0800296static inline netdev_features_t vxlan_features_check(struct sk_buff *skb,
297 netdev_features_t features)
Joe Stringer11bf7822014-11-17 16:24:54 -0800298{
Jesse Gross5f352272014-12-23 22:37:26 -0800299 u8 l4_hdr = 0;
300
301 if (!skb->encapsulation)
302 return features;
303
304 switch (vlan_get_protocol(skb)) {
305 case htons(ETH_P_IP):
306 l4_hdr = ip_hdr(skb)->protocol;
307 break;
308 case htons(ETH_P_IPV6):
309 l4_hdr = ipv6_hdr(skb)->nexthdr;
310 break;
311 default:
Luis de Bethencourt5ef7e0b2018-01-16 15:03:32 +0000312 return features;
Jesse Gross5f352272014-12-23 22:37:26 -0800313 }
314
315 if ((l4_hdr == IPPROTO_UDP) &&
Joe Stringer11bf7822014-11-17 16:24:54 -0800316 (skb->inner_protocol_type != ENCAP_TYPE_ETHER ||
317 skb->inner_protocol != htons(ETH_P_TEB) ||
318 (skb_inner_mac_header(skb) - skb_transport_header(skb) !=
Alexander Duyckaf67eb9e2016-05-02 09:25:16 -0700319 sizeof(struct udphdr) + sizeof(struct vxlanhdr)) ||
320 (skb->ip_summed != CHECKSUM_NONE &&
321 !can_checksum_protocol(features, inner_eth_hdr(skb)->h_proto))))
Tom Herberta1882222015-12-14 11:19:43 -0800322 return features & ~(NETIF_F_CSUM_MASK | NETIF_F_GSO_MASK);
Joe Stringer11bf7822014-11-17 16:24:54 -0800323
Jesse Gross5f352272014-12-23 22:37:26 -0800324 return features;
Joe Stringer11bf7822014-11-17 16:24:54 -0800325}
Joe Stringer23e62de2014-11-13 16:38:12 -0800326
Joseph Gasparakise6cd9882013-10-24 06:27:10 +0000327/* IP header + UDP + VXLAN + Ethernet header */
328#define VXLAN_HEADROOM (20 + 8 + 8 + 14)
329/* IPv6 header + UDP + VXLAN + Ethernet header */
330#define VXLAN6_HEADROOM (40 + 8 + 8 + 14)
331
Jiri Bencd4ac05f2016-02-16 21:58:57 +0100332static inline struct vxlanhdr *vxlan_hdr(struct sk_buff *skb)
333{
334 return (struct vxlanhdr *)(udp_hdr(skb) + 1);
335}
336
Jiri Benc54bfd872016-02-16 21:58:58 +0100337static inline __be32 vxlan_vni(__be32 vni_field)
338{
339#if defined(__BIG_ENDIAN)
Jiri Benc5692d7e2016-03-21 17:39:18 +0100340 return (__force __be32)((__force u32)vni_field >> 8);
Jiri Benc54bfd872016-02-16 21:58:58 +0100341#else
Jiri Benc5692d7e2016-03-21 17:39:18 +0100342 return (__force __be32)((__force u32)(vni_field & VXLAN_VNI_MASK) << 8);
Jiri Benc54bfd872016-02-16 21:58:58 +0100343#endif
344}
345
346static inline __be32 vxlan_vni_field(__be32 vni)
347{
348#if defined(__BIG_ENDIAN)
Jiri Benc5692d7e2016-03-21 17:39:18 +0100349 return (__force __be32)((__force u32)vni << 8);
Jiri Benc54bfd872016-02-16 21:58:58 +0100350#else
Jiri Benc5692d7e2016-03-21 17:39:18 +0100351 return (__force __be32)((__force u32)vni >> 8);
Jiri Benc54bfd872016-02-16 21:58:58 +0100352#endif
353}
354
Jiri Benc54bfd872016-02-16 21:58:58 +0100355static inline size_t vxlan_rco_start(__be32 vni_field)
356{
357 return be32_to_cpu(vni_field & VXLAN_RCO_MASK) << VXLAN_RCO_SHIFT;
358}
359
360static inline size_t vxlan_rco_offset(__be32 vni_field)
361{
362 return (vni_field & VXLAN_RCO_UDP) ?
363 offsetof(struct udphdr, check) :
364 offsetof(struct tcphdr, check);
365}
366
367static inline __be32 vxlan_compute_rco(unsigned int start, unsigned int offset)
368{
369 __be32 vni_field = cpu_to_be32(start >> VXLAN_RCO_SHIFT);
370
371 if (offset == offsetof(struct udphdr, check))
372 vni_field |= VXLAN_RCO_UDP;
373 return vni_field;
374}
375
Jiri Benc705cc622015-08-20 13:56:28 +0200376static inline unsigned short vxlan_get_sk_family(struct vxlan_sock *vs)
377{
378 return vs->sock->sk->sk_family;
379}
Jiri Benc48e92c42015-08-25 18:36:50 +0200380
Ido Schimmelcca45e02018-10-17 08:53:10 +0000381#if IS_ENABLED(CONFIG_IPV6)
382
383static inline bool vxlan_addr_any(const union vxlan_addr *ipa)
384{
385 if (ipa->sa.sa_family == AF_INET6)
386 return ipv6_addr_any(&ipa->sin6.sin6_addr);
387 else
388 return ipa->sin.sin_addr.s_addr == htonl(INADDR_ANY);
389}
390
391static inline bool vxlan_addr_multicast(const union vxlan_addr *ipa)
392{
393 if (ipa->sa.sa_family == AF_INET6)
394 return ipv6_addr_is_multicast(&ipa->sin6.sin6_addr);
395 else
Dave Taht842841e2019-09-02 16:29:36 -0700396 return ipv4_is_multicast(ipa->sin.sin_addr.s_addr);
Ido Schimmelcca45e02018-10-17 08:53:10 +0000397}
398
399#else /* !IS_ENABLED(CONFIG_IPV6) */
400
401static inline bool vxlan_addr_any(const union vxlan_addr *ipa)
402{
403 return ipa->sin.sin_addr.s_addr == htonl(INADDR_ANY);
404}
405
406static inline bool vxlan_addr_multicast(const union vxlan_addr *ipa)
407{
Dave Taht842841e2019-09-02 16:29:36 -0700408 return ipv4_is_multicast(ipa->sin.sin_addr.s_addr);
Ido Schimmelcca45e02018-10-17 08:53:10 +0000409}
410
411#endif /* IS_ENABLED(CONFIG_IPV6) */
412
Ido Schimmel5ff4ff42018-10-17 08:53:20 +0000413static inline bool netif_is_vxlan(const struct net_device *dev)
414{
415 return dev->rtnl_link_ops &&
416 !strcmp(dev->rtnl_link_ops->kind, "vxlan");
417}
418
Petr Machata9a997352018-10-17 08:53:22 +0000419struct switchdev_notifier_vxlan_fdb_info {
420 struct switchdev_notifier_info info; /* must be first */
421 union vxlan_addr remote_ip;
422 __be16 remote_port;
423 __be32 remote_vni;
424 u32 remote_ifindex;
425 u8 eth_addr[ETH_ALEN];
426 __be32 vni;
Petr Machata0efe1172018-10-17 08:53:26 +0000427 bool offloaded;
Petr Machata45598c12018-11-21 08:02:36 +0000428 bool added_by_user;
Petr Machata9a997352018-10-17 08:53:22 +0000429};
430
Petr Machata1941f1d2018-10-17 08:53:24 +0000431#if IS_ENABLED(CONFIG_VXLAN)
432int vxlan_fdb_find_uc(struct net_device *dev, const u8 *mac, __be32 vni,
433 struct switchdev_notifier_vxlan_fdb_info *fdb_info);
Petr Machata4f89f5b2018-12-07 19:55:04 +0000434int vxlan_fdb_replay(const struct net_device *dev, __be32 vni,
Petr Machata4c59b7d2019-01-16 23:06:54 +0000435 struct notifier_block *nb,
436 struct netlink_ext_ack *extack);
Petr Machatae5ff4b12018-12-07 19:55:06 +0000437void vxlan_fdb_clear_offload(const struct net_device *dev, __be32 vni);
Petr Machata4f89f5b2018-12-07 19:55:04 +0000438
Petr Machata1941f1d2018-10-17 08:53:24 +0000439#else
440static inline int
441vxlan_fdb_find_uc(struct net_device *dev, const u8 *mac, __be32 vni,
442 struct switchdev_notifier_vxlan_fdb_info *fdb_info)
443{
444 return -ENOENT;
445}
Petr Machata4f89f5b2018-12-07 19:55:04 +0000446
447static inline int vxlan_fdb_replay(const struct net_device *dev, __be32 vni,
Petr Machata4c59b7d2019-01-16 23:06:54 +0000448 struct notifier_block *nb,
449 struct netlink_ext_ack *extack)
Petr Machata4f89f5b2018-12-07 19:55:04 +0000450{
451 return -EOPNOTSUPP;
452}
Petr Machatae5ff4b12018-12-07 19:55:06 +0000453
454static inline void
455vxlan_fdb_clear_offload(const struct net_device *dev, __be32 vni)
456{
457}
Petr Machata1941f1d2018-10-17 08:53:24 +0000458#endif
459
Roopa Prabhu70fb0822019-02-25 22:03:01 -0800460static inline void vxlan_flag_attr_error(int attrtype,
461 struct netlink_ext_ack *extack)
462{
463#define VXLAN_FLAG(flg) \
464 case IFLA_VXLAN_##flg: \
465 NL_SET_ERR_MSG_MOD(extack, \
466 "cannot change " #flg " flag"); \
467 break
468 switch (attrtype) {
469 VXLAN_FLAG(TTL_INHERIT);
470 VXLAN_FLAG(LEARNING);
471 VXLAN_FLAG(PROXY);
472 VXLAN_FLAG(RSC);
473 VXLAN_FLAG(L2MISS);
474 VXLAN_FLAG(L3MISS);
475 VXLAN_FLAG(COLLECT_METADATA);
476 VXLAN_FLAG(UDP_ZERO_CSUM6_TX);
477 VXLAN_FLAG(UDP_ZERO_CSUM6_RX);
478 VXLAN_FLAG(REMCSUM_TX);
479 VXLAN_FLAG(REMCSUM_RX);
480 VXLAN_FLAG(GBP);
481 VXLAN_FLAG(GPE);
482 VXLAN_FLAG(REMCSUM_NOPARTIAL);
483 default:
484 NL_SET_ERR_MSG_MOD(extack, \
485 "cannot change flag");
486 break;
487 }
488#undef VXLAN_FLAG
489}
490
Roopa Prabhu1274e1c2020-05-21 22:26:14 -0700491static inline bool vxlan_fdb_nh_path_select(struct nexthop *nh,
492 int hash,
493 struct vxlan_rdst *rdst)
494{
495 struct fib_nh_common *nhc;
496
497 nhc = nexthop_path_fdb_result(nh, hash);
498 if (unlikely(!nhc))
499 return false;
500
501 switch (nhc->nhc_gw_family) {
502 case AF_INET:
503 rdst->remote_ip.sin.sin_addr.s_addr = nhc->nhc_gw.ipv4;
504 rdst->remote_ip.sa.sa_family = AF_INET;
505 break;
506 case AF_INET6:
507 rdst->remote_ip.sin6.sin6_addr = nhc->nhc_gw.ipv6;
508 rdst->remote_ip.sa.sa_family = AF_INET6;
509 break;
510 }
511
512 return true;
513}
514
Jiri Benc48e92c42015-08-25 18:36:50 +0200515#endif