blob: 03431c148e1677bd3cb140996e8d8a14af9d8a42 [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>
Pravin B Shelar012a5722013-08-19 11:23:07 -070010
Jiri Benc828788a2016-02-02 18:09:13 +010011/* VXLAN protocol (RFC 7348) header:
Thomas Graf35114942015-01-15 03:53:55 +010012 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Jiri Benc828788a2016-02-02 18:09:13 +010013 * |R|R|R|R|I|R|R|R| Reserved |
Thomas Graf35114942015-01-15 03:53:55 +010014 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
15 * | VXLAN Network Identifier (VNI) | Reserved |
16 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
17 *
Jiri Benc828788a2016-02-02 18:09:13 +010018 * I = VXLAN Network Identifier (VNI) present.
19 */
20struct vxlanhdr {
21 __be32 vx_flags;
22 __be32 vx_vni;
23};
24
25/* VXLAN header flags. */
Jiri Benc54bfd872016-02-16 21:58:58 +010026#define VXLAN_HF_VNI cpu_to_be32(BIT(27))
Jiri Benc828788a2016-02-02 18:09:13 +010027
28#define VXLAN_N_VID (1u << 24)
29#define VXLAN_VID_MASK (VXLAN_N_VID - 1)
Jiri Benc54bfd872016-02-16 21:58:58 +010030#define VXLAN_VNI_MASK cpu_to_be32(VXLAN_VID_MASK << 8)
Jiri Benc828788a2016-02-02 18:09:13 +010031#define VXLAN_HLEN (sizeof(struct udphdr) + sizeof(struct vxlanhdr))
32
33#define VNI_HASH_BITS 10
34#define VNI_HASH_SIZE (1<<VNI_HASH_BITS)
35#define FDB_HASH_BITS 8
36#define FDB_HASH_SIZE (1<<FDB_HASH_BITS)
37
38/* Remote checksum offload for VXLAN (VXLAN_F_REMCSUM_[RT]X):
39 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
40 * |R|R|R|R|I|R|R|R|R|R|C| Reserved |
41 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
42 * | VXLAN Network Identifier (VNI) |O| Csum start |
43 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
44 *
45 * C = Remote checksum offload bit. When set indicates that the
46 * remote checksum offload data is present.
47 *
48 * O = Offset bit. Indicates the checksum offset relative to
49 * checksum start.
50 *
51 * Csum start = Checksum start divided by two.
52 *
53 * http://tools.ietf.org/html/draft-herbert-vxlan-rco
54 */
55
56/* VXLAN-RCO header flags. */
Jiri Benc54bfd872016-02-16 21:58:58 +010057#define VXLAN_HF_RCO cpu_to_be32(BIT(21))
Jiri Benc828788a2016-02-02 18:09:13 +010058
59/* Remote checksum offload header option */
Jiri Benc54bfd872016-02-16 21:58:58 +010060#define VXLAN_RCO_MASK cpu_to_be32(0x7f) /* Last byte of vni field */
61#define VXLAN_RCO_UDP cpu_to_be32(0x80) /* Indicate UDP RCO (TCP when not set *) */
62#define VXLAN_RCO_SHIFT 1 /* Left shift of start */
Jiri Benc828788a2016-02-02 18:09:13 +010063#define VXLAN_RCO_SHIFT_MASK ((1 << VXLAN_RCO_SHIFT) - 1)
Jiri Benc54bfd872016-02-16 21:58:58 +010064#define VXLAN_MAX_REMCSUM_START (0x7f << VXLAN_RCO_SHIFT)
Jiri Benc828788a2016-02-02 18:09:13 +010065
66/*
67 * VXLAN Group Based Policy Extension (VXLAN_F_GBP):
68 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
69 * |G|R|R|R|I|R|R|R|R|D|R|R|A|R|R|R| Group Policy ID |
70 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
71 * | VXLAN Network Identifier (VNI) | Reserved |
72 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
73 *
74 * G = Group Policy ID present.
75 *
Thomas Graf35114942015-01-15 03:53:55 +010076 * D = Don't Learn bit. When set, this bit indicates that the egress
77 * VTEP MUST NOT learn the source address of the encapsulated frame.
78 *
79 * A = Indicates that the group policy has already been applied to
80 * this packet. Policies MUST NOT be applied by devices when the
81 * A bit is set.
82 *
Jiri Benc828788a2016-02-02 18:09:13 +010083 * https://tools.ietf.org/html/draft-smith-vxlan-group-policy
Thomas Graf35114942015-01-15 03:53:55 +010084 */
85struct vxlanhdr_gbp {
Jiri Benc0e715d62016-02-02 18:09:11 +010086 u8 vx_flags;
Thomas Graf35114942015-01-15 03:53:55 +010087#ifdef __LITTLE_ENDIAN_BITFIELD
Jiri Benc0e715d62016-02-02 18:09:11 +010088 u8 reserved_flags1:3,
Thomas Graf35114942015-01-15 03:53:55 +010089 policy_applied:1,
90 reserved_flags2:2,
91 dont_learn:1,
92 reserved_flags3:1;
93#elif defined(__BIG_ENDIAN_BITFIELD)
Jiri Benc0e715d62016-02-02 18:09:11 +010094 u8 reserved_flags1:1,
Thomas Graf35114942015-01-15 03:53:55 +010095 dont_learn:1,
96 reserved_flags2:2,
97 policy_applied:1,
98 reserved_flags3:3;
99#else
100#error "Please fix <asm/byteorder.h>"
101#endif
102 __be16 policy_id;
103 __be32 vx_vni;
104};
105
Jiri Benc828788a2016-02-02 18:09:13 +0100106/* VXLAN-GBP header flags. */
Jiri Benc54bfd872016-02-16 21:58:58 +0100107#define VXLAN_HF_GBP cpu_to_be32(BIT(31))
Jiri Benc828788a2016-02-02 18:09:13 +0100108
Jiri Benc54bfd872016-02-16 21:58:58 +0100109#define VXLAN_GBP_USED_BITS (VXLAN_HF_GBP | cpu_to_be32(0xFFFFFF))
Thomas Graf35114942015-01-15 03:53:55 +0100110
111/* skb->mark mapping
112 *
113 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
114 * |R|R|R|R|R|R|R|R|R|D|R|R|A|R|R|R| Group Policy ID |
115 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
116 */
117#define VXLAN_GBP_DONT_LEARN (BIT(6) << 16)
118#define VXLAN_GBP_POLICY_APPLIED (BIT(3) << 16)
119#define VXLAN_GBP_ID_MASK (0xFFFF)
120
Jiri Bence1e53142016-04-05 14:47:13 +0200121/*
122 * VXLAN Generic Protocol Extension (VXLAN_F_GPE):
123 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
124 * |R|R|Ver|I|P|R|O| Reserved |Next Protocol |
125 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
126 * | VXLAN Network Identifier (VNI) | Reserved |
127 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
128 *
129 * Ver = Version. Indicates VXLAN GPE protocol version.
130 *
131 * P = Next Protocol Bit. The P bit is set to indicate that the
132 * Next Protocol field is present.
133 *
134 * O = OAM Flag Bit. The O bit is set to indicate that the packet
135 * is an OAM packet.
136 *
137 * Next Protocol = This 8 bit field indicates the protocol header
138 * immediately following the VXLAN GPE header.
139 *
140 * https://tools.ietf.org/html/draft-ietf-nvo3-vxlan-gpe-01
141 */
142
143struct vxlanhdr_gpe {
144#if defined(__LITTLE_ENDIAN_BITFIELD)
145 u8 oam_flag:1,
146 reserved_flags1:1,
147 np_applied:1,
148 instance_applied:1,
149 version:2,
William Tuf1c8d372018-01-02 14:05:19 -0800150 reserved_flags2:2;
Jiri Bence1e53142016-04-05 14:47:13 +0200151#elif defined(__BIG_ENDIAN_BITFIELD)
152 u8 reserved_flags2:2,
153 version:2,
154 instance_applied:1,
155 np_applied:1,
156 reserved_flags1:1,
157 oam_flag:1;
158#endif
159 u8 reserved_flags3;
160 u8 reserved_flags4;
161 u8 next_protocol;
162 __be32 vx_vni;
163};
164
165/* VXLAN-GPE header flags. */
166#define VXLAN_HF_VER cpu_to_be32(BIT(29) | BIT(28))
167#define VXLAN_HF_NP cpu_to_be32(BIT(26))
168#define VXLAN_HF_OAM cpu_to_be32(BIT(24))
169
170#define VXLAN_GPE_USED_BITS (VXLAN_HF_VER | VXLAN_HF_NP | VXLAN_HF_OAM | \
171 cpu_to_be32(0xff))
172
Thomas Graf35114942015-01-15 03:53:55 +0100173struct vxlan_metadata {
Thomas Graf35114942015-01-15 03:53:55 +0100174 u32 gbp;
175};
176
Pravin B Shelar012a5722013-08-19 11:23:07 -0700177/* per UDP socket information */
178struct vxlan_sock {
179 struct hlist_node hlist;
Pravin B Shelar012a5722013-08-19 11:23:07 -0700180 struct socket *sock;
Pravin B Shelar012a5722013-08-19 11:23:07 -0700181 struct hlist_head vni_list[VNI_HASH_SIZE];
Reshetova, Elena66af8462017-07-04 15:52:59 +0300182 refcount_t refcnt;
Tom Herbertdfd86452015-01-12 17:00:38 -0800183 u32 flags;
Pravin B Shelar012a5722013-08-19 11:23:07 -0700184};
185
Thomas Graf0dfbdf42015-07-21 10:44:02 +0200186union vxlan_addr {
187 struct sockaddr_in sin;
188 struct sockaddr_in6 sin6;
189 struct sockaddr sa;
190};
191
192struct vxlan_rdst {
193 union vxlan_addr remote_ip;
194 __be16 remote_port;
Petr Machata0efe1172018-10-17 08:53:26 +0000195 u8 offloaded:1;
Jiri Benc54bfd872016-02-16 21:58:58 +0100196 __be32 remote_vni;
Thomas Graf0dfbdf42015-07-21 10:44:02 +0200197 u32 remote_ifindex;
198 struct list_head list;
199 struct rcu_head rcu;
Paolo Abeni0c1d70a2016-02-12 15:43:56 +0100200 struct dst_cache dst_cache;
Thomas Graf0dfbdf42015-07-21 10:44:02 +0200201};
202
203struct vxlan_config {
204 union vxlan_addr remote_ip;
205 union vxlan_addr saddr;
Jiri Benc54bfd872016-02-16 21:58:58 +0100206 __be32 vni;
Thomas Graf0dfbdf42015-07-21 10:44:02 +0200207 int remote_ifindex;
208 int mtu;
209 __be16 dst_port;
Jiri Benc0e715d62016-02-02 18:09:11 +0100210 u16 port_min;
211 u16 port_max;
212 u8 tos;
213 u8 ttl;
Daniel Borkmanne7f70af2016-03-09 03:00:03 +0100214 __be32 label;
Thomas Graf0dfbdf42015-07-21 10:44:02 +0200215 u32 flags;
216 unsigned long age_interval;
217 unsigned int addrmax;
218 bool no_share;
219};
220
Jiri Benc69e76662017-07-02 19:00:57 +0200221struct vxlan_dev_node {
222 struct hlist_node hlist;
223 struct vxlan_dev *vxlan;
224};
225
Thomas Graf0dfbdf42015-07-21 10:44:02 +0200226/* Pseudo network device */
227struct vxlan_dev {
Jiri Benc69e76662017-07-02 19:00:57 +0200228 struct vxlan_dev_node hlist4; /* vni hash table for IPv4 socket */
229#if IS_ENABLED(CONFIG_IPV6)
230 struct vxlan_dev_node hlist6; /* vni hash table for IPv6 socket */
231#endif
Thomas Graf0dfbdf42015-07-21 10:44:02 +0200232 struct list_head next; /* vxlan's per namespace list */
pravin shelarc6fcc4f2016-10-28 09:59:15 -0700233 struct vxlan_sock __rcu *vn4_sock; /* listening socket for IPv4 */
Jiri Bencb1be00a2015-09-24 13:50:02 +0200234#if IS_ENABLED(CONFIG_IPV6)
pravin shelarc6fcc4f2016-10-28 09:59:15 -0700235 struct vxlan_sock __rcu *vn6_sock; /* listening socket for IPv6 */
Jiri Bencb1be00a2015-09-24 13:50:02 +0200236#endif
Thomas Graf0dfbdf42015-07-21 10:44:02 +0200237 struct net_device *dev;
238 struct net *net; /* netns for packet i/o */
239 struct vxlan_rdst default_dst; /* default destination */
Thomas Graf0dfbdf42015-07-21 10:44:02 +0200240
241 struct timer_list age_timer;
242 spinlock_t hash_lock;
243 unsigned int addrcnt;
Tom Herbert58ce31c2015-08-19 17:07:33 -0700244 struct gro_cells gro_cells;
Thomas Graf0dfbdf42015-07-21 10:44:02 +0200245
246 struct vxlan_config cfg;
247
248 struct hlist_head fdb_head[FDB_HASH_SIZE];
249};
250
Tom Herbert359a0ea2014-06-04 17:20:29 -0700251#define VXLAN_F_LEARN 0x01
252#define VXLAN_F_PROXY 0x02
253#define VXLAN_F_RSC 0x04
254#define VXLAN_F_L2MISS 0x08
255#define VXLAN_F_L3MISS 0x10
256#define VXLAN_F_IPV6 0x20
Alexander Duyck6ceb31c2016-02-19 11:26:31 -0800257#define VXLAN_F_UDP_ZERO_CSUM_TX 0x40
Tom Herbert359a0ea2014-06-04 17:20:29 -0700258#define VXLAN_F_UDP_ZERO_CSUM6_TX 0x80
259#define VXLAN_F_UDP_ZERO_CSUM6_RX 0x100
Tom Herbertdfd86452015-01-12 17:00:38 -0800260#define VXLAN_F_REMCSUM_TX 0x200
261#define VXLAN_F_REMCSUM_RX 0x400
Thomas Graf35114942015-01-15 03:53:55 +0100262#define VXLAN_F_GBP 0x800
Tom Herbert0ace2ca2015-02-10 16:30:32 -0800263#define VXLAN_F_REMCSUM_NOPARTIAL 0x1000
Thomas Grafee122c72015-07-21 10:43:58 +0200264#define VXLAN_F_COLLECT_METADATA 0x2000
Jiri Bence1e53142016-04-05 14:47:13 +0200265#define VXLAN_F_GPE 0x4000
Matthias Schiffer0f22a3c2017-06-19 10:03:58 +0200266#define VXLAN_F_IPV6_LINKLOCAL 0x8000
Hangbin Liu72f6d712018-04-17 14:11:28 +0800267#define VXLAN_F_TTL_INHERIT 0x10000
Tom Herbert359a0ea2014-06-04 17:20:29 -0700268
Simon Hormand299ce12015-03-12 11:00:10 +0900269/* Flags that are used in the receive path. These flags must match in
Tom Herbertaf33c1a2015-01-20 11:23:05 -0800270 * order for a socket to be shareable
271 */
272#define VXLAN_F_RCV_FLAGS (VXLAN_F_GBP | \
Jiri Bence1e53142016-04-05 14:47:13 +0200273 VXLAN_F_GPE | \
Tom Herbertaf33c1a2015-01-20 11:23:05 -0800274 VXLAN_F_UDP_ZERO_CSUM6_RX | \
Tom Herbert0ace2ca2015-02-10 16:30:32 -0800275 VXLAN_F_REMCSUM_RX | \
Thomas Grafee122c72015-07-21 10:43:58 +0200276 VXLAN_F_REMCSUM_NOPARTIAL | \
Alexei Starovoitovda8b43c2015-08-04 22:51:07 -0700277 VXLAN_F_COLLECT_METADATA)
Thomas Grafac5132d2015-01-15 03:53:56 +0100278
Jiri Bence1e53142016-04-05 14:47:13 +0200279/* Flags that can be set together with VXLAN_F_GPE. */
280#define VXLAN_F_ALLOWED_GPE (VXLAN_F_GPE | \
281 VXLAN_F_IPV6 | \
Matthias Schiffer0f22a3c2017-06-19 10:03:58 +0200282 VXLAN_F_IPV6_LINKLOCAL | \
Jiri Bence1e53142016-04-05 14:47:13 +0200283 VXLAN_F_UDP_ZERO_CSUM_TX | \
284 VXLAN_F_UDP_ZERO_CSUM6_TX | \
285 VXLAN_F_UDP_ZERO_CSUM6_RX | \
286 VXLAN_F_COLLECT_METADATA)
287
Thomas Graf0dfbdf42015-07-21 10:44:02 +0200288struct net_device *vxlan_dev_create(struct net *net, const char *name,
289 u8 name_assign_type, struct vxlan_config *conf);
290
Jesse Gross5f352272014-12-23 22:37:26 -0800291static inline netdev_features_t vxlan_features_check(struct sk_buff *skb,
292 netdev_features_t features)
Joe Stringer11bf7822014-11-17 16:24:54 -0800293{
Jesse Gross5f352272014-12-23 22:37:26 -0800294 u8 l4_hdr = 0;
295
296 if (!skb->encapsulation)
297 return features;
298
299 switch (vlan_get_protocol(skb)) {
300 case htons(ETH_P_IP):
301 l4_hdr = ip_hdr(skb)->protocol;
302 break;
303 case htons(ETH_P_IPV6):
304 l4_hdr = ipv6_hdr(skb)->nexthdr;
305 break;
306 default:
Luis de Bethencourt5ef7e0b2018-01-16 15:03:32 +0000307 return features;
Jesse Gross5f352272014-12-23 22:37:26 -0800308 }
309
310 if ((l4_hdr == IPPROTO_UDP) &&
Joe Stringer11bf7822014-11-17 16:24:54 -0800311 (skb->inner_protocol_type != ENCAP_TYPE_ETHER ||
312 skb->inner_protocol != htons(ETH_P_TEB) ||
313 (skb_inner_mac_header(skb) - skb_transport_header(skb) !=
Alexander Duyckaf67eb92016-05-02 09:25:16 -0700314 sizeof(struct udphdr) + sizeof(struct vxlanhdr)) ||
315 (skb->ip_summed != CHECKSUM_NONE &&
316 !can_checksum_protocol(features, inner_eth_hdr(skb)->h_proto))))
Tom Herberta1882222015-12-14 11:19:43 -0800317 return features & ~(NETIF_F_CSUM_MASK | NETIF_F_GSO_MASK);
Joe Stringer11bf7822014-11-17 16:24:54 -0800318
Jesse Gross5f352272014-12-23 22:37:26 -0800319 return features;
Joe Stringer11bf7822014-11-17 16:24:54 -0800320}
Joe Stringer23e62de2014-11-13 16:38:12 -0800321
Joseph Gasparakise6cd9882013-10-24 06:27:10 +0000322/* IP header + UDP + VXLAN + Ethernet header */
323#define VXLAN_HEADROOM (20 + 8 + 8 + 14)
324/* IPv6 header + UDP + VXLAN + Ethernet header */
325#define VXLAN6_HEADROOM (40 + 8 + 8 + 14)
326
Jiri Bencd4ac05f2016-02-16 21:58:57 +0100327static inline struct vxlanhdr *vxlan_hdr(struct sk_buff *skb)
328{
329 return (struct vxlanhdr *)(udp_hdr(skb) + 1);
330}
331
Jiri Benc54bfd872016-02-16 21:58:58 +0100332static inline __be32 vxlan_vni(__be32 vni_field)
333{
334#if defined(__BIG_ENDIAN)
Jiri Benc5692d7e2016-03-21 17:39:18 +0100335 return (__force __be32)((__force u32)vni_field >> 8);
Jiri Benc54bfd872016-02-16 21:58:58 +0100336#else
Jiri Benc5692d7e2016-03-21 17:39:18 +0100337 return (__force __be32)((__force u32)(vni_field & VXLAN_VNI_MASK) << 8);
Jiri Benc54bfd872016-02-16 21:58:58 +0100338#endif
339}
340
341static inline __be32 vxlan_vni_field(__be32 vni)
342{
343#if defined(__BIG_ENDIAN)
Jiri Benc5692d7e2016-03-21 17:39:18 +0100344 return (__force __be32)((__force u32)vni << 8);
Jiri Benc54bfd872016-02-16 21:58:58 +0100345#else
Jiri Benc5692d7e2016-03-21 17:39:18 +0100346 return (__force __be32)((__force u32)vni >> 8);
Jiri Benc54bfd872016-02-16 21:58:58 +0100347#endif
348}
349
Jiri Benc54bfd872016-02-16 21:58:58 +0100350static inline size_t vxlan_rco_start(__be32 vni_field)
351{
352 return be32_to_cpu(vni_field & VXLAN_RCO_MASK) << VXLAN_RCO_SHIFT;
353}
354
355static inline size_t vxlan_rco_offset(__be32 vni_field)
356{
357 return (vni_field & VXLAN_RCO_UDP) ?
358 offsetof(struct udphdr, check) :
359 offsetof(struct tcphdr, check);
360}
361
362static inline __be32 vxlan_compute_rco(unsigned int start, unsigned int offset)
363{
364 __be32 vni_field = cpu_to_be32(start >> VXLAN_RCO_SHIFT);
365
366 if (offset == offsetof(struct udphdr, check))
367 vni_field |= VXLAN_RCO_UDP;
368 return vni_field;
369}
370
Jiri Benc705cc622015-08-20 13:56:28 +0200371static inline unsigned short vxlan_get_sk_family(struct vxlan_sock *vs)
372{
373 return vs->sock->sk->sk_family;
374}
Jiri Benc48e92c42015-08-25 18:36:50 +0200375
Ido Schimmelcca45e02018-10-17 08:53:10 +0000376#if IS_ENABLED(CONFIG_IPV6)
377
378static inline bool vxlan_addr_any(const union vxlan_addr *ipa)
379{
380 if (ipa->sa.sa_family == AF_INET6)
381 return ipv6_addr_any(&ipa->sin6.sin6_addr);
382 else
383 return ipa->sin.sin_addr.s_addr == htonl(INADDR_ANY);
384}
385
386static inline bool vxlan_addr_multicast(const union vxlan_addr *ipa)
387{
388 if (ipa->sa.sa_family == AF_INET6)
389 return ipv6_addr_is_multicast(&ipa->sin6.sin6_addr);
390 else
391 return IN_MULTICAST(ntohl(ipa->sin.sin_addr.s_addr));
392}
393
394#else /* !IS_ENABLED(CONFIG_IPV6) */
395
396static inline bool vxlan_addr_any(const union vxlan_addr *ipa)
397{
398 return ipa->sin.sin_addr.s_addr == htonl(INADDR_ANY);
399}
400
401static inline bool vxlan_addr_multicast(const union vxlan_addr *ipa)
402{
403 return IN_MULTICAST(ntohl(ipa->sin.sin_addr.s_addr));
404}
405
406#endif /* IS_ENABLED(CONFIG_IPV6) */
407
Ido Schimmel5ff4ff42018-10-17 08:53:20 +0000408static inline bool netif_is_vxlan(const struct net_device *dev)
409{
410 return dev->rtnl_link_ops &&
411 !strcmp(dev->rtnl_link_ops->kind, "vxlan");
412}
413
Petr Machata9a997352018-10-17 08:53:22 +0000414struct switchdev_notifier_vxlan_fdb_info {
415 struct switchdev_notifier_info info; /* must be first */
416 union vxlan_addr remote_ip;
417 __be16 remote_port;
418 __be32 remote_vni;
419 u32 remote_ifindex;
420 u8 eth_addr[ETH_ALEN];
421 __be32 vni;
Petr Machata0efe1172018-10-17 08:53:26 +0000422 bool offloaded;
Petr Machata9a997352018-10-17 08:53:22 +0000423};
424
Petr Machata1941f1d2018-10-17 08:53:24 +0000425#if IS_ENABLED(CONFIG_VXLAN)
426int vxlan_fdb_find_uc(struct net_device *dev, const u8 *mac, __be32 vni,
427 struct switchdev_notifier_vxlan_fdb_info *fdb_info);
428#else
429static inline int
430vxlan_fdb_find_uc(struct net_device *dev, const u8 *mac, __be32 vni,
431 struct switchdev_notifier_vxlan_fdb_info *fdb_info)
432{
433 return -ENOENT;
434}
435#endif
436
Jiri Benc48e92c42015-08-25 18:36:50 +0200437#endif