blob: c8320405c8f1d11e68f0485b6f3346dcf2198b1b [file] [log] [blame]
Hank Janssenfceaf242009-07-13 15:34:54 -07001/*
Hank Janssenfceaf242009-07-13 15:34:54 -07002 * Copyright (c) 2009, Microsoft Corporation.
3 *
4 * This program is free software; you can redistribute it and/or modify it
5 * under the terms and conditions of the GNU General Public License,
6 * version 2, as published by the Free Software Foundation.
7 *
8 * This program is distributed in the hope it will be useful, but WITHOUT
9 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
10 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
11 * more details.
12 *
13 * You should have received a copy of the GNU General Public License along with
Jeff Kirsheradf8d3f2013-12-06 06:28:47 -080014 * this program; if not, see <http://www.gnu.org/licenses/>.
Hank Janssenfceaf242009-07-13 15:34:54 -070015 *
16 * Authors:
Haiyang Zhangd0e94d12009-11-23 17:00:22 +000017 * Haiyang Zhang <haiyangz@microsoft.com>
Hank Janssenfceaf242009-07-13 15:34:54 -070018 * Hank Janssen <hjanssen@microsoft.com>
Hank Janssenfceaf242009-07-13 15:34:54 -070019 */
Hank Jansseneb335bc2011-03-29 13:58:48 -070020#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
21
Hank Janssenfceaf242009-07-13 15:34:54 -070022#include <linux/init.h>
K. Y. Srinivasan9079ce62011-06-16 13:16:37 -070023#include <linux/atomic.h>
Hank Janssenfceaf242009-07-13 15:34:54 -070024#include <linux/module.h>
25#include <linux/highmem.h>
26#include <linux/device.h>
Hank Janssenfceaf242009-07-13 15:34:54 -070027#include <linux/io.h>
Hank Janssenfceaf242009-07-13 15:34:54 -070028#include <linux/delay.h>
29#include <linux/netdevice.h>
30#include <linux/inetdevice.h>
31#include <linux/etherdevice.h>
Stephen Hemmingerb93c1b52018-08-21 10:40:38 -070032#include <linux/pci.h>
Hank Janssenfceaf242009-07-13 15:34:54 -070033#include <linux/skbuff.h>
Haiyang Zhangc802db12013-05-28 06:15:56 +000034#include <linux/if_vlan.h>
Hank Janssenfceaf242009-07-13 15:34:54 -070035#include <linux/in.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090036#include <linux/slab.h>
stephen hemminger27f5aa92017-07-24 10:57:29 -070037#include <linux/rtnetlink.h>
stephen hemminger0c195562017-08-01 19:58:53 -070038#include <linux/netpoll.h>
stephen hemminger27f5aa92017-07-24 10:57:29 -070039
Hank Janssenfceaf242009-07-13 15:34:54 -070040#include <net/arp.h>
41#include <net/route.h>
42#include <net/sock.h>
43#include <net/pkt_sched.h>
Michael Kelley8eb1b3c2017-05-30 11:36:56 -070044#include <net/checksum.h>
45#include <net/ip6_checksum.h>
K. Y. Srinivasan3f335ea2011-05-12 19:34:15 -070046
K. Y. Srinivasan5ca72522011-05-12 19:34:37 -070047#include "hyperv_net.h"
Hank Janssenfceaf242009-07-13 15:34:54 -070048
Stephen Hemminger7b2ee502018-03-20 15:03:05 -070049#define RING_SIZE_MIN 64
50#define RETRY_US_LO 5000
51#define RETRY_US_HI 10000
52#define RETRY_MAX 2000 /* >10 sec */
stephen hemminger8b532792017-08-09 17:46:11 -070053
Vitaly Kuznetsov27a70af2015-11-27 11:39:55 +010054#define LINKCHANGE_INT (2 * HZ)
stephen hemminger6123c662017-08-09 17:46:03 -070055#define VF_TAKEOVER_INT (HZ / 10)
stephen hemmingera50af862016-12-06 13:43:54 -080056
Stephen Hemmingera7f99d02017-12-01 11:01:47 -080057static unsigned int ring_size __ro_after_init = 128;
Joe Perchesd61e4032018-03-23 15:54:39 -070058module_param(ring_size, uint, 0444);
Stephen Hemminger450d7a42010-05-04 09:58:53 -070059MODULE_PARM_DESC(ring_size, "Ring buffer size (# of pages)");
Stephen Hemmingera7f99d02017-12-01 11:01:47 -080060unsigned int netvsc_ring_bytes __ro_after_init;
Hank Janssenfceaf242009-07-13 15:34:54 -070061
Simon Xiao3f300ff2015-04-28 01:05:17 -070062static const u32 default_msg = NETIF_MSG_DRV | NETIF_MSG_PROBE |
63 NETIF_MSG_LINK | NETIF_MSG_IFUP |
64 NETIF_MSG_IFDOWN | NETIF_MSG_RX_ERR |
65 NETIF_MSG_TX_ERR;
66
67static int debug = -1;
Joe Perchesd61e4032018-03-23 15:54:39 -070068module_param(debug, int, 0444);
Simon Xiao3f300ff2015-04-28 01:05:17 -070069MODULE_PARM_DESC(debug, "Debug level (0=none,...,16=all)");
70
Stephen Hemminger7bf7bb32018-06-11 12:44:55 -070071static LIST_HEAD(netvsc_dev_list);
72
Stephen Hemmingerbee9d412018-03-02 13:49:09 -080073static void netvsc_change_rx_flags(struct net_device *net, int change)
Hank Janssenfceaf242009-07-13 15:34:54 -070074{
Stephen Hemmingerbee9d412018-03-02 13:49:09 -080075 struct net_device_context *ndev_ctx = netdev_priv(net);
76 struct net_device *vf_netdev = rtnl_dereference(ndev_ctx->vf_netdev);
77 int inc;
78
79 if (!vf_netdev)
80 return;
81
82 if (change & IFF_PROMISC) {
83 inc = (net->flags & IFF_PROMISC) ? 1 : -1;
84 dev_set_promiscuity(vf_netdev, inc);
85 }
86
87 if (change & IFF_ALLMULTI) {
88 inc = (net->flags & IFF_ALLMULTI) ? 1 : -1;
89 dev_set_allmulti(vf_netdev, inc);
90 }
91}
92
93static void netvsc_set_rx_mode(struct net_device *net)
94{
95 struct net_device_context *ndev_ctx = netdev_priv(net);
Stephen Hemminger35a57b72018-03-07 13:49:11 -080096 struct net_device *vf_netdev;
97 struct netvsc_device *nvdev;
Stephen Hemmingerbee9d412018-03-02 13:49:09 -080098
Stephen Hemminger35a57b72018-03-07 13:49:11 -080099 rcu_read_lock();
100 vf_netdev = rcu_dereference(ndev_ctx->vf_netdev);
Stephen Hemmingerbee9d412018-03-02 13:49:09 -0800101 if (vf_netdev) {
102 dev_uc_sync(vf_netdev, net);
103 dev_mc_sync(vf_netdev, net);
104 }
Haiyang Zhangd426b2e2011-11-30 07:19:08 -0800105
Stephen Hemminger35a57b72018-03-07 13:49:11 -0800106 nvdev = rcu_dereference(ndev_ctx->nvdev);
107 if (nvdev)
108 rndis_filter_update(nvdev);
109 rcu_read_unlock();
Hank Janssenfceaf242009-07-13 15:34:54 -0700110}
111
Hank Janssenfceaf242009-07-13 15:34:54 -0700112static int netvsc_open(struct net_device *net)
113{
Haiyang Zhang53fa1a62017-06-21 16:40:47 -0700114 struct net_device_context *ndev_ctx = netdev_priv(net);
stephen hemminger0c195562017-08-01 19:58:53 -0700115 struct net_device *vf_netdev = rtnl_dereference(ndev_ctx->vf_netdev);
stephen hemminger79e8cbe2017-07-19 11:53:13 -0700116 struct netvsc_device *nvdev = rtnl_dereference(ndev_ctx->nvdev);
Haiyang Zhang891de742014-02-12 16:54:27 -0800117 struct rndis_device *rdev;
Greg Kroah-Hartman02fafbc2009-08-31 21:09:45 -0700118 int ret = 0;
Hank Janssenfceaf242009-07-13 15:34:54 -0700119
Haiyang Zhang891de742014-02-12 16:54:27 -0800120 netif_carrier_off(net);
121
Haiyang Zhangd515d0f2011-09-28 13:24:15 -0700122 /* Open up the device */
Vitaly Kuznetsov2f5fa6c2016-06-03 17:51:00 +0200123 ret = rndis_filter_open(nvdev);
Haiyang Zhangd515d0f2011-09-28 13:24:15 -0700124 if (ret != 0) {
125 netdev_err(net, "unable to open device (ret %d).\n", ret);
126 return ret;
Hank Janssenfceaf242009-07-13 15:34:54 -0700127 }
128
Haiyang Zhang891de742014-02-12 16:54:27 -0800129 rdev = nvdev->extension;
Dexuan Cui52acf732018-06-06 21:32:51 +0000130 if (!rdev->link_state) {
Haiyang Zhang891de742014-02-12 16:54:27 -0800131 netif_carrier_on(net);
Dexuan Cui52acf732018-06-06 21:32:51 +0000132 netif_tx_wake_all_queues(net);
133 }
Haiyang Zhang891de742014-02-12 16:54:27 -0800134
stephen hemminger0c195562017-08-01 19:58:53 -0700135 if (vf_netdev) {
136 /* Setting synthetic device up transparently sets
137 * slave as up. If open fails, then slave will be
138 * still be offline (and not used).
139 */
140 ret = dev_open(vf_netdev);
141 if (ret)
142 netdev_warn(net,
143 "unable to open slave: %s: %d\n",
144 vf_netdev->name, ret);
145 }
146 return 0;
Hank Janssenfceaf242009-07-13 15:34:54 -0700147}
148
Stephen Hemminger7b2ee502018-03-20 15:03:05 -0700149static int netvsc_wait_until_empty(struct netvsc_device *nvdev)
Hank Janssenfceaf242009-07-13 15:34:54 -0700150{
Stephen Hemminger7b2ee502018-03-20 15:03:05 -0700151 unsigned int retry = 0;
152 int i;
Haiyang Zhang2de85302015-07-13 13:09:16 -0700153
154 /* Ensure pending bytes in ring are read */
Stephen Hemminger7b2ee502018-03-20 15:03:05 -0700155 for (;;) {
156 u32 aread = 0;
157
Haiyang Zhang2de85302015-07-13 13:09:16 -0700158 for (i = 0; i < nvdev->num_chn; i++) {
Stephen Hemminger7b2ee502018-03-20 15:03:05 -0700159 struct vmbus_channel *chn
160 = nvdev->chan_table[i].channel;
161
Haiyang Zhang2de85302015-07-13 13:09:16 -0700162 if (!chn)
163 continue;
164
Stephen Hemminger7b2ee502018-03-20 15:03:05 -0700165 /* make sure receive not running now */
166 napi_synchronize(&nvdev->chan_table[i].napi);
167
stephen hemminger40975962017-06-08 16:21:19 -0700168 aread = hv_get_bytes_to_read(&chn->inbound);
Haiyang Zhang2de85302015-07-13 13:09:16 -0700169 if (aread)
170 break;
171
stephen hemminger40975962017-06-08 16:21:19 -0700172 aread = hv_get_bytes_to_read(&chn->outbound);
Haiyang Zhang2de85302015-07-13 13:09:16 -0700173 if (aread)
174 break;
175 }
176
Stephen Hemminger7b2ee502018-03-20 15:03:05 -0700177 if (aread == 0)
178 return 0;
Haiyang Zhang2de85302015-07-13 13:09:16 -0700179
Stephen Hemminger7b2ee502018-03-20 15:03:05 -0700180 if (++retry > RETRY_MAX)
181 return -ETIMEDOUT;
Haiyang Zhang2de85302015-07-13 13:09:16 -0700182
Stephen Hemminger7b2ee502018-03-20 15:03:05 -0700183 usleep_range(RETRY_US_LO, RETRY_US_HI);
184 }
185}
186
187static int netvsc_close(struct net_device *net)
188{
189 struct net_device_context *net_device_ctx = netdev_priv(net);
190 struct net_device *vf_netdev
191 = rtnl_dereference(net_device_ctx->vf_netdev);
192 struct netvsc_device *nvdev = rtnl_dereference(net_device_ctx->nvdev);
193 int ret;
194
195 netif_tx_disable(net);
196
197 /* No need to close rndis filter if it is removed already */
198 if (!nvdev)
199 return 0;
200
201 ret = rndis_filter_close(nvdev);
202 if (ret != 0) {
203 netdev_err(net, "unable to close device (ret %d).\n", ret);
204 return ret;
Haiyang Zhang2de85302015-07-13 13:09:16 -0700205 }
206
Stephen Hemminger7b2ee502018-03-20 15:03:05 -0700207 ret = netvsc_wait_until_empty(nvdev);
208 if (ret)
Haiyang Zhang2de85302015-07-13 13:09:16 -0700209 netdev_err(net, "Ring buffer not empty after closing rndis\n");
Hank Janssenfceaf242009-07-13 15:34:54 -0700210
stephen hemminger0c195562017-08-01 19:58:53 -0700211 if (vf_netdev)
212 dev_close(vf_netdev);
213
Hank Janssenfceaf242009-07-13 15:34:54 -0700214 return ret;
215}
216
Stephen Hemmingerf5a22552017-12-01 11:01:48 -0800217static inline void *init_ppi_data(struct rndis_message *msg,
218 u32 ppi_size, u32 pkt_type)
KY Srinivasan8a002512014-03-08 19:23:14 -0800219{
Stephen Hemmingerf5a22552017-12-01 11:01:48 -0800220 struct rndis_packet *rndis_pkt = &msg->msg.pkt;
KY Srinivasan8a002512014-03-08 19:23:14 -0800221 struct rndis_per_packet_info *ppi;
222
KY Srinivasan8a002512014-03-08 19:23:14 -0800223 rndis_pkt->data_offset += ppi_size;
Stephen Hemmingerf5a22552017-12-01 11:01:48 -0800224 ppi = (void *)rndis_pkt + rndis_pkt->per_pkt_info_offset
225 + rndis_pkt->per_pkt_info_len;
KY Srinivasan8a002512014-03-08 19:23:14 -0800226
227 ppi->size = ppi_size;
228 ppi->type = pkt_type;
229 ppi->ppi_offset = sizeof(struct rndis_per_packet_info);
230
231 rndis_pkt->per_pkt_info_len += ppi_size;
232
Stephen Hemmingerf5a22552017-12-01 11:01:48 -0800233 return ppi + 1;
KY Srinivasan8a002512014-03-08 19:23:14 -0800234}
235
Haiyang Zhang4823eb22017-08-21 19:22:39 -0700236/* Azure hosts don't support non-TCP port numbers in hashing for fragmented
237 * packets. We can use ethtool to change UDP hash level when necessary.
Haiyang Zhangf72860a2017-04-12 11:45:18 -0700238 */
Haiyang Zhang4823eb22017-08-21 19:22:39 -0700239static inline u32 netvsc_get_hash(
240 struct sk_buff *skb,
241 const struct net_device_context *ndc)
Haiyang Zhangf72860a2017-04-12 11:45:18 -0700242{
243 struct flow_keys flow;
Haiyang Zhang486e3982017-10-06 08:33:57 -0700244 u32 hash, pkt_proto = 0;
Haiyang Zhangf72860a2017-04-12 11:45:18 -0700245 static u32 hashrnd __read_mostly;
246
247 net_get_random_once(&hashrnd, sizeof(hashrnd));
248
249 if (!skb_flow_dissect_flow_keys(skb, &flow, 0))
250 return 0;
251
Haiyang Zhang486e3982017-10-06 08:33:57 -0700252 switch (flow.basic.ip_proto) {
253 case IPPROTO_TCP:
254 if (flow.basic.n_proto == htons(ETH_P_IP))
255 pkt_proto = HV_TCP4_L4HASH;
256 else if (flow.basic.n_proto == htons(ETH_P_IPV6))
257 pkt_proto = HV_TCP6_L4HASH;
258
259 break;
260
261 case IPPROTO_UDP:
262 if (flow.basic.n_proto == htons(ETH_P_IP))
263 pkt_proto = HV_UDP4_L4HASH;
264 else if (flow.basic.n_proto == htons(ETH_P_IPV6))
265 pkt_proto = HV_UDP6_L4HASH;
266
267 break;
268 }
269
270 if (pkt_proto & ndc->l4_hash) {
Haiyang Zhangf72860a2017-04-12 11:45:18 -0700271 return skb_get_hash(skb);
272 } else {
273 if (flow.basic.n_proto == htons(ETH_P_IP))
274 hash = jhash2((u32 *)&flow.addrs.v4addrs, 2, hashrnd);
275 else if (flow.basic.n_proto == htons(ETH_P_IPV6))
276 hash = jhash2((u32 *)&flow.addrs.v6addrs, 8, hashrnd);
277 else
278 hash = 0;
279
280 skb_set_hash(skb, hash, PKT_HASH_TYPE_L3);
281 }
282
283 return hash;
284}
285
Haiyang Zhang8db91f62017-04-12 11:35:05 -0700286static inline int netvsc_get_tx_queue(struct net_device *ndev,
287 struct sk_buff *skb, int old_idx)
288{
289 const struct net_device_context *ndc = netdev_priv(ndev);
290 struct sock *sk = skb->sk;
291 int q_idx;
292
Haiyang Zhang39e91cf2017-10-13 12:28:04 -0700293 q_idx = ndc->tx_table[netvsc_get_hash(skb, ndc) &
294 (VRSS_SEND_TAB_SIZE - 1)];
Haiyang Zhang8db91f62017-04-12 11:35:05 -0700295
296 /* If queue index changed record the new value */
297 if (q_idx != old_idx &&
298 sk && sk_fullsock(sk) && rcu_access_pointer(sk->sk_dst_cache))
299 sk_tx_queue_set(sk, q_idx);
300
301 return q_idx;
302}
303
stephen hemmingerd8e18ee2017-01-24 13:06:05 -0800304/*
305 * Select queue for transmit.
306 *
307 * If a valid queue has already been assigned, then use that.
308 * Otherwise compute tx queue based on hash and the send table.
309 *
310 * This is basically similar to default (__netdev_pick_tx) with the added step
311 * of using the host send_table when no other queue has been assigned.
312 *
313 * TODO support XPS - but get_xps_queue not exported
314 */
stephen hemminger0c195562017-08-01 19:58:53 -0700315static u16 netvsc_pick_tx(struct net_device *ndev, struct sk_buff *skb)
Haiyang Zhang5b54dac2014-04-21 10:20:28 -0700316{
Haiyang Zhang8db91f62017-04-12 11:35:05 -0700317 int q_idx = sk_tx_queue_get(skb->sk);
Haiyang Zhang5b54dac2014-04-21 10:20:28 -0700318
stephen hemminger0c195562017-08-01 19:58:53 -0700319 if (q_idx < 0 || skb->ooo_okay || q_idx >= ndev->real_num_tx_queues) {
Haiyang Zhang8db91f62017-04-12 11:35:05 -0700320 /* If forwarding a packet, we use the recorded queue when
321 * available for better cache locality.
322 */
323 if (skb_rx_queue_recorded(skb))
324 q_idx = skb_get_rx_queue(skb);
325 else
326 q_idx = netvsc_get_tx_queue(ndev, skb, q_idx);
stephen hemmingerd8e18ee2017-01-24 13:06:05 -0800327 }
328
Haiyang Zhang5b54dac2014-04-21 10:20:28 -0700329 return q_idx;
330}
331
stephen hemminger0c195562017-08-01 19:58:53 -0700332static u16 netvsc_select_queue(struct net_device *ndev, struct sk_buff *skb,
Alexander Duyck4f49dec2018-07-09 12:19:59 -0400333 struct net_device *sb_dev,
stephen hemminger0c195562017-08-01 19:58:53 -0700334 select_queue_fallback_t fallback)
335{
336 struct net_device_context *ndc = netdev_priv(ndev);
337 struct net_device *vf_netdev;
338 u16 txq;
339
340 rcu_read_lock();
341 vf_netdev = rcu_dereference(ndc->vf_netdev);
342 if (vf_netdev) {
Stephen Hemmingerb3bf5662018-03-02 13:49:07 -0800343 const struct net_device_ops *vf_ops = vf_netdev->netdev_ops;
344
345 if (vf_ops->ndo_select_queue)
346 txq = vf_ops->ndo_select_queue(vf_netdev, skb,
Alexander Duyck4f49dec2018-07-09 12:19:59 -0400347 sb_dev, fallback);
Stephen Hemmingerb3bf5662018-03-02 13:49:07 -0800348 else
Alexander Duyck8ec56fc2018-07-09 12:20:04 -0400349 txq = fallback(vf_netdev, skb, NULL);
Stephen Hemmingerb3bf5662018-03-02 13:49:07 -0800350
351 /* Record the queue selected by VF so that it can be
352 * used for common case where VF has more queues than
353 * the synthetic device.
354 */
355 qdisc_skb_cb(skb)->slave_dev_queue_mapping = txq;
stephen hemminger0c195562017-08-01 19:58:53 -0700356 } else {
357 txq = netvsc_pick_tx(ndev, skb);
358 }
359 rcu_read_unlock();
360
361 while (unlikely(txq >= ndev->real_num_tx_queues))
362 txq -= ndev->real_num_tx_queues;
363
364 return txq;
365}
366
KY Srinivasan54a73572014-03-08 19:23:13 -0800367static u32 fill_pg_buf(struct page *page, u32 offset, u32 len,
stephen hemminger89bb42b2017-08-09 17:46:08 -0700368 struct hv_page_buffer *pb)
KY Srinivasan54a73572014-03-08 19:23:13 -0800369{
370 int j = 0;
371
372 /* Deal with compund pages by ignoring unused part
373 * of the page.
374 */
375 page += (offset >> PAGE_SHIFT);
376 offset &= ~PAGE_MASK;
377
378 while (len > 0) {
379 unsigned long bytes;
380
381 bytes = PAGE_SIZE - offset;
382 if (bytes > len)
383 bytes = len;
384 pb[j].pfn = page_to_pfn(page);
385 pb[j].offset = offset;
386 pb[j].len = bytes;
387
388 offset += bytes;
389 len -= bytes;
390
391 if (offset == PAGE_SIZE && len) {
392 page++;
393 offset = 0;
394 j++;
395 }
396 }
397
398 return j + 1;
399}
400
KY Srinivasan8a002512014-03-08 19:23:14 -0800401static u32 init_page_array(void *hdr, u32 len, struct sk_buff *skb,
KY Srinivasana9f2e2d2015-12-01 16:43:13 -0800402 struct hv_netvsc_packet *packet,
stephen hemminger02b6de02017-07-28 08:59:44 -0700403 struct hv_page_buffer *pb)
KY Srinivasan54a73572014-03-08 19:23:13 -0800404{
405 u32 slots_used = 0;
406 char *data = skb->data;
407 int frags = skb_shinfo(skb)->nr_frags;
408 int i;
409
410 /* The packet is laid out thus:
Haiyang Zhangaa0a34b2015-04-13 16:34:35 -0700411 * 1. hdr: RNDIS header and PPI
KY Srinivasan54a73572014-03-08 19:23:13 -0800412 * 2. skb linear data
413 * 3. skb fragment data
414 */
stephen hemmingerea5a32c2017-08-09 17:46:10 -0700415 slots_used += fill_pg_buf(virt_to_page(hdr),
416 offset_in_page(hdr),
417 len, &pb[slots_used]);
KY Srinivasan54a73572014-03-08 19:23:13 -0800418
Haiyang Zhangaa0a34b2015-04-13 16:34:35 -0700419 packet->rmsg_size = len;
420 packet->rmsg_pgcnt = slots_used;
421
KY Srinivasan54a73572014-03-08 19:23:13 -0800422 slots_used += fill_pg_buf(virt_to_page(data),
423 offset_in_page(data),
424 skb_headlen(skb), &pb[slots_used]);
425
426 for (i = 0; i < frags; i++) {
427 skb_frag_t *frag = skb_shinfo(skb)->frags + i;
428
429 slots_used += fill_pg_buf(skb_frag_page(frag),
430 frag->page_offset,
431 skb_frag_size(frag), &pb[slots_used]);
432 }
KY Srinivasan8a002512014-03-08 19:23:14 -0800433 return slots_used;
KY Srinivasan54a73572014-03-08 19:23:13 -0800434}
435
stephen hemminger80d887d2017-07-24 21:03:19 -0700436static int count_skb_frag_slots(struct sk_buff *skb)
KY Srinivasan54a73572014-03-08 19:23:13 -0800437{
stephen hemminger80d887d2017-07-24 21:03:19 -0700438 int i, frags = skb_shinfo(skb)->nr_frags;
439 int pages = 0;
440
441 for (i = 0; i < frags; i++) {
442 skb_frag_t *frag = skb_shinfo(skb)->frags + i;
443 unsigned long size = skb_frag_size(frag);
444 unsigned long offset = frag->page_offset;
445
446 /* Skip unused frames from start of page */
447 offset &= ~PAGE_MASK;
448 pages += PFN_UP(offset + size);
449 }
450 return pages;
451}
452
453static int netvsc_get_slots(struct sk_buff *skb)
454{
455 char *data = skb->data;
456 unsigned int offset = offset_in_page(data);
457 unsigned int len = skb_headlen(skb);
458 int slots;
459 int frag_slots;
460
461 slots = DIV_ROUND_UP(offset + len, PAGE_SIZE);
462 frag_slots = count_skb_frag_slots(skb);
463 return slots + frag_slots;
KY Srinivasan54a73572014-03-08 19:23:13 -0800464}
465
stephen hemminger23312a32017-01-24 13:05:59 -0800466static u32 net_checksum_info(struct sk_buff *skb)
KY Srinivasan08cd04b2014-03-08 19:23:17 -0800467{
stephen hemminger23312a32017-01-24 13:05:59 -0800468 if (skb->protocol == htons(ETH_P_IP)) {
469 struct iphdr *ip = ip_hdr(skb);
KY Srinivasan08cd04b2014-03-08 19:23:17 -0800470
stephen hemminger23312a32017-01-24 13:05:59 -0800471 if (ip->protocol == IPPROTO_TCP)
472 return TRANSPORT_INFO_IPV4_TCP;
473 else if (ip->protocol == IPPROTO_UDP)
474 return TRANSPORT_INFO_IPV4_UDP;
KY Srinivasan08cd04b2014-03-08 19:23:17 -0800475 } else {
stephen hemminger23312a32017-01-24 13:05:59 -0800476 struct ipv6hdr *ip6 = ipv6_hdr(skb);
477
478 if (ip6->nexthdr == IPPROTO_TCP)
479 return TRANSPORT_INFO_IPV6_TCP;
Mohammed Gamal37b9dfa2017-07-24 10:57:26 -0700480 else if (ip6->nexthdr == IPPROTO_UDP)
stephen hemminger23312a32017-01-24 13:05:59 -0800481 return TRANSPORT_INFO_IPV6_UDP;
KY Srinivasan08cd04b2014-03-08 19:23:17 -0800482 }
483
stephen hemminger23312a32017-01-24 13:05:59 -0800484 return TRANSPORT_INFO_NOT_IP;
KY Srinivasan08cd04b2014-03-08 19:23:17 -0800485}
486
stephen hemminger0c195562017-08-01 19:58:53 -0700487/* Send skb on the slave VF device. */
488static int netvsc_vf_xmit(struct net_device *net, struct net_device *vf_netdev,
489 struct sk_buff *skb)
490{
491 struct net_device_context *ndev_ctx = netdev_priv(net);
492 unsigned int len = skb->len;
493 int rc;
494
495 skb->dev = vf_netdev;
496 skb->queue_mapping = qdisc_skb_cb(skb)->slave_dev_queue_mapping;
497
498 rc = dev_queue_xmit(skb);
499 if (likely(rc == NET_XMIT_SUCCESS || rc == NET_XMIT_CN)) {
500 struct netvsc_vf_pcpu_stats *pcpu_stats
501 = this_cpu_ptr(ndev_ctx->vf_stats);
502
503 u64_stats_update_begin(&pcpu_stats->syncp);
504 pcpu_stats->tx_packets++;
505 pcpu_stats->tx_bytes += len;
506 u64_stats_update_end(&pcpu_stats->syncp);
507 } else {
508 this_cpu_inc(ndev_ctx->vf_stats->tx_dropped);
509 }
510
511 return rc;
512}
513
Greg Kroah-Hartman02fafbc2009-08-31 21:09:45 -0700514static int netvsc_start_xmit(struct sk_buff *skb, struct net_device *net)
Hank Janssenfceaf242009-07-13 15:34:54 -0700515{
Hank Janssenfceaf242009-07-13 15:34:54 -0700516 struct net_device_context *net_device_ctx = netdev_priv(net);
Vitaly Kuznetsov981a1bd2015-04-08 17:54:05 +0200517 struct hv_netvsc_packet *packet = NULL;
Greg Kroah-Hartman02fafbc2009-08-31 21:09:45 -0700518 int ret;
KY Srinivasan8a002512014-03-08 19:23:14 -0800519 unsigned int num_data_pgs;
520 struct rndis_message *rndis_msg;
stephen hemminger0c195562017-08-01 19:58:53 -0700521 struct net_device *vf_netdev;
KY Srinivasan8a002512014-03-08 19:23:14 -0800522 u32 rndis_msg_size;
Haiyang Zhang307f0992014-05-21 12:55:39 -0700523 u32 hash;
stephen hemminger02b6de02017-07-28 08:59:44 -0700524 struct hv_page_buffer pb[MAX_PAGE_BUFFER_COUNT];
Hank Janssenfceaf242009-07-13 15:34:54 -0700525
stephen hemminger0c195562017-08-01 19:58:53 -0700526 /* if VF is present and up then redirect packets
527 * already called with rcu_read_lock_bh
528 */
529 vf_netdev = rcu_dereference_bh(net_device_ctx->vf_netdev);
530 if (vf_netdev && netif_running(vf_netdev) &&
531 !netpoll_tx_running(net))
532 return netvsc_vf_xmit(net, vf_netdev, skb);
533
stephen hemminger80d887d2017-07-24 21:03:19 -0700534 /* We will atmost need two pages to describe the rndis
535 * header. We can only transmit MAX_PAGE_BUFFER_COUNT number
Vitaly Kuznetsove88f7e02015-04-08 17:54:06 +0200536 * of pages in a single packet. If skb is scattered around
537 * more pages we try linearizing it.
KY Srinivasan54a73572014-03-08 19:23:13 -0800538 */
stephen hemminger80d887d2017-07-24 21:03:19 -0700539
540 num_data_pgs = netvsc_get_slots(skb) + 2;
541
Stephen Hemminger0ab05142016-08-23 12:17:52 -0700542 if (unlikely(num_data_pgs > MAX_PAGE_BUFFER_COUNT)) {
Stephen Hemminger4323b472016-08-23 12:17:57 -0700543 ++net_device_ctx->eth_stats.tx_scattered;
544
545 if (skb_linearize(skb))
546 goto no_memory;
Stephen Hemminger0ab05142016-08-23 12:17:52 -0700547
stephen hemminger80d887d2017-07-24 21:03:19 -0700548 num_data_pgs = netvsc_get_slots(skb) + 2;
Stephen Hemminger0ab05142016-08-23 12:17:52 -0700549 if (num_data_pgs > MAX_PAGE_BUFFER_COUNT) {
Stephen Hemminger4323b472016-08-23 12:17:57 -0700550 ++net_device_ctx->eth_stats.tx_too_big;
Stephen Hemminger0ab05142016-08-23 12:17:52 -0700551 goto drop;
552 }
KY Srinivasan54a73572014-03-08 19:23:13 -0800553 }
Hank Janssenfceaf242009-07-13 15:34:54 -0700554
KY Srinivasanc0eb4542015-12-01 16:43:10 -0800555 /*
556 * Place the rndis header in the skb head room and
557 * the skb->cb will be used for hv_netvsc_packet
558 * structure.
559 */
560 ret = skb_cow_head(skb, RNDIS_AND_PPI_SIZE);
Stephen Hemminger4323b472016-08-23 12:17:57 -0700561 if (ret)
562 goto no_memory;
563
KY Srinivasanc0eb4542015-12-01 16:43:10 -0800564 /* Use the skb control buffer for building up the packet */
565 BUILD_BUG_ON(sizeof(struct hv_netvsc_packet) >
566 FIELD_SIZEOF(struct sk_buff, cb));
567 packet = (struct hv_netvsc_packet *)skb->cb;
Hank Janssenfceaf242009-07-13 15:34:54 -0700568
Haiyang Zhang5b54dac2014-04-21 10:20:28 -0700569 packet->q_idx = skb_get_queue_mapping(skb);
570
Haiyang Zhang4d447c92011-12-15 13:45:17 -0800571 packet->total_data_buflen = skb->len;
stephen hemminger793e3952017-01-24 13:06:12 -0800572 packet->total_bytes = skb->len;
573 packet->total_packets = 1;
Hank Janssenfceaf242009-07-13 15:34:54 -0700574
KY Srinivasanc0eb4542015-12-01 16:43:10 -0800575 rndis_msg = (struct rndis_message *)skb->head;
KY Srinivasanb08cc792015-03-29 21:08:42 -0700576
KY Srinivasan8a002512014-03-08 19:23:14 -0800577 /* Add the rndis header */
KY Srinivasan8a002512014-03-08 19:23:14 -0800578 rndis_msg->ndis_msg_type = RNDIS_MSG_PACKET;
579 rndis_msg->msg_len = packet->total_data_buflen;
Stephen Hemmingerf5a22552017-12-01 11:01:48 -0800580
581 rndis_msg->msg.pkt = (struct rndis_packet) {
582 .data_offset = sizeof(struct rndis_packet),
583 .data_len = packet->total_data_buflen,
584 .per_pkt_info_offset = sizeof(struct rndis_packet),
585 };
KY Srinivasan8a002512014-03-08 19:23:14 -0800586
587 rndis_msg_size = RNDIS_MESSAGE_SIZE(struct rndis_packet);
588
Haiyang Zhang307f0992014-05-21 12:55:39 -0700589 hash = skb_get_hash_raw(skb);
590 if (hash != 0 && net->real_num_tx_queues > 1) {
Stephen Hemmingerf5a22552017-12-01 11:01:48 -0800591 u32 *hash_info;
592
Haiyang Zhang307f0992014-05-21 12:55:39 -0700593 rndis_msg_size += NDIS_HASH_PPI_SIZE;
Stephen Hemmingerf5a22552017-12-01 11:01:48 -0800594 hash_info = init_ppi_data(rndis_msg, NDIS_HASH_PPI_SIZE,
595 NBL_HASH_VALUE);
596 *hash_info = hash;
Haiyang Zhang307f0992014-05-21 12:55:39 -0700597 }
598
Stephen Hemminger0ab05142016-08-23 12:17:52 -0700599 if (skb_vlan_tag_present(skb)) {
KY Srinivasan8a002512014-03-08 19:23:14 -0800600 struct ndis_pkt_8021q_info *vlan;
601
602 rndis_msg_size += NDIS_VLAN_PPI_SIZE;
Stephen Hemmingerf5a22552017-12-01 11:01:48 -0800603 vlan = init_ppi_data(rndis_msg, NDIS_VLAN_PPI_SIZE,
604 IEEE_8021Q_INFO);
stephen hemminger00f50242017-08-09 17:46:09 -0700605
Stephen Hemmingerf5a22552017-12-01 11:01:48 -0800606 vlan->value = 0;
KY Srinivasan760d1e32015-12-01 16:43:19 -0800607 vlan->vlanid = skb->vlan_tci & VLAN_VID_MASK;
608 vlan->pri = (skb->vlan_tci & VLAN_PRIO_MASK) >>
KY Srinivasan8a002512014-03-08 19:23:14 -0800609 VLAN_PRIO_SHIFT;
610 }
611
stephen hemminger23312a32017-01-24 13:05:59 -0800612 if (skb_is_gso(skb)) {
Stephen Hemminger0ab05142016-08-23 12:17:52 -0700613 struct ndis_tcp_lso_info *lso_info;
614
615 rndis_msg_size += NDIS_LSO_PPI_SIZE;
Stephen Hemmingerf5a22552017-12-01 11:01:48 -0800616 lso_info = init_ppi_data(rndis_msg, NDIS_LSO_PPI_SIZE,
617 TCP_LARGESEND_PKTINFO);
Stephen Hemminger0ab05142016-08-23 12:17:52 -0700618
Stephen Hemmingerf5a22552017-12-01 11:01:48 -0800619 lso_info->value = 0;
Stephen Hemminger0ab05142016-08-23 12:17:52 -0700620 lso_info->lso_v2_transmit.type = NDIS_TCP_LARGE_SEND_OFFLOAD_V2_TYPE;
stephen hemminger23312a32017-01-24 13:05:59 -0800621 if (skb->protocol == htons(ETH_P_IP)) {
Stephen Hemminger0ab05142016-08-23 12:17:52 -0700622 lso_info->lso_v2_transmit.ip_version =
623 NDIS_TCP_LARGE_SEND_OFFLOAD_IPV4;
624 ip_hdr(skb)->tot_len = 0;
625 ip_hdr(skb)->check = 0;
626 tcp_hdr(skb)->check =
627 ~csum_tcpudp_magic(ip_hdr(skb)->saddr,
628 ip_hdr(skb)->daddr, 0, IPPROTO_TCP, 0);
629 } else {
630 lso_info->lso_v2_transmit.ip_version =
631 NDIS_TCP_LARGE_SEND_OFFLOAD_IPV6;
632 ipv6_hdr(skb)->payload_len = 0;
633 tcp_hdr(skb)->check =
634 ~csum_ipv6_magic(&ipv6_hdr(skb)->saddr,
635 &ipv6_hdr(skb)->daddr, 0, IPPROTO_TCP, 0);
636 }
stephen hemminger23312a32017-01-24 13:05:59 -0800637 lso_info->lso_v2_transmit.tcp_header_offset = skb_transport_offset(skb);
Stephen Hemminger0ab05142016-08-23 12:17:52 -0700638 lso_info->lso_v2_transmit.mss = skb_shinfo(skb)->gso_size;
stephen hemmingerad19bc82016-10-11 14:03:07 -0700639 } else if (skb->ip_summed == CHECKSUM_PARTIAL) {
stephen hemminger23312a32017-01-24 13:05:59 -0800640 if (net_checksum_info(skb) & net_device_ctx->tx_checksum_mask) {
641 struct ndis_tcp_ip_checksum_info *csum_info;
642
stephen hemmingerad19bc82016-10-11 14:03:07 -0700643 rndis_msg_size += NDIS_CSUM_PPI_SIZE;
Stephen Hemmingerf5a22552017-12-01 11:01:48 -0800644 csum_info = init_ppi_data(rndis_msg, NDIS_CSUM_PPI_SIZE,
645 TCPIP_CHKSUM_PKTINFO);
stephen hemmingerad19bc82016-10-11 14:03:07 -0700646
Stephen Hemmingerf5a22552017-12-01 11:01:48 -0800647 csum_info->value = 0;
stephen hemminger23312a32017-01-24 13:05:59 -0800648 csum_info->transmit.tcp_header_offset = skb_transport_offset(skb);
649
650 if (skb->protocol == htons(ETH_P_IP)) {
stephen hemmingerad19bc82016-10-11 14:03:07 -0700651 csum_info->transmit.is_ipv4 = 1;
stephen hemminger23312a32017-01-24 13:05:59 -0800652
653 if (ip_hdr(skb)->protocol == IPPROTO_TCP)
654 csum_info->transmit.tcp_checksum = 1;
655 else
656 csum_info->transmit.udp_checksum = 1;
657 } else {
stephen hemmingerad19bc82016-10-11 14:03:07 -0700658 csum_info->transmit.is_ipv6 = 1;
659
stephen hemminger23312a32017-01-24 13:05:59 -0800660 if (ipv6_hdr(skb)->nexthdr == IPPROTO_TCP)
661 csum_info->transmit.tcp_checksum = 1;
662 else
663 csum_info->transmit.udp_checksum = 1;
664 }
stephen hemmingerad19bc82016-10-11 14:03:07 -0700665 } else {
stephen hemminger23312a32017-01-24 13:05:59 -0800666 /* Can't do offload of this type of checksum */
stephen hemmingerad19bc82016-10-11 14:03:07 -0700667 if (skb_checksum_help(skb))
668 goto drop;
669 }
Stephen Hemminger0ab05142016-08-23 12:17:52 -0700670 }
KY Srinivasan08cd04b2014-03-08 19:23:17 -0800671
KY Srinivasan8a002512014-03-08 19:23:14 -0800672 /* Start filling in the page buffers with the rndis hdr */
673 rndis_msg->msg_len += rndis_msg_size;
Haiyang Zhang942396b2014-10-22 13:47:18 -0700674 packet->total_data_buflen = rndis_msg->msg_len;
KY Srinivasan8a002512014-03-08 19:23:14 -0800675 packet->page_buf_cnt = init_page_array(rndis_msg, rndis_msg_size,
stephen hemminger02b6de02017-07-28 08:59:44 -0700676 skb, packet, pb);
KY Srinivasan8a002512014-03-08 19:23:14 -0800677
sixiao@microsoft.com76d13b52016-02-17 16:43:59 -0800678 /* timestamp packet in software */
679 skb_tx_timestamp(skb);
stephen hemminger2a926f72017-07-19 11:53:17 -0700680
Stephen Hemmingercfd8afd2017-12-12 16:48:40 -0800681 ret = netvsc_send(net, packet, rndis_msg, pb, skb);
stephen hemminger793e3952017-01-24 13:06:12 -0800682 if (likely(ret == 0))
Stephen Hemminger0ab05142016-08-23 12:17:52 -0700683 return NETDEV_TX_OK;
Stephen Hemminger4323b472016-08-23 12:17:57 -0700684
685 if (ret == -EAGAIN) {
686 ++net_device_ctx->eth_stats.tx_busy;
Stephen Hemminger0ab05142016-08-23 12:17:52 -0700687 return NETDEV_TX_BUSY;
Stephen Hemminger4323b472016-08-23 12:17:57 -0700688 }
689
690 if (ret == -ENOSPC)
691 ++net_device_ctx->eth_stats.tx_no_space;
Hank Janssenfceaf242009-07-13 15:34:54 -0700692
Stephen Hemminger0ab05142016-08-23 12:17:52 -0700693drop:
694 dev_kfree_skb_any(skb);
695 net->stats.tx_dropped++;
696
697 return NETDEV_TX_OK;
Stephen Hemminger4323b472016-08-23 12:17:57 -0700698
699no_memory:
700 ++net_device_ctx->eth_stats.tx_no_memory;
701 goto drop;
Hank Janssenfceaf242009-07-13 15:34:54 -0700702}
stephen hemminger89bb42b2017-08-09 17:46:08 -0700703
Hank Janssen3e189512010-03-04 22:11:00 +0000704/*
Greg Kroah-Hartman02fafbc2009-08-31 21:09:45 -0700705 * netvsc_linkstatus_callback - Link up/down notification
706 */
Stephen Hemminger79cf1ba2017-12-12 16:48:37 -0800707void netvsc_linkstatus_callback(struct net_device *net,
Haiyang Zhang3a494e72014-06-19 18:34:36 -0700708 struct rndis_message *resp)
Hank Janssenfceaf242009-07-13 15:34:54 -0700709{
Haiyang Zhang3a494e72014-06-19 18:34:36 -0700710 struct rndis_indicate_status *indicate = &resp->msg.indicate_status;
Stephen Hemminger79cf1ba2017-12-12 16:48:37 -0800711 struct net_device_context *ndev_ctx = netdev_priv(net);
Vitaly Kuznetsov27a70af2015-11-27 11:39:55 +0100712 struct netvsc_reconfig *event;
713 unsigned long flags;
714
Haiyang Zhang7f5d5af2016-08-04 10:42:15 -0700715 /* Update the physical link speed when changing to another vSwitch */
716 if (indicate->status == RNDIS_STATUS_LINK_SPEED_CHANGE) {
717 u32 speed;
718
stephen hemminger89bb42b2017-08-09 17:46:08 -0700719 speed = *(u32 *)((void *)indicate
720 + indicate->status_buf_offset) / 10000;
Haiyang Zhang7f5d5af2016-08-04 10:42:15 -0700721 ndev_ctx->speed = speed;
722 return;
723 }
724
725 /* Handle these link change statuses below */
Vitaly Kuznetsov27a70af2015-11-27 11:39:55 +0100726 if (indicate->status != RNDIS_STATUS_NETWORK_CHANGE &&
727 indicate->status != RNDIS_STATUS_MEDIA_CONNECT &&
728 indicate->status != RNDIS_STATUS_MEDIA_DISCONNECT)
729 return;
K. Y. Srinivasan2ddd5e52011-09-13 10:59:49 -0700730
Haiyang Zhang7f5d5af2016-08-04 10:42:15 -0700731 if (net->reg_state != NETREG_REGISTERED)
Hank Janssenfceaf242009-07-13 15:34:54 -0700732 return;
Hank Janssenfceaf242009-07-13 15:34:54 -0700733
Vitaly Kuznetsov27a70af2015-11-27 11:39:55 +0100734 event = kzalloc(sizeof(*event), GFP_ATOMIC);
735 if (!event)
736 return;
737 event->event = indicate->status;
738
739 spin_lock_irqsave(&ndev_ctx->lock, flags);
740 list_add_tail(&event->list, &ndev_ctx->reconfig_events);
741 spin_unlock_irqrestore(&ndev_ctx->lock, flags);
742
743 schedule_delayed_work(&ndev_ctx->dwork, 0);
Hank Janssenfceaf242009-07-13 15:34:54 -0700744}
745
Haiyang Zhangd61918a2019-02-22 18:25:03 +0000746static void netvsc_comp_ipcsum(struct sk_buff *skb)
747{
748 struct iphdr *iph = (struct iphdr *)skb->data;
749
750 iph->check = 0;
751 iph->check = ip_fast_csum(iph, iph->ihl);
752}
753
KY Srinivasan84bf9ce2016-04-14 16:31:54 -0700754static struct sk_buff *netvsc_alloc_recv_skb(struct net_device *net,
stephen hemmingere91e7dd2017-02-27 10:26:51 -0800755 struct napi_struct *napi,
stephen hemmingerdc54a082017-01-24 13:06:08 -0800756 const struct ndis_tcp_ip_checksum_info *csum_info,
757 const struct ndis_pkt_8021q_info *vlan,
758 void *data, u32 buflen)
Hank Janssenfceaf242009-07-13 15:34:54 -0700759{
Hank Janssenfceaf242009-07-13 15:34:54 -0700760 struct sk_buff *skb;
K. Y. Srinivasan2ddd5e52011-09-13 10:59:49 -0700761
stephen hemmingere91e7dd2017-02-27 10:26:51 -0800762 skb = napi_alloc_skb(napi, buflen);
KY Srinivasan84bf9ce2016-04-14 16:31:54 -0700763 if (!skb)
764 return skb;
Hank Janssenfceaf242009-07-13 15:34:54 -0700765
Greg Kroah-Hartman02fafbc2009-08-31 21:09:45 -0700766 /*
767 * Copy to skb. This copy is needed here since the memory pointed by
768 * hv_netvsc_packet cannot be deallocated
769 */
Johannes Berg59ae1d12017-06-16 14:29:20 +0200770 skb_put_data(skb, data, buflen);
Hank Janssenfceaf242009-07-13 15:34:54 -0700771
772 skb->protocol = eth_type_trans(skb, net);
Stephen Hemmingere52fed72016-10-23 21:32:47 -0700773
774 /* skb is already created with CHECKSUM_NONE */
775 skb_checksum_none_assert(skb);
776
Haiyang Zhangd61918a2019-02-22 18:25:03 +0000777 /* Incoming packets may have IP header checksum verified by the host.
778 * They may not have IP header checksum computed after coalescing.
779 * We compute it here if the flags are set, because on Linux, the IP
780 * checksum is always checked.
781 */
782 if (csum_info && csum_info->receive.ip_checksum_value_invalid &&
783 csum_info->receive.ip_checksum_succeeded &&
784 skb->protocol == htons(ETH_P_IP))
785 netvsc_comp_ipcsum(skb);
786
787 /* Do L4 checksum offload if enabled and present.
Stephen Hemmingere52fed72016-10-23 21:32:47 -0700788 */
789 if (csum_info && (net->features & NETIF_F_RXCSUM)) {
790 if (csum_info->receive.tcp_checksum_succeeded ||
791 csum_info->receive.udp_checksum_succeeded)
KY Srinivasane3d605e2014-03-08 19:23:16 -0800792 skb->ip_summed = CHECKSUM_UNNECESSARY;
KY Srinivasane3d605e2014-03-08 19:23:16 -0800793 }
794
stephen hemmingerdc54a082017-01-24 13:06:08 -0800795 if (vlan) {
796 u16 vlan_tci = vlan->vlanid | (vlan->pri << VLAN_PRIO_SHIFT);
797
Haiyang Zhang93725cb2013-06-17 15:36:49 -0700798 __vlan_hwaccel_put_tag(skb, htons(ETH_P_8021Q),
KY Srinivasan760d1e32015-12-01 16:43:19 -0800799 vlan_tci);
stephen hemmingerdc54a082017-01-24 13:06:08 -0800800 }
Hank Janssenfceaf242009-07-13 15:34:54 -0700801
KY Srinivasan84bf9ce2016-04-14 16:31:54 -0700802 return skb;
803}
804
805/*
806 * netvsc_recv_callback - Callback when we receive a packet from the
807 * "wire" on the specified device.
808 */
stephen hemmingerdc54a082017-01-24 13:06:08 -0800809int netvsc_recv_callback(struct net_device *net,
Stephen Hemminger345ac082017-12-12 16:48:38 -0800810 struct netvsc_device *net_device,
stephen hemmingerdc54a082017-01-24 13:06:08 -0800811 struct vmbus_channel *channel,
812 void *data, u32 len,
813 const struct ndis_tcp_ip_checksum_info *csum_info,
814 const struct ndis_pkt_8021q_info *vlan)
KY Srinivasan84bf9ce2016-04-14 16:31:54 -0700815{
Vitaly Kuznetsov3d541ac2016-05-13 13:55:22 +0200816 struct net_device_context *net_device_ctx = netdev_priv(net);
stephen hemminger742fe542017-02-27 10:26:50 -0800817 u16 q_idx = channel->offermsg.offer.sub_channel_index;
Stephen Hemminger345ac082017-12-12 16:48:38 -0800818 struct netvsc_channel *nvchan = &net_device->chan_table[q_idx];
KY Srinivasan84bf9ce2016-04-14 16:31:54 -0700819 struct sk_buff *skb;
KY Srinivasan84bf9ce2016-04-14 16:31:54 -0700820 struct netvsc_stats *rx_stats;
KY Srinivasan84bf9ce2016-04-14 16:31:54 -0700821
Stephen Hemminger9cbcc422016-09-22 16:56:34 -0700822 if (net->reg_state != NETREG_REGISTERED)
KY Srinivasan84bf9ce2016-04-14 16:31:54 -0700823 return NVSP_STAT_FAIL;
824
KY Srinivasan84bf9ce2016-04-14 16:31:54 -0700825 /* Allocate a skb - TODO direct I/O to pages? */
stephen hemmingere91e7dd2017-02-27 10:26:51 -0800826 skb = netvsc_alloc_recv_skb(net, &nvchan->napi,
827 csum_info, vlan, data, len);
KY Srinivasan84bf9ce2016-04-14 16:31:54 -0700828 if (unlikely(!skb)) {
Stephen Hemmingerf61a9d62017-12-12 16:48:36 -0800829 ++net_device_ctx->eth_stats.rx_no_memory;
stephen hemminger0719e722017-01-11 09:16:32 -0800830 rcu_read_unlock();
KY Srinivasan84bf9ce2016-04-14 16:31:54 -0700831 return NVSP_STAT_FAIL;
832 }
Haiyang Zhang5b54dac2014-04-21 10:20:28 -0700833
stephen hemminger0c195562017-08-01 19:58:53 -0700834 skb_record_rx_queue(skb, q_idx);
Stephen Hemminger9cbcc422016-09-22 16:56:34 -0700835
836 /*
837 * Even if injecting the packet, record the statistics
838 * on the synthetic device because modifying the VF device
839 * statistics will not work correctly.
840 */
stephen hemminger742fe542017-02-27 10:26:50 -0800841 rx_stats = &nvchan->rx_stats;
sixiao@microsoft.com4b02b582015-05-15 02:33:03 -0700842 u64_stats_update_begin(&rx_stats->syncp);
sixiao@microsoft.com7eafd9b2015-05-14 01:00:25 -0700843 rx_stats->packets++;
stephen hemmingerdc54a082017-01-24 13:06:08 -0800844 rx_stats->bytes += len;
Stephen Hemmingerf7ad75b2016-09-22 16:56:35 -0700845
846 if (skb->pkt_type == PACKET_BROADCAST)
847 ++rx_stats->broadcast;
848 else if (skb->pkt_type == PACKET_MULTICAST)
849 ++rx_stats->multicast;
sixiao@microsoft.com4b02b582015-05-15 02:33:03 -0700850 u64_stats_update_end(&rx_stats->syncp);
Stephen Hemminger9495c282010-03-09 17:42:17 -0800851
stephen hemminger742fe542017-02-27 10:26:50 -0800852 napi_gro_receive(&nvchan->napi, skb);
Haiyang Zhang5c71dad2018-03-22 12:01:13 -0700853 return NVSP_STAT_SUCCESS;
Hank Janssenfceaf242009-07-13 15:34:54 -0700854}
855
Stephen Hemmingerf82f4ad2010-05-04 09:58:57 -0700856static void netvsc_get_drvinfo(struct net_device *net,
857 struct ethtool_drvinfo *info)
858{
Jiri Pirko7826d432013-01-06 00:44:26 +0000859 strlcpy(info->driver, KBUILD_MODNAME, sizeof(info->driver));
Jiri Pirko7826d432013-01-06 00:44:26 +0000860 strlcpy(info->fw_version, "N/A", sizeof(info->fw_version));
Stephen Hemmingerf82f4ad2010-05-04 09:58:57 -0700861}
862
Andrew Schwartzmeyer59995372015-02-26 16:27:14 -0800863static void netvsc_get_channels(struct net_device *net,
864 struct ethtool_channels *channel)
865{
866 struct net_device_context *net_device_ctx = netdev_priv(net);
stephen hemminger545a8e72017-03-22 14:51:00 -0700867 struct netvsc_device *nvdev = rtnl_dereference(net_device_ctx->nvdev);
Andrew Schwartzmeyer59995372015-02-26 16:27:14 -0800868
869 if (nvdev) {
870 channel->max_combined = nvdev->max_chn;
871 channel->combined_count = nvdev->num_chn;
872 }
873}
874
Haiyang Zhangd2ce8e12019-01-15 00:51:43 +0000875/* Alloc struct netvsc_device_info, and initialize it from either existing
876 * struct netvsc_device, or from default values.
877 */
878static struct netvsc_device_info *netvsc_devinfo_get
879 (struct netvsc_device *nvdev)
880{
881 struct netvsc_device_info *dev_info;
882
883 dev_info = kzalloc(sizeof(*dev_info), GFP_ATOMIC);
884
885 if (!dev_info)
886 return NULL;
887
888 if (nvdev) {
889 dev_info->num_chn = nvdev->num_chn;
890 dev_info->send_sections = nvdev->send_section_cnt;
891 dev_info->send_section_size = nvdev->send_section_size;
892 dev_info->recv_sections = nvdev->recv_section_cnt;
893 dev_info->recv_section_size = nvdev->recv_section_size;
Haiyang Zhangbbbb9872019-01-15 00:51:44 +0000894
895 memcpy(dev_info->rss_key, nvdev->extension->rss_key,
896 NETVSC_HASH_KEYLEN);
Haiyang Zhangd2ce8e12019-01-15 00:51:43 +0000897 } else {
898 dev_info->num_chn = VRSS_CHANNEL_DEFAULT;
899 dev_info->send_sections = NETVSC_DEFAULT_TX;
900 dev_info->send_section_size = NETVSC_SEND_SECTION_SIZE;
901 dev_info->recv_sections = NETVSC_DEFAULT_RX;
902 dev_info->recv_section_size = NETVSC_RECV_SECTION_SIZE;
903 }
904
905 return dev_info;
906}
907
Stephen Hemminger7b2ee502018-03-20 15:03:05 -0700908static int netvsc_detach(struct net_device *ndev,
909 struct netvsc_device *nvdev)
910{
911 struct net_device_context *ndev_ctx = netdev_priv(ndev);
912 struct hv_device *hdev = ndev_ctx->device_ctx;
913 int ret;
914
915 /* Don't try continuing to try and setup sub channels */
916 if (cancel_work_sync(&nvdev->subchan_work))
917 nvdev->num_chn = 1;
918
919 /* If device was up (receiving) then shutdown */
920 if (netif_running(ndev)) {
921 netif_tx_disable(ndev);
922
923 ret = rndis_filter_close(nvdev);
924 if (ret) {
925 netdev_err(ndev,
926 "unable to close device (ret %d).\n", ret);
927 return ret;
928 }
929
930 ret = netvsc_wait_until_empty(nvdev);
931 if (ret) {
932 netdev_err(ndev,
933 "Ring buffer not empty after closing rndis\n");
934 return ret;
935 }
936 }
937
938 netif_device_detach(ndev);
939
940 rndis_filter_device_remove(hdev, nvdev);
941
942 return 0;
943}
944
945static int netvsc_attach(struct net_device *ndev,
946 struct netvsc_device_info *dev_info)
947{
948 struct net_device_context *ndev_ctx = netdev_priv(ndev);
949 struct hv_device *hdev = ndev_ctx->device_ctx;
950 struct netvsc_device *nvdev;
951 struct rndis_device *rdev;
952 int ret;
953
954 nvdev = rndis_filter_device_add(hdev, dev_info);
955 if (IS_ERR(nvdev))
956 return PTR_ERR(nvdev);
957
Stephen Hemminger3ffe64f2018-06-29 14:07:16 -0700958 if (nvdev->num_chn > 1) {
Haiyang Zhangbbbb9872019-01-15 00:51:44 +0000959 ret = rndis_set_subchannel(ndev, nvdev, dev_info);
Stephen Hemminger7b2ee502018-03-20 15:03:05 -0700960
Stephen Hemminger3ffe64f2018-06-29 14:07:16 -0700961 /* if unavailable, just proceed with one queue */
962 if (ret) {
963 nvdev->max_chn = 1;
964 nvdev->num_chn = 1;
965 }
966 }
967
968 /* In any case device is now ready */
969 netif_device_attach(ndev);
970
971 /* Note: enable and attach happen when sub-channels setup */
Stephen Hemminger7b2ee502018-03-20 15:03:05 -0700972 netif_carrier_off(ndev);
973
974 if (netif_running(ndev)) {
975 ret = rndis_filter_open(nvdev);
976 if (ret)
977 return ret;
978
979 rdev = nvdev->extension;
980 if (!rdev->link_state)
981 netif_carrier_on(ndev);
982 }
983
984 return 0;
985}
986
Andrew Schwartzmeyerb5960e62015-08-11 17:14:32 -0700987static int netvsc_set_channels(struct net_device *net,
988 struct ethtool_channels *channels)
989{
990 struct net_device_context *net_device_ctx = netdev_priv(net);
stephen hemminger545a8e72017-03-22 14:51:00 -0700991 struct netvsc_device *nvdev = rtnl_dereference(net_device_ctx->nvdev);
stephen hemminger7ca45932017-07-24 10:57:28 -0700992 unsigned int orig, count = channels->combined_count;
Haiyang Zhangd2ce8e12019-01-15 00:51:43 +0000993 struct netvsc_device_info *device_info;
Stephen Hemminger7b2ee502018-03-20 15:03:05 -0700994 int ret;
stephen hemminger2b018882017-01-24 13:06:03 -0800995
996 /* We do not support separate count for rx, tx, or other */
997 if (count == 0 ||
998 channels->rx_count || channels->tx_count || channels->other_count)
999 return -EINVAL;
1000
stephen hemmingera0be4502017-03-22 14:51:01 -07001001 if (!nvdev || nvdev->destroy)
Andrew Schwartzmeyerb5960e62015-08-11 17:14:32 -07001002 return -ENODEV;
1003
stephen hemminger2b018882017-01-24 13:06:03 -08001004 if (nvdev->nvsp_version < NVSP_PROTOCOL_VERSION_5)
Andrew Schwartzmeyerb5960e62015-08-11 17:14:32 -07001005 return -EINVAL;
1006
stephen hemminger2b018882017-01-24 13:06:03 -08001007 if (count > nvdev->max_chn)
1008 return -EINVAL;
Andrew Schwartzmeyerb5960e62015-08-11 17:14:32 -07001009
stephen hemminger7ca45932017-07-24 10:57:28 -07001010 orig = nvdev->num_chn;
Andrew Schwartzmeyerb5960e62015-08-11 17:14:32 -07001011
Haiyang Zhangd2ce8e12019-01-15 00:51:43 +00001012 device_info = netvsc_devinfo_get(nvdev);
1013
1014 if (!device_info)
1015 return -ENOMEM;
1016
1017 device_info->num_chn = count;
stephen hemminger8b532792017-08-09 17:46:11 -07001018
Stephen Hemminger7b2ee502018-03-20 15:03:05 -07001019 ret = netvsc_detach(net, nvdev);
1020 if (ret)
Haiyang Zhangd2ce8e12019-01-15 00:51:43 +00001021 goto out;
Andrew Schwartzmeyerb5960e62015-08-11 17:14:32 -07001022
Haiyang Zhangd2ce8e12019-01-15 00:51:43 +00001023 ret = netvsc_attach(net, device_info);
Stephen Hemminger7b2ee502018-03-20 15:03:05 -07001024 if (ret) {
Haiyang Zhangd2ce8e12019-01-15 00:51:43 +00001025 device_info->num_chn = orig;
1026 if (netvsc_attach(net, device_info))
Stephen Hemminger7b2ee502018-03-20 15:03:05 -07001027 netdev_err(net, "restoring channel setting failed\n");
stephen hemminger7ca45932017-07-24 10:57:28 -07001028 }
1029
Haiyang Zhangd2ce8e12019-01-15 00:51:43 +00001030out:
1031 kfree(device_info);
Andrew Schwartzmeyerb5960e62015-08-11 17:14:32 -07001032 return ret;
Andrew Schwartzmeyerb5960e62015-08-11 17:14:32 -07001033}
1034
Philippe Reynes5e8456f2017-03-08 23:41:04 +01001035static bool
1036netvsc_validate_ethtool_ss_cmd(const struct ethtool_link_ksettings *cmd)
sixiao@microsoft.com49eb9382016-02-25 15:24:08 -08001037{
Philippe Reynes5e8456f2017-03-08 23:41:04 +01001038 struct ethtool_link_ksettings diff1 = *cmd;
1039 struct ethtool_link_ksettings diff2 = {};
sixiao@microsoft.com49eb9382016-02-25 15:24:08 -08001040
Philippe Reynes5e8456f2017-03-08 23:41:04 +01001041 diff1.base.speed = 0;
1042 diff1.base.duplex = 0;
sixiao@microsoft.com49eb9382016-02-25 15:24:08 -08001043 /* advertising and cmd are usually set */
Philippe Reynes5e8456f2017-03-08 23:41:04 +01001044 ethtool_link_ksettings_zero_link_mode(&diff1, advertising);
1045 diff1.base.cmd = 0;
sixiao@microsoft.com49eb9382016-02-25 15:24:08 -08001046 /* We set port to PORT_OTHER */
Philippe Reynes5e8456f2017-03-08 23:41:04 +01001047 diff2.base.port = PORT_OTHER;
sixiao@microsoft.com49eb9382016-02-25 15:24:08 -08001048
1049 return !memcmp(&diff1, &diff2, sizeof(diff1));
1050}
1051
1052static void netvsc_init_settings(struct net_device *dev)
1053{
1054 struct net_device_context *ndc = netdev_priv(dev);
1055
Haiyang Zhang486e3982017-10-06 08:33:57 -07001056 ndc->l4_hash = HV_DEFAULT_L4HASH;
Haiyang Zhang4823eb22017-08-21 19:22:39 -07001057
sixiao@microsoft.com49eb9382016-02-25 15:24:08 -08001058 ndc->speed = SPEED_UNKNOWN;
Simon Xiaof3c9d40e2017-04-14 14:42:58 -07001059 ndc->duplex = DUPLEX_FULL;
sixiao@microsoft.com49eb9382016-02-25 15:24:08 -08001060}
1061
Philippe Reynes5e8456f2017-03-08 23:41:04 +01001062static int netvsc_get_link_ksettings(struct net_device *dev,
1063 struct ethtool_link_ksettings *cmd)
sixiao@microsoft.com49eb9382016-02-25 15:24:08 -08001064{
1065 struct net_device_context *ndc = netdev_priv(dev);
1066
Philippe Reynes5e8456f2017-03-08 23:41:04 +01001067 cmd->base.speed = ndc->speed;
1068 cmd->base.duplex = ndc->duplex;
1069 cmd->base.port = PORT_OTHER;
sixiao@microsoft.com49eb9382016-02-25 15:24:08 -08001070
1071 return 0;
1072}
1073
Philippe Reynes5e8456f2017-03-08 23:41:04 +01001074static int netvsc_set_link_ksettings(struct net_device *dev,
1075 const struct ethtool_link_ksettings *cmd)
sixiao@microsoft.com49eb9382016-02-25 15:24:08 -08001076{
1077 struct net_device_context *ndc = netdev_priv(dev);
1078 u32 speed;
1079
Philippe Reynes5e8456f2017-03-08 23:41:04 +01001080 speed = cmd->base.speed;
sixiao@microsoft.com49eb9382016-02-25 15:24:08 -08001081 if (!ethtool_validate_speed(speed) ||
Philippe Reynes5e8456f2017-03-08 23:41:04 +01001082 !ethtool_validate_duplex(cmd->base.duplex) ||
sixiao@microsoft.com49eb9382016-02-25 15:24:08 -08001083 !netvsc_validate_ethtool_ss_cmd(cmd))
1084 return -EINVAL;
1085
1086 ndc->speed = speed;
Philippe Reynes5e8456f2017-03-08 23:41:04 +01001087 ndc->duplex = cmd->base.duplex;
sixiao@microsoft.com49eb9382016-02-25 15:24:08 -08001088
1089 return 0;
1090}
1091
Haiyang Zhang4d447c92011-12-15 13:45:17 -08001092static int netvsc_change_mtu(struct net_device *ndev, int mtu)
1093{
1094 struct net_device_context *ndevctx = netdev_priv(ndev);
stephen hemminger0c195562017-08-01 19:58:53 -07001095 struct net_device *vf_netdev = rtnl_dereference(ndevctx->vf_netdev);
stephen hemminger545a8e72017-03-22 14:51:00 -07001096 struct netvsc_device *nvdev = rtnl_dereference(ndevctx->nvdev);
stephen hemminger9749fed2017-07-19 11:53:16 -07001097 int orig_mtu = ndev->mtu;
Haiyang Zhangd2ce8e12019-01-15 00:51:43 +00001098 struct netvsc_device_info *device_info;
stephen hemminger9749fed2017-07-19 11:53:16 -07001099 int ret = 0;
Haiyang Zhang4d447c92011-12-15 13:45:17 -08001100
stephen hemmingera0be4502017-03-22 14:51:01 -07001101 if (!nvdev || nvdev->destroy)
Haiyang Zhang4d447c92011-12-15 13:45:17 -08001102 return -ENODEV;
1103
Haiyang Zhangd2ce8e12019-01-15 00:51:43 +00001104 device_info = netvsc_devinfo_get(nvdev);
1105
1106 if (!device_info)
1107 return -ENOMEM;
1108
stephen hemminger0c195562017-08-01 19:58:53 -07001109 /* Change MTU of underlying VF netdev first. */
1110 if (vf_netdev) {
1111 ret = dev_set_mtu(vf_netdev, mtu);
1112 if (ret)
Haiyang Zhangd2ce8e12019-01-15 00:51:43 +00001113 goto out;
stephen hemminger0c195562017-08-01 19:58:53 -07001114 }
1115
Stephen Hemminger7b2ee502018-03-20 15:03:05 -07001116 ret = netvsc_detach(ndev, nvdev);
1117 if (ret)
1118 goto rollback_vf;
Dexuan Cui152669b2017-03-02 13:00:53 +00001119
Dexuan Cui152669b2017-03-02 13:00:53 +00001120 ndev->mtu = mtu;
1121
Haiyang Zhangd2ce8e12019-01-15 00:51:43 +00001122 ret = netvsc_attach(ndev, device_info);
1123 if (!ret)
1124 goto out;
stephen hemminger9749fed2017-07-19 11:53:16 -07001125
Stephen Hemminger7b2ee502018-03-20 15:03:05 -07001126 /* Attempt rollback to original MTU */
1127 ndev->mtu = orig_mtu;
stephen hemminger68d715f2017-08-09 17:46:06 -07001128
Haiyang Zhangd2ce8e12019-01-15 00:51:43 +00001129 if (netvsc_attach(ndev, device_info))
Stephen Hemminger7b2ee502018-03-20 15:03:05 -07001130 netdev_err(ndev, "restoring mtu failed\n");
1131rollback_vf:
1132 if (vf_netdev)
1133 dev_set_mtu(vf_netdev, orig_mtu);
Vitaly Kuznetsov1bdcec82016-05-13 13:55:21 +02001134
Haiyang Zhangd2ce8e12019-01-15 00:51:43 +00001135out:
1136 kfree(device_info);
stephen hemminger9749fed2017-07-19 11:53:16 -07001137 return ret;
Haiyang Zhang4d447c92011-12-15 13:45:17 -08001138}
1139
stephen hemminger0c195562017-08-01 19:58:53 -07001140static void netvsc_get_vf_stats(struct net_device *net,
1141 struct netvsc_vf_pcpu_stats *tot)
1142{
1143 struct net_device_context *ndev_ctx = netdev_priv(net);
1144 int i;
1145
1146 memset(tot, 0, sizeof(*tot));
1147
1148 for_each_possible_cpu(i) {
1149 const struct netvsc_vf_pcpu_stats *stats
1150 = per_cpu_ptr(ndev_ctx->vf_stats, i);
1151 u64 rx_packets, rx_bytes, tx_packets, tx_bytes;
1152 unsigned int start;
1153
1154 do {
1155 start = u64_stats_fetch_begin_irq(&stats->syncp);
1156 rx_packets = stats->rx_packets;
1157 tx_packets = stats->tx_packets;
1158 rx_bytes = stats->rx_bytes;
1159 tx_bytes = stats->tx_bytes;
1160 } while (u64_stats_fetch_retry_irq(&stats->syncp, start));
1161
1162 tot->rx_packets += rx_packets;
1163 tot->tx_packets += tx_packets;
1164 tot->rx_bytes += rx_bytes;
1165 tot->tx_bytes += tx_bytes;
1166 tot->tx_dropped += stats->tx_dropped;
1167 }
1168}
1169
Yidong Ren6ae74672018-07-30 17:09:45 +00001170static void netvsc_get_pcpu_stats(struct net_device *net,
1171 struct netvsc_ethtool_pcpu_stats *pcpu_tot)
1172{
1173 struct net_device_context *ndev_ctx = netdev_priv(net);
1174 struct netvsc_device *nvdev = rcu_dereference_rtnl(ndev_ctx->nvdev);
1175 int i;
1176
1177 /* fetch percpu stats of vf */
1178 for_each_possible_cpu(i) {
1179 const struct netvsc_vf_pcpu_stats *stats =
1180 per_cpu_ptr(ndev_ctx->vf_stats, i);
1181 struct netvsc_ethtool_pcpu_stats *this_tot = &pcpu_tot[i];
1182 unsigned int start;
1183
1184 do {
1185 start = u64_stats_fetch_begin_irq(&stats->syncp);
1186 this_tot->vf_rx_packets = stats->rx_packets;
1187 this_tot->vf_tx_packets = stats->tx_packets;
1188 this_tot->vf_rx_bytes = stats->rx_bytes;
1189 this_tot->vf_tx_bytes = stats->tx_bytes;
1190 } while (u64_stats_fetch_retry_irq(&stats->syncp, start));
1191 this_tot->rx_packets = this_tot->vf_rx_packets;
1192 this_tot->tx_packets = this_tot->vf_tx_packets;
1193 this_tot->rx_bytes = this_tot->vf_rx_bytes;
1194 this_tot->tx_bytes = this_tot->vf_tx_bytes;
1195 }
1196
1197 /* fetch percpu stats of netvsc */
1198 for (i = 0; i < nvdev->num_chn; i++) {
1199 const struct netvsc_channel *nvchan = &nvdev->chan_table[i];
1200 const struct netvsc_stats *stats;
1201 struct netvsc_ethtool_pcpu_stats *this_tot =
1202 &pcpu_tot[nvchan->channel->target_cpu];
1203 u64 packets, bytes;
1204 unsigned int start;
1205
1206 stats = &nvchan->tx_stats;
1207 do {
1208 start = u64_stats_fetch_begin_irq(&stats->syncp);
1209 packets = stats->packets;
1210 bytes = stats->bytes;
1211 } while (u64_stats_fetch_retry_irq(&stats->syncp, start));
1212
1213 this_tot->tx_bytes += bytes;
1214 this_tot->tx_packets += packets;
1215
1216 stats = &nvchan->rx_stats;
1217 do {
1218 start = u64_stats_fetch_begin_irq(&stats->syncp);
1219 packets = stats->packets;
1220 bytes = stats->bytes;
1221 } while (u64_stats_fetch_retry_irq(&stats->syncp, start));
1222
1223 this_tot->rx_bytes += bytes;
1224 this_tot->rx_packets += packets;
1225 }
1226}
1227
stephen hemmingerbc1f4472017-01-06 19:12:52 -08001228static void netvsc_get_stats64(struct net_device *net,
1229 struct rtnl_link_stats64 *t)
sixiao@microsoft.com7eafd9b2015-05-14 01:00:25 -07001230{
1231 struct net_device_context *ndev_ctx = netdev_priv(net);
stephen hemminger776e7262017-04-14 14:42:57 -07001232 struct netvsc_device *nvdev = rcu_dereference_rtnl(ndev_ctx->nvdev);
stephen hemminger0c195562017-08-01 19:58:53 -07001233 struct netvsc_vf_pcpu_stats vf_tot;
stephen hemminger89bb42b2017-08-09 17:46:08 -07001234 int i;
sixiao@microsoft.com7eafd9b2015-05-14 01:00:25 -07001235
Simon Xiao6c80f3f2017-01-24 13:06:13 -08001236 if (!nvdev)
1237 return;
1238
stephen hemminger0c195562017-08-01 19:58:53 -07001239 netdev_stats_to_stats64(t, &net->stats);
1240
1241 netvsc_get_vf_stats(net, &vf_tot);
1242 t->rx_packets += vf_tot.rx_packets;
1243 t->tx_packets += vf_tot.tx_packets;
1244 t->rx_bytes += vf_tot.rx_bytes;
1245 t->tx_bytes += vf_tot.tx_bytes;
1246 t->tx_dropped += vf_tot.tx_dropped;
1247
Simon Xiao6c80f3f2017-01-24 13:06:13 -08001248 for (i = 0; i < nvdev->num_chn; i++) {
1249 const struct netvsc_channel *nvchan = &nvdev->chan_table[i];
1250 const struct netvsc_stats *stats;
1251 u64 packets, bytes, multicast;
sixiao@microsoft.com7eafd9b2015-05-14 01:00:25 -07001252 unsigned int start;
1253
Simon Xiao6c80f3f2017-01-24 13:06:13 -08001254 stats = &nvchan->tx_stats;
sixiao@microsoft.com7eafd9b2015-05-14 01:00:25 -07001255 do {
Simon Xiao6c80f3f2017-01-24 13:06:13 -08001256 start = u64_stats_fetch_begin_irq(&stats->syncp);
1257 packets = stats->packets;
1258 bytes = stats->bytes;
1259 } while (u64_stats_fetch_retry_irq(&stats->syncp, start));
sixiao@microsoft.com7eafd9b2015-05-14 01:00:25 -07001260
Simon Xiao6c80f3f2017-01-24 13:06:13 -08001261 t->tx_bytes += bytes;
1262 t->tx_packets += packets;
1263
1264 stats = &nvchan->rx_stats;
sixiao@microsoft.com7eafd9b2015-05-14 01:00:25 -07001265 do {
Simon Xiao6c80f3f2017-01-24 13:06:13 -08001266 start = u64_stats_fetch_begin_irq(&stats->syncp);
1267 packets = stats->packets;
1268 bytes = stats->bytes;
1269 multicast = stats->multicast + stats->broadcast;
1270 } while (u64_stats_fetch_retry_irq(&stats->syncp, start));
sixiao@microsoft.com7eafd9b2015-05-14 01:00:25 -07001271
Simon Xiao6c80f3f2017-01-24 13:06:13 -08001272 t->rx_bytes += bytes;
1273 t->rx_packets += packets;
1274 t->multicast += multicast;
sixiao@microsoft.com7eafd9b2015-05-14 01:00:25 -07001275 }
sixiao@microsoft.com7eafd9b2015-05-14 01:00:25 -07001276}
Haiyang Zhang1ce09e82012-07-10 07:19:22 +00001277
1278static int netvsc_set_mac_addr(struct net_device *ndev, void *p)
1279{
stephen hemminger867047c2017-07-28 08:59:42 -07001280 struct net_device_context *ndc = netdev_priv(ndev);
stephen hemminger16ba3262017-08-09 17:46:05 -07001281 struct net_device *vf_netdev = rtnl_dereference(ndc->vf_netdev);
stephen hemminger867047c2017-07-28 08:59:42 -07001282 struct netvsc_device *nvdev = rtnl_dereference(ndc->nvdev);
Haiyang Zhang1ce09e82012-07-10 07:19:22 +00001283 struct sockaddr *addr = p;
Haiyang Zhang1ce09e82012-07-10 07:19:22 +00001284 int err;
1285
stephen hemminger16ba3262017-08-09 17:46:05 -07001286 err = eth_prepare_mac_addr_change(ndev, p);
1287 if (err)
Haiyang Zhang1ce09e82012-07-10 07:19:22 +00001288 return err;
1289
stephen hemminger867047c2017-07-28 08:59:42 -07001290 if (!nvdev)
1291 return -ENODEV;
1292
stephen hemminger16ba3262017-08-09 17:46:05 -07001293 if (vf_netdev) {
1294 err = dev_set_mac_address(vf_netdev, addr);
1295 if (err)
1296 return err;
1297 }
1298
stephen hemminger867047c2017-07-28 08:59:42 -07001299 err = rndis_filter_set_device_mac(nvdev, addr->sa_data);
stephen hemminger16ba3262017-08-09 17:46:05 -07001300 if (!err) {
1301 eth_commit_mac_addr_change(ndev, p);
1302 } else if (vf_netdev) {
1303 /* rollback change on VF */
1304 memcpy(addr->sa_data, ndev->dev_addr, ETH_ALEN);
1305 dev_set_mac_address(vf_netdev, addr);
Haiyang Zhang1ce09e82012-07-10 07:19:22 +00001306 }
1307
1308 return err;
1309}
1310
Stephen Hemminger4323b472016-08-23 12:17:57 -07001311static const struct {
1312 char name[ETH_GSTRING_LEN];
1313 u16 offset;
1314} netvsc_stats[] = {
1315 { "tx_scattered", offsetof(struct netvsc_ethtool_stats, tx_scattered) },
Stephen Hemmingerf61a9d62017-12-12 16:48:36 -08001316 { "tx_no_memory", offsetof(struct netvsc_ethtool_stats, tx_no_memory) },
Stephen Hemminger4323b472016-08-23 12:17:57 -07001317 { "tx_no_space", offsetof(struct netvsc_ethtool_stats, tx_no_space) },
1318 { "tx_too_big", offsetof(struct netvsc_ethtool_stats, tx_too_big) },
1319 { "tx_busy", offsetof(struct netvsc_ethtool_stats, tx_busy) },
stephen hemmingercad5c192017-08-09 17:46:12 -07001320 { "tx_send_full", offsetof(struct netvsc_ethtool_stats, tx_send_full) },
1321 { "rx_comp_busy", offsetof(struct netvsc_ethtool_stats, rx_comp_busy) },
Stephen Hemmingerf61a9d62017-12-12 16:48:36 -08001322 { "rx_no_memory", offsetof(struct netvsc_ethtool_stats, rx_no_memory) },
Simon Xiao09af87d2017-09-29 11:39:46 -07001323 { "stop_queue", offsetof(struct netvsc_ethtool_stats, stop_queue) },
1324 { "wake_queue", offsetof(struct netvsc_ethtool_stats, wake_queue) },
Yidong Ren6ae74672018-07-30 17:09:45 +00001325}, pcpu_stats[] = {
1326 { "cpu%u_rx_packets",
1327 offsetof(struct netvsc_ethtool_pcpu_stats, rx_packets) },
1328 { "cpu%u_rx_bytes",
1329 offsetof(struct netvsc_ethtool_pcpu_stats, rx_bytes) },
1330 { "cpu%u_tx_packets",
1331 offsetof(struct netvsc_ethtool_pcpu_stats, tx_packets) },
1332 { "cpu%u_tx_bytes",
1333 offsetof(struct netvsc_ethtool_pcpu_stats, tx_bytes) },
1334 { "cpu%u_vf_rx_packets",
1335 offsetof(struct netvsc_ethtool_pcpu_stats, vf_rx_packets) },
1336 { "cpu%u_vf_rx_bytes",
1337 offsetof(struct netvsc_ethtool_pcpu_stats, vf_rx_bytes) },
1338 { "cpu%u_vf_tx_packets",
1339 offsetof(struct netvsc_ethtool_pcpu_stats, vf_tx_packets) },
1340 { "cpu%u_vf_tx_bytes",
1341 offsetof(struct netvsc_ethtool_pcpu_stats, vf_tx_bytes) },
stephen hemminger0c195562017-08-01 19:58:53 -07001342}, vf_stats[] = {
1343 { "vf_rx_packets", offsetof(struct netvsc_vf_pcpu_stats, rx_packets) },
1344 { "vf_rx_bytes", offsetof(struct netvsc_vf_pcpu_stats, rx_bytes) },
1345 { "vf_tx_packets", offsetof(struct netvsc_vf_pcpu_stats, tx_packets) },
1346 { "vf_tx_bytes", offsetof(struct netvsc_vf_pcpu_stats, tx_bytes) },
1347 { "vf_tx_dropped", offsetof(struct netvsc_vf_pcpu_stats, tx_dropped) },
Stephen Hemminger4323b472016-08-23 12:17:57 -07001348};
1349
Simon Xiao6c80f3f2017-01-24 13:06:13 -08001350#define NETVSC_GLOBAL_STATS_LEN ARRAY_SIZE(netvsc_stats)
stephen hemminger0c195562017-08-01 19:58:53 -07001351#define NETVSC_VF_STATS_LEN ARRAY_SIZE(vf_stats)
Simon Xiao6c80f3f2017-01-24 13:06:13 -08001352
Yidong Ren6ae74672018-07-30 17:09:45 +00001353/* statistics per queue (rx/tx packets/bytes) */
1354#define NETVSC_PCPU_STATS_LEN (num_present_cpus() * ARRAY_SIZE(pcpu_stats))
1355
Simon Xiao6c80f3f2017-01-24 13:06:13 -08001356/* 4 statistics per queue (rx/tx packets/bytes) */
1357#define NETVSC_QUEUE_STATS_LEN(dev) ((dev)->num_chn * 4)
1358
Stephen Hemminger4323b472016-08-23 12:17:57 -07001359static int netvsc_get_sset_count(struct net_device *dev, int string_set)
1360{
Simon Xiao6c80f3f2017-01-24 13:06:13 -08001361 struct net_device_context *ndc = netdev_priv(dev);
stephen hemmingerfbd4c7e2017-06-07 15:53:47 -07001362 struct netvsc_device *nvdev = rtnl_dereference(ndc->nvdev);
stephen hemminger545a8e72017-03-22 14:51:00 -07001363
1364 if (!nvdev)
1365 return -ENODEV;
Simon Xiao6c80f3f2017-01-24 13:06:13 -08001366
Stephen Hemminger4323b472016-08-23 12:17:57 -07001367 switch (string_set) {
1368 case ETH_SS_STATS:
stephen hemminger0c195562017-08-01 19:58:53 -07001369 return NETVSC_GLOBAL_STATS_LEN
1370 + NETVSC_VF_STATS_LEN
Yidong Ren6ae74672018-07-30 17:09:45 +00001371 + NETVSC_QUEUE_STATS_LEN(nvdev)
1372 + NETVSC_PCPU_STATS_LEN;
Stephen Hemminger4323b472016-08-23 12:17:57 -07001373 default:
1374 return -EINVAL;
1375 }
1376}
1377
1378static void netvsc_get_ethtool_stats(struct net_device *dev,
1379 struct ethtool_stats *stats, u64 *data)
1380{
1381 struct net_device_context *ndc = netdev_priv(dev);
stephen hemminger867047c2017-07-28 08:59:42 -07001382 struct netvsc_device *nvdev = rtnl_dereference(ndc->nvdev);
Stephen Hemminger4323b472016-08-23 12:17:57 -07001383 const void *nds = &ndc->eth_stats;
Simon Xiao6c80f3f2017-01-24 13:06:13 -08001384 const struct netvsc_stats *qstats;
stephen hemminger0c195562017-08-01 19:58:53 -07001385 struct netvsc_vf_pcpu_stats sum;
Yidong Ren6ae74672018-07-30 17:09:45 +00001386 struct netvsc_ethtool_pcpu_stats *pcpu_sum;
Simon Xiao6c80f3f2017-01-24 13:06:13 -08001387 unsigned int start;
1388 u64 packets, bytes;
Yidong Ren6ae74672018-07-30 17:09:45 +00001389 int i, j, cpu;
Stephen Hemminger4323b472016-08-23 12:17:57 -07001390
stephen hemminger545a8e72017-03-22 14:51:00 -07001391 if (!nvdev)
1392 return;
1393
Simon Xiao6c80f3f2017-01-24 13:06:13 -08001394 for (i = 0; i < NETVSC_GLOBAL_STATS_LEN; i++)
Stephen Hemminger4323b472016-08-23 12:17:57 -07001395 data[i] = *(unsigned long *)(nds + netvsc_stats[i].offset);
Simon Xiao6c80f3f2017-01-24 13:06:13 -08001396
stephen hemminger0c195562017-08-01 19:58:53 -07001397 netvsc_get_vf_stats(dev, &sum);
1398 for (j = 0; j < NETVSC_VF_STATS_LEN; j++)
1399 data[i++] = *(u64 *)((void *)&sum + vf_stats[j].offset);
1400
Simon Xiao6c80f3f2017-01-24 13:06:13 -08001401 for (j = 0; j < nvdev->num_chn; j++) {
1402 qstats = &nvdev->chan_table[j].tx_stats;
1403
1404 do {
1405 start = u64_stats_fetch_begin_irq(&qstats->syncp);
1406 packets = qstats->packets;
1407 bytes = qstats->bytes;
1408 } while (u64_stats_fetch_retry_irq(&qstats->syncp, start));
1409 data[i++] = packets;
1410 data[i++] = bytes;
1411
1412 qstats = &nvdev->chan_table[j].rx_stats;
1413 do {
1414 start = u64_stats_fetch_begin_irq(&qstats->syncp);
1415 packets = qstats->packets;
1416 bytes = qstats->bytes;
1417 } while (u64_stats_fetch_retry_irq(&qstats->syncp, start));
1418 data[i++] = packets;
1419 data[i++] = bytes;
1420 }
Yidong Ren6ae74672018-07-30 17:09:45 +00001421
1422 pcpu_sum = kvmalloc_array(num_possible_cpus(),
1423 sizeof(struct netvsc_ethtool_pcpu_stats),
1424 GFP_KERNEL);
1425 netvsc_get_pcpu_stats(dev, pcpu_sum);
1426 for_each_present_cpu(cpu) {
1427 struct netvsc_ethtool_pcpu_stats *this_sum = &pcpu_sum[cpu];
1428
1429 for (j = 0; j < ARRAY_SIZE(pcpu_stats); j++)
1430 data[i++] = *(u64 *)((void *)this_sum
1431 + pcpu_stats[j].offset);
1432 }
1433 kvfree(pcpu_sum);
Stephen Hemminger4323b472016-08-23 12:17:57 -07001434}
1435
1436static void netvsc_get_strings(struct net_device *dev, u32 stringset, u8 *data)
1437{
Simon Xiao6c80f3f2017-01-24 13:06:13 -08001438 struct net_device_context *ndc = netdev_priv(dev);
stephen hemminger867047c2017-07-28 08:59:42 -07001439 struct netvsc_device *nvdev = rtnl_dereference(ndc->nvdev);
Simon Xiao6c80f3f2017-01-24 13:06:13 -08001440 u8 *p = data;
Yidong Ren6ae74672018-07-30 17:09:45 +00001441 int i, cpu;
Stephen Hemminger4323b472016-08-23 12:17:57 -07001442
stephen hemminger545a8e72017-03-22 14:51:00 -07001443 if (!nvdev)
1444 return;
1445
Stephen Hemminger4323b472016-08-23 12:17:57 -07001446 switch (stringset) {
1447 case ETH_SS_STATS:
stephen hemminger0c195562017-08-01 19:58:53 -07001448 for (i = 0; i < ARRAY_SIZE(netvsc_stats); i++) {
1449 memcpy(p, netvsc_stats[i].name, ETH_GSTRING_LEN);
1450 p += ETH_GSTRING_LEN;
1451 }
Simon Xiao6c80f3f2017-01-24 13:06:13 -08001452
stephen hemminger0c195562017-08-01 19:58:53 -07001453 for (i = 0; i < ARRAY_SIZE(vf_stats); i++) {
1454 memcpy(p, vf_stats[i].name, ETH_GSTRING_LEN);
1455 p += ETH_GSTRING_LEN;
1456 }
1457
Simon Xiao6c80f3f2017-01-24 13:06:13 -08001458 for (i = 0; i < nvdev->num_chn; i++) {
1459 sprintf(p, "tx_queue_%u_packets", i);
1460 p += ETH_GSTRING_LEN;
1461 sprintf(p, "tx_queue_%u_bytes", i);
1462 p += ETH_GSTRING_LEN;
1463 sprintf(p, "rx_queue_%u_packets", i);
1464 p += ETH_GSTRING_LEN;
1465 sprintf(p, "rx_queue_%u_bytes", i);
1466 p += ETH_GSTRING_LEN;
1467 }
1468
Yidong Ren6ae74672018-07-30 17:09:45 +00001469 for_each_present_cpu(cpu) {
1470 for (i = 0; i < ARRAY_SIZE(pcpu_stats); i++) {
1471 sprintf(p, pcpu_stats[i].name, cpu);
1472 p += ETH_GSTRING_LEN;
1473 }
1474 }
1475
Stephen Hemminger4323b472016-08-23 12:17:57 -07001476 break;
1477 }
1478}
1479
stephen hemmingerb448f4e2017-01-24 13:06:00 -08001480static int
Haiyang Zhang4823eb22017-08-21 19:22:39 -07001481netvsc_get_rss_hash_opts(struct net_device_context *ndc,
1482 struct ethtool_rxnfc *info)
stephen hemmingerb5a5dc82017-01-24 13:06:01 -08001483{
Haiyang Zhang486e3982017-10-06 08:33:57 -07001484 const u32 l4_flag = RXH_L4_B_0_1 | RXH_L4_B_2_3;
1485
stephen hemmingerb5a5dc82017-01-24 13:06:01 -08001486 info->data = RXH_IP_SRC | RXH_IP_DST;
1487
1488 switch (info->flow_type) {
1489 case TCP_V4_FLOW:
Haiyang Zhang0518ec4f2017-10-06 08:33:58 -07001490 if (ndc->l4_hash & HV_TCP4_L4HASH)
1491 info->data |= l4_flag;
1492
1493 break;
1494
stephen hemmingerb5a5dc82017-01-24 13:06:01 -08001495 case TCP_V6_FLOW:
Haiyang Zhang0518ec4f2017-10-06 08:33:58 -07001496 if (ndc->l4_hash & HV_TCP6_L4HASH)
1497 info->data |= l4_flag;
1498
Haiyang Zhang4823eb22017-08-21 19:22:39 -07001499 break;
1500
stephen hemmingerb5a5dc82017-01-24 13:06:01 -08001501 case UDP_V4_FLOW:
Haiyang Zhang486e3982017-10-06 08:33:57 -07001502 if (ndc->l4_hash & HV_UDP4_L4HASH)
1503 info->data |= l4_flag;
Haiyang Zhang4823eb22017-08-21 19:22:39 -07001504
1505 break;
1506
stephen hemmingerb5a5dc82017-01-24 13:06:01 -08001507 case UDP_V6_FLOW:
Haiyang Zhang486e3982017-10-06 08:33:57 -07001508 if (ndc->l4_hash & HV_UDP6_L4HASH)
1509 info->data |= l4_flag;
Haiyang Zhang4823eb22017-08-21 19:22:39 -07001510
1511 break;
1512
stephen hemmingerb5a5dc82017-01-24 13:06:01 -08001513 case IPV4_FLOW:
1514 case IPV6_FLOW:
1515 break;
1516 default:
1517 info->data = 0;
1518 break;
1519 }
1520
1521 return 0;
1522}
1523
1524static int
stephen hemmingerb448f4e2017-01-24 13:06:00 -08001525netvsc_get_rxnfc(struct net_device *dev, struct ethtool_rxnfc *info,
1526 u32 *rules)
1527{
1528 struct net_device_context *ndc = netdev_priv(dev);
stephen hemminger867047c2017-07-28 08:59:42 -07001529 struct netvsc_device *nvdev = rtnl_dereference(ndc->nvdev);
stephen hemminger545a8e72017-03-22 14:51:00 -07001530
1531 if (!nvdev)
1532 return -ENODEV;
stephen hemmingerb448f4e2017-01-24 13:06:00 -08001533
1534 switch (info->cmd) {
1535 case ETHTOOL_GRXRINGS:
1536 info->data = nvdev->num_chn;
1537 return 0;
stephen hemmingerb5a5dc82017-01-24 13:06:01 -08001538
1539 case ETHTOOL_GRXFH:
Haiyang Zhang4823eb22017-08-21 19:22:39 -07001540 return netvsc_get_rss_hash_opts(ndc, info);
stephen hemmingerb448f4e2017-01-24 13:06:00 -08001541 }
1542 return -EOPNOTSUPP;
1543}
1544
Haiyang Zhang4823eb22017-08-21 19:22:39 -07001545static int netvsc_set_rss_hash_opts(struct net_device_context *ndc,
1546 struct ethtool_rxnfc *info)
1547{
1548 if (info->data == (RXH_IP_SRC | RXH_IP_DST |
1549 RXH_L4_B_0_1 | RXH_L4_B_2_3)) {
Haiyang Zhang486e3982017-10-06 08:33:57 -07001550 switch (info->flow_type) {
Haiyang Zhang0518ec4f2017-10-06 08:33:58 -07001551 case TCP_V4_FLOW:
1552 ndc->l4_hash |= HV_TCP4_L4HASH;
1553 break;
1554
1555 case TCP_V6_FLOW:
1556 ndc->l4_hash |= HV_TCP6_L4HASH;
1557 break;
1558
Haiyang Zhang486e3982017-10-06 08:33:57 -07001559 case UDP_V4_FLOW:
1560 ndc->l4_hash |= HV_UDP4_L4HASH;
1561 break;
1562
1563 case UDP_V6_FLOW:
1564 ndc->l4_hash |= HV_UDP6_L4HASH;
1565 break;
1566
1567 default:
Haiyang Zhang4823eb22017-08-21 19:22:39 -07001568 return -EOPNOTSUPP;
Haiyang Zhang486e3982017-10-06 08:33:57 -07001569 }
Haiyang Zhang4823eb22017-08-21 19:22:39 -07001570
1571 return 0;
1572 }
1573
1574 if (info->data == (RXH_IP_SRC | RXH_IP_DST)) {
Haiyang Zhang486e3982017-10-06 08:33:57 -07001575 switch (info->flow_type) {
Haiyang Zhang0518ec4f2017-10-06 08:33:58 -07001576 case TCP_V4_FLOW:
1577 ndc->l4_hash &= ~HV_TCP4_L4HASH;
1578 break;
1579
1580 case TCP_V6_FLOW:
1581 ndc->l4_hash &= ~HV_TCP6_L4HASH;
1582 break;
1583
Haiyang Zhang486e3982017-10-06 08:33:57 -07001584 case UDP_V4_FLOW:
1585 ndc->l4_hash &= ~HV_UDP4_L4HASH;
1586 break;
1587
1588 case UDP_V6_FLOW:
1589 ndc->l4_hash &= ~HV_UDP6_L4HASH;
1590 break;
1591
1592 default:
Haiyang Zhang4823eb22017-08-21 19:22:39 -07001593 return -EOPNOTSUPP;
Haiyang Zhang486e3982017-10-06 08:33:57 -07001594 }
Haiyang Zhang4823eb22017-08-21 19:22:39 -07001595
1596 return 0;
1597 }
1598
1599 return -EOPNOTSUPP;
1600}
1601
1602static int
1603netvsc_set_rxnfc(struct net_device *ndev, struct ethtool_rxnfc *info)
1604{
1605 struct net_device_context *ndc = netdev_priv(ndev);
1606
1607 if (info->cmd == ETHTOOL_SRXFH)
1608 return netvsc_set_rss_hash_opts(ndc, info);
1609
1610 return -EOPNOTSUPP;
1611}
1612
Richard Weinberger316158f2014-07-09 16:23:59 +02001613#ifdef CONFIG_NET_POLL_CONTROLLER
stephen hemmingera5ecd432017-06-07 15:53:48 -07001614static void netvsc_poll_controller(struct net_device *dev)
Richard Weinberger316158f2014-07-09 16:23:59 +02001615{
stephen hemmingera5ecd432017-06-07 15:53:48 -07001616 struct net_device_context *ndc = netdev_priv(dev);
1617 struct netvsc_device *ndev;
1618 int i;
1619
1620 rcu_read_lock();
1621 ndev = rcu_dereference(ndc->nvdev);
1622 if (ndev) {
1623 for (i = 0; i < ndev->num_chn; i++) {
1624 struct netvsc_channel *nvchan = &ndev->chan_table[i];
1625
1626 napi_schedule(&nvchan->napi);
1627 }
1628 }
1629 rcu_read_unlock();
Richard Weinberger316158f2014-07-09 16:23:59 +02001630}
1631#endif
Haiyang Zhang1ce09e82012-07-10 07:19:22 +00001632
stephen hemminger962f3fe2017-01-24 13:06:02 -08001633static u32 netvsc_get_rxfh_key_size(struct net_device *dev)
1634{
1635 return NETVSC_HASH_KEYLEN;
1636}
1637
1638static u32 netvsc_rss_indir_size(struct net_device *dev)
1639{
stephen hemmingerff4a4412017-01-24 13:06:04 -08001640 return ITAB_NUM;
stephen hemminger962f3fe2017-01-24 13:06:02 -08001641}
1642
1643static int netvsc_get_rxfh(struct net_device *dev, u32 *indir, u8 *key,
1644 u8 *hfunc)
1645{
1646 struct net_device_context *ndc = netdev_priv(dev);
stephen hemminger867047c2017-07-28 08:59:42 -07001647 struct netvsc_device *ndev = rtnl_dereference(ndc->nvdev);
Colin Ian Kingeb996ed2017-03-25 14:26:39 +00001648 struct rndis_device *rndis_dev;
stephen hemmingerff4a4412017-01-24 13:06:04 -08001649 int i;
stephen hemminger962f3fe2017-01-24 13:06:02 -08001650
stephen hemminger545a8e72017-03-22 14:51:00 -07001651 if (!ndev)
1652 return -ENODEV;
1653
stephen hemminger962f3fe2017-01-24 13:06:02 -08001654 if (hfunc)
1655 *hfunc = ETH_RSS_HASH_TOP; /* Toeplitz */
1656
Colin Ian Kingeb996ed2017-03-25 14:26:39 +00001657 rndis_dev = ndev->extension;
stephen hemmingerff4a4412017-01-24 13:06:04 -08001658 if (indir) {
1659 for (i = 0; i < ITAB_NUM; i++)
Haiyang Zhang473713002017-10-13 12:28:03 -07001660 indir[i] = rndis_dev->rx_table[i];
stephen hemmingerff4a4412017-01-24 13:06:04 -08001661 }
1662
stephen hemminger962f3fe2017-01-24 13:06:02 -08001663 if (key)
1664 memcpy(key, rndis_dev->rss_key, NETVSC_HASH_KEYLEN);
1665
1666 return 0;
1667}
1668
1669static int netvsc_set_rxfh(struct net_device *dev, const u32 *indir,
1670 const u8 *key, const u8 hfunc)
1671{
1672 struct net_device_context *ndc = netdev_priv(dev);
stephen hemminger545a8e72017-03-22 14:51:00 -07001673 struct netvsc_device *ndev = rtnl_dereference(ndc->nvdev);
Colin Ian Kingeb996ed2017-03-25 14:26:39 +00001674 struct rndis_device *rndis_dev;
stephen hemmingerff4a4412017-01-24 13:06:04 -08001675 int i;
stephen hemminger962f3fe2017-01-24 13:06:02 -08001676
stephen hemminger545a8e72017-03-22 14:51:00 -07001677 if (!ndev)
1678 return -ENODEV;
1679
stephen hemminger962f3fe2017-01-24 13:06:02 -08001680 if (hfunc != ETH_RSS_HASH_NO_CHANGE && hfunc != ETH_RSS_HASH_TOP)
1681 return -EOPNOTSUPP;
1682
Colin Ian Kingeb996ed2017-03-25 14:26:39 +00001683 rndis_dev = ndev->extension;
stephen hemmingerff4a4412017-01-24 13:06:04 -08001684 if (indir) {
1685 for (i = 0; i < ITAB_NUM; i++)
Haiyang Zhangdb3cd7a2017-09-01 14:30:07 -07001686 if (indir[i] >= ndev->num_chn)
stephen hemmingerff4a4412017-01-24 13:06:04 -08001687 return -EINVAL;
1688
1689 for (i = 0; i < ITAB_NUM; i++)
Haiyang Zhang473713002017-10-13 12:28:03 -07001690 rndis_dev->rx_table[i] = indir[i];
stephen hemmingerff4a4412017-01-24 13:06:04 -08001691 }
1692
1693 if (!key) {
1694 if (!indir)
1695 return 0;
1696
1697 key = rndis_dev->rss_key;
1698 }
stephen hemminger962f3fe2017-01-24 13:06:02 -08001699
Haiyang Zhang715e2ec2017-09-01 14:30:04 -07001700 return rndis_filter_set_rss_param(rndis_dev, key);
stephen hemminger962f3fe2017-01-24 13:06:02 -08001701}
1702
stephen hemminger8b532792017-08-09 17:46:11 -07001703/* Hyper-V RNDIS protocol does not have ring in the HW sense.
1704 * It does have pre-allocated receive area which is divided into sections.
1705 */
1706static void __netvsc_get_ringparam(struct netvsc_device *nvdev,
1707 struct ethtool_ringparam *ring)
1708{
1709 u32 max_buf_size;
1710
1711 ring->rx_pending = nvdev->recv_section_cnt;
1712 ring->tx_pending = nvdev->send_section_cnt;
1713
1714 if (nvdev->nvsp_version <= NVSP_PROTOCOL_VERSION_2)
1715 max_buf_size = NETVSC_RECEIVE_BUFFER_SIZE_LEGACY;
1716 else
1717 max_buf_size = NETVSC_RECEIVE_BUFFER_SIZE;
1718
1719 ring->rx_max_pending = max_buf_size / nvdev->recv_section_size;
1720 ring->tx_max_pending = NETVSC_SEND_BUFFER_SIZE
1721 / nvdev->send_section_size;
1722}
1723
1724static void netvsc_get_ringparam(struct net_device *ndev,
1725 struct ethtool_ringparam *ring)
1726{
1727 struct net_device_context *ndevctx = netdev_priv(ndev);
1728 struct netvsc_device *nvdev = rtnl_dereference(ndevctx->nvdev);
1729
1730 if (!nvdev)
1731 return;
1732
1733 __netvsc_get_ringparam(nvdev, ring);
1734}
1735
1736static int netvsc_set_ringparam(struct net_device *ndev,
1737 struct ethtool_ringparam *ring)
1738{
1739 struct net_device_context *ndevctx = netdev_priv(ndev);
1740 struct netvsc_device *nvdev = rtnl_dereference(ndevctx->nvdev);
Haiyang Zhangd2ce8e12019-01-15 00:51:43 +00001741 struct netvsc_device_info *device_info;
stephen hemminger8b532792017-08-09 17:46:11 -07001742 struct ethtool_ringparam orig;
1743 u32 new_tx, new_rx;
stephen hemminger8b532792017-08-09 17:46:11 -07001744 int ret = 0;
1745
1746 if (!nvdev || nvdev->destroy)
1747 return -ENODEV;
1748
1749 memset(&orig, 0, sizeof(orig));
1750 __netvsc_get_ringparam(nvdev, &orig);
1751
1752 new_tx = clamp_t(u32, ring->tx_pending,
1753 NETVSC_MIN_TX_SECTIONS, orig.tx_max_pending);
1754 new_rx = clamp_t(u32, ring->rx_pending,
1755 NETVSC_MIN_RX_SECTIONS, orig.rx_max_pending);
1756
1757 if (new_tx == orig.tx_pending &&
1758 new_rx == orig.rx_pending)
1759 return 0; /* no change */
1760
Haiyang Zhangd2ce8e12019-01-15 00:51:43 +00001761 device_info = netvsc_devinfo_get(nvdev);
1762
1763 if (!device_info)
1764 return -ENOMEM;
1765
1766 device_info->send_sections = new_tx;
1767 device_info->recv_sections = new_rx;
stephen hemminger8b532792017-08-09 17:46:11 -07001768
Stephen Hemminger7b2ee502018-03-20 15:03:05 -07001769 ret = netvsc_detach(ndev, nvdev);
1770 if (ret)
Haiyang Zhangd2ce8e12019-01-15 00:51:43 +00001771 goto out;
stephen hemminger8b532792017-08-09 17:46:11 -07001772
Haiyang Zhangd2ce8e12019-01-15 00:51:43 +00001773 ret = netvsc_attach(ndev, device_info);
Stephen Hemminger7b2ee502018-03-20 15:03:05 -07001774 if (ret) {
Haiyang Zhangd2ce8e12019-01-15 00:51:43 +00001775 device_info->send_sections = orig.tx_pending;
1776 device_info->recv_sections = orig.rx_pending;
Stephen Hemminger7b2ee502018-03-20 15:03:05 -07001777
Haiyang Zhangd2ce8e12019-01-15 00:51:43 +00001778 if (netvsc_attach(ndev, device_info))
Stephen Hemminger7b2ee502018-03-20 15:03:05 -07001779 netdev_err(ndev, "restoring ringparam failed");
stephen hemminger8b532792017-08-09 17:46:11 -07001780 }
1781
Haiyang Zhangd2ce8e12019-01-15 00:51:43 +00001782out:
1783 kfree(device_info);
stephen hemminger8b532792017-08-09 17:46:11 -07001784 return ret;
1785}
1786
Haiyang Zhang273de022018-05-22 11:29:34 -07001787static u32 netvsc_get_msglevel(struct net_device *ndev)
1788{
1789 struct net_device_context *ndev_ctx = netdev_priv(ndev);
1790
1791 return ndev_ctx->msg_enable;
1792}
1793
1794static void netvsc_set_msglevel(struct net_device *ndev, u32 val)
1795{
1796 struct net_device_context *ndev_ctx = netdev_priv(ndev);
1797
1798 ndev_ctx->msg_enable = val;
1799}
1800
Stephen Hemmingerf82f4ad2010-05-04 09:58:57 -07001801static const struct ethtool_ops ethtool_ops = {
1802 .get_drvinfo = netvsc_get_drvinfo,
Haiyang Zhang273de022018-05-22 11:29:34 -07001803 .get_msglevel = netvsc_get_msglevel,
1804 .set_msglevel = netvsc_set_msglevel,
Stephen Hemmingerf82f4ad2010-05-04 09:58:57 -07001805 .get_link = ethtool_op_get_link,
Stephen Hemminger4323b472016-08-23 12:17:57 -07001806 .get_ethtool_stats = netvsc_get_ethtool_stats,
1807 .get_sset_count = netvsc_get_sset_count,
1808 .get_strings = netvsc_get_strings,
Andrew Schwartzmeyer59995372015-02-26 16:27:14 -08001809 .get_channels = netvsc_get_channels,
Andrew Schwartzmeyerb5960e62015-08-11 17:14:32 -07001810 .set_channels = netvsc_set_channels,
sixiao@microsoft.com76d13b52016-02-17 16:43:59 -08001811 .get_ts_info = ethtool_op_get_ts_info,
stephen hemmingerb448f4e2017-01-24 13:06:00 -08001812 .get_rxnfc = netvsc_get_rxnfc,
Haiyang Zhang4823eb22017-08-21 19:22:39 -07001813 .set_rxnfc = netvsc_set_rxnfc,
stephen hemminger962f3fe2017-01-24 13:06:02 -08001814 .get_rxfh_key_size = netvsc_get_rxfh_key_size,
1815 .get_rxfh_indir_size = netvsc_rss_indir_size,
1816 .get_rxfh = netvsc_get_rxfh,
1817 .set_rxfh = netvsc_set_rxfh,
Philippe Reynes5e8456f2017-03-08 23:41:04 +01001818 .get_link_ksettings = netvsc_get_link_ksettings,
1819 .set_link_ksettings = netvsc_set_link_ksettings,
stephen hemminger8b532792017-08-09 17:46:11 -07001820 .get_ringparam = netvsc_get_ringparam,
1821 .set_ringparam = netvsc_set_ringparam,
Stephen Hemmingerf82f4ad2010-05-04 09:58:57 -07001822};
1823
Greg Kroah-Hartmandf2fff22009-08-31 21:11:12 -07001824static const struct net_device_ops device_ops = {
1825 .ndo_open = netvsc_open,
1826 .ndo_stop = netvsc_close,
1827 .ndo_start_xmit = netvsc_start_xmit,
Stephen Hemmingerbee9d412018-03-02 13:49:09 -08001828 .ndo_change_rx_flags = netvsc_change_rx_flags,
1829 .ndo_set_rx_mode = netvsc_set_rx_mode,
Haiyang Zhang4d447c92011-12-15 13:45:17 -08001830 .ndo_change_mtu = netvsc_change_mtu,
Haiyang Zhangb681b582010-08-03 19:15:31 +00001831 .ndo_validate_addr = eth_validate_addr,
Haiyang Zhang1ce09e82012-07-10 07:19:22 +00001832 .ndo_set_mac_address = netvsc_set_mac_addr,
Haiyang Zhang5b54dac2014-04-21 10:20:28 -07001833 .ndo_select_queue = netvsc_select_queue,
sixiao@microsoft.com7eafd9b2015-05-14 01:00:25 -07001834 .ndo_get_stats64 = netvsc_get_stats64,
Richard Weinberger316158f2014-07-09 16:23:59 +02001835#ifdef CONFIG_NET_POLL_CONTROLLER
1836 .ndo_poll_controller = netvsc_poll_controller,
1837#endif
Greg Kroah-Hartmandf2fff22009-08-31 21:11:12 -07001838};
1839
Haiyang Zhangc996edc2011-04-06 15:18:00 -07001840/*
Vitaly Kuznetsov27a70af2015-11-27 11:39:55 +01001841 * Handle link status changes. For RNDIS_STATUS_NETWORK_CHANGE emulate link
1842 * down/up sequence. In case of RNDIS_STATUS_MEDIA_CONNECT when carrier is
1843 * present send GARP packet to network peers with netif_notify_peers().
Haiyang Zhangc996edc2011-04-06 15:18:00 -07001844 */
Haiyang Zhang891de742014-02-12 16:54:27 -08001845static void netvsc_link_change(struct work_struct *w)
Haiyang Zhangc996edc2011-04-06 15:18:00 -07001846{
Vitaly Kuznetsov0a1275c2016-05-13 13:55:23 +02001847 struct net_device_context *ndev_ctx =
1848 container_of(w, struct net_device_context, dwork.work);
1849 struct hv_device *device_obj = ndev_ctx->device_ctx;
1850 struct net_device *net = hv_get_drvdata(device_obj);
K. Y. Srinivasan2ddd5e52011-09-13 10:59:49 -07001851 struct netvsc_device *net_device;
Haiyang Zhang891de742014-02-12 16:54:27 -08001852 struct rndis_device *rdev;
Vitaly Kuznetsov27a70af2015-11-27 11:39:55 +01001853 struct netvsc_reconfig *event = NULL;
1854 bool notify = false, reschedule = false;
1855 unsigned long flags, next_reconfig, delay;
Haiyang Zhangc996edc2011-04-06 15:18:00 -07001856
stephen hemminger9b4e9462017-08-24 16:49:16 -07001857 /* if changes are happening, comeback later */
1858 if (!rtnl_trylock()) {
1859 schedule_delayed_work(&ndev_ctx->dwork, LINKCHANGE_INT);
1860 return;
1861 }
1862
stephen hemmingera0be4502017-03-22 14:51:01 -07001863 net_device = rtnl_dereference(ndev_ctx->nvdev);
1864 if (!net_device)
Vitaly Kuznetsov1bdcec82016-05-13 13:55:21 +02001865 goto out_unlock;
1866
Haiyang Zhang891de742014-02-12 16:54:27 -08001867 rdev = net_device->extension;
Haiyang Zhang891de742014-02-12 16:54:27 -08001868
Vitaly Kuznetsov27a70af2015-11-27 11:39:55 +01001869 next_reconfig = ndev_ctx->last_reconfig + LINKCHANGE_INT;
1870 if (time_is_after_jiffies(next_reconfig)) {
1871 /* link_watch only sends one notification with current state
1872 * per second, avoid doing reconfig more frequently. Handle
1873 * wrap around.
1874 */
1875 delay = next_reconfig - jiffies;
1876 delay = delay < LINKCHANGE_INT ? delay : LINKCHANGE_INT;
1877 schedule_delayed_work(&ndev_ctx->dwork, delay);
Vitaly Kuznetsov1bdcec82016-05-13 13:55:21 +02001878 goto out_unlock;
Vitaly Kuznetsov27a70af2015-11-27 11:39:55 +01001879 }
1880 ndev_ctx->last_reconfig = jiffies;
1881
1882 spin_lock_irqsave(&ndev_ctx->lock, flags);
1883 if (!list_empty(&ndev_ctx->reconfig_events)) {
1884 event = list_first_entry(&ndev_ctx->reconfig_events,
1885 struct netvsc_reconfig, list);
1886 list_del(&event->list);
1887 reschedule = !list_empty(&ndev_ctx->reconfig_events);
1888 }
1889 spin_unlock_irqrestore(&ndev_ctx->lock, flags);
1890
1891 if (!event)
Vitaly Kuznetsov1bdcec82016-05-13 13:55:21 +02001892 goto out_unlock;
Vitaly Kuznetsov27a70af2015-11-27 11:39:55 +01001893
1894 switch (event->event) {
1895 /* Only the following events are possible due to the check in
1896 * netvsc_linkstatus_callback()
1897 */
1898 case RNDIS_STATUS_MEDIA_CONNECT:
1899 if (rdev->link_state) {
1900 rdev->link_state = false;
stephen hemminger0c195562017-08-01 19:58:53 -07001901 netif_carrier_on(net);
Vitaly Kuznetsov27a70af2015-11-27 11:39:55 +01001902 netif_tx_wake_all_queues(net);
1903 } else {
1904 notify = true;
Haiyang Zhang3a494e72014-06-19 18:34:36 -07001905 }
Vitaly Kuznetsov27a70af2015-11-27 11:39:55 +01001906 kfree(event);
1907 break;
1908 case RNDIS_STATUS_MEDIA_DISCONNECT:
1909 if (!rdev->link_state) {
1910 rdev->link_state = true;
1911 netif_carrier_off(net);
1912 netif_tx_stop_all_queues(net);
1913 }
1914 kfree(event);
1915 break;
1916 case RNDIS_STATUS_NETWORK_CHANGE:
1917 /* Only makes sense if carrier is present */
1918 if (!rdev->link_state) {
1919 rdev->link_state = true;
1920 netif_carrier_off(net);
1921 netif_tx_stop_all_queues(net);
1922 event->event = RNDIS_STATUS_MEDIA_CONNECT;
1923 spin_lock_irqsave(&ndev_ctx->lock, flags);
Haiyang Zhang15cfd402016-04-21 16:13:01 -07001924 list_add(&event->list, &ndev_ctx->reconfig_events);
Vitaly Kuznetsov27a70af2015-11-27 11:39:55 +01001925 spin_unlock_irqrestore(&ndev_ctx->lock, flags);
1926 reschedule = true;
1927 }
1928 break;
Haiyang Zhang891de742014-02-12 16:54:27 -08001929 }
1930
1931 rtnl_unlock();
1932
1933 if (notify)
1934 netdev_notify_peers(net);
Vitaly Kuznetsov27a70af2015-11-27 11:39:55 +01001935
1936 /* link_watch only sends one notification with current state per
1937 * second, handle next reconfig event in 2 seconds.
1938 */
1939 if (reschedule)
1940 schedule_delayed_work(&ndev_ctx->dwork, LINKCHANGE_INT);
Vitaly Kuznetsov1bdcec82016-05-13 13:55:21 +02001941
1942 return;
1943
1944out_unlock:
1945 rtnl_unlock();
Haiyang Zhangc996edc2011-04-06 15:18:00 -07001946}
1947
Stephen Hemminger8cde8f02018-06-11 12:44:54 -07001948static struct net_device *get_netvsc_byref(struct net_device *vf_netdev)
1949{
Stephen Hemminger7bf7bb32018-06-11 12:44:55 -07001950 struct net_device_context *net_device_ctx;
Stephen Hemminger8cde8f02018-06-11 12:44:54 -07001951 struct net_device *dev;
1952
Stephen Hemminger7bf7bb32018-06-11 12:44:55 -07001953 dev = netdev_master_upper_dev_get(vf_netdev);
1954 if (!dev || dev->netdev_ops != &device_ops)
1955 return NULL; /* not a netvsc device */
Stephen Hemminger8cde8f02018-06-11 12:44:54 -07001956
Stephen Hemminger7bf7bb32018-06-11 12:44:55 -07001957 net_device_ctx = netdev_priv(dev);
1958 if (!rtnl_dereference(net_device_ctx->nvdev))
1959 return NULL; /* device is removed */
Stephen Hemminger8cde8f02018-06-11 12:44:54 -07001960
Stephen Hemminger7bf7bb32018-06-11 12:44:55 -07001961 return dev;
Stephen Hemminger8cde8f02018-06-11 12:44:54 -07001962}
1963
stephen hemminger0c195562017-08-01 19:58:53 -07001964/* Called when VF is injecting data into network stack.
1965 * Change the associated network device from VF to netvsc.
1966 * note: already called with rcu_read_lock
1967 */
1968static rx_handler_result_t netvsc_vf_handle_frame(struct sk_buff **pskb)
1969{
1970 struct sk_buff *skb = *pskb;
1971 struct net_device *ndev = rcu_dereference(skb->dev->rx_handler_data);
1972 struct net_device_context *ndev_ctx = netdev_priv(ndev);
1973 struct netvsc_vf_pcpu_stats *pcpu_stats
1974 = this_cpu_ptr(ndev_ctx->vf_stats);
1975
1976 skb->dev = ndev;
1977
1978 u64_stats_update_begin(&pcpu_stats->syncp);
1979 pcpu_stats->rx_packets++;
1980 pcpu_stats->rx_bytes += skb->len;
1981 u64_stats_update_end(&pcpu_stats->syncp);
1982
1983 return RX_HANDLER_ANOTHER;
1984}
1985
Stephen Hemminger8cde8f02018-06-11 12:44:54 -07001986static int netvsc_vf_join(struct net_device *vf_netdev,
1987 struct net_device *ndev)
1988{
1989 struct net_device_context *ndev_ctx = netdev_priv(ndev);
1990 int ret;
1991
1992 ret = netdev_rx_handler_register(vf_netdev,
1993 netvsc_vf_handle_frame, ndev);
1994 if (ret != 0) {
1995 netdev_err(vf_netdev,
1996 "can not register netvsc VF receive handler (err = %d)\n",
1997 ret);
1998 goto rx_handler_failed;
1999 }
2000
2001 ret = netdev_master_upper_dev_link(vf_netdev, ndev,
2002 NULL, NULL, NULL);
2003 if (ret != 0) {
2004 netdev_err(vf_netdev,
2005 "can not set master device %s (err = %d)\n",
2006 ndev->name, ret);
2007 goto upper_link_failed;
2008 }
2009
2010 /* set slave flag before open to prevent IPv6 addrconf */
2011 vf_netdev->flags |= IFF_SLAVE;
2012
2013 schedule_delayed_work(&ndev_ctx->vf_takeover, VF_TAKEOVER_INT);
2014
2015 call_netdevice_notifiers(NETDEV_JOIN, vf_netdev);
2016
2017 netdev_info(vf_netdev, "joined to %s\n", ndev->name);
2018 return 0;
2019
2020upper_link_failed:
2021 netdev_rx_handler_unregister(vf_netdev);
2022rx_handler_failed:
2023 return ret;
2024}
2025
stephen hemminger0c195562017-08-01 19:58:53 -07002026static void __netvsc_vf_setup(struct net_device *ndev,
2027 struct net_device *vf_netdev)
2028{
2029 int ret;
2030
stephen hemminger0c195562017-08-01 19:58:53 -07002031 /* Align MTU of VF with master */
2032 ret = dev_set_mtu(vf_netdev, ndev->mtu);
2033 if (ret)
2034 netdev_warn(vf_netdev,
2035 "unable to change mtu to %u\n", ndev->mtu);
2036
Stephen Hemmingerbee9d412018-03-02 13:49:09 -08002037 /* set multicast etc flags on VF */
2038 dev_change_flags(vf_netdev, ndev->flags | IFF_SLAVE);
Stephen Hemmingerb0dee792018-03-07 13:49:12 -08002039
2040 /* sync address list from ndev to VF */
2041 netif_addr_lock_bh(ndev);
Stephen Hemmingerbee9d412018-03-02 13:49:09 -08002042 dev_uc_sync(vf_netdev, ndev);
2043 dev_mc_sync(vf_netdev, ndev);
Stephen Hemmingerb0dee792018-03-07 13:49:12 -08002044 netif_addr_unlock_bh(ndev);
Stephen Hemmingerbee9d412018-03-02 13:49:09 -08002045
stephen hemminger0c195562017-08-01 19:58:53 -07002046 if (netif_running(ndev)) {
2047 ret = dev_open(vf_netdev);
2048 if (ret)
2049 netdev_warn(vf_netdev,
2050 "unable to open: %d\n", ret);
2051 }
2052}
2053
2054/* Setup VF as slave of the synthetic device.
2055 * Runs in workqueue to avoid recursion in netlink callbacks.
2056 */
2057static void netvsc_vf_setup(struct work_struct *w)
2058{
2059 struct net_device_context *ndev_ctx
stephen hemminger6123c662017-08-09 17:46:03 -07002060 = container_of(w, struct net_device_context, vf_takeover.work);
stephen hemminger0c195562017-08-01 19:58:53 -07002061 struct net_device *ndev = hv_get_drvdata(ndev_ctx->device_ctx);
2062 struct net_device *vf_netdev;
2063
stephen hemmingerfb84af82017-08-04 12:14:00 -07002064 if (!rtnl_trylock()) {
stephen hemminger6123c662017-08-09 17:46:03 -07002065 schedule_delayed_work(&ndev_ctx->vf_takeover, 0);
stephen hemmingerfb84af82017-08-04 12:14:00 -07002066 return;
2067 }
2068
stephen hemminger0c195562017-08-01 19:58:53 -07002069 vf_netdev = rtnl_dereference(ndev_ctx->vf_netdev);
2070 if (vf_netdev)
2071 __netvsc_vf_setup(ndev, vf_netdev);
2072
2073 rtnl_unlock();
2074}
2075
Haiyang Zhang3d7d10b2018-10-15 19:06:15 +00002076/* Find netvsc by VF serial number.
2077 * The PCI hyperv controller records the serial number as the slot kobj name.
Stephen Hemminger00d7ddb2018-09-14 12:54:57 -07002078 */
2079static struct net_device *get_netvsc_byslot(const struct net_device *vf_netdev)
2080{
2081 struct device *parent = vf_netdev->dev.parent;
2082 struct net_device_context *ndev_ctx;
2083 struct pci_dev *pdev;
Haiyang Zhang3d7d10b2018-10-15 19:06:15 +00002084 u32 serial;
Stephen Hemminger00d7ddb2018-09-14 12:54:57 -07002085
2086 if (!parent || !dev_is_pci(parent))
2087 return NULL; /* not a PCI device */
2088
2089 pdev = to_pci_dev(parent);
2090 if (!pdev->slot) {
2091 netdev_notice(vf_netdev, "no PCI slot information\n");
2092 return NULL;
2093 }
2094
Haiyang Zhang3d7d10b2018-10-15 19:06:15 +00002095 if (kstrtou32(pci_slot_name(pdev->slot), 10, &serial)) {
2096 netdev_notice(vf_netdev, "Invalid vf serial:%s\n",
2097 pci_slot_name(pdev->slot));
2098 return NULL;
2099 }
2100
Stephen Hemminger00d7ddb2018-09-14 12:54:57 -07002101 list_for_each_entry(ndev_ctx, &netvsc_dev_list, list) {
2102 if (!ndev_ctx->vf_alloc)
2103 continue;
2104
Haiyang Zhang3d7d10b2018-10-15 19:06:15 +00002105 if (ndev_ctx->vf_serial == serial)
Stephen Hemminger00d7ddb2018-09-14 12:54:57 -07002106 return hv_get_drvdata(ndev_ctx->device_ctx);
2107 }
2108
2109 netdev_notice(vf_netdev,
Haiyang Zhang3d7d10b2018-10-15 19:06:15 +00002110 "no netdev found for vf serial:%u\n", serial);
Stephen Hemminger00d7ddb2018-09-14 12:54:57 -07002111 return NULL;
2112}
2113
Stephen Hemminger8cde8f02018-06-11 12:44:54 -07002114static int netvsc_register_vf(struct net_device *vf_netdev)
KY Srinivasan84bf9ce2016-04-14 16:31:54 -07002115{
Vitaly Kuznetsov0a1275c2016-05-13 13:55:23 +02002116 struct net_device_context *net_device_ctx;
KY Srinivasan84bf9ce2016-04-14 16:31:54 -07002117 struct netvsc_device *netvsc_dev;
Stephen Hemminger00d7ddb2018-09-14 12:54:57 -07002118 struct net_device *ndev;
Stephen Hemmingerc0a41b82018-06-11 12:44:56 -07002119 int ret;
KY Srinivasan84bf9ce2016-04-14 16:31:54 -07002120
Stephen Hemminger8cde8f02018-06-11 12:44:54 -07002121 if (vf_netdev->addr_len != ETH_ALEN)
2122 return NOTIFY_DONE;
2123
Stephen Hemminger00d7ddb2018-09-14 12:54:57 -07002124 ndev = get_netvsc_byslot(vf_netdev);
Stephen Hemminger8cde8f02018-06-11 12:44:54 -07002125 if (!ndev)
2126 return NOTIFY_DONE;
2127
Vitaly Kuznetsov0a1275c2016-05-13 13:55:23 +02002128 net_device_ctx = netdev_priv(ndev);
stephen hemminger545a8e72017-03-22 14:51:00 -07002129 netvsc_dev = rtnl_dereference(net_device_ctx->nvdev);
Stephen Hemmingerf207c102016-09-22 16:56:33 -07002130 if (!netvsc_dev || rtnl_dereference(net_device_ctx->vf_netdev))
Stephen Hemminger8cde8f02018-06-11 12:44:54 -07002131 return NOTIFY_DONE;
KY Srinivasan84bf9ce2016-04-14 16:31:54 -07002132
Stephen Hemmingerc0a41b82018-06-11 12:44:56 -07002133 /* if syntihetic interface is a different namespace,
2134 * then move the VF to that namespace; join will be
2135 * done again in that context.
2136 */
2137 if (!net_eq(dev_net(ndev), dev_net(vf_netdev))) {
2138 ret = dev_change_net_namespace(vf_netdev,
2139 dev_net(ndev), "eth%d");
2140 if (ret)
2141 netdev_err(vf_netdev,
2142 "could not move to same namespace as %s: %d\n",
2143 ndev->name, ret);
2144 else
2145 netdev_info(vf_netdev,
2146 "VF moved to namespace with: %s\n",
2147 ndev->name);
Stephen Hemminger8cde8f02018-06-11 12:44:54 -07002148 return NOTIFY_DONE;
Stephen Hemmingerc0a41b82018-06-11 12:44:56 -07002149 }
stephen hemminger0c195562017-08-01 19:58:53 -07002150
Stephen Hemminger8cde8f02018-06-11 12:44:54 -07002151 netdev_info(ndev, "VF registering: %s\n", vf_netdev->name);
stephen hemminger0c195562017-08-01 19:58:53 -07002152
Stephen Hemmingerc0a41b82018-06-11 12:44:56 -07002153 if (netvsc_vf_join(vf_netdev, ndev) != 0)
2154 return NOTIFY_DONE;
2155
Stephen Hemminger07d0f002016-09-22 16:56:30 -07002156 dev_hold(vf_netdev);
Stephen Hemminger8cde8f02018-06-11 12:44:54 -07002157 rcu_assign_pointer(net_device_ctx->vf_netdev, vf_netdev);
2158 return NOTIFY_OK;
KY Srinivasan84bf9ce2016-04-14 16:31:54 -07002159}
2160
Stephen Hemminger9a0c48d2017-08-31 16:16:12 -07002161/* VF up/down change detected, schedule to change data path */
Stephen Hemminger8cde8f02018-06-11 12:44:54 -07002162static int netvsc_vf_changed(struct net_device *vf_netdev)
KY Srinivasan84bf9ce2016-04-14 16:31:54 -07002163{
KY Srinivasan84bf9ce2016-04-14 16:31:54 -07002164 struct net_device_context *net_device_ctx;
stephen hemminger7b83f522017-08-07 11:30:00 -07002165 struct netvsc_device *netvsc_dev;
Stephen Hemminger8cde8f02018-06-11 12:44:54 -07002166 struct net_device *ndev;
Stephen Hemminger9a0c48d2017-08-31 16:16:12 -07002167 bool vf_is_up = netif_running(vf_netdev);
KY Srinivasan84bf9ce2016-04-14 16:31:54 -07002168
Stephen Hemminger8cde8f02018-06-11 12:44:54 -07002169 ndev = get_netvsc_byref(vf_netdev);
2170 if (!ndev)
2171 return NOTIFY_DONE;
2172
Vitaly Kuznetsov0a1275c2016-05-13 13:55:23 +02002173 net_device_ctx = netdev_priv(ndev);
stephen hemminger7b83f522017-08-07 11:30:00 -07002174 netvsc_dev = rtnl_dereference(net_device_ctx->nvdev);
2175 if (!netvsc_dev)
Stephen Hemminger8cde8f02018-06-11 12:44:54 -07002176 return NOTIFY_DONE;
stephen hemminger7b83f522017-08-07 11:30:00 -07002177
Stephen Hemminger9a0c48d2017-08-31 16:16:12 -07002178 netvsc_switch_datapath(ndev, vf_is_up);
2179 netdev_info(ndev, "Data path switched %s VF: %s\n",
2180 vf_is_up ? "to" : "from", vf_netdev->name);
KY Srinivasan84bf9ce2016-04-14 16:31:54 -07002181
Stephen Hemminger8cde8f02018-06-11 12:44:54 -07002182 return NOTIFY_OK;
KY Srinivasan84bf9ce2016-04-14 16:31:54 -07002183}
2184
Stephen Hemminger8cde8f02018-06-11 12:44:54 -07002185static int netvsc_unregister_vf(struct net_device *vf_netdev)
KY Srinivasan84bf9ce2016-04-14 16:31:54 -07002186{
Stephen Hemminger8cde8f02018-06-11 12:44:54 -07002187 struct net_device *ndev;
Vitaly Kuznetsov0a1275c2016-05-13 13:55:23 +02002188 struct net_device_context *net_device_ctx;
KY Srinivasan84bf9ce2016-04-14 16:31:54 -07002189
Stephen Hemminger8cde8f02018-06-11 12:44:54 -07002190 ndev = get_netvsc_byref(vf_netdev);
2191 if (!ndev)
2192 return NOTIFY_DONE;
2193
Vitaly Kuznetsov0a1275c2016-05-13 13:55:23 +02002194 net_device_ctx = netdev_priv(ndev);
stephen hemminger6123c662017-08-09 17:46:03 -07002195 cancel_delayed_work_sync(&net_device_ctx->vf_takeover);
Stephen Hemmingere8ff40d2016-09-22 16:56:32 -07002196
Vitaly Kuznetsov0a1275c2016-05-13 13:55:23 +02002197 netdev_info(ndev, "VF unregistering: %s\n", vf_netdev->name);
Stephen Hemmingerf207c102016-09-22 16:56:33 -07002198
Stephen Hemminger8cde8f02018-06-11 12:44:54 -07002199 netdev_rx_handler_unregister(vf_netdev);
2200 netdev_upper_dev_unlink(vf_netdev, ndev);
Stephen Hemmingerf207c102016-09-22 16:56:33 -07002201 RCU_INIT_POINTER(net_device_ctx->vf_netdev, NULL);
Stephen Hemminger07d0f002016-09-22 16:56:30 -07002202 dev_put(vf_netdev);
Stephen Hemmingerec158f72017-08-31 16:16:13 -07002203
Stephen Hemminger8cde8f02018-06-11 12:44:54 -07002204 return NOTIFY_OK;
KY Srinivasan84bf9ce2016-04-14 16:31:54 -07002205}
2206
K. Y. Srinivasan84946892011-09-13 10:59:38 -07002207static int netvsc_probe(struct hv_device *dev,
2208 const struct hv_vmbus_device_id *dev_id)
Greg Kroah-Hartmandf2fff22009-08-31 21:11:12 -07002209{
Greg Kroah-Hartmandf2fff22009-08-31 21:11:12 -07002210 struct net_device *net = NULL;
2211 struct net_device_context *net_device_ctx;
Haiyang Zhangd2ce8e12019-01-15 00:51:43 +00002212 struct netvsc_device_info *device_info = NULL;
Haiyang Zhang5b54dac2014-04-21 10:20:28 -07002213 struct netvsc_device *nvdev;
stephen hemminger0c195562017-08-01 19:58:53 -07002214 int ret = -ENOMEM;
Greg Kroah-Hartmandf2fff22009-08-31 21:11:12 -07002215
Haiyang Zhang5b54dac2014-04-21 10:20:28 -07002216 net = alloc_etherdev_mq(sizeof(struct net_device_context),
stephen hemminger2b018882017-01-24 13:06:03 -08002217 VRSS_CHANNEL_MAX);
Greg Kroah-Hartmandf2fff22009-08-31 21:11:12 -07002218 if (!net)
stephen hemminger0c195562017-08-01 19:58:53 -07002219 goto no_net;
Greg Kroah-Hartmandf2fff22009-08-31 21:11:12 -07002220
Haiyang Zhang1b07da52014-03-04 14:11:06 -08002221 netif_carrier_off(net);
2222
Haiyang Zhangb37879e2016-08-04 10:42:14 -07002223 netvsc_init_settings(net);
2224
Greg Kroah-Hartmandf2fff22009-08-31 21:11:12 -07002225 net_device_ctx = netdev_priv(net);
K. Y. Srinivasan9efd21e2011-04-29 13:45:10 -07002226 net_device_ctx->device_ctx = dev;
Simon Xiao3f300ff2015-04-28 01:05:17 -07002227 net_device_ctx->msg_enable = netif_msg_init(debug, default_msg);
2228 if (netif_msg_probe(net_device_ctx))
2229 netdev_dbg(net, "netvsc msg_enable: %d\n",
2230 net_device_ctx->msg_enable);
2231
K. Y. Srinivasan2ddd5e52011-09-13 10:59:49 -07002232 hv_set_drvdata(dev, net);
Vitaly Kuznetsovf580aec2016-05-13 13:55:20 +02002233
Haiyang Zhang891de742014-02-12 16:54:27 -08002234 INIT_DELAYED_WORK(&net_device_ctx->dwork, netvsc_link_change);
Greg Kroah-Hartmandf2fff22009-08-31 21:11:12 -07002235
Vitaly Kuznetsov27a70af2015-11-27 11:39:55 +01002236 spin_lock_init(&net_device_ctx->lock);
2237 INIT_LIST_HEAD(&net_device_ctx->reconfig_events);
stephen hemminger6123c662017-08-09 17:46:03 -07002238 INIT_DELAYED_WORK(&net_device_ctx->vf_takeover, netvsc_vf_setup);
stephen hemminger0c195562017-08-01 19:58:53 -07002239
2240 net_device_ctx->vf_stats
2241 = netdev_alloc_pcpu_stats(struct netvsc_vf_pcpu_stats);
2242 if (!net_device_ctx->vf_stats)
2243 goto no_stats;
Vitaly Kuznetsov27a70af2015-11-27 11:39:55 +01002244
Greg Kroah-Hartmandf2fff22009-08-31 21:11:12 -07002245 net->netdev_ops = &device_ops;
Wilfried Klaebe7ad24ea2014-05-11 00:12:32 +00002246 net->ethtool_ops = &ethtool_ops;
K. Y. Srinivasan9efd21e2011-04-29 13:45:10 -07002247 SET_NETDEV_DEV(net, &dev->device);
Greg Kroah-Hartmandf2fff22009-08-31 21:11:12 -07002248
Vitaly Kuznetsov14a03cf2016-02-05 17:29:08 +01002249 /* We always need headroom for rndis header */
2250 net->needed_headroom = RNDIS_AND_PPI_SIZE;
2251
Haiyang Zhang6450f8f2017-09-22 15:31:38 -07002252 /* Initialize the number of queues to be 1, we may change it if more
2253 * channels are offered later.
2254 */
2255 netif_set_real_num_tx_queues(net, 1);
2256 netif_set_real_num_rx_queues(net, 1);
2257
Haiyang Zhang692e0842011-09-01 12:19:43 -07002258 /* Notify the netvsc driver of the new device */
Haiyang Zhangd2ce8e12019-01-15 00:51:43 +00002259 device_info = netvsc_devinfo_get(NULL);
stephen hemminger9749fed2017-07-19 11:53:16 -07002260
Haiyang Zhangd2ce8e12019-01-15 00:51:43 +00002261 if (!device_info) {
2262 ret = -ENOMEM;
2263 goto devinfo_failed;
2264 }
2265
2266 nvdev = rndis_filter_device_add(dev, device_info);
stephen hemminger9749fed2017-07-19 11:53:16 -07002267 if (IS_ERR(nvdev)) {
2268 ret = PTR_ERR(nvdev);
Haiyang Zhang692e0842011-09-01 12:19:43 -07002269 netdev_err(net, "unable to add netvsc device (ret %d)\n", ret);
stephen hemminger0c195562017-08-01 19:58:53 -07002270 goto rndis_failed;
Haiyang Zhang692e0842011-09-01 12:19:43 -07002271 }
stephen hemminger0c195562017-08-01 19:58:53 -07002272
Haiyang Zhangd2ce8e12019-01-15 00:51:43 +00002273 memcpy(net->dev_addr, device_info->mac_adr, ETH_ALEN);
Haiyang Zhang692e0842011-09-01 12:19:43 -07002274
Dexuan Cuie04e7a72018-08-30 05:42:13 +00002275 /* We must get rtnl lock before scheduling nvdev->subchan_work,
2276 * otherwise netvsc_subchan_work() can get rtnl lock first and wait
2277 * all subchannels to show up, but that may not happen because
2278 * netvsc_probe() can't get rtnl lock and as a result vmbus_onoffer()
2279 * -> ... -> device_add() -> ... -> __device_attach() can't get
2280 * the device lock, so all the subchannels can't be processed --
2281 * finally netvsc_subchan_work() hangs for ever.
2282 */
2283 rtnl_lock();
2284
Stephen Hemminger3ffe64f2018-06-29 14:07:16 -07002285 if (nvdev->num_chn > 1)
2286 schedule_work(&nvdev->subchan_work);
2287
Vitaly Kuznetsovaefd80e2017-11-15 15:12:55 +01002288 /* hw_features computed in rndis_netdev_set_hwcaps() */
stephen hemminger23312a32017-01-24 13:05:59 -08002289 net->features = net->hw_features |
2290 NETIF_F_HIGHDMA | NETIF_F_SG |
2291 NETIF_F_HW_VLAN_CTAG_TX | NETIF_F_HW_VLAN_CTAG_RX;
2292 net->vlan_features = net->features;
2293
stephen hemminger9749fed2017-07-19 11:53:16 -07002294 netdev_lockdep_set_classes(net);
2295
Jarod Wilsond0c2c992016-10-20 13:55:21 -04002296 /* MTU range: 68 - 1500 or 65521 */
2297 net->min_mtu = NETVSC_MTU_MIN;
2298 if (nvdev->nvsp_version >= NVSP_PROTOCOL_VERSION_2)
2299 net->max_mtu = NETVSC_MTU - ETH_HLEN;
2300 else
2301 net->max_mtu = ETH_DATA_LEN;
2302
Stephen Hemminger7bf7bb32018-06-11 12:44:55 -07002303 ret = register_netdevice(net);
Haiyang Zhanga68f9612013-12-20 16:52:31 -08002304 if (ret != 0) {
2305 pr_err("Unable to register netdev.\n");
stephen hemminger0c195562017-08-01 19:58:53 -07002306 goto register_failed;
Haiyang Zhanga68f9612013-12-20 16:52:31 -08002307 }
2308
Stephen Hemminger7bf7bb32018-06-11 12:44:55 -07002309 list_add(&net_device_ctx->list, &netvsc_dev_list);
2310 rtnl_unlock();
Haiyang Zhangd2ce8e12019-01-15 00:51:43 +00002311
2312 kfree(device_info);
Stephen Hemminger7bf7bb32018-06-11 12:44:55 -07002313 return 0;
stephen hemminger0c195562017-08-01 19:58:53 -07002314
2315register_failed:
Stephen Hemminger7bf7bb32018-06-11 12:44:55 -07002316 rtnl_unlock();
stephen hemminger0c195562017-08-01 19:58:53 -07002317 rndis_filter_device_remove(dev, nvdev);
2318rndis_failed:
Haiyang Zhangd2ce8e12019-01-15 00:51:43 +00002319 kfree(device_info);
2320devinfo_failed:
stephen hemminger0c195562017-08-01 19:58:53 -07002321 free_percpu(net_device_ctx->vf_stats);
2322no_stats:
2323 hv_set_drvdata(dev, NULL);
2324 free_netdev(net);
2325no_net:
2326 return ret;
Greg Kroah-Hartmandf2fff22009-08-31 21:11:12 -07002327}
2328
K. Y. Srinivasan415b0232011-04-29 13:45:12 -07002329static int netvsc_remove(struct hv_device *dev)
Greg Kroah-Hartmandf2fff22009-08-31 21:11:12 -07002330{
Haiyang Zhang122a5f62011-05-27 06:21:55 -07002331 struct net_device_context *ndev_ctx;
Stephen Hemminger7b2ee502018-03-20 15:03:05 -07002332 struct net_device *vf_netdev, *net;
2333 struct netvsc_device *nvdev;
K. Y. Srinivasan2ddd5e52011-09-13 10:59:49 -07002334
Vitaly Kuznetsov3d541ac2016-05-13 13:55:22 +02002335 net = hv_get_drvdata(dev);
Greg Kroah-Hartmandf2fff22009-08-31 21:11:12 -07002336 if (net == NULL) {
K. Y. Srinivasan415b0232011-04-29 13:45:12 -07002337 dev_err(&dev->device, "No net device to remove\n");
Greg Kroah-Hartmandf2fff22009-08-31 21:11:12 -07002338 return 0;
2339 }
2340
Haiyang Zhang122a5f62011-05-27 06:21:55 -07002341 ndev_ctx = netdev_priv(net);
Vitaly Kuznetsov3d541ac2016-05-13 13:55:22 +02002342
Haiyang Zhang122a5f62011-05-27 06:21:55 -07002343 cancel_delayed_work_sync(&ndev_ctx->dwork);
2344
Stephen Hemminger018349d2018-09-13 08:03:43 -07002345 rtnl_lock();
2346 nvdev = rtnl_dereference(ndev_ctx->nvdev);
2347 if (nvdev)
Stephen Hemminger7b2ee502018-03-20 15:03:05 -07002348 cancel_work_sync(&nvdev->subchan_work);
2349
Greg Kroah-Hartmandf2fff22009-08-31 21:11:12 -07002350 /*
2351 * Call to the vsc driver to let it know that the device is being
stephen hemmingera0be4502017-03-22 14:51:01 -07002352 * removed. Also blocks mtu and channel changes.
Greg Kroah-Hartmandf2fff22009-08-31 21:11:12 -07002353 */
Stephen Hemmingerec158f72017-08-31 16:16:13 -07002354 vf_netdev = rtnl_dereference(ndev_ctx->vf_netdev);
2355 if (vf_netdev)
Stephen Hemminger8cde8f02018-06-11 12:44:54 -07002356 netvsc_unregister_vf(vf_netdev);
Stephen Hemmingerec158f72017-08-31 16:16:13 -07002357
Stephen Hemminger7b2ee502018-03-20 15:03:05 -07002358 if (nvdev)
2359 rndis_filter_device_remove(dev, nvdev);
2360
Stephen Hemminger8195b132017-09-06 13:53:05 -07002361 unregister_netdevice(net);
Stephen Hemminger7bf7bb32018-06-11 12:44:55 -07002362 list_del(&ndev_ctx->list);
Stephen Hemminger8195b132017-09-06 13:53:05 -07002363
stephen hemmingera0be4502017-03-22 14:51:01 -07002364 rtnl_unlock();
2365
Vitaly Kuznetsov3d541ac2016-05-13 13:55:22 +02002366 hv_set_drvdata(dev, NULL);
2367
stephen hemminger0c195562017-08-01 19:58:53 -07002368 free_percpu(ndev_ctx->vf_stats);
Simon Xiao6c80f3f2017-01-24 13:06:13 -08002369 free_netdev(net);
Haiyang Zhangdf06bcf2011-05-23 09:03:47 -07002370 return 0;
Greg Kroah-Hartmandf2fff22009-08-31 21:11:12 -07002371}
2372
K. Y. Srinivasan345c4cc2011-08-25 09:48:34 -07002373static const struct hv_vmbus_device_id id_table[] = {
Greg Kroah-Hartmanc45cf2d2011-08-25 11:41:33 -07002374 /* Network guid */
K. Y. Srinivasan8f505942013-01-23 17:42:42 -08002375 { HV_NIC_GUID, },
Greg Kroah-Hartmanc45cf2d2011-08-25 11:41:33 -07002376 { },
K. Y. Srinivasan345c4cc2011-08-25 09:48:34 -07002377};
2378
2379MODULE_DEVICE_TABLE(vmbus, id_table);
2380
K. Y. Srinivasanf1542a62011-05-10 07:55:16 -07002381/* The one and only one */
K. Y. Srinivasanfde0ef92011-05-12 19:35:08 -07002382static struct hv_driver netvsc_drv = {
Haiyang Zhangd31b20f2012-03-07 10:02:00 +00002383 .name = KBUILD_MODNAME,
K. Y. Srinivasan345c4cc2011-08-25 09:48:34 -07002384 .id_table = id_table,
K. Y. Srinivasanfde0ef92011-05-12 19:35:08 -07002385 .probe = netvsc_probe,
2386 .remove = netvsc_remove,
Arjan van de Venaf0a5642018-06-05 13:37:49 -07002387 .driver = {
2388 .probe_type = PROBE_PREFER_ASYNCHRONOUS,
2389 },
K. Y. Srinivasand4890972011-05-10 07:55:17 -07002390};
K. Y. Srinivasanf1542a62011-05-10 07:55:16 -07002391
Stephen Hemminger8cde8f02018-06-11 12:44:54 -07002392/*
2393 * On Hyper-V, every VF interface is matched with a corresponding
2394 * synthetic interface. The synthetic interface is presented first
2395 * to the guest. When the corresponding VF instance is registered,
2396 * we will take care of switching the data path.
2397 */
2398static int netvsc_netdev_event(struct notifier_block *this,
2399 unsigned long event, void *ptr)
2400{
2401 struct net_device *event_dev = netdev_notifier_info_to_dev(ptr);
2402
2403 /* Skip our own events */
2404 if (event_dev->netdev_ops == &device_ops)
2405 return NOTIFY_DONE;
2406
2407 /* Avoid non-Ethernet type devices */
2408 if (event_dev->type != ARPHRD_ETHER)
2409 return NOTIFY_DONE;
2410
2411 /* Avoid Vlan dev with same MAC registering as VF */
2412 if (is_vlan_dev(event_dev))
2413 return NOTIFY_DONE;
2414
2415 /* Avoid Bonding master dev with same MAC registering as VF */
2416 if ((event_dev->priv_flags & IFF_BONDING) &&
2417 (event_dev->flags & IFF_MASTER))
2418 return NOTIFY_DONE;
2419
2420 switch (event) {
2421 case NETDEV_REGISTER:
2422 return netvsc_register_vf(event_dev);
2423 case NETDEV_UNREGISTER:
2424 return netvsc_unregister_vf(event_dev);
2425 case NETDEV_UP:
2426 case NETDEV_DOWN:
2427 return netvsc_vf_changed(event_dev);
2428 default:
2429 return NOTIFY_DONE;
2430 }
2431}
2432
2433static struct notifier_block netvsc_netdev_notifier = {
2434 .notifier_call = netvsc_netdev_event,
2435};
2436
K. Y. Srinivasana9869c92011-05-12 19:35:17 -07002437static void __exit netvsc_drv_exit(void)
Hank Janssenfceaf242009-07-13 15:34:54 -07002438{
Stephen Hemminger8cde8f02018-06-11 12:44:54 -07002439 unregister_netdevice_notifier(&netvsc_netdev_notifier);
Greg Kroah-Hartman768fa212011-08-25 15:07:32 -07002440 vmbus_driver_unregister(&netvsc_drv);
Hank Janssenfceaf242009-07-13 15:34:54 -07002441}
2442
K. Y. Srinivasan1fde28c2011-05-12 19:35:16 -07002443static int __init netvsc_drv_init(void)
Greg Kroah-Hartmandf2fff22009-08-31 21:11:12 -07002444{
KY Srinivasan84bf9ce2016-04-14 16:31:54 -07002445 int ret;
2446
Haiyang Zhangfa85a6c2012-07-25 08:08:41 +00002447 if (ring_size < RING_SIZE_MIN) {
2448 ring_size = RING_SIZE_MIN;
Stephen Hemmingera7f99d02017-12-01 11:01:47 -08002449 pr_info("Increased ring_size to %u (min allowed)\n",
Haiyang Zhangfa85a6c2012-07-25 08:08:41 +00002450 ring_size);
2451 }
Stephen Hemmingera7f99d02017-12-01 11:01:47 -08002452 netvsc_ring_bytes = ring_size * PAGE_SIZE;
KY Srinivasan84bf9ce2016-04-14 16:31:54 -07002453
Stephen Hemmingera7f99d02017-12-01 11:01:47 -08002454 ret = vmbus_driver_register(&netvsc_drv);
KY Srinivasan84bf9ce2016-04-14 16:31:54 -07002455 if (ret)
2456 return ret;
2457
Stephen Hemminger8cde8f02018-06-11 12:44:54 -07002458 register_netdevice_notifier(&netvsc_netdev_notifier);
KY Srinivasan84bf9ce2016-04-14 16:31:54 -07002459 return 0;
Greg Kroah-Hartmandf2fff22009-08-31 21:11:12 -07002460}
2461
Hank Janssen26c14cc2010-02-11 23:02:42 +00002462MODULE_LICENSE("GPL");
Stephen Hemminger7880fc52010-05-04 09:58:52 -07002463MODULE_DESCRIPTION("Microsoft Hyper-V network driver");
Hank Janssenfceaf242009-07-13 15:34:54 -07002464
K. Y. Srinivasan1fde28c2011-05-12 19:35:16 -07002465module_init(netvsc_drv_init);
K. Y. Srinivasana9869c92011-05-12 19:35:17 -07002466module_exit(netvsc_drv_exit);