blob: 9bc7dbab9506e1bc23110cb45e5275b26741f212 [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>
32#include <linux/skbuff.h>
Haiyang Zhangc802db12013-05-28 06:15:56 +000033#include <linux/if_vlan.h>
Hank Janssenfceaf242009-07-13 15:34:54 -070034#include <linux/in.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090035#include <linux/slab.h>
stephen hemminger27f5aa92017-07-24 10:57:29 -070036#include <linux/rtnetlink.h>
stephen hemminger0c195562017-08-01 19:58:53 -070037#include <linux/netpoll.h>
stephen hemminger27f5aa92017-07-24 10:57:29 -070038
Hank Janssenfceaf242009-07-13 15:34:54 -070039#include <net/arp.h>
40#include <net/route.h>
41#include <net/sock.h>
42#include <net/pkt_sched.h>
Michael Kelley8eb1b3c2017-05-30 11:36:56 -070043#include <net/checksum.h>
44#include <net/ip6_checksum.h>
K. Y. Srinivasan3f335ea2011-05-12 19:34:15 -070045
K. Y. Srinivasan5ca72522011-05-12 19:34:37 -070046#include "hyperv_net.h"
Hank Janssenfceaf242009-07-13 15:34:54 -070047
stephen hemminger8b532792017-08-09 17:46:11 -070048#define RING_SIZE_MIN 64
49#define NETVSC_MIN_TX_SECTIONS 10
50#define NETVSC_DEFAULT_TX 192 /* ~1M */
51#define NETVSC_MIN_RX_SECTIONS 10 /* ~64K */
Stephen Hemminger5023a6d2017-09-14 09:31:07 -070052#define NETVSC_DEFAULT_RX 10485 /* Max ~16M */
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
Hank Janssen99c8da02010-10-12 10:45:23 -070057static int ring_size = 128;
Stephen Hemminger450d7a42010-05-04 09:58:53 -070058module_param(ring_size, int, S_IRUGO);
59MODULE_PARM_DESC(ring_size, "Ring buffer size (# of pages)");
Hank Janssenfceaf242009-07-13 15:34:54 -070060
Simon Xiao3f300ff2015-04-28 01:05:17 -070061static const u32 default_msg = NETIF_MSG_DRV | NETIF_MSG_PROBE |
62 NETIF_MSG_LINK | NETIF_MSG_IFUP |
63 NETIF_MSG_IFDOWN | NETIF_MSG_RX_ERR |
64 NETIF_MSG_TX_ERR;
65
66static int debug = -1;
67module_param(debug, int, S_IRUGO);
68MODULE_PARM_DESC(debug, "Debug level (0=none,...,16=all)");
69
Greg Kroah-Hartman4e9bfef2009-07-15 12:45:20 -070070static void netvsc_set_multicast_list(struct net_device *net)
Hank Janssenfceaf242009-07-13 15:34:54 -070071{
Wenqi Ma792df872012-04-19 00:39:37 +000072 struct net_device_context *net_device_ctx = netdev_priv(net);
stephen hemminger4f19c0d2017-06-07 15:53:49 -070073 struct netvsc_device *nvdev = rtnl_dereference(net_device_ctx->nvdev);
Haiyang Zhangd426b2e2011-11-30 07:19:08 -080074
stephen hemminger4f19c0d2017-06-07 15:53:49 -070075 rndis_filter_update(nvdev);
Hank Janssenfceaf242009-07-13 15:34:54 -070076}
77
Hank Janssenfceaf242009-07-13 15:34:54 -070078static int netvsc_open(struct net_device *net)
79{
Haiyang Zhang53fa1a62017-06-21 16:40:47 -070080 struct net_device_context *ndev_ctx = netdev_priv(net);
stephen hemminger0c195562017-08-01 19:58:53 -070081 struct net_device *vf_netdev = rtnl_dereference(ndev_ctx->vf_netdev);
stephen hemminger79e8cbe2017-07-19 11:53:13 -070082 struct netvsc_device *nvdev = rtnl_dereference(ndev_ctx->nvdev);
Haiyang Zhang891de742014-02-12 16:54:27 -080083 struct rndis_device *rdev;
Greg Kroah-Hartman02fafbc2009-08-31 21:09:45 -070084 int ret = 0;
Hank Janssenfceaf242009-07-13 15:34:54 -070085
Haiyang Zhang891de742014-02-12 16:54:27 -080086 netif_carrier_off(net);
87
Haiyang Zhangd515d0f2011-09-28 13:24:15 -070088 /* Open up the device */
Vitaly Kuznetsov2f5fa6c2016-06-03 17:51:00 +020089 ret = rndis_filter_open(nvdev);
Haiyang Zhangd515d0f2011-09-28 13:24:15 -070090 if (ret != 0) {
91 netdev_err(net, "unable to open device (ret %d).\n", ret);
92 return ret;
Hank Janssenfceaf242009-07-13 15:34:54 -070093 }
94
Haiyang Zhang2de85302015-07-13 13:09:16 -070095 netif_tx_wake_all_queues(net);
Haiyang Zhangd515d0f2011-09-28 13:24:15 -070096
Haiyang Zhang891de742014-02-12 16:54:27 -080097 rdev = nvdev->extension;
stephen hemminger0c195562017-08-01 19:58:53 -070098
99 if (!rdev->link_state)
Haiyang Zhang891de742014-02-12 16:54:27 -0800100 netif_carrier_on(net);
101
stephen hemminger0c195562017-08-01 19:58:53 -0700102 if (vf_netdev) {
103 /* Setting synthetic device up transparently sets
104 * slave as up. If open fails, then slave will be
105 * still be offline (and not used).
106 */
107 ret = dev_open(vf_netdev);
108 if (ret)
109 netdev_warn(net,
110 "unable to open slave: %s: %d\n",
111 vf_netdev->name, ret);
112 }
113 return 0;
Hank Janssenfceaf242009-07-13 15:34:54 -0700114}
115
Hank Janssenfceaf242009-07-13 15:34:54 -0700116static int netvsc_close(struct net_device *net)
117{
Hank Janssenfceaf242009-07-13 15:34:54 -0700118 struct net_device_context *net_device_ctx = netdev_priv(net);
stephen hemminger0c195562017-08-01 19:58:53 -0700119 struct net_device *vf_netdev
120 = rtnl_dereference(net_device_ctx->vf_netdev);
stephen hemminger545a8e72017-03-22 14:51:00 -0700121 struct netvsc_device *nvdev = rtnl_dereference(net_device_ctx->nvdev);
Haiyang Zhangc6f71c42017-08-24 11:50:02 -0700122 int ret = 0;
stephen hemminger40975962017-06-08 16:21:19 -0700123 u32 aread, i, msec = 10, retry = 0, retry_max = 20;
Haiyang Zhang2de85302015-07-13 13:09:16 -0700124 struct vmbus_channel *chn;
Hank Janssenfceaf242009-07-13 15:34:54 -0700125
Haiyang Zhang0a282532012-02-02 07:17:59 +0000126 netif_tx_disable(net);
Hank Janssenfceaf242009-07-13 15:34:54 -0700127
Haiyang Zhangc6f71c42017-08-24 11:50:02 -0700128 /* No need to close rndis filter if it is removed already */
129 if (!nvdev)
130 goto out;
131
Vitaly Kuznetsov2f5fa6c2016-06-03 17:51:00 +0200132 ret = rndis_filter_close(nvdev);
Haiyang Zhang2de85302015-07-13 13:09:16 -0700133 if (ret != 0) {
Hank Jansseneb335bc2011-03-29 13:58:48 -0700134 netdev_err(net, "unable to close device (ret %d).\n", ret);
Haiyang Zhang2de85302015-07-13 13:09:16 -0700135 return ret;
136 }
137
138 /* Ensure pending bytes in ring are read */
139 while (true) {
140 aread = 0;
141 for (i = 0; i < nvdev->num_chn; i++) {
stephen hemmingerb8b835a2017-01-24 13:06:07 -0800142 chn = nvdev->chan_table[i].channel;
Haiyang Zhang2de85302015-07-13 13:09:16 -0700143 if (!chn)
144 continue;
145
stephen hemminger40975962017-06-08 16:21:19 -0700146 aread = hv_get_bytes_to_read(&chn->inbound);
Haiyang Zhang2de85302015-07-13 13:09:16 -0700147 if (aread)
148 break;
149
stephen hemminger40975962017-06-08 16:21:19 -0700150 aread = hv_get_bytes_to_read(&chn->outbound);
Haiyang Zhang2de85302015-07-13 13:09:16 -0700151 if (aread)
152 break;
153 }
154
155 retry++;
156 if (retry > retry_max || aread == 0)
157 break;
158
159 msleep(msec);
160
161 if (msec < 1000)
162 msec *= 2;
163 }
164
165 if (aread) {
166 netdev_err(net, "Ring buffer not empty after closing rndis\n");
167 ret = -ETIMEDOUT;
168 }
Hank Janssenfceaf242009-07-13 15:34:54 -0700169
Haiyang Zhangc6f71c42017-08-24 11:50:02 -0700170out:
stephen hemminger0c195562017-08-01 19:58:53 -0700171 if (vf_netdev)
172 dev_close(vf_netdev);
173
Hank Janssenfceaf242009-07-13 15:34:54 -0700174 return ret;
175}
176
KY Srinivasan8a002512014-03-08 19:23:14 -0800177static void *init_ppi_data(struct rndis_message *msg, u32 ppi_size,
stephen hemminger89bb42b2017-08-09 17:46:08 -0700178 int pkt_type)
KY Srinivasan8a002512014-03-08 19:23:14 -0800179{
180 struct rndis_packet *rndis_pkt;
181 struct rndis_per_packet_info *ppi;
182
183 rndis_pkt = &msg->msg.pkt;
184 rndis_pkt->data_offset += ppi_size;
185
186 ppi = (struct rndis_per_packet_info *)((void *)rndis_pkt +
187 rndis_pkt->per_pkt_info_offset + rndis_pkt->per_pkt_info_len);
188
189 ppi->size = ppi_size;
190 ppi->type = pkt_type;
191 ppi->ppi_offset = sizeof(struct rndis_per_packet_info);
192
193 rndis_pkt->per_pkt_info_len += ppi_size;
194
195 return ppi;
196}
197
Haiyang Zhang4823eb22017-08-21 19:22:39 -0700198/* Azure hosts don't support non-TCP port numbers in hashing for fragmented
199 * packets. We can use ethtool to change UDP hash level when necessary.
Haiyang Zhangf72860a2017-04-12 11:45:18 -0700200 */
Haiyang Zhang4823eb22017-08-21 19:22:39 -0700201static inline u32 netvsc_get_hash(
202 struct sk_buff *skb,
203 const struct net_device_context *ndc)
Haiyang Zhangf72860a2017-04-12 11:45:18 -0700204{
205 struct flow_keys flow;
Haiyang Zhang486e3982017-10-06 08:33:57 -0700206 u32 hash, pkt_proto = 0;
Haiyang Zhangf72860a2017-04-12 11:45:18 -0700207 static u32 hashrnd __read_mostly;
208
209 net_get_random_once(&hashrnd, sizeof(hashrnd));
210
211 if (!skb_flow_dissect_flow_keys(skb, &flow, 0))
212 return 0;
213
Haiyang Zhang486e3982017-10-06 08:33:57 -0700214 switch (flow.basic.ip_proto) {
215 case IPPROTO_TCP:
216 if (flow.basic.n_proto == htons(ETH_P_IP))
217 pkt_proto = HV_TCP4_L4HASH;
218 else if (flow.basic.n_proto == htons(ETH_P_IPV6))
219 pkt_proto = HV_TCP6_L4HASH;
220
221 break;
222
223 case IPPROTO_UDP:
224 if (flow.basic.n_proto == htons(ETH_P_IP))
225 pkt_proto = HV_UDP4_L4HASH;
226 else if (flow.basic.n_proto == htons(ETH_P_IPV6))
227 pkt_proto = HV_UDP6_L4HASH;
228
229 break;
230 }
231
232 if (pkt_proto & ndc->l4_hash) {
Haiyang Zhangf72860a2017-04-12 11:45:18 -0700233 return skb_get_hash(skb);
234 } else {
235 if (flow.basic.n_proto == htons(ETH_P_IP))
236 hash = jhash2((u32 *)&flow.addrs.v4addrs, 2, hashrnd);
237 else if (flow.basic.n_proto == htons(ETH_P_IPV6))
238 hash = jhash2((u32 *)&flow.addrs.v6addrs, 8, hashrnd);
239 else
240 hash = 0;
241
242 skb_set_hash(skb, hash, PKT_HASH_TYPE_L3);
243 }
244
245 return hash;
246}
247
Haiyang Zhang8db91f62017-04-12 11:35:05 -0700248static inline int netvsc_get_tx_queue(struct net_device *ndev,
249 struct sk_buff *skb, int old_idx)
250{
251 const struct net_device_context *ndc = netdev_priv(ndev);
252 struct sock *sk = skb->sk;
253 int q_idx;
254
Haiyang Zhang4823eb22017-08-21 19:22:39 -0700255 q_idx = ndc->tx_send_table[netvsc_get_hash(skb, ndc) &
Haiyang Zhang8db91f62017-04-12 11:35:05 -0700256 (VRSS_SEND_TAB_SIZE - 1)];
257
258 /* If queue index changed record the new value */
259 if (q_idx != old_idx &&
260 sk && sk_fullsock(sk) && rcu_access_pointer(sk->sk_dst_cache))
261 sk_tx_queue_set(sk, q_idx);
262
263 return q_idx;
264}
265
stephen hemmingerd8e18ee2017-01-24 13:06:05 -0800266/*
267 * Select queue for transmit.
268 *
269 * If a valid queue has already been assigned, then use that.
270 * Otherwise compute tx queue based on hash and the send table.
271 *
272 * This is basically similar to default (__netdev_pick_tx) with the added step
273 * of using the host send_table when no other queue has been assigned.
274 *
275 * TODO support XPS - but get_xps_queue not exported
276 */
stephen hemminger0c195562017-08-01 19:58:53 -0700277static u16 netvsc_pick_tx(struct net_device *ndev, struct sk_buff *skb)
Haiyang Zhang5b54dac2014-04-21 10:20:28 -0700278{
Haiyang Zhang8db91f62017-04-12 11:35:05 -0700279 int q_idx = sk_tx_queue_get(skb->sk);
Haiyang Zhang5b54dac2014-04-21 10:20:28 -0700280
stephen hemminger0c195562017-08-01 19:58:53 -0700281 if (q_idx < 0 || skb->ooo_okay || q_idx >= ndev->real_num_tx_queues) {
Haiyang Zhang8db91f62017-04-12 11:35:05 -0700282 /* If forwarding a packet, we use the recorded queue when
283 * available for better cache locality.
284 */
285 if (skb_rx_queue_recorded(skb))
286 q_idx = skb_get_rx_queue(skb);
287 else
288 q_idx = netvsc_get_tx_queue(ndev, skb, q_idx);
stephen hemmingerd8e18ee2017-01-24 13:06:05 -0800289 }
290
Haiyang Zhang5b54dac2014-04-21 10:20:28 -0700291 return q_idx;
292}
293
stephen hemminger0c195562017-08-01 19:58:53 -0700294static u16 netvsc_select_queue(struct net_device *ndev, struct sk_buff *skb,
295 void *accel_priv,
296 select_queue_fallback_t fallback)
297{
298 struct net_device_context *ndc = netdev_priv(ndev);
299 struct net_device *vf_netdev;
300 u16 txq;
301
302 rcu_read_lock();
303 vf_netdev = rcu_dereference(ndc->vf_netdev);
304 if (vf_netdev) {
305 txq = skb_rx_queue_recorded(skb) ? skb_get_rx_queue(skb) : 0;
306 qdisc_skb_cb(skb)->slave_dev_queue_mapping = skb->queue_mapping;
307 } else {
308 txq = netvsc_pick_tx(ndev, skb);
309 }
310 rcu_read_unlock();
311
312 while (unlikely(txq >= ndev->real_num_tx_queues))
313 txq -= ndev->real_num_tx_queues;
314
315 return txq;
316}
317
KY Srinivasan54a73572014-03-08 19:23:13 -0800318static u32 fill_pg_buf(struct page *page, u32 offset, u32 len,
stephen hemminger89bb42b2017-08-09 17:46:08 -0700319 struct hv_page_buffer *pb)
KY Srinivasan54a73572014-03-08 19:23:13 -0800320{
321 int j = 0;
322
323 /* Deal with compund pages by ignoring unused part
324 * of the page.
325 */
326 page += (offset >> PAGE_SHIFT);
327 offset &= ~PAGE_MASK;
328
329 while (len > 0) {
330 unsigned long bytes;
331
332 bytes = PAGE_SIZE - offset;
333 if (bytes > len)
334 bytes = len;
335 pb[j].pfn = page_to_pfn(page);
336 pb[j].offset = offset;
337 pb[j].len = bytes;
338
339 offset += bytes;
340 len -= bytes;
341
342 if (offset == PAGE_SIZE && len) {
343 page++;
344 offset = 0;
345 j++;
346 }
347 }
348
349 return j + 1;
350}
351
KY Srinivasan8a002512014-03-08 19:23:14 -0800352static u32 init_page_array(void *hdr, u32 len, struct sk_buff *skb,
KY Srinivasana9f2e2d2015-12-01 16:43:13 -0800353 struct hv_netvsc_packet *packet,
stephen hemminger02b6de02017-07-28 08:59:44 -0700354 struct hv_page_buffer *pb)
KY Srinivasan54a73572014-03-08 19:23:13 -0800355{
356 u32 slots_used = 0;
357 char *data = skb->data;
358 int frags = skb_shinfo(skb)->nr_frags;
359 int i;
360
361 /* The packet is laid out thus:
Haiyang Zhangaa0a34b2015-04-13 16:34:35 -0700362 * 1. hdr: RNDIS header and PPI
KY Srinivasan54a73572014-03-08 19:23:13 -0800363 * 2. skb linear data
364 * 3. skb fragment data
365 */
stephen hemmingerea5a32c2017-08-09 17:46:10 -0700366 slots_used += fill_pg_buf(virt_to_page(hdr),
367 offset_in_page(hdr),
368 len, &pb[slots_used]);
KY Srinivasan54a73572014-03-08 19:23:13 -0800369
Haiyang Zhangaa0a34b2015-04-13 16:34:35 -0700370 packet->rmsg_size = len;
371 packet->rmsg_pgcnt = slots_used;
372
KY Srinivasan54a73572014-03-08 19:23:13 -0800373 slots_used += fill_pg_buf(virt_to_page(data),
374 offset_in_page(data),
375 skb_headlen(skb), &pb[slots_used]);
376
377 for (i = 0; i < frags; i++) {
378 skb_frag_t *frag = skb_shinfo(skb)->frags + i;
379
380 slots_used += fill_pg_buf(skb_frag_page(frag),
381 frag->page_offset,
382 skb_frag_size(frag), &pb[slots_used]);
383 }
KY Srinivasan8a002512014-03-08 19:23:14 -0800384 return slots_used;
KY Srinivasan54a73572014-03-08 19:23:13 -0800385}
386
stephen hemminger80d887d2017-07-24 21:03:19 -0700387static int count_skb_frag_slots(struct sk_buff *skb)
KY Srinivasan54a73572014-03-08 19:23:13 -0800388{
stephen hemminger80d887d2017-07-24 21:03:19 -0700389 int i, frags = skb_shinfo(skb)->nr_frags;
390 int pages = 0;
391
392 for (i = 0; i < frags; i++) {
393 skb_frag_t *frag = skb_shinfo(skb)->frags + i;
394 unsigned long size = skb_frag_size(frag);
395 unsigned long offset = frag->page_offset;
396
397 /* Skip unused frames from start of page */
398 offset &= ~PAGE_MASK;
399 pages += PFN_UP(offset + size);
400 }
401 return pages;
402}
403
404static int netvsc_get_slots(struct sk_buff *skb)
405{
406 char *data = skb->data;
407 unsigned int offset = offset_in_page(data);
408 unsigned int len = skb_headlen(skb);
409 int slots;
410 int frag_slots;
411
412 slots = DIV_ROUND_UP(offset + len, PAGE_SIZE);
413 frag_slots = count_skb_frag_slots(skb);
414 return slots + frag_slots;
KY Srinivasan54a73572014-03-08 19:23:13 -0800415}
416
stephen hemminger23312a32017-01-24 13:05:59 -0800417static u32 net_checksum_info(struct sk_buff *skb)
KY Srinivasan08cd04b2014-03-08 19:23:17 -0800418{
stephen hemminger23312a32017-01-24 13:05:59 -0800419 if (skb->protocol == htons(ETH_P_IP)) {
420 struct iphdr *ip = ip_hdr(skb);
KY Srinivasan08cd04b2014-03-08 19:23:17 -0800421
stephen hemminger23312a32017-01-24 13:05:59 -0800422 if (ip->protocol == IPPROTO_TCP)
423 return TRANSPORT_INFO_IPV4_TCP;
424 else if (ip->protocol == IPPROTO_UDP)
425 return TRANSPORT_INFO_IPV4_UDP;
KY Srinivasan08cd04b2014-03-08 19:23:17 -0800426 } else {
stephen hemminger23312a32017-01-24 13:05:59 -0800427 struct ipv6hdr *ip6 = ipv6_hdr(skb);
428
429 if (ip6->nexthdr == IPPROTO_TCP)
430 return TRANSPORT_INFO_IPV6_TCP;
Mohammed Gamal37b9dfa2017-07-24 10:57:26 -0700431 else if (ip6->nexthdr == IPPROTO_UDP)
stephen hemminger23312a32017-01-24 13:05:59 -0800432 return TRANSPORT_INFO_IPV6_UDP;
KY Srinivasan08cd04b2014-03-08 19:23:17 -0800433 }
434
stephen hemminger23312a32017-01-24 13:05:59 -0800435 return TRANSPORT_INFO_NOT_IP;
KY Srinivasan08cd04b2014-03-08 19:23:17 -0800436}
437
stephen hemminger0c195562017-08-01 19:58:53 -0700438/* Send skb on the slave VF device. */
439static int netvsc_vf_xmit(struct net_device *net, struct net_device *vf_netdev,
440 struct sk_buff *skb)
441{
442 struct net_device_context *ndev_ctx = netdev_priv(net);
443 unsigned int len = skb->len;
444 int rc;
445
446 skb->dev = vf_netdev;
447 skb->queue_mapping = qdisc_skb_cb(skb)->slave_dev_queue_mapping;
448
449 rc = dev_queue_xmit(skb);
450 if (likely(rc == NET_XMIT_SUCCESS || rc == NET_XMIT_CN)) {
451 struct netvsc_vf_pcpu_stats *pcpu_stats
452 = this_cpu_ptr(ndev_ctx->vf_stats);
453
454 u64_stats_update_begin(&pcpu_stats->syncp);
455 pcpu_stats->tx_packets++;
456 pcpu_stats->tx_bytes += len;
457 u64_stats_update_end(&pcpu_stats->syncp);
458 } else {
459 this_cpu_inc(ndev_ctx->vf_stats->tx_dropped);
460 }
461
462 return rc;
463}
464
Greg Kroah-Hartman02fafbc2009-08-31 21:09:45 -0700465static int netvsc_start_xmit(struct sk_buff *skb, struct net_device *net)
Hank Janssenfceaf242009-07-13 15:34:54 -0700466{
Hank Janssenfceaf242009-07-13 15:34:54 -0700467 struct net_device_context *net_device_ctx = netdev_priv(net);
Vitaly Kuznetsov981a1bd2015-04-08 17:54:05 +0200468 struct hv_netvsc_packet *packet = NULL;
Greg Kroah-Hartman02fafbc2009-08-31 21:09:45 -0700469 int ret;
KY Srinivasan8a002512014-03-08 19:23:14 -0800470 unsigned int num_data_pgs;
471 struct rndis_message *rndis_msg;
472 struct rndis_packet *rndis_pkt;
stephen hemminger0c195562017-08-01 19:58:53 -0700473 struct net_device *vf_netdev;
KY Srinivasan8a002512014-03-08 19:23:14 -0800474 u32 rndis_msg_size;
KY Srinivasan8a002512014-03-08 19:23:14 -0800475 struct rndis_per_packet_info *ppi;
Haiyang Zhang307f0992014-05-21 12:55:39 -0700476 u32 hash;
stephen hemminger02b6de02017-07-28 08:59:44 -0700477 struct hv_page_buffer pb[MAX_PAGE_BUFFER_COUNT];
Hank Janssenfceaf242009-07-13 15:34:54 -0700478
stephen hemminger0c195562017-08-01 19:58:53 -0700479 /* if VF is present and up then redirect packets
480 * already called with rcu_read_lock_bh
481 */
482 vf_netdev = rcu_dereference_bh(net_device_ctx->vf_netdev);
483 if (vf_netdev && netif_running(vf_netdev) &&
484 !netpoll_tx_running(net))
485 return netvsc_vf_xmit(net, vf_netdev, skb);
486
stephen hemminger80d887d2017-07-24 21:03:19 -0700487 /* We will atmost need two pages to describe the rndis
488 * header. We can only transmit MAX_PAGE_BUFFER_COUNT number
Vitaly Kuznetsove88f7e02015-04-08 17:54:06 +0200489 * of pages in a single packet. If skb is scattered around
490 * more pages we try linearizing it.
KY Srinivasan54a73572014-03-08 19:23:13 -0800491 */
stephen hemminger80d887d2017-07-24 21:03:19 -0700492
493 num_data_pgs = netvsc_get_slots(skb) + 2;
494
Stephen Hemminger0ab05142016-08-23 12:17:52 -0700495 if (unlikely(num_data_pgs > MAX_PAGE_BUFFER_COUNT)) {
Stephen Hemminger4323b472016-08-23 12:17:57 -0700496 ++net_device_ctx->eth_stats.tx_scattered;
497
498 if (skb_linearize(skb))
499 goto no_memory;
Stephen Hemminger0ab05142016-08-23 12:17:52 -0700500
stephen hemminger80d887d2017-07-24 21:03:19 -0700501 num_data_pgs = netvsc_get_slots(skb) + 2;
Stephen Hemminger0ab05142016-08-23 12:17:52 -0700502 if (num_data_pgs > MAX_PAGE_BUFFER_COUNT) {
Stephen Hemminger4323b472016-08-23 12:17:57 -0700503 ++net_device_ctx->eth_stats.tx_too_big;
Stephen Hemminger0ab05142016-08-23 12:17:52 -0700504 goto drop;
505 }
KY Srinivasan54a73572014-03-08 19:23:13 -0800506 }
Hank Janssenfceaf242009-07-13 15:34:54 -0700507
KY Srinivasanc0eb4542015-12-01 16:43:10 -0800508 /*
509 * Place the rndis header in the skb head room and
510 * the skb->cb will be used for hv_netvsc_packet
511 * structure.
512 */
513 ret = skb_cow_head(skb, RNDIS_AND_PPI_SIZE);
Stephen Hemminger4323b472016-08-23 12:17:57 -0700514 if (ret)
515 goto no_memory;
516
KY Srinivasanc0eb4542015-12-01 16:43:10 -0800517 /* Use the skb control buffer for building up the packet */
518 BUILD_BUG_ON(sizeof(struct hv_netvsc_packet) >
519 FIELD_SIZEOF(struct sk_buff, cb));
520 packet = (struct hv_netvsc_packet *)skb->cb;
Hank Janssenfceaf242009-07-13 15:34:54 -0700521
Haiyang Zhang5b54dac2014-04-21 10:20:28 -0700522 packet->q_idx = skb_get_queue_mapping(skb);
523
Haiyang Zhang4d447c92011-12-15 13:45:17 -0800524 packet->total_data_buflen = skb->len;
stephen hemminger793e3952017-01-24 13:06:12 -0800525 packet->total_bytes = skb->len;
526 packet->total_packets = 1;
Hank Janssenfceaf242009-07-13 15:34:54 -0700527
KY Srinivasanc0eb4542015-12-01 16:43:10 -0800528 rndis_msg = (struct rndis_message *)skb->head;
KY Srinivasanb08cc792015-03-29 21:08:42 -0700529
KY Srinivasan24476762015-12-01 16:43:06 -0800530 memset(rndis_msg, 0, RNDIS_AND_PPI_SIZE);
Hank Janssenfceaf242009-07-13 15:34:54 -0700531
KY Srinivasan8a002512014-03-08 19:23:14 -0800532 /* Add the rndis header */
KY Srinivasan8a002512014-03-08 19:23:14 -0800533 rndis_msg->ndis_msg_type = RNDIS_MSG_PACKET;
534 rndis_msg->msg_len = packet->total_data_buflen;
535 rndis_pkt = &rndis_msg->msg.pkt;
536 rndis_pkt->data_offset = sizeof(struct rndis_packet);
537 rndis_pkt->data_len = packet->total_data_buflen;
538 rndis_pkt->per_pkt_info_offset = sizeof(struct rndis_packet);
539
540 rndis_msg_size = RNDIS_MESSAGE_SIZE(struct rndis_packet);
541
Haiyang Zhang307f0992014-05-21 12:55:39 -0700542 hash = skb_get_hash_raw(skb);
543 if (hash != 0 && net->real_num_tx_queues > 1) {
544 rndis_msg_size += NDIS_HASH_PPI_SIZE;
545 ppi = init_ppi_data(rndis_msg, NDIS_HASH_PPI_SIZE,
546 NBL_HASH_VALUE);
547 *(u32 *)((void *)ppi + ppi->ppi_offset) = hash;
548 }
549
Stephen Hemminger0ab05142016-08-23 12:17:52 -0700550 if (skb_vlan_tag_present(skb)) {
KY Srinivasan8a002512014-03-08 19:23:14 -0800551 struct ndis_pkt_8021q_info *vlan;
552
553 rndis_msg_size += NDIS_VLAN_PPI_SIZE;
554 ppi = init_ppi_data(rndis_msg, NDIS_VLAN_PPI_SIZE,
stephen hemminger00f50242017-08-09 17:46:09 -0700555 IEEE_8021Q_INFO);
556
557 vlan = (void *)ppi + ppi->ppi_offset;
KY Srinivasan760d1e32015-12-01 16:43:19 -0800558 vlan->vlanid = skb->vlan_tci & VLAN_VID_MASK;
559 vlan->pri = (skb->vlan_tci & VLAN_PRIO_MASK) >>
KY Srinivasan8a002512014-03-08 19:23:14 -0800560 VLAN_PRIO_SHIFT;
561 }
562
stephen hemminger23312a32017-01-24 13:05:59 -0800563 if (skb_is_gso(skb)) {
Stephen Hemminger0ab05142016-08-23 12:17:52 -0700564 struct ndis_tcp_lso_info *lso_info;
565
566 rndis_msg_size += NDIS_LSO_PPI_SIZE;
567 ppi = init_ppi_data(rndis_msg, NDIS_LSO_PPI_SIZE,
568 TCP_LARGESEND_PKTINFO);
569
stephen hemminger00f50242017-08-09 17:46:09 -0700570 lso_info = (void *)ppi + ppi->ppi_offset;
Stephen Hemminger0ab05142016-08-23 12:17:52 -0700571
572 lso_info->lso_v2_transmit.type = NDIS_TCP_LARGE_SEND_OFFLOAD_V2_TYPE;
stephen hemminger23312a32017-01-24 13:05:59 -0800573 if (skb->protocol == htons(ETH_P_IP)) {
Stephen Hemminger0ab05142016-08-23 12:17:52 -0700574 lso_info->lso_v2_transmit.ip_version =
575 NDIS_TCP_LARGE_SEND_OFFLOAD_IPV4;
576 ip_hdr(skb)->tot_len = 0;
577 ip_hdr(skb)->check = 0;
578 tcp_hdr(skb)->check =
579 ~csum_tcpudp_magic(ip_hdr(skb)->saddr,
580 ip_hdr(skb)->daddr, 0, IPPROTO_TCP, 0);
581 } else {
582 lso_info->lso_v2_transmit.ip_version =
583 NDIS_TCP_LARGE_SEND_OFFLOAD_IPV6;
584 ipv6_hdr(skb)->payload_len = 0;
585 tcp_hdr(skb)->check =
586 ~csum_ipv6_magic(&ipv6_hdr(skb)->saddr,
587 &ipv6_hdr(skb)->daddr, 0, IPPROTO_TCP, 0);
588 }
stephen hemminger23312a32017-01-24 13:05:59 -0800589 lso_info->lso_v2_transmit.tcp_header_offset = skb_transport_offset(skb);
Stephen Hemminger0ab05142016-08-23 12:17:52 -0700590 lso_info->lso_v2_transmit.mss = skb_shinfo(skb)->gso_size;
stephen hemmingerad19bc82016-10-11 14:03:07 -0700591 } else if (skb->ip_summed == CHECKSUM_PARTIAL) {
stephen hemminger23312a32017-01-24 13:05:59 -0800592 if (net_checksum_info(skb) & net_device_ctx->tx_checksum_mask) {
593 struct ndis_tcp_ip_checksum_info *csum_info;
594
stephen hemmingerad19bc82016-10-11 14:03:07 -0700595 rndis_msg_size += NDIS_CSUM_PPI_SIZE;
596 ppi = init_ppi_data(rndis_msg, NDIS_CSUM_PPI_SIZE,
597 TCPIP_CHKSUM_PKTINFO);
598
599 csum_info = (struct ndis_tcp_ip_checksum_info *)((void *)ppi +
600 ppi->ppi_offset);
601
stephen hemminger23312a32017-01-24 13:05:59 -0800602 csum_info->transmit.tcp_header_offset = skb_transport_offset(skb);
603
604 if (skb->protocol == htons(ETH_P_IP)) {
stephen hemmingerad19bc82016-10-11 14:03:07 -0700605 csum_info->transmit.is_ipv4 = 1;
stephen hemminger23312a32017-01-24 13:05:59 -0800606
607 if (ip_hdr(skb)->protocol == IPPROTO_TCP)
608 csum_info->transmit.tcp_checksum = 1;
609 else
610 csum_info->transmit.udp_checksum = 1;
611 } else {
stephen hemmingerad19bc82016-10-11 14:03:07 -0700612 csum_info->transmit.is_ipv6 = 1;
613
stephen hemminger23312a32017-01-24 13:05:59 -0800614 if (ipv6_hdr(skb)->nexthdr == IPPROTO_TCP)
615 csum_info->transmit.tcp_checksum = 1;
616 else
617 csum_info->transmit.udp_checksum = 1;
618 }
stephen hemmingerad19bc82016-10-11 14:03:07 -0700619 } else {
stephen hemminger23312a32017-01-24 13:05:59 -0800620 /* Can't do offload of this type of checksum */
stephen hemmingerad19bc82016-10-11 14:03:07 -0700621 if (skb_checksum_help(skb))
622 goto drop;
623 }
Stephen Hemminger0ab05142016-08-23 12:17:52 -0700624 }
KY Srinivasan08cd04b2014-03-08 19:23:17 -0800625
KY Srinivasan8a002512014-03-08 19:23:14 -0800626 /* Start filling in the page buffers with the rndis hdr */
627 rndis_msg->msg_len += rndis_msg_size;
Haiyang Zhang942396b2014-10-22 13:47:18 -0700628 packet->total_data_buflen = rndis_msg->msg_len;
KY Srinivasan8a002512014-03-08 19:23:14 -0800629 packet->page_buf_cnt = init_page_array(rndis_msg, rndis_msg_size,
stephen hemminger02b6de02017-07-28 08:59:44 -0700630 skb, packet, pb);
KY Srinivasan8a002512014-03-08 19:23:14 -0800631
sixiao@microsoft.com76d13b52016-02-17 16:43:59 -0800632 /* timestamp packet in software */
633 skb_tx_timestamp(skb);
stephen hemminger2a926f72017-07-19 11:53:17 -0700634
stephen hemminger02b6de02017-07-28 08:59:44 -0700635 ret = netvsc_send(net_device_ctx, packet, rndis_msg, pb, skb);
stephen hemminger793e3952017-01-24 13:06:12 -0800636 if (likely(ret == 0))
Stephen Hemminger0ab05142016-08-23 12:17:52 -0700637 return NETDEV_TX_OK;
Stephen Hemminger4323b472016-08-23 12:17:57 -0700638
639 if (ret == -EAGAIN) {
640 ++net_device_ctx->eth_stats.tx_busy;
Stephen Hemminger0ab05142016-08-23 12:17:52 -0700641 return NETDEV_TX_BUSY;
Stephen Hemminger4323b472016-08-23 12:17:57 -0700642 }
643
644 if (ret == -ENOSPC)
645 ++net_device_ctx->eth_stats.tx_no_space;
Hank Janssenfceaf242009-07-13 15:34:54 -0700646
Stephen Hemminger0ab05142016-08-23 12:17:52 -0700647drop:
648 dev_kfree_skb_any(skb);
649 net->stats.tx_dropped++;
650
651 return NETDEV_TX_OK;
Stephen Hemminger4323b472016-08-23 12:17:57 -0700652
653no_memory:
654 ++net_device_ctx->eth_stats.tx_no_memory;
655 goto drop;
Hank Janssenfceaf242009-07-13 15:34:54 -0700656}
stephen hemminger89bb42b2017-08-09 17:46:08 -0700657
Hank Janssen3e189512010-03-04 22:11:00 +0000658/*
Greg Kroah-Hartman02fafbc2009-08-31 21:09:45 -0700659 * netvsc_linkstatus_callback - Link up/down notification
660 */
K. Y. Srinivasan90ef1172011-05-12 19:34:50 -0700661void netvsc_linkstatus_callback(struct hv_device *device_obj,
Haiyang Zhang3a494e72014-06-19 18:34:36 -0700662 struct rndis_message *resp)
Hank Janssenfceaf242009-07-13 15:34:54 -0700663{
Haiyang Zhang3a494e72014-06-19 18:34:36 -0700664 struct rndis_indicate_status *indicate = &resp->msg.indicate_status;
K. Y. Srinivasan2ddd5e5f2011-09-13 10:59:49 -0700665 struct net_device *net;
Haiyang Zhangc996edc2011-04-06 15:18:00 -0700666 struct net_device_context *ndev_ctx;
Vitaly Kuznetsov27a70af2015-11-27 11:39:55 +0100667 struct netvsc_reconfig *event;
668 unsigned long flags;
669
Haiyang Zhang7f5d5af2016-08-04 10:42:15 -0700670 net = hv_get_drvdata(device_obj);
671
672 if (!net)
673 return;
674
675 ndev_ctx = netdev_priv(net);
676
677 /* Update the physical link speed when changing to another vSwitch */
678 if (indicate->status == RNDIS_STATUS_LINK_SPEED_CHANGE) {
679 u32 speed;
680
stephen hemminger89bb42b2017-08-09 17:46:08 -0700681 speed = *(u32 *)((void *)indicate
682 + indicate->status_buf_offset) / 10000;
Haiyang Zhang7f5d5af2016-08-04 10:42:15 -0700683 ndev_ctx->speed = speed;
684 return;
685 }
686
687 /* Handle these link change statuses below */
Vitaly Kuznetsov27a70af2015-11-27 11:39:55 +0100688 if (indicate->status != RNDIS_STATUS_NETWORK_CHANGE &&
689 indicate->status != RNDIS_STATUS_MEDIA_CONNECT &&
690 indicate->status != RNDIS_STATUS_MEDIA_DISCONNECT)
691 return;
K. Y. Srinivasan2ddd5e5f2011-09-13 10:59:49 -0700692
Haiyang Zhang7f5d5af2016-08-04 10:42:15 -0700693 if (net->reg_state != NETREG_REGISTERED)
Hank Janssenfceaf242009-07-13 15:34:54 -0700694 return;
Hank Janssenfceaf242009-07-13 15:34:54 -0700695
Vitaly Kuznetsov27a70af2015-11-27 11:39:55 +0100696 event = kzalloc(sizeof(*event), GFP_ATOMIC);
697 if (!event)
698 return;
699 event->event = indicate->status;
700
701 spin_lock_irqsave(&ndev_ctx->lock, flags);
702 list_add_tail(&event->list, &ndev_ctx->reconfig_events);
703 spin_unlock_irqrestore(&ndev_ctx->lock, flags);
704
705 schedule_delayed_work(&ndev_ctx->dwork, 0);
Hank Janssenfceaf242009-07-13 15:34:54 -0700706}
707
KY Srinivasan84bf9ce2016-04-14 16:31:54 -0700708static struct sk_buff *netvsc_alloc_recv_skb(struct net_device *net,
stephen hemmingere91e7dd2017-02-27 10:26:51 -0800709 struct napi_struct *napi,
stephen hemmingerdc54a082017-01-24 13:06:08 -0800710 const struct ndis_tcp_ip_checksum_info *csum_info,
711 const struct ndis_pkt_8021q_info *vlan,
712 void *data, u32 buflen)
Hank Janssenfceaf242009-07-13 15:34:54 -0700713{
Hank Janssenfceaf242009-07-13 15:34:54 -0700714 struct sk_buff *skb;
K. Y. Srinivasan2ddd5e5f2011-09-13 10:59:49 -0700715
stephen hemmingere91e7dd2017-02-27 10:26:51 -0800716 skb = napi_alloc_skb(napi, buflen);
KY Srinivasan84bf9ce2016-04-14 16:31:54 -0700717 if (!skb)
718 return skb;
Hank Janssenfceaf242009-07-13 15:34:54 -0700719
Greg Kroah-Hartman02fafbc2009-08-31 21:09:45 -0700720 /*
721 * Copy to skb. This copy is needed here since the memory pointed by
722 * hv_netvsc_packet cannot be deallocated
723 */
Johannes Berg59ae1d12017-06-16 14:29:20 +0200724 skb_put_data(skb, data, buflen);
Hank Janssenfceaf242009-07-13 15:34:54 -0700725
726 skb->protocol = eth_type_trans(skb, net);
Stephen Hemmingere52fed72016-10-23 21:32:47 -0700727
728 /* skb is already created with CHECKSUM_NONE */
729 skb_checksum_none_assert(skb);
730
731 /*
732 * In Linux, the IP checksum is always checked.
733 * Do L4 checksum offload if enabled and present.
734 */
735 if (csum_info && (net->features & NETIF_F_RXCSUM)) {
736 if (csum_info->receive.tcp_checksum_succeeded ||
737 csum_info->receive.udp_checksum_succeeded)
KY Srinivasane3d605e2014-03-08 19:23:16 -0800738 skb->ip_summed = CHECKSUM_UNNECESSARY;
KY Srinivasane3d605e2014-03-08 19:23:16 -0800739 }
740
stephen hemmingerdc54a082017-01-24 13:06:08 -0800741 if (vlan) {
742 u16 vlan_tci = vlan->vlanid | (vlan->pri << VLAN_PRIO_SHIFT);
743
Haiyang Zhang93725cb2013-06-17 15:36:49 -0700744 __vlan_hwaccel_put_tag(skb, htons(ETH_P_8021Q),
KY Srinivasan760d1e32015-12-01 16:43:19 -0800745 vlan_tci);
stephen hemmingerdc54a082017-01-24 13:06:08 -0800746 }
Hank Janssenfceaf242009-07-13 15:34:54 -0700747
KY Srinivasan84bf9ce2016-04-14 16:31:54 -0700748 return skb;
749}
750
751/*
752 * netvsc_recv_callback - Callback when we receive a packet from the
753 * "wire" on the specified device.
754 */
stephen hemmingerdc54a082017-01-24 13:06:08 -0800755int netvsc_recv_callback(struct net_device *net,
756 struct vmbus_channel *channel,
757 void *data, u32 len,
758 const struct ndis_tcp_ip_checksum_info *csum_info,
759 const struct ndis_pkt_8021q_info *vlan)
KY Srinivasan84bf9ce2016-04-14 16:31:54 -0700760{
Vitaly Kuznetsov3d541ac2016-05-13 13:55:22 +0200761 struct net_device_context *net_device_ctx = netdev_priv(net);
stephen hemminger545a8e72017-03-22 14:51:00 -0700762 struct netvsc_device *net_device;
stephen hemminger742fe542017-02-27 10:26:50 -0800763 u16 q_idx = channel->offermsg.offer.sub_channel_index;
stephen hemminger545a8e72017-03-22 14:51:00 -0700764 struct netvsc_channel *nvchan;
KY Srinivasan84bf9ce2016-04-14 16:31:54 -0700765 struct sk_buff *skb;
KY Srinivasan84bf9ce2016-04-14 16:31:54 -0700766 struct netvsc_stats *rx_stats;
KY Srinivasan84bf9ce2016-04-14 16:31:54 -0700767
Stephen Hemminger9cbcc422016-09-22 16:56:34 -0700768 if (net->reg_state != NETREG_REGISTERED)
KY Srinivasan84bf9ce2016-04-14 16:31:54 -0700769 return NVSP_STAT_FAIL;
770
stephen hemminger0719e722017-01-11 09:16:32 -0800771 rcu_read_lock();
stephen hemminger545a8e72017-03-22 14:51:00 -0700772 net_device = rcu_dereference(net_device_ctx->nvdev);
773 if (unlikely(!net_device))
774 goto drop;
775
776 nvchan = &net_device->chan_table[q_idx];
KY Srinivasan84bf9ce2016-04-14 16:31:54 -0700777
778 /* Allocate a skb - TODO direct I/O to pages? */
stephen hemmingere91e7dd2017-02-27 10:26:51 -0800779 skb = netvsc_alloc_recv_skb(net, &nvchan->napi,
780 csum_info, vlan, data, len);
KY Srinivasan84bf9ce2016-04-14 16:31:54 -0700781 if (unlikely(!skb)) {
stephen hemminger545a8e72017-03-22 14:51:00 -0700782drop:
KY Srinivasan84bf9ce2016-04-14 16:31:54 -0700783 ++net->stats.rx_dropped;
stephen hemminger0719e722017-01-11 09:16:32 -0800784 rcu_read_unlock();
KY Srinivasan84bf9ce2016-04-14 16:31:54 -0700785 return NVSP_STAT_FAIL;
786 }
Haiyang Zhang5b54dac2014-04-21 10:20:28 -0700787
stephen hemminger0c195562017-08-01 19:58:53 -0700788 skb_record_rx_queue(skb, q_idx);
Stephen Hemminger9cbcc422016-09-22 16:56:34 -0700789
790 /*
791 * Even if injecting the packet, record the statistics
792 * on the synthetic device because modifying the VF device
793 * statistics will not work correctly.
794 */
stephen hemminger742fe542017-02-27 10:26:50 -0800795 rx_stats = &nvchan->rx_stats;
sixiao@microsoft.com4b02b582015-05-15 02:33:03 -0700796 u64_stats_update_begin(&rx_stats->syncp);
sixiao@microsoft.com7eafd9b2015-05-14 01:00:25 -0700797 rx_stats->packets++;
stephen hemmingerdc54a082017-01-24 13:06:08 -0800798 rx_stats->bytes += len;
Stephen Hemmingerf7ad75b2016-09-22 16:56:35 -0700799
800 if (skb->pkt_type == PACKET_BROADCAST)
801 ++rx_stats->broadcast;
802 else if (skb->pkt_type == PACKET_MULTICAST)
803 ++rx_stats->multicast;
sixiao@microsoft.com4b02b582015-05-15 02:33:03 -0700804 u64_stats_update_end(&rx_stats->syncp);
Stephen Hemminger9495c282010-03-09 17:42:17 -0800805
stephen hemminger742fe542017-02-27 10:26:50 -0800806 napi_gro_receive(&nvchan->napi, skb);
stephen hemminger0719e722017-01-11 09:16:32 -0800807 rcu_read_unlock();
Hank Janssenfceaf242009-07-13 15:34:54 -0700808
Hank Janssenfceaf242009-07-13 15:34:54 -0700809 return 0;
810}
811
Stephen Hemmingerf82f4ad2010-05-04 09:58:57 -0700812static void netvsc_get_drvinfo(struct net_device *net,
813 struct ethtool_drvinfo *info)
814{
Jiri Pirko7826d432013-01-06 00:44:26 +0000815 strlcpy(info->driver, KBUILD_MODNAME, sizeof(info->driver));
Jiri Pirko7826d432013-01-06 00:44:26 +0000816 strlcpy(info->fw_version, "N/A", sizeof(info->fw_version));
Stephen Hemmingerf82f4ad2010-05-04 09:58:57 -0700817}
818
Andrew Schwartzmeyer59995372015-02-26 16:27:14 -0800819static void netvsc_get_channels(struct net_device *net,
820 struct ethtool_channels *channel)
821{
822 struct net_device_context *net_device_ctx = netdev_priv(net);
stephen hemminger545a8e72017-03-22 14:51:00 -0700823 struct netvsc_device *nvdev = rtnl_dereference(net_device_ctx->nvdev);
Andrew Schwartzmeyer59995372015-02-26 16:27:14 -0800824
825 if (nvdev) {
826 channel->max_combined = nvdev->max_chn;
827 channel->combined_count = nvdev->num_chn;
828 }
829}
830
Andrew Schwartzmeyerb5960e62015-08-11 17:14:32 -0700831static int netvsc_set_channels(struct net_device *net,
832 struct ethtool_channels *channels)
833{
834 struct net_device_context *net_device_ctx = netdev_priv(net);
835 struct hv_device *dev = net_device_ctx->device_ctx;
stephen hemminger545a8e72017-03-22 14:51:00 -0700836 struct netvsc_device *nvdev = rtnl_dereference(net_device_ctx->nvdev);
stephen hemminger7ca45932017-07-24 10:57:28 -0700837 unsigned int orig, count = channels->combined_count;
838 struct netvsc_device_info device_info;
stephen hemmingerea383bf2017-07-19 11:53:15 -0700839 bool was_opened;
stephen hemminger7ca45932017-07-24 10:57:28 -0700840 int ret = 0;
stephen hemminger2b018882017-01-24 13:06:03 -0800841
842 /* We do not support separate count for rx, tx, or other */
843 if (count == 0 ||
844 channels->rx_count || channels->tx_count || channels->other_count)
845 return -EINVAL;
846
stephen hemmingera0be4502017-03-22 14:51:01 -0700847 if (!nvdev || nvdev->destroy)
Andrew Schwartzmeyerb5960e62015-08-11 17:14:32 -0700848 return -ENODEV;
849
stephen hemminger2b018882017-01-24 13:06:03 -0800850 if (nvdev->nvsp_version < NVSP_PROTOCOL_VERSION_5)
Andrew Schwartzmeyerb5960e62015-08-11 17:14:32 -0700851 return -EINVAL;
852
stephen hemminger2b018882017-01-24 13:06:03 -0800853 if (count > nvdev->max_chn)
854 return -EINVAL;
Andrew Schwartzmeyerb5960e62015-08-11 17:14:32 -0700855
stephen hemminger7ca45932017-07-24 10:57:28 -0700856 orig = nvdev->num_chn;
stephen hemmingerea383bf2017-07-19 11:53:15 -0700857 was_opened = rndis_filter_opened(nvdev);
858 if (was_opened)
859 rndis_filter_close(nvdev);
Andrew Schwartzmeyerb5960e62015-08-11 17:14:32 -0700860
stephen hemminger7ca45932017-07-24 10:57:28 -0700861 memset(&device_info, 0, sizeof(device_info));
862 device_info.num_chn = count;
863 device_info.ring_size = ring_size;
stephen hemminger8b532792017-08-09 17:46:11 -0700864 device_info.send_sections = nvdev->send_section_cnt;
Alex Ng0ab09be2017-09-20 11:17:35 -0700865 device_info.send_section_size = nvdev->send_section_size;
stephen hemminger8b532792017-08-09 17:46:11 -0700866 device_info.recv_sections = nvdev->recv_section_cnt;
Alex Ng0ab09be2017-09-20 11:17:35 -0700867 device_info.recv_section_size = nvdev->recv_section_size;
stephen hemminger8b532792017-08-09 17:46:11 -0700868
869 rndis_filter_device_remove(dev, nvdev);
Andrew Schwartzmeyerb5960e62015-08-11 17:14:32 -0700870
stephen hemminger7ca45932017-07-24 10:57:28 -0700871 nvdev = rndis_filter_device_add(dev, &device_info);
Stephen Hemminger8195b132017-09-06 13:53:05 -0700872 if (IS_ERR(nvdev)) {
stephen hemmingerd6aac1f2017-07-28 08:59:41 -0700873 ret = PTR_ERR(nvdev);
stephen hemminger7ca45932017-07-24 10:57:28 -0700874 device_info.num_chn = orig;
stephen hemminger68d715f2017-08-09 17:46:06 -0700875 nvdev = rndis_filter_device_add(dev, &device_info);
876
877 if (IS_ERR(nvdev)) {
878 netdev_err(net, "restoring channel setting failed: %ld\n",
879 PTR_ERR(nvdev));
880 return ret;
881 }
stephen hemminger7ca45932017-07-24 10:57:28 -0700882 }
883
stephen hemmingerea383bf2017-07-19 11:53:15 -0700884 if (was_opened)
885 rndis_filter_open(nvdev);
stephen hemminger163891d2017-03-22 14:50:58 -0700886
Vitaly Kuznetsov1bdcec82016-05-13 13:55:21 +0200887 /* We may have missed link change notifications */
stephen hemminger1b019942017-07-19 11:53:12 -0700888 net_device_ctx->last_reconfig = 0;
Vitaly Kuznetsov1bdcec82016-05-13 13:55:21 +0200889 schedule_delayed_work(&net_device_ctx->dwork, 0);
Andrew Schwartzmeyerb5960e62015-08-11 17:14:32 -0700890
891 return ret;
Andrew Schwartzmeyerb5960e62015-08-11 17:14:32 -0700892}
893
Philippe Reynes5e8456f2017-03-08 23:41:04 +0100894static bool
895netvsc_validate_ethtool_ss_cmd(const struct ethtool_link_ksettings *cmd)
sixiao@microsoft.com49eb9382016-02-25 15:24:08 -0800896{
Philippe Reynes5e8456f2017-03-08 23:41:04 +0100897 struct ethtool_link_ksettings diff1 = *cmd;
898 struct ethtool_link_ksettings diff2 = {};
sixiao@microsoft.com49eb9382016-02-25 15:24:08 -0800899
Philippe Reynes5e8456f2017-03-08 23:41:04 +0100900 diff1.base.speed = 0;
901 diff1.base.duplex = 0;
sixiao@microsoft.com49eb9382016-02-25 15:24:08 -0800902 /* advertising and cmd are usually set */
Philippe Reynes5e8456f2017-03-08 23:41:04 +0100903 ethtool_link_ksettings_zero_link_mode(&diff1, advertising);
904 diff1.base.cmd = 0;
sixiao@microsoft.com49eb9382016-02-25 15:24:08 -0800905 /* We set port to PORT_OTHER */
Philippe Reynes5e8456f2017-03-08 23:41:04 +0100906 diff2.base.port = PORT_OTHER;
sixiao@microsoft.com49eb9382016-02-25 15:24:08 -0800907
908 return !memcmp(&diff1, &diff2, sizeof(diff1));
909}
910
911static void netvsc_init_settings(struct net_device *dev)
912{
913 struct net_device_context *ndc = netdev_priv(dev);
914
Haiyang Zhang486e3982017-10-06 08:33:57 -0700915 ndc->l4_hash = HV_DEFAULT_L4HASH;
Haiyang Zhang4823eb22017-08-21 19:22:39 -0700916
sixiao@microsoft.com49eb9382016-02-25 15:24:08 -0800917 ndc->speed = SPEED_UNKNOWN;
Simon Xiaof3c9d40e2017-04-14 14:42:58 -0700918 ndc->duplex = DUPLEX_FULL;
sixiao@microsoft.com49eb9382016-02-25 15:24:08 -0800919}
920
Philippe Reynes5e8456f2017-03-08 23:41:04 +0100921static int netvsc_get_link_ksettings(struct net_device *dev,
922 struct ethtool_link_ksettings *cmd)
sixiao@microsoft.com49eb9382016-02-25 15:24:08 -0800923{
924 struct net_device_context *ndc = netdev_priv(dev);
925
Philippe Reynes5e8456f2017-03-08 23:41:04 +0100926 cmd->base.speed = ndc->speed;
927 cmd->base.duplex = ndc->duplex;
928 cmd->base.port = PORT_OTHER;
sixiao@microsoft.com49eb9382016-02-25 15:24:08 -0800929
930 return 0;
931}
932
Philippe Reynes5e8456f2017-03-08 23:41:04 +0100933static int netvsc_set_link_ksettings(struct net_device *dev,
934 const struct ethtool_link_ksettings *cmd)
sixiao@microsoft.com49eb9382016-02-25 15:24:08 -0800935{
936 struct net_device_context *ndc = netdev_priv(dev);
937 u32 speed;
938
Philippe Reynes5e8456f2017-03-08 23:41:04 +0100939 speed = cmd->base.speed;
sixiao@microsoft.com49eb9382016-02-25 15:24:08 -0800940 if (!ethtool_validate_speed(speed) ||
Philippe Reynes5e8456f2017-03-08 23:41:04 +0100941 !ethtool_validate_duplex(cmd->base.duplex) ||
sixiao@microsoft.com49eb9382016-02-25 15:24:08 -0800942 !netvsc_validate_ethtool_ss_cmd(cmd))
943 return -EINVAL;
944
945 ndc->speed = speed;
Philippe Reynes5e8456f2017-03-08 23:41:04 +0100946 ndc->duplex = cmd->base.duplex;
sixiao@microsoft.com49eb9382016-02-25 15:24:08 -0800947
948 return 0;
949}
950
Haiyang Zhang4d447c92011-12-15 13:45:17 -0800951static int netvsc_change_mtu(struct net_device *ndev, int mtu)
952{
953 struct net_device_context *ndevctx = netdev_priv(ndev);
stephen hemminger0c195562017-08-01 19:58:53 -0700954 struct net_device *vf_netdev = rtnl_dereference(ndevctx->vf_netdev);
stephen hemminger545a8e72017-03-22 14:51:00 -0700955 struct netvsc_device *nvdev = rtnl_dereference(ndevctx->nvdev);
Vitaly Kuznetsov3d541ac2016-05-13 13:55:22 +0200956 struct hv_device *hdev = ndevctx->device_ctx;
stephen hemminger9749fed2017-07-19 11:53:16 -0700957 int orig_mtu = ndev->mtu;
Haiyang Zhang4d447c92011-12-15 13:45:17 -0800958 struct netvsc_device_info device_info;
stephen hemmingerea383bf2017-07-19 11:53:15 -0700959 bool was_opened;
stephen hemminger9749fed2017-07-19 11:53:16 -0700960 int ret = 0;
Haiyang Zhang4d447c92011-12-15 13:45:17 -0800961
stephen hemmingera0be4502017-03-22 14:51:01 -0700962 if (!nvdev || nvdev->destroy)
Haiyang Zhang4d447c92011-12-15 13:45:17 -0800963 return -ENODEV;
964
stephen hemminger0c195562017-08-01 19:58:53 -0700965 /* Change MTU of underlying VF netdev first. */
966 if (vf_netdev) {
967 ret = dev_set_mtu(vf_netdev, mtu);
968 if (ret)
969 return ret;
970 }
971
stephen hemmingerea383bf2017-07-19 11:53:15 -0700972 netif_device_detach(ndev);
973 was_opened = rndis_filter_opened(nvdev);
974 if (was_opened)
975 rndis_filter_close(nvdev);
Haiyang Zhang2de85302015-07-13 13:09:16 -0700976
Andrew Schwartzmeyer8ebdcc52015-08-11 17:14:31 -0700977 memset(&device_info, 0, sizeof(device_info));
Haiyang Zhang4d447c92011-12-15 13:45:17 -0800978 device_info.ring_size = ring_size;
stephen hemminger2b018882017-01-24 13:06:03 -0800979 device_info.num_chn = nvdev->num_chn;
stephen hemminger8b532792017-08-09 17:46:11 -0700980 device_info.send_sections = nvdev->send_section_cnt;
Alex Ng0ab09be2017-09-20 11:17:35 -0700981 device_info.send_section_size = nvdev->send_section_size;
stephen hemminger8b532792017-08-09 17:46:11 -0700982 device_info.recv_sections = nvdev->recv_section_cnt;
Alex Ng0ab09be2017-09-20 11:17:35 -0700983 device_info.recv_section_size = nvdev->recv_section_size;
Dexuan Cui152669b2017-03-02 13:00:53 +0000984
Dexuan Cui152669b2017-03-02 13:00:53 +0000985 rndis_filter_device_remove(hdev, nvdev);
986
Dexuan Cui152669b2017-03-02 13:00:53 +0000987 ndev->mtu = mtu;
988
stephen hemminger9749fed2017-07-19 11:53:16 -0700989 nvdev = rndis_filter_device_add(hdev, &device_info);
990 if (IS_ERR(nvdev)) {
991 ret = PTR_ERR(nvdev);
992
993 /* Attempt rollback to original MTU */
994 ndev->mtu = orig_mtu;
stephen hemminger68d715f2017-08-09 17:46:06 -0700995 nvdev = rndis_filter_device_add(hdev, &device_info);
stephen hemminger0c195562017-08-01 19:58:53 -0700996
997 if (vf_netdev)
998 dev_set_mtu(vf_netdev, orig_mtu);
stephen hemminger68d715f2017-08-09 17:46:06 -0700999
1000 if (IS_ERR(nvdev)) {
1001 netdev_err(ndev, "restoring mtu failed: %ld\n",
1002 PTR_ERR(nvdev));
1003 return ret;
1004 }
stephen hemminger9749fed2017-07-19 11:53:16 -07001005 }
Haiyang Zhang4d447c92011-12-15 13:45:17 -08001006
stephen hemmingerea383bf2017-07-19 11:53:15 -07001007 if (was_opened)
1008 rndis_filter_open(nvdev);
1009
1010 netif_device_attach(ndev);
stephen hemminger163891d2017-03-22 14:50:58 -07001011
Vitaly Kuznetsov1bdcec82016-05-13 13:55:21 +02001012 /* We may have missed link change notifications */
1013 schedule_delayed_work(&ndevctx->dwork, 0);
1014
stephen hemminger9749fed2017-07-19 11:53:16 -07001015 return ret;
Haiyang Zhang4d447c92011-12-15 13:45:17 -08001016}
1017
stephen hemminger0c195562017-08-01 19:58:53 -07001018static void netvsc_get_vf_stats(struct net_device *net,
1019 struct netvsc_vf_pcpu_stats *tot)
1020{
1021 struct net_device_context *ndev_ctx = netdev_priv(net);
1022 int i;
1023
1024 memset(tot, 0, sizeof(*tot));
1025
1026 for_each_possible_cpu(i) {
1027 const struct netvsc_vf_pcpu_stats *stats
1028 = per_cpu_ptr(ndev_ctx->vf_stats, i);
1029 u64 rx_packets, rx_bytes, tx_packets, tx_bytes;
1030 unsigned int start;
1031
1032 do {
1033 start = u64_stats_fetch_begin_irq(&stats->syncp);
1034 rx_packets = stats->rx_packets;
1035 tx_packets = stats->tx_packets;
1036 rx_bytes = stats->rx_bytes;
1037 tx_bytes = stats->tx_bytes;
1038 } while (u64_stats_fetch_retry_irq(&stats->syncp, start));
1039
1040 tot->rx_packets += rx_packets;
1041 tot->tx_packets += tx_packets;
1042 tot->rx_bytes += rx_bytes;
1043 tot->tx_bytes += tx_bytes;
1044 tot->tx_dropped += stats->tx_dropped;
1045 }
1046}
1047
stephen hemmingerbc1f4472017-01-06 19:12:52 -08001048static void netvsc_get_stats64(struct net_device *net,
1049 struct rtnl_link_stats64 *t)
sixiao@microsoft.com7eafd9b2015-05-14 01:00:25 -07001050{
1051 struct net_device_context *ndev_ctx = netdev_priv(net);
stephen hemminger776e7262017-04-14 14:42:57 -07001052 struct netvsc_device *nvdev = rcu_dereference_rtnl(ndev_ctx->nvdev);
stephen hemminger0c195562017-08-01 19:58:53 -07001053 struct netvsc_vf_pcpu_stats vf_tot;
stephen hemminger89bb42b2017-08-09 17:46:08 -07001054 int i;
sixiao@microsoft.com7eafd9b2015-05-14 01:00:25 -07001055
Simon Xiao6c80f3f2017-01-24 13:06:13 -08001056 if (!nvdev)
1057 return;
1058
stephen hemminger0c195562017-08-01 19:58:53 -07001059 netdev_stats_to_stats64(t, &net->stats);
1060
1061 netvsc_get_vf_stats(net, &vf_tot);
1062 t->rx_packets += vf_tot.rx_packets;
1063 t->tx_packets += vf_tot.tx_packets;
1064 t->rx_bytes += vf_tot.rx_bytes;
1065 t->tx_bytes += vf_tot.tx_bytes;
1066 t->tx_dropped += vf_tot.tx_dropped;
1067
Simon Xiao6c80f3f2017-01-24 13:06:13 -08001068 for (i = 0; i < nvdev->num_chn; i++) {
1069 const struct netvsc_channel *nvchan = &nvdev->chan_table[i];
1070 const struct netvsc_stats *stats;
1071 u64 packets, bytes, multicast;
sixiao@microsoft.com7eafd9b2015-05-14 01:00:25 -07001072 unsigned int start;
1073
Simon Xiao6c80f3f2017-01-24 13:06:13 -08001074 stats = &nvchan->tx_stats;
sixiao@microsoft.com7eafd9b2015-05-14 01:00:25 -07001075 do {
Simon Xiao6c80f3f2017-01-24 13:06:13 -08001076 start = u64_stats_fetch_begin_irq(&stats->syncp);
1077 packets = stats->packets;
1078 bytes = stats->bytes;
1079 } while (u64_stats_fetch_retry_irq(&stats->syncp, start));
sixiao@microsoft.com7eafd9b2015-05-14 01:00:25 -07001080
Simon Xiao6c80f3f2017-01-24 13:06:13 -08001081 t->tx_bytes += bytes;
1082 t->tx_packets += packets;
1083
1084 stats = &nvchan->rx_stats;
sixiao@microsoft.com7eafd9b2015-05-14 01:00:25 -07001085 do {
Simon Xiao6c80f3f2017-01-24 13:06:13 -08001086 start = u64_stats_fetch_begin_irq(&stats->syncp);
1087 packets = stats->packets;
1088 bytes = stats->bytes;
1089 multicast = stats->multicast + stats->broadcast;
1090 } while (u64_stats_fetch_retry_irq(&stats->syncp, start));
sixiao@microsoft.com7eafd9b2015-05-14 01:00:25 -07001091
Simon Xiao6c80f3f2017-01-24 13:06:13 -08001092 t->rx_bytes += bytes;
1093 t->rx_packets += packets;
1094 t->multicast += multicast;
sixiao@microsoft.com7eafd9b2015-05-14 01:00:25 -07001095 }
sixiao@microsoft.com7eafd9b2015-05-14 01:00:25 -07001096}
Haiyang Zhang1ce09e82012-07-10 07:19:22 +00001097
1098static int netvsc_set_mac_addr(struct net_device *ndev, void *p)
1099{
stephen hemminger867047c2017-07-28 08:59:42 -07001100 struct net_device_context *ndc = netdev_priv(ndev);
stephen hemminger16ba3262017-08-09 17:46:05 -07001101 struct net_device *vf_netdev = rtnl_dereference(ndc->vf_netdev);
stephen hemminger867047c2017-07-28 08:59:42 -07001102 struct netvsc_device *nvdev = rtnl_dereference(ndc->nvdev);
Haiyang Zhang1ce09e82012-07-10 07:19:22 +00001103 struct sockaddr *addr = p;
Haiyang Zhang1ce09e82012-07-10 07:19:22 +00001104 int err;
1105
stephen hemminger16ba3262017-08-09 17:46:05 -07001106 err = eth_prepare_mac_addr_change(ndev, p);
1107 if (err)
Haiyang Zhang1ce09e82012-07-10 07:19:22 +00001108 return err;
1109
stephen hemminger867047c2017-07-28 08:59:42 -07001110 if (!nvdev)
1111 return -ENODEV;
1112
stephen hemminger16ba3262017-08-09 17:46:05 -07001113 if (vf_netdev) {
1114 err = dev_set_mac_address(vf_netdev, addr);
1115 if (err)
1116 return err;
1117 }
1118
stephen hemminger867047c2017-07-28 08:59:42 -07001119 err = rndis_filter_set_device_mac(nvdev, addr->sa_data);
stephen hemminger16ba3262017-08-09 17:46:05 -07001120 if (!err) {
1121 eth_commit_mac_addr_change(ndev, p);
1122 } else if (vf_netdev) {
1123 /* rollback change on VF */
1124 memcpy(addr->sa_data, ndev->dev_addr, ETH_ALEN);
1125 dev_set_mac_address(vf_netdev, addr);
Haiyang Zhang1ce09e82012-07-10 07:19:22 +00001126 }
1127
1128 return err;
1129}
1130
Stephen Hemminger4323b472016-08-23 12:17:57 -07001131static const struct {
1132 char name[ETH_GSTRING_LEN];
1133 u16 offset;
1134} netvsc_stats[] = {
1135 { "tx_scattered", offsetof(struct netvsc_ethtool_stats, tx_scattered) },
1136 { "tx_no_memory", offsetof(struct netvsc_ethtool_stats, tx_no_memory) },
1137 { "tx_no_space", offsetof(struct netvsc_ethtool_stats, tx_no_space) },
1138 { "tx_too_big", offsetof(struct netvsc_ethtool_stats, tx_too_big) },
1139 { "tx_busy", offsetof(struct netvsc_ethtool_stats, tx_busy) },
stephen hemmingercad5c192017-08-09 17:46:12 -07001140 { "tx_send_full", offsetof(struct netvsc_ethtool_stats, tx_send_full) },
1141 { "rx_comp_busy", offsetof(struct netvsc_ethtool_stats, rx_comp_busy) },
Simon Xiao09af87d2017-09-29 11:39:46 -07001142 { "stop_queue", offsetof(struct netvsc_ethtool_stats, stop_queue) },
1143 { "wake_queue", offsetof(struct netvsc_ethtool_stats, wake_queue) },
stephen hemminger0c195562017-08-01 19:58:53 -07001144}, vf_stats[] = {
1145 { "vf_rx_packets", offsetof(struct netvsc_vf_pcpu_stats, rx_packets) },
1146 { "vf_rx_bytes", offsetof(struct netvsc_vf_pcpu_stats, rx_bytes) },
1147 { "vf_tx_packets", offsetof(struct netvsc_vf_pcpu_stats, tx_packets) },
1148 { "vf_tx_bytes", offsetof(struct netvsc_vf_pcpu_stats, tx_bytes) },
1149 { "vf_tx_dropped", offsetof(struct netvsc_vf_pcpu_stats, tx_dropped) },
Stephen Hemminger4323b472016-08-23 12:17:57 -07001150};
1151
Simon Xiao6c80f3f2017-01-24 13:06:13 -08001152#define NETVSC_GLOBAL_STATS_LEN ARRAY_SIZE(netvsc_stats)
stephen hemminger0c195562017-08-01 19:58:53 -07001153#define NETVSC_VF_STATS_LEN ARRAY_SIZE(vf_stats)
Simon Xiao6c80f3f2017-01-24 13:06:13 -08001154
1155/* 4 statistics per queue (rx/tx packets/bytes) */
1156#define NETVSC_QUEUE_STATS_LEN(dev) ((dev)->num_chn * 4)
1157
Stephen Hemminger4323b472016-08-23 12:17:57 -07001158static int netvsc_get_sset_count(struct net_device *dev, int string_set)
1159{
Simon Xiao6c80f3f2017-01-24 13:06:13 -08001160 struct net_device_context *ndc = netdev_priv(dev);
stephen hemmingerfbd4c7e2017-06-07 15:53:47 -07001161 struct netvsc_device *nvdev = rtnl_dereference(ndc->nvdev);
stephen hemminger545a8e72017-03-22 14:51:00 -07001162
1163 if (!nvdev)
1164 return -ENODEV;
Simon Xiao6c80f3f2017-01-24 13:06:13 -08001165
Stephen Hemminger4323b472016-08-23 12:17:57 -07001166 switch (string_set) {
1167 case ETH_SS_STATS:
stephen hemminger0c195562017-08-01 19:58:53 -07001168 return NETVSC_GLOBAL_STATS_LEN
1169 + NETVSC_VF_STATS_LEN
1170 + NETVSC_QUEUE_STATS_LEN(nvdev);
Stephen Hemminger4323b472016-08-23 12:17:57 -07001171 default:
1172 return -EINVAL;
1173 }
1174}
1175
1176static void netvsc_get_ethtool_stats(struct net_device *dev,
1177 struct ethtool_stats *stats, u64 *data)
1178{
1179 struct net_device_context *ndc = netdev_priv(dev);
stephen hemminger867047c2017-07-28 08:59:42 -07001180 struct netvsc_device *nvdev = rtnl_dereference(ndc->nvdev);
Stephen Hemminger4323b472016-08-23 12:17:57 -07001181 const void *nds = &ndc->eth_stats;
Simon Xiao6c80f3f2017-01-24 13:06:13 -08001182 const struct netvsc_stats *qstats;
stephen hemminger0c195562017-08-01 19:58:53 -07001183 struct netvsc_vf_pcpu_stats sum;
Simon Xiao6c80f3f2017-01-24 13:06:13 -08001184 unsigned int start;
1185 u64 packets, bytes;
1186 int i, j;
Stephen Hemminger4323b472016-08-23 12:17:57 -07001187
stephen hemminger545a8e72017-03-22 14:51:00 -07001188 if (!nvdev)
1189 return;
1190
Simon Xiao6c80f3f2017-01-24 13:06:13 -08001191 for (i = 0; i < NETVSC_GLOBAL_STATS_LEN; i++)
Stephen Hemminger4323b472016-08-23 12:17:57 -07001192 data[i] = *(unsigned long *)(nds + netvsc_stats[i].offset);
Simon Xiao6c80f3f2017-01-24 13:06:13 -08001193
stephen hemminger0c195562017-08-01 19:58:53 -07001194 netvsc_get_vf_stats(dev, &sum);
1195 for (j = 0; j < NETVSC_VF_STATS_LEN; j++)
1196 data[i++] = *(u64 *)((void *)&sum + vf_stats[j].offset);
1197
Simon Xiao6c80f3f2017-01-24 13:06:13 -08001198 for (j = 0; j < nvdev->num_chn; j++) {
1199 qstats = &nvdev->chan_table[j].tx_stats;
1200
1201 do {
1202 start = u64_stats_fetch_begin_irq(&qstats->syncp);
1203 packets = qstats->packets;
1204 bytes = qstats->bytes;
1205 } while (u64_stats_fetch_retry_irq(&qstats->syncp, start));
1206 data[i++] = packets;
1207 data[i++] = bytes;
1208
1209 qstats = &nvdev->chan_table[j].rx_stats;
1210 do {
1211 start = u64_stats_fetch_begin_irq(&qstats->syncp);
1212 packets = qstats->packets;
1213 bytes = qstats->bytes;
1214 } while (u64_stats_fetch_retry_irq(&qstats->syncp, start));
1215 data[i++] = packets;
1216 data[i++] = bytes;
1217 }
Stephen Hemminger4323b472016-08-23 12:17:57 -07001218}
1219
1220static void netvsc_get_strings(struct net_device *dev, u32 stringset, u8 *data)
1221{
Simon Xiao6c80f3f2017-01-24 13:06:13 -08001222 struct net_device_context *ndc = netdev_priv(dev);
stephen hemminger867047c2017-07-28 08:59:42 -07001223 struct netvsc_device *nvdev = rtnl_dereference(ndc->nvdev);
Simon Xiao6c80f3f2017-01-24 13:06:13 -08001224 u8 *p = data;
Stephen Hemminger4323b472016-08-23 12:17:57 -07001225 int i;
1226
stephen hemminger545a8e72017-03-22 14:51:00 -07001227 if (!nvdev)
1228 return;
1229
Stephen Hemminger4323b472016-08-23 12:17:57 -07001230 switch (stringset) {
1231 case ETH_SS_STATS:
stephen hemminger0c195562017-08-01 19:58:53 -07001232 for (i = 0; i < ARRAY_SIZE(netvsc_stats); i++) {
1233 memcpy(p, netvsc_stats[i].name, ETH_GSTRING_LEN);
1234 p += ETH_GSTRING_LEN;
1235 }
Simon Xiao6c80f3f2017-01-24 13:06:13 -08001236
stephen hemminger0c195562017-08-01 19:58:53 -07001237 for (i = 0; i < ARRAY_SIZE(vf_stats); i++) {
1238 memcpy(p, vf_stats[i].name, ETH_GSTRING_LEN);
1239 p += ETH_GSTRING_LEN;
1240 }
1241
Simon Xiao6c80f3f2017-01-24 13:06:13 -08001242 for (i = 0; i < nvdev->num_chn; i++) {
1243 sprintf(p, "tx_queue_%u_packets", i);
1244 p += ETH_GSTRING_LEN;
1245 sprintf(p, "tx_queue_%u_bytes", i);
1246 p += ETH_GSTRING_LEN;
1247 sprintf(p, "rx_queue_%u_packets", i);
1248 p += ETH_GSTRING_LEN;
1249 sprintf(p, "rx_queue_%u_bytes", i);
1250 p += ETH_GSTRING_LEN;
1251 }
1252
Stephen Hemminger4323b472016-08-23 12:17:57 -07001253 break;
1254 }
1255}
1256
stephen hemmingerb448f4e2017-01-24 13:06:00 -08001257static int
Haiyang Zhang4823eb22017-08-21 19:22:39 -07001258netvsc_get_rss_hash_opts(struct net_device_context *ndc,
1259 struct ethtool_rxnfc *info)
stephen hemmingerb5a5dc82017-01-24 13:06:01 -08001260{
Haiyang Zhang486e3982017-10-06 08:33:57 -07001261 const u32 l4_flag = RXH_L4_B_0_1 | RXH_L4_B_2_3;
1262
stephen hemmingerb5a5dc82017-01-24 13:06:01 -08001263 info->data = RXH_IP_SRC | RXH_IP_DST;
1264
1265 switch (info->flow_type) {
1266 case TCP_V4_FLOW:
1267 case TCP_V6_FLOW:
Haiyang Zhang486e3982017-10-06 08:33:57 -07001268 info->data |= l4_flag;
Haiyang Zhang4823eb22017-08-21 19:22:39 -07001269 break;
1270
stephen hemmingerb5a5dc82017-01-24 13:06:01 -08001271 case UDP_V4_FLOW:
Haiyang Zhang486e3982017-10-06 08:33:57 -07001272 if (ndc->l4_hash & HV_UDP4_L4HASH)
1273 info->data |= l4_flag;
Haiyang Zhang4823eb22017-08-21 19:22:39 -07001274
1275 break;
1276
stephen hemmingerb5a5dc82017-01-24 13:06:01 -08001277 case UDP_V6_FLOW:
Haiyang Zhang486e3982017-10-06 08:33:57 -07001278 if (ndc->l4_hash & HV_UDP6_L4HASH)
1279 info->data |= l4_flag;
Haiyang Zhang4823eb22017-08-21 19:22:39 -07001280
1281 break;
1282
stephen hemmingerb5a5dc82017-01-24 13:06:01 -08001283 case IPV4_FLOW:
1284 case IPV6_FLOW:
1285 break;
1286 default:
1287 info->data = 0;
1288 break;
1289 }
1290
1291 return 0;
1292}
1293
1294static int
stephen hemmingerb448f4e2017-01-24 13:06:00 -08001295netvsc_get_rxnfc(struct net_device *dev, struct ethtool_rxnfc *info,
1296 u32 *rules)
1297{
1298 struct net_device_context *ndc = netdev_priv(dev);
stephen hemminger867047c2017-07-28 08:59:42 -07001299 struct netvsc_device *nvdev = rtnl_dereference(ndc->nvdev);
stephen hemminger545a8e72017-03-22 14:51:00 -07001300
1301 if (!nvdev)
1302 return -ENODEV;
stephen hemmingerb448f4e2017-01-24 13:06:00 -08001303
1304 switch (info->cmd) {
1305 case ETHTOOL_GRXRINGS:
1306 info->data = nvdev->num_chn;
1307 return 0;
stephen hemmingerb5a5dc82017-01-24 13:06:01 -08001308
1309 case ETHTOOL_GRXFH:
Haiyang Zhang4823eb22017-08-21 19:22:39 -07001310 return netvsc_get_rss_hash_opts(ndc, info);
stephen hemmingerb448f4e2017-01-24 13:06:00 -08001311 }
1312 return -EOPNOTSUPP;
1313}
1314
Haiyang Zhang4823eb22017-08-21 19:22:39 -07001315static int netvsc_set_rss_hash_opts(struct net_device_context *ndc,
1316 struct ethtool_rxnfc *info)
1317{
1318 if (info->data == (RXH_IP_SRC | RXH_IP_DST |
1319 RXH_L4_B_0_1 | RXH_L4_B_2_3)) {
Haiyang Zhang486e3982017-10-06 08:33:57 -07001320 switch (info->flow_type) {
1321 case UDP_V4_FLOW:
1322 ndc->l4_hash |= HV_UDP4_L4HASH;
1323 break;
1324
1325 case UDP_V6_FLOW:
1326 ndc->l4_hash |= HV_UDP6_L4HASH;
1327 break;
1328
1329 default:
Haiyang Zhang4823eb22017-08-21 19:22:39 -07001330 return -EOPNOTSUPP;
Haiyang Zhang486e3982017-10-06 08:33:57 -07001331 }
Haiyang Zhang4823eb22017-08-21 19:22:39 -07001332
1333 return 0;
1334 }
1335
1336 if (info->data == (RXH_IP_SRC | RXH_IP_DST)) {
Haiyang Zhang486e3982017-10-06 08:33:57 -07001337 switch (info->flow_type) {
1338 case UDP_V4_FLOW:
1339 ndc->l4_hash &= ~HV_UDP4_L4HASH;
1340 break;
1341
1342 case UDP_V6_FLOW:
1343 ndc->l4_hash &= ~HV_UDP6_L4HASH;
1344 break;
1345
1346 default:
Haiyang Zhang4823eb22017-08-21 19:22:39 -07001347 return -EOPNOTSUPP;
Haiyang Zhang486e3982017-10-06 08:33:57 -07001348 }
Haiyang Zhang4823eb22017-08-21 19:22:39 -07001349
1350 return 0;
1351 }
1352
1353 return -EOPNOTSUPP;
1354}
1355
1356static int
1357netvsc_set_rxnfc(struct net_device *ndev, struct ethtool_rxnfc *info)
1358{
1359 struct net_device_context *ndc = netdev_priv(ndev);
1360
1361 if (info->cmd == ETHTOOL_SRXFH)
1362 return netvsc_set_rss_hash_opts(ndc, info);
1363
1364 return -EOPNOTSUPP;
1365}
1366
Richard Weinberger316158f2014-07-09 16:23:59 +02001367#ifdef CONFIG_NET_POLL_CONTROLLER
stephen hemmingera5ecd432017-06-07 15:53:48 -07001368static void netvsc_poll_controller(struct net_device *dev)
Richard Weinberger316158f2014-07-09 16:23:59 +02001369{
stephen hemmingera5ecd432017-06-07 15:53:48 -07001370 struct net_device_context *ndc = netdev_priv(dev);
1371 struct netvsc_device *ndev;
1372 int i;
1373
1374 rcu_read_lock();
1375 ndev = rcu_dereference(ndc->nvdev);
1376 if (ndev) {
1377 for (i = 0; i < ndev->num_chn; i++) {
1378 struct netvsc_channel *nvchan = &ndev->chan_table[i];
1379
1380 napi_schedule(&nvchan->napi);
1381 }
1382 }
1383 rcu_read_unlock();
Richard Weinberger316158f2014-07-09 16:23:59 +02001384}
1385#endif
Haiyang Zhang1ce09e82012-07-10 07:19:22 +00001386
stephen hemminger962f3fe2017-01-24 13:06:02 -08001387static u32 netvsc_get_rxfh_key_size(struct net_device *dev)
1388{
1389 return NETVSC_HASH_KEYLEN;
1390}
1391
1392static u32 netvsc_rss_indir_size(struct net_device *dev)
1393{
stephen hemmingerff4a4412017-01-24 13:06:04 -08001394 return ITAB_NUM;
stephen hemminger962f3fe2017-01-24 13:06:02 -08001395}
1396
1397static int netvsc_get_rxfh(struct net_device *dev, u32 *indir, u8 *key,
1398 u8 *hfunc)
1399{
1400 struct net_device_context *ndc = netdev_priv(dev);
stephen hemminger867047c2017-07-28 08:59:42 -07001401 struct netvsc_device *ndev = rtnl_dereference(ndc->nvdev);
Colin Ian Kingeb996ed2017-03-25 14:26:39 +00001402 struct rndis_device *rndis_dev;
stephen hemmingerff4a4412017-01-24 13:06:04 -08001403 int i;
stephen hemminger962f3fe2017-01-24 13:06:02 -08001404
stephen hemminger545a8e72017-03-22 14:51:00 -07001405 if (!ndev)
1406 return -ENODEV;
1407
stephen hemminger962f3fe2017-01-24 13:06:02 -08001408 if (hfunc)
1409 *hfunc = ETH_RSS_HASH_TOP; /* Toeplitz */
1410
Colin Ian Kingeb996ed2017-03-25 14:26:39 +00001411 rndis_dev = ndev->extension;
stephen hemmingerff4a4412017-01-24 13:06:04 -08001412 if (indir) {
1413 for (i = 0; i < ITAB_NUM; i++)
1414 indir[i] = rndis_dev->ind_table[i];
1415 }
1416
stephen hemminger962f3fe2017-01-24 13:06:02 -08001417 if (key)
1418 memcpy(key, rndis_dev->rss_key, NETVSC_HASH_KEYLEN);
1419
1420 return 0;
1421}
1422
1423static int netvsc_set_rxfh(struct net_device *dev, const u32 *indir,
1424 const u8 *key, const u8 hfunc)
1425{
1426 struct net_device_context *ndc = netdev_priv(dev);
stephen hemminger545a8e72017-03-22 14:51:00 -07001427 struct netvsc_device *ndev = rtnl_dereference(ndc->nvdev);
Colin Ian Kingeb996ed2017-03-25 14:26:39 +00001428 struct rndis_device *rndis_dev;
stephen hemmingerff4a4412017-01-24 13:06:04 -08001429 int i;
stephen hemminger962f3fe2017-01-24 13:06:02 -08001430
stephen hemminger545a8e72017-03-22 14:51:00 -07001431 if (!ndev)
1432 return -ENODEV;
1433
stephen hemminger962f3fe2017-01-24 13:06:02 -08001434 if (hfunc != ETH_RSS_HASH_NO_CHANGE && hfunc != ETH_RSS_HASH_TOP)
1435 return -EOPNOTSUPP;
1436
Colin Ian Kingeb996ed2017-03-25 14:26:39 +00001437 rndis_dev = ndev->extension;
stephen hemmingerff4a4412017-01-24 13:06:04 -08001438 if (indir) {
1439 for (i = 0; i < ITAB_NUM; i++)
Haiyang Zhangdb3cd7a2017-09-01 14:30:07 -07001440 if (indir[i] >= ndev->num_chn)
stephen hemmingerff4a4412017-01-24 13:06:04 -08001441 return -EINVAL;
1442
1443 for (i = 0; i < ITAB_NUM; i++)
1444 rndis_dev->ind_table[i] = indir[i];
1445 }
1446
1447 if (!key) {
1448 if (!indir)
1449 return 0;
1450
1451 key = rndis_dev->rss_key;
1452 }
stephen hemminger962f3fe2017-01-24 13:06:02 -08001453
Haiyang Zhang715e2ec2017-09-01 14:30:04 -07001454 return rndis_filter_set_rss_param(rndis_dev, key);
stephen hemminger962f3fe2017-01-24 13:06:02 -08001455}
1456
stephen hemminger8b532792017-08-09 17:46:11 -07001457/* Hyper-V RNDIS protocol does not have ring in the HW sense.
1458 * It does have pre-allocated receive area which is divided into sections.
1459 */
1460static void __netvsc_get_ringparam(struct netvsc_device *nvdev,
1461 struct ethtool_ringparam *ring)
1462{
1463 u32 max_buf_size;
1464
1465 ring->rx_pending = nvdev->recv_section_cnt;
1466 ring->tx_pending = nvdev->send_section_cnt;
1467
1468 if (nvdev->nvsp_version <= NVSP_PROTOCOL_VERSION_2)
1469 max_buf_size = NETVSC_RECEIVE_BUFFER_SIZE_LEGACY;
1470 else
1471 max_buf_size = NETVSC_RECEIVE_BUFFER_SIZE;
1472
1473 ring->rx_max_pending = max_buf_size / nvdev->recv_section_size;
1474 ring->tx_max_pending = NETVSC_SEND_BUFFER_SIZE
1475 / nvdev->send_section_size;
1476}
1477
1478static void netvsc_get_ringparam(struct net_device *ndev,
1479 struct ethtool_ringparam *ring)
1480{
1481 struct net_device_context *ndevctx = netdev_priv(ndev);
1482 struct netvsc_device *nvdev = rtnl_dereference(ndevctx->nvdev);
1483
1484 if (!nvdev)
1485 return;
1486
1487 __netvsc_get_ringparam(nvdev, ring);
1488}
1489
1490static int netvsc_set_ringparam(struct net_device *ndev,
1491 struct ethtool_ringparam *ring)
1492{
1493 struct net_device_context *ndevctx = netdev_priv(ndev);
1494 struct netvsc_device *nvdev = rtnl_dereference(ndevctx->nvdev);
1495 struct hv_device *hdev = ndevctx->device_ctx;
1496 struct netvsc_device_info device_info;
1497 struct ethtool_ringparam orig;
1498 u32 new_tx, new_rx;
1499 bool was_opened;
1500 int ret = 0;
1501
1502 if (!nvdev || nvdev->destroy)
1503 return -ENODEV;
1504
1505 memset(&orig, 0, sizeof(orig));
1506 __netvsc_get_ringparam(nvdev, &orig);
1507
1508 new_tx = clamp_t(u32, ring->tx_pending,
1509 NETVSC_MIN_TX_SECTIONS, orig.tx_max_pending);
1510 new_rx = clamp_t(u32, ring->rx_pending,
1511 NETVSC_MIN_RX_SECTIONS, orig.rx_max_pending);
1512
1513 if (new_tx == orig.tx_pending &&
1514 new_rx == orig.rx_pending)
1515 return 0; /* no change */
1516
1517 memset(&device_info, 0, sizeof(device_info));
1518 device_info.num_chn = nvdev->num_chn;
1519 device_info.ring_size = ring_size;
1520 device_info.send_sections = new_tx;
Alex Ng0ab09be2017-09-20 11:17:35 -07001521 device_info.send_section_size = nvdev->send_section_size;
stephen hemminger8b532792017-08-09 17:46:11 -07001522 device_info.recv_sections = new_rx;
Alex Ng0ab09be2017-09-20 11:17:35 -07001523 device_info.recv_section_size = nvdev->recv_section_size;
stephen hemminger8b532792017-08-09 17:46:11 -07001524
1525 netif_device_detach(ndev);
1526 was_opened = rndis_filter_opened(nvdev);
1527 if (was_opened)
1528 rndis_filter_close(nvdev);
1529
1530 rndis_filter_device_remove(hdev, nvdev);
1531
1532 nvdev = rndis_filter_device_add(hdev, &device_info);
1533 if (IS_ERR(nvdev)) {
1534 ret = PTR_ERR(nvdev);
1535
1536 device_info.send_sections = orig.tx_pending;
1537 device_info.recv_sections = orig.rx_pending;
1538 nvdev = rndis_filter_device_add(hdev, &device_info);
1539 if (IS_ERR(nvdev)) {
1540 netdev_err(ndev, "restoring ringparam failed: %ld\n",
1541 PTR_ERR(nvdev));
1542 return ret;
1543 }
1544 }
1545
1546 if (was_opened)
1547 rndis_filter_open(nvdev);
1548 netif_device_attach(ndev);
1549
1550 /* We may have missed link change notifications */
1551 ndevctx->last_reconfig = 0;
1552 schedule_delayed_work(&ndevctx->dwork, 0);
1553
1554 return ret;
1555}
1556
Stephen Hemmingerf82f4ad2010-05-04 09:58:57 -07001557static const struct ethtool_ops ethtool_ops = {
1558 .get_drvinfo = netvsc_get_drvinfo,
Stephen Hemmingerf82f4ad2010-05-04 09:58:57 -07001559 .get_link = ethtool_op_get_link,
Stephen Hemminger4323b472016-08-23 12:17:57 -07001560 .get_ethtool_stats = netvsc_get_ethtool_stats,
1561 .get_sset_count = netvsc_get_sset_count,
1562 .get_strings = netvsc_get_strings,
Andrew Schwartzmeyer59995372015-02-26 16:27:14 -08001563 .get_channels = netvsc_get_channels,
Andrew Schwartzmeyerb5960e62015-08-11 17:14:32 -07001564 .set_channels = netvsc_set_channels,
sixiao@microsoft.com76d13b52016-02-17 16:43:59 -08001565 .get_ts_info = ethtool_op_get_ts_info,
stephen hemmingerb448f4e2017-01-24 13:06:00 -08001566 .get_rxnfc = netvsc_get_rxnfc,
Haiyang Zhang4823eb22017-08-21 19:22:39 -07001567 .set_rxnfc = netvsc_set_rxnfc,
stephen hemminger962f3fe2017-01-24 13:06:02 -08001568 .get_rxfh_key_size = netvsc_get_rxfh_key_size,
1569 .get_rxfh_indir_size = netvsc_rss_indir_size,
1570 .get_rxfh = netvsc_get_rxfh,
1571 .set_rxfh = netvsc_set_rxfh,
Philippe Reynes5e8456f2017-03-08 23:41:04 +01001572 .get_link_ksettings = netvsc_get_link_ksettings,
1573 .set_link_ksettings = netvsc_set_link_ksettings,
stephen hemminger8b532792017-08-09 17:46:11 -07001574 .get_ringparam = netvsc_get_ringparam,
1575 .set_ringparam = netvsc_set_ringparam,
Stephen Hemmingerf82f4ad2010-05-04 09:58:57 -07001576};
1577
Greg Kroah-Hartmandf2fff22009-08-31 21:11:12 -07001578static const struct net_device_ops device_ops = {
1579 .ndo_open = netvsc_open,
1580 .ndo_stop = netvsc_close,
1581 .ndo_start_xmit = netvsc_start_xmit,
Jiri Pirkoafc4b132011-08-16 06:29:01 +00001582 .ndo_set_rx_mode = netvsc_set_multicast_list,
Haiyang Zhang4d447c92011-12-15 13:45:17 -08001583 .ndo_change_mtu = netvsc_change_mtu,
Haiyang Zhangb681b582010-08-03 19:15:31 +00001584 .ndo_validate_addr = eth_validate_addr,
Haiyang Zhang1ce09e82012-07-10 07:19:22 +00001585 .ndo_set_mac_address = netvsc_set_mac_addr,
Haiyang Zhang5b54dac2014-04-21 10:20:28 -07001586 .ndo_select_queue = netvsc_select_queue,
sixiao@microsoft.com7eafd9b2015-05-14 01:00:25 -07001587 .ndo_get_stats64 = netvsc_get_stats64,
Richard Weinberger316158f2014-07-09 16:23:59 +02001588#ifdef CONFIG_NET_POLL_CONTROLLER
1589 .ndo_poll_controller = netvsc_poll_controller,
1590#endif
Greg Kroah-Hartmandf2fff22009-08-31 21:11:12 -07001591};
1592
Haiyang Zhangc996edc2011-04-06 15:18:00 -07001593/*
Vitaly Kuznetsov27a70af2015-11-27 11:39:55 +01001594 * Handle link status changes. For RNDIS_STATUS_NETWORK_CHANGE emulate link
1595 * down/up sequence. In case of RNDIS_STATUS_MEDIA_CONNECT when carrier is
1596 * present send GARP packet to network peers with netif_notify_peers().
Haiyang Zhangc996edc2011-04-06 15:18:00 -07001597 */
Haiyang Zhang891de742014-02-12 16:54:27 -08001598static void netvsc_link_change(struct work_struct *w)
Haiyang Zhangc996edc2011-04-06 15:18:00 -07001599{
Vitaly Kuznetsov0a1275c2016-05-13 13:55:23 +02001600 struct net_device_context *ndev_ctx =
1601 container_of(w, struct net_device_context, dwork.work);
1602 struct hv_device *device_obj = ndev_ctx->device_ctx;
1603 struct net_device *net = hv_get_drvdata(device_obj);
K. Y. Srinivasan2ddd5e5f2011-09-13 10:59:49 -07001604 struct netvsc_device *net_device;
Haiyang Zhang891de742014-02-12 16:54:27 -08001605 struct rndis_device *rdev;
Vitaly Kuznetsov27a70af2015-11-27 11:39:55 +01001606 struct netvsc_reconfig *event = NULL;
1607 bool notify = false, reschedule = false;
1608 unsigned long flags, next_reconfig, delay;
Haiyang Zhangc996edc2011-04-06 15:18:00 -07001609
stephen hemminger9b4e9462017-08-24 16:49:16 -07001610 /* if changes are happening, comeback later */
1611 if (!rtnl_trylock()) {
1612 schedule_delayed_work(&ndev_ctx->dwork, LINKCHANGE_INT);
1613 return;
1614 }
1615
stephen hemmingera0be4502017-03-22 14:51:01 -07001616 net_device = rtnl_dereference(ndev_ctx->nvdev);
1617 if (!net_device)
Vitaly Kuznetsov1bdcec82016-05-13 13:55:21 +02001618 goto out_unlock;
1619
Haiyang Zhang891de742014-02-12 16:54:27 -08001620 rdev = net_device->extension;
Haiyang Zhang891de742014-02-12 16:54:27 -08001621
Vitaly Kuznetsov27a70af2015-11-27 11:39:55 +01001622 next_reconfig = ndev_ctx->last_reconfig + LINKCHANGE_INT;
1623 if (time_is_after_jiffies(next_reconfig)) {
1624 /* link_watch only sends one notification with current state
1625 * per second, avoid doing reconfig more frequently. Handle
1626 * wrap around.
1627 */
1628 delay = next_reconfig - jiffies;
1629 delay = delay < LINKCHANGE_INT ? delay : LINKCHANGE_INT;
1630 schedule_delayed_work(&ndev_ctx->dwork, delay);
Vitaly Kuznetsov1bdcec82016-05-13 13:55:21 +02001631 goto out_unlock;
Vitaly Kuznetsov27a70af2015-11-27 11:39:55 +01001632 }
1633 ndev_ctx->last_reconfig = jiffies;
1634
1635 spin_lock_irqsave(&ndev_ctx->lock, flags);
1636 if (!list_empty(&ndev_ctx->reconfig_events)) {
1637 event = list_first_entry(&ndev_ctx->reconfig_events,
1638 struct netvsc_reconfig, list);
1639 list_del(&event->list);
1640 reschedule = !list_empty(&ndev_ctx->reconfig_events);
1641 }
1642 spin_unlock_irqrestore(&ndev_ctx->lock, flags);
1643
1644 if (!event)
Vitaly Kuznetsov1bdcec82016-05-13 13:55:21 +02001645 goto out_unlock;
Vitaly Kuznetsov27a70af2015-11-27 11:39:55 +01001646
1647 switch (event->event) {
1648 /* Only the following events are possible due to the check in
1649 * netvsc_linkstatus_callback()
1650 */
1651 case RNDIS_STATUS_MEDIA_CONNECT:
1652 if (rdev->link_state) {
1653 rdev->link_state = false;
stephen hemminger0c195562017-08-01 19:58:53 -07001654 netif_carrier_on(net);
Vitaly Kuznetsov27a70af2015-11-27 11:39:55 +01001655 netif_tx_wake_all_queues(net);
1656 } else {
1657 notify = true;
Haiyang Zhang3a494e72014-06-19 18:34:36 -07001658 }
Vitaly Kuznetsov27a70af2015-11-27 11:39:55 +01001659 kfree(event);
1660 break;
1661 case RNDIS_STATUS_MEDIA_DISCONNECT:
1662 if (!rdev->link_state) {
1663 rdev->link_state = true;
1664 netif_carrier_off(net);
1665 netif_tx_stop_all_queues(net);
1666 }
1667 kfree(event);
1668 break;
1669 case RNDIS_STATUS_NETWORK_CHANGE:
1670 /* Only makes sense if carrier is present */
1671 if (!rdev->link_state) {
1672 rdev->link_state = true;
1673 netif_carrier_off(net);
1674 netif_tx_stop_all_queues(net);
1675 event->event = RNDIS_STATUS_MEDIA_CONNECT;
1676 spin_lock_irqsave(&ndev_ctx->lock, flags);
Haiyang Zhang15cfd402016-04-21 16:13:01 -07001677 list_add(&event->list, &ndev_ctx->reconfig_events);
Vitaly Kuznetsov27a70af2015-11-27 11:39:55 +01001678 spin_unlock_irqrestore(&ndev_ctx->lock, flags);
1679 reschedule = true;
1680 }
1681 break;
Haiyang Zhang891de742014-02-12 16:54:27 -08001682 }
1683
1684 rtnl_unlock();
1685
1686 if (notify)
1687 netdev_notify_peers(net);
Vitaly Kuznetsov27a70af2015-11-27 11:39:55 +01001688
1689 /* link_watch only sends one notification with current state per
1690 * second, handle next reconfig event in 2 seconds.
1691 */
1692 if (reschedule)
1693 schedule_delayed_work(&ndev_ctx->dwork, LINKCHANGE_INT);
Vitaly Kuznetsov1bdcec82016-05-13 13:55:21 +02001694
1695 return;
1696
1697out_unlock:
1698 rtnl_unlock();
Haiyang Zhangc996edc2011-04-06 15:18:00 -07001699}
1700
Stephen Hemmingere8ff40d2016-09-22 16:56:32 -07001701static struct net_device *get_netvsc_bymac(const u8 *mac)
KY Srinivasan84bf9ce2016-04-14 16:31:54 -07001702{
Stephen Hemmingere8ff40d2016-09-22 16:56:32 -07001703 struct net_device *dev;
KY Srinivasan84bf9ce2016-04-14 16:31:54 -07001704
Stephen Hemminger8737caa2016-08-23 12:17:44 -07001705 ASSERT_RTNL();
KY Srinivasan84bf9ce2016-04-14 16:31:54 -07001706
1707 for_each_netdev(&init_net, dev) {
Stephen Hemmingere8ff40d2016-09-22 16:56:32 -07001708 if (dev->netdev_ops != &device_ops)
1709 continue; /* not a netvsc device */
1710
1711 if (ether_addr_equal(mac, dev->perm_addr))
1712 return dev;
KY Srinivasan84bf9ce2016-04-14 16:31:54 -07001713 }
KY Srinivasan84bf9ce2016-04-14 16:31:54 -07001714
Stephen Hemmingere8ff40d2016-09-22 16:56:32 -07001715 return NULL;
1716}
1717
Stephen Hemmingerf207c102016-09-22 16:56:33 -07001718static struct net_device *get_netvsc_byref(struct net_device *vf_netdev)
Stephen Hemmingere8ff40d2016-09-22 16:56:32 -07001719{
1720 struct net_device *dev;
1721
1722 ASSERT_RTNL();
1723
1724 for_each_netdev(&init_net, dev) {
1725 struct net_device_context *net_device_ctx;
1726
1727 if (dev->netdev_ops != &device_ops)
1728 continue; /* not a netvsc device */
1729
1730 net_device_ctx = netdev_priv(dev);
stephen hemminger79e8cbe2017-07-19 11:53:13 -07001731 if (!rtnl_dereference(net_device_ctx->nvdev))
Stephen Hemmingere8ff40d2016-09-22 16:56:32 -07001732 continue; /* device is removed */
1733
Stephen Hemmingerf207c102016-09-22 16:56:33 -07001734 if (rtnl_dereference(net_device_ctx->vf_netdev) == vf_netdev)
Stephen Hemmingere8ff40d2016-09-22 16:56:32 -07001735 return dev; /* a match */
1736 }
1737
1738 return NULL;
KY Srinivasan84bf9ce2016-04-14 16:31:54 -07001739}
1740
stephen hemminger0c195562017-08-01 19:58:53 -07001741/* Called when VF is injecting data into network stack.
1742 * Change the associated network device from VF to netvsc.
1743 * note: already called with rcu_read_lock
1744 */
1745static rx_handler_result_t netvsc_vf_handle_frame(struct sk_buff **pskb)
1746{
1747 struct sk_buff *skb = *pskb;
1748 struct net_device *ndev = rcu_dereference(skb->dev->rx_handler_data);
1749 struct net_device_context *ndev_ctx = netdev_priv(ndev);
1750 struct netvsc_vf_pcpu_stats *pcpu_stats
1751 = this_cpu_ptr(ndev_ctx->vf_stats);
1752
1753 skb->dev = ndev;
1754
1755 u64_stats_update_begin(&pcpu_stats->syncp);
1756 pcpu_stats->rx_packets++;
1757 pcpu_stats->rx_bytes += skb->len;
1758 u64_stats_update_end(&pcpu_stats->syncp);
1759
1760 return RX_HANDLER_ANOTHER;
1761}
1762
1763static int netvsc_vf_join(struct net_device *vf_netdev,
1764 struct net_device *ndev)
1765{
1766 struct net_device_context *ndev_ctx = netdev_priv(ndev);
1767 int ret;
1768
1769 ret = netdev_rx_handler_register(vf_netdev,
1770 netvsc_vf_handle_frame, ndev);
1771 if (ret != 0) {
1772 netdev_err(vf_netdev,
1773 "can not register netvsc VF receive handler (err = %d)\n",
1774 ret);
1775 goto rx_handler_failed;
1776 }
1777
David Ahern42ab19e2017-10-04 17:48:47 -07001778 ret = netdev_upper_dev_link(vf_netdev, ndev, NULL);
stephen hemminger0c195562017-08-01 19:58:53 -07001779 if (ret != 0) {
1780 netdev_err(vf_netdev,
1781 "can not set master device %s (err = %d)\n",
1782 ndev->name, ret);
1783 goto upper_link_failed;
1784 }
1785
1786 /* set slave flag before open to prevent IPv6 addrconf */
1787 vf_netdev->flags |= IFF_SLAVE;
1788
stephen hemminger6123c662017-08-09 17:46:03 -07001789 schedule_delayed_work(&ndev_ctx->vf_takeover, VF_TAKEOVER_INT);
1790
1791 call_netdevice_notifiers(NETDEV_JOIN, vf_netdev);
stephen hemminger0c195562017-08-01 19:58:53 -07001792
1793 netdev_info(vf_netdev, "joined to %s\n", ndev->name);
1794 return 0;
1795
1796upper_link_failed:
1797 netdev_rx_handler_unregister(vf_netdev);
1798rx_handler_failed:
1799 return ret;
1800}
1801
1802static void __netvsc_vf_setup(struct net_device *ndev,
1803 struct net_device *vf_netdev)
1804{
1805 int ret;
1806
stephen hemminger0c195562017-08-01 19:58:53 -07001807 /* Align MTU of VF with master */
1808 ret = dev_set_mtu(vf_netdev, ndev->mtu);
1809 if (ret)
1810 netdev_warn(vf_netdev,
1811 "unable to change mtu to %u\n", ndev->mtu);
1812
1813 if (netif_running(ndev)) {
1814 ret = dev_open(vf_netdev);
1815 if (ret)
1816 netdev_warn(vf_netdev,
1817 "unable to open: %d\n", ret);
1818 }
1819}
1820
1821/* Setup VF as slave of the synthetic device.
1822 * Runs in workqueue to avoid recursion in netlink callbacks.
1823 */
1824static void netvsc_vf_setup(struct work_struct *w)
1825{
1826 struct net_device_context *ndev_ctx
stephen hemminger6123c662017-08-09 17:46:03 -07001827 = container_of(w, struct net_device_context, vf_takeover.work);
stephen hemminger0c195562017-08-01 19:58:53 -07001828 struct net_device *ndev = hv_get_drvdata(ndev_ctx->device_ctx);
1829 struct net_device *vf_netdev;
1830
stephen hemmingerfb84af82017-08-04 12:14:00 -07001831 if (!rtnl_trylock()) {
stephen hemminger6123c662017-08-09 17:46:03 -07001832 schedule_delayed_work(&ndev_ctx->vf_takeover, 0);
stephen hemmingerfb84af82017-08-04 12:14:00 -07001833 return;
1834 }
1835
stephen hemminger0c195562017-08-01 19:58:53 -07001836 vf_netdev = rtnl_dereference(ndev_ctx->vf_netdev);
1837 if (vf_netdev)
1838 __netvsc_vf_setup(ndev, vf_netdev);
1839
1840 rtnl_unlock();
1841}
1842
KY Srinivasan84bf9ce2016-04-14 16:31:54 -07001843static int netvsc_register_vf(struct net_device *vf_netdev)
1844{
Vitaly Kuznetsov0a1275c2016-05-13 13:55:23 +02001845 struct net_device *ndev;
1846 struct net_device_context *net_device_ctx;
KY Srinivasan84bf9ce2016-04-14 16:31:54 -07001847 struct netvsc_device *netvsc_dev;
KY Srinivasan84bf9ce2016-04-14 16:31:54 -07001848
Stephen Hemmingere8ff40d2016-09-22 16:56:32 -07001849 if (vf_netdev->addr_len != ETH_ALEN)
1850 return NOTIFY_DONE;
1851
KY Srinivasan84bf9ce2016-04-14 16:31:54 -07001852 /*
1853 * We will use the MAC address to locate the synthetic interface to
1854 * associate with the VF interface. If we don't find a matching
1855 * synthetic interface, move on.
1856 */
Stephen Hemmingere8ff40d2016-09-22 16:56:32 -07001857 ndev = get_netvsc_bymac(vf_netdev->perm_addr);
Vitaly Kuznetsov0a1275c2016-05-13 13:55:23 +02001858 if (!ndev)
1859 return NOTIFY_DONE;
1860
1861 net_device_ctx = netdev_priv(ndev);
stephen hemminger545a8e72017-03-22 14:51:00 -07001862 netvsc_dev = rtnl_dereference(net_device_ctx->nvdev);
Stephen Hemmingerf207c102016-09-22 16:56:33 -07001863 if (!netvsc_dev || rtnl_dereference(net_device_ctx->vf_netdev))
KY Srinivasan84bf9ce2016-04-14 16:31:54 -07001864 return NOTIFY_DONE;
1865
stephen hemminger0c195562017-08-01 19:58:53 -07001866 if (netvsc_vf_join(vf_netdev, ndev) != 0)
1867 return NOTIFY_DONE;
1868
Vitaly Kuznetsov0a1275c2016-05-13 13:55:23 +02001869 netdev_info(ndev, "VF registering: %s\n", vf_netdev->name);
stephen hemminger0c195562017-08-01 19:58:53 -07001870
Stephen Hemminger07d0f002016-09-22 16:56:30 -07001871 dev_hold(vf_netdev);
Stephen Hemmingerf207c102016-09-22 16:56:33 -07001872 rcu_assign_pointer(net_device_ctx->vf_netdev, vf_netdev);
KY Srinivasan84bf9ce2016-04-14 16:31:54 -07001873 return NOTIFY_OK;
1874}
1875
Stephen Hemminger9a0c48d2017-08-31 16:16:12 -07001876/* VF up/down change detected, schedule to change data path */
1877static int netvsc_vf_changed(struct net_device *vf_netdev)
KY Srinivasan84bf9ce2016-04-14 16:31:54 -07001878{
KY Srinivasan84bf9ce2016-04-14 16:31:54 -07001879 struct net_device_context *net_device_ctx;
stephen hemminger7b83f522017-08-07 11:30:00 -07001880 struct netvsc_device *netvsc_dev;
stephen hemminger0c195562017-08-01 19:58:53 -07001881 struct net_device *ndev;
Stephen Hemminger9a0c48d2017-08-31 16:16:12 -07001882 bool vf_is_up = netif_running(vf_netdev);
KY Srinivasan84bf9ce2016-04-14 16:31:54 -07001883
Stephen Hemmingere8ff40d2016-09-22 16:56:32 -07001884 ndev = get_netvsc_byref(vf_netdev);
Vitaly Kuznetsov0a1275c2016-05-13 13:55:23 +02001885 if (!ndev)
1886 return NOTIFY_DONE;
1887
1888 net_device_ctx = netdev_priv(ndev);
stephen hemminger7b83f522017-08-07 11:30:00 -07001889 netvsc_dev = rtnl_dereference(net_device_ctx->nvdev);
1890 if (!netvsc_dev)
1891 return NOTIFY_DONE;
1892
Stephen Hemminger9a0c48d2017-08-31 16:16:12 -07001893 netvsc_switch_datapath(ndev, vf_is_up);
1894 netdev_info(ndev, "Data path switched %s VF: %s\n",
1895 vf_is_up ? "to" : "from", vf_netdev->name);
KY Srinivasan84bf9ce2016-04-14 16:31:54 -07001896
1897 return NOTIFY_OK;
1898}
1899
KY Srinivasan84bf9ce2016-04-14 16:31:54 -07001900static int netvsc_unregister_vf(struct net_device *vf_netdev)
1901{
Vitaly Kuznetsov0a1275c2016-05-13 13:55:23 +02001902 struct net_device *ndev;
Vitaly Kuznetsov0a1275c2016-05-13 13:55:23 +02001903 struct net_device_context *net_device_ctx;
KY Srinivasan84bf9ce2016-04-14 16:31:54 -07001904
Stephen Hemmingere8ff40d2016-09-22 16:56:32 -07001905 ndev = get_netvsc_byref(vf_netdev);
Vitaly Kuznetsov0a1275c2016-05-13 13:55:23 +02001906 if (!ndev)
1907 return NOTIFY_DONE;
1908
1909 net_device_ctx = netdev_priv(ndev);
stephen hemminger6123c662017-08-09 17:46:03 -07001910 cancel_delayed_work_sync(&net_device_ctx->vf_takeover);
Stephen Hemmingere8ff40d2016-09-22 16:56:32 -07001911
Vitaly Kuznetsov0a1275c2016-05-13 13:55:23 +02001912 netdev_info(ndev, "VF unregistering: %s\n", vf_netdev->name);
Stephen Hemmingerf207c102016-09-22 16:56:33 -07001913
Stephen Hemmingerec158f72017-08-31 16:16:13 -07001914 netdev_rx_handler_unregister(vf_netdev);
stephen hemminger0c195562017-08-01 19:58:53 -07001915 netdev_upper_dev_unlink(vf_netdev, ndev);
Stephen Hemmingerf207c102016-09-22 16:56:33 -07001916 RCU_INIT_POINTER(net_device_ctx->vf_netdev, NULL);
Stephen Hemminger07d0f002016-09-22 16:56:30 -07001917 dev_put(vf_netdev);
Stephen Hemmingerec158f72017-08-31 16:16:13 -07001918
KY Srinivasan84bf9ce2016-04-14 16:31:54 -07001919 return NOTIFY_OK;
1920}
1921
K. Y. Srinivasan84946892011-09-13 10:59:38 -07001922static int netvsc_probe(struct hv_device *dev,
1923 const struct hv_vmbus_device_id *dev_id)
Greg Kroah-Hartmandf2fff22009-08-31 21:11:12 -07001924{
Greg Kroah-Hartmandf2fff22009-08-31 21:11:12 -07001925 struct net_device *net = NULL;
1926 struct net_device_context *net_device_ctx;
1927 struct netvsc_device_info device_info;
Haiyang Zhang5b54dac2014-04-21 10:20:28 -07001928 struct netvsc_device *nvdev;
stephen hemminger0c195562017-08-01 19:58:53 -07001929 int ret = -ENOMEM;
Greg Kroah-Hartmandf2fff22009-08-31 21:11:12 -07001930
Haiyang Zhang5b54dac2014-04-21 10:20:28 -07001931 net = alloc_etherdev_mq(sizeof(struct net_device_context),
stephen hemminger2b018882017-01-24 13:06:03 -08001932 VRSS_CHANNEL_MAX);
Greg Kroah-Hartmandf2fff22009-08-31 21:11:12 -07001933 if (!net)
stephen hemminger0c195562017-08-01 19:58:53 -07001934 goto no_net;
Greg Kroah-Hartmandf2fff22009-08-31 21:11:12 -07001935
Haiyang Zhang1b07da52014-03-04 14:11:06 -08001936 netif_carrier_off(net);
1937
Haiyang Zhangb37879e2016-08-04 10:42:14 -07001938 netvsc_init_settings(net);
1939
Greg Kroah-Hartmandf2fff22009-08-31 21:11:12 -07001940 net_device_ctx = netdev_priv(net);
K. Y. Srinivasan9efd21e2011-04-29 13:45:10 -07001941 net_device_ctx->device_ctx = dev;
Simon Xiao3f300ff2015-04-28 01:05:17 -07001942 net_device_ctx->msg_enable = netif_msg_init(debug, default_msg);
1943 if (netif_msg_probe(net_device_ctx))
1944 netdev_dbg(net, "netvsc msg_enable: %d\n",
1945 net_device_ctx->msg_enable);
1946
K. Y. Srinivasan2ddd5e5f2011-09-13 10:59:49 -07001947 hv_set_drvdata(dev, net);
Vitaly Kuznetsovf580aec2016-05-13 13:55:20 +02001948
Haiyang Zhang891de742014-02-12 16:54:27 -08001949 INIT_DELAYED_WORK(&net_device_ctx->dwork, netvsc_link_change);
Greg Kroah-Hartmandf2fff22009-08-31 21:11:12 -07001950
Vitaly Kuznetsov27a70af2015-11-27 11:39:55 +01001951 spin_lock_init(&net_device_ctx->lock);
1952 INIT_LIST_HEAD(&net_device_ctx->reconfig_events);
stephen hemminger6123c662017-08-09 17:46:03 -07001953 INIT_DELAYED_WORK(&net_device_ctx->vf_takeover, netvsc_vf_setup);
stephen hemminger0c195562017-08-01 19:58:53 -07001954
1955 net_device_ctx->vf_stats
1956 = netdev_alloc_pcpu_stats(struct netvsc_vf_pcpu_stats);
1957 if (!net_device_ctx->vf_stats)
1958 goto no_stats;
Vitaly Kuznetsov27a70af2015-11-27 11:39:55 +01001959
Greg Kroah-Hartmandf2fff22009-08-31 21:11:12 -07001960 net->netdev_ops = &device_ops;
Wilfried Klaebe7ad24ea2014-05-11 00:12:32 +00001961 net->ethtool_ops = &ethtool_ops;
K. Y. Srinivasan9efd21e2011-04-29 13:45:10 -07001962 SET_NETDEV_DEV(net, &dev->device);
Greg Kroah-Hartmandf2fff22009-08-31 21:11:12 -07001963
Vitaly Kuznetsov14a03cf2016-02-05 17:29:08 +01001964 /* We always need headroom for rndis header */
1965 net->needed_headroom = RNDIS_AND_PPI_SIZE;
1966
Haiyang Zhang6450f8f2017-09-22 15:31:38 -07001967 /* Initialize the number of queues to be 1, we may change it if more
1968 * channels are offered later.
1969 */
1970 netif_set_real_num_tx_queues(net, 1);
1971 netif_set_real_num_rx_queues(net, 1);
1972
Haiyang Zhang692e0842011-09-01 12:19:43 -07001973 /* Notify the netvsc driver of the new device */
Andrew Schwartzmeyer8ebdcc52015-08-11 17:14:31 -07001974 memset(&device_info, 0, sizeof(device_info));
Haiyang Zhang692e0842011-09-01 12:19:43 -07001975 device_info.ring_size = ring_size;
stephen hemminger3071ada2017-03-22 14:50:59 -07001976 device_info.num_chn = VRSS_CHANNEL_DEFAULT;
stephen hemminger8b532792017-08-09 17:46:11 -07001977 device_info.send_sections = NETVSC_DEFAULT_TX;
Alex Ng0ab09be2017-09-20 11:17:35 -07001978 device_info.send_section_size = NETVSC_SEND_SECTION_SIZE;
stephen hemminger8b532792017-08-09 17:46:11 -07001979 device_info.recv_sections = NETVSC_DEFAULT_RX;
Alex Ng0ab09be2017-09-20 11:17:35 -07001980 device_info.recv_section_size = NETVSC_RECV_SECTION_SIZE;
stephen hemminger9749fed2017-07-19 11:53:16 -07001981
1982 nvdev = rndis_filter_device_add(dev, &device_info);
1983 if (IS_ERR(nvdev)) {
1984 ret = PTR_ERR(nvdev);
Haiyang Zhang692e0842011-09-01 12:19:43 -07001985 netdev_err(net, "unable to add netvsc device (ret %d)\n", ret);
stephen hemminger0c195562017-08-01 19:58:53 -07001986 goto rndis_failed;
Haiyang Zhang692e0842011-09-01 12:19:43 -07001987 }
stephen hemminger0c195562017-08-01 19:58:53 -07001988
Haiyang Zhang692e0842011-09-01 12:19:43 -07001989 memcpy(net->dev_addr, device_info.mac_adr, ETH_ALEN);
1990
stephen hemminger23312a32017-01-24 13:05:59 -08001991 /* hw_features computed in rndis_filter_device_add */
1992 net->features = net->hw_features |
1993 NETIF_F_HIGHDMA | NETIF_F_SG |
1994 NETIF_F_HW_VLAN_CTAG_TX | NETIF_F_HW_VLAN_CTAG_RX;
1995 net->vlan_features = net->features;
1996
stephen hemminger9749fed2017-07-19 11:53:16 -07001997 netdev_lockdep_set_classes(net);
1998
Jarod Wilsond0c2c992016-10-20 13:55:21 -04001999 /* MTU range: 68 - 1500 or 65521 */
2000 net->min_mtu = NETVSC_MTU_MIN;
2001 if (nvdev->nvsp_version >= NVSP_PROTOCOL_VERSION_2)
2002 net->max_mtu = NETVSC_MTU - ETH_HLEN;
2003 else
2004 net->max_mtu = ETH_DATA_LEN;
2005
Haiyang Zhanga68f9612013-12-20 16:52:31 -08002006 ret = register_netdev(net);
2007 if (ret != 0) {
2008 pr_err("Unable to register netdev.\n");
stephen hemminger0c195562017-08-01 19:58:53 -07002009 goto register_failed;
Haiyang Zhanga68f9612013-12-20 16:52:31 -08002010 }
2011
Greg Kroah-Hartmandf2fff22009-08-31 21:11:12 -07002012 return ret;
stephen hemminger0c195562017-08-01 19:58:53 -07002013
2014register_failed:
2015 rndis_filter_device_remove(dev, nvdev);
2016rndis_failed:
2017 free_percpu(net_device_ctx->vf_stats);
2018no_stats:
2019 hv_set_drvdata(dev, NULL);
2020 free_netdev(net);
2021no_net:
2022 return ret;
Greg Kroah-Hartmandf2fff22009-08-31 21:11:12 -07002023}
2024
K. Y. Srinivasan415b0232011-04-29 13:45:12 -07002025static int netvsc_remove(struct hv_device *dev)
Greg Kroah-Hartmandf2fff22009-08-31 21:11:12 -07002026{
Haiyang Zhang122a5f62011-05-27 06:21:55 -07002027 struct net_device_context *ndev_ctx;
Stephen Hemmingerec158f72017-08-31 16:16:13 -07002028 struct net_device *vf_netdev;
2029 struct net_device *net;
K. Y. Srinivasan2ddd5e5f2011-09-13 10:59:49 -07002030
Vitaly Kuznetsov3d541ac2016-05-13 13:55:22 +02002031 net = hv_get_drvdata(dev);
Greg Kroah-Hartmandf2fff22009-08-31 21:11:12 -07002032 if (net == NULL) {
K. Y. Srinivasan415b0232011-04-29 13:45:12 -07002033 dev_err(&dev->device, "No net device to remove\n");
Greg Kroah-Hartmandf2fff22009-08-31 21:11:12 -07002034 return 0;
2035 }
2036
Haiyang Zhang122a5f62011-05-27 06:21:55 -07002037 ndev_ctx = netdev_priv(net);
Vitaly Kuznetsov3d541ac2016-05-13 13:55:22 +02002038
stephen hemmingera0be4502017-03-22 14:51:01 -07002039 netif_device_detach(net);
Vitaly Kuznetsovf580aec2016-05-13 13:55:20 +02002040
Haiyang Zhang122a5f62011-05-27 06:21:55 -07002041 cancel_delayed_work_sync(&ndev_ctx->dwork);
2042
Greg Kroah-Hartmandf2fff22009-08-31 21:11:12 -07002043 /*
2044 * Call to the vsc driver to let it know that the device is being
stephen hemmingera0be4502017-03-22 14:51:01 -07002045 * removed. Also blocks mtu and channel changes.
Greg Kroah-Hartmandf2fff22009-08-31 21:11:12 -07002046 */
stephen hemmingera0be4502017-03-22 14:51:01 -07002047 rtnl_lock();
Stephen Hemmingerec158f72017-08-31 16:16:13 -07002048 vf_netdev = rtnl_dereference(ndev_ctx->vf_netdev);
2049 if (vf_netdev)
2050 netvsc_unregister_vf(vf_netdev);
2051
Stephen Hemminger8195b132017-09-06 13:53:05 -07002052 unregister_netdevice(net);
2053
stephen hemminger79e8cbe2017-07-19 11:53:13 -07002054 rndis_filter_device_remove(dev,
2055 rtnl_dereference(ndev_ctx->nvdev));
stephen hemmingera0be4502017-03-22 14:51:01 -07002056 rtnl_unlock();
2057
Vitaly Kuznetsov3d541ac2016-05-13 13:55:22 +02002058 hv_set_drvdata(dev, NULL);
2059
stephen hemminger0c195562017-08-01 19:58:53 -07002060 free_percpu(ndev_ctx->vf_stats);
Simon Xiao6c80f3f2017-01-24 13:06:13 -08002061 free_netdev(net);
Haiyang Zhangdf06bcf2011-05-23 09:03:47 -07002062 return 0;
Greg Kroah-Hartmandf2fff22009-08-31 21:11:12 -07002063}
2064
K. Y. Srinivasan345c4cc2011-08-25 09:48:34 -07002065static const struct hv_vmbus_device_id id_table[] = {
Greg Kroah-Hartmanc45cf2d2011-08-25 11:41:33 -07002066 /* Network guid */
K. Y. Srinivasan8f505942013-01-23 17:42:42 -08002067 { HV_NIC_GUID, },
Greg Kroah-Hartmanc45cf2d2011-08-25 11:41:33 -07002068 { },
K. Y. Srinivasan345c4cc2011-08-25 09:48:34 -07002069};
2070
2071MODULE_DEVICE_TABLE(vmbus, id_table);
2072
K. Y. Srinivasanf1542a62011-05-10 07:55:16 -07002073/* The one and only one */
K. Y. Srinivasanfde0ef92011-05-12 19:35:08 -07002074static struct hv_driver netvsc_drv = {
Haiyang Zhangd31b20f2012-03-07 10:02:00 +00002075 .name = KBUILD_MODNAME,
K. Y. Srinivasan345c4cc2011-08-25 09:48:34 -07002076 .id_table = id_table,
K. Y. Srinivasanfde0ef92011-05-12 19:35:08 -07002077 .probe = netvsc_probe,
2078 .remove = netvsc_remove,
K. Y. Srinivasand4890972011-05-10 07:55:17 -07002079};
K. Y. Srinivasanf1542a62011-05-10 07:55:16 -07002080
KY Srinivasan84bf9ce2016-04-14 16:31:54 -07002081/*
2082 * On Hyper-V, every VF interface is matched with a corresponding
2083 * synthetic interface. The synthetic interface is presented first
2084 * to the guest. When the corresponding VF instance is registered,
2085 * we will take care of switching the data path.
2086 */
2087static int netvsc_netdev_event(struct notifier_block *this,
2088 unsigned long event, void *ptr)
2089{
2090 struct net_device *event_dev = netdev_notifier_info_to_dev(ptr);
2091
Stephen Hemmingeree837a12016-09-22 16:56:31 -07002092 /* Skip our own events */
2093 if (event_dev->netdev_ops == &device_ops)
2094 return NOTIFY_DONE;
2095
2096 /* Avoid non-Ethernet type devices */
2097 if (event_dev->type != ARPHRD_ETHER)
2098 return NOTIFY_DONE;
2099
Vitaly Kuznetsov0dbff142016-08-15 17:48:43 +02002100 /* Avoid Vlan dev with same MAC registering as VF */
Parav Panditd0d7b102017-02-04 11:00:49 -06002101 if (is_vlan_dev(event_dev))
Vitaly Kuznetsov0dbff142016-08-15 17:48:43 +02002102 return NOTIFY_DONE;
2103
2104 /* Avoid Bonding master dev with same MAC registering as VF */
Stephen Hemmingeree837a12016-09-22 16:56:31 -07002105 if ((event_dev->priv_flags & IFF_BONDING) &&
2106 (event_dev->flags & IFF_MASTER))
Haiyang Zhangcb2911f2016-06-02 12:02:04 -07002107 return NOTIFY_DONE;
2108
KY Srinivasan84bf9ce2016-04-14 16:31:54 -07002109 switch (event) {
2110 case NETDEV_REGISTER:
2111 return netvsc_register_vf(event_dev);
2112 case NETDEV_UNREGISTER:
2113 return netvsc_unregister_vf(event_dev);
2114 case NETDEV_UP:
KY Srinivasan84bf9ce2016-04-14 16:31:54 -07002115 case NETDEV_DOWN:
Stephen Hemminger9a0c48d2017-08-31 16:16:12 -07002116 return netvsc_vf_changed(event_dev);
KY Srinivasan84bf9ce2016-04-14 16:31:54 -07002117 default:
2118 return NOTIFY_DONE;
2119 }
2120}
2121
2122static struct notifier_block netvsc_netdev_notifier = {
2123 .notifier_call = netvsc_netdev_event,
2124};
2125
K. Y. Srinivasana9869c92011-05-12 19:35:17 -07002126static void __exit netvsc_drv_exit(void)
Hank Janssenfceaf242009-07-13 15:34:54 -07002127{
KY Srinivasan84bf9ce2016-04-14 16:31:54 -07002128 unregister_netdevice_notifier(&netvsc_netdev_notifier);
Greg Kroah-Hartman768fa212011-08-25 15:07:32 -07002129 vmbus_driver_unregister(&netvsc_drv);
Hank Janssenfceaf242009-07-13 15:34:54 -07002130}
2131
K. Y. Srinivasan1fde28c2011-05-12 19:35:16 -07002132static int __init netvsc_drv_init(void)
Greg Kroah-Hartmandf2fff22009-08-31 21:11:12 -07002133{
KY Srinivasan84bf9ce2016-04-14 16:31:54 -07002134 int ret;
2135
Haiyang Zhangfa85a6c2012-07-25 08:08:41 +00002136 if (ring_size < RING_SIZE_MIN) {
2137 ring_size = RING_SIZE_MIN;
2138 pr_info("Increased ring_size to %d (min allowed)\n",
2139 ring_size);
2140 }
KY Srinivasan84bf9ce2016-04-14 16:31:54 -07002141 ret = vmbus_driver_register(&netvsc_drv);
2142
2143 if (ret)
2144 return ret;
2145
2146 register_netdevice_notifier(&netvsc_netdev_notifier);
2147 return 0;
Greg Kroah-Hartmandf2fff22009-08-31 21:11:12 -07002148}
2149
Hank Janssen26c14cc2010-02-11 23:02:42 +00002150MODULE_LICENSE("GPL");
Stephen Hemminger7880fc52010-05-04 09:58:52 -07002151MODULE_DESCRIPTION("Microsoft Hyper-V network driver");
Hank Janssenfceaf242009-07-13 15:34:54 -07002152
K. Y. Srinivasan1fde28c2011-05-12 19:35:16 -07002153module_init(netvsc_drv_init);
K. Y. Srinivasana9869c92011-05-12 19:35:17 -07002154module_exit(netvsc_drv_exit);