70b7cc37103c6422e6e34e317b7be89f53d25baf
[linux-2.6-block.git] / drivers / net / hyperv / netvsc_drv.c
1 /*
2  * 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
14  * this program; if not, see <http://www.gnu.org/licenses/>.
15  *
16  * Authors:
17  *   Haiyang Zhang <haiyangz@microsoft.com>
18  *   Hank Janssen  <hjanssen@microsoft.com>
19  */
20 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
21
22 #include <linux/init.h>
23 #include <linux/atomic.h>
24 #include <linux/module.h>
25 #include <linux/highmem.h>
26 #include <linux/device.h>
27 #include <linux/io.h>
28 #include <linux/delay.h>
29 #include <linux/netdevice.h>
30 #include <linux/inetdevice.h>
31 #include <linux/etherdevice.h>
32 #include <linux/skbuff.h>
33 #include <linux/if_vlan.h>
34 #include <linux/in.h>
35 #include <linux/slab.h>
36 #include <net/arp.h>
37 #include <net/route.h>
38 #include <net/sock.h>
39 #include <net/pkt_sched.h>
40 #include <net/checksum.h>
41 #include <net/ip6_checksum.h>
42
43 #include "hyperv_net.h"
44
45 #define RING_SIZE_MIN 64
46 #define LINKCHANGE_INT (2 * HZ)
47
48 static int ring_size = 128;
49 module_param(ring_size, int, S_IRUGO);
50 MODULE_PARM_DESC(ring_size, "Ring buffer size (# of pages)");
51
52 static const u32 default_msg = NETIF_MSG_DRV | NETIF_MSG_PROBE |
53                                 NETIF_MSG_LINK | NETIF_MSG_IFUP |
54                                 NETIF_MSG_IFDOWN | NETIF_MSG_RX_ERR |
55                                 NETIF_MSG_TX_ERR;
56
57 static int debug = -1;
58 module_param(debug, int, S_IRUGO);
59 MODULE_PARM_DESC(debug, "Debug level (0=none,...,16=all)");
60
61 static void netvsc_set_multicast_list(struct net_device *net)
62 {
63         struct net_device_context *net_device_ctx = netdev_priv(net);
64         struct netvsc_device *nvdev = rtnl_dereference(net_device_ctx->nvdev);
65
66         rndis_filter_update(nvdev);
67 }
68
69 static int netvsc_open(struct net_device *net)
70 {
71         struct net_device_context *ndev_ctx = netdev_priv(net);
72         struct netvsc_device *nvdev = rtnl_dereference(ndev_ctx->nvdev);
73         struct rndis_device *rdev;
74         int ret = 0;
75
76         netif_carrier_off(net);
77
78         /* Open up the device */
79         ret = rndis_filter_open(nvdev);
80         if (ret != 0) {
81                 netdev_err(net, "unable to open device (ret %d).\n", ret);
82                 return ret;
83         }
84
85         netif_tx_wake_all_queues(net);
86
87         rdev = nvdev->extension;
88         if (!rdev->link_state && !ndev_ctx->datapath)
89                 netif_carrier_on(net);
90
91         return ret;
92 }
93
94 static int netvsc_close(struct net_device *net)
95 {
96         struct net_device_context *net_device_ctx = netdev_priv(net);
97         struct netvsc_device *nvdev = rtnl_dereference(net_device_ctx->nvdev);
98         int ret;
99         u32 aread, i, msec = 10, retry = 0, retry_max = 20;
100         struct vmbus_channel *chn;
101
102         netif_tx_disable(net);
103
104         ret = rndis_filter_close(nvdev);
105         if (ret != 0) {
106                 netdev_err(net, "unable to close device (ret %d).\n", ret);
107                 return ret;
108         }
109
110         /* Ensure pending bytes in ring are read */
111         while (true) {
112                 aread = 0;
113                 for (i = 0; i < nvdev->num_chn; i++) {
114                         chn = nvdev->chan_table[i].channel;
115                         if (!chn)
116                                 continue;
117
118                         aread = hv_get_bytes_to_read(&chn->inbound);
119                         if (aread)
120                                 break;
121
122                         aread = hv_get_bytes_to_read(&chn->outbound);
123                         if (aread)
124                                 break;
125                 }
126
127                 retry++;
128                 if (retry > retry_max || aread == 0)
129                         break;
130
131                 msleep(msec);
132
133                 if (msec < 1000)
134                         msec *= 2;
135         }
136
137         if (aread) {
138                 netdev_err(net, "Ring buffer not empty after closing rndis\n");
139                 ret = -ETIMEDOUT;
140         }
141
142         return ret;
143 }
144
145 static void *init_ppi_data(struct rndis_message *msg, u32 ppi_size,
146                                 int pkt_type)
147 {
148         struct rndis_packet *rndis_pkt;
149         struct rndis_per_packet_info *ppi;
150
151         rndis_pkt = &msg->msg.pkt;
152         rndis_pkt->data_offset += ppi_size;
153
154         ppi = (struct rndis_per_packet_info *)((void *)rndis_pkt +
155                 rndis_pkt->per_pkt_info_offset + rndis_pkt->per_pkt_info_len);
156
157         ppi->size = ppi_size;
158         ppi->type = pkt_type;
159         ppi->ppi_offset = sizeof(struct rndis_per_packet_info);
160
161         rndis_pkt->per_pkt_info_len += ppi_size;
162
163         return ppi;
164 }
165
166 /* Azure hosts don't support non-TCP port numbers in hashing yet. We compute
167  * hash for non-TCP traffic with only IP numbers.
168  */
169 static inline u32 netvsc_get_hash(struct sk_buff *skb, struct sock *sk)
170 {
171         struct flow_keys flow;
172         u32 hash;
173         static u32 hashrnd __read_mostly;
174
175         net_get_random_once(&hashrnd, sizeof(hashrnd));
176
177         if (!skb_flow_dissect_flow_keys(skb, &flow, 0))
178                 return 0;
179
180         if (flow.basic.ip_proto == IPPROTO_TCP) {
181                 return skb_get_hash(skb);
182         } else {
183                 if (flow.basic.n_proto == htons(ETH_P_IP))
184                         hash = jhash2((u32 *)&flow.addrs.v4addrs, 2, hashrnd);
185                 else if (flow.basic.n_proto == htons(ETH_P_IPV6))
186                         hash = jhash2((u32 *)&flow.addrs.v6addrs, 8, hashrnd);
187                 else
188                         hash = 0;
189
190                 skb_set_hash(skb, hash, PKT_HASH_TYPE_L3);
191         }
192
193         return hash;
194 }
195
196 static inline int netvsc_get_tx_queue(struct net_device *ndev,
197                                       struct sk_buff *skb, int old_idx)
198 {
199         const struct net_device_context *ndc = netdev_priv(ndev);
200         struct sock *sk = skb->sk;
201         int q_idx;
202
203         q_idx = ndc->tx_send_table[netvsc_get_hash(skb, sk) &
204                                    (VRSS_SEND_TAB_SIZE - 1)];
205
206         /* If queue index changed record the new value */
207         if (q_idx != old_idx &&
208             sk && sk_fullsock(sk) && rcu_access_pointer(sk->sk_dst_cache))
209                 sk_tx_queue_set(sk, q_idx);
210
211         return q_idx;
212 }
213
214 /*
215  * Select queue for transmit.
216  *
217  * If a valid queue has already been assigned, then use that.
218  * Otherwise compute tx queue based on hash and the send table.
219  *
220  * This is basically similar to default (__netdev_pick_tx) with the added step
221  * of using the host send_table when no other queue has been assigned.
222  *
223  * TODO support XPS - but get_xps_queue not exported
224  */
225 static u16 netvsc_select_queue(struct net_device *ndev, struct sk_buff *skb,
226                         void *accel_priv, select_queue_fallback_t fallback)
227 {
228         unsigned int num_tx_queues = ndev->real_num_tx_queues;
229         int q_idx = sk_tx_queue_get(skb->sk);
230
231         if (q_idx < 0 || skb->ooo_okay) {
232                 /* If forwarding a packet, we use the recorded queue when
233                  * available for better cache locality.
234                  */
235                 if (skb_rx_queue_recorded(skb))
236                         q_idx = skb_get_rx_queue(skb);
237                 else
238                         q_idx = netvsc_get_tx_queue(ndev, skb, q_idx);
239         }
240
241         while (unlikely(q_idx >= num_tx_queues))
242                 q_idx -= num_tx_queues;
243
244         return q_idx;
245 }
246
247 static u32 fill_pg_buf(struct page *page, u32 offset, u32 len,
248                         struct hv_page_buffer *pb)
249 {
250         int j = 0;
251
252         /* Deal with compund pages by ignoring unused part
253          * of the page.
254          */
255         page += (offset >> PAGE_SHIFT);
256         offset &= ~PAGE_MASK;
257
258         while (len > 0) {
259                 unsigned long bytes;
260
261                 bytes = PAGE_SIZE - offset;
262                 if (bytes > len)
263                         bytes = len;
264                 pb[j].pfn = page_to_pfn(page);
265                 pb[j].offset = offset;
266                 pb[j].len = bytes;
267
268                 offset += bytes;
269                 len -= bytes;
270
271                 if (offset == PAGE_SIZE && len) {
272                         page++;
273                         offset = 0;
274                         j++;
275                 }
276         }
277
278         return j + 1;
279 }
280
281 static u32 init_page_array(void *hdr, u32 len, struct sk_buff *skb,
282                            struct hv_netvsc_packet *packet,
283                            struct hv_page_buffer **page_buf)
284 {
285         struct hv_page_buffer *pb = *page_buf;
286         u32 slots_used = 0;
287         char *data = skb->data;
288         int frags = skb_shinfo(skb)->nr_frags;
289         int i;
290
291         /* The packet is laid out thus:
292          * 1. hdr: RNDIS header and PPI
293          * 2. skb linear data
294          * 3. skb fragment data
295          */
296         if (hdr != NULL)
297                 slots_used += fill_pg_buf(virt_to_page(hdr),
298                                         offset_in_page(hdr),
299                                         len, &pb[slots_used]);
300
301         packet->rmsg_size = len;
302         packet->rmsg_pgcnt = slots_used;
303
304         slots_used += fill_pg_buf(virt_to_page(data),
305                                 offset_in_page(data),
306                                 skb_headlen(skb), &pb[slots_used]);
307
308         for (i = 0; i < frags; i++) {
309                 skb_frag_t *frag = skb_shinfo(skb)->frags + i;
310
311                 slots_used += fill_pg_buf(skb_frag_page(frag),
312                                         frag->page_offset,
313                                         skb_frag_size(frag), &pb[slots_used]);
314         }
315         return slots_used;
316 }
317
318 /* Estimate number of page buffers neede to transmit
319  * Need at most 2 for RNDIS header plus skb body and fragments.
320  */
321 static unsigned int netvsc_get_slots(const struct sk_buff *skb)
322 {
323         return PFN_UP(offset_in_page(skb->data) + skb_headlen(skb))
324                 + skb_shinfo(skb)->nr_frags
325                 + 2;
326 }
327
328 static u32 net_checksum_info(struct sk_buff *skb)
329 {
330         if (skb->protocol == htons(ETH_P_IP)) {
331                 struct iphdr *ip = ip_hdr(skb);
332
333                 if (ip->protocol == IPPROTO_TCP)
334                         return TRANSPORT_INFO_IPV4_TCP;
335                 else if (ip->protocol == IPPROTO_UDP)
336                         return TRANSPORT_INFO_IPV4_UDP;
337         } else {
338                 struct ipv6hdr *ip6 = ipv6_hdr(skb);
339
340                 if (ip6->nexthdr == IPPROTO_TCP)
341                         return TRANSPORT_INFO_IPV6_TCP;
342                 else if (ipv6_hdr(skb)->nexthdr == IPPROTO_UDP)
343                         return TRANSPORT_INFO_IPV6_UDP;
344         }
345
346         return TRANSPORT_INFO_NOT_IP;
347 }
348
349 static int netvsc_start_xmit(struct sk_buff *skb, struct net_device *net)
350 {
351         struct net_device_context *net_device_ctx = netdev_priv(net);
352         struct hv_netvsc_packet *packet = NULL;
353         int ret;
354         unsigned int num_data_pgs;
355         struct rndis_message *rndis_msg;
356         struct rndis_packet *rndis_pkt;
357         u32 rndis_msg_size;
358         struct rndis_per_packet_info *ppi;
359         u32 hash;
360         struct hv_page_buffer page_buf[MAX_PAGE_BUFFER_COUNT];
361         struct hv_page_buffer *pb = page_buf;
362
363         /* We can only transmit MAX_PAGE_BUFFER_COUNT number
364          * of pages in a single packet. If skb is scattered around
365          * more pages we try linearizing it.
366          */
367         num_data_pgs = netvsc_get_slots(skb);
368         if (unlikely(num_data_pgs > MAX_PAGE_BUFFER_COUNT)) {
369                 ++net_device_ctx->eth_stats.tx_scattered;
370
371                 if (skb_linearize(skb))
372                         goto no_memory;
373
374                 num_data_pgs = netvsc_get_slots(skb);
375                 if (num_data_pgs > MAX_PAGE_BUFFER_COUNT) {
376                         ++net_device_ctx->eth_stats.tx_too_big;
377                         goto drop;
378                 }
379         }
380
381         /*
382          * Place the rndis header in the skb head room and
383          * the skb->cb will be used for hv_netvsc_packet
384          * structure.
385          */
386         ret = skb_cow_head(skb, RNDIS_AND_PPI_SIZE);
387         if (ret)
388                 goto no_memory;
389
390         /* Use the skb control buffer for building up the packet */
391         BUILD_BUG_ON(sizeof(struct hv_netvsc_packet) >
392                         FIELD_SIZEOF(struct sk_buff, cb));
393         packet = (struct hv_netvsc_packet *)skb->cb;
394
395         packet->q_idx = skb_get_queue_mapping(skb);
396
397         packet->total_data_buflen = skb->len;
398         packet->total_bytes = skb->len;
399         packet->total_packets = 1;
400
401         rndis_msg = (struct rndis_message *)skb->head;
402
403         memset(rndis_msg, 0, RNDIS_AND_PPI_SIZE);
404
405         /* Add the rndis header */
406         rndis_msg->ndis_msg_type = RNDIS_MSG_PACKET;
407         rndis_msg->msg_len = packet->total_data_buflen;
408         rndis_pkt = &rndis_msg->msg.pkt;
409         rndis_pkt->data_offset = sizeof(struct rndis_packet);
410         rndis_pkt->data_len = packet->total_data_buflen;
411         rndis_pkt->per_pkt_info_offset = sizeof(struct rndis_packet);
412
413         rndis_msg_size = RNDIS_MESSAGE_SIZE(struct rndis_packet);
414
415         hash = skb_get_hash_raw(skb);
416         if (hash != 0 && net->real_num_tx_queues > 1) {
417                 rndis_msg_size += NDIS_HASH_PPI_SIZE;
418                 ppi = init_ppi_data(rndis_msg, NDIS_HASH_PPI_SIZE,
419                                     NBL_HASH_VALUE);
420                 *(u32 *)((void *)ppi + ppi->ppi_offset) = hash;
421         }
422
423         if (skb_vlan_tag_present(skb)) {
424                 struct ndis_pkt_8021q_info *vlan;
425
426                 rndis_msg_size += NDIS_VLAN_PPI_SIZE;
427                 ppi = init_ppi_data(rndis_msg, NDIS_VLAN_PPI_SIZE,
428                                         IEEE_8021Q_INFO);
429                 vlan = (struct ndis_pkt_8021q_info *)((void *)ppi +
430                                                 ppi->ppi_offset);
431                 vlan->vlanid = skb->vlan_tci & VLAN_VID_MASK;
432                 vlan->pri = (skb->vlan_tci & VLAN_PRIO_MASK) >>
433                                 VLAN_PRIO_SHIFT;
434         }
435
436         if (skb_is_gso(skb)) {
437                 struct ndis_tcp_lso_info *lso_info;
438
439                 rndis_msg_size += NDIS_LSO_PPI_SIZE;
440                 ppi = init_ppi_data(rndis_msg, NDIS_LSO_PPI_SIZE,
441                                     TCP_LARGESEND_PKTINFO);
442
443                 lso_info = (struct ndis_tcp_lso_info *)((void *)ppi +
444                                                         ppi->ppi_offset);
445
446                 lso_info->lso_v2_transmit.type = NDIS_TCP_LARGE_SEND_OFFLOAD_V2_TYPE;
447                 if (skb->protocol == htons(ETH_P_IP)) {
448                         lso_info->lso_v2_transmit.ip_version =
449                                 NDIS_TCP_LARGE_SEND_OFFLOAD_IPV4;
450                         ip_hdr(skb)->tot_len = 0;
451                         ip_hdr(skb)->check = 0;
452                         tcp_hdr(skb)->check =
453                                 ~csum_tcpudp_magic(ip_hdr(skb)->saddr,
454                                                    ip_hdr(skb)->daddr, 0, IPPROTO_TCP, 0);
455                 } else {
456                         lso_info->lso_v2_transmit.ip_version =
457                                 NDIS_TCP_LARGE_SEND_OFFLOAD_IPV6;
458                         ipv6_hdr(skb)->payload_len = 0;
459                         tcp_hdr(skb)->check =
460                                 ~csum_ipv6_magic(&ipv6_hdr(skb)->saddr,
461                                                  &ipv6_hdr(skb)->daddr, 0, IPPROTO_TCP, 0);
462                 }
463                 lso_info->lso_v2_transmit.tcp_header_offset = skb_transport_offset(skb);
464                 lso_info->lso_v2_transmit.mss = skb_shinfo(skb)->gso_size;
465         } else if (skb->ip_summed == CHECKSUM_PARTIAL) {
466                 if (net_checksum_info(skb) & net_device_ctx->tx_checksum_mask) {
467                         struct ndis_tcp_ip_checksum_info *csum_info;
468
469                         rndis_msg_size += NDIS_CSUM_PPI_SIZE;
470                         ppi = init_ppi_data(rndis_msg, NDIS_CSUM_PPI_SIZE,
471                                             TCPIP_CHKSUM_PKTINFO);
472
473                         csum_info = (struct ndis_tcp_ip_checksum_info *)((void *)ppi +
474                                                                          ppi->ppi_offset);
475
476                         csum_info->transmit.tcp_header_offset = skb_transport_offset(skb);
477
478                         if (skb->protocol == htons(ETH_P_IP)) {
479                                 csum_info->transmit.is_ipv4 = 1;
480
481                                 if (ip_hdr(skb)->protocol == IPPROTO_TCP)
482                                         csum_info->transmit.tcp_checksum = 1;
483                                 else
484                                         csum_info->transmit.udp_checksum = 1;
485                         } else {
486                                 csum_info->transmit.is_ipv6 = 1;
487
488                                 if (ipv6_hdr(skb)->nexthdr == IPPROTO_TCP)
489                                         csum_info->transmit.tcp_checksum = 1;
490                                 else
491                                         csum_info->transmit.udp_checksum = 1;
492                         }
493                 } else {
494                         /* Can't do offload of this type of checksum */
495                         if (skb_checksum_help(skb))
496                                 goto drop;
497                 }
498         }
499
500         /* Start filling in the page buffers with the rndis hdr */
501         rndis_msg->msg_len += rndis_msg_size;
502         packet->total_data_buflen = rndis_msg->msg_len;
503         packet->page_buf_cnt = init_page_array(rndis_msg, rndis_msg_size,
504                                                skb, packet, &pb);
505
506         /* timestamp packet in software */
507         skb_tx_timestamp(skb);
508
509         ret = netvsc_send(net_device_ctx, packet, rndis_msg, &pb, skb);
510         if (likely(ret == 0))
511                 return NETDEV_TX_OK;
512
513         if (ret == -EAGAIN) {
514                 ++net_device_ctx->eth_stats.tx_busy;
515                 return NETDEV_TX_BUSY;
516         }
517
518         if (ret == -ENOSPC)
519                 ++net_device_ctx->eth_stats.tx_no_space;
520
521 drop:
522         dev_kfree_skb_any(skb);
523         net->stats.tx_dropped++;
524
525         return NETDEV_TX_OK;
526
527 no_memory:
528         ++net_device_ctx->eth_stats.tx_no_memory;
529         goto drop;
530 }
531 /*
532  * netvsc_linkstatus_callback - Link up/down notification
533  */
534 void netvsc_linkstatus_callback(struct hv_device *device_obj,
535                                 struct rndis_message *resp)
536 {
537         struct rndis_indicate_status *indicate = &resp->msg.indicate_status;
538         struct net_device *net;
539         struct net_device_context *ndev_ctx;
540         struct netvsc_reconfig *event;
541         unsigned long flags;
542
543         net = hv_get_drvdata(device_obj);
544
545         if (!net)
546                 return;
547
548         ndev_ctx = netdev_priv(net);
549
550         /* Update the physical link speed when changing to another vSwitch */
551         if (indicate->status == RNDIS_STATUS_LINK_SPEED_CHANGE) {
552                 u32 speed;
553
554                 speed = *(u32 *)((void *)indicate + indicate->
555                                  status_buf_offset) / 10000;
556                 ndev_ctx->speed = speed;
557                 return;
558         }
559
560         /* Handle these link change statuses below */
561         if (indicate->status != RNDIS_STATUS_NETWORK_CHANGE &&
562             indicate->status != RNDIS_STATUS_MEDIA_CONNECT &&
563             indicate->status != RNDIS_STATUS_MEDIA_DISCONNECT)
564                 return;
565
566         if (net->reg_state != NETREG_REGISTERED)
567                 return;
568
569         event = kzalloc(sizeof(*event), GFP_ATOMIC);
570         if (!event)
571                 return;
572         event->event = indicate->status;
573
574         spin_lock_irqsave(&ndev_ctx->lock, flags);
575         list_add_tail(&event->list, &ndev_ctx->reconfig_events);
576         spin_unlock_irqrestore(&ndev_ctx->lock, flags);
577
578         schedule_delayed_work(&ndev_ctx->dwork, 0);
579 }
580
581 static struct sk_buff *netvsc_alloc_recv_skb(struct net_device *net,
582                                              struct napi_struct *napi,
583                                              const struct ndis_tcp_ip_checksum_info *csum_info,
584                                              const struct ndis_pkt_8021q_info *vlan,
585                                              void *data, u32 buflen)
586 {
587         struct sk_buff *skb;
588
589         skb = napi_alloc_skb(napi, buflen);
590         if (!skb)
591                 return skb;
592
593         /*
594          * Copy to skb. This copy is needed here since the memory pointed by
595          * hv_netvsc_packet cannot be deallocated
596          */
597         skb_put_data(skb, data, buflen);
598
599         skb->protocol = eth_type_trans(skb, net);
600
601         /* skb is already created with CHECKSUM_NONE */
602         skb_checksum_none_assert(skb);
603
604         /*
605          * In Linux, the IP checksum is always checked.
606          * Do L4 checksum offload if enabled and present.
607          */
608         if (csum_info && (net->features & NETIF_F_RXCSUM)) {
609                 if (csum_info->receive.tcp_checksum_succeeded ||
610                     csum_info->receive.udp_checksum_succeeded)
611                         skb->ip_summed = CHECKSUM_UNNECESSARY;
612         }
613
614         if (vlan) {
615                 u16 vlan_tci = vlan->vlanid | (vlan->pri << VLAN_PRIO_SHIFT);
616
617                 __vlan_hwaccel_put_tag(skb, htons(ETH_P_8021Q),
618                                        vlan_tci);
619         }
620
621         return skb;
622 }
623
624 /*
625  * netvsc_recv_callback -  Callback when we receive a packet from the
626  * "wire" on the specified device.
627  */
628 int netvsc_recv_callback(struct net_device *net,
629                          struct vmbus_channel *channel,
630                          void  *data, u32 len,
631                          const struct ndis_tcp_ip_checksum_info *csum_info,
632                          const struct ndis_pkt_8021q_info *vlan)
633 {
634         struct net_device_context *net_device_ctx = netdev_priv(net);
635         struct netvsc_device *net_device;
636         u16 q_idx = channel->offermsg.offer.sub_channel_index;
637         struct netvsc_channel *nvchan;
638         struct net_device *vf_netdev;
639         struct sk_buff *skb;
640         struct netvsc_stats *rx_stats;
641
642         if (net->reg_state != NETREG_REGISTERED)
643                 return NVSP_STAT_FAIL;
644
645         /*
646          * If necessary, inject this packet into the VF interface.
647          * On Hyper-V, multicast and brodcast packets are only delivered
648          * to the synthetic interface (after subjecting these to
649          * policy filters on the host). Deliver these via the VF
650          * interface in the guest.
651          */
652         rcu_read_lock();
653         net_device = rcu_dereference(net_device_ctx->nvdev);
654         if (unlikely(!net_device))
655                 goto drop;
656
657         nvchan = &net_device->chan_table[q_idx];
658         vf_netdev = rcu_dereference(net_device_ctx->vf_netdev);
659         if (vf_netdev && (vf_netdev->flags & IFF_UP))
660                 net = vf_netdev;
661
662         /* Allocate a skb - TODO direct I/O to pages? */
663         skb = netvsc_alloc_recv_skb(net, &nvchan->napi,
664                                     csum_info, vlan, data, len);
665         if (unlikely(!skb)) {
666 drop:
667                 ++net->stats.rx_dropped;
668                 rcu_read_unlock();
669                 return NVSP_STAT_FAIL;
670         }
671
672         if (net != vf_netdev)
673                 skb_record_rx_queue(skb, q_idx);
674
675         /*
676          * Even if injecting the packet, record the statistics
677          * on the synthetic device because modifying the VF device
678          * statistics will not work correctly.
679          */
680         rx_stats = &nvchan->rx_stats;
681         u64_stats_update_begin(&rx_stats->syncp);
682         rx_stats->packets++;
683         rx_stats->bytes += len;
684
685         if (skb->pkt_type == PACKET_BROADCAST)
686                 ++rx_stats->broadcast;
687         else if (skb->pkt_type == PACKET_MULTICAST)
688                 ++rx_stats->multicast;
689         u64_stats_update_end(&rx_stats->syncp);
690
691         napi_gro_receive(&nvchan->napi, skb);
692         rcu_read_unlock();
693
694         return 0;
695 }
696
697 static void netvsc_get_drvinfo(struct net_device *net,
698                                struct ethtool_drvinfo *info)
699 {
700         strlcpy(info->driver, KBUILD_MODNAME, sizeof(info->driver));
701         strlcpy(info->fw_version, "N/A", sizeof(info->fw_version));
702 }
703
704 static void netvsc_get_channels(struct net_device *net,
705                                 struct ethtool_channels *channel)
706 {
707         struct net_device_context *net_device_ctx = netdev_priv(net);
708         struct netvsc_device *nvdev = rtnl_dereference(net_device_ctx->nvdev);
709
710         if (nvdev) {
711                 channel->max_combined   = nvdev->max_chn;
712                 channel->combined_count = nvdev->num_chn;
713         }
714 }
715
716 static int netvsc_set_queues(struct net_device *net, struct hv_device *dev,
717                              u32 num_chn)
718 {
719         struct netvsc_device_info device_info;
720         struct netvsc_device *net_device;
721         int ret;
722
723         memset(&device_info, 0, sizeof(device_info));
724         device_info.num_chn = num_chn;
725         device_info.ring_size = ring_size;
726         device_info.max_num_vrss_chns = num_chn;
727
728         ret = netif_set_real_num_tx_queues(net, num_chn);
729         if (ret)
730                 return ret;
731
732         ret = netif_set_real_num_rx_queues(net, num_chn);
733         if (ret)
734                 return ret;
735
736         net_device = rndis_filter_device_add(dev, &device_info);
737         return PTR_ERR_OR_ZERO(net_device);
738 }
739
740 static int netvsc_set_channels(struct net_device *net,
741                                struct ethtool_channels *channels)
742 {
743         struct net_device_context *net_device_ctx = netdev_priv(net);
744         struct hv_device *dev = net_device_ctx->device_ctx;
745         struct netvsc_device *nvdev = rtnl_dereference(net_device_ctx->nvdev);
746         unsigned int count = channels->combined_count;
747         bool was_opened;
748         int ret;
749
750         /* We do not support separate count for rx, tx, or other */
751         if (count == 0 ||
752             channels->rx_count || channels->tx_count || channels->other_count)
753                 return -EINVAL;
754
755         if (count > net->num_tx_queues || count > VRSS_CHANNEL_MAX)
756                 return -EINVAL;
757
758         if (!nvdev || nvdev->destroy)
759                 return -ENODEV;
760
761         if (nvdev->nvsp_version < NVSP_PROTOCOL_VERSION_5)
762                 return -EINVAL;
763
764         if (count > nvdev->max_chn)
765                 return -EINVAL;
766
767         was_opened = rndis_filter_opened(nvdev);
768         if (was_opened)
769                 rndis_filter_close(nvdev);
770
771         rndis_filter_device_remove(dev, nvdev);
772
773         ret = netvsc_set_queues(net, dev, count);
774         if (ret == 0)
775                 nvdev->num_chn = count;
776         else
777                 netvsc_set_queues(net, dev, nvdev->num_chn);
778
779         nvdev = rtnl_dereference(net_device_ctx->nvdev);
780         if (was_opened)
781                 rndis_filter_open(nvdev);
782
783         /* We may have missed link change notifications */
784         net_device_ctx->last_reconfig = 0;
785         schedule_delayed_work(&net_device_ctx->dwork, 0);
786
787         return ret;
788 }
789
790 static bool
791 netvsc_validate_ethtool_ss_cmd(const struct ethtool_link_ksettings *cmd)
792 {
793         struct ethtool_link_ksettings diff1 = *cmd;
794         struct ethtool_link_ksettings diff2 = {};
795
796         diff1.base.speed = 0;
797         diff1.base.duplex = 0;
798         /* advertising and cmd are usually set */
799         ethtool_link_ksettings_zero_link_mode(&diff1, advertising);
800         diff1.base.cmd = 0;
801         /* We set port to PORT_OTHER */
802         diff2.base.port = PORT_OTHER;
803
804         return !memcmp(&diff1, &diff2, sizeof(diff1));
805 }
806
807 static void netvsc_init_settings(struct net_device *dev)
808 {
809         struct net_device_context *ndc = netdev_priv(dev);
810
811         ndc->speed = SPEED_UNKNOWN;
812         ndc->duplex = DUPLEX_FULL;
813 }
814
815 static int netvsc_get_link_ksettings(struct net_device *dev,
816                                      struct ethtool_link_ksettings *cmd)
817 {
818         struct net_device_context *ndc = netdev_priv(dev);
819
820         cmd->base.speed = ndc->speed;
821         cmd->base.duplex = ndc->duplex;
822         cmd->base.port = PORT_OTHER;
823
824         return 0;
825 }
826
827 static int netvsc_set_link_ksettings(struct net_device *dev,
828                                      const struct ethtool_link_ksettings *cmd)
829 {
830         struct net_device_context *ndc = netdev_priv(dev);
831         u32 speed;
832
833         speed = cmd->base.speed;
834         if (!ethtool_validate_speed(speed) ||
835             !ethtool_validate_duplex(cmd->base.duplex) ||
836             !netvsc_validate_ethtool_ss_cmd(cmd))
837                 return -EINVAL;
838
839         ndc->speed = speed;
840         ndc->duplex = cmd->base.duplex;
841
842         return 0;
843 }
844
845 static int netvsc_change_mtu(struct net_device *ndev, int mtu)
846 {
847         struct net_device_context *ndevctx = netdev_priv(ndev);
848         struct netvsc_device *nvdev = rtnl_dereference(ndevctx->nvdev);
849         struct hv_device *hdev = ndevctx->device_ctx;
850         int orig_mtu = ndev->mtu;
851         struct netvsc_device_info device_info;
852         bool was_opened;
853         int ret = 0;
854
855         if (!nvdev || nvdev->destroy)
856                 return -ENODEV;
857
858         netif_device_detach(ndev);
859         was_opened = rndis_filter_opened(nvdev);
860         if (was_opened)
861                 rndis_filter_close(nvdev);
862
863         memset(&device_info, 0, sizeof(device_info));
864         device_info.ring_size = ring_size;
865         device_info.num_chn = nvdev->num_chn;
866         device_info.max_num_vrss_chns = nvdev->num_chn;
867
868         rndis_filter_device_remove(hdev, nvdev);
869
870         ndev->mtu = mtu;
871
872         nvdev = rndis_filter_device_add(hdev, &device_info);
873         if (IS_ERR(nvdev)) {
874                 ret = PTR_ERR(nvdev);
875
876                 /* Attempt rollback to original MTU */
877                 ndev->mtu = orig_mtu;
878                 rndis_filter_device_add(hdev, &device_info);
879         }
880
881         if (was_opened)
882                 rndis_filter_open(nvdev);
883
884         netif_device_attach(ndev);
885
886         /* We may have missed link change notifications */
887         schedule_delayed_work(&ndevctx->dwork, 0);
888
889         return ret;
890 }
891
892 static void netvsc_get_stats64(struct net_device *net,
893                                struct rtnl_link_stats64 *t)
894 {
895         struct net_device_context *ndev_ctx = netdev_priv(net);
896         struct netvsc_device *nvdev = rcu_dereference_rtnl(ndev_ctx->nvdev);
897         int i;
898
899         if (!nvdev)
900                 return;
901
902         for (i = 0; i < nvdev->num_chn; i++) {
903                 const struct netvsc_channel *nvchan = &nvdev->chan_table[i];
904                 const struct netvsc_stats *stats;
905                 u64 packets, bytes, multicast;
906                 unsigned int start;
907
908                 stats = &nvchan->tx_stats;
909                 do {
910                         start = u64_stats_fetch_begin_irq(&stats->syncp);
911                         packets = stats->packets;
912                         bytes = stats->bytes;
913                 } while (u64_stats_fetch_retry_irq(&stats->syncp, start));
914
915                 t->tx_bytes     += bytes;
916                 t->tx_packets   += packets;
917
918                 stats = &nvchan->rx_stats;
919                 do {
920                         start = u64_stats_fetch_begin_irq(&stats->syncp);
921                         packets = stats->packets;
922                         bytes = stats->bytes;
923                         multicast = stats->multicast + stats->broadcast;
924                 } while (u64_stats_fetch_retry_irq(&stats->syncp, start));
925
926                 t->rx_bytes     += bytes;
927                 t->rx_packets   += packets;
928                 t->multicast    += multicast;
929         }
930
931         t->tx_dropped   = net->stats.tx_dropped;
932         t->tx_errors    = net->stats.tx_errors;
933
934         t->rx_dropped   = net->stats.rx_dropped;
935         t->rx_errors    = net->stats.rx_errors;
936 }
937
938 static int netvsc_set_mac_addr(struct net_device *ndev, void *p)
939 {
940         struct sockaddr *addr = p;
941         char save_adr[ETH_ALEN];
942         unsigned char save_aatype;
943         int err;
944
945         memcpy(save_adr, ndev->dev_addr, ETH_ALEN);
946         save_aatype = ndev->addr_assign_type;
947
948         err = eth_mac_addr(ndev, p);
949         if (err != 0)
950                 return err;
951
952         err = rndis_filter_set_device_mac(ndev, addr->sa_data);
953         if (err != 0) {
954                 /* roll back to saved MAC */
955                 memcpy(ndev->dev_addr, save_adr, ETH_ALEN);
956                 ndev->addr_assign_type = save_aatype;
957         }
958
959         return err;
960 }
961
962 static const struct {
963         char name[ETH_GSTRING_LEN];
964         u16 offset;
965 } netvsc_stats[] = {
966         { "tx_scattered", offsetof(struct netvsc_ethtool_stats, tx_scattered) },
967         { "tx_no_memory",  offsetof(struct netvsc_ethtool_stats, tx_no_memory) },
968         { "tx_no_space",  offsetof(struct netvsc_ethtool_stats, tx_no_space) },
969         { "tx_too_big",   offsetof(struct netvsc_ethtool_stats, tx_too_big) },
970         { "tx_busy",      offsetof(struct netvsc_ethtool_stats, tx_busy) },
971 };
972
973 #define NETVSC_GLOBAL_STATS_LEN ARRAY_SIZE(netvsc_stats)
974
975 /* 4 statistics per queue (rx/tx packets/bytes) */
976 #define NETVSC_QUEUE_STATS_LEN(dev) ((dev)->num_chn * 4)
977
978 static int netvsc_get_sset_count(struct net_device *dev, int string_set)
979 {
980         struct net_device_context *ndc = netdev_priv(dev);
981         struct netvsc_device *nvdev = rtnl_dereference(ndc->nvdev);
982
983         if (!nvdev)
984                 return -ENODEV;
985
986         switch (string_set) {
987         case ETH_SS_STATS:
988                 return NETVSC_GLOBAL_STATS_LEN + NETVSC_QUEUE_STATS_LEN(nvdev);
989         default:
990                 return -EINVAL;
991         }
992 }
993
994 static void netvsc_get_ethtool_stats(struct net_device *dev,
995                                      struct ethtool_stats *stats, u64 *data)
996 {
997         struct net_device_context *ndc = netdev_priv(dev);
998         struct netvsc_device *nvdev = rcu_dereference(ndc->nvdev);
999         const void *nds = &ndc->eth_stats;
1000         const struct netvsc_stats *qstats;
1001         unsigned int start;
1002         u64 packets, bytes;
1003         int i, j;
1004
1005         if (!nvdev)
1006                 return;
1007
1008         for (i = 0; i < NETVSC_GLOBAL_STATS_LEN; i++)
1009                 data[i] = *(unsigned long *)(nds + netvsc_stats[i].offset);
1010
1011         for (j = 0; j < nvdev->num_chn; j++) {
1012                 qstats = &nvdev->chan_table[j].tx_stats;
1013
1014                 do {
1015                         start = u64_stats_fetch_begin_irq(&qstats->syncp);
1016                         packets = qstats->packets;
1017                         bytes = qstats->bytes;
1018                 } while (u64_stats_fetch_retry_irq(&qstats->syncp, start));
1019                 data[i++] = packets;
1020                 data[i++] = bytes;
1021
1022                 qstats = &nvdev->chan_table[j].rx_stats;
1023                 do {
1024                         start = u64_stats_fetch_begin_irq(&qstats->syncp);
1025                         packets = qstats->packets;
1026                         bytes = qstats->bytes;
1027                 } while (u64_stats_fetch_retry_irq(&qstats->syncp, start));
1028                 data[i++] = packets;
1029                 data[i++] = bytes;
1030         }
1031 }
1032
1033 static void netvsc_get_strings(struct net_device *dev, u32 stringset, u8 *data)
1034 {
1035         struct net_device_context *ndc = netdev_priv(dev);
1036         struct netvsc_device *nvdev = rcu_dereference(ndc->nvdev);
1037         u8 *p = data;
1038         int i;
1039
1040         if (!nvdev)
1041                 return;
1042
1043         switch (stringset) {
1044         case ETH_SS_STATS:
1045                 for (i = 0; i < ARRAY_SIZE(netvsc_stats); i++)
1046                         memcpy(p + i * ETH_GSTRING_LEN,
1047                                netvsc_stats[i].name, ETH_GSTRING_LEN);
1048
1049                 p += i * ETH_GSTRING_LEN;
1050                 for (i = 0; i < nvdev->num_chn; i++) {
1051                         sprintf(p, "tx_queue_%u_packets", i);
1052                         p += ETH_GSTRING_LEN;
1053                         sprintf(p, "tx_queue_%u_bytes", i);
1054                         p += ETH_GSTRING_LEN;
1055                         sprintf(p, "rx_queue_%u_packets", i);
1056                         p += ETH_GSTRING_LEN;
1057                         sprintf(p, "rx_queue_%u_bytes", i);
1058                         p += ETH_GSTRING_LEN;
1059                 }
1060
1061                 break;
1062         }
1063 }
1064
1065 static int
1066 netvsc_get_rss_hash_opts(struct netvsc_device *nvdev,
1067                          struct ethtool_rxnfc *info)
1068 {
1069         info->data = RXH_IP_SRC | RXH_IP_DST;
1070
1071         switch (info->flow_type) {
1072         case TCP_V4_FLOW:
1073         case TCP_V6_FLOW:
1074                 info->data |= RXH_L4_B_0_1 | RXH_L4_B_2_3;
1075                 /* fallthrough */
1076         case UDP_V4_FLOW:
1077         case UDP_V6_FLOW:
1078         case IPV4_FLOW:
1079         case IPV6_FLOW:
1080                 break;
1081         default:
1082                 info->data = 0;
1083                 break;
1084         }
1085
1086         return 0;
1087 }
1088
1089 static int
1090 netvsc_get_rxnfc(struct net_device *dev, struct ethtool_rxnfc *info,
1091                  u32 *rules)
1092 {
1093         struct net_device_context *ndc = netdev_priv(dev);
1094         struct netvsc_device *nvdev = rcu_dereference(ndc->nvdev);
1095
1096         if (!nvdev)
1097                 return -ENODEV;
1098
1099         switch (info->cmd) {
1100         case ETHTOOL_GRXRINGS:
1101                 info->data = nvdev->num_chn;
1102                 return 0;
1103
1104         case ETHTOOL_GRXFH:
1105                 return netvsc_get_rss_hash_opts(nvdev, info);
1106         }
1107         return -EOPNOTSUPP;
1108 }
1109
1110 #ifdef CONFIG_NET_POLL_CONTROLLER
1111 static void netvsc_poll_controller(struct net_device *dev)
1112 {
1113         struct net_device_context *ndc = netdev_priv(dev);
1114         struct netvsc_device *ndev;
1115         int i;
1116
1117         rcu_read_lock();
1118         ndev = rcu_dereference(ndc->nvdev);
1119         if (ndev) {
1120                 for (i = 0; i < ndev->num_chn; i++) {
1121                         struct netvsc_channel *nvchan = &ndev->chan_table[i];
1122
1123                         napi_schedule(&nvchan->napi);
1124                 }
1125         }
1126         rcu_read_unlock();
1127 }
1128 #endif
1129
1130 static u32 netvsc_get_rxfh_key_size(struct net_device *dev)
1131 {
1132         return NETVSC_HASH_KEYLEN;
1133 }
1134
1135 static u32 netvsc_rss_indir_size(struct net_device *dev)
1136 {
1137         return ITAB_NUM;
1138 }
1139
1140 static int netvsc_get_rxfh(struct net_device *dev, u32 *indir, u8 *key,
1141                            u8 *hfunc)
1142 {
1143         struct net_device_context *ndc = netdev_priv(dev);
1144         struct netvsc_device *ndev = rcu_dereference(ndc->nvdev);
1145         struct rndis_device *rndis_dev;
1146         int i;
1147
1148         if (!ndev)
1149                 return -ENODEV;
1150
1151         if (hfunc)
1152                 *hfunc = ETH_RSS_HASH_TOP;      /* Toeplitz */
1153
1154         rndis_dev = ndev->extension;
1155         if (indir) {
1156                 for (i = 0; i < ITAB_NUM; i++)
1157                         indir[i] = rndis_dev->ind_table[i];
1158         }
1159
1160         if (key)
1161                 memcpy(key, rndis_dev->rss_key, NETVSC_HASH_KEYLEN);
1162
1163         return 0;
1164 }
1165
1166 static int netvsc_set_rxfh(struct net_device *dev, const u32 *indir,
1167                            const u8 *key, const u8 hfunc)
1168 {
1169         struct net_device_context *ndc = netdev_priv(dev);
1170         struct netvsc_device *ndev = rtnl_dereference(ndc->nvdev);
1171         struct rndis_device *rndis_dev;
1172         int i;
1173
1174         if (!ndev)
1175                 return -ENODEV;
1176
1177         if (hfunc != ETH_RSS_HASH_NO_CHANGE && hfunc != ETH_RSS_HASH_TOP)
1178                 return -EOPNOTSUPP;
1179
1180         rndis_dev = ndev->extension;
1181         if (indir) {
1182                 for (i = 0; i < ITAB_NUM; i++)
1183                         if (indir[i] >= VRSS_CHANNEL_MAX)
1184                                 return -EINVAL;
1185
1186                 for (i = 0; i < ITAB_NUM; i++)
1187                         rndis_dev->ind_table[i] = indir[i];
1188         }
1189
1190         if (!key) {
1191                 if (!indir)
1192                         return 0;
1193
1194                 key = rndis_dev->rss_key;
1195         }
1196
1197         return rndis_filter_set_rss_param(rndis_dev, key, ndev->num_chn);
1198 }
1199
1200 static const struct ethtool_ops ethtool_ops = {
1201         .get_drvinfo    = netvsc_get_drvinfo,
1202         .get_link       = ethtool_op_get_link,
1203         .get_ethtool_stats = netvsc_get_ethtool_stats,
1204         .get_sset_count = netvsc_get_sset_count,
1205         .get_strings    = netvsc_get_strings,
1206         .get_channels   = netvsc_get_channels,
1207         .set_channels   = netvsc_set_channels,
1208         .get_ts_info    = ethtool_op_get_ts_info,
1209         .get_rxnfc      = netvsc_get_rxnfc,
1210         .get_rxfh_key_size = netvsc_get_rxfh_key_size,
1211         .get_rxfh_indir_size = netvsc_rss_indir_size,
1212         .get_rxfh       = netvsc_get_rxfh,
1213         .set_rxfh       = netvsc_set_rxfh,
1214         .get_link_ksettings = netvsc_get_link_ksettings,
1215         .set_link_ksettings = netvsc_set_link_ksettings,
1216 };
1217
1218 static const struct net_device_ops device_ops = {
1219         .ndo_open =                     netvsc_open,
1220         .ndo_stop =                     netvsc_close,
1221         .ndo_start_xmit =               netvsc_start_xmit,
1222         .ndo_set_rx_mode =              netvsc_set_multicast_list,
1223         .ndo_change_mtu =               netvsc_change_mtu,
1224         .ndo_validate_addr =            eth_validate_addr,
1225         .ndo_set_mac_address =          netvsc_set_mac_addr,
1226         .ndo_select_queue =             netvsc_select_queue,
1227         .ndo_get_stats64 =              netvsc_get_stats64,
1228 #ifdef CONFIG_NET_POLL_CONTROLLER
1229         .ndo_poll_controller =          netvsc_poll_controller,
1230 #endif
1231 };
1232
1233 /*
1234  * Handle link status changes. For RNDIS_STATUS_NETWORK_CHANGE emulate link
1235  * down/up sequence. In case of RNDIS_STATUS_MEDIA_CONNECT when carrier is
1236  * present send GARP packet to network peers with netif_notify_peers().
1237  */
1238 static void netvsc_link_change(struct work_struct *w)
1239 {
1240         struct net_device_context *ndev_ctx =
1241                 container_of(w, struct net_device_context, dwork.work);
1242         struct hv_device *device_obj = ndev_ctx->device_ctx;
1243         struct net_device *net = hv_get_drvdata(device_obj);
1244         struct netvsc_device *net_device;
1245         struct rndis_device *rdev;
1246         struct netvsc_reconfig *event = NULL;
1247         bool notify = false, reschedule = false;
1248         unsigned long flags, next_reconfig, delay;
1249
1250         rtnl_lock();
1251         net_device = rtnl_dereference(ndev_ctx->nvdev);
1252         if (!net_device)
1253                 goto out_unlock;
1254
1255         rdev = net_device->extension;
1256
1257         next_reconfig = ndev_ctx->last_reconfig + LINKCHANGE_INT;
1258         if (time_is_after_jiffies(next_reconfig)) {
1259                 /* link_watch only sends one notification with current state
1260                  * per second, avoid doing reconfig more frequently. Handle
1261                  * wrap around.
1262                  */
1263                 delay = next_reconfig - jiffies;
1264                 delay = delay < LINKCHANGE_INT ? delay : LINKCHANGE_INT;
1265                 schedule_delayed_work(&ndev_ctx->dwork, delay);
1266                 goto out_unlock;
1267         }
1268         ndev_ctx->last_reconfig = jiffies;
1269
1270         spin_lock_irqsave(&ndev_ctx->lock, flags);
1271         if (!list_empty(&ndev_ctx->reconfig_events)) {
1272                 event = list_first_entry(&ndev_ctx->reconfig_events,
1273                                          struct netvsc_reconfig, list);
1274                 list_del(&event->list);
1275                 reschedule = !list_empty(&ndev_ctx->reconfig_events);
1276         }
1277         spin_unlock_irqrestore(&ndev_ctx->lock, flags);
1278
1279         if (!event)
1280                 goto out_unlock;
1281
1282         switch (event->event) {
1283                 /* Only the following events are possible due to the check in
1284                  * netvsc_linkstatus_callback()
1285                  */
1286         case RNDIS_STATUS_MEDIA_CONNECT:
1287                 if (rdev->link_state) {
1288                         rdev->link_state = false;
1289                         if (!ndev_ctx->datapath)
1290                                 netif_carrier_on(net);
1291                         netif_tx_wake_all_queues(net);
1292                 } else {
1293                         notify = true;
1294                 }
1295                 kfree(event);
1296                 break;
1297         case RNDIS_STATUS_MEDIA_DISCONNECT:
1298                 if (!rdev->link_state) {
1299                         rdev->link_state = true;
1300                         netif_carrier_off(net);
1301                         netif_tx_stop_all_queues(net);
1302                 }
1303                 kfree(event);
1304                 break;
1305         case RNDIS_STATUS_NETWORK_CHANGE:
1306                 /* Only makes sense if carrier is present */
1307                 if (!rdev->link_state) {
1308                         rdev->link_state = true;
1309                         netif_carrier_off(net);
1310                         netif_tx_stop_all_queues(net);
1311                         event->event = RNDIS_STATUS_MEDIA_CONNECT;
1312                         spin_lock_irqsave(&ndev_ctx->lock, flags);
1313                         list_add(&event->list, &ndev_ctx->reconfig_events);
1314                         spin_unlock_irqrestore(&ndev_ctx->lock, flags);
1315                         reschedule = true;
1316                 }
1317                 break;
1318         }
1319
1320         rtnl_unlock();
1321
1322         if (notify)
1323                 netdev_notify_peers(net);
1324
1325         /* link_watch only sends one notification with current state per
1326          * second, handle next reconfig event in 2 seconds.
1327          */
1328         if (reschedule)
1329                 schedule_delayed_work(&ndev_ctx->dwork, LINKCHANGE_INT);
1330
1331         return;
1332
1333 out_unlock:
1334         rtnl_unlock();
1335 }
1336
1337 static struct net_device *get_netvsc_bymac(const u8 *mac)
1338 {
1339         struct net_device *dev;
1340
1341         ASSERT_RTNL();
1342
1343         for_each_netdev(&init_net, dev) {
1344                 if (dev->netdev_ops != &device_ops)
1345                         continue;       /* not a netvsc device */
1346
1347                 if (ether_addr_equal(mac, dev->perm_addr))
1348                         return dev;
1349         }
1350
1351         return NULL;
1352 }
1353
1354 static struct net_device *get_netvsc_byref(struct net_device *vf_netdev)
1355 {
1356         struct net_device *dev;
1357
1358         ASSERT_RTNL();
1359
1360         for_each_netdev(&init_net, dev) {
1361                 struct net_device_context *net_device_ctx;
1362
1363                 if (dev->netdev_ops != &device_ops)
1364                         continue;       /* not a netvsc device */
1365
1366                 net_device_ctx = netdev_priv(dev);
1367                 if (!rtnl_dereference(net_device_ctx->nvdev))
1368                         continue;       /* device is removed */
1369
1370                 if (rtnl_dereference(net_device_ctx->vf_netdev) == vf_netdev)
1371                         return dev;     /* a match */
1372         }
1373
1374         return NULL;
1375 }
1376
1377 static int netvsc_register_vf(struct net_device *vf_netdev)
1378 {
1379         struct net_device *ndev;
1380         struct net_device_context *net_device_ctx;
1381         struct netvsc_device *netvsc_dev;
1382
1383         if (vf_netdev->addr_len != ETH_ALEN)
1384                 return NOTIFY_DONE;
1385
1386         /*
1387          * We will use the MAC address to locate the synthetic interface to
1388          * associate with the VF interface. If we don't find a matching
1389          * synthetic interface, move on.
1390          */
1391         ndev = get_netvsc_bymac(vf_netdev->perm_addr);
1392         if (!ndev)
1393                 return NOTIFY_DONE;
1394
1395         net_device_ctx = netdev_priv(ndev);
1396         netvsc_dev = rtnl_dereference(net_device_ctx->nvdev);
1397         if (!netvsc_dev || rtnl_dereference(net_device_ctx->vf_netdev))
1398                 return NOTIFY_DONE;
1399
1400         netdev_info(ndev, "VF registering: %s\n", vf_netdev->name);
1401         /*
1402          * Take a reference on the module.
1403          */
1404         try_module_get(THIS_MODULE);
1405
1406         dev_hold(vf_netdev);
1407         rcu_assign_pointer(net_device_ctx->vf_netdev, vf_netdev);
1408         return NOTIFY_OK;
1409 }
1410
1411 static int netvsc_vf_up(struct net_device *vf_netdev)
1412 {
1413         struct net_device *ndev;
1414         struct netvsc_device *netvsc_dev;
1415         struct net_device_context *net_device_ctx;
1416
1417         ndev = get_netvsc_byref(vf_netdev);
1418         if (!ndev)
1419                 return NOTIFY_DONE;
1420
1421         net_device_ctx = netdev_priv(ndev);
1422         netvsc_dev = rtnl_dereference(net_device_ctx->nvdev);
1423
1424         netdev_info(ndev, "VF up: %s\n", vf_netdev->name);
1425
1426         /*
1427          * Open the device before switching data path.
1428          */
1429         rndis_filter_open(netvsc_dev);
1430
1431         /*
1432          * notify the host to switch the data path.
1433          */
1434         netvsc_switch_datapath(ndev, true);
1435         netdev_info(ndev, "Data path switched to VF: %s\n", vf_netdev->name);
1436
1437         netif_carrier_off(ndev);
1438
1439         /* Now notify peers through VF device. */
1440         call_netdevice_notifiers(NETDEV_NOTIFY_PEERS, vf_netdev);
1441
1442         return NOTIFY_OK;
1443 }
1444
1445 static int netvsc_vf_down(struct net_device *vf_netdev)
1446 {
1447         struct net_device *ndev;
1448         struct netvsc_device *netvsc_dev;
1449         struct net_device_context *net_device_ctx;
1450
1451         ndev = get_netvsc_byref(vf_netdev);
1452         if (!ndev)
1453                 return NOTIFY_DONE;
1454
1455         net_device_ctx = netdev_priv(ndev);
1456         netvsc_dev = rtnl_dereference(net_device_ctx->nvdev);
1457
1458         netdev_info(ndev, "VF down: %s\n", vf_netdev->name);
1459         netvsc_switch_datapath(ndev, false);
1460         netdev_info(ndev, "Data path switched from VF: %s\n", vf_netdev->name);
1461         rndis_filter_close(netvsc_dev);
1462         netif_carrier_on(ndev);
1463
1464         /* Now notify peers through netvsc device. */
1465         call_netdevice_notifiers(NETDEV_NOTIFY_PEERS, ndev);
1466
1467         return NOTIFY_OK;
1468 }
1469
1470 static int netvsc_unregister_vf(struct net_device *vf_netdev)
1471 {
1472         struct net_device *ndev;
1473         struct net_device_context *net_device_ctx;
1474
1475         ndev = get_netvsc_byref(vf_netdev);
1476         if (!ndev)
1477                 return NOTIFY_DONE;
1478
1479         net_device_ctx = netdev_priv(ndev);
1480
1481         netdev_info(ndev, "VF unregistering: %s\n", vf_netdev->name);
1482
1483         RCU_INIT_POINTER(net_device_ctx->vf_netdev, NULL);
1484         dev_put(vf_netdev);
1485         module_put(THIS_MODULE);
1486         return NOTIFY_OK;
1487 }
1488
1489 static int netvsc_probe(struct hv_device *dev,
1490                         const struct hv_vmbus_device_id *dev_id)
1491 {
1492         struct net_device *net = NULL;
1493         struct net_device_context *net_device_ctx;
1494         struct netvsc_device_info device_info;
1495         struct netvsc_device *nvdev;
1496         int ret;
1497
1498         net = alloc_etherdev_mq(sizeof(struct net_device_context),
1499                                 VRSS_CHANNEL_MAX);
1500         if (!net)
1501                 return -ENOMEM;
1502
1503         netif_carrier_off(net);
1504
1505         netvsc_init_settings(net);
1506
1507         net_device_ctx = netdev_priv(net);
1508         net_device_ctx->device_ctx = dev;
1509         net_device_ctx->msg_enable = netif_msg_init(debug, default_msg);
1510         if (netif_msg_probe(net_device_ctx))
1511                 netdev_dbg(net, "netvsc msg_enable: %d\n",
1512                            net_device_ctx->msg_enable);
1513
1514         hv_set_drvdata(dev, net);
1515
1516         INIT_DELAYED_WORK(&net_device_ctx->dwork, netvsc_link_change);
1517
1518         spin_lock_init(&net_device_ctx->lock);
1519         INIT_LIST_HEAD(&net_device_ctx->reconfig_events);
1520
1521         net->netdev_ops = &device_ops;
1522         net->ethtool_ops = &ethtool_ops;
1523         SET_NETDEV_DEV(net, &dev->device);
1524
1525         /* We always need headroom for rndis header */
1526         net->needed_headroom = RNDIS_AND_PPI_SIZE;
1527
1528         /* Notify the netvsc driver of the new device */
1529         memset(&device_info, 0, sizeof(device_info));
1530         device_info.ring_size = ring_size;
1531         device_info.num_chn = VRSS_CHANNEL_DEFAULT;
1532
1533         nvdev = rndis_filter_device_add(dev, &device_info);
1534         if (IS_ERR(nvdev)) {
1535                 ret = PTR_ERR(nvdev);
1536                 netdev_err(net, "unable to add netvsc device (ret %d)\n", ret);
1537                 free_netdev(net);
1538                 hv_set_drvdata(dev, NULL);
1539                 return ret;
1540         }
1541         memcpy(net->dev_addr, device_info.mac_adr, ETH_ALEN);
1542
1543         /* hw_features computed in rndis_filter_device_add */
1544         net->features = net->hw_features |
1545                 NETIF_F_HIGHDMA | NETIF_F_SG |
1546                 NETIF_F_HW_VLAN_CTAG_TX | NETIF_F_HW_VLAN_CTAG_RX;
1547         net->vlan_features = net->features;
1548
1549         netif_set_real_num_tx_queues(net, nvdev->num_chn);
1550         netif_set_real_num_rx_queues(net, nvdev->num_chn);
1551
1552         netdev_lockdep_set_classes(net);
1553
1554         /* MTU range: 68 - 1500 or 65521 */
1555         net->min_mtu = NETVSC_MTU_MIN;
1556         if (nvdev->nvsp_version >= NVSP_PROTOCOL_VERSION_2)
1557                 net->max_mtu = NETVSC_MTU - ETH_HLEN;
1558         else
1559                 net->max_mtu = ETH_DATA_LEN;
1560
1561         ret = register_netdev(net);
1562         if (ret != 0) {
1563                 pr_err("Unable to register netdev.\n");
1564                 rndis_filter_device_remove(dev, nvdev);
1565                 free_netdev(net);
1566         }
1567
1568         return ret;
1569 }
1570
1571 static int netvsc_remove(struct hv_device *dev)
1572 {
1573         struct net_device *net;
1574         struct net_device_context *ndev_ctx;
1575
1576         net = hv_get_drvdata(dev);
1577
1578         if (net == NULL) {
1579                 dev_err(&dev->device, "No net device to remove\n");
1580                 return 0;
1581         }
1582
1583         ndev_ctx = netdev_priv(net);
1584
1585         netif_device_detach(net);
1586
1587         cancel_delayed_work_sync(&ndev_ctx->dwork);
1588
1589         /*
1590          * Call to the vsc driver to let it know that the device is being
1591          * removed. Also blocks mtu and channel changes.
1592          */
1593         rtnl_lock();
1594         rndis_filter_device_remove(dev,
1595                                    rtnl_dereference(ndev_ctx->nvdev));
1596         rtnl_unlock();
1597
1598         unregister_netdev(net);
1599
1600         hv_set_drvdata(dev, NULL);
1601
1602         free_netdev(net);
1603         return 0;
1604 }
1605
1606 static const struct hv_vmbus_device_id id_table[] = {
1607         /* Network guid */
1608         { HV_NIC_GUID, },
1609         { },
1610 };
1611
1612 MODULE_DEVICE_TABLE(vmbus, id_table);
1613
1614 /* The one and only one */
1615 static struct  hv_driver netvsc_drv = {
1616         .name = KBUILD_MODNAME,
1617         .id_table = id_table,
1618         .probe = netvsc_probe,
1619         .remove = netvsc_remove,
1620 };
1621
1622 /*
1623  * On Hyper-V, every VF interface is matched with a corresponding
1624  * synthetic interface. The synthetic interface is presented first
1625  * to the guest. When the corresponding VF instance is registered,
1626  * we will take care of switching the data path.
1627  */
1628 static int netvsc_netdev_event(struct notifier_block *this,
1629                                unsigned long event, void *ptr)
1630 {
1631         struct net_device *event_dev = netdev_notifier_info_to_dev(ptr);
1632
1633         /* Skip our own events */
1634         if (event_dev->netdev_ops == &device_ops)
1635                 return NOTIFY_DONE;
1636
1637         /* Avoid non-Ethernet type devices */
1638         if (event_dev->type != ARPHRD_ETHER)
1639                 return NOTIFY_DONE;
1640
1641         /* Avoid Vlan dev with same MAC registering as VF */
1642         if (is_vlan_dev(event_dev))
1643                 return NOTIFY_DONE;
1644
1645         /* Avoid Bonding master dev with same MAC registering as VF */
1646         if ((event_dev->priv_flags & IFF_BONDING) &&
1647             (event_dev->flags & IFF_MASTER))
1648                 return NOTIFY_DONE;
1649
1650         switch (event) {
1651         case NETDEV_REGISTER:
1652                 return netvsc_register_vf(event_dev);
1653         case NETDEV_UNREGISTER:
1654                 return netvsc_unregister_vf(event_dev);
1655         case NETDEV_UP:
1656                 return netvsc_vf_up(event_dev);
1657         case NETDEV_DOWN:
1658                 return netvsc_vf_down(event_dev);
1659         default:
1660                 return NOTIFY_DONE;
1661         }
1662 }
1663
1664 static struct notifier_block netvsc_netdev_notifier = {
1665         .notifier_call = netvsc_netdev_event,
1666 };
1667
1668 static void __exit netvsc_drv_exit(void)
1669 {
1670         unregister_netdevice_notifier(&netvsc_netdev_notifier);
1671         vmbus_driver_unregister(&netvsc_drv);
1672 }
1673
1674 static int __init netvsc_drv_init(void)
1675 {
1676         int ret;
1677
1678         if (ring_size < RING_SIZE_MIN) {
1679                 ring_size = RING_SIZE_MIN;
1680                 pr_info("Increased ring_size to %d (min allowed)\n",
1681                         ring_size);
1682         }
1683         ret = vmbus_driver_register(&netvsc_drv);
1684
1685         if (ret)
1686                 return ret;
1687
1688         register_netdevice_notifier(&netvsc_netdev_notifier);
1689         return 0;
1690 }
1691
1692 MODULE_LICENSE("GPL");
1693 MODULE_DESCRIPTION("Microsoft Hyper-V network driver");
1694
1695 module_init(netvsc_drv_init);
1696 module_exit(netvsc_drv_exit);