stephen hemminger | d342894 | 2012-10-01 12:32:35 +0000 | [diff] [blame] | 1 | /* |
Rami Rosen | eb5ce43 | 2012-11-13 13:29:15 +0000 | [diff] [blame] | 2 | * VXLAN: Virtual eXtensible Local Area Network |
stephen hemminger | d342894 | 2012-10-01 12:32:35 +0000 | [diff] [blame] | 3 | * |
stephen hemminger | 3b8df3c | 2013-04-27 11:31:52 +0000 | [diff] [blame] | 4 | * Copyright (c) 2012-2013 Vyatta Inc. |
stephen hemminger | d342894 | 2012-10-01 12:32:35 +0000 | [diff] [blame] | 5 | * |
| 6 | * This program is free software; you can redistribute it and/or modify |
| 7 | * it under the terms of the GNU General Public License version 2 as |
| 8 | * published by the Free Software Foundation. |
stephen hemminger | d342894 | 2012-10-01 12:32:35 +0000 | [diff] [blame] | 9 | */ |
| 10 | |
| 11 | #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt |
| 12 | |
| 13 | #include <linux/kernel.h> |
| 14 | #include <linux/types.h> |
| 15 | #include <linux/module.h> |
| 16 | #include <linux/errno.h> |
| 17 | #include <linux/slab.h> |
| 18 | #include <linux/skbuff.h> |
| 19 | #include <linux/rculist.h> |
| 20 | #include <linux/netdevice.h> |
| 21 | #include <linux/in.h> |
| 22 | #include <linux/ip.h> |
| 23 | #include <linux/udp.h> |
| 24 | #include <linux/igmp.h> |
| 25 | #include <linux/etherdevice.h> |
| 26 | #include <linux/if_ether.h> |
Pravin B Shelar | 1eaa817 | 2013-08-19 11:23:29 -0700 | [diff] [blame] | 27 | #include <linux/if_vlan.h> |
stephen hemminger | d342894 | 2012-10-01 12:32:35 +0000 | [diff] [blame] | 28 | #include <linux/hash.h> |
Yan Burman | 1b13c97 | 2013-01-29 23:43:07 +0000 | [diff] [blame] | 29 | #include <linux/ethtool.h> |
David Stevens | e4f67ad | 2012-11-20 02:50:14 +0000 | [diff] [blame] | 30 | #include <net/arp.h> |
| 31 | #include <net/ndisc.h> |
stephen hemminger | d342894 | 2012-10-01 12:32:35 +0000 | [diff] [blame] | 32 | #include <net/ip.h> |
Pravin B Shelar | c544193 | 2013-03-25 14:49:35 +0000 | [diff] [blame] | 33 | #include <net/ip_tunnels.h> |
stephen hemminger | d342894 | 2012-10-01 12:32:35 +0000 | [diff] [blame] | 34 | #include <net/icmp.h> |
| 35 | #include <net/udp.h> |
| 36 | #include <net/rtnetlink.h> |
| 37 | #include <net/route.h> |
| 38 | #include <net/dsfield.h> |
| 39 | #include <net/inet_ecn.h> |
| 40 | #include <net/net_namespace.h> |
| 41 | #include <net/netns/generic.h> |
Pravin B Shelar | 012a572 | 2013-08-19 11:23:07 -0700 | [diff] [blame] | 42 | #include <net/vxlan.h> |
Or Gerlitz | dc01e7d | 2014-01-20 13:59:21 +0200 | [diff] [blame] | 43 | #include <net/protocol.h> |
Cong Wang | e4c7ed4 | 2013-08-31 13:44:33 +0800 | [diff] [blame] | 44 | #if IS_ENABLED(CONFIG_IPV6) |
| 45 | #include <net/ipv6.h> |
| 46 | #include <net/addrconf.h> |
| 47 | #include <net/ip6_tunnel.h> |
Cong Wang | 660d98c | 2013-09-02 10:06:52 +0800 | [diff] [blame] | 48 | #include <net/ip6_checksum.h> |
Cong Wang | e4c7ed4 | 2013-08-31 13:44:33 +0800 | [diff] [blame] | 49 | #endif |
stephen hemminger | d342894 | 2012-10-01 12:32:35 +0000 | [diff] [blame] | 50 | |
| 51 | #define VXLAN_VERSION "0.1" |
| 52 | |
stephen hemminger | 553675f | 2013-05-16 11:35:20 +0000 | [diff] [blame] | 53 | #define PORT_HASH_BITS 8 |
| 54 | #define PORT_HASH_SIZE (1<<PORT_HASH_BITS) |
stephen hemminger | d342894 | 2012-10-01 12:32:35 +0000 | [diff] [blame] | 55 | #define VNI_HASH_BITS 10 |
| 56 | #define VNI_HASH_SIZE (1<<VNI_HASH_BITS) |
| 57 | #define FDB_HASH_BITS 8 |
| 58 | #define FDB_HASH_SIZE (1<<FDB_HASH_BITS) |
| 59 | #define FDB_AGE_DEFAULT 300 /* 5 min */ |
| 60 | #define FDB_AGE_INTERVAL (10 * HZ) /* rescan interval */ |
| 61 | |
| 62 | #define VXLAN_N_VID (1u << 24) |
| 63 | #define VXLAN_VID_MASK (VXLAN_N_VID - 1) |
Pravin B Shelar | 7ce0475 | 2013-08-19 11:22:54 -0700 | [diff] [blame] | 64 | #define VXLAN_HLEN (sizeof(struct udphdr) + sizeof(struct vxlanhdr)) |
stephen hemminger | d342894 | 2012-10-01 12:32:35 +0000 | [diff] [blame] | 65 | |
| 66 | #define VXLAN_FLAGS 0x08000000 /* struct vxlanhdr.vx_flags required value. */ |
| 67 | |
| 68 | /* VXLAN protocol header */ |
| 69 | struct vxlanhdr { |
| 70 | __be32 vx_flags; |
| 71 | __be32 vx_vni; |
| 72 | }; |
| 73 | |
stephen hemminger | 23c578b | 2013-04-27 11:31:53 +0000 | [diff] [blame] | 74 | /* UDP port for VXLAN traffic. |
| 75 | * The IANA assigned port is 4789, but the Linux default is 8472 |
Stephen Hemminger | 234f5b7 | 2013-06-17 14:16:41 -0700 | [diff] [blame] | 76 | * for compatibility with early adopters. |
stephen hemminger | 23c578b | 2013-04-27 11:31:53 +0000 | [diff] [blame] | 77 | */ |
Stephen Hemminger | 9daaa39 | 2013-06-17 14:16:12 -0700 | [diff] [blame] | 78 | static unsigned short vxlan_port __read_mostly = 8472; |
| 79 | module_param_named(udp_port, vxlan_port, ushort, 0444); |
stephen hemminger | d342894 | 2012-10-01 12:32:35 +0000 | [diff] [blame] | 80 | MODULE_PARM_DESC(udp_port, "Destination UDP port"); |
| 81 | |
| 82 | static bool log_ecn_error = true; |
| 83 | module_param(log_ecn_error, bool, 0644); |
| 84 | MODULE_PARM_DESC(log_ecn_error, "Log packets received with corrupted ECN"); |
| 85 | |
Pravin B Shelar | 60d9d4c | 2013-06-20 00:26:31 -0700 | [diff] [blame] | 86 | static int vxlan_net_id; |
stephen hemminger | 553675f | 2013-05-16 11:35:20 +0000 | [diff] [blame] | 87 | |
Mike Rapoport | afbd8ba | 2013-06-25 16:01:51 +0300 | [diff] [blame] | 88 | static const u8 all_zeros_mac[ETH_ALEN]; |
| 89 | |
stephen hemminger | 553675f | 2013-05-16 11:35:20 +0000 | [diff] [blame] | 90 | /* per-network namespace private data for this module */ |
| 91 | struct vxlan_net { |
| 92 | struct list_head vxlan_list; |
| 93 | struct hlist_head sock_list[PORT_HASH_SIZE]; |
Stephen Hemminger | 1c51a91 | 2013-06-17 14:16:11 -0700 | [diff] [blame] | 94 | spinlock_t sock_lock; |
stephen hemminger | 553675f | 2013-05-16 11:35:20 +0000 | [diff] [blame] | 95 | }; |
| 96 | |
Cong Wang | e4c7ed4 | 2013-08-31 13:44:33 +0800 | [diff] [blame] | 97 | union vxlan_addr { |
| 98 | struct sockaddr_in sin; |
| 99 | struct sockaddr_in6 sin6; |
| 100 | struct sockaddr sa; |
| 101 | }; |
| 102 | |
David Stevens | 6681712 | 2013-03-15 04:35:51 +0000 | [diff] [blame] | 103 | struct vxlan_rdst { |
Cong Wang | e4c7ed4 | 2013-08-31 13:44:33 +0800 | [diff] [blame] | 104 | union vxlan_addr remote_ip; |
David Stevens | 6681712 | 2013-03-15 04:35:51 +0000 | [diff] [blame] | 105 | __be16 remote_port; |
| 106 | u32 remote_vni; |
| 107 | u32 remote_ifindex; |
Stephen Hemminger | 3e61aa8 | 2013-06-17 14:16:12 -0700 | [diff] [blame] | 108 | struct list_head list; |
Mike Rapoport | bc7892b | 2013-06-25 16:01:54 +0300 | [diff] [blame] | 109 | struct rcu_head rcu; |
David Stevens | 6681712 | 2013-03-15 04:35:51 +0000 | [diff] [blame] | 110 | }; |
| 111 | |
stephen hemminger | d342894 | 2012-10-01 12:32:35 +0000 | [diff] [blame] | 112 | /* Forwarding table entry */ |
| 113 | struct vxlan_fdb { |
| 114 | struct hlist_node hlist; /* linked list of entries */ |
| 115 | struct rcu_head rcu; |
| 116 | unsigned long updated; /* jiffies */ |
| 117 | unsigned long used; |
Stephen Hemminger | 3e61aa8 | 2013-06-17 14:16:12 -0700 | [diff] [blame] | 118 | struct list_head remotes; |
stephen hemminger | d342894 | 2012-10-01 12:32:35 +0000 | [diff] [blame] | 119 | u16 state; /* see ndm_state */ |
David Stevens | ae88408 | 2013-04-19 00:36:26 +0000 | [diff] [blame] | 120 | u8 flags; /* see ndm_flags */ |
stephen hemminger | d342894 | 2012-10-01 12:32:35 +0000 | [diff] [blame] | 121 | u8 eth_addr[ETH_ALEN]; |
| 122 | }; |
| 123 | |
stephen hemminger | d342894 | 2012-10-01 12:32:35 +0000 | [diff] [blame] | 124 | /* Pseudo network device */ |
| 125 | struct vxlan_dev { |
stephen hemminger | 553675f | 2013-05-16 11:35:20 +0000 | [diff] [blame] | 126 | struct hlist_node hlist; /* vni hash table */ |
| 127 | struct list_head next; /* vxlan's per namespace list */ |
| 128 | struct vxlan_sock *vn_sock; /* listening socket */ |
stephen hemminger | d342894 | 2012-10-01 12:32:35 +0000 | [diff] [blame] | 129 | struct net_device *dev; |
Nicolas Dichtel | f01ec1c | 2014-04-24 10:02:49 +0200 | [diff] [blame] | 130 | struct net *net; /* netns for packet i/o */ |
Atzm Watanabe | c7995c4 | 2013-04-16 02:50:52 +0000 | [diff] [blame] | 131 | struct vxlan_rdst default_dst; /* default destination */ |
Cong Wang | e4c7ed4 | 2013-08-31 13:44:33 +0800 | [diff] [blame] | 132 | union vxlan_addr saddr; /* source address */ |
stephen hemminger | 823aa87 | 2013-04-27 11:31:57 +0000 | [diff] [blame] | 133 | __be16 dst_port; |
stephen hemminger | 05f47d6 | 2012-10-09 20:35:50 +0000 | [diff] [blame] | 134 | __u16 port_min; /* source port range */ |
| 135 | __u16 port_max; |
stephen hemminger | d342894 | 2012-10-01 12:32:35 +0000 | [diff] [blame] | 136 | __u8 tos; /* TOS override */ |
| 137 | __u8 ttl; |
Tom Herbert | 359a0ea | 2014-06-04 17:20:29 -0700 | [diff] [blame] | 138 | u32 flags; /* VXLAN_F_* in vxlan.h */ |
stephen hemminger | d342894 | 2012-10-01 12:32:35 +0000 | [diff] [blame] | 139 | |
Stephen Hemminger | 1c51a91 | 2013-06-17 14:16:11 -0700 | [diff] [blame] | 140 | struct work_struct sock_work; |
stephen hemminger | 3fc2de2 | 2013-07-18 08:40:15 -0700 | [diff] [blame] | 141 | struct work_struct igmp_join; |
| 142 | struct work_struct igmp_leave; |
Stephen Hemminger | 1c51a91 | 2013-06-17 14:16:11 -0700 | [diff] [blame] | 143 | |
stephen hemminger | d342894 | 2012-10-01 12:32:35 +0000 | [diff] [blame] | 144 | unsigned long age_interval; |
| 145 | struct timer_list age_timer; |
| 146 | spinlock_t hash_lock; |
| 147 | unsigned int addrcnt; |
| 148 | unsigned int addrmax; |
stephen hemminger | d342894 | 2012-10-01 12:32:35 +0000 | [diff] [blame] | 149 | |
| 150 | struct hlist_head fdb_head[FDB_HASH_SIZE]; |
| 151 | }; |
| 152 | |
| 153 | /* salt for hash table */ |
| 154 | static u32 vxlan_salt __read_mostly; |
Stephen Hemminger | 758c57d | 2013-06-17 14:16:09 -0700 | [diff] [blame] | 155 | static struct workqueue_struct *vxlan_wq; |
stephen hemminger | d342894 | 2012-10-01 12:32:35 +0000 | [diff] [blame] | 156 | |
Stephen Hemminger | 1c51a91 | 2013-06-17 14:16:11 -0700 | [diff] [blame] | 157 | static void vxlan_sock_work(struct work_struct *work); |
| 158 | |
Cong Wang | e4c7ed4 | 2013-08-31 13:44:33 +0800 | [diff] [blame] | 159 | #if IS_ENABLED(CONFIG_IPV6) |
| 160 | static inline |
| 161 | bool vxlan_addr_equal(const union vxlan_addr *a, const union vxlan_addr *b) |
| 162 | { |
| 163 | if (a->sa.sa_family != b->sa.sa_family) |
| 164 | return false; |
| 165 | if (a->sa.sa_family == AF_INET6) |
| 166 | return ipv6_addr_equal(&a->sin6.sin6_addr, &b->sin6.sin6_addr); |
| 167 | else |
| 168 | return a->sin.sin_addr.s_addr == b->sin.sin_addr.s_addr; |
| 169 | } |
| 170 | |
| 171 | static inline bool vxlan_addr_any(const union vxlan_addr *ipa) |
| 172 | { |
| 173 | if (ipa->sa.sa_family == AF_INET6) |
| 174 | return ipv6_addr_any(&ipa->sin6.sin6_addr); |
| 175 | else |
| 176 | return ipa->sin.sin_addr.s_addr == htonl(INADDR_ANY); |
| 177 | } |
| 178 | |
| 179 | static inline bool vxlan_addr_multicast(const union vxlan_addr *ipa) |
| 180 | { |
| 181 | if (ipa->sa.sa_family == AF_INET6) |
| 182 | return ipv6_addr_is_multicast(&ipa->sin6.sin6_addr); |
| 183 | else |
| 184 | return IN_MULTICAST(ntohl(ipa->sin.sin_addr.s_addr)); |
| 185 | } |
| 186 | |
| 187 | static int vxlan_nla_get_addr(union vxlan_addr *ip, struct nlattr *nla) |
| 188 | { |
| 189 | if (nla_len(nla) >= sizeof(struct in6_addr)) { |
| 190 | nla_memcpy(&ip->sin6.sin6_addr, nla, sizeof(struct in6_addr)); |
| 191 | ip->sa.sa_family = AF_INET6; |
| 192 | return 0; |
| 193 | } else if (nla_len(nla) >= sizeof(__be32)) { |
| 194 | ip->sin.sin_addr.s_addr = nla_get_be32(nla); |
| 195 | ip->sa.sa_family = AF_INET; |
| 196 | return 0; |
| 197 | } else { |
| 198 | return -EAFNOSUPPORT; |
| 199 | } |
| 200 | } |
| 201 | |
| 202 | static int vxlan_nla_put_addr(struct sk_buff *skb, int attr, |
| 203 | const union vxlan_addr *ip) |
| 204 | { |
| 205 | if (ip->sa.sa_family == AF_INET6) |
| 206 | return nla_put(skb, attr, sizeof(struct in6_addr), &ip->sin6.sin6_addr); |
| 207 | else |
| 208 | return nla_put_be32(skb, attr, ip->sin.sin_addr.s_addr); |
| 209 | } |
| 210 | |
| 211 | #else /* !CONFIG_IPV6 */ |
| 212 | |
| 213 | static inline |
| 214 | bool vxlan_addr_equal(const union vxlan_addr *a, const union vxlan_addr *b) |
| 215 | { |
| 216 | return a->sin.sin_addr.s_addr == b->sin.sin_addr.s_addr; |
| 217 | } |
| 218 | |
| 219 | static inline bool vxlan_addr_any(const union vxlan_addr *ipa) |
| 220 | { |
| 221 | return ipa->sin.sin_addr.s_addr == htonl(INADDR_ANY); |
| 222 | } |
| 223 | |
| 224 | static inline bool vxlan_addr_multicast(const union vxlan_addr *ipa) |
| 225 | { |
| 226 | return IN_MULTICAST(ntohl(ipa->sin.sin_addr.s_addr)); |
| 227 | } |
| 228 | |
| 229 | static int vxlan_nla_get_addr(union vxlan_addr *ip, struct nlattr *nla) |
| 230 | { |
| 231 | if (nla_len(nla) >= sizeof(struct in6_addr)) { |
| 232 | return -EAFNOSUPPORT; |
| 233 | } else if (nla_len(nla) >= sizeof(__be32)) { |
| 234 | ip->sin.sin_addr.s_addr = nla_get_be32(nla); |
| 235 | ip->sa.sa_family = AF_INET; |
| 236 | return 0; |
| 237 | } else { |
| 238 | return -EAFNOSUPPORT; |
| 239 | } |
| 240 | } |
| 241 | |
| 242 | static int vxlan_nla_put_addr(struct sk_buff *skb, int attr, |
| 243 | const union vxlan_addr *ip) |
| 244 | { |
| 245 | return nla_put_be32(skb, attr, ip->sin.sin_addr.s_addr); |
| 246 | } |
| 247 | #endif |
| 248 | |
stephen hemminger | 553675f | 2013-05-16 11:35:20 +0000 | [diff] [blame] | 249 | /* Virtual Network hash table head */ |
| 250 | static inline struct hlist_head *vni_head(struct vxlan_sock *vs, u32 id) |
| 251 | { |
| 252 | return &vs->vni_list[hash_32(id, VNI_HASH_BITS)]; |
| 253 | } |
| 254 | |
| 255 | /* Socket hash table head */ |
| 256 | static inline struct hlist_head *vs_head(struct net *net, __be16 port) |
stephen hemminger | d342894 | 2012-10-01 12:32:35 +0000 | [diff] [blame] | 257 | { |
| 258 | struct vxlan_net *vn = net_generic(net, vxlan_net_id); |
| 259 | |
stephen hemminger | 553675f | 2013-05-16 11:35:20 +0000 | [diff] [blame] | 260 | return &vn->sock_list[hash_32(ntohs(port), PORT_HASH_BITS)]; |
| 261 | } |
| 262 | |
Stephen Hemminger | 3e61aa8 | 2013-06-17 14:16:12 -0700 | [diff] [blame] | 263 | /* First remote destination for a forwarding entry. |
| 264 | * Guaranteed to be non-NULL because remotes are never deleted. |
| 265 | */ |
stephen hemminger | 5ca5461 | 2013-08-04 17:17:39 -0700 | [diff] [blame] | 266 | static inline struct vxlan_rdst *first_remote_rcu(struct vxlan_fdb *fdb) |
Stephen Hemminger | 3e61aa8 | 2013-06-17 14:16:12 -0700 | [diff] [blame] | 267 | { |
stephen hemminger | 5ca5461 | 2013-08-04 17:17:39 -0700 | [diff] [blame] | 268 | return list_entry_rcu(fdb->remotes.next, struct vxlan_rdst, list); |
| 269 | } |
| 270 | |
| 271 | static inline struct vxlan_rdst *first_remote_rtnl(struct vxlan_fdb *fdb) |
| 272 | { |
| 273 | return list_first_entry(&fdb->remotes, struct vxlan_rdst, list); |
Stephen Hemminger | 3e61aa8 | 2013-06-17 14:16:12 -0700 | [diff] [blame] | 274 | } |
| 275 | |
stephen hemminger | 553675f | 2013-05-16 11:35:20 +0000 | [diff] [blame] | 276 | /* Find VXLAN socket based on network namespace and UDP port */ |
Pravin B Shelar | 9c2e24e | 2013-08-19 11:22:48 -0700 | [diff] [blame] | 277 | static struct vxlan_sock *vxlan_find_sock(struct net *net, __be16 port) |
stephen hemminger | 553675f | 2013-05-16 11:35:20 +0000 | [diff] [blame] | 278 | { |
| 279 | struct vxlan_sock *vs; |
| 280 | |
| 281 | hlist_for_each_entry_rcu(vs, vs_head(net, port), hlist) { |
| 282 | if (inet_sk(vs->sock->sk)->inet_sport == port) |
| 283 | return vs; |
| 284 | } |
| 285 | return NULL; |
stephen hemminger | d342894 | 2012-10-01 12:32:35 +0000 | [diff] [blame] | 286 | } |
| 287 | |
Pravin B Shelar | 5cfccc5 | 2013-08-19 11:23:02 -0700 | [diff] [blame] | 288 | static struct vxlan_dev *vxlan_vs_find_vni(struct vxlan_sock *vs, u32 id) |
stephen hemminger | d342894 | 2012-10-01 12:32:35 +0000 | [diff] [blame] | 289 | { |
| 290 | struct vxlan_dev *vxlan; |
stephen hemminger | d342894 | 2012-10-01 12:32:35 +0000 | [diff] [blame] | 291 | |
stephen hemminger | 553675f | 2013-05-16 11:35:20 +0000 | [diff] [blame] | 292 | hlist_for_each_entry_rcu(vxlan, vni_head(vs, id), hlist) { |
Atzm Watanabe | c7995c4 | 2013-04-16 02:50:52 +0000 | [diff] [blame] | 293 | if (vxlan->default_dst.remote_vni == id) |
stephen hemminger | d342894 | 2012-10-01 12:32:35 +0000 | [diff] [blame] | 294 | return vxlan; |
| 295 | } |
| 296 | |
| 297 | return NULL; |
| 298 | } |
| 299 | |
Pravin B Shelar | 5cfccc5 | 2013-08-19 11:23:02 -0700 | [diff] [blame] | 300 | /* Look up VNI in a per net namespace table */ |
| 301 | static struct vxlan_dev *vxlan_find_vni(struct net *net, u32 id, __be16 port) |
| 302 | { |
| 303 | struct vxlan_sock *vs; |
| 304 | |
| 305 | vs = vxlan_find_sock(net, port); |
| 306 | if (!vs) |
| 307 | return NULL; |
| 308 | |
| 309 | return vxlan_vs_find_vni(vs, id); |
| 310 | } |
| 311 | |
stephen hemminger | d342894 | 2012-10-01 12:32:35 +0000 | [diff] [blame] | 312 | /* Fill in neighbour message in skbuff. */ |
| 313 | static int vxlan_fdb_info(struct sk_buff *skb, struct vxlan_dev *vxlan, |
Stephen Hemminger | 234f5b7 | 2013-06-17 14:16:41 -0700 | [diff] [blame] | 314 | const struct vxlan_fdb *fdb, |
| 315 | u32 portid, u32 seq, int type, unsigned int flags, |
| 316 | const struct vxlan_rdst *rdst) |
stephen hemminger | d342894 | 2012-10-01 12:32:35 +0000 | [diff] [blame] | 317 | { |
| 318 | unsigned long now = jiffies; |
| 319 | struct nda_cacheinfo ci; |
| 320 | struct nlmsghdr *nlh; |
| 321 | struct ndmsg *ndm; |
David Stevens | e4f67ad | 2012-11-20 02:50:14 +0000 | [diff] [blame] | 322 | bool send_ip, send_eth; |
stephen hemminger | d342894 | 2012-10-01 12:32:35 +0000 | [diff] [blame] | 323 | |
| 324 | nlh = nlmsg_put(skb, portid, seq, type, sizeof(*ndm), flags); |
| 325 | if (nlh == NULL) |
| 326 | return -EMSGSIZE; |
| 327 | |
| 328 | ndm = nlmsg_data(nlh); |
| 329 | memset(ndm, 0, sizeof(*ndm)); |
David Stevens | e4f67ad | 2012-11-20 02:50:14 +0000 | [diff] [blame] | 330 | |
| 331 | send_eth = send_ip = true; |
| 332 | |
| 333 | if (type == RTM_GETNEIGH) { |
| 334 | ndm->ndm_family = AF_INET; |
Cong Wang | e4c7ed4 | 2013-08-31 13:44:33 +0800 | [diff] [blame] | 335 | send_ip = !vxlan_addr_any(&rdst->remote_ip); |
David Stevens | e4f67ad | 2012-11-20 02:50:14 +0000 | [diff] [blame] | 336 | send_eth = !is_zero_ether_addr(fdb->eth_addr); |
| 337 | } else |
| 338 | ndm->ndm_family = AF_BRIDGE; |
stephen hemminger | d342894 | 2012-10-01 12:32:35 +0000 | [diff] [blame] | 339 | ndm->ndm_state = fdb->state; |
| 340 | ndm->ndm_ifindex = vxlan->dev->ifindex; |
David Stevens | ae88408 | 2013-04-19 00:36:26 +0000 | [diff] [blame] | 341 | ndm->ndm_flags = fdb->flags; |
stephen hemminger | d342894 | 2012-10-01 12:32:35 +0000 | [diff] [blame] | 342 | ndm->ndm_type = NDA_DST; |
| 343 | |
David Stevens | e4f67ad | 2012-11-20 02:50:14 +0000 | [diff] [blame] | 344 | if (send_eth && nla_put(skb, NDA_LLADDR, ETH_ALEN, &fdb->eth_addr)) |
stephen hemminger | d342894 | 2012-10-01 12:32:35 +0000 | [diff] [blame] | 345 | goto nla_put_failure; |
| 346 | |
Cong Wang | e4c7ed4 | 2013-08-31 13:44:33 +0800 | [diff] [blame] | 347 | if (send_ip && vxlan_nla_put_addr(skb, NDA_DST, &rdst->remote_ip)) |
David Stevens | 6681712 | 2013-03-15 04:35:51 +0000 | [diff] [blame] | 348 | goto nla_put_failure; |
| 349 | |
stephen hemminger | 823aa87 | 2013-04-27 11:31:57 +0000 | [diff] [blame] | 350 | if (rdst->remote_port && rdst->remote_port != vxlan->dst_port && |
David Stevens | 6681712 | 2013-03-15 04:35:51 +0000 | [diff] [blame] | 351 | nla_put_be16(skb, NDA_PORT, rdst->remote_port)) |
| 352 | goto nla_put_failure; |
Atzm Watanabe | c7995c4 | 2013-04-16 02:50:52 +0000 | [diff] [blame] | 353 | if (rdst->remote_vni != vxlan->default_dst.remote_vni && |
Pravin B Shelar | 60d9d4c | 2013-06-20 00:26:31 -0700 | [diff] [blame] | 354 | nla_put_u32(skb, NDA_VNI, rdst->remote_vni)) |
David Stevens | 6681712 | 2013-03-15 04:35:51 +0000 | [diff] [blame] | 355 | goto nla_put_failure; |
| 356 | if (rdst->remote_ifindex && |
| 357 | nla_put_u32(skb, NDA_IFINDEX, rdst->remote_ifindex)) |
stephen hemminger | d342894 | 2012-10-01 12:32:35 +0000 | [diff] [blame] | 358 | goto nla_put_failure; |
| 359 | |
| 360 | ci.ndm_used = jiffies_to_clock_t(now - fdb->used); |
| 361 | ci.ndm_confirmed = 0; |
| 362 | ci.ndm_updated = jiffies_to_clock_t(now - fdb->updated); |
| 363 | ci.ndm_refcnt = 0; |
| 364 | |
| 365 | if (nla_put(skb, NDA_CACHEINFO, sizeof(ci), &ci)) |
| 366 | goto nla_put_failure; |
| 367 | |
| 368 | return nlmsg_end(skb, nlh); |
| 369 | |
| 370 | nla_put_failure: |
| 371 | nlmsg_cancel(skb, nlh); |
| 372 | return -EMSGSIZE; |
| 373 | } |
| 374 | |
| 375 | static inline size_t vxlan_nlmsg_size(void) |
| 376 | { |
| 377 | return NLMSG_ALIGN(sizeof(struct ndmsg)) |
| 378 | + nla_total_size(ETH_ALEN) /* NDA_LLADDR */ |
Cong Wang | e4c7ed4 | 2013-08-31 13:44:33 +0800 | [diff] [blame] | 379 | + nla_total_size(sizeof(struct in6_addr)) /* NDA_DST */ |
stephen hemminger | 73cf331 | 2013-04-27 11:31:54 +0000 | [diff] [blame] | 380 | + nla_total_size(sizeof(__be16)) /* NDA_PORT */ |
David Stevens | 6681712 | 2013-03-15 04:35:51 +0000 | [diff] [blame] | 381 | + nla_total_size(sizeof(__be32)) /* NDA_VNI */ |
| 382 | + nla_total_size(sizeof(__u32)) /* NDA_IFINDEX */ |
stephen hemminger | d342894 | 2012-10-01 12:32:35 +0000 | [diff] [blame] | 383 | + nla_total_size(sizeof(struct nda_cacheinfo)); |
| 384 | } |
| 385 | |
Nicolas Dichtel | 9e4b93f | 2014-04-22 15:01:30 +0200 | [diff] [blame] | 386 | static void vxlan_fdb_notify(struct vxlan_dev *vxlan, struct vxlan_fdb *fdb, |
| 387 | struct vxlan_rdst *rd, int type) |
stephen hemminger | d342894 | 2012-10-01 12:32:35 +0000 | [diff] [blame] | 388 | { |
| 389 | struct net *net = dev_net(vxlan->dev); |
| 390 | struct sk_buff *skb; |
| 391 | int err = -ENOBUFS; |
| 392 | |
| 393 | skb = nlmsg_new(vxlan_nlmsg_size(), GFP_ATOMIC); |
| 394 | if (skb == NULL) |
| 395 | goto errout; |
| 396 | |
Nicolas Dichtel | 9e4b93f | 2014-04-22 15:01:30 +0200 | [diff] [blame] | 397 | err = vxlan_fdb_info(skb, vxlan, fdb, 0, 0, type, 0, rd); |
stephen hemminger | d342894 | 2012-10-01 12:32:35 +0000 | [diff] [blame] | 398 | if (err < 0) { |
| 399 | /* -EMSGSIZE implies BUG in vxlan_nlmsg_size() */ |
| 400 | WARN_ON(err == -EMSGSIZE); |
| 401 | kfree_skb(skb); |
| 402 | goto errout; |
| 403 | } |
| 404 | |
| 405 | rtnl_notify(skb, net, 0, RTNLGRP_NEIGH, NULL, GFP_ATOMIC); |
| 406 | return; |
| 407 | errout: |
| 408 | if (err < 0) |
| 409 | rtnl_set_sk_err(net, RTNLGRP_NEIGH, err); |
| 410 | } |
| 411 | |
Cong Wang | e4c7ed4 | 2013-08-31 13:44:33 +0800 | [diff] [blame] | 412 | static void vxlan_ip_miss(struct net_device *dev, union vxlan_addr *ipa) |
David Stevens | e4f67ad | 2012-11-20 02:50:14 +0000 | [diff] [blame] | 413 | { |
| 414 | struct vxlan_dev *vxlan = netdev_priv(dev); |
Stephen Hemminger | bb3fd68 | 2013-06-17 14:16:40 -0700 | [diff] [blame] | 415 | struct vxlan_fdb f = { |
| 416 | .state = NUD_STALE, |
| 417 | }; |
| 418 | struct vxlan_rdst remote = { |
Cong Wang | e4c7ed4 | 2013-08-31 13:44:33 +0800 | [diff] [blame] | 419 | .remote_ip = *ipa, /* goes to NDA_DST */ |
Stephen Hemminger | bb3fd68 | 2013-06-17 14:16:40 -0700 | [diff] [blame] | 420 | .remote_vni = VXLAN_N_VID, |
| 421 | }; |
Stephen Hemminger | 3e61aa8 | 2013-06-17 14:16:12 -0700 | [diff] [blame] | 422 | |
Nicolas Dichtel | 9e4b93f | 2014-04-22 15:01:30 +0200 | [diff] [blame] | 423 | vxlan_fdb_notify(vxlan, &f, &remote, RTM_GETNEIGH); |
David Stevens | e4f67ad | 2012-11-20 02:50:14 +0000 | [diff] [blame] | 424 | } |
| 425 | |
| 426 | static void vxlan_fdb_miss(struct vxlan_dev *vxlan, const u8 eth_addr[ETH_ALEN]) |
| 427 | { |
Stephen Hemminger | bb3fd68 | 2013-06-17 14:16:40 -0700 | [diff] [blame] | 428 | struct vxlan_fdb f = { |
| 429 | .state = NUD_STALE, |
| 430 | }; |
Nicolas Dichtel | 9e4b93f | 2014-04-22 15:01:30 +0200 | [diff] [blame] | 431 | struct vxlan_rdst remote = { }; |
David Stevens | e4f67ad | 2012-11-20 02:50:14 +0000 | [diff] [blame] | 432 | |
David Stevens | e4f67ad | 2012-11-20 02:50:14 +0000 | [diff] [blame] | 433 | memcpy(f.eth_addr, eth_addr, ETH_ALEN); |
| 434 | |
Nicolas Dichtel | 9e4b93f | 2014-04-22 15:01:30 +0200 | [diff] [blame] | 435 | vxlan_fdb_notify(vxlan, &f, &remote, RTM_GETNEIGH); |
David Stevens | e4f67ad | 2012-11-20 02:50:14 +0000 | [diff] [blame] | 436 | } |
| 437 | |
stephen hemminger | d342894 | 2012-10-01 12:32:35 +0000 | [diff] [blame] | 438 | /* Hash Ethernet address */ |
| 439 | static u32 eth_hash(const unsigned char *addr) |
| 440 | { |
| 441 | u64 value = get_unaligned((u64 *)addr); |
| 442 | |
| 443 | /* only want 6 bytes */ |
| 444 | #ifdef __BIG_ENDIAN |
stephen hemminger | d342894 | 2012-10-01 12:32:35 +0000 | [diff] [blame] | 445 | value >>= 16; |
stephen hemminger | 321fb99 | 2012-10-09 20:35:47 +0000 | [diff] [blame] | 446 | #else |
| 447 | value <<= 16; |
stephen hemminger | d342894 | 2012-10-01 12:32:35 +0000 | [diff] [blame] | 448 | #endif |
| 449 | return hash_64(value, FDB_HASH_BITS); |
| 450 | } |
| 451 | |
| 452 | /* Hash chain to use given mac address */ |
| 453 | static inline struct hlist_head *vxlan_fdb_head(struct vxlan_dev *vxlan, |
| 454 | const u8 *mac) |
| 455 | { |
| 456 | return &vxlan->fdb_head[eth_hash(mac)]; |
| 457 | } |
| 458 | |
| 459 | /* Look up Ethernet address in forwarding table */ |
Sridhar Samudrala | 014be2c | 2013-05-17 06:39:07 +0000 | [diff] [blame] | 460 | static struct vxlan_fdb *__vxlan_find_mac(struct vxlan_dev *vxlan, |
stephen hemminger | d342894 | 2012-10-01 12:32:35 +0000 | [diff] [blame] | 461 | const u8 *mac) |
stephen hemminger | d342894 | 2012-10-01 12:32:35 +0000 | [diff] [blame] | 462 | { |
| 463 | struct hlist_head *head = vxlan_fdb_head(vxlan, mac); |
| 464 | struct vxlan_fdb *f; |
stephen hemminger | d342894 | 2012-10-01 12:32:35 +0000 | [diff] [blame] | 465 | |
Sasha Levin | b67bfe0 | 2013-02-27 17:06:00 -0800 | [diff] [blame] | 466 | hlist_for_each_entry_rcu(f, head, hlist) { |
Joe Perches | 7367d0b | 2013-09-01 11:51:23 -0700 | [diff] [blame] | 467 | if (ether_addr_equal(mac, f->eth_addr)) |
stephen hemminger | d342894 | 2012-10-01 12:32:35 +0000 | [diff] [blame] | 468 | return f; |
| 469 | } |
| 470 | |
| 471 | return NULL; |
| 472 | } |
| 473 | |
Sridhar Samudrala | 014be2c | 2013-05-17 06:39:07 +0000 | [diff] [blame] | 474 | static struct vxlan_fdb *vxlan_find_mac(struct vxlan_dev *vxlan, |
| 475 | const u8 *mac) |
| 476 | { |
| 477 | struct vxlan_fdb *f; |
| 478 | |
| 479 | f = __vxlan_find_mac(vxlan, mac); |
| 480 | if (f) |
| 481 | f->used = jiffies; |
| 482 | |
| 483 | return f; |
| 484 | } |
| 485 | |
Mike Rapoport | a5e7c10 | 2013-06-25 16:01:52 +0300 | [diff] [blame] | 486 | /* caller should hold vxlan->hash_lock */ |
| 487 | static struct vxlan_rdst *vxlan_fdb_find_rdst(struct vxlan_fdb *f, |
Cong Wang | e4c7ed4 | 2013-08-31 13:44:33 +0800 | [diff] [blame] | 488 | union vxlan_addr *ip, __be16 port, |
Mike Rapoport | a5e7c10 | 2013-06-25 16:01:52 +0300 | [diff] [blame] | 489 | __u32 vni, __u32 ifindex) |
| 490 | { |
| 491 | struct vxlan_rdst *rd; |
| 492 | |
| 493 | list_for_each_entry(rd, &f->remotes, list) { |
Cong Wang | e4c7ed4 | 2013-08-31 13:44:33 +0800 | [diff] [blame] | 494 | if (vxlan_addr_equal(&rd->remote_ip, ip) && |
Mike Rapoport | a5e7c10 | 2013-06-25 16:01:52 +0300 | [diff] [blame] | 495 | rd->remote_port == port && |
| 496 | rd->remote_vni == vni && |
| 497 | rd->remote_ifindex == ifindex) |
| 498 | return rd; |
| 499 | } |
| 500 | |
| 501 | return NULL; |
| 502 | } |
| 503 | |
Thomas Richter | 906dc18 | 2013-07-19 17:20:07 +0200 | [diff] [blame] | 504 | /* Replace destination of unicast mac */ |
| 505 | static int vxlan_fdb_replace(struct vxlan_fdb *f, |
Cong Wang | e4c7ed4 | 2013-08-31 13:44:33 +0800 | [diff] [blame] | 506 | union vxlan_addr *ip, __be16 port, __u32 vni, __u32 ifindex) |
Thomas Richter | 906dc18 | 2013-07-19 17:20:07 +0200 | [diff] [blame] | 507 | { |
| 508 | struct vxlan_rdst *rd; |
| 509 | |
| 510 | rd = vxlan_fdb_find_rdst(f, ip, port, vni, ifindex); |
| 511 | if (rd) |
| 512 | return 0; |
| 513 | |
| 514 | rd = list_first_entry_or_null(&f->remotes, struct vxlan_rdst, list); |
| 515 | if (!rd) |
| 516 | return 0; |
Cong Wang | e4c7ed4 | 2013-08-31 13:44:33 +0800 | [diff] [blame] | 517 | rd->remote_ip = *ip; |
Thomas Richter | 906dc18 | 2013-07-19 17:20:07 +0200 | [diff] [blame] | 518 | rd->remote_port = port; |
| 519 | rd->remote_vni = vni; |
| 520 | rd->remote_ifindex = ifindex; |
| 521 | return 1; |
| 522 | } |
| 523 | |
David Stevens | 6681712 | 2013-03-15 04:35:51 +0000 | [diff] [blame] | 524 | /* Add/update destinations for multicast */ |
| 525 | static int vxlan_fdb_append(struct vxlan_fdb *f, |
Nicolas Dichtel | 9e4b93f | 2014-04-22 15:01:30 +0200 | [diff] [blame] | 526 | union vxlan_addr *ip, __be16 port, __u32 vni, |
| 527 | __u32 ifindex, struct vxlan_rdst **rdp) |
David Stevens | 6681712 | 2013-03-15 04:35:51 +0000 | [diff] [blame] | 528 | { |
Stephen Hemminger | 3e61aa8 | 2013-06-17 14:16:12 -0700 | [diff] [blame] | 529 | struct vxlan_rdst *rd; |
David Stevens | 6681712 | 2013-03-15 04:35:51 +0000 | [diff] [blame] | 530 | |
Mike Rapoport | a5e7c10 | 2013-06-25 16:01:52 +0300 | [diff] [blame] | 531 | rd = vxlan_fdb_find_rdst(f, ip, port, vni, ifindex); |
| 532 | if (rd) |
| 533 | return 0; |
Stephen Hemminger | 3e61aa8 | 2013-06-17 14:16:12 -0700 | [diff] [blame] | 534 | |
David Stevens | 6681712 | 2013-03-15 04:35:51 +0000 | [diff] [blame] | 535 | rd = kmalloc(sizeof(*rd), GFP_ATOMIC); |
| 536 | if (rd == NULL) |
| 537 | return -ENOBUFS; |
Cong Wang | e4c7ed4 | 2013-08-31 13:44:33 +0800 | [diff] [blame] | 538 | rd->remote_ip = *ip; |
David Stevens | 6681712 | 2013-03-15 04:35:51 +0000 | [diff] [blame] | 539 | rd->remote_port = port; |
| 540 | rd->remote_vni = vni; |
| 541 | rd->remote_ifindex = ifindex; |
Stephen Hemminger | 3e61aa8 | 2013-06-17 14:16:12 -0700 | [diff] [blame] | 542 | |
| 543 | list_add_tail_rcu(&rd->list, &f->remotes); |
| 544 | |
Nicolas Dichtel | 9e4b93f | 2014-04-22 15:01:30 +0200 | [diff] [blame] | 545 | *rdp = rd; |
David Stevens | 6681712 | 2013-03-15 04:35:51 +0000 | [diff] [blame] | 546 | return 1; |
| 547 | } |
| 548 | |
Or Gerlitz | dc01e7d | 2014-01-20 13:59:21 +0200 | [diff] [blame] | 549 | static struct sk_buff **vxlan_gro_receive(struct sk_buff **head, struct sk_buff *skb) |
| 550 | { |
| 551 | struct sk_buff *p, **pp = NULL; |
| 552 | struct vxlanhdr *vh, *vh2; |
| 553 | struct ethhdr *eh, *eh2; |
| 554 | unsigned int hlen, off_vx, off_eth; |
| 555 | const struct packet_offload *ptype; |
| 556 | __be16 type; |
| 557 | int flush = 1; |
| 558 | |
| 559 | off_vx = skb_gro_offset(skb); |
| 560 | hlen = off_vx + sizeof(*vh); |
| 561 | vh = skb_gro_header_fast(skb, off_vx); |
| 562 | if (skb_gro_header_hard(skb, hlen)) { |
| 563 | vh = skb_gro_header_slow(skb, hlen, off_vx); |
| 564 | if (unlikely(!vh)) |
| 565 | goto out; |
| 566 | } |
| 567 | skb_gro_pull(skb, sizeof(struct vxlanhdr)); /* pull vxlan header */ |
Tom Herbert | 6bae1d4 | 2014-06-10 18:54:26 -0700 | [diff] [blame] | 568 | skb_gro_postpull_rcsum(skb, vh, sizeof(struct vxlanhdr)); |
Or Gerlitz | dc01e7d | 2014-01-20 13:59:21 +0200 | [diff] [blame] | 569 | |
| 570 | off_eth = skb_gro_offset(skb); |
| 571 | hlen = off_eth + sizeof(*eh); |
| 572 | eh = skb_gro_header_fast(skb, off_eth); |
| 573 | if (skb_gro_header_hard(skb, hlen)) { |
| 574 | eh = skb_gro_header_slow(skb, hlen, off_eth); |
| 575 | if (unlikely(!eh)) |
| 576 | goto out; |
| 577 | } |
| 578 | |
| 579 | flush = 0; |
| 580 | |
| 581 | for (p = *head; p; p = p->next) { |
| 582 | if (!NAPI_GRO_CB(p)->same_flow) |
| 583 | continue; |
| 584 | |
| 585 | vh2 = (struct vxlanhdr *)(p->data + off_vx); |
| 586 | eh2 = (struct ethhdr *)(p->data + off_eth); |
| 587 | if (vh->vx_vni != vh2->vx_vni || compare_ether_header(eh, eh2)) { |
| 588 | NAPI_GRO_CB(p)->same_flow = 0; |
| 589 | continue; |
| 590 | } |
Or Gerlitz | dc01e7d | 2014-01-20 13:59:21 +0200 | [diff] [blame] | 591 | } |
| 592 | |
Or Gerlitz | dc01e7d | 2014-01-20 13:59:21 +0200 | [diff] [blame] | 593 | type = eh->h_proto; |
| 594 | |
| 595 | rcu_read_lock(); |
| 596 | ptype = gro_find_receive_by_type(type); |
| 597 | if (ptype == NULL) { |
| 598 | flush = 1; |
| 599 | goto out_unlock; |
| 600 | } |
| 601 | |
| 602 | skb_gro_pull(skb, sizeof(*eh)); /* pull inner eth header */ |
Tom Herbert | 6bae1d4 | 2014-06-10 18:54:26 -0700 | [diff] [blame] | 603 | skb_gro_postpull_rcsum(skb, eh, sizeof(*eh)); |
Or Gerlitz | dc01e7d | 2014-01-20 13:59:21 +0200 | [diff] [blame] | 604 | pp = ptype->callbacks.gro_receive(head, skb); |
| 605 | |
| 606 | out_unlock: |
| 607 | rcu_read_unlock(); |
| 608 | out: |
| 609 | NAPI_GRO_CB(skb)->flush |= flush; |
| 610 | |
| 611 | return pp; |
| 612 | } |
| 613 | |
| 614 | static int vxlan_gro_complete(struct sk_buff *skb, int nhoff) |
| 615 | { |
| 616 | struct ethhdr *eh; |
| 617 | struct packet_offload *ptype; |
| 618 | __be16 type; |
| 619 | int vxlan_len = sizeof(struct vxlanhdr) + sizeof(struct ethhdr); |
| 620 | int err = -ENOSYS; |
| 621 | |
| 622 | eh = (struct ethhdr *)(skb->data + nhoff + sizeof(struct vxlanhdr)); |
| 623 | type = eh->h_proto; |
| 624 | |
| 625 | rcu_read_lock(); |
| 626 | ptype = gro_find_complete_by_type(type); |
| 627 | if (ptype != NULL) |
| 628 | err = ptype->callbacks.gro_complete(skb, nhoff + vxlan_len); |
| 629 | |
| 630 | rcu_read_unlock(); |
| 631 | return err; |
| 632 | } |
| 633 | |
Joseph Gasparakis | 53cf5275 | 2013-09-04 02:13:38 -0700 | [diff] [blame] | 634 | /* Notify netdevs that UDP port started listening */ |
Or Gerlitz | dc01e7d | 2014-01-20 13:59:21 +0200 | [diff] [blame] | 635 | static void vxlan_notify_add_rx_port(struct vxlan_sock *vs) |
Joseph Gasparakis | 53cf5275 | 2013-09-04 02:13:38 -0700 | [diff] [blame] | 636 | { |
| 637 | struct net_device *dev; |
Or Gerlitz | dc01e7d | 2014-01-20 13:59:21 +0200 | [diff] [blame] | 638 | struct sock *sk = vs->sock->sk; |
Joseph Gasparakis | 53cf5275 | 2013-09-04 02:13:38 -0700 | [diff] [blame] | 639 | struct net *net = sock_net(sk); |
| 640 | sa_family_t sa_family = sk->sk_family; |
Joseph Gasparakis | 35e4237 | 2013-09-13 07:34:13 -0700 | [diff] [blame] | 641 | __be16 port = inet_sk(sk)->inet_sport; |
Or Gerlitz | dc01e7d | 2014-01-20 13:59:21 +0200 | [diff] [blame] | 642 | int err; |
| 643 | |
| 644 | if (sa_family == AF_INET) { |
| 645 | err = udp_add_offload(&vs->udp_offloads); |
| 646 | if (err) |
| 647 | pr_warn("vxlan: udp_add_offload failed with status %d\n", err); |
| 648 | } |
Joseph Gasparakis | 53cf5275 | 2013-09-04 02:13:38 -0700 | [diff] [blame] | 649 | |
| 650 | rcu_read_lock(); |
| 651 | for_each_netdev_rcu(net, dev) { |
| 652 | if (dev->netdev_ops->ndo_add_vxlan_port) |
| 653 | dev->netdev_ops->ndo_add_vxlan_port(dev, sa_family, |
| 654 | port); |
| 655 | } |
| 656 | rcu_read_unlock(); |
| 657 | } |
| 658 | |
| 659 | /* Notify netdevs that UDP port is no more listening */ |
Or Gerlitz | dc01e7d | 2014-01-20 13:59:21 +0200 | [diff] [blame] | 660 | static void vxlan_notify_del_rx_port(struct vxlan_sock *vs) |
Joseph Gasparakis | 53cf5275 | 2013-09-04 02:13:38 -0700 | [diff] [blame] | 661 | { |
| 662 | struct net_device *dev; |
Or Gerlitz | dc01e7d | 2014-01-20 13:59:21 +0200 | [diff] [blame] | 663 | struct sock *sk = vs->sock->sk; |
Joseph Gasparakis | 53cf5275 | 2013-09-04 02:13:38 -0700 | [diff] [blame] | 664 | struct net *net = sock_net(sk); |
| 665 | sa_family_t sa_family = sk->sk_family; |
Joseph Gasparakis | 35e4237 | 2013-09-13 07:34:13 -0700 | [diff] [blame] | 666 | __be16 port = inet_sk(sk)->inet_sport; |
Joseph Gasparakis | 53cf5275 | 2013-09-04 02:13:38 -0700 | [diff] [blame] | 667 | |
| 668 | rcu_read_lock(); |
| 669 | for_each_netdev_rcu(net, dev) { |
| 670 | if (dev->netdev_ops->ndo_del_vxlan_port) |
| 671 | dev->netdev_ops->ndo_del_vxlan_port(dev, sa_family, |
| 672 | port); |
| 673 | } |
| 674 | rcu_read_unlock(); |
Or Gerlitz | dc01e7d | 2014-01-20 13:59:21 +0200 | [diff] [blame] | 675 | |
| 676 | if (sa_family == AF_INET) |
| 677 | udp_del_offload(&vs->udp_offloads); |
Joseph Gasparakis | 53cf5275 | 2013-09-04 02:13:38 -0700 | [diff] [blame] | 678 | } |
| 679 | |
stephen hemminger | d342894 | 2012-10-01 12:32:35 +0000 | [diff] [blame] | 680 | /* Add new entry to forwarding table -- assumes lock held */ |
| 681 | static int vxlan_fdb_create(struct vxlan_dev *vxlan, |
Cong Wang | e4c7ed4 | 2013-08-31 13:44:33 +0800 | [diff] [blame] | 682 | const u8 *mac, union vxlan_addr *ip, |
David Stevens | 6681712 | 2013-03-15 04:35:51 +0000 | [diff] [blame] | 683 | __u16 state, __u16 flags, |
stephen hemminger | 73cf331 | 2013-04-27 11:31:54 +0000 | [diff] [blame] | 684 | __be16 port, __u32 vni, __u32 ifindex, |
David Stevens | ae88408 | 2013-04-19 00:36:26 +0000 | [diff] [blame] | 685 | __u8 ndm_flags) |
stephen hemminger | d342894 | 2012-10-01 12:32:35 +0000 | [diff] [blame] | 686 | { |
Nicolas Dichtel | 9e4b93f | 2014-04-22 15:01:30 +0200 | [diff] [blame] | 687 | struct vxlan_rdst *rd = NULL; |
stephen hemminger | d342894 | 2012-10-01 12:32:35 +0000 | [diff] [blame] | 688 | struct vxlan_fdb *f; |
| 689 | int notify = 0; |
| 690 | |
Sridhar Samudrala | 014be2c | 2013-05-17 06:39:07 +0000 | [diff] [blame] | 691 | f = __vxlan_find_mac(vxlan, mac); |
stephen hemminger | d342894 | 2012-10-01 12:32:35 +0000 | [diff] [blame] | 692 | if (f) { |
| 693 | if (flags & NLM_F_EXCL) { |
| 694 | netdev_dbg(vxlan->dev, |
| 695 | "lost race to create %pM\n", mac); |
| 696 | return -EEXIST; |
| 697 | } |
| 698 | if (f->state != state) { |
| 699 | f->state = state; |
| 700 | f->updated = jiffies; |
| 701 | notify = 1; |
| 702 | } |
David Stevens | ae88408 | 2013-04-19 00:36:26 +0000 | [diff] [blame] | 703 | if (f->flags != ndm_flags) { |
| 704 | f->flags = ndm_flags; |
| 705 | f->updated = jiffies; |
| 706 | notify = 1; |
| 707 | } |
Thomas Richter | 906dc18 | 2013-07-19 17:20:07 +0200 | [diff] [blame] | 708 | if ((flags & NLM_F_REPLACE)) { |
| 709 | /* Only change unicasts */ |
| 710 | if (!(is_multicast_ether_addr(f->eth_addr) || |
| 711 | is_zero_ether_addr(f->eth_addr))) { |
| 712 | int rc = vxlan_fdb_replace(f, ip, port, vni, |
| 713 | ifindex); |
| 714 | |
| 715 | if (rc < 0) |
| 716 | return rc; |
| 717 | notify |= rc; |
| 718 | } else |
| 719 | return -EOPNOTSUPP; |
| 720 | } |
David Stevens | 6681712 | 2013-03-15 04:35:51 +0000 | [diff] [blame] | 721 | if ((flags & NLM_F_APPEND) && |
Mike Rapoport | 58e4c76 | 2013-06-25 16:01:56 +0300 | [diff] [blame] | 722 | (is_multicast_ether_addr(f->eth_addr) || |
| 723 | is_zero_ether_addr(f->eth_addr))) { |
Nicolas Dichtel | 9e4b93f | 2014-04-22 15:01:30 +0200 | [diff] [blame] | 724 | int rc = vxlan_fdb_append(f, ip, port, vni, ifindex, |
| 725 | &rd); |
David Stevens | 6681712 | 2013-03-15 04:35:51 +0000 | [diff] [blame] | 726 | |
| 727 | if (rc < 0) |
| 728 | return rc; |
| 729 | notify |= rc; |
| 730 | } |
stephen hemminger | d342894 | 2012-10-01 12:32:35 +0000 | [diff] [blame] | 731 | } else { |
| 732 | if (!(flags & NLM_F_CREATE)) |
| 733 | return -ENOENT; |
| 734 | |
| 735 | if (vxlan->addrmax && vxlan->addrcnt >= vxlan->addrmax) |
| 736 | return -ENOSPC; |
| 737 | |
Thomas Richter | 906dc18 | 2013-07-19 17:20:07 +0200 | [diff] [blame] | 738 | /* Disallow replace to add a multicast entry */ |
| 739 | if ((flags & NLM_F_REPLACE) && |
| 740 | (is_multicast_ether_addr(mac) || is_zero_ether_addr(mac))) |
| 741 | return -EOPNOTSUPP; |
| 742 | |
Cong Wang | e4c7ed4 | 2013-08-31 13:44:33 +0800 | [diff] [blame] | 743 | netdev_dbg(vxlan->dev, "add %pM -> %pIS\n", mac, ip); |
stephen hemminger | d342894 | 2012-10-01 12:32:35 +0000 | [diff] [blame] | 744 | f = kmalloc(sizeof(*f), GFP_ATOMIC); |
| 745 | if (!f) |
| 746 | return -ENOMEM; |
| 747 | |
| 748 | notify = 1; |
stephen hemminger | d342894 | 2012-10-01 12:32:35 +0000 | [diff] [blame] | 749 | f->state = state; |
David Stevens | ae88408 | 2013-04-19 00:36:26 +0000 | [diff] [blame] | 750 | f->flags = ndm_flags; |
stephen hemminger | d342894 | 2012-10-01 12:32:35 +0000 | [diff] [blame] | 751 | f->updated = f->used = jiffies; |
Stephen Hemminger | 3e61aa8 | 2013-06-17 14:16:12 -0700 | [diff] [blame] | 752 | INIT_LIST_HEAD(&f->remotes); |
stephen hemminger | d342894 | 2012-10-01 12:32:35 +0000 | [diff] [blame] | 753 | memcpy(f->eth_addr, mac, ETH_ALEN); |
| 754 | |
Nicolas Dichtel | 9e4b93f | 2014-04-22 15:01:30 +0200 | [diff] [blame] | 755 | vxlan_fdb_append(f, ip, port, vni, ifindex, &rd); |
Stephen Hemminger | 3e61aa8 | 2013-06-17 14:16:12 -0700 | [diff] [blame] | 756 | |
stephen hemminger | d342894 | 2012-10-01 12:32:35 +0000 | [diff] [blame] | 757 | ++vxlan->addrcnt; |
| 758 | hlist_add_head_rcu(&f->hlist, |
| 759 | vxlan_fdb_head(vxlan, mac)); |
| 760 | } |
| 761 | |
Nicolas Dichtel | 9e4b93f | 2014-04-22 15:01:30 +0200 | [diff] [blame] | 762 | if (notify) { |
| 763 | if (rd == NULL) |
| 764 | rd = first_remote_rtnl(f); |
| 765 | vxlan_fdb_notify(vxlan, f, rd, RTM_NEWNEIGH); |
| 766 | } |
stephen hemminger | d342894 | 2012-10-01 12:32:35 +0000 | [diff] [blame] | 767 | |
| 768 | return 0; |
| 769 | } |
| 770 | |
Wei Yongjun | 6706c82 | 2013-04-11 19:00:35 +0000 | [diff] [blame] | 771 | static void vxlan_fdb_free(struct rcu_head *head) |
David Stevens | 6681712 | 2013-03-15 04:35:51 +0000 | [diff] [blame] | 772 | { |
| 773 | struct vxlan_fdb *f = container_of(head, struct vxlan_fdb, rcu); |
Stephen Hemminger | 3e61aa8 | 2013-06-17 14:16:12 -0700 | [diff] [blame] | 774 | struct vxlan_rdst *rd, *nd; |
David Stevens | 6681712 | 2013-03-15 04:35:51 +0000 | [diff] [blame] | 775 | |
Stephen Hemminger | 3e61aa8 | 2013-06-17 14:16:12 -0700 | [diff] [blame] | 776 | list_for_each_entry_safe(rd, nd, &f->remotes, list) |
David Stevens | 6681712 | 2013-03-15 04:35:51 +0000 | [diff] [blame] | 777 | kfree(rd); |
David Stevens | 6681712 | 2013-03-15 04:35:51 +0000 | [diff] [blame] | 778 | kfree(f); |
| 779 | } |
| 780 | |
stephen hemminger | d342894 | 2012-10-01 12:32:35 +0000 | [diff] [blame] | 781 | static void vxlan_fdb_destroy(struct vxlan_dev *vxlan, struct vxlan_fdb *f) |
| 782 | { |
| 783 | netdev_dbg(vxlan->dev, |
| 784 | "delete %pM\n", f->eth_addr); |
| 785 | |
| 786 | --vxlan->addrcnt; |
Nicolas Dichtel | 9e4b93f | 2014-04-22 15:01:30 +0200 | [diff] [blame] | 787 | vxlan_fdb_notify(vxlan, f, first_remote_rtnl(f), RTM_DELNEIGH); |
stephen hemminger | d342894 | 2012-10-01 12:32:35 +0000 | [diff] [blame] | 788 | |
| 789 | hlist_del_rcu(&f->hlist); |
David Stevens | 6681712 | 2013-03-15 04:35:51 +0000 | [diff] [blame] | 790 | call_rcu(&f->rcu, vxlan_fdb_free); |
stephen hemminger | d342894 | 2012-10-01 12:32:35 +0000 | [diff] [blame] | 791 | } |
| 792 | |
Mike Rapoport | f0b074b | 2013-06-25 16:01:53 +0300 | [diff] [blame] | 793 | static int vxlan_fdb_parse(struct nlattr *tb[], struct vxlan_dev *vxlan, |
Cong Wang | e4c7ed4 | 2013-08-31 13:44:33 +0800 | [diff] [blame] | 794 | union vxlan_addr *ip, __be16 *port, u32 *vni, u32 *ifindex) |
Mike Rapoport | f0b074b | 2013-06-25 16:01:53 +0300 | [diff] [blame] | 795 | { |
| 796 | struct net *net = dev_net(vxlan->dev); |
Cong Wang | e4c7ed4 | 2013-08-31 13:44:33 +0800 | [diff] [blame] | 797 | int err; |
Mike Rapoport | f0b074b | 2013-06-25 16:01:53 +0300 | [diff] [blame] | 798 | |
| 799 | if (tb[NDA_DST]) { |
Cong Wang | e4c7ed4 | 2013-08-31 13:44:33 +0800 | [diff] [blame] | 800 | err = vxlan_nla_get_addr(ip, tb[NDA_DST]); |
| 801 | if (err) |
| 802 | return err; |
Mike Rapoport | f0b074b | 2013-06-25 16:01:53 +0300 | [diff] [blame] | 803 | } else { |
Cong Wang | e4c7ed4 | 2013-08-31 13:44:33 +0800 | [diff] [blame] | 804 | union vxlan_addr *remote = &vxlan->default_dst.remote_ip; |
| 805 | if (remote->sa.sa_family == AF_INET) { |
| 806 | ip->sin.sin_addr.s_addr = htonl(INADDR_ANY); |
| 807 | ip->sa.sa_family = AF_INET; |
| 808 | #if IS_ENABLED(CONFIG_IPV6) |
| 809 | } else { |
| 810 | ip->sin6.sin6_addr = in6addr_any; |
| 811 | ip->sa.sa_family = AF_INET6; |
| 812 | #endif |
| 813 | } |
Mike Rapoport | f0b074b | 2013-06-25 16:01:53 +0300 | [diff] [blame] | 814 | } |
| 815 | |
| 816 | if (tb[NDA_PORT]) { |
| 817 | if (nla_len(tb[NDA_PORT]) != sizeof(__be16)) |
| 818 | return -EINVAL; |
| 819 | *port = nla_get_be16(tb[NDA_PORT]); |
| 820 | } else { |
| 821 | *port = vxlan->dst_port; |
| 822 | } |
| 823 | |
| 824 | if (tb[NDA_VNI]) { |
| 825 | if (nla_len(tb[NDA_VNI]) != sizeof(u32)) |
| 826 | return -EINVAL; |
| 827 | *vni = nla_get_u32(tb[NDA_VNI]); |
| 828 | } else { |
| 829 | *vni = vxlan->default_dst.remote_vni; |
| 830 | } |
| 831 | |
| 832 | if (tb[NDA_IFINDEX]) { |
| 833 | struct net_device *tdev; |
| 834 | |
| 835 | if (nla_len(tb[NDA_IFINDEX]) != sizeof(u32)) |
| 836 | return -EINVAL; |
| 837 | *ifindex = nla_get_u32(tb[NDA_IFINDEX]); |
Ying Xue | 7376394 | 2014-01-15 10:23:41 +0800 | [diff] [blame] | 838 | tdev = __dev_get_by_index(net, *ifindex); |
Mike Rapoport | f0b074b | 2013-06-25 16:01:53 +0300 | [diff] [blame] | 839 | if (!tdev) |
| 840 | return -EADDRNOTAVAIL; |
Mike Rapoport | f0b074b | 2013-06-25 16:01:53 +0300 | [diff] [blame] | 841 | } else { |
| 842 | *ifindex = 0; |
| 843 | } |
| 844 | |
| 845 | return 0; |
| 846 | } |
| 847 | |
stephen hemminger | d342894 | 2012-10-01 12:32:35 +0000 | [diff] [blame] | 848 | /* Add static entry (via netlink) */ |
| 849 | static int vxlan_fdb_add(struct ndmsg *ndm, struct nlattr *tb[], |
| 850 | struct net_device *dev, |
| 851 | const unsigned char *addr, u16 flags) |
| 852 | { |
| 853 | struct vxlan_dev *vxlan = netdev_priv(dev); |
Mike Rapoport | f0b074b | 2013-06-25 16:01:53 +0300 | [diff] [blame] | 854 | /* struct net *net = dev_net(vxlan->dev); */ |
Cong Wang | e4c7ed4 | 2013-08-31 13:44:33 +0800 | [diff] [blame] | 855 | union vxlan_addr ip; |
stephen hemminger | 73cf331 | 2013-04-27 11:31:54 +0000 | [diff] [blame] | 856 | __be16 port; |
| 857 | u32 vni, ifindex; |
stephen hemminger | d342894 | 2012-10-01 12:32:35 +0000 | [diff] [blame] | 858 | int err; |
| 859 | |
| 860 | if (!(ndm->ndm_state & (NUD_PERMANENT|NUD_REACHABLE))) { |
| 861 | pr_info("RTM_NEWNEIGH with invalid state %#x\n", |
| 862 | ndm->ndm_state); |
| 863 | return -EINVAL; |
| 864 | } |
| 865 | |
| 866 | if (tb[NDA_DST] == NULL) |
| 867 | return -EINVAL; |
| 868 | |
Mike Rapoport | f0b074b | 2013-06-25 16:01:53 +0300 | [diff] [blame] | 869 | err = vxlan_fdb_parse(tb, vxlan, &ip, &port, &vni, &ifindex); |
| 870 | if (err) |
| 871 | return err; |
David Stevens | 6681712 | 2013-03-15 04:35:51 +0000 | [diff] [blame] | 872 | |
Mike Rapoport | 5933a7b | 2014-04-01 09:23:01 +0300 | [diff] [blame] | 873 | if (vxlan->default_dst.remote_ip.sa.sa_family != ip.sa.sa_family) |
| 874 | return -EAFNOSUPPORT; |
| 875 | |
stephen hemminger | d342894 | 2012-10-01 12:32:35 +0000 | [diff] [blame] | 876 | spin_lock_bh(&vxlan->hash_lock); |
Cong Wang | e4c7ed4 | 2013-08-31 13:44:33 +0800 | [diff] [blame] | 877 | err = vxlan_fdb_create(vxlan, addr, &ip, ndm->ndm_state, flags, |
stephen hemminger | 73cf331 | 2013-04-27 11:31:54 +0000 | [diff] [blame] | 878 | port, vni, ifindex, ndm->ndm_flags); |
stephen hemminger | d342894 | 2012-10-01 12:32:35 +0000 | [diff] [blame] | 879 | spin_unlock_bh(&vxlan->hash_lock); |
| 880 | |
| 881 | return err; |
| 882 | } |
| 883 | |
| 884 | /* Delete entry (via netlink) */ |
Vlad Yasevich | 1690be6 | 2013-02-13 12:00:18 +0000 | [diff] [blame] | 885 | static int vxlan_fdb_delete(struct ndmsg *ndm, struct nlattr *tb[], |
| 886 | struct net_device *dev, |
stephen hemminger | d342894 | 2012-10-01 12:32:35 +0000 | [diff] [blame] | 887 | const unsigned char *addr) |
| 888 | { |
| 889 | struct vxlan_dev *vxlan = netdev_priv(dev); |
| 890 | struct vxlan_fdb *f; |
Mike Rapoport | bc7892b | 2013-06-25 16:01:54 +0300 | [diff] [blame] | 891 | struct vxlan_rdst *rd = NULL; |
Cong Wang | e4c7ed4 | 2013-08-31 13:44:33 +0800 | [diff] [blame] | 892 | union vxlan_addr ip; |
Mike Rapoport | bc7892b | 2013-06-25 16:01:54 +0300 | [diff] [blame] | 893 | __be16 port; |
| 894 | u32 vni, ifindex; |
| 895 | int err; |
| 896 | |
| 897 | err = vxlan_fdb_parse(tb, vxlan, &ip, &port, &vni, &ifindex); |
| 898 | if (err) |
| 899 | return err; |
| 900 | |
| 901 | err = -ENOENT; |
stephen hemminger | d342894 | 2012-10-01 12:32:35 +0000 | [diff] [blame] | 902 | |
| 903 | spin_lock_bh(&vxlan->hash_lock); |
| 904 | f = vxlan_find_mac(vxlan, addr); |
Mike Rapoport | bc7892b | 2013-06-25 16:01:54 +0300 | [diff] [blame] | 905 | if (!f) |
| 906 | goto out; |
| 907 | |
Cong Wang | e4c7ed4 | 2013-08-31 13:44:33 +0800 | [diff] [blame] | 908 | if (!vxlan_addr_any(&ip)) { |
| 909 | rd = vxlan_fdb_find_rdst(f, &ip, port, vni, ifindex); |
Mike Rapoport | bc7892b | 2013-06-25 16:01:54 +0300 | [diff] [blame] | 910 | if (!rd) |
| 911 | goto out; |
stephen hemminger | d342894 | 2012-10-01 12:32:35 +0000 | [diff] [blame] | 912 | } |
Mike Rapoport | bc7892b | 2013-06-25 16:01:54 +0300 | [diff] [blame] | 913 | |
| 914 | err = 0; |
| 915 | |
| 916 | /* remove a destination if it's not the only one on the list, |
| 917 | * otherwise destroy the fdb entry |
| 918 | */ |
| 919 | if (rd && !list_is_singular(&f->remotes)) { |
| 920 | list_del_rcu(&rd->list); |
Nicolas Dichtel | 9e4b93f | 2014-04-22 15:01:30 +0200 | [diff] [blame] | 921 | vxlan_fdb_notify(vxlan, f, rd, RTM_DELNEIGH); |
Wei Yongjun | dcdc7a5 | 2013-08-17 07:32:09 +0800 | [diff] [blame] | 922 | kfree_rcu(rd, rcu); |
Mike Rapoport | bc7892b | 2013-06-25 16:01:54 +0300 | [diff] [blame] | 923 | goto out; |
| 924 | } |
| 925 | |
| 926 | vxlan_fdb_destroy(vxlan, f); |
| 927 | |
| 928 | out: |
stephen hemminger | d342894 | 2012-10-01 12:32:35 +0000 | [diff] [blame] | 929 | spin_unlock_bh(&vxlan->hash_lock); |
| 930 | |
| 931 | return err; |
| 932 | } |
| 933 | |
| 934 | /* Dump forwarding table */ |
| 935 | static int vxlan_fdb_dump(struct sk_buff *skb, struct netlink_callback *cb, |
| 936 | struct net_device *dev, int idx) |
| 937 | { |
| 938 | struct vxlan_dev *vxlan = netdev_priv(dev); |
| 939 | unsigned int h; |
| 940 | |
| 941 | for (h = 0; h < FDB_HASH_SIZE; ++h) { |
| 942 | struct vxlan_fdb *f; |
stephen hemminger | d342894 | 2012-10-01 12:32:35 +0000 | [diff] [blame] | 943 | int err; |
| 944 | |
Sasha Levin | b67bfe0 | 2013-02-27 17:06:00 -0800 | [diff] [blame] | 945 | hlist_for_each_entry_rcu(f, &vxlan->fdb_head[h], hlist) { |
David Stevens | 6681712 | 2013-03-15 04:35:51 +0000 | [diff] [blame] | 946 | struct vxlan_rdst *rd; |
stephen hemminger | d342894 | 2012-10-01 12:32:35 +0000 | [diff] [blame] | 947 | |
Stephen Hemminger | 3e61aa8 | 2013-06-17 14:16:12 -0700 | [diff] [blame] | 948 | if (idx < cb->args[0]) |
| 949 | goto skip; |
| 950 | |
| 951 | list_for_each_entry_rcu(rd, &f->remotes, list) { |
David Stevens | 6681712 | 2013-03-15 04:35:51 +0000 | [diff] [blame] | 952 | err = vxlan_fdb_info(skb, vxlan, f, |
| 953 | NETLINK_CB(cb->skb).portid, |
| 954 | cb->nlh->nlmsg_seq, |
| 955 | RTM_NEWNEIGH, |
| 956 | NLM_F_MULTI, rd); |
| 957 | if (err < 0) |
Stephen Hemminger | 3e61aa8 | 2013-06-17 14:16:12 -0700 | [diff] [blame] | 958 | goto out; |
David Stevens | 6681712 | 2013-03-15 04:35:51 +0000 | [diff] [blame] | 959 | } |
Stephen Hemminger | 3e61aa8 | 2013-06-17 14:16:12 -0700 | [diff] [blame] | 960 | skip: |
| 961 | ++idx; |
stephen hemminger | d342894 | 2012-10-01 12:32:35 +0000 | [diff] [blame] | 962 | } |
| 963 | } |
Stephen Hemminger | 3e61aa8 | 2013-06-17 14:16:12 -0700 | [diff] [blame] | 964 | out: |
stephen hemminger | d342894 | 2012-10-01 12:32:35 +0000 | [diff] [blame] | 965 | return idx; |
| 966 | } |
| 967 | |
| 968 | /* Watch incoming packets to learn mapping between Ethernet address |
| 969 | * and Tunnel endpoint. |
stephen hemminger | 26a41ae6 | 2013-06-17 12:09:58 -0700 | [diff] [blame] | 970 | * Return true if packet is bogus and should be droppped. |
stephen hemminger | d342894 | 2012-10-01 12:32:35 +0000 | [diff] [blame] | 971 | */ |
stephen hemminger | 26a41ae6 | 2013-06-17 12:09:58 -0700 | [diff] [blame] | 972 | static bool vxlan_snoop(struct net_device *dev, |
Cong Wang | e4c7ed4 | 2013-08-31 13:44:33 +0800 | [diff] [blame] | 973 | union vxlan_addr *src_ip, const u8 *src_mac) |
stephen hemminger | d342894 | 2012-10-01 12:32:35 +0000 | [diff] [blame] | 974 | { |
| 975 | struct vxlan_dev *vxlan = netdev_priv(dev); |
| 976 | struct vxlan_fdb *f; |
stephen hemminger | d342894 | 2012-10-01 12:32:35 +0000 | [diff] [blame] | 977 | |
| 978 | f = vxlan_find_mac(vxlan, src_mac); |
| 979 | if (likely(f)) { |
stephen hemminger | 5ca5461 | 2013-08-04 17:17:39 -0700 | [diff] [blame] | 980 | struct vxlan_rdst *rdst = first_remote_rcu(f); |
Stephen Hemminger | 3e61aa8 | 2013-06-17 14:16:12 -0700 | [diff] [blame] | 981 | |
Cong Wang | e4c7ed4 | 2013-08-31 13:44:33 +0800 | [diff] [blame] | 982 | if (likely(vxlan_addr_equal(&rdst->remote_ip, src_ip))) |
stephen hemminger | 26a41ae6 | 2013-06-17 12:09:58 -0700 | [diff] [blame] | 983 | return false; |
| 984 | |
| 985 | /* Don't migrate static entries, drop packets */ |
stephen hemminger | eb064c3 | 2013-06-18 14:27:01 -0700 | [diff] [blame] | 986 | if (f->state & NUD_NOARP) |
stephen hemminger | 26a41ae6 | 2013-06-17 12:09:58 -0700 | [diff] [blame] | 987 | return true; |
stephen hemminger | d342894 | 2012-10-01 12:32:35 +0000 | [diff] [blame] | 988 | |
| 989 | if (net_ratelimit()) |
| 990 | netdev_info(dev, |
Cong Wang | e4c7ed4 | 2013-08-31 13:44:33 +0800 | [diff] [blame] | 991 | "%pM migrated from %pIS to %pIS\n", |
Stephen Hemminger | 3e61aa8 | 2013-06-17 14:16:12 -0700 | [diff] [blame] | 992 | src_mac, &rdst->remote_ip, &src_ip); |
stephen hemminger | d342894 | 2012-10-01 12:32:35 +0000 | [diff] [blame] | 993 | |
Cong Wang | e4c7ed4 | 2013-08-31 13:44:33 +0800 | [diff] [blame] | 994 | rdst->remote_ip = *src_ip; |
stephen hemminger | d342894 | 2012-10-01 12:32:35 +0000 | [diff] [blame] | 995 | f->updated = jiffies; |
Nicolas Dichtel | 9e4b93f | 2014-04-22 15:01:30 +0200 | [diff] [blame] | 996 | vxlan_fdb_notify(vxlan, f, rdst, RTM_NEWNEIGH); |
stephen hemminger | d342894 | 2012-10-01 12:32:35 +0000 | [diff] [blame] | 997 | } else { |
| 998 | /* learned new entry */ |
| 999 | spin_lock(&vxlan->hash_lock); |
stephen hemminger | 3bf74b1 | 2013-06-17 12:09:57 -0700 | [diff] [blame] | 1000 | |
| 1001 | /* close off race between vxlan_flush and incoming packets */ |
| 1002 | if (netif_running(dev)) |
| 1003 | vxlan_fdb_create(vxlan, src_mac, src_ip, |
| 1004 | NUD_REACHABLE, |
| 1005 | NLM_F_EXCL|NLM_F_CREATE, |
| 1006 | vxlan->dst_port, |
| 1007 | vxlan->default_dst.remote_vni, |
| 1008 | 0, NTF_SELF); |
stephen hemminger | d342894 | 2012-10-01 12:32:35 +0000 | [diff] [blame] | 1009 | spin_unlock(&vxlan->hash_lock); |
| 1010 | } |
stephen hemminger | 26a41ae6 | 2013-06-17 12:09:58 -0700 | [diff] [blame] | 1011 | |
| 1012 | return false; |
stephen hemminger | d342894 | 2012-10-01 12:32:35 +0000 | [diff] [blame] | 1013 | } |
| 1014 | |
stephen hemminger | d342894 | 2012-10-01 12:32:35 +0000 | [diff] [blame] | 1015 | /* See if multicast group is already in use by other ID */ |
Gao feng | 95ab099 | 2013-12-10 16:37:33 +0800 | [diff] [blame] | 1016 | static bool vxlan_group_used(struct vxlan_net *vn, struct vxlan_dev *dev) |
stephen hemminger | d342894 | 2012-10-01 12:32:35 +0000 | [diff] [blame] | 1017 | { |
stephen hemminger | 553675f | 2013-05-16 11:35:20 +0000 | [diff] [blame] | 1018 | struct vxlan_dev *vxlan; |
stephen hemminger | d342894 | 2012-10-01 12:32:35 +0000 | [diff] [blame] | 1019 | |
Gao feng | 95ab099 | 2013-12-10 16:37:33 +0800 | [diff] [blame] | 1020 | /* The vxlan_sock is only used by dev, leaving group has |
| 1021 | * no effect on other vxlan devices. |
| 1022 | */ |
| 1023 | if (atomic_read(&dev->vn_sock->refcnt) == 1) |
| 1024 | return false; |
| 1025 | |
stephen hemminger | 553675f | 2013-05-16 11:35:20 +0000 | [diff] [blame] | 1026 | list_for_each_entry(vxlan, &vn->vxlan_list, next) { |
Gao feng | 95ab099 | 2013-12-10 16:37:33 +0800 | [diff] [blame] | 1027 | if (!netif_running(vxlan->dev) || vxlan == dev) |
stephen hemminger | 553675f | 2013-05-16 11:35:20 +0000 | [diff] [blame] | 1028 | continue; |
stephen hemminger | d342894 | 2012-10-01 12:32:35 +0000 | [diff] [blame] | 1029 | |
Gao feng | 95ab099 | 2013-12-10 16:37:33 +0800 | [diff] [blame] | 1030 | if (vxlan->vn_sock != dev->vn_sock) |
| 1031 | continue; |
| 1032 | |
| 1033 | if (!vxlan_addr_equal(&vxlan->default_dst.remote_ip, |
| 1034 | &dev->default_dst.remote_ip)) |
| 1035 | continue; |
| 1036 | |
| 1037 | if (vxlan->default_dst.remote_ifindex != |
| 1038 | dev->default_dst.remote_ifindex) |
| 1039 | continue; |
| 1040 | |
| 1041 | return true; |
stephen hemminger | 553675f | 2013-05-16 11:35:20 +0000 | [diff] [blame] | 1042 | } |
stephen hemminger | d342894 | 2012-10-01 12:32:35 +0000 | [diff] [blame] | 1043 | |
| 1044 | return false; |
| 1045 | } |
| 1046 | |
Stephen Hemminger | 7c47ced | 2013-06-17 14:16:10 -0700 | [diff] [blame] | 1047 | static void vxlan_sock_hold(struct vxlan_sock *vs) |
stephen hemminger | d342894 | 2012-10-01 12:32:35 +0000 | [diff] [blame] | 1048 | { |
Stephen Hemminger | 7c47ced | 2013-06-17 14:16:10 -0700 | [diff] [blame] | 1049 | atomic_inc(&vs->refcnt); |
stephen hemminger | d342894 | 2012-10-01 12:32:35 +0000 | [diff] [blame] | 1050 | } |
| 1051 | |
Pravin B Shelar | 012a572 | 2013-08-19 11:23:07 -0700 | [diff] [blame] | 1052 | void vxlan_sock_release(struct vxlan_sock *vs) |
stephen hemminger | d342894 | 2012-10-01 12:32:35 +0000 | [diff] [blame] | 1053 | { |
Joseph Gasparakis | 53cf5275 | 2013-09-04 02:13:38 -0700 | [diff] [blame] | 1054 | struct sock *sk = vs->sock->sk; |
| 1055 | struct net *net = sock_net(sk); |
| 1056 | struct vxlan_net *vn = net_generic(net, vxlan_net_id); |
Pravin B Shelar | 012a572 | 2013-08-19 11:23:07 -0700 | [diff] [blame] | 1057 | |
Stephen Hemminger | 7c47ced | 2013-06-17 14:16:10 -0700 | [diff] [blame] | 1058 | if (!atomic_dec_and_test(&vs->refcnt)) |
| 1059 | return; |
| 1060 | |
Stephen Hemminger | 1c51a91 | 2013-06-17 14:16:11 -0700 | [diff] [blame] | 1061 | spin_lock(&vn->sock_lock); |
Stephen Hemminger | 7c47ced | 2013-06-17 14:16:10 -0700 | [diff] [blame] | 1062 | hlist_del_rcu(&vs->hlist); |
Pravin B Shelar | 559835ea | 2013-09-24 10:25:40 -0700 | [diff] [blame] | 1063 | rcu_assign_sk_user_data(vs->sock->sk, NULL); |
Or Gerlitz | dc01e7d | 2014-01-20 13:59:21 +0200 | [diff] [blame] | 1064 | vxlan_notify_del_rx_port(vs); |
Stephen Hemminger | 1c51a91 | 2013-06-17 14:16:11 -0700 | [diff] [blame] | 1065 | spin_unlock(&vn->sock_lock); |
| 1066 | |
Stephen Hemminger | 7c47ced | 2013-06-17 14:16:10 -0700 | [diff] [blame] | 1067 | queue_work(vxlan_wq, &vs->del_work); |
| 1068 | } |
Pravin B Shelar | 012a572 | 2013-08-19 11:23:07 -0700 | [diff] [blame] | 1069 | EXPORT_SYMBOL_GPL(vxlan_sock_release); |
Stephen Hemminger | 7c47ced | 2013-06-17 14:16:10 -0700 | [diff] [blame] | 1070 | |
stephen hemminger | 3fc2de2 | 2013-07-18 08:40:15 -0700 | [diff] [blame] | 1071 | /* Callback to update multicast group membership when first VNI on |
| 1072 | * multicast asddress is brought up |
| 1073 | * Done as workqueue because ip_mc_join_group acquires RTNL. |
Stephen Hemminger | 7c47ced | 2013-06-17 14:16:10 -0700 | [diff] [blame] | 1074 | */ |
stephen hemminger | 3fc2de2 | 2013-07-18 08:40:15 -0700 | [diff] [blame] | 1075 | static void vxlan_igmp_join(struct work_struct *work) |
Stephen Hemminger | 7c47ced | 2013-06-17 14:16:10 -0700 | [diff] [blame] | 1076 | { |
stephen hemminger | 3fc2de2 | 2013-07-18 08:40:15 -0700 | [diff] [blame] | 1077 | struct vxlan_dev *vxlan = container_of(work, struct vxlan_dev, igmp_join); |
Stephen Hemminger | 7c47ced | 2013-06-17 14:16:10 -0700 | [diff] [blame] | 1078 | struct vxlan_sock *vs = vxlan->vn_sock; |
| 1079 | struct sock *sk = vs->sock->sk; |
Cong Wang | e4c7ed4 | 2013-08-31 13:44:33 +0800 | [diff] [blame] | 1080 | union vxlan_addr *ip = &vxlan->default_dst.remote_ip; |
| 1081 | int ifindex = vxlan->default_dst.remote_ifindex; |
stephen hemminger | d342894 | 2012-10-01 12:32:35 +0000 | [diff] [blame] | 1082 | |
stephen hemminger | d342894 | 2012-10-01 12:32:35 +0000 | [diff] [blame] | 1083 | lock_sock(sk); |
Cong Wang | e4c7ed4 | 2013-08-31 13:44:33 +0800 | [diff] [blame] | 1084 | if (ip->sa.sa_family == AF_INET) { |
| 1085 | struct ip_mreqn mreq = { |
| 1086 | .imr_multiaddr.s_addr = ip->sin.sin_addr.s_addr, |
| 1087 | .imr_ifindex = ifindex, |
| 1088 | }; |
| 1089 | |
| 1090 | ip_mc_join_group(sk, &mreq); |
| 1091 | #if IS_ENABLED(CONFIG_IPV6) |
| 1092 | } else { |
| 1093 | ipv6_stub->ipv6_sock_mc_join(sk, ifindex, |
| 1094 | &ip->sin6.sin6_addr); |
| 1095 | #endif |
| 1096 | } |
stephen hemminger | 3fc2de2 | 2013-07-18 08:40:15 -0700 | [diff] [blame] | 1097 | release_sock(sk); |
| 1098 | |
Pravin B Shelar | 012a572 | 2013-08-19 11:23:07 -0700 | [diff] [blame] | 1099 | vxlan_sock_release(vs); |
stephen hemminger | 3fc2de2 | 2013-07-18 08:40:15 -0700 | [diff] [blame] | 1100 | dev_put(vxlan->dev); |
| 1101 | } |
| 1102 | |
| 1103 | /* Inverse of vxlan_igmp_join when last VNI is brought down */ |
| 1104 | static void vxlan_igmp_leave(struct work_struct *work) |
| 1105 | { |
| 1106 | struct vxlan_dev *vxlan = container_of(work, struct vxlan_dev, igmp_leave); |
stephen hemminger | 3fc2de2 | 2013-07-18 08:40:15 -0700 | [diff] [blame] | 1107 | struct vxlan_sock *vs = vxlan->vn_sock; |
| 1108 | struct sock *sk = vs->sock->sk; |
Cong Wang | e4c7ed4 | 2013-08-31 13:44:33 +0800 | [diff] [blame] | 1109 | union vxlan_addr *ip = &vxlan->default_dst.remote_ip; |
| 1110 | int ifindex = vxlan->default_dst.remote_ifindex; |
stephen hemminger | 3fc2de2 | 2013-07-18 08:40:15 -0700 | [diff] [blame] | 1111 | |
| 1112 | lock_sock(sk); |
Cong Wang | e4c7ed4 | 2013-08-31 13:44:33 +0800 | [diff] [blame] | 1113 | if (ip->sa.sa_family == AF_INET) { |
| 1114 | struct ip_mreqn mreq = { |
| 1115 | .imr_multiaddr.s_addr = ip->sin.sin_addr.s_addr, |
| 1116 | .imr_ifindex = ifindex, |
| 1117 | }; |
| 1118 | |
| 1119 | ip_mc_leave_group(sk, &mreq); |
| 1120 | #if IS_ENABLED(CONFIG_IPV6) |
| 1121 | } else { |
| 1122 | ipv6_stub->ipv6_sock_mc_drop(sk, ifindex, |
| 1123 | &ip->sin6.sin6_addr); |
| 1124 | #endif |
| 1125 | } |
| 1126 | |
stephen hemminger | d342894 | 2012-10-01 12:32:35 +0000 | [diff] [blame] | 1127 | release_sock(sk); |
stephen hemminger | d342894 | 2012-10-01 12:32:35 +0000 | [diff] [blame] | 1128 | |
Pravin B Shelar | 012a572 | 2013-08-19 11:23:07 -0700 | [diff] [blame] | 1129 | vxlan_sock_release(vs); |
Stephen Hemminger | 7c47ced | 2013-06-17 14:16:10 -0700 | [diff] [blame] | 1130 | dev_put(vxlan->dev); |
stephen hemminger | d342894 | 2012-10-01 12:32:35 +0000 | [diff] [blame] | 1131 | } |
| 1132 | |
| 1133 | /* Callback from net/ipv4/udp.c to receive packets */ |
| 1134 | static int vxlan_udp_encap_recv(struct sock *sk, struct sk_buff *skb) |
| 1135 | { |
Pravin B Shelar | 5cfccc5 | 2013-08-19 11:23:02 -0700 | [diff] [blame] | 1136 | struct vxlan_sock *vs; |
stephen hemminger | d342894 | 2012-10-01 12:32:35 +0000 | [diff] [blame] | 1137 | struct vxlanhdr *vxh; |
stephen hemminger | d342894 | 2012-10-01 12:32:35 +0000 | [diff] [blame] | 1138 | |
stephen hemminger | d342894 | 2012-10-01 12:32:35 +0000 | [diff] [blame] | 1139 | /* Need Vxlan and inner Ethernet header to be present */ |
Pravin B Shelar | 7ce0475 | 2013-08-19 11:22:54 -0700 | [diff] [blame] | 1140 | if (!pskb_may_pull(skb, VXLAN_HLEN)) |
stephen hemminger | d342894 | 2012-10-01 12:32:35 +0000 | [diff] [blame] | 1141 | goto error; |
| 1142 | |
Pravin B Shelar | 7ce0475 | 2013-08-19 11:22:54 -0700 | [diff] [blame] | 1143 | /* Return packets with reserved bits set */ |
| 1144 | vxh = (struct vxlanhdr *)(udp_hdr(skb) + 1); |
stephen hemminger | d342894 | 2012-10-01 12:32:35 +0000 | [diff] [blame] | 1145 | if (vxh->vx_flags != htonl(VXLAN_FLAGS) || |
| 1146 | (vxh->vx_vni & htonl(0xff))) { |
| 1147 | netdev_dbg(skb->dev, "invalid vxlan flags=%#x vni=%#x\n", |
| 1148 | ntohl(vxh->vx_flags), ntohl(vxh->vx_vni)); |
| 1149 | goto error; |
| 1150 | } |
| 1151 | |
Pravin B Shelar | 5cfccc5 | 2013-08-19 11:23:02 -0700 | [diff] [blame] | 1152 | if (iptunnel_pull_header(skb, VXLAN_HLEN, htons(ETH_P_TEB))) |
stephen hemminger | d342894 | 2012-10-01 12:32:35 +0000 | [diff] [blame] | 1153 | goto drop; |
stephen hemminger | d342894 | 2012-10-01 12:32:35 +0000 | [diff] [blame] | 1154 | |
Pravin B Shelar | 559835ea | 2013-09-24 10:25:40 -0700 | [diff] [blame] | 1155 | vs = rcu_dereference_sk_user_data(sk); |
Pravin B Shelar | 5cfccc5 | 2013-08-19 11:23:02 -0700 | [diff] [blame] | 1156 | if (!vs) |
stephen hemminger | d342894 | 2012-10-01 12:32:35 +0000 | [diff] [blame] | 1157 | goto drop; |
Pravin B Shelar | 5cfccc5 | 2013-08-19 11:23:02 -0700 | [diff] [blame] | 1158 | |
Or Gerlitz | d0bc655 | 2014-01-23 11:28:13 +0200 | [diff] [blame] | 1159 | /* If the NIC driver gave us an encapsulated packet |
| 1160 | * with the encapsulation mark, the device checksummed it |
| 1161 | * for us. Otherwise force the upper layers to verify it. |
| 1162 | */ |
| 1163 | if ((skb->ip_summed != CHECKSUM_UNNECESSARY && skb->ip_summed != CHECKSUM_PARTIAL) || |
| 1164 | !skb->encapsulation) |
| 1165 | skb->ip_summed = CHECKSUM_NONE; |
| 1166 | |
| 1167 | skb->encapsulation = 0; |
| 1168 | |
Pravin B Shelar | 5cfccc5 | 2013-08-19 11:23:02 -0700 | [diff] [blame] | 1169 | vs->rcv(vs, skb, vxh->vx_vni); |
| 1170 | return 0; |
| 1171 | |
| 1172 | drop: |
| 1173 | /* Consume bad packet */ |
| 1174 | kfree_skb(skb); |
| 1175 | return 0; |
| 1176 | |
| 1177 | error: |
| 1178 | /* Return non vxlan pkt */ |
| 1179 | return 1; |
| 1180 | } |
| 1181 | |
| 1182 | static void vxlan_rcv(struct vxlan_sock *vs, |
| 1183 | struct sk_buff *skb, __be32 vx_vni) |
| 1184 | { |
Cong Wang | e4c7ed4 | 2013-08-31 13:44:33 +0800 | [diff] [blame] | 1185 | struct iphdr *oip = NULL; |
| 1186 | struct ipv6hdr *oip6 = NULL; |
Pravin B Shelar | 5cfccc5 | 2013-08-19 11:23:02 -0700 | [diff] [blame] | 1187 | struct vxlan_dev *vxlan; |
Li RongQing | 8f84985 | 2014-01-04 13:57:59 +0800 | [diff] [blame] | 1188 | struct pcpu_sw_netstats *stats; |
Cong Wang | e4c7ed4 | 2013-08-31 13:44:33 +0800 | [diff] [blame] | 1189 | union vxlan_addr saddr; |
Pravin B Shelar | 5cfccc5 | 2013-08-19 11:23:02 -0700 | [diff] [blame] | 1190 | __u32 vni; |
Cong Wang | e4c7ed4 | 2013-08-31 13:44:33 +0800 | [diff] [blame] | 1191 | int err = 0; |
| 1192 | union vxlan_addr *remote_ip; |
Pravin B Shelar | 5cfccc5 | 2013-08-19 11:23:02 -0700 | [diff] [blame] | 1193 | |
| 1194 | vni = ntohl(vx_vni) >> 8; |
| 1195 | /* Is this VNI defined? */ |
| 1196 | vxlan = vxlan_vs_find_vni(vs, vni); |
| 1197 | if (!vxlan) |
| 1198 | goto drop; |
stephen hemminger | d342894 | 2012-10-01 12:32:35 +0000 | [diff] [blame] | 1199 | |
Cong Wang | e4c7ed4 | 2013-08-31 13:44:33 +0800 | [diff] [blame] | 1200 | remote_ip = &vxlan->default_dst.remote_ip; |
David Stevens | e4f67ad | 2012-11-20 02:50:14 +0000 | [diff] [blame] | 1201 | skb_reset_mac_header(skb); |
Nicolas Dichtel | f01ec1c | 2014-04-24 10:02:49 +0200 | [diff] [blame] | 1202 | skb_scrub_packet(skb, !net_eq(vxlan->net, dev_net(vxlan->dev))); |
stephen hemminger | d342894 | 2012-10-01 12:32:35 +0000 | [diff] [blame] | 1203 | skb->protocol = eth_type_trans(skb, vxlan->dev); |
stephen hemminger | d342894 | 2012-10-01 12:32:35 +0000 | [diff] [blame] | 1204 | |
| 1205 | /* Ignore packet loops (and multicast echo) */ |
Joe Perches | 7367d0b | 2013-09-01 11:51:23 -0700 | [diff] [blame] | 1206 | if (ether_addr_equal(eth_hdr(skb)->h_source, vxlan->dev->dev_addr)) |
stephen hemminger | d342894 | 2012-10-01 12:32:35 +0000 | [diff] [blame] | 1207 | goto drop; |
| 1208 | |
Pravin B Shelar | 7ce0475 | 2013-08-19 11:22:54 -0700 | [diff] [blame] | 1209 | /* Re-examine inner Ethernet packet */ |
Cong Wang | e4c7ed4 | 2013-08-31 13:44:33 +0800 | [diff] [blame] | 1210 | if (remote_ip->sa.sa_family == AF_INET) { |
| 1211 | oip = ip_hdr(skb); |
| 1212 | saddr.sin.sin_addr.s_addr = oip->saddr; |
| 1213 | saddr.sa.sa_family = AF_INET; |
| 1214 | #if IS_ENABLED(CONFIG_IPV6) |
| 1215 | } else { |
| 1216 | oip6 = ipv6_hdr(skb); |
| 1217 | saddr.sin6.sin6_addr = oip6->saddr; |
| 1218 | saddr.sa.sa_family = AF_INET6; |
| 1219 | #endif |
| 1220 | } |
| 1221 | |
stephen hemminger | 26a41ae6 | 2013-06-17 12:09:58 -0700 | [diff] [blame] | 1222 | if ((vxlan->flags & VXLAN_F_LEARN) && |
Cong Wang | e4c7ed4 | 2013-08-31 13:44:33 +0800 | [diff] [blame] | 1223 | vxlan_snoop(skb->dev, &saddr, eth_hdr(skb)->h_source)) |
stephen hemminger | 26a41ae6 | 2013-06-17 12:09:58 -0700 | [diff] [blame] | 1224 | goto drop; |
stephen hemminger | d342894 | 2012-10-01 12:32:35 +0000 | [diff] [blame] | 1225 | |
stephen hemminger | d342894 | 2012-10-01 12:32:35 +0000 | [diff] [blame] | 1226 | skb_reset_network_header(skb); |
Joseph Gasparakis | 0afb166 | 2012-12-07 14:14:18 +0000 | [diff] [blame] | 1227 | |
Cong Wang | e4c7ed4 | 2013-08-31 13:44:33 +0800 | [diff] [blame] | 1228 | if (oip6) |
| 1229 | err = IP6_ECN_decapsulate(oip6, skb); |
| 1230 | if (oip) |
| 1231 | err = IP_ECN_decapsulate(oip, skb); |
| 1232 | |
stephen hemminger | d342894 | 2012-10-01 12:32:35 +0000 | [diff] [blame] | 1233 | if (unlikely(err)) { |
Cong Wang | e4c7ed4 | 2013-08-31 13:44:33 +0800 | [diff] [blame] | 1234 | if (log_ecn_error) { |
| 1235 | if (oip6) |
| 1236 | net_info_ratelimited("non-ECT from %pI6\n", |
| 1237 | &oip6->saddr); |
| 1238 | if (oip) |
| 1239 | net_info_ratelimited("non-ECT from %pI4 with TOS=%#x\n", |
| 1240 | &oip->saddr, oip->tos); |
| 1241 | } |
stephen hemminger | d342894 | 2012-10-01 12:32:35 +0000 | [diff] [blame] | 1242 | if (err > 1) { |
| 1243 | ++vxlan->dev->stats.rx_frame_errors; |
| 1244 | ++vxlan->dev->stats.rx_errors; |
| 1245 | goto drop; |
| 1246 | } |
| 1247 | } |
| 1248 | |
Pravin B Shelar | e817104 | 2013-03-25 14:49:46 +0000 | [diff] [blame] | 1249 | stats = this_cpu_ptr(vxlan->dev->tstats); |
stephen hemminger | d342894 | 2012-10-01 12:32:35 +0000 | [diff] [blame] | 1250 | u64_stats_update_begin(&stats->syncp); |
| 1251 | stats->rx_packets++; |
| 1252 | stats->rx_bytes += skb->len; |
| 1253 | u64_stats_update_end(&stats->syncp); |
| 1254 | |
| 1255 | netif_rx(skb); |
| 1256 | |
Pravin B Shelar | 5cfccc5 | 2013-08-19 11:23:02 -0700 | [diff] [blame] | 1257 | return; |
stephen hemminger | d342894 | 2012-10-01 12:32:35 +0000 | [diff] [blame] | 1258 | drop: |
| 1259 | /* Consume bad packet */ |
| 1260 | kfree_skb(skb); |
stephen hemminger | d342894 | 2012-10-01 12:32:35 +0000 | [diff] [blame] | 1261 | } |
| 1262 | |
David Stevens | e4f67ad | 2012-11-20 02:50:14 +0000 | [diff] [blame] | 1263 | static int arp_reduce(struct net_device *dev, struct sk_buff *skb) |
| 1264 | { |
| 1265 | struct vxlan_dev *vxlan = netdev_priv(dev); |
| 1266 | struct arphdr *parp; |
| 1267 | u8 *arpptr, *sha; |
| 1268 | __be32 sip, tip; |
| 1269 | struct neighbour *n; |
| 1270 | |
| 1271 | if (dev->flags & IFF_NOARP) |
| 1272 | goto out; |
| 1273 | |
| 1274 | if (!pskb_may_pull(skb, arp_hdr_len(dev))) { |
| 1275 | dev->stats.tx_dropped++; |
| 1276 | goto out; |
| 1277 | } |
| 1278 | parp = arp_hdr(skb); |
| 1279 | |
| 1280 | if ((parp->ar_hrd != htons(ARPHRD_ETHER) && |
| 1281 | parp->ar_hrd != htons(ARPHRD_IEEE802)) || |
| 1282 | parp->ar_pro != htons(ETH_P_IP) || |
| 1283 | parp->ar_op != htons(ARPOP_REQUEST) || |
| 1284 | parp->ar_hln != dev->addr_len || |
| 1285 | parp->ar_pln != 4) |
| 1286 | goto out; |
| 1287 | arpptr = (u8 *)parp + sizeof(struct arphdr); |
| 1288 | sha = arpptr; |
| 1289 | arpptr += dev->addr_len; /* sha */ |
| 1290 | memcpy(&sip, arpptr, sizeof(sip)); |
| 1291 | arpptr += sizeof(sip); |
| 1292 | arpptr += dev->addr_len; /* tha */ |
| 1293 | memcpy(&tip, arpptr, sizeof(tip)); |
| 1294 | |
| 1295 | if (ipv4_is_loopback(tip) || |
| 1296 | ipv4_is_multicast(tip)) |
| 1297 | goto out; |
| 1298 | |
| 1299 | n = neigh_lookup(&arp_tbl, &tip, dev); |
| 1300 | |
| 1301 | if (n) { |
David Stevens | e4f67ad | 2012-11-20 02:50:14 +0000 | [diff] [blame] | 1302 | struct vxlan_fdb *f; |
| 1303 | struct sk_buff *reply; |
| 1304 | |
| 1305 | if (!(n->nud_state & NUD_CONNECTED)) { |
| 1306 | neigh_release(n); |
| 1307 | goto out; |
| 1308 | } |
| 1309 | |
| 1310 | f = vxlan_find_mac(vxlan, n->ha); |
Cong Wang | e4c7ed4 | 2013-08-31 13:44:33 +0800 | [diff] [blame] | 1311 | if (f && vxlan_addr_any(&(first_remote_rcu(f)->remote_ip))) { |
David Stevens | e4f67ad | 2012-11-20 02:50:14 +0000 | [diff] [blame] | 1312 | /* bridge-local neighbor */ |
| 1313 | neigh_release(n); |
| 1314 | goto out; |
| 1315 | } |
| 1316 | |
| 1317 | reply = arp_create(ARPOP_REPLY, ETH_P_ARP, sip, dev, tip, sha, |
| 1318 | n->ha, sha); |
| 1319 | |
| 1320 | neigh_release(n); |
| 1321 | |
David Stevens | 7346135 | 2014-03-18 12:32:29 -0400 | [diff] [blame] | 1322 | if (reply == NULL) |
| 1323 | goto out; |
| 1324 | |
David Stevens | e4f67ad | 2012-11-20 02:50:14 +0000 | [diff] [blame] | 1325 | skb_reset_mac_header(reply); |
| 1326 | __skb_pull(reply, skb_network_offset(reply)); |
| 1327 | reply->ip_summed = CHECKSUM_UNNECESSARY; |
| 1328 | reply->pkt_type = PACKET_HOST; |
| 1329 | |
| 1330 | if (netif_rx_ni(reply) == NET_RX_DROP) |
| 1331 | dev->stats.rx_dropped++; |
Cong Wang | e4c7ed4 | 2013-08-31 13:44:33 +0800 | [diff] [blame] | 1332 | } else if (vxlan->flags & VXLAN_F_L3MISS) { |
| 1333 | union vxlan_addr ipa = { |
| 1334 | .sin.sin_addr.s_addr = tip, |
| 1335 | .sa.sa_family = AF_INET, |
| 1336 | }; |
| 1337 | |
| 1338 | vxlan_ip_miss(dev, &ipa); |
| 1339 | } |
David Stevens | e4f67ad | 2012-11-20 02:50:14 +0000 | [diff] [blame] | 1340 | out: |
| 1341 | consume_skb(skb); |
| 1342 | return NETDEV_TX_OK; |
| 1343 | } |
| 1344 | |
Cong Wang | f564f45 | 2013-08-31 13:44:36 +0800 | [diff] [blame] | 1345 | #if IS_ENABLED(CONFIG_IPV6) |
David Stevens | 4b29dba | 2014-03-24 10:39:58 -0400 | [diff] [blame] | 1346 | |
| 1347 | static struct sk_buff *vxlan_na_create(struct sk_buff *request, |
| 1348 | struct neighbour *n, bool isrouter) |
| 1349 | { |
| 1350 | struct net_device *dev = request->dev; |
| 1351 | struct sk_buff *reply; |
| 1352 | struct nd_msg *ns, *na; |
| 1353 | struct ipv6hdr *pip6; |
| 1354 | u8 *daddr; |
| 1355 | int na_olen = 8; /* opt hdr + ETH_ALEN for target */ |
| 1356 | int ns_olen; |
| 1357 | int i, len; |
| 1358 | |
| 1359 | if (dev == NULL) |
| 1360 | return NULL; |
| 1361 | |
| 1362 | len = LL_RESERVED_SPACE(dev) + sizeof(struct ipv6hdr) + |
| 1363 | sizeof(*na) + na_olen + dev->needed_tailroom; |
| 1364 | reply = alloc_skb(len, GFP_ATOMIC); |
| 1365 | if (reply == NULL) |
| 1366 | return NULL; |
| 1367 | |
| 1368 | reply->protocol = htons(ETH_P_IPV6); |
| 1369 | reply->dev = dev; |
| 1370 | skb_reserve(reply, LL_RESERVED_SPACE(request->dev)); |
| 1371 | skb_push(reply, sizeof(struct ethhdr)); |
| 1372 | skb_set_mac_header(reply, 0); |
| 1373 | |
| 1374 | ns = (struct nd_msg *)skb_transport_header(request); |
| 1375 | |
| 1376 | daddr = eth_hdr(request)->h_source; |
| 1377 | ns_olen = request->len - skb_transport_offset(request) - sizeof(*ns); |
| 1378 | for (i = 0; i < ns_olen-1; i += (ns->opt[i+1]<<3)) { |
| 1379 | if (ns->opt[i] == ND_OPT_SOURCE_LL_ADDR) { |
| 1380 | daddr = ns->opt + i + sizeof(struct nd_opt_hdr); |
| 1381 | break; |
| 1382 | } |
| 1383 | } |
| 1384 | |
| 1385 | /* Ethernet header */ |
| 1386 | ether_addr_copy(eth_hdr(reply)->h_dest, daddr); |
| 1387 | ether_addr_copy(eth_hdr(reply)->h_source, n->ha); |
| 1388 | eth_hdr(reply)->h_proto = htons(ETH_P_IPV6); |
| 1389 | reply->protocol = htons(ETH_P_IPV6); |
| 1390 | |
| 1391 | skb_pull(reply, sizeof(struct ethhdr)); |
| 1392 | skb_set_network_header(reply, 0); |
| 1393 | skb_put(reply, sizeof(struct ipv6hdr)); |
| 1394 | |
| 1395 | /* IPv6 header */ |
| 1396 | |
| 1397 | pip6 = ipv6_hdr(reply); |
| 1398 | memset(pip6, 0, sizeof(struct ipv6hdr)); |
| 1399 | pip6->version = 6; |
| 1400 | pip6->priority = ipv6_hdr(request)->priority; |
| 1401 | pip6->nexthdr = IPPROTO_ICMPV6; |
| 1402 | pip6->hop_limit = 255; |
| 1403 | pip6->daddr = ipv6_hdr(request)->saddr; |
| 1404 | pip6->saddr = *(struct in6_addr *)n->primary_key; |
| 1405 | |
| 1406 | skb_pull(reply, sizeof(struct ipv6hdr)); |
| 1407 | skb_set_transport_header(reply, 0); |
| 1408 | |
| 1409 | na = (struct nd_msg *)skb_put(reply, sizeof(*na) + na_olen); |
| 1410 | |
| 1411 | /* Neighbor Advertisement */ |
| 1412 | memset(na, 0, sizeof(*na)+na_olen); |
| 1413 | na->icmph.icmp6_type = NDISC_NEIGHBOUR_ADVERTISEMENT; |
| 1414 | na->icmph.icmp6_router = isrouter; |
| 1415 | na->icmph.icmp6_override = 1; |
| 1416 | na->icmph.icmp6_solicited = 1; |
| 1417 | na->target = ns->target; |
| 1418 | ether_addr_copy(&na->opt[2], n->ha); |
| 1419 | na->opt[0] = ND_OPT_TARGET_LL_ADDR; |
| 1420 | na->opt[1] = na_olen >> 3; |
| 1421 | |
| 1422 | na->icmph.icmp6_cksum = csum_ipv6_magic(&pip6->saddr, |
| 1423 | &pip6->daddr, sizeof(*na)+na_olen, IPPROTO_ICMPV6, |
| 1424 | csum_partial(na, sizeof(*na)+na_olen, 0)); |
| 1425 | |
| 1426 | pip6->payload_len = htons(sizeof(*na)+na_olen); |
| 1427 | |
| 1428 | skb_push(reply, sizeof(struct ipv6hdr)); |
| 1429 | |
| 1430 | reply->ip_summed = CHECKSUM_UNNECESSARY; |
| 1431 | |
| 1432 | return reply; |
| 1433 | } |
| 1434 | |
Cong Wang | f564f45 | 2013-08-31 13:44:36 +0800 | [diff] [blame] | 1435 | static int neigh_reduce(struct net_device *dev, struct sk_buff *skb) |
| 1436 | { |
| 1437 | struct vxlan_dev *vxlan = netdev_priv(dev); |
David Stevens | 4b29dba | 2014-03-24 10:39:58 -0400 | [diff] [blame] | 1438 | struct nd_msg *msg; |
Cong Wang | f564f45 | 2013-08-31 13:44:36 +0800 | [diff] [blame] | 1439 | const struct ipv6hdr *iphdr; |
| 1440 | const struct in6_addr *saddr, *daddr; |
David Stevens | 4b29dba | 2014-03-24 10:39:58 -0400 | [diff] [blame] | 1441 | struct neighbour *n; |
| 1442 | struct inet6_dev *in6_dev; |
Cong Wang | f564f45 | 2013-08-31 13:44:36 +0800 | [diff] [blame] | 1443 | |
| 1444 | in6_dev = __in6_dev_get(dev); |
| 1445 | if (!in6_dev) |
| 1446 | goto out; |
| 1447 | |
| 1448 | if (!pskb_may_pull(skb, skb->len)) |
| 1449 | goto out; |
| 1450 | |
| 1451 | iphdr = ipv6_hdr(skb); |
| 1452 | saddr = &iphdr->saddr; |
| 1453 | daddr = &iphdr->daddr; |
| 1454 | |
Cong Wang | f564f45 | 2013-08-31 13:44:36 +0800 | [diff] [blame] | 1455 | msg = (struct nd_msg *)skb_transport_header(skb); |
| 1456 | if (msg->icmph.icmp6_code != 0 || |
| 1457 | msg->icmph.icmp6_type != NDISC_NEIGHBOUR_SOLICITATION) |
| 1458 | goto out; |
| 1459 | |
David Stevens | 4b29dba | 2014-03-24 10:39:58 -0400 | [diff] [blame] | 1460 | if (ipv6_addr_loopback(daddr) || |
| 1461 | ipv6_addr_is_multicast(&msg->target)) |
| 1462 | goto out; |
| 1463 | |
| 1464 | n = neigh_lookup(ipv6_stub->nd_tbl, &msg->target, dev); |
Cong Wang | f564f45 | 2013-08-31 13:44:36 +0800 | [diff] [blame] | 1465 | |
| 1466 | if (n) { |
| 1467 | struct vxlan_fdb *f; |
David Stevens | 4b29dba | 2014-03-24 10:39:58 -0400 | [diff] [blame] | 1468 | struct sk_buff *reply; |
Cong Wang | f564f45 | 2013-08-31 13:44:36 +0800 | [diff] [blame] | 1469 | |
| 1470 | if (!(n->nud_state & NUD_CONNECTED)) { |
| 1471 | neigh_release(n); |
| 1472 | goto out; |
| 1473 | } |
| 1474 | |
| 1475 | f = vxlan_find_mac(vxlan, n->ha); |
| 1476 | if (f && vxlan_addr_any(&(first_remote_rcu(f)->remote_ip))) { |
| 1477 | /* bridge-local neighbor */ |
| 1478 | neigh_release(n); |
| 1479 | goto out; |
| 1480 | } |
| 1481 | |
David Stevens | 4b29dba | 2014-03-24 10:39:58 -0400 | [diff] [blame] | 1482 | reply = vxlan_na_create(skb, n, |
| 1483 | !!(f ? f->flags & NTF_ROUTER : 0)); |
| 1484 | |
Cong Wang | f564f45 | 2013-08-31 13:44:36 +0800 | [diff] [blame] | 1485 | neigh_release(n); |
David Stevens | 4b29dba | 2014-03-24 10:39:58 -0400 | [diff] [blame] | 1486 | |
| 1487 | if (reply == NULL) |
| 1488 | goto out; |
| 1489 | |
| 1490 | if (netif_rx_ni(reply) == NET_RX_DROP) |
| 1491 | dev->stats.rx_dropped++; |
| 1492 | |
Cong Wang | f564f45 | 2013-08-31 13:44:36 +0800 | [diff] [blame] | 1493 | } else if (vxlan->flags & VXLAN_F_L3MISS) { |
David Stevens | 4b29dba | 2014-03-24 10:39:58 -0400 | [diff] [blame] | 1494 | union vxlan_addr ipa = { |
| 1495 | .sin6.sin6_addr = msg->target, |
| 1496 | .sa.sa_family = AF_INET6, |
| 1497 | }; |
| 1498 | |
Cong Wang | f564f45 | 2013-08-31 13:44:36 +0800 | [diff] [blame] | 1499 | vxlan_ip_miss(dev, &ipa); |
| 1500 | } |
| 1501 | |
| 1502 | out: |
| 1503 | consume_skb(skb); |
| 1504 | return NETDEV_TX_OK; |
| 1505 | } |
| 1506 | #endif |
| 1507 | |
David Stevens | e4f67ad | 2012-11-20 02:50:14 +0000 | [diff] [blame] | 1508 | static bool route_shortcircuit(struct net_device *dev, struct sk_buff *skb) |
| 1509 | { |
| 1510 | struct vxlan_dev *vxlan = netdev_priv(dev); |
| 1511 | struct neighbour *n; |
David Stevens | e4f67ad | 2012-11-20 02:50:14 +0000 | [diff] [blame] | 1512 | |
| 1513 | if (is_multicast_ether_addr(eth_hdr(skb)->h_dest)) |
| 1514 | return false; |
| 1515 | |
| 1516 | n = NULL; |
| 1517 | switch (ntohs(eth_hdr(skb)->h_proto)) { |
| 1518 | case ETH_P_IP: |
Cong Wang | e15a00a | 2013-08-31 13:44:34 +0800 | [diff] [blame] | 1519 | { |
| 1520 | struct iphdr *pip; |
| 1521 | |
David Stevens | e4f67ad | 2012-11-20 02:50:14 +0000 | [diff] [blame] | 1522 | if (!pskb_may_pull(skb, sizeof(struct iphdr))) |
| 1523 | return false; |
| 1524 | pip = ip_hdr(skb); |
| 1525 | n = neigh_lookup(&arp_tbl, &pip->daddr, dev); |
Cong Wang | e4c7ed4 | 2013-08-31 13:44:33 +0800 | [diff] [blame] | 1526 | if (!n && (vxlan->flags & VXLAN_F_L3MISS)) { |
| 1527 | union vxlan_addr ipa = { |
| 1528 | .sin.sin_addr.s_addr = pip->daddr, |
| 1529 | .sa.sa_family = AF_INET, |
| 1530 | }; |
| 1531 | |
| 1532 | vxlan_ip_miss(dev, &ipa); |
| 1533 | return false; |
| 1534 | } |
| 1535 | |
David Stevens | e4f67ad | 2012-11-20 02:50:14 +0000 | [diff] [blame] | 1536 | break; |
Cong Wang | e15a00a | 2013-08-31 13:44:34 +0800 | [diff] [blame] | 1537 | } |
| 1538 | #if IS_ENABLED(CONFIG_IPV6) |
| 1539 | case ETH_P_IPV6: |
| 1540 | { |
| 1541 | struct ipv6hdr *pip6; |
| 1542 | |
| 1543 | if (!pskb_may_pull(skb, sizeof(struct ipv6hdr))) |
| 1544 | return false; |
| 1545 | pip6 = ipv6_hdr(skb); |
| 1546 | n = neigh_lookup(ipv6_stub->nd_tbl, &pip6->daddr, dev); |
| 1547 | if (!n && (vxlan->flags & VXLAN_F_L3MISS)) { |
| 1548 | union vxlan_addr ipa = { |
| 1549 | .sin6.sin6_addr = pip6->daddr, |
| 1550 | .sa.sa_family = AF_INET6, |
| 1551 | }; |
| 1552 | |
| 1553 | vxlan_ip_miss(dev, &ipa); |
| 1554 | return false; |
| 1555 | } |
| 1556 | |
| 1557 | break; |
| 1558 | } |
| 1559 | #endif |
David Stevens | e4f67ad | 2012-11-20 02:50:14 +0000 | [diff] [blame] | 1560 | default: |
| 1561 | return false; |
| 1562 | } |
| 1563 | |
| 1564 | if (n) { |
| 1565 | bool diff; |
| 1566 | |
Joe Perches | 7367d0b | 2013-09-01 11:51:23 -0700 | [diff] [blame] | 1567 | diff = !ether_addr_equal(eth_hdr(skb)->h_dest, n->ha); |
David Stevens | e4f67ad | 2012-11-20 02:50:14 +0000 | [diff] [blame] | 1568 | if (diff) { |
| 1569 | memcpy(eth_hdr(skb)->h_source, eth_hdr(skb)->h_dest, |
| 1570 | dev->addr_len); |
| 1571 | memcpy(eth_hdr(skb)->h_dest, n->ha, dev->addr_len); |
| 1572 | } |
| 1573 | neigh_release(n); |
| 1574 | return diff; |
Cong Wang | e4c7ed4 | 2013-08-31 13:44:33 +0800 | [diff] [blame] | 1575 | } |
| 1576 | |
David Stevens | e4f67ad | 2012-11-20 02:50:14 +0000 | [diff] [blame] | 1577 | return false; |
| 1578 | } |
| 1579 | |
stephen hemminger | 05f47d6 | 2012-10-09 20:35:50 +0000 | [diff] [blame] | 1580 | /* Compute source port for outgoing packet |
| 1581 | * first choice to use L4 flow hash since it will spread |
| 1582 | * better and maybe available from hardware |
| 1583 | * secondary choice is to use jhash on the Ethernet header |
| 1584 | */ |
Pravin B Shelar | 4956053 | 2013-08-19 11:23:17 -0700 | [diff] [blame] | 1585 | __be16 vxlan_src_port(__u16 port_min, __u16 port_max, struct sk_buff *skb) |
stephen hemminger | 05f47d6 | 2012-10-09 20:35:50 +0000 | [diff] [blame] | 1586 | { |
Pravin B Shelar | 4956053 | 2013-08-19 11:23:17 -0700 | [diff] [blame] | 1587 | unsigned int range = (port_max - port_min) + 1; |
stephen hemminger | 05f47d6 | 2012-10-09 20:35:50 +0000 | [diff] [blame] | 1588 | u32 hash; |
| 1589 | |
Tom Herbert | 3958afa1b | 2013-12-15 22:12:06 -0800 | [diff] [blame] | 1590 | hash = skb_get_hash(skb); |
stephen hemminger | 05f47d6 | 2012-10-09 20:35:50 +0000 | [diff] [blame] | 1591 | if (!hash) |
| 1592 | hash = jhash(skb->data, 2 * ETH_ALEN, |
| 1593 | (__force u32) skb->protocol); |
| 1594 | |
Pravin B Shelar | 4956053 | 2013-08-19 11:23:17 -0700 | [diff] [blame] | 1595 | return htons((((u64) hash * range) >> 32) + port_min); |
stephen hemminger | 05f47d6 | 2012-10-09 20:35:50 +0000 | [diff] [blame] | 1596 | } |
Pravin B Shelar | 4956053 | 2013-08-19 11:23:17 -0700 | [diff] [blame] | 1597 | EXPORT_SYMBOL_GPL(vxlan_src_port); |
stephen hemminger | 05f47d6 | 2012-10-09 20:35:50 +0000 | [diff] [blame] | 1598 | |
Tom Herbert | 359a0ea | 2014-06-04 17:20:29 -0700 | [diff] [blame] | 1599 | static inline struct sk_buff *vxlan_handle_offloads(struct sk_buff *skb, |
| 1600 | bool udp_csum) |
Pravin B Shelar | 05c0db0 | 2013-03-07 13:22:36 +0000 | [diff] [blame] | 1601 | { |
Tom Herbert | 359a0ea | 2014-06-04 17:20:29 -0700 | [diff] [blame] | 1602 | int type = udp_csum ? SKB_GSO_UDP_TUNNEL_CSUM : SKB_GSO_UDP_TUNNEL; |
| 1603 | return iptunnel_handle_offloads(skb, udp_csum, type); |
Pravin B Shelar | 05c0db0 | 2013-03-07 13:22:36 +0000 | [diff] [blame] | 1604 | } |
| 1605 | |
Cong Wang | e4c7ed4 | 2013-08-31 13:44:33 +0800 | [diff] [blame] | 1606 | #if IS_ENABLED(CONFIG_IPV6) |
Nicolas Dichtel | 1179618 | 2013-09-02 15:34:55 +0200 | [diff] [blame] | 1607 | static int vxlan6_xmit_skb(struct vxlan_sock *vs, |
Cong Wang | e4c7ed4 | 2013-08-31 13:44:33 +0800 | [diff] [blame] | 1608 | struct dst_entry *dst, struct sk_buff *skb, |
| 1609 | struct net_device *dev, struct in6_addr *saddr, |
| 1610 | struct in6_addr *daddr, __u8 prio, __u8 ttl, |
Nicolas Dichtel | f01ec1c | 2014-04-24 10:02:49 +0200 | [diff] [blame] | 1611 | __be16 src_port, __be16 dst_port, __be32 vni, |
| 1612 | bool xnet) |
Cong Wang | e4c7ed4 | 2013-08-31 13:44:33 +0800 | [diff] [blame] | 1613 | { |
| 1614 | struct ipv6hdr *ip6h; |
| 1615 | struct vxlanhdr *vxh; |
| 1616 | struct udphdr *uh; |
| 1617 | int min_headroom; |
| 1618 | int err; |
| 1619 | |
Tom Herbert | 359a0ea | 2014-06-04 17:20:29 -0700 | [diff] [blame] | 1620 | skb = vxlan_handle_offloads(skb, !udp_get_no_check6_tx(vs->sock->sk)); |
| 1621 | if (IS_ERR(skb)) |
| 1622 | return -EINVAL; |
Cong Wang | e4c7ed4 | 2013-08-31 13:44:33 +0800 | [diff] [blame] | 1623 | |
Nicolas Dichtel | f01ec1c | 2014-04-24 10:02:49 +0200 | [diff] [blame] | 1624 | skb_scrub_packet(skb, xnet); |
Nicolas Dichtel | 963a88b | 2013-09-02 15:34:57 +0200 | [diff] [blame] | 1625 | |
Cong Wang | e4c7ed4 | 2013-08-31 13:44:33 +0800 | [diff] [blame] | 1626 | min_headroom = LL_RESERVED_SPACE(dst->dev) + dst->header_len |
| 1627 | + VXLAN_HLEN + sizeof(struct ipv6hdr) |
| 1628 | + (vlan_tx_tag_present(skb) ? VLAN_HLEN : 0); |
| 1629 | |
| 1630 | /* Need space for new headers (invalidates iph ptr) */ |
| 1631 | err = skb_cow_head(skb, min_headroom); |
| 1632 | if (unlikely(err)) |
| 1633 | return err; |
| 1634 | |
| 1635 | if (vlan_tx_tag_present(skb)) { |
| 1636 | if (WARN_ON(!__vlan_put_tag(skb, |
| 1637 | skb->vlan_proto, |
| 1638 | vlan_tx_tag_get(skb)))) |
| 1639 | return -ENOMEM; |
| 1640 | |
| 1641 | skb->vlan_tci = 0; |
| 1642 | } |
| 1643 | |
| 1644 | vxh = (struct vxlanhdr *) __skb_push(skb, sizeof(*vxh)); |
| 1645 | vxh->vx_flags = htonl(VXLAN_FLAGS); |
| 1646 | vxh->vx_vni = vni; |
| 1647 | |
| 1648 | __skb_push(skb, sizeof(*uh)); |
| 1649 | skb_reset_transport_header(skb); |
| 1650 | uh = udp_hdr(skb); |
| 1651 | |
| 1652 | uh->dest = dst_port; |
| 1653 | uh->source = src_port; |
| 1654 | |
| 1655 | uh->len = htons(skb->len); |
Cong Wang | e4c7ed4 | 2013-08-31 13:44:33 +0800 | [diff] [blame] | 1656 | |
| 1657 | memset(&(IPCB(skb)->opt), 0, sizeof(IPCB(skb)->opt)); |
| 1658 | IPCB(skb)->flags &= ~(IPSKB_XFRM_TUNNEL_SIZE | IPSKB_XFRM_TRANSFORMED | |
| 1659 | IPSKB_REROUTED); |
Cong Wang | e4c7ed4 | 2013-08-31 13:44:33 +0800 | [diff] [blame] | 1660 | skb_dst_set(skb, dst); |
| 1661 | |
Tom Herbert | 359a0ea | 2014-06-04 17:20:29 -0700 | [diff] [blame] | 1662 | udp6_set_csum(udp_get_no_check6_tx(vs->sock->sk), skb, |
| 1663 | saddr, daddr, skb->len); |
Cong Wang | e4c7ed4 | 2013-08-31 13:44:33 +0800 | [diff] [blame] | 1664 | |
| 1665 | __skb_push(skb, sizeof(*ip6h)); |
| 1666 | skb_reset_network_header(skb); |
| 1667 | ip6h = ipv6_hdr(skb); |
| 1668 | ip6h->version = 6; |
| 1669 | ip6h->priority = prio; |
| 1670 | ip6h->flow_lbl[0] = 0; |
| 1671 | ip6h->flow_lbl[1] = 0; |
| 1672 | ip6h->flow_lbl[2] = 0; |
| 1673 | ip6h->payload_len = htons(skb->len); |
| 1674 | ip6h->nexthdr = IPPROTO_UDP; |
| 1675 | ip6h->hop_limit = ttl; |
| 1676 | ip6h->daddr = *daddr; |
| 1677 | ip6h->saddr = *saddr; |
| 1678 | |
Cong Wang | e4c7ed4 | 2013-08-31 13:44:33 +0800 | [diff] [blame] | 1679 | ip6tunnel_xmit(skb, dev); |
| 1680 | return 0; |
| 1681 | } |
| 1682 | #endif |
| 1683 | |
Nicolas Dichtel | 1179618 | 2013-09-02 15:34:55 +0200 | [diff] [blame] | 1684 | int vxlan_xmit_skb(struct vxlan_sock *vs, |
Pravin B Shelar | 4956053 | 2013-08-19 11:23:17 -0700 | [diff] [blame] | 1685 | struct rtable *rt, struct sk_buff *skb, |
| 1686 | __be32 src, __be32 dst, __u8 tos, __u8 ttl, __be16 df, |
Nicolas Dichtel | f01ec1c | 2014-04-24 10:02:49 +0200 | [diff] [blame] | 1687 | __be16 src_port, __be16 dst_port, __be32 vni, bool xnet) |
Pravin B Shelar | 4956053 | 2013-08-19 11:23:17 -0700 | [diff] [blame] | 1688 | { |
| 1689 | struct vxlanhdr *vxh; |
| 1690 | struct udphdr *uh; |
Pravin B Shelar | 649c5b8 | 2013-08-19 11:23:22 -0700 | [diff] [blame] | 1691 | int min_headroom; |
Pravin B Shelar | 4956053 | 2013-08-19 11:23:17 -0700 | [diff] [blame] | 1692 | int err; |
| 1693 | |
Tom Herbert | 359a0ea | 2014-06-04 17:20:29 -0700 | [diff] [blame] | 1694 | skb = vxlan_handle_offloads(skb, !vs->sock->sk->sk_no_check_tx); |
| 1695 | if (IS_ERR(skb)) |
| 1696 | return -EINVAL; |
Pravin B Shelar | 4956053 | 2013-08-19 11:23:17 -0700 | [diff] [blame] | 1697 | |
Pravin B Shelar | 649c5b8 | 2013-08-19 11:23:22 -0700 | [diff] [blame] | 1698 | min_headroom = LL_RESERVED_SPACE(rt->dst.dev) + rt->dst.header_len |
Pravin B Shelar | 1eaa817 | 2013-08-19 11:23:29 -0700 | [diff] [blame] | 1699 | + VXLAN_HLEN + sizeof(struct iphdr) |
| 1700 | + (vlan_tx_tag_present(skb) ? VLAN_HLEN : 0); |
Pravin B Shelar | 649c5b8 | 2013-08-19 11:23:22 -0700 | [diff] [blame] | 1701 | |
| 1702 | /* Need space for new headers (invalidates iph ptr) */ |
| 1703 | err = skb_cow_head(skb, min_headroom); |
| 1704 | if (unlikely(err)) |
| 1705 | return err; |
| 1706 | |
Pravin B Shelar | 1eaa817 | 2013-08-19 11:23:29 -0700 | [diff] [blame] | 1707 | if (vlan_tx_tag_present(skb)) { |
| 1708 | if (WARN_ON(!__vlan_put_tag(skb, |
| 1709 | skb->vlan_proto, |
| 1710 | vlan_tx_tag_get(skb)))) |
| 1711 | return -ENOMEM; |
| 1712 | |
| 1713 | skb->vlan_tci = 0; |
| 1714 | } |
| 1715 | |
Pravin B Shelar | 4956053 | 2013-08-19 11:23:17 -0700 | [diff] [blame] | 1716 | vxh = (struct vxlanhdr *) __skb_push(skb, sizeof(*vxh)); |
| 1717 | vxh->vx_flags = htonl(VXLAN_FLAGS); |
| 1718 | vxh->vx_vni = vni; |
| 1719 | |
| 1720 | __skb_push(skb, sizeof(*uh)); |
| 1721 | skb_reset_transport_header(skb); |
| 1722 | uh = udp_hdr(skb); |
| 1723 | |
| 1724 | uh->dest = dst_port; |
| 1725 | uh->source = src_port; |
| 1726 | |
| 1727 | uh->len = htons(skb->len); |
Pravin B Shelar | 4956053 | 2013-08-19 11:23:17 -0700 | [diff] [blame] | 1728 | |
Tom Herbert | 359a0ea | 2014-06-04 17:20:29 -0700 | [diff] [blame] | 1729 | udp_set_csum(vs->sock->sk->sk_no_check_tx, skb, |
| 1730 | src, dst, skb->len); |
Pravin B Shelar | 4956053 | 2013-08-19 11:23:17 -0700 | [diff] [blame] | 1731 | |
Eric Dumazet | aad8872 | 2014-04-15 13:47:15 -0400 | [diff] [blame] | 1732 | return iptunnel_xmit(vs->sock->sk, rt, skb, src, dst, IPPROTO_UDP, |
Nicolas Dichtel | f01ec1c | 2014-04-24 10:02:49 +0200 | [diff] [blame] | 1733 | tos, ttl, df, xnet); |
Pravin B Shelar | 4956053 | 2013-08-19 11:23:17 -0700 | [diff] [blame] | 1734 | } |
| 1735 | EXPORT_SYMBOL_GPL(vxlan_xmit_skb); |
| 1736 | |
Sridhar Samudrala | 9dcc71e | 2013-04-02 12:31:52 +0000 | [diff] [blame] | 1737 | /* Bypass encapsulation if the destination is local */ |
| 1738 | static void vxlan_encap_bypass(struct sk_buff *skb, struct vxlan_dev *src_vxlan, |
| 1739 | struct vxlan_dev *dst_vxlan) |
| 1740 | { |
Li RongQing | 8f84985 | 2014-01-04 13:57:59 +0800 | [diff] [blame] | 1741 | struct pcpu_sw_netstats *tx_stats, *rx_stats; |
Cong Wang | e4c7ed4 | 2013-08-31 13:44:33 +0800 | [diff] [blame] | 1742 | union vxlan_addr loopback; |
| 1743 | union vxlan_addr *remote_ip = &dst_vxlan->default_dst.remote_ip; |
Sridhar Samudrala | 9dcc71e | 2013-04-02 12:31:52 +0000 | [diff] [blame] | 1744 | |
Li RongQing | 8f84985 | 2014-01-04 13:57:59 +0800 | [diff] [blame] | 1745 | tx_stats = this_cpu_ptr(src_vxlan->dev->tstats); |
| 1746 | rx_stats = this_cpu_ptr(dst_vxlan->dev->tstats); |
Sridhar Samudrala | 9dcc71e | 2013-04-02 12:31:52 +0000 | [diff] [blame] | 1747 | skb->pkt_type = PACKET_HOST; |
| 1748 | skb->encapsulation = 0; |
| 1749 | skb->dev = dst_vxlan->dev; |
| 1750 | __skb_pull(skb, skb_network_offset(skb)); |
| 1751 | |
Cong Wang | e4c7ed4 | 2013-08-31 13:44:33 +0800 | [diff] [blame] | 1752 | if (remote_ip->sa.sa_family == AF_INET) { |
| 1753 | loopback.sin.sin_addr.s_addr = htonl(INADDR_LOOPBACK); |
| 1754 | loopback.sa.sa_family = AF_INET; |
| 1755 | #if IS_ENABLED(CONFIG_IPV6) |
| 1756 | } else { |
| 1757 | loopback.sin6.sin6_addr = in6addr_loopback; |
| 1758 | loopback.sa.sa_family = AF_INET6; |
| 1759 | #endif |
| 1760 | } |
| 1761 | |
Sridhar Samudrala | 9dcc71e | 2013-04-02 12:31:52 +0000 | [diff] [blame] | 1762 | if (dst_vxlan->flags & VXLAN_F_LEARN) |
Cong Wang | e4c7ed4 | 2013-08-31 13:44:33 +0800 | [diff] [blame] | 1763 | vxlan_snoop(skb->dev, &loopback, eth_hdr(skb)->h_source); |
Sridhar Samudrala | 9dcc71e | 2013-04-02 12:31:52 +0000 | [diff] [blame] | 1764 | |
| 1765 | u64_stats_update_begin(&tx_stats->syncp); |
| 1766 | tx_stats->tx_packets++; |
| 1767 | tx_stats->tx_bytes += skb->len; |
| 1768 | u64_stats_update_end(&tx_stats->syncp); |
| 1769 | |
| 1770 | if (netif_rx(skb) == NET_RX_SUCCESS) { |
| 1771 | u64_stats_update_begin(&rx_stats->syncp); |
| 1772 | rx_stats->rx_packets++; |
| 1773 | rx_stats->rx_bytes += skb->len; |
| 1774 | u64_stats_update_end(&rx_stats->syncp); |
| 1775 | } else { |
| 1776 | skb->dev->stats.rx_dropped++; |
| 1777 | } |
| 1778 | } |
| 1779 | |
Stephen Hemminger | 4ad1693 | 2013-06-17 14:16:11 -0700 | [diff] [blame] | 1780 | static void vxlan_xmit_one(struct sk_buff *skb, struct net_device *dev, |
| 1781 | struct vxlan_rdst *rdst, bool did_rsc) |
stephen hemminger | d342894 | 2012-10-01 12:32:35 +0000 | [diff] [blame] | 1782 | { |
| 1783 | struct vxlan_dev *vxlan = netdev_priv(dev); |
Cong Wang | e4c7ed4 | 2013-08-31 13:44:33 +0800 | [diff] [blame] | 1784 | struct rtable *rt = NULL; |
stephen hemminger | d342894 | 2012-10-01 12:32:35 +0000 | [diff] [blame] | 1785 | const struct iphdr *old_iph; |
stephen hemminger | d342894 | 2012-10-01 12:32:35 +0000 | [diff] [blame] | 1786 | struct flowi4 fl4; |
Cong Wang | e4c7ed4 | 2013-08-31 13:44:33 +0800 | [diff] [blame] | 1787 | union vxlan_addr *dst; |
| 1788 | __be16 src_port = 0, dst_port; |
Stephen Hemminger | 234f5b7 | 2013-06-17 14:16:41 -0700 | [diff] [blame] | 1789 | u32 vni; |
stephen hemminger | d342894 | 2012-10-01 12:32:35 +0000 | [diff] [blame] | 1790 | __be16 df = 0; |
| 1791 | __u8 tos, ttl; |
Pravin B Shelar | 0e6fbc5 | 2013-06-17 17:49:56 -0700 | [diff] [blame] | 1792 | int err; |
stephen hemminger | d342894 | 2012-10-01 12:32:35 +0000 | [diff] [blame] | 1793 | |
stephen hemminger | 823aa87 | 2013-04-27 11:31:57 +0000 | [diff] [blame] | 1794 | dst_port = rdst->remote_port ? rdst->remote_port : vxlan->dst_port; |
David Stevens | 6681712 | 2013-03-15 04:35:51 +0000 | [diff] [blame] | 1795 | vni = rdst->remote_vni; |
Cong Wang | e4c7ed4 | 2013-08-31 13:44:33 +0800 | [diff] [blame] | 1796 | dst = &rdst->remote_ip; |
David Stevens | e4f67ad | 2012-11-20 02:50:14 +0000 | [diff] [blame] | 1797 | |
Cong Wang | e4c7ed4 | 2013-08-31 13:44:33 +0800 | [diff] [blame] | 1798 | if (vxlan_addr_any(dst)) { |
David Stevens | e4f67ad | 2012-11-20 02:50:14 +0000 | [diff] [blame] | 1799 | if (did_rsc) { |
David Stevens | e4f67ad | 2012-11-20 02:50:14 +0000 | [diff] [blame] | 1800 | /* short-circuited back to local bridge */ |
Sridhar Samudrala | 9dcc71e | 2013-04-02 12:31:52 +0000 | [diff] [blame] | 1801 | vxlan_encap_bypass(skb, vxlan, vxlan); |
Stephen Hemminger | 4ad1693 | 2013-06-17 14:16:11 -0700 | [diff] [blame] | 1802 | return; |
David Stevens | e4f67ad | 2012-11-20 02:50:14 +0000 | [diff] [blame] | 1803 | } |
stephen hemminger | ef59feb | 2012-10-09 20:35:46 +0000 | [diff] [blame] | 1804 | goto drop; |
David Stevens | e4f67ad | 2012-11-20 02:50:14 +0000 | [diff] [blame] | 1805 | } |
stephen hemminger | ef59feb | 2012-10-09 20:35:46 +0000 | [diff] [blame] | 1806 | |
stephen hemminger | d342894 | 2012-10-01 12:32:35 +0000 | [diff] [blame] | 1807 | old_iph = ip_hdr(skb); |
| 1808 | |
stephen hemminger | d342894 | 2012-10-01 12:32:35 +0000 | [diff] [blame] | 1809 | ttl = vxlan->ttl; |
Cong Wang | e4c7ed4 | 2013-08-31 13:44:33 +0800 | [diff] [blame] | 1810 | if (!ttl && vxlan_addr_multicast(dst)) |
stephen hemminger | d342894 | 2012-10-01 12:32:35 +0000 | [diff] [blame] | 1811 | ttl = 1; |
| 1812 | |
| 1813 | tos = vxlan->tos; |
| 1814 | if (tos == 1) |
Pravin B Shelar | 206aaaf | 2013-03-25 14:49:53 +0000 | [diff] [blame] | 1815 | tos = ip_tunnel_get_dsfield(old_iph, skb); |
stephen hemminger | d342894 | 2012-10-01 12:32:35 +0000 | [diff] [blame] | 1816 | |
Pravin B Shelar | 4956053 | 2013-08-19 11:23:17 -0700 | [diff] [blame] | 1817 | src_port = vxlan_src_port(vxlan->port_min, vxlan->port_max, skb); |
stephen hemminger | d342894 | 2012-10-01 12:32:35 +0000 | [diff] [blame] | 1818 | |
Cong Wang | e4c7ed4 | 2013-08-31 13:44:33 +0800 | [diff] [blame] | 1819 | if (dst->sa.sa_family == AF_INET) { |
| 1820 | memset(&fl4, 0, sizeof(fl4)); |
| 1821 | fl4.flowi4_oif = rdst->remote_ifindex; |
| 1822 | fl4.flowi4_tos = RT_TOS(tos); |
| 1823 | fl4.daddr = dst->sin.sin_addr.s_addr; |
| 1824 | fl4.saddr = vxlan->saddr.sin.sin_addr.s_addr; |
stephen hemminger | ca78f18 | 2012-10-09 20:35:48 +0000 | [diff] [blame] | 1825 | |
Nicolas Dichtel | f01ec1c | 2014-04-24 10:02:49 +0200 | [diff] [blame] | 1826 | rt = ip_route_output_key(vxlan->net, &fl4); |
Cong Wang | e4c7ed4 | 2013-08-31 13:44:33 +0800 | [diff] [blame] | 1827 | if (IS_ERR(rt)) { |
| 1828 | netdev_dbg(dev, "no route to %pI4\n", |
| 1829 | &dst->sin.sin_addr.s_addr); |
| 1830 | dev->stats.tx_carrier_errors++; |
Sridhar Samudrala | 9dcc71e | 2013-04-02 12:31:52 +0000 | [diff] [blame] | 1831 | goto tx_error; |
Cong Wang | e4c7ed4 | 2013-08-31 13:44:33 +0800 | [diff] [blame] | 1832 | } |
| 1833 | |
| 1834 | if (rt->dst.dev == dev) { |
| 1835 | netdev_dbg(dev, "circular route to %pI4\n", |
| 1836 | &dst->sin.sin_addr.s_addr); |
| 1837 | dev->stats.collisions++; |
Fan Du | fffc15a | 2013-12-09 10:33:53 +0800 | [diff] [blame] | 1838 | goto rt_tx_error; |
Cong Wang | e4c7ed4 | 2013-08-31 13:44:33 +0800 | [diff] [blame] | 1839 | } |
| 1840 | |
| 1841 | /* Bypass encapsulation if the destination is local */ |
| 1842 | if (rt->rt_flags & RTCF_LOCAL && |
| 1843 | !(rt->rt_flags & (RTCF_BROADCAST | RTCF_MULTICAST))) { |
| 1844 | struct vxlan_dev *dst_vxlan; |
| 1845 | |
| 1846 | ip_rt_put(rt); |
Nicolas Dichtel | f01ec1c | 2014-04-24 10:02:49 +0200 | [diff] [blame] | 1847 | dst_vxlan = vxlan_find_vni(vxlan->net, vni, dst_port); |
Cong Wang | e4c7ed4 | 2013-08-31 13:44:33 +0800 | [diff] [blame] | 1848 | if (!dst_vxlan) |
| 1849 | goto tx_error; |
| 1850 | vxlan_encap_bypass(skb, vxlan, dst_vxlan); |
| 1851 | return; |
| 1852 | } |
| 1853 | |
| 1854 | tos = ip_tunnel_ecn_encap(tos, old_iph, skb); |
| 1855 | ttl = ttl ? : ip4_dst_hoplimit(&rt->dst); |
| 1856 | |
Nicolas Dichtel | 1179618 | 2013-09-02 15:34:55 +0200 | [diff] [blame] | 1857 | err = vxlan_xmit_skb(vxlan->vn_sock, rt, skb, |
Cong Wang | e4c7ed4 | 2013-08-31 13:44:33 +0800 | [diff] [blame] | 1858 | fl4.saddr, dst->sin.sin_addr.s_addr, |
| 1859 | tos, ttl, df, src_port, dst_port, |
Nicolas Dichtel | f01ec1c | 2014-04-24 10:02:49 +0200 | [diff] [blame] | 1860 | htonl(vni << 8), |
| 1861 | !net_eq(vxlan->net, dev_net(vxlan->dev))); |
Cong Wang | e4c7ed4 | 2013-08-31 13:44:33 +0800 | [diff] [blame] | 1862 | |
| 1863 | if (err < 0) |
| 1864 | goto rt_tx_error; |
| 1865 | iptunnel_xmit_stats(err, &dev->stats, dev->tstats); |
| 1866 | #if IS_ENABLED(CONFIG_IPV6) |
| 1867 | } else { |
| 1868 | struct sock *sk = vxlan->vn_sock->sock->sk; |
| 1869 | struct dst_entry *ndst; |
| 1870 | struct flowi6 fl6; |
| 1871 | u32 flags; |
| 1872 | |
| 1873 | memset(&fl6, 0, sizeof(fl6)); |
| 1874 | fl6.flowi6_oif = rdst->remote_ifindex; |
| 1875 | fl6.daddr = dst->sin6.sin6_addr; |
| 1876 | fl6.saddr = vxlan->saddr.sin6.sin6_addr; |
Cong Wang | 8c1bb79 | 2013-09-02 10:06:51 +0800 | [diff] [blame] | 1877 | fl6.flowi6_proto = IPPROTO_UDP; |
Cong Wang | e4c7ed4 | 2013-08-31 13:44:33 +0800 | [diff] [blame] | 1878 | |
| 1879 | if (ipv6_stub->ipv6_dst_lookup(sk, &ndst, &fl6)) { |
| 1880 | netdev_dbg(dev, "no route to %pI6\n", |
| 1881 | &dst->sin6.sin6_addr); |
| 1882 | dev->stats.tx_carrier_errors++; |
| 1883 | goto tx_error; |
| 1884 | } |
| 1885 | |
| 1886 | if (ndst->dev == dev) { |
| 1887 | netdev_dbg(dev, "circular route to %pI6\n", |
| 1888 | &dst->sin6.sin6_addr); |
| 1889 | dst_release(ndst); |
| 1890 | dev->stats.collisions++; |
| 1891 | goto tx_error; |
| 1892 | } |
| 1893 | |
| 1894 | /* Bypass encapsulation if the destination is local */ |
| 1895 | flags = ((struct rt6_info *)ndst)->rt6i_flags; |
| 1896 | if (flags & RTF_LOCAL && |
| 1897 | !(flags & (RTCF_BROADCAST | RTCF_MULTICAST))) { |
| 1898 | struct vxlan_dev *dst_vxlan; |
| 1899 | |
| 1900 | dst_release(ndst); |
Nicolas Dichtel | f01ec1c | 2014-04-24 10:02:49 +0200 | [diff] [blame] | 1901 | dst_vxlan = vxlan_find_vni(vxlan->net, vni, dst_port); |
Cong Wang | e4c7ed4 | 2013-08-31 13:44:33 +0800 | [diff] [blame] | 1902 | if (!dst_vxlan) |
| 1903 | goto tx_error; |
| 1904 | vxlan_encap_bypass(skb, vxlan, dst_vxlan); |
| 1905 | return; |
| 1906 | } |
| 1907 | |
| 1908 | ttl = ttl ? : ip6_dst_hoplimit(ndst); |
| 1909 | |
Nicolas Dichtel | 1179618 | 2013-09-02 15:34:55 +0200 | [diff] [blame] | 1910 | err = vxlan6_xmit_skb(vxlan->vn_sock, ndst, skb, |
Cong Wang | e4c7ed4 | 2013-08-31 13:44:33 +0800 | [diff] [blame] | 1911 | dev, &fl6.saddr, &fl6.daddr, 0, ttl, |
Nicolas Dichtel | f01ec1c | 2014-04-24 10:02:49 +0200 | [diff] [blame] | 1912 | src_port, dst_port, htonl(vni << 8), |
| 1913 | !net_eq(vxlan->net, dev_net(vxlan->dev))); |
Cong Wang | e4c7ed4 | 2013-08-31 13:44:33 +0800 | [diff] [blame] | 1914 | #endif |
Sridhar Samudrala | 9dcc71e | 2013-04-02 12:31:52 +0000 | [diff] [blame] | 1915 | } |
stephen hemminger | d342894 | 2012-10-01 12:32:35 +0000 | [diff] [blame] | 1916 | |
Stephen Hemminger | 4ad1693 | 2013-06-17 14:16:11 -0700 | [diff] [blame] | 1917 | return; |
stephen hemminger | d342894 | 2012-10-01 12:32:35 +0000 | [diff] [blame] | 1918 | |
| 1919 | drop: |
| 1920 | dev->stats.tx_dropped++; |
| 1921 | goto tx_free; |
| 1922 | |
Pravin B Shelar | 4956053 | 2013-08-19 11:23:17 -0700 | [diff] [blame] | 1923 | rt_tx_error: |
| 1924 | ip_rt_put(rt); |
stephen hemminger | d342894 | 2012-10-01 12:32:35 +0000 | [diff] [blame] | 1925 | tx_error: |
| 1926 | dev->stats.tx_errors++; |
| 1927 | tx_free: |
| 1928 | dev_kfree_skb(skb); |
stephen hemminger | d342894 | 2012-10-01 12:32:35 +0000 | [diff] [blame] | 1929 | } |
| 1930 | |
David Stevens | 6681712 | 2013-03-15 04:35:51 +0000 | [diff] [blame] | 1931 | /* Transmit local packets over Vxlan |
| 1932 | * |
| 1933 | * Outer IP header inherits ECN and DF from inner header. |
| 1934 | * Outer UDP destination is the VXLAN assigned port. |
| 1935 | * source port is based on hash of flow |
| 1936 | */ |
| 1937 | static netdev_tx_t vxlan_xmit(struct sk_buff *skb, struct net_device *dev) |
| 1938 | { |
| 1939 | struct vxlan_dev *vxlan = netdev_priv(dev); |
| 1940 | struct ethhdr *eth; |
| 1941 | bool did_rsc = false; |
Eric Dumazet | 8f646c9 | 2014-01-06 09:54:31 -0800 | [diff] [blame] | 1942 | struct vxlan_rdst *rdst, *fdst = NULL; |
David Stevens | 6681712 | 2013-03-15 04:35:51 +0000 | [diff] [blame] | 1943 | struct vxlan_fdb *f; |
David Stevens | 6681712 | 2013-03-15 04:35:51 +0000 | [diff] [blame] | 1944 | |
| 1945 | skb_reset_mac_header(skb); |
| 1946 | eth = eth_hdr(skb); |
| 1947 | |
Cong Wang | f564f45 | 2013-08-31 13:44:36 +0800 | [diff] [blame] | 1948 | if ((vxlan->flags & VXLAN_F_PROXY)) { |
| 1949 | if (ntohs(eth->h_proto) == ETH_P_ARP) |
| 1950 | return arp_reduce(dev, skb); |
| 1951 | #if IS_ENABLED(CONFIG_IPV6) |
| 1952 | else if (ntohs(eth->h_proto) == ETH_P_IPV6 && |
| 1953 | skb->len >= sizeof(struct ipv6hdr) + sizeof(struct nd_msg) && |
| 1954 | ipv6_hdr(skb)->nexthdr == IPPROTO_ICMPV6) { |
| 1955 | struct nd_msg *msg; |
| 1956 | |
| 1957 | msg = (struct nd_msg *)skb_transport_header(skb); |
| 1958 | if (msg->icmph.icmp6_code == 0 && |
| 1959 | msg->icmph.icmp6_type == NDISC_NEIGHBOUR_SOLICITATION) |
| 1960 | return neigh_reduce(dev, skb); |
| 1961 | } |
| 1962 | #endif |
| 1963 | } |
David Stevens | 6681712 | 2013-03-15 04:35:51 +0000 | [diff] [blame] | 1964 | |
| 1965 | f = vxlan_find_mac(vxlan, eth->h_dest); |
David Stevens | ae88408 | 2013-04-19 00:36:26 +0000 | [diff] [blame] | 1966 | did_rsc = false; |
| 1967 | |
| 1968 | if (f && (f->flags & NTF_ROUTER) && (vxlan->flags & VXLAN_F_RSC) && |
Cong Wang | e15a00a | 2013-08-31 13:44:34 +0800 | [diff] [blame] | 1969 | (ntohs(eth->h_proto) == ETH_P_IP || |
| 1970 | ntohs(eth->h_proto) == ETH_P_IPV6)) { |
David Stevens | ae88408 | 2013-04-19 00:36:26 +0000 | [diff] [blame] | 1971 | did_rsc = route_shortcircuit(dev, skb); |
| 1972 | if (did_rsc) |
| 1973 | f = vxlan_find_mac(vxlan, eth->h_dest); |
| 1974 | } |
| 1975 | |
David Stevens | 6681712 | 2013-03-15 04:35:51 +0000 | [diff] [blame] | 1976 | if (f == NULL) { |
Mike Rapoport | afbd8ba | 2013-06-25 16:01:51 +0300 | [diff] [blame] | 1977 | f = vxlan_find_mac(vxlan, all_zeros_mac); |
| 1978 | if (f == NULL) { |
| 1979 | if ((vxlan->flags & VXLAN_F_L2MISS) && |
| 1980 | !is_multicast_ether_addr(eth->h_dest)) |
| 1981 | vxlan_fdb_miss(vxlan, eth->h_dest); |
David Stevens | 6681712 | 2013-03-15 04:35:51 +0000 | [diff] [blame] | 1982 | |
Mike Rapoport | afbd8ba | 2013-06-25 16:01:51 +0300 | [diff] [blame] | 1983 | dev->stats.tx_dropped++; |
Eric Dumazet | 8f646c9 | 2014-01-06 09:54:31 -0800 | [diff] [blame] | 1984 | kfree_skb(skb); |
Mike Rapoport | afbd8ba | 2013-06-25 16:01:51 +0300 | [diff] [blame] | 1985 | return NETDEV_TX_OK; |
Stephen Hemminger | 3e61aa8 | 2013-06-17 14:16:12 -0700 | [diff] [blame] | 1986 | } |
David Stevens | 6681712 | 2013-03-15 04:35:51 +0000 | [diff] [blame] | 1987 | } |
| 1988 | |
Mike Rapoport | afbd8ba | 2013-06-25 16:01:51 +0300 | [diff] [blame] | 1989 | list_for_each_entry_rcu(rdst, &f->remotes, list) { |
| 1990 | struct sk_buff *skb1; |
| 1991 | |
Eric Dumazet | 8f646c9 | 2014-01-06 09:54:31 -0800 | [diff] [blame] | 1992 | if (!fdst) { |
| 1993 | fdst = rdst; |
| 1994 | continue; |
| 1995 | } |
Mike Rapoport | afbd8ba | 2013-06-25 16:01:51 +0300 | [diff] [blame] | 1996 | skb1 = skb_clone(skb, GFP_ATOMIC); |
| 1997 | if (skb1) |
| 1998 | vxlan_xmit_one(skb1, dev, rdst, did_rsc); |
| 1999 | } |
| 2000 | |
Eric Dumazet | 8f646c9 | 2014-01-06 09:54:31 -0800 | [diff] [blame] | 2001 | if (fdst) |
| 2002 | vxlan_xmit_one(skb, dev, fdst, did_rsc); |
| 2003 | else |
| 2004 | kfree_skb(skb); |
Stephen Hemminger | 4ad1693 | 2013-06-17 14:16:11 -0700 | [diff] [blame] | 2005 | return NETDEV_TX_OK; |
David Stevens | 6681712 | 2013-03-15 04:35:51 +0000 | [diff] [blame] | 2006 | } |
| 2007 | |
stephen hemminger | d342894 | 2012-10-01 12:32:35 +0000 | [diff] [blame] | 2008 | /* Walk the forwarding table and purge stale entries */ |
| 2009 | static void vxlan_cleanup(unsigned long arg) |
| 2010 | { |
| 2011 | struct vxlan_dev *vxlan = (struct vxlan_dev *) arg; |
| 2012 | unsigned long next_timer = jiffies + FDB_AGE_INTERVAL; |
| 2013 | unsigned int h; |
| 2014 | |
| 2015 | if (!netif_running(vxlan->dev)) |
| 2016 | return; |
| 2017 | |
| 2018 | spin_lock_bh(&vxlan->hash_lock); |
| 2019 | for (h = 0; h < FDB_HASH_SIZE; ++h) { |
| 2020 | struct hlist_node *p, *n; |
| 2021 | hlist_for_each_safe(p, n, &vxlan->fdb_head[h]) { |
| 2022 | struct vxlan_fdb *f |
| 2023 | = container_of(p, struct vxlan_fdb, hlist); |
| 2024 | unsigned long timeout; |
| 2025 | |
stephen hemminger | 3c17286 | 2012-10-26 06:24:34 +0000 | [diff] [blame] | 2026 | if (f->state & NUD_PERMANENT) |
stephen hemminger | d342894 | 2012-10-01 12:32:35 +0000 | [diff] [blame] | 2027 | continue; |
| 2028 | |
| 2029 | timeout = f->used + vxlan->age_interval * HZ; |
| 2030 | if (time_before_eq(timeout, jiffies)) { |
| 2031 | netdev_dbg(vxlan->dev, |
| 2032 | "garbage collect %pM\n", |
| 2033 | f->eth_addr); |
| 2034 | f->state = NUD_STALE; |
| 2035 | vxlan_fdb_destroy(vxlan, f); |
| 2036 | } else if (time_before(timeout, next_timer)) |
| 2037 | next_timer = timeout; |
| 2038 | } |
| 2039 | } |
| 2040 | spin_unlock_bh(&vxlan->hash_lock); |
| 2041 | |
| 2042 | mod_timer(&vxlan->age_timer, next_timer); |
| 2043 | } |
| 2044 | |
Pravin B Shelar | 9c2e24e | 2013-08-19 11:22:48 -0700 | [diff] [blame] | 2045 | static void vxlan_vs_add_dev(struct vxlan_sock *vs, struct vxlan_dev *vxlan) |
| 2046 | { |
| 2047 | __u32 vni = vxlan->default_dst.remote_vni; |
| 2048 | |
| 2049 | vxlan->vn_sock = vs; |
| 2050 | hlist_add_head_rcu(&vxlan->hlist, vni_head(vs, vni)); |
| 2051 | } |
| 2052 | |
stephen hemminger | d342894 | 2012-10-01 12:32:35 +0000 | [diff] [blame] | 2053 | /* Setup stats when device is created */ |
| 2054 | static int vxlan_init(struct net_device *dev) |
| 2055 | { |
Stephen Hemminger | 1c51a91 | 2013-06-17 14:16:11 -0700 | [diff] [blame] | 2056 | struct vxlan_dev *vxlan = netdev_priv(dev); |
Nicolas Dichtel | f01ec1c | 2014-04-24 10:02:49 +0200 | [diff] [blame] | 2057 | struct vxlan_net *vn = net_generic(vxlan->net, vxlan_net_id); |
Stephen Hemminger | 1c51a91 | 2013-06-17 14:16:11 -0700 | [diff] [blame] | 2058 | struct vxlan_sock *vs; |
Stephen Hemminger | 1c51a91 | 2013-06-17 14:16:11 -0700 | [diff] [blame] | 2059 | |
WANG Cong | 1c213bd | 2014-02-13 11:46:28 -0800 | [diff] [blame] | 2060 | dev->tstats = netdev_alloc_pcpu_stats(struct pcpu_sw_netstats); |
Pravin B Shelar | e817104 | 2013-03-25 14:49:46 +0000 | [diff] [blame] | 2061 | if (!dev->tstats) |
stephen hemminger | d342894 | 2012-10-01 12:32:35 +0000 | [diff] [blame] | 2062 | return -ENOMEM; |
| 2063 | |
Stephen Hemminger | 1c51a91 | 2013-06-17 14:16:11 -0700 | [diff] [blame] | 2064 | spin_lock(&vn->sock_lock); |
Nicolas Dichtel | f01ec1c | 2014-04-24 10:02:49 +0200 | [diff] [blame] | 2065 | vs = vxlan_find_sock(vxlan->net, vxlan->dst_port); |
Stephen Hemminger | 1c51a91 | 2013-06-17 14:16:11 -0700 | [diff] [blame] | 2066 | if (vs) { |
| 2067 | /* If we have a socket with same port already, reuse it */ |
| 2068 | atomic_inc(&vs->refcnt); |
Pravin B Shelar | 9c2e24e | 2013-08-19 11:22:48 -0700 | [diff] [blame] | 2069 | vxlan_vs_add_dev(vs, vxlan); |
Stephen Hemminger | 1c51a91 | 2013-06-17 14:16:11 -0700 | [diff] [blame] | 2070 | } else { |
| 2071 | /* otherwise make new socket outside of RTNL */ |
| 2072 | dev_hold(dev); |
| 2073 | queue_work(vxlan_wq, &vxlan->sock_work); |
| 2074 | } |
| 2075 | spin_unlock(&vn->sock_lock); |
| 2076 | |
stephen hemminger | d342894 | 2012-10-01 12:32:35 +0000 | [diff] [blame] | 2077 | return 0; |
| 2078 | } |
| 2079 | |
Stephen Hemminger | ba609e9 | 2013-06-25 17:06:01 -0700 | [diff] [blame] | 2080 | static void vxlan_fdb_delete_default(struct vxlan_dev *vxlan) |
Mike Rapoport | afbd8ba | 2013-06-25 16:01:51 +0300 | [diff] [blame] | 2081 | { |
| 2082 | struct vxlan_fdb *f; |
| 2083 | |
| 2084 | spin_lock_bh(&vxlan->hash_lock); |
| 2085 | f = __vxlan_find_mac(vxlan, all_zeros_mac); |
| 2086 | if (f) |
| 2087 | vxlan_fdb_destroy(vxlan, f); |
| 2088 | spin_unlock_bh(&vxlan->hash_lock); |
| 2089 | } |
| 2090 | |
Stephen Hemminger | ebf4063 | 2013-06-17 14:16:11 -0700 | [diff] [blame] | 2091 | static void vxlan_uninit(struct net_device *dev) |
| 2092 | { |
| 2093 | struct vxlan_dev *vxlan = netdev_priv(dev); |
Stephen Hemminger | ebf4063 | 2013-06-17 14:16:11 -0700 | [diff] [blame] | 2094 | struct vxlan_sock *vs = vxlan->vn_sock; |
| 2095 | |
Stephen Hemminger | ba609e9 | 2013-06-25 17:06:01 -0700 | [diff] [blame] | 2096 | vxlan_fdb_delete_default(vxlan); |
Mike Rapoport | afbd8ba | 2013-06-25 16:01:51 +0300 | [diff] [blame] | 2097 | |
Stephen Hemminger | ebf4063 | 2013-06-17 14:16:11 -0700 | [diff] [blame] | 2098 | if (vs) |
Pravin B Shelar | 012a572 | 2013-08-19 11:23:07 -0700 | [diff] [blame] | 2099 | vxlan_sock_release(vs); |
Stephen Hemminger | ebf4063 | 2013-06-17 14:16:11 -0700 | [diff] [blame] | 2100 | free_percpu(dev->tstats); |
| 2101 | } |
| 2102 | |
stephen hemminger | d342894 | 2012-10-01 12:32:35 +0000 | [diff] [blame] | 2103 | /* Start ageing timer and join group when device is brought up */ |
| 2104 | static int vxlan_open(struct net_device *dev) |
| 2105 | { |
| 2106 | struct vxlan_dev *vxlan = netdev_priv(dev); |
Stephen Hemminger | 1c51a91 | 2013-06-17 14:16:11 -0700 | [diff] [blame] | 2107 | struct vxlan_sock *vs = vxlan->vn_sock; |
| 2108 | |
| 2109 | /* socket hasn't been created */ |
| 2110 | if (!vs) |
| 2111 | return -ENOTCONN; |
stephen hemminger | d342894 | 2012-10-01 12:32:35 +0000 | [diff] [blame] | 2112 | |
Gao feng | 79d4a94 | 2013-12-10 16:37:32 +0800 | [diff] [blame] | 2113 | if (vxlan_addr_multicast(&vxlan->default_dst.remote_ip)) { |
Stephen Hemminger | 1c51a91 | 2013-06-17 14:16:11 -0700 | [diff] [blame] | 2114 | vxlan_sock_hold(vs); |
Stephen Hemminger | 7c47ced | 2013-06-17 14:16:10 -0700 | [diff] [blame] | 2115 | dev_hold(dev); |
stephen hemminger | 3fc2de2 | 2013-07-18 08:40:15 -0700 | [diff] [blame] | 2116 | queue_work(vxlan_wq, &vxlan->igmp_join); |
stephen hemminger | d342894 | 2012-10-01 12:32:35 +0000 | [diff] [blame] | 2117 | } |
| 2118 | |
| 2119 | if (vxlan->age_interval) |
| 2120 | mod_timer(&vxlan->age_timer, jiffies + FDB_AGE_INTERVAL); |
| 2121 | |
| 2122 | return 0; |
| 2123 | } |
| 2124 | |
| 2125 | /* Purge the forwarding table */ |
| 2126 | static void vxlan_flush(struct vxlan_dev *vxlan) |
| 2127 | { |
Cong Wang | 31fec5a | 2013-05-27 22:35:52 +0000 | [diff] [blame] | 2128 | unsigned int h; |
stephen hemminger | d342894 | 2012-10-01 12:32:35 +0000 | [diff] [blame] | 2129 | |
| 2130 | spin_lock_bh(&vxlan->hash_lock); |
| 2131 | for (h = 0; h < FDB_HASH_SIZE; ++h) { |
| 2132 | struct hlist_node *p, *n; |
| 2133 | hlist_for_each_safe(p, n, &vxlan->fdb_head[h]) { |
| 2134 | struct vxlan_fdb *f |
| 2135 | = container_of(p, struct vxlan_fdb, hlist); |
Mike Rapoport | afbd8ba | 2013-06-25 16:01:51 +0300 | [diff] [blame] | 2136 | /* the all_zeros_mac entry is deleted at vxlan_uninit */ |
| 2137 | if (!is_zero_ether_addr(f->eth_addr)) |
| 2138 | vxlan_fdb_destroy(vxlan, f); |
stephen hemminger | d342894 | 2012-10-01 12:32:35 +0000 | [diff] [blame] | 2139 | } |
| 2140 | } |
| 2141 | spin_unlock_bh(&vxlan->hash_lock); |
| 2142 | } |
| 2143 | |
| 2144 | /* Cleanup timer and forwarding table on shutdown */ |
| 2145 | static int vxlan_stop(struct net_device *dev) |
| 2146 | { |
| 2147 | struct vxlan_dev *vxlan = netdev_priv(dev); |
Nicolas Dichtel | f01ec1c | 2014-04-24 10:02:49 +0200 | [diff] [blame] | 2148 | struct vxlan_net *vn = net_generic(vxlan->net, vxlan_net_id); |
Stephen Hemminger | 1c51a91 | 2013-06-17 14:16:11 -0700 | [diff] [blame] | 2149 | struct vxlan_sock *vs = vxlan->vn_sock; |
stephen hemminger | d342894 | 2012-10-01 12:32:35 +0000 | [diff] [blame] | 2150 | |
Cong Wang | e4c7ed4 | 2013-08-31 13:44:33 +0800 | [diff] [blame] | 2151 | if (vs && vxlan_addr_multicast(&vxlan->default_dst.remote_ip) && |
Gao feng | 95ab099 | 2013-12-10 16:37:33 +0800 | [diff] [blame] | 2152 | !vxlan_group_used(vn, vxlan)) { |
Stephen Hemminger | 1c51a91 | 2013-06-17 14:16:11 -0700 | [diff] [blame] | 2153 | vxlan_sock_hold(vs); |
Stephen Hemminger | 7c47ced | 2013-06-17 14:16:10 -0700 | [diff] [blame] | 2154 | dev_hold(dev); |
stephen hemminger | 3fc2de2 | 2013-07-18 08:40:15 -0700 | [diff] [blame] | 2155 | queue_work(vxlan_wq, &vxlan->igmp_leave); |
Stephen Hemminger | 7c47ced | 2013-06-17 14:16:10 -0700 | [diff] [blame] | 2156 | } |
stephen hemminger | d342894 | 2012-10-01 12:32:35 +0000 | [diff] [blame] | 2157 | |
| 2158 | del_timer_sync(&vxlan->age_timer); |
| 2159 | |
| 2160 | vxlan_flush(vxlan); |
| 2161 | |
| 2162 | return 0; |
| 2163 | } |
| 2164 | |
stephen hemminger | d342894 | 2012-10-01 12:32:35 +0000 | [diff] [blame] | 2165 | /* Stub, nothing needs to be done. */ |
| 2166 | static void vxlan_set_multicast_list(struct net_device *dev) |
| 2167 | { |
| 2168 | } |
| 2169 | |
Daniel Borkmann | 345010b | 2013-12-18 00:21:08 +0100 | [diff] [blame] | 2170 | static int vxlan_change_mtu(struct net_device *dev, int new_mtu) |
| 2171 | { |
| 2172 | struct vxlan_dev *vxlan = netdev_priv(dev); |
| 2173 | struct vxlan_rdst *dst = &vxlan->default_dst; |
| 2174 | struct net_device *lowerdev; |
| 2175 | int max_mtu; |
| 2176 | |
Nicolas Dichtel | f01ec1c | 2014-04-24 10:02:49 +0200 | [diff] [blame] | 2177 | lowerdev = __dev_get_by_index(vxlan->net, dst->remote_ifindex); |
Daniel Borkmann | 345010b | 2013-12-18 00:21:08 +0100 | [diff] [blame] | 2178 | if (lowerdev == NULL) |
| 2179 | return eth_change_mtu(dev, new_mtu); |
| 2180 | |
| 2181 | if (dst->remote_ip.sa.sa_family == AF_INET6) |
| 2182 | max_mtu = lowerdev->mtu - VXLAN6_HEADROOM; |
| 2183 | else |
| 2184 | max_mtu = lowerdev->mtu - VXLAN_HEADROOM; |
| 2185 | |
| 2186 | if (new_mtu < 68 || new_mtu > max_mtu) |
| 2187 | return -EINVAL; |
| 2188 | |
| 2189 | dev->mtu = new_mtu; |
| 2190 | return 0; |
| 2191 | } |
| 2192 | |
stephen hemminger | d342894 | 2012-10-01 12:32:35 +0000 | [diff] [blame] | 2193 | static const struct net_device_ops vxlan_netdev_ops = { |
| 2194 | .ndo_init = vxlan_init, |
Stephen Hemminger | ebf4063 | 2013-06-17 14:16:11 -0700 | [diff] [blame] | 2195 | .ndo_uninit = vxlan_uninit, |
stephen hemminger | d342894 | 2012-10-01 12:32:35 +0000 | [diff] [blame] | 2196 | .ndo_open = vxlan_open, |
| 2197 | .ndo_stop = vxlan_stop, |
| 2198 | .ndo_start_xmit = vxlan_xmit, |
Pravin B Shelar | e817104 | 2013-03-25 14:49:46 +0000 | [diff] [blame] | 2199 | .ndo_get_stats64 = ip_tunnel_get_stats64, |
stephen hemminger | d342894 | 2012-10-01 12:32:35 +0000 | [diff] [blame] | 2200 | .ndo_set_rx_mode = vxlan_set_multicast_list, |
Daniel Borkmann | 345010b | 2013-12-18 00:21:08 +0100 | [diff] [blame] | 2201 | .ndo_change_mtu = vxlan_change_mtu, |
stephen hemminger | d342894 | 2012-10-01 12:32:35 +0000 | [diff] [blame] | 2202 | .ndo_validate_addr = eth_validate_addr, |
| 2203 | .ndo_set_mac_address = eth_mac_addr, |
| 2204 | .ndo_fdb_add = vxlan_fdb_add, |
| 2205 | .ndo_fdb_del = vxlan_fdb_delete, |
| 2206 | .ndo_fdb_dump = vxlan_fdb_dump, |
| 2207 | }; |
| 2208 | |
| 2209 | /* Info for udev, that this is a virtual tunnel endpoint */ |
| 2210 | static struct device_type vxlan_type = { |
| 2211 | .name = "vxlan", |
| 2212 | }; |
| 2213 | |
Joseph Gasparakis | 53cf5275 | 2013-09-04 02:13:38 -0700 | [diff] [blame] | 2214 | /* Calls the ndo_add_vxlan_port of the caller in order to |
Joseph Gasparakis | 35e4237 | 2013-09-13 07:34:13 -0700 | [diff] [blame] | 2215 | * supply the listening VXLAN udp ports. Callers are expected |
| 2216 | * to implement the ndo_add_vxlan_port. |
Joseph Gasparakis | 53cf5275 | 2013-09-04 02:13:38 -0700 | [diff] [blame] | 2217 | */ |
| 2218 | void vxlan_get_rx_port(struct net_device *dev) |
| 2219 | { |
| 2220 | struct vxlan_sock *vs; |
| 2221 | struct net *net = dev_net(dev); |
| 2222 | struct vxlan_net *vn = net_generic(net, vxlan_net_id); |
| 2223 | sa_family_t sa_family; |
Joseph Gasparakis | 35e4237 | 2013-09-13 07:34:13 -0700 | [diff] [blame] | 2224 | __be16 port; |
| 2225 | unsigned int i; |
Joseph Gasparakis | 53cf5275 | 2013-09-04 02:13:38 -0700 | [diff] [blame] | 2226 | |
| 2227 | spin_lock(&vn->sock_lock); |
| 2228 | for (i = 0; i < PORT_HASH_SIZE; ++i) { |
Joseph Gasparakis | 35e4237 | 2013-09-13 07:34:13 -0700 | [diff] [blame] | 2229 | hlist_for_each_entry_rcu(vs, &vn->sock_list[i], hlist) { |
| 2230 | port = inet_sk(vs->sock->sk)->inet_sport; |
Joseph Gasparakis | 53cf5275 | 2013-09-04 02:13:38 -0700 | [diff] [blame] | 2231 | sa_family = vs->sock->sk->sk_family; |
| 2232 | dev->netdev_ops->ndo_add_vxlan_port(dev, sa_family, |
| 2233 | port); |
| 2234 | } |
| 2235 | } |
| 2236 | spin_unlock(&vn->sock_lock); |
| 2237 | } |
| 2238 | EXPORT_SYMBOL_GPL(vxlan_get_rx_port); |
| 2239 | |
stephen hemminger | d342894 | 2012-10-01 12:32:35 +0000 | [diff] [blame] | 2240 | /* Initialize the device structure. */ |
| 2241 | static void vxlan_setup(struct net_device *dev) |
| 2242 | { |
| 2243 | struct vxlan_dev *vxlan = netdev_priv(dev); |
Cong Wang | 31fec5a | 2013-05-27 22:35:52 +0000 | [diff] [blame] | 2244 | unsigned int h; |
stephen hemminger | 05f47d6 | 2012-10-09 20:35:50 +0000 | [diff] [blame] | 2245 | int low, high; |
stephen hemminger | d342894 | 2012-10-01 12:32:35 +0000 | [diff] [blame] | 2246 | |
| 2247 | eth_hw_addr_random(dev); |
| 2248 | ether_setup(dev); |
Cong Wang | e4c7ed4 | 2013-08-31 13:44:33 +0800 | [diff] [blame] | 2249 | if (vxlan->default_dst.remote_ip.sa.sa_family == AF_INET6) |
Cong Wang | 2853af6 | 2014-06-12 11:53:10 -0700 | [diff] [blame] | 2250 | dev->needed_headroom = ETH_HLEN + VXLAN6_HEADROOM; |
Cong Wang | e4c7ed4 | 2013-08-31 13:44:33 +0800 | [diff] [blame] | 2251 | else |
Cong Wang | 2853af6 | 2014-06-12 11:53:10 -0700 | [diff] [blame] | 2252 | dev->needed_headroom = ETH_HLEN + VXLAN_HEADROOM; |
stephen hemminger | d342894 | 2012-10-01 12:32:35 +0000 | [diff] [blame] | 2253 | |
| 2254 | dev->netdev_ops = &vxlan_netdev_ops; |
Stephen Hemminger | ebf4063 | 2013-06-17 14:16:11 -0700 | [diff] [blame] | 2255 | dev->destructor = free_netdev; |
stephen hemminger | d342894 | 2012-10-01 12:32:35 +0000 | [diff] [blame] | 2256 | SET_NETDEV_DEVTYPE(dev, &vxlan_type); |
| 2257 | |
| 2258 | dev->tx_queue_len = 0; |
| 2259 | dev->features |= NETIF_F_LLTX; |
Joseph Gasparakis | d6727fe | 2012-12-07 14:14:16 +0000 | [diff] [blame] | 2260 | dev->features |= NETIF_F_SG | NETIF_F_HW_CSUM; |
Joseph Gasparakis | 0afb166 | 2012-12-07 14:14:18 +0000 | [diff] [blame] | 2261 | dev->features |= NETIF_F_RXCSUM; |
Pravin B Shelar | 05c0db0 | 2013-03-07 13:22:36 +0000 | [diff] [blame] | 2262 | dev->features |= NETIF_F_GSO_SOFTWARE; |
Joseph Gasparakis | 0afb166 | 2012-12-07 14:14:18 +0000 | [diff] [blame] | 2263 | |
Pravin B Shelar | 1eaa817 | 2013-08-19 11:23:29 -0700 | [diff] [blame] | 2264 | dev->vlan_features = dev->features; |
| 2265 | dev->features |= NETIF_F_HW_VLAN_CTAG_TX | NETIF_F_HW_VLAN_STAG_TX; |
Joseph Gasparakis | 0afb166 | 2012-12-07 14:14:18 +0000 | [diff] [blame] | 2266 | dev->hw_features |= NETIF_F_SG | NETIF_F_HW_CSUM | NETIF_F_RXCSUM; |
Pravin B Shelar | 05c0db0 | 2013-03-07 13:22:36 +0000 | [diff] [blame] | 2267 | dev->hw_features |= NETIF_F_GSO_SOFTWARE; |
Pravin B Shelar | 1eaa817 | 2013-08-19 11:23:29 -0700 | [diff] [blame] | 2268 | dev->hw_features |= NETIF_F_HW_VLAN_CTAG_TX | NETIF_F_HW_VLAN_STAG_TX; |
stephen hemminger | d342894 | 2012-10-01 12:32:35 +0000 | [diff] [blame] | 2269 | dev->priv_flags &= ~IFF_XMIT_DST_RELEASE; |
stephen hemminger | 6602d00 | 2012-12-31 12:00:21 +0000 | [diff] [blame] | 2270 | dev->priv_flags |= IFF_LIVE_ADDR_CHANGE; |
stephen hemminger | d342894 | 2012-10-01 12:32:35 +0000 | [diff] [blame] | 2271 | |
stephen hemminger | 553675f | 2013-05-16 11:35:20 +0000 | [diff] [blame] | 2272 | INIT_LIST_HEAD(&vxlan->next); |
stephen hemminger | d342894 | 2012-10-01 12:32:35 +0000 | [diff] [blame] | 2273 | spin_lock_init(&vxlan->hash_lock); |
stephen hemminger | 3fc2de2 | 2013-07-18 08:40:15 -0700 | [diff] [blame] | 2274 | INIT_WORK(&vxlan->igmp_join, vxlan_igmp_join); |
| 2275 | INIT_WORK(&vxlan->igmp_leave, vxlan_igmp_leave); |
Stephen Hemminger | 1c51a91 | 2013-06-17 14:16:11 -0700 | [diff] [blame] | 2276 | INIT_WORK(&vxlan->sock_work, vxlan_sock_work); |
stephen hemminger | d342894 | 2012-10-01 12:32:35 +0000 | [diff] [blame] | 2277 | |
| 2278 | init_timer_deferrable(&vxlan->age_timer); |
| 2279 | vxlan->age_timer.function = vxlan_cleanup; |
| 2280 | vxlan->age_timer.data = (unsigned long) vxlan; |
| 2281 | |
Eric W. Biederman | 0bbf87d | 2013-09-28 14:10:59 -0700 | [diff] [blame] | 2282 | inet_get_local_port_range(dev_net(dev), &low, &high); |
stephen hemminger | 05f47d6 | 2012-10-09 20:35:50 +0000 | [diff] [blame] | 2283 | vxlan->port_min = low; |
| 2284 | vxlan->port_max = high; |
stephen hemminger | 823aa87 | 2013-04-27 11:31:57 +0000 | [diff] [blame] | 2285 | vxlan->dst_port = htons(vxlan_port); |
stephen hemminger | 05f47d6 | 2012-10-09 20:35:50 +0000 | [diff] [blame] | 2286 | |
stephen hemminger | d342894 | 2012-10-01 12:32:35 +0000 | [diff] [blame] | 2287 | vxlan->dev = dev; |
| 2288 | |
| 2289 | for (h = 0; h < FDB_HASH_SIZE; ++h) |
| 2290 | INIT_HLIST_HEAD(&vxlan->fdb_head[h]); |
| 2291 | } |
| 2292 | |
| 2293 | static const struct nla_policy vxlan_policy[IFLA_VXLAN_MAX + 1] = { |
| 2294 | [IFLA_VXLAN_ID] = { .type = NLA_U32 }, |
stephen hemminger | 5d174dd | 2013-04-27 11:31:55 +0000 | [diff] [blame] | 2295 | [IFLA_VXLAN_GROUP] = { .len = FIELD_SIZEOF(struct iphdr, daddr) }, |
Cong Wang | e4c7ed4 | 2013-08-31 13:44:33 +0800 | [diff] [blame] | 2296 | [IFLA_VXLAN_GROUP6] = { .len = sizeof(struct in6_addr) }, |
stephen hemminger | d342894 | 2012-10-01 12:32:35 +0000 | [diff] [blame] | 2297 | [IFLA_VXLAN_LINK] = { .type = NLA_U32 }, |
| 2298 | [IFLA_VXLAN_LOCAL] = { .len = FIELD_SIZEOF(struct iphdr, saddr) }, |
Cong Wang | e4c7ed4 | 2013-08-31 13:44:33 +0800 | [diff] [blame] | 2299 | [IFLA_VXLAN_LOCAL6] = { .len = sizeof(struct in6_addr) }, |
stephen hemminger | d342894 | 2012-10-01 12:32:35 +0000 | [diff] [blame] | 2300 | [IFLA_VXLAN_TOS] = { .type = NLA_U8 }, |
| 2301 | [IFLA_VXLAN_TTL] = { .type = NLA_U8 }, |
| 2302 | [IFLA_VXLAN_LEARNING] = { .type = NLA_U8 }, |
| 2303 | [IFLA_VXLAN_AGEING] = { .type = NLA_U32 }, |
| 2304 | [IFLA_VXLAN_LIMIT] = { .type = NLA_U32 }, |
stephen hemminger | 05f47d6 | 2012-10-09 20:35:50 +0000 | [diff] [blame] | 2305 | [IFLA_VXLAN_PORT_RANGE] = { .len = sizeof(struct ifla_vxlan_port_range) }, |
David Stevens | e4f67ad | 2012-11-20 02:50:14 +0000 | [diff] [blame] | 2306 | [IFLA_VXLAN_PROXY] = { .type = NLA_U8 }, |
| 2307 | [IFLA_VXLAN_RSC] = { .type = NLA_U8 }, |
| 2308 | [IFLA_VXLAN_L2MISS] = { .type = NLA_U8 }, |
| 2309 | [IFLA_VXLAN_L3MISS] = { .type = NLA_U8 }, |
stephen hemminger | 823aa87 | 2013-04-27 11:31:57 +0000 | [diff] [blame] | 2310 | [IFLA_VXLAN_PORT] = { .type = NLA_U16 }, |
stephen hemminger | d342894 | 2012-10-01 12:32:35 +0000 | [diff] [blame] | 2311 | }; |
| 2312 | |
| 2313 | static int vxlan_validate(struct nlattr *tb[], struct nlattr *data[]) |
| 2314 | { |
| 2315 | if (tb[IFLA_ADDRESS]) { |
| 2316 | if (nla_len(tb[IFLA_ADDRESS]) != ETH_ALEN) { |
| 2317 | pr_debug("invalid link address (not ethernet)\n"); |
| 2318 | return -EINVAL; |
| 2319 | } |
| 2320 | |
| 2321 | if (!is_valid_ether_addr(nla_data(tb[IFLA_ADDRESS]))) { |
| 2322 | pr_debug("invalid all zero ethernet address\n"); |
| 2323 | return -EADDRNOTAVAIL; |
| 2324 | } |
| 2325 | } |
| 2326 | |
| 2327 | if (!data) |
| 2328 | return -EINVAL; |
| 2329 | |
| 2330 | if (data[IFLA_VXLAN_ID]) { |
| 2331 | __u32 id = nla_get_u32(data[IFLA_VXLAN_ID]); |
| 2332 | if (id >= VXLAN_VID_MASK) |
| 2333 | return -ERANGE; |
| 2334 | } |
| 2335 | |
stephen hemminger | 05f47d6 | 2012-10-09 20:35:50 +0000 | [diff] [blame] | 2336 | if (data[IFLA_VXLAN_PORT_RANGE]) { |
| 2337 | const struct ifla_vxlan_port_range *p |
| 2338 | = nla_data(data[IFLA_VXLAN_PORT_RANGE]); |
| 2339 | |
| 2340 | if (ntohs(p->high) < ntohs(p->low)) { |
| 2341 | pr_debug("port range %u .. %u not valid\n", |
| 2342 | ntohs(p->low), ntohs(p->high)); |
| 2343 | return -EINVAL; |
| 2344 | } |
| 2345 | } |
| 2346 | |
stephen hemminger | d342894 | 2012-10-01 12:32:35 +0000 | [diff] [blame] | 2347 | return 0; |
| 2348 | } |
| 2349 | |
Yan Burman | 1b13c97 | 2013-01-29 23:43:07 +0000 | [diff] [blame] | 2350 | static void vxlan_get_drvinfo(struct net_device *netdev, |
| 2351 | struct ethtool_drvinfo *drvinfo) |
| 2352 | { |
| 2353 | strlcpy(drvinfo->version, VXLAN_VERSION, sizeof(drvinfo->version)); |
| 2354 | strlcpy(drvinfo->driver, "vxlan", sizeof(drvinfo->driver)); |
| 2355 | } |
| 2356 | |
| 2357 | static const struct ethtool_ops vxlan_ethtool_ops = { |
| 2358 | .get_drvinfo = vxlan_get_drvinfo, |
| 2359 | .get_link = ethtool_op_get_link, |
| 2360 | }; |
| 2361 | |
stephen hemminger | 553675f | 2013-05-16 11:35:20 +0000 | [diff] [blame] | 2362 | static void vxlan_del_work(struct work_struct *work) |
| 2363 | { |
| 2364 | struct vxlan_sock *vs = container_of(work, struct vxlan_sock, del_work); |
| 2365 | |
| 2366 | sk_release_kernel(vs->sock->sk); |
| 2367 | kfree_rcu(vs, rcu); |
| 2368 | } |
| 2369 | |
Cong Wang | e4c7ed4 | 2013-08-31 13:44:33 +0800 | [diff] [blame] | 2370 | #if IS_ENABLED(CONFIG_IPV6) |
| 2371 | /* Create UDP socket for encapsulation receive. AF_INET6 socket |
| 2372 | * could be used for both IPv4 and IPv6 communications, but |
| 2373 | * users may set bindv6only=1. |
| 2374 | */ |
Tom Herbert | 359a0ea | 2014-06-04 17:20:29 -0700 | [diff] [blame] | 2375 | static struct socket *create_v6_sock(struct net *net, __be16 port, u32 flags) |
stephen hemminger | 553675f | 2013-05-16 11:35:20 +0000 | [diff] [blame] | 2376 | { |
stephen hemminger | 553675f | 2013-05-16 11:35:20 +0000 | [diff] [blame] | 2377 | struct sock *sk; |
Cong Wang | e4c7ed4 | 2013-08-31 13:44:33 +0800 | [diff] [blame] | 2378 | struct socket *sock; |
| 2379 | struct sockaddr_in6 vxlan_addr = { |
| 2380 | .sin6_family = AF_INET6, |
| 2381 | .sin6_port = port, |
| 2382 | }; |
| 2383 | int rc, val = 1; |
| 2384 | |
| 2385 | rc = sock_create_kern(AF_INET6, SOCK_DGRAM, IPPROTO_UDP, &sock); |
| 2386 | if (rc < 0) { |
| 2387 | pr_debug("UDPv6 socket create failed\n"); |
Zhi Yong Wu | 39deb2c | 2013-10-28 14:01:48 +0800 | [diff] [blame] | 2388 | return ERR_PTR(rc); |
Cong Wang | e4c7ed4 | 2013-08-31 13:44:33 +0800 | [diff] [blame] | 2389 | } |
| 2390 | |
| 2391 | /* Put in proper namespace */ |
| 2392 | sk = sock->sk; |
| 2393 | sk_change_net(sk, net); |
| 2394 | |
| 2395 | kernel_setsockopt(sock, SOL_IPV6, IPV6_V6ONLY, |
| 2396 | (char *)&val, sizeof(val)); |
| 2397 | rc = kernel_bind(sock, (struct sockaddr *)&vxlan_addr, |
| 2398 | sizeof(struct sockaddr_in6)); |
| 2399 | if (rc < 0) { |
| 2400 | pr_debug("bind for UDPv6 socket %pI6:%u (%d)\n", |
| 2401 | &vxlan_addr.sin6_addr, ntohs(vxlan_addr.sin6_port), rc); |
| 2402 | sk_release_kernel(sk); |
Zhi Yong Wu | 39deb2c | 2013-10-28 14:01:48 +0800 | [diff] [blame] | 2403 | return ERR_PTR(rc); |
Cong Wang | e4c7ed4 | 2013-08-31 13:44:33 +0800 | [diff] [blame] | 2404 | } |
| 2405 | /* At this point, IPv6 module should have been loaded in |
| 2406 | * sock_create_kern(). |
| 2407 | */ |
| 2408 | BUG_ON(!ipv6_stub); |
| 2409 | |
Cong Wang | e4c7ed4 | 2013-08-31 13:44:33 +0800 | [diff] [blame] | 2410 | /* Disable multicast loopback */ |
| 2411 | inet_sk(sk)->mc_loop = 0; |
Tom Herbert | 359a0ea | 2014-06-04 17:20:29 -0700 | [diff] [blame] | 2412 | |
| 2413 | if (flags & VXLAN_F_UDP_ZERO_CSUM6_TX) |
| 2414 | udp_set_no_check6_tx(sk, true); |
| 2415 | |
| 2416 | if (flags & VXLAN_F_UDP_ZERO_CSUM6_RX) |
| 2417 | udp_set_no_check6_rx(sk, true); |
| 2418 | |
Zhi Yong Wu | 39deb2c | 2013-10-28 14:01:48 +0800 | [diff] [blame] | 2419 | return sock; |
Cong Wang | e4c7ed4 | 2013-08-31 13:44:33 +0800 | [diff] [blame] | 2420 | } |
| 2421 | |
| 2422 | #else |
| 2423 | |
Tom Herbert | 359a0ea | 2014-06-04 17:20:29 -0700 | [diff] [blame] | 2424 | static struct socket *create_v6_sock(struct net *net, __be16 port, u32 flags) |
Cong Wang | e4c7ed4 | 2013-08-31 13:44:33 +0800 | [diff] [blame] | 2425 | { |
Zhi Yong Wu | 39deb2c | 2013-10-28 14:01:48 +0800 | [diff] [blame] | 2426 | return ERR_PTR(-EPFNOSUPPORT); |
Cong Wang | e4c7ed4 | 2013-08-31 13:44:33 +0800 | [diff] [blame] | 2427 | } |
| 2428 | #endif |
| 2429 | |
Tom Herbert | 359a0ea | 2014-06-04 17:20:29 -0700 | [diff] [blame] | 2430 | static struct socket *create_v4_sock(struct net *net, __be16 port, u32 flags) |
Cong Wang | e4c7ed4 | 2013-08-31 13:44:33 +0800 | [diff] [blame] | 2431 | { |
| 2432 | struct sock *sk; |
| 2433 | struct socket *sock; |
stephen hemminger | 553675f | 2013-05-16 11:35:20 +0000 | [diff] [blame] | 2434 | struct sockaddr_in vxlan_addr = { |
| 2435 | .sin_family = AF_INET, |
| 2436 | .sin_addr.s_addr = htonl(INADDR_ANY), |
Stephen Hemminger | bb3fd68 | 2013-06-17 14:16:40 -0700 | [diff] [blame] | 2437 | .sin_port = port, |
stephen hemminger | 553675f | 2013-05-16 11:35:20 +0000 | [diff] [blame] | 2438 | }; |
| 2439 | int rc; |
Cong Wang | e4c7ed4 | 2013-08-31 13:44:33 +0800 | [diff] [blame] | 2440 | |
| 2441 | /* Create UDP socket for encapsulation receive. */ |
| 2442 | rc = sock_create_kern(AF_INET, SOCK_DGRAM, IPPROTO_UDP, &sock); |
| 2443 | if (rc < 0) { |
| 2444 | pr_debug("UDP socket create failed\n"); |
Zhi Yong Wu | 39deb2c | 2013-10-28 14:01:48 +0800 | [diff] [blame] | 2445 | return ERR_PTR(rc); |
Cong Wang | e4c7ed4 | 2013-08-31 13:44:33 +0800 | [diff] [blame] | 2446 | } |
| 2447 | |
| 2448 | /* Put in proper namespace */ |
| 2449 | sk = sock->sk; |
| 2450 | sk_change_net(sk, net); |
| 2451 | |
| 2452 | rc = kernel_bind(sock, (struct sockaddr *) &vxlan_addr, |
| 2453 | sizeof(vxlan_addr)); |
| 2454 | if (rc < 0) { |
| 2455 | pr_debug("bind for UDP socket %pI4:%u (%d)\n", |
| 2456 | &vxlan_addr.sin_addr, ntohs(vxlan_addr.sin_port), rc); |
| 2457 | sk_release_kernel(sk); |
Zhi Yong Wu | 39deb2c | 2013-10-28 14:01:48 +0800 | [diff] [blame] | 2458 | return ERR_PTR(rc); |
Cong Wang | e4c7ed4 | 2013-08-31 13:44:33 +0800 | [diff] [blame] | 2459 | } |
| 2460 | |
Cong Wang | e4c7ed4 | 2013-08-31 13:44:33 +0800 | [diff] [blame] | 2461 | /* Disable multicast loopback */ |
| 2462 | inet_sk(sk)->mc_loop = 0; |
Tom Herbert | 359a0ea | 2014-06-04 17:20:29 -0700 | [diff] [blame] | 2463 | |
| 2464 | if (!(flags & VXLAN_F_UDP_CSUM)) |
| 2465 | sock->sk->sk_no_check_tx = 1; |
| 2466 | |
Zhi Yong Wu | 39deb2c | 2013-10-28 14:01:48 +0800 | [diff] [blame] | 2467 | return sock; |
Cong Wang | e4c7ed4 | 2013-08-31 13:44:33 +0800 | [diff] [blame] | 2468 | } |
| 2469 | |
| 2470 | /* Create new listen socket if needed */ |
| 2471 | static struct vxlan_sock *vxlan_socket_create(struct net *net, __be16 port, |
Tom Herbert | 359a0ea | 2014-06-04 17:20:29 -0700 | [diff] [blame] | 2472 | vxlan_rcv_t *rcv, void *data, |
| 2473 | u32 flags) |
Cong Wang | e4c7ed4 | 2013-08-31 13:44:33 +0800 | [diff] [blame] | 2474 | { |
| 2475 | struct vxlan_net *vn = net_generic(net, vxlan_net_id); |
| 2476 | struct vxlan_sock *vs; |
| 2477 | struct socket *sock; |
| 2478 | struct sock *sk; |
Cong Wang | 31fec5a | 2013-05-27 22:35:52 +0000 | [diff] [blame] | 2479 | unsigned int h; |
Tom Herbert | 359a0ea | 2014-06-04 17:20:29 -0700 | [diff] [blame] | 2480 | bool ipv6 = !!(flags & VXLAN_F_IPV6); |
stephen hemminger | 553675f | 2013-05-16 11:35:20 +0000 | [diff] [blame] | 2481 | |
Or Gerlitz | dc01e7d | 2014-01-20 13:59:21 +0200 | [diff] [blame] | 2482 | vs = kzalloc(sizeof(*vs), GFP_KERNEL); |
Cong Wang | e4c7ed4 | 2013-08-31 13:44:33 +0800 | [diff] [blame] | 2483 | if (!vs) |
stephen hemminger | 553675f | 2013-05-16 11:35:20 +0000 | [diff] [blame] | 2484 | return ERR_PTR(-ENOMEM); |
| 2485 | |
| 2486 | for (h = 0; h < VNI_HASH_SIZE; ++h) |
| 2487 | INIT_HLIST_HEAD(&vs->vni_list[h]); |
| 2488 | |
| 2489 | INIT_WORK(&vs->del_work, vxlan_del_work); |
| 2490 | |
Cong Wang | e4c7ed4 | 2013-08-31 13:44:33 +0800 | [diff] [blame] | 2491 | if (ipv6) |
Tom Herbert | 359a0ea | 2014-06-04 17:20:29 -0700 | [diff] [blame] | 2492 | sock = create_v6_sock(net, port, flags); |
Cong Wang | e4c7ed4 | 2013-08-31 13:44:33 +0800 | [diff] [blame] | 2493 | else |
Tom Herbert | 359a0ea | 2014-06-04 17:20:29 -0700 | [diff] [blame] | 2494 | sock = create_v4_sock(net, port, flags); |
Zhi Yong Wu | 39deb2c | 2013-10-28 14:01:48 +0800 | [diff] [blame] | 2495 | if (IS_ERR(sock)) { |
stephen hemminger | 553675f | 2013-05-16 11:35:20 +0000 | [diff] [blame] | 2496 | kfree(vs); |
Duan Jiong | e50fddc | 2013-11-01 13:09:43 +0800 | [diff] [blame] | 2497 | return ERR_CAST(sock); |
stephen hemminger | 553675f | 2013-05-16 11:35:20 +0000 | [diff] [blame] | 2498 | } |
| 2499 | |
Cong Wang | e4c7ed4 | 2013-08-31 13:44:33 +0800 | [diff] [blame] | 2500 | vs->sock = sock; |
| 2501 | sk = sock->sk; |
Pravin B Shelar | 9c2e24e | 2013-08-19 11:22:48 -0700 | [diff] [blame] | 2502 | atomic_set(&vs->refcnt, 1); |
Pravin B Shelar | 5cfccc5 | 2013-08-19 11:23:02 -0700 | [diff] [blame] | 2503 | vs->rcv = rcv; |
Pravin B Shelar | 012a572 | 2013-08-19 11:23:07 -0700 | [diff] [blame] | 2504 | vs->data = data; |
Pravin B Shelar | 559835ea | 2013-09-24 10:25:40 -0700 | [diff] [blame] | 2505 | rcu_assign_sk_user_data(vs->sock->sk, vs); |
stephen hemminger | 553675f | 2013-05-16 11:35:20 +0000 | [diff] [blame] | 2506 | |
Or Gerlitz | dc01e7d | 2014-01-20 13:59:21 +0200 | [diff] [blame] | 2507 | /* Initialize the vxlan udp offloads structure */ |
| 2508 | vs->udp_offloads.port = port; |
| 2509 | vs->udp_offloads.callbacks.gro_receive = vxlan_gro_receive; |
| 2510 | vs->udp_offloads.callbacks.gro_complete = vxlan_gro_complete; |
| 2511 | |
Pravin B Shelar | 9c2e24e | 2013-08-19 11:22:48 -0700 | [diff] [blame] | 2512 | spin_lock(&vn->sock_lock); |
| 2513 | hlist_add_head_rcu(&vs->hlist, vs_head(net, port)); |
Or Gerlitz | dc01e7d | 2014-01-20 13:59:21 +0200 | [diff] [blame] | 2514 | vxlan_notify_add_rx_port(vs); |
Pravin B Shelar | 9c2e24e | 2013-08-19 11:22:48 -0700 | [diff] [blame] | 2515 | spin_unlock(&vn->sock_lock); |
stephen hemminger | 553675f | 2013-05-16 11:35:20 +0000 | [diff] [blame] | 2516 | |
| 2517 | /* Mark socket as an encapsulation socket. */ |
| 2518 | udp_sk(sk)->encap_type = 1; |
| 2519 | udp_sk(sk)->encap_rcv = vxlan_udp_encap_recv; |
Cong Wang | e4c7ed4 | 2013-08-31 13:44:33 +0800 | [diff] [blame] | 2520 | #if IS_ENABLED(CONFIG_IPV6) |
| 2521 | if (ipv6) |
| 2522 | ipv6_stub->udpv6_encap_enable(); |
| 2523 | else |
| 2524 | #endif |
| 2525 | udp_encap_enable(); |
| 2526 | |
Pravin B Shelar | 9c2e24e | 2013-08-19 11:22:48 -0700 | [diff] [blame] | 2527 | return vs; |
| 2528 | } |
stephen hemminger | 553675f | 2013-05-16 11:35:20 +0000 | [diff] [blame] | 2529 | |
Pravin B Shelar | 012a572 | 2013-08-19 11:23:07 -0700 | [diff] [blame] | 2530 | struct vxlan_sock *vxlan_sock_add(struct net *net, __be16 port, |
| 2531 | vxlan_rcv_t *rcv, void *data, |
Tom Herbert | 359a0ea | 2014-06-04 17:20:29 -0700 | [diff] [blame] | 2532 | bool no_share, u32 flags) |
Pravin B Shelar | 9c2e24e | 2013-08-19 11:22:48 -0700 | [diff] [blame] | 2533 | { |
| 2534 | struct vxlan_net *vn = net_generic(net, vxlan_net_id); |
| 2535 | struct vxlan_sock *vs; |
| 2536 | |
Tom Herbert | 359a0ea | 2014-06-04 17:20:29 -0700 | [diff] [blame] | 2537 | vs = vxlan_socket_create(net, port, rcv, data, flags); |
Pravin B Shelar | 9c2e24e | 2013-08-19 11:22:48 -0700 | [diff] [blame] | 2538 | if (!IS_ERR(vs)) |
| 2539 | return vs; |
| 2540 | |
Pravin B Shelar | 012a572 | 2013-08-19 11:23:07 -0700 | [diff] [blame] | 2541 | if (no_share) /* Return error if sharing is not allowed. */ |
| 2542 | return vs; |
| 2543 | |
Pravin B Shelar | 9c2e24e | 2013-08-19 11:22:48 -0700 | [diff] [blame] | 2544 | spin_lock(&vn->sock_lock); |
| 2545 | vs = vxlan_find_sock(net, port); |
Pravin B Shelar | 5cfccc5 | 2013-08-19 11:23:02 -0700 | [diff] [blame] | 2546 | if (vs) { |
| 2547 | if (vs->rcv == rcv) |
| 2548 | atomic_inc(&vs->refcnt); |
| 2549 | else |
| 2550 | vs = ERR_PTR(-EBUSY); |
| 2551 | } |
| 2552 | spin_unlock(&vn->sock_lock); |
| 2553 | |
| 2554 | if (!vs) |
Pravin B Shelar | 9c2e24e | 2013-08-19 11:22:48 -0700 | [diff] [blame] | 2555 | vs = ERR_PTR(-EINVAL); |
| 2556 | |
stephen hemminger | 553675f | 2013-05-16 11:35:20 +0000 | [diff] [blame] | 2557 | return vs; |
| 2558 | } |
Pravin B Shelar | 012a572 | 2013-08-19 11:23:07 -0700 | [diff] [blame] | 2559 | EXPORT_SYMBOL_GPL(vxlan_sock_add); |
stephen hemminger | 553675f | 2013-05-16 11:35:20 +0000 | [diff] [blame] | 2560 | |
Stephen Hemminger | 1c51a91 | 2013-06-17 14:16:11 -0700 | [diff] [blame] | 2561 | /* Scheduled at device creation to bind to a socket */ |
| 2562 | static void vxlan_sock_work(struct work_struct *work) |
| 2563 | { |
Pravin B Shelar | 9c2e24e | 2013-08-19 11:22:48 -0700 | [diff] [blame] | 2564 | struct vxlan_dev *vxlan = container_of(work, struct vxlan_dev, sock_work); |
Nicolas Dichtel | f01ec1c | 2014-04-24 10:02:49 +0200 | [diff] [blame] | 2565 | struct net *net = vxlan->net; |
Stephen Hemminger | 1c51a91 | 2013-06-17 14:16:11 -0700 | [diff] [blame] | 2566 | struct vxlan_net *vn = net_generic(net, vxlan_net_id); |
Pravin B Shelar | 9c2e24e | 2013-08-19 11:22:48 -0700 | [diff] [blame] | 2567 | __be16 port = vxlan->dst_port; |
| 2568 | struct vxlan_sock *nvs; |
Stephen Hemminger | 1c51a91 | 2013-06-17 14:16:11 -0700 | [diff] [blame] | 2569 | |
Tom Herbert | 359a0ea | 2014-06-04 17:20:29 -0700 | [diff] [blame] | 2570 | nvs = vxlan_sock_add(net, port, vxlan_rcv, NULL, false, vxlan->flags); |
Stephen Hemminger | 1c51a91 | 2013-06-17 14:16:11 -0700 | [diff] [blame] | 2571 | spin_lock(&vn->sock_lock); |
Pravin B Shelar | 9c2e24e | 2013-08-19 11:22:48 -0700 | [diff] [blame] | 2572 | if (!IS_ERR(nvs)) |
| 2573 | vxlan_vs_add_dev(nvs, vxlan); |
| 2574 | spin_unlock(&vn->sock_lock); |
Stephen Hemminger | 1c51a91 | 2013-06-17 14:16:11 -0700 | [diff] [blame] | 2575 | |
Pravin B Shelar | 9c2e24e | 2013-08-19 11:22:48 -0700 | [diff] [blame] | 2576 | dev_put(vxlan->dev); |
Stephen Hemminger | 1c51a91 | 2013-06-17 14:16:11 -0700 | [diff] [blame] | 2577 | } |
| 2578 | |
stephen hemminger | d342894 | 2012-10-01 12:32:35 +0000 | [diff] [blame] | 2579 | static int vxlan_newlink(struct net *net, struct net_device *dev, |
| 2580 | struct nlattr *tb[], struct nlattr *data[]) |
| 2581 | { |
stephen hemminger | 553675f | 2013-05-16 11:35:20 +0000 | [diff] [blame] | 2582 | struct vxlan_net *vn = net_generic(net, vxlan_net_id); |
stephen hemminger | d342894 | 2012-10-01 12:32:35 +0000 | [diff] [blame] | 2583 | struct vxlan_dev *vxlan = netdev_priv(dev); |
Atzm Watanabe | c7995c4 | 2013-04-16 02:50:52 +0000 | [diff] [blame] | 2584 | struct vxlan_rdst *dst = &vxlan->default_dst; |
stephen hemminger | d342894 | 2012-10-01 12:32:35 +0000 | [diff] [blame] | 2585 | __u32 vni; |
| 2586 | int err; |
Cong Wang | e4c7ed4 | 2013-08-31 13:44:33 +0800 | [diff] [blame] | 2587 | bool use_ipv6 = false; |
stephen hemminger | d342894 | 2012-10-01 12:32:35 +0000 | [diff] [blame] | 2588 | |
| 2589 | if (!data[IFLA_VXLAN_ID]) |
| 2590 | return -EINVAL; |
| 2591 | |
Nicolas Dichtel | f01ec1c | 2014-04-24 10:02:49 +0200 | [diff] [blame] | 2592 | vxlan->net = dev_net(dev); |
| 2593 | |
stephen hemminger | d342894 | 2012-10-01 12:32:35 +0000 | [diff] [blame] | 2594 | vni = nla_get_u32(data[IFLA_VXLAN_ID]); |
Atzm Watanabe | c7995c4 | 2013-04-16 02:50:52 +0000 | [diff] [blame] | 2595 | dst->remote_vni = vni; |
stephen hemminger | d342894 | 2012-10-01 12:32:35 +0000 | [diff] [blame] | 2596 | |
Mike Rapoport | 5933a7b | 2014-04-01 09:23:01 +0300 | [diff] [blame] | 2597 | /* Unless IPv6 is explicitly requested, assume IPv4 */ |
| 2598 | dst->remote_ip.sa.sa_family = AF_INET; |
Cong Wang | e4c7ed4 | 2013-08-31 13:44:33 +0800 | [diff] [blame] | 2599 | if (data[IFLA_VXLAN_GROUP]) { |
| 2600 | dst->remote_ip.sin.sin_addr.s_addr = nla_get_be32(data[IFLA_VXLAN_GROUP]); |
Cong Wang | e4c7ed4 | 2013-08-31 13:44:33 +0800 | [diff] [blame] | 2601 | } else if (data[IFLA_VXLAN_GROUP6]) { |
| 2602 | if (!IS_ENABLED(CONFIG_IPV6)) |
| 2603 | return -EPFNOSUPPORT; |
stephen hemminger | d342894 | 2012-10-01 12:32:35 +0000 | [diff] [blame] | 2604 | |
Cong Wang | e4c7ed4 | 2013-08-31 13:44:33 +0800 | [diff] [blame] | 2605 | nla_memcpy(&dst->remote_ip.sin6.sin6_addr, data[IFLA_VXLAN_GROUP6], |
| 2606 | sizeof(struct in6_addr)); |
| 2607 | dst->remote_ip.sa.sa_family = AF_INET6; |
| 2608 | use_ipv6 = true; |
| 2609 | } |
| 2610 | |
| 2611 | if (data[IFLA_VXLAN_LOCAL]) { |
| 2612 | vxlan->saddr.sin.sin_addr.s_addr = nla_get_be32(data[IFLA_VXLAN_LOCAL]); |
| 2613 | vxlan->saddr.sa.sa_family = AF_INET; |
| 2614 | } else if (data[IFLA_VXLAN_LOCAL6]) { |
| 2615 | if (!IS_ENABLED(CONFIG_IPV6)) |
| 2616 | return -EPFNOSUPPORT; |
| 2617 | |
| 2618 | /* TODO: respect scope id */ |
| 2619 | nla_memcpy(&vxlan->saddr.sin6.sin6_addr, data[IFLA_VXLAN_LOCAL6], |
| 2620 | sizeof(struct in6_addr)); |
| 2621 | vxlan->saddr.sa.sa_family = AF_INET6; |
| 2622 | use_ipv6 = true; |
| 2623 | } |
stephen hemminger | d342894 | 2012-10-01 12:32:35 +0000 | [diff] [blame] | 2624 | |
stephen hemminger | 34e02aa | 2012-10-09 20:35:53 +0000 | [diff] [blame] | 2625 | if (data[IFLA_VXLAN_LINK] && |
Atzm Watanabe | c7995c4 | 2013-04-16 02:50:52 +0000 | [diff] [blame] | 2626 | (dst->remote_ifindex = nla_get_u32(data[IFLA_VXLAN_LINK]))) { |
stephen hemminger | 34e02aa | 2012-10-09 20:35:53 +0000 | [diff] [blame] | 2627 | struct net_device *lowerdev |
Atzm Watanabe | c7995c4 | 2013-04-16 02:50:52 +0000 | [diff] [blame] | 2628 | = __dev_get_by_index(net, dst->remote_ifindex); |
stephen hemminger | d342894 | 2012-10-01 12:32:35 +0000 | [diff] [blame] | 2629 | |
stephen hemminger | 34e02aa | 2012-10-09 20:35:53 +0000 | [diff] [blame] | 2630 | if (!lowerdev) { |
Atzm Watanabe | c7995c4 | 2013-04-16 02:50:52 +0000 | [diff] [blame] | 2631 | pr_info("ifindex %d does not exist\n", dst->remote_ifindex); |
stephen hemminger | 34e02aa | 2012-10-09 20:35:53 +0000 | [diff] [blame] | 2632 | return -ENODEV; |
stephen hemminger | d342894 | 2012-10-01 12:32:35 +0000 | [diff] [blame] | 2633 | } |
stephen hemminger | 34e02aa | 2012-10-09 20:35:53 +0000 | [diff] [blame] | 2634 | |
Cong Wang | e4c7ed4 | 2013-08-31 13:44:33 +0800 | [diff] [blame] | 2635 | #if IS_ENABLED(CONFIG_IPV6) |
| 2636 | if (use_ipv6) { |
| 2637 | struct inet6_dev *idev = __in6_dev_get(lowerdev); |
| 2638 | if (idev && idev->cnf.disable_ipv6) { |
| 2639 | pr_info("IPv6 is disabled via sysctl\n"); |
| 2640 | return -EPERM; |
| 2641 | } |
| 2642 | vxlan->flags |= VXLAN_F_IPV6; |
| 2643 | } |
| 2644 | #endif |
| 2645 | |
stephen hemminger | 34e02aa | 2012-10-09 20:35:53 +0000 | [diff] [blame] | 2646 | if (!tb[IFLA_MTU]) |
Cong Wang | e4c7ed4 | 2013-08-31 13:44:33 +0800 | [diff] [blame] | 2647 | dev->mtu = lowerdev->mtu - (use_ipv6 ? VXLAN6_HEADROOM : VXLAN_HEADROOM); |
Alexander Duyck | 1ba56fb | 2012-11-13 13:10:59 +0000 | [diff] [blame] | 2648 | |
Cong Wang | 2853af6 | 2014-06-12 11:53:10 -0700 | [diff] [blame] | 2649 | dev->needed_headroom = lowerdev->hard_header_len + |
Cong Wang | e4c7ed4 | 2013-08-31 13:44:33 +0800 | [diff] [blame] | 2650 | (use_ipv6 ? VXLAN6_HEADROOM : VXLAN_HEADROOM); |
fan.du | 7bda701 | 2014-01-03 10:18:58 +0800 | [diff] [blame] | 2651 | } else if (use_ipv6) |
| 2652 | vxlan->flags |= VXLAN_F_IPV6; |
stephen hemminger | d342894 | 2012-10-01 12:32:35 +0000 | [diff] [blame] | 2653 | |
| 2654 | if (data[IFLA_VXLAN_TOS]) |
| 2655 | vxlan->tos = nla_get_u8(data[IFLA_VXLAN_TOS]); |
| 2656 | |
Vincent Bernat | afb9718 | 2012-10-30 10:27:16 +0000 | [diff] [blame] | 2657 | if (data[IFLA_VXLAN_TTL]) |
| 2658 | vxlan->ttl = nla_get_u8(data[IFLA_VXLAN_TTL]); |
| 2659 | |
stephen hemminger | d342894 | 2012-10-01 12:32:35 +0000 | [diff] [blame] | 2660 | if (!data[IFLA_VXLAN_LEARNING] || nla_get_u8(data[IFLA_VXLAN_LEARNING])) |
David Stevens | e4f67ad | 2012-11-20 02:50:14 +0000 | [diff] [blame] | 2661 | vxlan->flags |= VXLAN_F_LEARN; |
stephen hemminger | d342894 | 2012-10-01 12:32:35 +0000 | [diff] [blame] | 2662 | |
| 2663 | if (data[IFLA_VXLAN_AGEING]) |
| 2664 | vxlan->age_interval = nla_get_u32(data[IFLA_VXLAN_AGEING]); |
| 2665 | else |
| 2666 | vxlan->age_interval = FDB_AGE_DEFAULT; |
| 2667 | |
David Stevens | e4f67ad | 2012-11-20 02:50:14 +0000 | [diff] [blame] | 2668 | if (data[IFLA_VXLAN_PROXY] && nla_get_u8(data[IFLA_VXLAN_PROXY])) |
| 2669 | vxlan->flags |= VXLAN_F_PROXY; |
| 2670 | |
| 2671 | if (data[IFLA_VXLAN_RSC] && nla_get_u8(data[IFLA_VXLAN_RSC])) |
| 2672 | vxlan->flags |= VXLAN_F_RSC; |
| 2673 | |
| 2674 | if (data[IFLA_VXLAN_L2MISS] && nla_get_u8(data[IFLA_VXLAN_L2MISS])) |
| 2675 | vxlan->flags |= VXLAN_F_L2MISS; |
| 2676 | |
| 2677 | if (data[IFLA_VXLAN_L3MISS] && nla_get_u8(data[IFLA_VXLAN_L3MISS])) |
| 2678 | vxlan->flags |= VXLAN_F_L3MISS; |
| 2679 | |
stephen hemminger | d342894 | 2012-10-01 12:32:35 +0000 | [diff] [blame] | 2680 | if (data[IFLA_VXLAN_LIMIT]) |
| 2681 | vxlan->addrmax = nla_get_u32(data[IFLA_VXLAN_LIMIT]); |
| 2682 | |
stephen hemminger | 05f47d6 | 2012-10-09 20:35:50 +0000 | [diff] [blame] | 2683 | if (data[IFLA_VXLAN_PORT_RANGE]) { |
| 2684 | const struct ifla_vxlan_port_range *p |
| 2685 | = nla_data(data[IFLA_VXLAN_PORT_RANGE]); |
| 2686 | vxlan->port_min = ntohs(p->low); |
| 2687 | vxlan->port_max = ntohs(p->high); |
| 2688 | } |
| 2689 | |
stephen hemminger | 823aa87 | 2013-04-27 11:31:57 +0000 | [diff] [blame] | 2690 | if (data[IFLA_VXLAN_PORT]) |
| 2691 | vxlan->dst_port = nla_get_be16(data[IFLA_VXLAN_PORT]); |
| 2692 | |
Tom Herbert | 359a0ea | 2014-06-04 17:20:29 -0700 | [diff] [blame] | 2693 | if (data[IFLA_VXLAN_UDP_CSUM] && nla_get_u8(data[IFLA_VXLAN_UDP_CSUM])) |
| 2694 | vxlan->flags |= VXLAN_F_UDP_CSUM; |
| 2695 | |
| 2696 | if (data[IFLA_VXLAN_UDP_ZERO_CSUM6_TX] && |
| 2697 | nla_get_u8(data[IFLA_VXLAN_UDP_ZERO_CSUM6_TX])) |
| 2698 | vxlan->flags |= VXLAN_F_UDP_ZERO_CSUM6_TX; |
| 2699 | |
| 2700 | if (data[IFLA_VXLAN_UDP_ZERO_CSUM6_RX] && |
| 2701 | nla_get_u8(data[IFLA_VXLAN_UDP_ZERO_CSUM6_RX])) |
| 2702 | vxlan->flags |= VXLAN_F_UDP_ZERO_CSUM6_RX; |
| 2703 | |
stephen hemminger | 553675f | 2013-05-16 11:35:20 +0000 | [diff] [blame] | 2704 | if (vxlan_find_vni(net, vni, vxlan->dst_port)) { |
| 2705 | pr_info("duplicate VNI %u\n", vni); |
| 2706 | return -EEXIST; |
| 2707 | } |
| 2708 | |
Wilfried Klaebe | 7ad24ea | 2014-05-11 00:12:32 +0000 | [diff] [blame] | 2709 | dev->ethtool_ops = &vxlan_ethtool_ops; |
Yan Burman | 1b13c97 | 2013-01-29 23:43:07 +0000 | [diff] [blame] | 2710 | |
Sridhar Samudrala | 2936b6a | 2013-09-17 12:12:40 -0700 | [diff] [blame] | 2711 | /* create an fdb entry for a valid default destination */ |
| 2712 | if (!vxlan_addr_any(&vxlan->default_dst.remote_ip)) { |
| 2713 | err = vxlan_fdb_create(vxlan, all_zeros_mac, |
| 2714 | &vxlan->default_dst.remote_ip, |
| 2715 | NUD_REACHABLE|NUD_PERMANENT, |
| 2716 | NLM_F_EXCL|NLM_F_CREATE, |
| 2717 | vxlan->dst_port, |
| 2718 | vxlan->default_dst.remote_vni, |
| 2719 | vxlan->default_dst.remote_ifindex, |
| 2720 | NTF_SELF); |
| 2721 | if (err) |
| 2722 | return err; |
| 2723 | } |
stephen hemminger | d342894 | 2012-10-01 12:32:35 +0000 | [diff] [blame] | 2724 | |
Mike Rapoport | afbd8ba | 2013-06-25 16:01:51 +0300 | [diff] [blame] | 2725 | err = register_netdevice(dev); |
| 2726 | if (err) { |
Stephen Hemminger | ba609e9 | 2013-06-25 17:06:01 -0700 | [diff] [blame] | 2727 | vxlan_fdb_delete_default(vxlan); |
Mike Rapoport | afbd8ba | 2013-06-25 16:01:51 +0300 | [diff] [blame] | 2728 | return err; |
| 2729 | } |
| 2730 | |
stephen hemminger | 553675f | 2013-05-16 11:35:20 +0000 | [diff] [blame] | 2731 | list_add(&vxlan->next, &vn->vxlan_list); |
stephen hemminger | 553675f | 2013-05-16 11:35:20 +0000 | [diff] [blame] | 2732 | |
| 2733 | return 0; |
stephen hemminger | d342894 | 2012-10-01 12:32:35 +0000 | [diff] [blame] | 2734 | } |
| 2735 | |
| 2736 | static void vxlan_dellink(struct net_device *dev, struct list_head *head) |
| 2737 | { |
| 2738 | struct vxlan_dev *vxlan = netdev_priv(dev); |
Nicolas Dichtel | f01ec1c | 2014-04-24 10:02:49 +0200 | [diff] [blame] | 2739 | struct vxlan_net *vn = net_generic(vxlan->net, vxlan_net_id); |
stephen hemminger | d342894 | 2012-10-01 12:32:35 +0000 | [diff] [blame] | 2740 | |
stephen hemminger | fe5c356 | 2013-07-13 10:18:18 -0700 | [diff] [blame] | 2741 | spin_lock(&vn->sock_lock); |
Pravin B Shelar | 9c2e24e | 2013-08-19 11:22:48 -0700 | [diff] [blame] | 2742 | if (!hlist_unhashed(&vxlan->hlist)) |
| 2743 | hlist_del_rcu(&vxlan->hlist); |
stephen hemminger | fe5c356 | 2013-07-13 10:18:18 -0700 | [diff] [blame] | 2744 | spin_unlock(&vn->sock_lock); |
| 2745 | |
stephen hemminger | 553675f | 2013-05-16 11:35:20 +0000 | [diff] [blame] | 2746 | list_del(&vxlan->next); |
stephen hemminger | d342894 | 2012-10-01 12:32:35 +0000 | [diff] [blame] | 2747 | unregister_netdevice_queue(dev, head); |
| 2748 | } |
| 2749 | |
| 2750 | static size_t vxlan_get_size(const struct net_device *dev) |
| 2751 | { |
| 2752 | |
| 2753 | return nla_total_size(sizeof(__u32)) + /* IFLA_VXLAN_ID */ |
Cong Wang | e4c7ed4 | 2013-08-31 13:44:33 +0800 | [diff] [blame] | 2754 | nla_total_size(sizeof(struct in6_addr)) + /* IFLA_VXLAN_GROUP{6} */ |
stephen hemminger | d342894 | 2012-10-01 12:32:35 +0000 | [diff] [blame] | 2755 | nla_total_size(sizeof(__u32)) + /* IFLA_VXLAN_LINK */ |
Cong Wang | e4c7ed4 | 2013-08-31 13:44:33 +0800 | [diff] [blame] | 2756 | nla_total_size(sizeof(struct in6_addr)) + /* IFLA_VXLAN_LOCAL{6} */ |
stephen hemminger | d342894 | 2012-10-01 12:32:35 +0000 | [diff] [blame] | 2757 | nla_total_size(sizeof(__u8)) + /* IFLA_VXLAN_TTL */ |
| 2758 | nla_total_size(sizeof(__u8)) + /* IFLA_VXLAN_TOS */ |
| 2759 | nla_total_size(sizeof(__u8)) + /* IFLA_VXLAN_LEARNING */ |
David Stevens | e4f67ad | 2012-11-20 02:50:14 +0000 | [diff] [blame] | 2760 | nla_total_size(sizeof(__u8)) + /* IFLA_VXLAN_PROXY */ |
| 2761 | nla_total_size(sizeof(__u8)) + /* IFLA_VXLAN_RSC */ |
| 2762 | nla_total_size(sizeof(__u8)) + /* IFLA_VXLAN_L2MISS */ |
| 2763 | nla_total_size(sizeof(__u8)) + /* IFLA_VXLAN_L3MISS */ |
stephen hemminger | d342894 | 2012-10-01 12:32:35 +0000 | [diff] [blame] | 2764 | nla_total_size(sizeof(__u32)) + /* IFLA_VXLAN_AGEING */ |
| 2765 | nla_total_size(sizeof(__u32)) + /* IFLA_VXLAN_LIMIT */ |
stephen hemminger | 05f47d6 | 2012-10-09 20:35:50 +0000 | [diff] [blame] | 2766 | nla_total_size(sizeof(struct ifla_vxlan_port_range)) + |
Tom Herbert | 359a0ea | 2014-06-04 17:20:29 -0700 | [diff] [blame] | 2767 | nla_total_size(sizeof(__be16)) + /* IFLA_VXLAN_PORT */ |
| 2768 | nla_total_size(sizeof(__u8)) + /* IFLA_VXLAN_UDP_CSUM */ |
| 2769 | nla_total_size(sizeof(__u8)) + /* IFLA_VXLAN_UDP_ZERO_CSUM6_TX */ |
| 2770 | nla_total_size(sizeof(__u8)) + /* IFLA_VXLAN_UDP_ZERO_CSUM6_RX */ |
stephen hemminger | d342894 | 2012-10-01 12:32:35 +0000 | [diff] [blame] | 2771 | 0; |
| 2772 | } |
| 2773 | |
| 2774 | static int vxlan_fill_info(struct sk_buff *skb, const struct net_device *dev) |
| 2775 | { |
| 2776 | const struct vxlan_dev *vxlan = netdev_priv(dev); |
Atzm Watanabe | c7995c4 | 2013-04-16 02:50:52 +0000 | [diff] [blame] | 2777 | const struct vxlan_rdst *dst = &vxlan->default_dst; |
stephen hemminger | 05f47d6 | 2012-10-09 20:35:50 +0000 | [diff] [blame] | 2778 | struct ifla_vxlan_port_range ports = { |
| 2779 | .low = htons(vxlan->port_min), |
| 2780 | .high = htons(vxlan->port_max), |
| 2781 | }; |
stephen hemminger | d342894 | 2012-10-01 12:32:35 +0000 | [diff] [blame] | 2782 | |
Atzm Watanabe | c7995c4 | 2013-04-16 02:50:52 +0000 | [diff] [blame] | 2783 | if (nla_put_u32(skb, IFLA_VXLAN_ID, dst->remote_vni)) |
stephen hemminger | d342894 | 2012-10-01 12:32:35 +0000 | [diff] [blame] | 2784 | goto nla_put_failure; |
| 2785 | |
Cong Wang | e4c7ed4 | 2013-08-31 13:44:33 +0800 | [diff] [blame] | 2786 | if (!vxlan_addr_any(&dst->remote_ip)) { |
| 2787 | if (dst->remote_ip.sa.sa_family == AF_INET) { |
| 2788 | if (nla_put_be32(skb, IFLA_VXLAN_GROUP, |
| 2789 | dst->remote_ip.sin.sin_addr.s_addr)) |
| 2790 | goto nla_put_failure; |
| 2791 | #if IS_ENABLED(CONFIG_IPV6) |
| 2792 | } else { |
| 2793 | if (nla_put(skb, IFLA_VXLAN_GROUP6, sizeof(struct in6_addr), |
| 2794 | &dst->remote_ip.sin6.sin6_addr)) |
| 2795 | goto nla_put_failure; |
| 2796 | #endif |
| 2797 | } |
| 2798 | } |
stephen hemminger | d342894 | 2012-10-01 12:32:35 +0000 | [diff] [blame] | 2799 | |
Atzm Watanabe | c7995c4 | 2013-04-16 02:50:52 +0000 | [diff] [blame] | 2800 | if (dst->remote_ifindex && nla_put_u32(skb, IFLA_VXLAN_LINK, dst->remote_ifindex)) |
stephen hemminger | d342894 | 2012-10-01 12:32:35 +0000 | [diff] [blame] | 2801 | goto nla_put_failure; |
| 2802 | |
Cong Wang | e4c7ed4 | 2013-08-31 13:44:33 +0800 | [diff] [blame] | 2803 | if (!vxlan_addr_any(&vxlan->saddr)) { |
| 2804 | if (vxlan->saddr.sa.sa_family == AF_INET) { |
| 2805 | if (nla_put_be32(skb, IFLA_VXLAN_LOCAL, |
| 2806 | vxlan->saddr.sin.sin_addr.s_addr)) |
| 2807 | goto nla_put_failure; |
| 2808 | #if IS_ENABLED(CONFIG_IPV6) |
| 2809 | } else { |
| 2810 | if (nla_put(skb, IFLA_VXLAN_LOCAL6, sizeof(struct in6_addr), |
| 2811 | &vxlan->saddr.sin6.sin6_addr)) |
| 2812 | goto nla_put_failure; |
| 2813 | #endif |
| 2814 | } |
| 2815 | } |
stephen hemminger | d342894 | 2012-10-01 12:32:35 +0000 | [diff] [blame] | 2816 | |
| 2817 | if (nla_put_u8(skb, IFLA_VXLAN_TTL, vxlan->ttl) || |
| 2818 | nla_put_u8(skb, IFLA_VXLAN_TOS, vxlan->tos) || |
David Stevens | e4f67ad | 2012-11-20 02:50:14 +0000 | [diff] [blame] | 2819 | nla_put_u8(skb, IFLA_VXLAN_LEARNING, |
| 2820 | !!(vxlan->flags & VXLAN_F_LEARN)) || |
| 2821 | nla_put_u8(skb, IFLA_VXLAN_PROXY, |
| 2822 | !!(vxlan->flags & VXLAN_F_PROXY)) || |
| 2823 | nla_put_u8(skb, IFLA_VXLAN_RSC, !!(vxlan->flags & VXLAN_F_RSC)) || |
| 2824 | nla_put_u8(skb, IFLA_VXLAN_L2MISS, |
| 2825 | !!(vxlan->flags & VXLAN_F_L2MISS)) || |
| 2826 | nla_put_u8(skb, IFLA_VXLAN_L3MISS, |
| 2827 | !!(vxlan->flags & VXLAN_F_L3MISS)) || |
stephen hemminger | d342894 | 2012-10-01 12:32:35 +0000 | [diff] [blame] | 2828 | nla_put_u32(skb, IFLA_VXLAN_AGEING, vxlan->age_interval) || |
stephen hemminger | 823aa87 | 2013-04-27 11:31:57 +0000 | [diff] [blame] | 2829 | nla_put_u32(skb, IFLA_VXLAN_LIMIT, vxlan->addrmax) || |
Tom Herbert | 359a0ea | 2014-06-04 17:20:29 -0700 | [diff] [blame] | 2830 | nla_put_be16(skb, IFLA_VXLAN_PORT, vxlan->dst_port) || |
| 2831 | nla_put_u8(skb, IFLA_VXLAN_UDP_CSUM, |
| 2832 | !!(vxlan->flags & VXLAN_F_UDP_CSUM)) || |
| 2833 | nla_put_u8(skb, IFLA_VXLAN_UDP_ZERO_CSUM6_TX, |
| 2834 | !!(vxlan->flags & VXLAN_F_UDP_ZERO_CSUM6_TX)) || |
| 2835 | nla_put_u8(skb, IFLA_VXLAN_UDP_ZERO_CSUM6_RX, |
| 2836 | !!(vxlan->flags & VXLAN_F_UDP_ZERO_CSUM6_RX))) |
stephen hemminger | d342894 | 2012-10-01 12:32:35 +0000 | [diff] [blame] | 2837 | goto nla_put_failure; |
| 2838 | |
stephen hemminger | 05f47d6 | 2012-10-09 20:35:50 +0000 | [diff] [blame] | 2839 | if (nla_put(skb, IFLA_VXLAN_PORT_RANGE, sizeof(ports), &ports)) |
| 2840 | goto nla_put_failure; |
| 2841 | |
stephen hemminger | d342894 | 2012-10-01 12:32:35 +0000 | [diff] [blame] | 2842 | return 0; |
| 2843 | |
| 2844 | nla_put_failure: |
| 2845 | return -EMSGSIZE; |
| 2846 | } |
| 2847 | |
| 2848 | static struct rtnl_link_ops vxlan_link_ops __read_mostly = { |
| 2849 | .kind = "vxlan", |
| 2850 | .maxtype = IFLA_VXLAN_MAX, |
| 2851 | .policy = vxlan_policy, |
| 2852 | .priv_size = sizeof(struct vxlan_dev), |
| 2853 | .setup = vxlan_setup, |
| 2854 | .validate = vxlan_validate, |
| 2855 | .newlink = vxlan_newlink, |
| 2856 | .dellink = vxlan_dellink, |
| 2857 | .get_size = vxlan_get_size, |
| 2858 | .fill_info = vxlan_fill_info, |
| 2859 | }; |
| 2860 | |
Daniel Borkmann | acaf4e709 | 2014-01-13 18:41:19 +0100 | [diff] [blame] | 2861 | static void vxlan_handle_lowerdev_unregister(struct vxlan_net *vn, |
| 2862 | struct net_device *dev) |
| 2863 | { |
| 2864 | struct vxlan_dev *vxlan, *next; |
| 2865 | LIST_HEAD(list_kill); |
| 2866 | |
| 2867 | list_for_each_entry_safe(vxlan, next, &vn->vxlan_list, next) { |
| 2868 | struct vxlan_rdst *dst = &vxlan->default_dst; |
| 2869 | |
| 2870 | /* In case we created vxlan device with carrier |
| 2871 | * and we loose the carrier due to module unload |
| 2872 | * we also need to remove vxlan device. In other |
| 2873 | * cases, it's not necessary and remote_ifindex |
| 2874 | * is 0 here, so no matches. |
| 2875 | */ |
| 2876 | if (dst->remote_ifindex == dev->ifindex) |
| 2877 | vxlan_dellink(vxlan->dev, &list_kill); |
| 2878 | } |
| 2879 | |
| 2880 | unregister_netdevice_many(&list_kill); |
| 2881 | } |
| 2882 | |
| 2883 | static int vxlan_lowerdev_event(struct notifier_block *unused, |
| 2884 | unsigned long event, void *ptr) |
| 2885 | { |
| 2886 | struct net_device *dev = netdev_notifier_info_to_dev(ptr); |
Daniel Borkmann | 783c146 | 2014-01-22 21:07:53 +0100 | [diff] [blame] | 2887 | struct vxlan_net *vn = net_generic(dev_net(dev), vxlan_net_id); |
Daniel Borkmann | acaf4e709 | 2014-01-13 18:41:19 +0100 | [diff] [blame] | 2888 | |
Daniel Borkmann | 783c146 | 2014-01-22 21:07:53 +0100 | [diff] [blame] | 2889 | if (event == NETDEV_UNREGISTER) |
Daniel Borkmann | acaf4e709 | 2014-01-13 18:41:19 +0100 | [diff] [blame] | 2890 | vxlan_handle_lowerdev_unregister(vn, dev); |
| 2891 | |
| 2892 | return NOTIFY_DONE; |
| 2893 | } |
| 2894 | |
| 2895 | static struct notifier_block vxlan_notifier_block __read_mostly = { |
| 2896 | .notifier_call = vxlan_lowerdev_event, |
| 2897 | }; |
| 2898 | |
stephen hemminger | d342894 | 2012-10-01 12:32:35 +0000 | [diff] [blame] | 2899 | static __net_init int vxlan_init_net(struct net *net) |
| 2900 | { |
| 2901 | struct vxlan_net *vn = net_generic(net, vxlan_net_id); |
Cong Wang | 31fec5a | 2013-05-27 22:35:52 +0000 | [diff] [blame] | 2902 | unsigned int h; |
stephen hemminger | d342894 | 2012-10-01 12:32:35 +0000 | [diff] [blame] | 2903 | |
stephen hemminger | 553675f | 2013-05-16 11:35:20 +0000 | [diff] [blame] | 2904 | INIT_LIST_HEAD(&vn->vxlan_list); |
Stephen Hemminger | 1c51a91 | 2013-06-17 14:16:11 -0700 | [diff] [blame] | 2905 | spin_lock_init(&vn->sock_lock); |
stephen hemminger | d342894 | 2012-10-01 12:32:35 +0000 | [diff] [blame] | 2906 | |
stephen hemminger | 553675f | 2013-05-16 11:35:20 +0000 | [diff] [blame] | 2907 | for (h = 0; h < PORT_HASH_SIZE; ++h) |
| 2908 | INIT_HLIST_HEAD(&vn->sock_list[h]); |
stephen hemminger | d342894 | 2012-10-01 12:32:35 +0000 | [diff] [blame] | 2909 | |
| 2910 | return 0; |
| 2911 | } |
| 2912 | |
Nicolas Dichtel | f01ec1c | 2014-04-24 10:02:49 +0200 | [diff] [blame] | 2913 | static void __net_exit vxlan_exit_net(struct net *net) |
| 2914 | { |
| 2915 | struct vxlan_net *vn = net_generic(net, vxlan_net_id); |
| 2916 | struct vxlan_dev *vxlan, *next; |
| 2917 | struct net_device *dev, *aux; |
| 2918 | LIST_HEAD(list); |
| 2919 | |
| 2920 | rtnl_lock(); |
| 2921 | for_each_netdev_safe(net, dev, aux) |
| 2922 | if (dev->rtnl_link_ops == &vxlan_link_ops) |
| 2923 | unregister_netdevice_queue(dev, &list); |
| 2924 | |
| 2925 | list_for_each_entry_safe(vxlan, next, &vn->vxlan_list, next) { |
| 2926 | /* If vxlan->dev is in the same netns, it has already been added |
| 2927 | * to the list by the previous loop. |
| 2928 | */ |
| 2929 | if (!net_eq(dev_net(vxlan->dev), net)) |
| 2930 | unregister_netdevice_queue(dev, &list); |
| 2931 | } |
| 2932 | |
| 2933 | unregister_netdevice_many(&list); |
| 2934 | rtnl_unlock(); |
| 2935 | } |
| 2936 | |
stephen hemminger | d342894 | 2012-10-01 12:32:35 +0000 | [diff] [blame] | 2937 | static struct pernet_operations vxlan_net_ops = { |
| 2938 | .init = vxlan_init_net, |
Nicolas Dichtel | f01ec1c | 2014-04-24 10:02:49 +0200 | [diff] [blame] | 2939 | .exit = vxlan_exit_net, |
stephen hemminger | d342894 | 2012-10-01 12:32:35 +0000 | [diff] [blame] | 2940 | .id = &vxlan_net_id, |
| 2941 | .size = sizeof(struct vxlan_net), |
| 2942 | }; |
| 2943 | |
| 2944 | static int __init vxlan_init_module(void) |
| 2945 | { |
| 2946 | int rc; |
| 2947 | |
Stephen Hemminger | 758c57d | 2013-06-17 14:16:09 -0700 | [diff] [blame] | 2948 | vxlan_wq = alloc_workqueue("vxlan", 0, 0); |
| 2949 | if (!vxlan_wq) |
| 2950 | return -ENOMEM; |
| 2951 | |
stephen hemminger | d342894 | 2012-10-01 12:32:35 +0000 | [diff] [blame] | 2952 | get_random_bytes(&vxlan_salt, sizeof(vxlan_salt)); |
| 2953 | |
Daniel Borkmann | 783c146 | 2014-01-22 21:07:53 +0100 | [diff] [blame] | 2954 | rc = register_pernet_subsys(&vxlan_net_ops); |
stephen hemminger | d342894 | 2012-10-01 12:32:35 +0000 | [diff] [blame] | 2955 | if (rc) |
| 2956 | goto out1; |
| 2957 | |
Daniel Borkmann | acaf4e709 | 2014-01-13 18:41:19 +0100 | [diff] [blame] | 2958 | rc = register_netdevice_notifier(&vxlan_notifier_block); |
stephen hemminger | d342894 | 2012-10-01 12:32:35 +0000 | [diff] [blame] | 2959 | if (rc) |
| 2960 | goto out2; |
| 2961 | |
Daniel Borkmann | acaf4e709 | 2014-01-13 18:41:19 +0100 | [diff] [blame] | 2962 | rc = rtnl_link_register(&vxlan_link_ops); |
| 2963 | if (rc) |
| 2964 | goto out3; |
stephen hemminger | d342894 | 2012-10-01 12:32:35 +0000 | [diff] [blame] | 2965 | |
Daniel Borkmann | acaf4e709 | 2014-01-13 18:41:19 +0100 | [diff] [blame] | 2966 | return 0; |
| 2967 | out3: |
| 2968 | unregister_netdevice_notifier(&vxlan_notifier_block); |
stephen hemminger | d342894 | 2012-10-01 12:32:35 +0000 | [diff] [blame] | 2969 | out2: |
Daniel Borkmann | 783c146 | 2014-01-22 21:07:53 +0100 | [diff] [blame] | 2970 | unregister_pernet_subsys(&vxlan_net_ops); |
stephen hemminger | d342894 | 2012-10-01 12:32:35 +0000 | [diff] [blame] | 2971 | out1: |
Stephen Hemminger | 758c57d | 2013-06-17 14:16:09 -0700 | [diff] [blame] | 2972 | destroy_workqueue(vxlan_wq); |
stephen hemminger | d342894 | 2012-10-01 12:32:35 +0000 | [diff] [blame] | 2973 | return rc; |
| 2974 | } |
Cong Wang | 7332a13 | 2013-05-27 22:35:53 +0000 | [diff] [blame] | 2975 | late_initcall(vxlan_init_module); |
stephen hemminger | d342894 | 2012-10-01 12:32:35 +0000 | [diff] [blame] | 2976 | |
| 2977 | static void __exit vxlan_cleanup_module(void) |
| 2978 | { |
Stephen Hemminger | b715398 | 2013-06-17 14:16:09 -0700 | [diff] [blame] | 2979 | rtnl_link_unregister(&vxlan_link_ops); |
Daniel Borkmann | acaf4e709 | 2014-01-13 18:41:19 +0100 | [diff] [blame] | 2980 | unregister_netdevice_notifier(&vxlan_notifier_block); |
Stephen Hemminger | 758c57d | 2013-06-17 14:16:09 -0700 | [diff] [blame] | 2981 | destroy_workqueue(vxlan_wq); |
Daniel Borkmann | 783c146 | 2014-01-22 21:07:53 +0100 | [diff] [blame] | 2982 | unregister_pernet_subsys(&vxlan_net_ops); |
| 2983 | /* rcu_barrier() is called by netns */ |
stephen hemminger | d342894 | 2012-10-01 12:32:35 +0000 | [diff] [blame] | 2984 | } |
| 2985 | module_exit(vxlan_cleanup_module); |
| 2986 | |
| 2987 | MODULE_LICENSE("GPL"); |
| 2988 | MODULE_VERSION(VXLAN_VERSION); |
stephen hemminger | 3b8df3c | 2013-04-27 11:31:52 +0000 | [diff] [blame] | 2989 | MODULE_AUTHOR("Stephen Hemminger <stephen@networkplumber.org>"); |
Jesse Brandeburg | ead5139 | 2014-01-17 11:00:33 -0800 | [diff] [blame] | 2990 | MODULE_DESCRIPTION("Driver for VXLAN encapsulated traffic"); |
stephen hemminger | d342894 | 2012-10-01 12:32:35 +0000 | [diff] [blame] | 2991 | MODULE_ALIAS_RTNL_LINK("vxlan"); |