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/pci.h> 33 #include <linux/skbuff.h> 34 #include <linux/if_vlan.h> 35 #include <linux/in.h> 36 #include <linux/slab.h> 37 #include <linux/rtnetlink.h> 38 #include <linux/netpoll.h> 39 40 #include <net/arp.h> 41 #include <net/route.h> 42 #include <net/sock.h> 43 #include <net/pkt_sched.h> 44 #include <net/checksum.h> 45 #include <net/ip6_checksum.h> 46 47 #include "hyperv_net.h" 48 49 #define RING_SIZE_MIN 64 50 #define RETRY_US_LO 5000 51 #define RETRY_US_HI 10000 52 #define RETRY_MAX 2000 /* >10 sec */ 53 54 #define LINKCHANGE_INT (2 * HZ) 55 #define VF_TAKEOVER_INT (HZ / 10) 56 57 static unsigned int ring_size __ro_after_init = 128; 58 module_param(ring_size, uint, 0444); 59 MODULE_PARM_DESC(ring_size, "Ring buffer size (# of pages)"); 60 unsigned int netvsc_ring_bytes __ro_after_init; 61 62 static const u32 default_msg = NETIF_MSG_DRV | NETIF_MSG_PROBE | 63 NETIF_MSG_LINK | NETIF_MSG_IFUP | 64 NETIF_MSG_IFDOWN | NETIF_MSG_RX_ERR | 65 NETIF_MSG_TX_ERR; 66 67 static int debug = -1; 68 module_param(debug, int, 0444); 69 MODULE_PARM_DESC(debug, "Debug level (0=none,...,16=all)"); 70 71 static LIST_HEAD(netvsc_dev_list); 72 73 static void netvsc_change_rx_flags(struct net_device *net, int change) 74 { 75 struct net_device_context *ndev_ctx = netdev_priv(net); 76 struct net_device *vf_netdev = rtnl_dereference(ndev_ctx->vf_netdev); 77 int inc; 78 79 if (!vf_netdev) 80 return; 81 82 if (change & IFF_PROMISC) { 83 inc = (net->flags & IFF_PROMISC) ? 1 : -1; 84 dev_set_promiscuity(vf_netdev, inc); 85 } 86 87 if (change & IFF_ALLMULTI) { 88 inc = (net->flags & IFF_ALLMULTI) ? 1 : -1; 89 dev_set_allmulti(vf_netdev, inc); 90 } 91 } 92 93 static void netvsc_set_rx_mode(struct net_device *net) 94 { 95 struct net_device_context *ndev_ctx = netdev_priv(net); 96 struct net_device *vf_netdev; 97 struct netvsc_device *nvdev; 98 99 rcu_read_lock(); 100 vf_netdev = rcu_dereference(ndev_ctx->vf_netdev); 101 if (vf_netdev) { 102 dev_uc_sync(vf_netdev, net); 103 dev_mc_sync(vf_netdev, net); 104 } 105 106 nvdev = rcu_dereference(ndev_ctx->nvdev); 107 if (nvdev) 108 rndis_filter_update(nvdev); 109 rcu_read_unlock(); 110 } 111 112 static int netvsc_open(struct net_device *net) 113 { 114 struct net_device_context *ndev_ctx = netdev_priv(net); 115 struct net_device *vf_netdev = rtnl_dereference(ndev_ctx->vf_netdev); 116 struct netvsc_device *nvdev = rtnl_dereference(ndev_ctx->nvdev); 117 struct rndis_device *rdev; 118 int ret = 0; 119 120 netif_carrier_off(net); 121 122 /* Open up the device */ 123 ret = rndis_filter_open(nvdev); 124 if (ret != 0) { 125 netdev_err(net, "unable to open device (ret %d).\n", ret); 126 return ret; 127 } 128 129 rdev = nvdev->extension; 130 if (!rdev->link_state) { 131 netif_carrier_on(net); 132 netif_tx_wake_all_queues(net); 133 } 134 135 if (vf_netdev) { 136 /* Setting synthetic device up transparently sets 137 * slave as up. If open fails, then slave will be 138 * still be offline (and not used). 139 */ 140 ret = dev_open(vf_netdev); 141 if (ret) 142 netdev_warn(net, 143 "unable to open slave: %s: %d\n", 144 vf_netdev->name, ret); 145 } 146 return 0; 147 } 148 149 static int netvsc_wait_until_empty(struct netvsc_device *nvdev) 150 { 151 unsigned int retry = 0; 152 int i; 153 154 /* Ensure pending bytes in ring are read */ 155 for (;;) { 156 u32 aread = 0; 157 158 for (i = 0; i < nvdev->num_chn; i++) { 159 struct vmbus_channel *chn 160 = nvdev->chan_table[i].channel; 161 162 if (!chn) 163 continue; 164 165 /* make sure receive not running now */ 166 napi_synchronize(&nvdev->chan_table[i].napi); 167 168 aread = hv_get_bytes_to_read(&chn->inbound); 169 if (aread) 170 break; 171 172 aread = hv_get_bytes_to_read(&chn->outbound); 173 if (aread) 174 break; 175 } 176 177 if (aread == 0) 178 return 0; 179 180 if (++retry > RETRY_MAX) 181 return -ETIMEDOUT; 182 183 usleep_range(RETRY_US_LO, RETRY_US_HI); 184 } 185 } 186 187 static int netvsc_close(struct net_device *net) 188 { 189 struct net_device_context *net_device_ctx = netdev_priv(net); 190 struct net_device *vf_netdev 191 = rtnl_dereference(net_device_ctx->vf_netdev); 192 struct netvsc_device *nvdev = rtnl_dereference(net_device_ctx->nvdev); 193 int ret; 194 195 netif_tx_disable(net); 196 197 /* No need to close rndis filter if it is removed already */ 198 if (!nvdev) 199 return 0; 200 201 ret = rndis_filter_close(nvdev); 202 if (ret != 0) { 203 netdev_err(net, "unable to close device (ret %d).\n", ret); 204 return ret; 205 } 206 207 ret = netvsc_wait_until_empty(nvdev); 208 if (ret) 209 netdev_err(net, "Ring buffer not empty after closing rndis\n"); 210 211 if (vf_netdev) 212 dev_close(vf_netdev); 213 214 return ret; 215 } 216 217 static inline void *init_ppi_data(struct rndis_message *msg, 218 u32 ppi_size, u32 pkt_type) 219 { 220 struct rndis_packet *rndis_pkt = &msg->msg.pkt; 221 struct rndis_per_packet_info *ppi; 222 223 rndis_pkt->data_offset += ppi_size; 224 ppi = (void *)rndis_pkt + rndis_pkt->per_pkt_info_offset 225 + rndis_pkt->per_pkt_info_len; 226 227 ppi->size = ppi_size; 228 ppi->type = pkt_type; 229 ppi->ppi_offset = sizeof(struct rndis_per_packet_info); 230 231 rndis_pkt->per_pkt_info_len += ppi_size; 232 233 return ppi + 1; 234 } 235 236 /* Azure hosts don't support non-TCP port numbers in hashing for fragmented 237 * packets. We can use ethtool to change UDP hash level when necessary. 238 */ 239 static inline u32 netvsc_get_hash( 240 struct sk_buff *skb, 241 const struct net_device_context *ndc) 242 { 243 struct flow_keys flow; 244 u32 hash, pkt_proto = 0; 245 static u32 hashrnd __read_mostly; 246 247 net_get_random_once(&hashrnd, sizeof(hashrnd)); 248 249 if (!skb_flow_dissect_flow_keys(skb, &flow, 0)) 250 return 0; 251 252 switch (flow.basic.ip_proto) { 253 case IPPROTO_TCP: 254 if (flow.basic.n_proto == htons(ETH_P_IP)) 255 pkt_proto = HV_TCP4_L4HASH; 256 else if (flow.basic.n_proto == htons(ETH_P_IPV6)) 257 pkt_proto = HV_TCP6_L4HASH; 258 259 break; 260 261 case IPPROTO_UDP: 262 if (flow.basic.n_proto == htons(ETH_P_IP)) 263 pkt_proto = HV_UDP4_L4HASH; 264 else if (flow.basic.n_proto == htons(ETH_P_IPV6)) 265 pkt_proto = HV_UDP6_L4HASH; 266 267 break; 268 } 269 270 if (pkt_proto & ndc->l4_hash) { 271 return skb_get_hash(skb); 272 } else { 273 if (flow.basic.n_proto == htons(ETH_P_IP)) 274 hash = jhash2((u32 *)&flow.addrs.v4addrs, 2, hashrnd); 275 else if (flow.basic.n_proto == htons(ETH_P_IPV6)) 276 hash = jhash2((u32 *)&flow.addrs.v6addrs, 8, hashrnd); 277 else 278 hash = 0; 279 280 skb_set_hash(skb, hash, PKT_HASH_TYPE_L3); 281 } 282 283 return hash; 284 } 285 286 static inline int netvsc_get_tx_queue(struct net_device *ndev, 287 struct sk_buff *skb, int old_idx) 288 { 289 const struct net_device_context *ndc = netdev_priv(ndev); 290 struct sock *sk = skb->sk; 291 int q_idx; 292 293 q_idx = ndc->tx_table[netvsc_get_hash(skb, ndc) & 294 (VRSS_SEND_TAB_SIZE - 1)]; 295 296 /* If queue index changed record the new value */ 297 if (q_idx != old_idx && 298 sk && sk_fullsock(sk) && rcu_access_pointer(sk->sk_dst_cache)) 299 sk_tx_queue_set(sk, q_idx); 300 301 return q_idx; 302 } 303 304 /* 305 * Select queue for transmit. 306 * 307 * If a valid queue has already been assigned, then use that. 308 * Otherwise compute tx queue based on hash and the send table. 309 * 310 * This is basically similar to default (__netdev_pick_tx) with the added step 311 * of using the host send_table when no other queue has been assigned. 312 * 313 * TODO support XPS - but get_xps_queue not exported 314 */ 315 static u16 netvsc_pick_tx(struct net_device *ndev, struct sk_buff *skb) 316 { 317 int q_idx = sk_tx_queue_get(skb->sk); 318 319 if (q_idx < 0 || skb->ooo_okay || q_idx >= ndev->real_num_tx_queues) { 320 /* If forwarding a packet, we use the recorded queue when 321 * available for better cache locality. 322 */ 323 if (skb_rx_queue_recorded(skb)) 324 q_idx = skb_get_rx_queue(skb); 325 else 326 q_idx = netvsc_get_tx_queue(ndev, skb, q_idx); 327 } 328 329 return q_idx; 330 } 331 332 static u16 netvsc_select_queue(struct net_device *ndev, struct sk_buff *skb, 333 struct net_device *sb_dev, 334 select_queue_fallback_t fallback) 335 { 336 struct net_device_context *ndc = netdev_priv(ndev); 337 struct net_device *vf_netdev; 338 u16 txq; 339 340 rcu_read_lock(); 341 vf_netdev = rcu_dereference(ndc->vf_netdev); 342 if (vf_netdev) { 343 const struct net_device_ops *vf_ops = vf_netdev->netdev_ops; 344 345 if (vf_ops->ndo_select_queue) 346 txq = vf_ops->ndo_select_queue(vf_netdev, skb, 347 sb_dev, fallback); 348 else 349 txq = fallback(vf_netdev, skb, NULL); 350 351 /* Record the queue selected by VF so that it can be 352 * used for common case where VF has more queues than 353 * the synthetic device. 354 */ 355 qdisc_skb_cb(skb)->slave_dev_queue_mapping = txq; 356 } else { 357 txq = netvsc_pick_tx(ndev, skb); 358 } 359 rcu_read_unlock(); 360 361 while (unlikely(txq >= ndev->real_num_tx_queues)) 362 txq -= ndev->real_num_tx_queues; 363 364 return txq; 365 } 366 367 static u32 fill_pg_buf(struct page *page, u32 offset, u32 len, 368 struct hv_page_buffer *pb) 369 { 370 int j = 0; 371 372 /* Deal with compund pages by ignoring unused part 373 * of the page. 374 */ 375 page += (offset >> PAGE_SHIFT); 376 offset &= ~PAGE_MASK; 377 378 while (len > 0) { 379 unsigned long bytes; 380 381 bytes = PAGE_SIZE - offset; 382 if (bytes > len) 383 bytes = len; 384 pb[j].pfn = page_to_pfn(page); 385 pb[j].offset = offset; 386 pb[j].len = bytes; 387 388 offset += bytes; 389 len -= bytes; 390 391 if (offset == PAGE_SIZE && len) { 392 page++; 393 offset = 0; 394 j++; 395 } 396 } 397 398 return j + 1; 399 } 400 401 static u32 init_page_array(void *hdr, u32 len, struct sk_buff *skb, 402 struct hv_netvsc_packet *packet, 403 struct hv_page_buffer *pb) 404 { 405 u32 slots_used = 0; 406 char *data = skb->data; 407 int frags = skb_shinfo(skb)->nr_frags; 408 int i; 409 410 /* The packet is laid out thus: 411 * 1. hdr: RNDIS header and PPI 412 * 2. skb linear data 413 * 3. skb fragment data 414 */ 415 slots_used += fill_pg_buf(virt_to_page(hdr), 416 offset_in_page(hdr), 417 len, &pb[slots_used]); 418 419 packet->rmsg_size = len; 420 packet->rmsg_pgcnt = slots_used; 421 422 slots_used += fill_pg_buf(virt_to_page(data), 423 offset_in_page(data), 424 skb_headlen(skb), &pb[slots_used]); 425 426 for (i = 0; i < frags; i++) { 427 skb_frag_t *frag = skb_shinfo(skb)->frags + i; 428 429 slots_used += fill_pg_buf(skb_frag_page(frag), 430 frag->page_offset, 431 skb_frag_size(frag), &pb[slots_used]); 432 } 433 return slots_used; 434 } 435 436 static int count_skb_frag_slots(struct sk_buff *skb) 437 { 438 int i, frags = skb_shinfo(skb)->nr_frags; 439 int pages = 0; 440 441 for (i = 0; i < frags; i++) { 442 skb_frag_t *frag = skb_shinfo(skb)->frags + i; 443 unsigned long size = skb_frag_size(frag); 444 unsigned long offset = frag->page_offset; 445 446 /* Skip unused frames from start of page */ 447 offset &= ~PAGE_MASK; 448 pages += PFN_UP(offset + size); 449 } 450 return pages; 451 } 452 453 static int netvsc_get_slots(struct sk_buff *skb) 454 { 455 char *data = skb->data; 456 unsigned int offset = offset_in_page(data); 457 unsigned int len = skb_headlen(skb); 458 int slots; 459 int frag_slots; 460 461 slots = DIV_ROUND_UP(offset + len, PAGE_SIZE); 462 frag_slots = count_skb_frag_slots(skb); 463 return slots + frag_slots; 464 } 465 466 static u32 net_checksum_info(struct sk_buff *skb) 467 { 468 if (skb->protocol == htons(ETH_P_IP)) { 469 struct iphdr *ip = ip_hdr(skb); 470 471 if (ip->protocol == IPPROTO_TCP) 472 return TRANSPORT_INFO_IPV4_TCP; 473 else if (ip->protocol == IPPROTO_UDP) 474 return TRANSPORT_INFO_IPV4_UDP; 475 } else { 476 struct ipv6hdr *ip6 = ipv6_hdr(skb); 477 478 if (ip6->nexthdr == IPPROTO_TCP) 479 return TRANSPORT_INFO_IPV6_TCP; 480 else if (ip6->nexthdr == IPPROTO_UDP) 481 return TRANSPORT_INFO_IPV6_UDP; 482 } 483 484 return TRANSPORT_INFO_NOT_IP; 485 } 486 487 /* Send skb on the slave VF device. */ 488 static int netvsc_vf_xmit(struct net_device *net, struct net_device *vf_netdev, 489 struct sk_buff *skb) 490 { 491 struct net_device_context *ndev_ctx = netdev_priv(net); 492 unsigned int len = skb->len; 493 int rc; 494 495 skb->dev = vf_netdev; 496 skb->queue_mapping = qdisc_skb_cb(skb)->slave_dev_queue_mapping; 497 498 rc = dev_queue_xmit(skb); 499 if (likely(rc == NET_XMIT_SUCCESS || rc == NET_XMIT_CN)) { 500 struct netvsc_vf_pcpu_stats *pcpu_stats 501 = this_cpu_ptr(ndev_ctx->vf_stats); 502 503 u64_stats_update_begin(&pcpu_stats->syncp); 504 pcpu_stats->tx_packets++; 505 pcpu_stats->tx_bytes += len; 506 u64_stats_update_end(&pcpu_stats->syncp); 507 } else { 508 this_cpu_inc(ndev_ctx->vf_stats->tx_dropped); 509 } 510 511 return rc; 512 } 513 514 static int netvsc_start_xmit(struct sk_buff *skb, struct net_device *net) 515 { 516 struct net_device_context *net_device_ctx = netdev_priv(net); 517 struct hv_netvsc_packet *packet = NULL; 518 int ret; 519 unsigned int num_data_pgs; 520 struct rndis_message *rndis_msg; 521 struct net_device *vf_netdev; 522 u32 rndis_msg_size; 523 u32 hash; 524 struct hv_page_buffer pb[MAX_PAGE_BUFFER_COUNT]; 525 526 /* if VF is present and up then redirect packets 527 * already called with rcu_read_lock_bh 528 */ 529 vf_netdev = rcu_dereference_bh(net_device_ctx->vf_netdev); 530 if (vf_netdev && netif_running(vf_netdev) && 531 !netpoll_tx_running(net)) 532 return netvsc_vf_xmit(net, vf_netdev, skb); 533 534 /* We will atmost need two pages to describe the rndis 535 * header. We can only transmit MAX_PAGE_BUFFER_COUNT number 536 * of pages in a single packet. If skb is scattered around 537 * more pages we try linearizing it. 538 */ 539 540 num_data_pgs = netvsc_get_slots(skb) + 2; 541 542 if (unlikely(num_data_pgs > MAX_PAGE_BUFFER_COUNT)) { 543 ++net_device_ctx->eth_stats.tx_scattered; 544 545 if (skb_linearize(skb)) 546 goto no_memory; 547 548 num_data_pgs = netvsc_get_slots(skb) + 2; 549 if (num_data_pgs > MAX_PAGE_BUFFER_COUNT) { 550 ++net_device_ctx->eth_stats.tx_too_big; 551 goto drop; 552 } 553 } 554 555 /* 556 * Place the rndis header in the skb head room and 557 * the skb->cb will be used for hv_netvsc_packet 558 * structure. 559 */ 560 ret = skb_cow_head(skb, RNDIS_AND_PPI_SIZE); 561 if (ret) 562 goto no_memory; 563 564 /* Use the skb control buffer for building up the packet */ 565 BUILD_BUG_ON(sizeof(struct hv_netvsc_packet) > 566 FIELD_SIZEOF(struct sk_buff, cb)); 567 packet = (struct hv_netvsc_packet *)skb->cb; 568 569 packet->q_idx = skb_get_queue_mapping(skb); 570 571 packet->total_data_buflen = skb->len; 572 packet->total_bytes = skb->len; 573 packet->total_packets = 1; 574 575 rndis_msg = (struct rndis_message *)skb->head; 576 577 /* Add the rndis header */ 578 rndis_msg->ndis_msg_type = RNDIS_MSG_PACKET; 579 rndis_msg->msg_len = packet->total_data_buflen; 580 581 rndis_msg->msg.pkt = (struct rndis_packet) { 582 .data_offset = sizeof(struct rndis_packet), 583 .data_len = packet->total_data_buflen, 584 .per_pkt_info_offset = sizeof(struct rndis_packet), 585 }; 586 587 rndis_msg_size = RNDIS_MESSAGE_SIZE(struct rndis_packet); 588 589 hash = skb_get_hash_raw(skb); 590 if (hash != 0 && net->real_num_tx_queues > 1) { 591 u32 *hash_info; 592 593 rndis_msg_size += NDIS_HASH_PPI_SIZE; 594 hash_info = init_ppi_data(rndis_msg, NDIS_HASH_PPI_SIZE, 595 NBL_HASH_VALUE); 596 *hash_info = hash; 597 } 598 599 if (skb_vlan_tag_present(skb)) { 600 struct ndis_pkt_8021q_info *vlan; 601 602 rndis_msg_size += NDIS_VLAN_PPI_SIZE; 603 vlan = init_ppi_data(rndis_msg, NDIS_VLAN_PPI_SIZE, 604 IEEE_8021Q_INFO); 605 606 vlan->value = 0; 607 vlan->vlanid = skb->vlan_tci & VLAN_VID_MASK; 608 vlan->pri = (skb->vlan_tci & VLAN_PRIO_MASK) >> 609 VLAN_PRIO_SHIFT; 610 } 611 612 if (skb_is_gso(skb)) { 613 struct ndis_tcp_lso_info *lso_info; 614 615 rndis_msg_size += NDIS_LSO_PPI_SIZE; 616 lso_info = init_ppi_data(rndis_msg, NDIS_LSO_PPI_SIZE, 617 TCP_LARGESEND_PKTINFO); 618 619 lso_info->value = 0; 620 lso_info->lso_v2_transmit.type = NDIS_TCP_LARGE_SEND_OFFLOAD_V2_TYPE; 621 if (skb->protocol == htons(ETH_P_IP)) { 622 lso_info->lso_v2_transmit.ip_version = 623 NDIS_TCP_LARGE_SEND_OFFLOAD_IPV4; 624 ip_hdr(skb)->tot_len = 0; 625 ip_hdr(skb)->check = 0; 626 tcp_hdr(skb)->check = 627 ~csum_tcpudp_magic(ip_hdr(skb)->saddr, 628 ip_hdr(skb)->daddr, 0, IPPROTO_TCP, 0); 629 } else { 630 lso_info->lso_v2_transmit.ip_version = 631 NDIS_TCP_LARGE_SEND_OFFLOAD_IPV6; 632 ipv6_hdr(skb)->payload_len = 0; 633 tcp_hdr(skb)->check = 634 ~csum_ipv6_magic(&ipv6_hdr(skb)->saddr, 635 &ipv6_hdr(skb)->daddr, 0, IPPROTO_TCP, 0); 636 } 637 lso_info->lso_v2_transmit.tcp_header_offset = skb_transport_offset(skb); 638 lso_info->lso_v2_transmit.mss = skb_shinfo(skb)->gso_size; 639 } else if (skb->ip_summed == CHECKSUM_PARTIAL) { 640 if (net_checksum_info(skb) & net_device_ctx->tx_checksum_mask) { 641 struct ndis_tcp_ip_checksum_info *csum_info; 642 643 rndis_msg_size += NDIS_CSUM_PPI_SIZE; 644 csum_info = init_ppi_data(rndis_msg, NDIS_CSUM_PPI_SIZE, 645 TCPIP_CHKSUM_PKTINFO); 646 647 csum_info->value = 0; 648 csum_info->transmit.tcp_header_offset = skb_transport_offset(skb); 649 650 if (skb->protocol == htons(ETH_P_IP)) { 651 csum_info->transmit.is_ipv4 = 1; 652 653 if (ip_hdr(skb)->protocol == IPPROTO_TCP) 654 csum_info->transmit.tcp_checksum = 1; 655 else 656 csum_info->transmit.udp_checksum = 1; 657 } else { 658 csum_info->transmit.is_ipv6 = 1; 659 660 if (ipv6_hdr(skb)->nexthdr == IPPROTO_TCP) 661 csum_info->transmit.tcp_checksum = 1; 662 else 663 csum_info->transmit.udp_checksum = 1; 664 } 665 } else { 666 /* Can't do offload of this type of checksum */ 667 if (skb_checksum_help(skb)) 668 goto drop; 669 } 670 } 671 672 /* Start filling in the page buffers with the rndis hdr */ 673 rndis_msg->msg_len += rndis_msg_size; 674 packet->total_data_buflen = rndis_msg->msg_len; 675 packet->page_buf_cnt = init_page_array(rndis_msg, rndis_msg_size, 676 skb, packet, pb); 677 678 /* timestamp packet in software */ 679 skb_tx_timestamp(skb); 680 681 ret = netvsc_send(net, packet, rndis_msg, pb, skb); 682 if (likely(ret == 0)) 683 return NETDEV_TX_OK; 684 685 if (ret == -EAGAIN) { 686 ++net_device_ctx->eth_stats.tx_busy; 687 return NETDEV_TX_BUSY; 688 } 689 690 if (ret == -ENOSPC) 691 ++net_device_ctx->eth_stats.tx_no_space; 692 693 drop: 694 dev_kfree_skb_any(skb); 695 net->stats.tx_dropped++; 696 697 return NETDEV_TX_OK; 698 699 no_memory: 700 ++net_device_ctx->eth_stats.tx_no_memory; 701 goto drop; 702 } 703 704 /* 705 * netvsc_linkstatus_callback - Link up/down notification 706 */ 707 void netvsc_linkstatus_callback(struct net_device *net, 708 struct rndis_message *resp) 709 { 710 struct rndis_indicate_status *indicate = &resp->msg.indicate_status; 711 struct net_device_context *ndev_ctx = netdev_priv(net); 712 struct netvsc_reconfig *event; 713 unsigned long flags; 714 715 /* Update the physical link speed when changing to another vSwitch */ 716 if (indicate->status == RNDIS_STATUS_LINK_SPEED_CHANGE) { 717 u32 speed; 718 719 speed = *(u32 *)((void *)indicate 720 + indicate->status_buf_offset) / 10000; 721 ndev_ctx->speed = speed; 722 return; 723 } 724 725 /* Handle these link change statuses below */ 726 if (indicate->status != RNDIS_STATUS_NETWORK_CHANGE && 727 indicate->status != RNDIS_STATUS_MEDIA_CONNECT && 728 indicate->status != RNDIS_STATUS_MEDIA_DISCONNECT) 729 return; 730 731 if (net->reg_state != NETREG_REGISTERED) 732 return; 733 734 event = kzalloc(sizeof(*event), GFP_ATOMIC); 735 if (!event) 736 return; 737 event->event = indicate->status; 738 739 spin_lock_irqsave(&ndev_ctx->lock, flags); 740 list_add_tail(&event->list, &ndev_ctx->reconfig_events); 741 spin_unlock_irqrestore(&ndev_ctx->lock, flags); 742 743 schedule_delayed_work(&ndev_ctx->dwork, 0); 744 } 745 746 static struct sk_buff *netvsc_alloc_recv_skb(struct net_device *net, 747 struct netvsc_channel *nvchan) 748 { 749 struct napi_struct *napi = &nvchan->napi; 750 const struct ndis_pkt_8021q_info *vlan = nvchan->rsc.vlan; 751 const struct ndis_tcp_ip_checksum_info *csum_info = 752 nvchan->rsc.csum_info; 753 struct sk_buff *skb; 754 int i; 755 756 skb = napi_alloc_skb(napi, nvchan->rsc.pktlen); 757 if (!skb) 758 return skb; 759 760 /* 761 * Copy to skb. This copy is needed here since the memory pointed by 762 * hv_netvsc_packet cannot be deallocated 763 */ 764 for (i = 0; i < nvchan->rsc.cnt; i++) 765 skb_put_data(skb, nvchan->rsc.data[i], nvchan->rsc.len[i]); 766 767 skb->protocol = eth_type_trans(skb, net); 768 769 /* skb is already created with CHECKSUM_NONE */ 770 skb_checksum_none_assert(skb); 771 772 /* 773 * In Linux, the IP checksum is always checked. 774 * Do L4 checksum offload if enabled and present. 775 */ 776 if (csum_info && (net->features & NETIF_F_RXCSUM)) { 777 if (csum_info->receive.tcp_checksum_succeeded || 778 csum_info->receive.udp_checksum_succeeded) 779 skb->ip_summed = CHECKSUM_UNNECESSARY; 780 } 781 782 if (vlan) { 783 u16 vlan_tci = vlan->vlanid | (vlan->pri << VLAN_PRIO_SHIFT); 784 785 __vlan_hwaccel_put_tag(skb, htons(ETH_P_8021Q), 786 vlan_tci); 787 } 788 789 return skb; 790 } 791 792 /* 793 * netvsc_recv_callback - Callback when we receive a packet from the 794 * "wire" on the specified device. 795 */ 796 int netvsc_recv_callback(struct net_device *net, 797 struct netvsc_device *net_device, 798 struct netvsc_channel *nvchan) 799 { 800 struct net_device_context *net_device_ctx = netdev_priv(net); 801 struct vmbus_channel *channel = nvchan->channel; 802 u16 q_idx = channel->offermsg.offer.sub_channel_index; 803 struct sk_buff *skb; 804 struct netvsc_stats *rx_stats; 805 806 if (net->reg_state != NETREG_REGISTERED) 807 return NVSP_STAT_FAIL; 808 809 /* Allocate a skb - TODO direct I/O to pages? */ 810 skb = netvsc_alloc_recv_skb(net, nvchan); 811 812 if (unlikely(!skb)) { 813 ++net_device_ctx->eth_stats.rx_no_memory; 814 rcu_read_unlock(); 815 return NVSP_STAT_FAIL; 816 } 817 818 skb_record_rx_queue(skb, q_idx); 819 820 /* 821 * Even if injecting the packet, record the statistics 822 * on the synthetic device because modifying the VF device 823 * statistics will not work correctly. 824 */ 825 rx_stats = &nvchan->rx_stats; 826 u64_stats_update_begin(&rx_stats->syncp); 827 rx_stats->packets++; 828 rx_stats->bytes += nvchan->rsc.pktlen; 829 830 if (skb->pkt_type == PACKET_BROADCAST) 831 ++rx_stats->broadcast; 832 else if (skb->pkt_type == PACKET_MULTICAST) 833 ++rx_stats->multicast; 834 u64_stats_update_end(&rx_stats->syncp); 835 836 napi_gro_receive(&nvchan->napi, skb); 837 return NVSP_STAT_SUCCESS; 838 } 839 840 static void netvsc_get_drvinfo(struct net_device *net, 841 struct ethtool_drvinfo *info) 842 { 843 strlcpy(info->driver, KBUILD_MODNAME, sizeof(info->driver)); 844 strlcpy(info->fw_version, "N/A", sizeof(info->fw_version)); 845 } 846 847 static void netvsc_get_channels(struct net_device *net, 848 struct ethtool_channels *channel) 849 { 850 struct net_device_context *net_device_ctx = netdev_priv(net); 851 struct netvsc_device *nvdev = rtnl_dereference(net_device_ctx->nvdev); 852 853 if (nvdev) { 854 channel->max_combined = nvdev->max_chn; 855 channel->combined_count = nvdev->num_chn; 856 } 857 } 858 859 static int netvsc_detach(struct net_device *ndev, 860 struct netvsc_device *nvdev) 861 { 862 struct net_device_context *ndev_ctx = netdev_priv(ndev); 863 struct hv_device *hdev = ndev_ctx->device_ctx; 864 int ret; 865 866 /* Don't try continuing to try and setup sub channels */ 867 if (cancel_work_sync(&nvdev->subchan_work)) 868 nvdev->num_chn = 1; 869 870 /* If device was up (receiving) then shutdown */ 871 if (netif_running(ndev)) { 872 netif_tx_disable(ndev); 873 874 ret = rndis_filter_close(nvdev); 875 if (ret) { 876 netdev_err(ndev, 877 "unable to close device (ret %d).\n", ret); 878 return ret; 879 } 880 881 ret = netvsc_wait_until_empty(nvdev); 882 if (ret) { 883 netdev_err(ndev, 884 "Ring buffer not empty after closing rndis\n"); 885 return ret; 886 } 887 } 888 889 netif_device_detach(ndev); 890 891 rndis_filter_device_remove(hdev, nvdev); 892 893 return 0; 894 } 895 896 static int netvsc_attach(struct net_device *ndev, 897 struct netvsc_device_info *dev_info) 898 { 899 struct net_device_context *ndev_ctx = netdev_priv(ndev); 900 struct hv_device *hdev = ndev_ctx->device_ctx; 901 struct netvsc_device *nvdev; 902 struct rndis_device *rdev; 903 int ret; 904 905 nvdev = rndis_filter_device_add(hdev, dev_info); 906 if (IS_ERR(nvdev)) 907 return PTR_ERR(nvdev); 908 909 if (nvdev->num_chn > 1) { 910 ret = rndis_set_subchannel(ndev, nvdev); 911 912 /* if unavailable, just proceed with one queue */ 913 if (ret) { 914 nvdev->max_chn = 1; 915 nvdev->num_chn = 1; 916 } 917 } 918 919 /* In any case device is now ready */ 920 netif_device_attach(ndev); 921 922 /* Note: enable and attach happen when sub-channels setup */ 923 netif_carrier_off(ndev); 924 925 if (netif_running(ndev)) { 926 ret = rndis_filter_open(nvdev); 927 if (ret) 928 return ret; 929 930 rdev = nvdev->extension; 931 if (!rdev->link_state) 932 netif_carrier_on(ndev); 933 } 934 935 return 0; 936 } 937 938 static int netvsc_set_channels(struct net_device *net, 939 struct ethtool_channels *channels) 940 { 941 struct net_device_context *net_device_ctx = netdev_priv(net); 942 struct netvsc_device *nvdev = rtnl_dereference(net_device_ctx->nvdev); 943 unsigned int orig, count = channels->combined_count; 944 struct netvsc_device_info device_info; 945 int ret; 946 947 /* We do not support separate count for rx, tx, or other */ 948 if (count == 0 || 949 channels->rx_count || channels->tx_count || channels->other_count) 950 return -EINVAL; 951 952 if (!nvdev || nvdev->destroy) 953 return -ENODEV; 954 955 if (nvdev->nvsp_version < NVSP_PROTOCOL_VERSION_5) 956 return -EINVAL; 957 958 if (count > nvdev->max_chn) 959 return -EINVAL; 960 961 orig = nvdev->num_chn; 962 963 memset(&device_info, 0, sizeof(device_info)); 964 device_info.num_chn = count; 965 device_info.send_sections = nvdev->send_section_cnt; 966 device_info.send_section_size = nvdev->send_section_size; 967 device_info.recv_sections = nvdev->recv_section_cnt; 968 device_info.recv_section_size = nvdev->recv_section_size; 969 970 ret = netvsc_detach(net, nvdev); 971 if (ret) 972 return ret; 973 974 ret = netvsc_attach(net, &device_info); 975 if (ret) { 976 device_info.num_chn = orig; 977 if (netvsc_attach(net, &device_info)) 978 netdev_err(net, "restoring channel setting failed\n"); 979 } 980 981 return ret; 982 } 983 984 static bool 985 netvsc_validate_ethtool_ss_cmd(const struct ethtool_link_ksettings *cmd) 986 { 987 struct ethtool_link_ksettings diff1 = *cmd; 988 struct ethtool_link_ksettings diff2 = {}; 989 990 diff1.base.speed = 0; 991 diff1.base.duplex = 0; 992 /* advertising and cmd are usually set */ 993 ethtool_link_ksettings_zero_link_mode(&diff1, advertising); 994 diff1.base.cmd = 0; 995 /* We set port to PORT_OTHER */ 996 diff2.base.port = PORT_OTHER; 997 998 return !memcmp(&diff1, &diff2, sizeof(diff1)); 999 } 1000 1001 static void netvsc_init_settings(struct net_device *dev) 1002 { 1003 struct net_device_context *ndc = netdev_priv(dev); 1004 1005 ndc->l4_hash = HV_DEFAULT_L4HASH; 1006 1007 ndc->speed = SPEED_UNKNOWN; 1008 ndc->duplex = DUPLEX_FULL; 1009 1010 dev->features = NETIF_F_LRO; 1011 } 1012 1013 static int netvsc_get_link_ksettings(struct net_device *dev, 1014 struct ethtool_link_ksettings *cmd) 1015 { 1016 struct net_device_context *ndc = netdev_priv(dev); 1017 1018 cmd->base.speed = ndc->speed; 1019 cmd->base.duplex = ndc->duplex; 1020 cmd->base.port = PORT_OTHER; 1021 1022 return 0; 1023 } 1024 1025 static int netvsc_set_link_ksettings(struct net_device *dev, 1026 const struct ethtool_link_ksettings *cmd) 1027 { 1028 struct net_device_context *ndc = netdev_priv(dev); 1029 u32 speed; 1030 1031 speed = cmd->base.speed; 1032 if (!ethtool_validate_speed(speed) || 1033 !ethtool_validate_duplex(cmd->base.duplex) || 1034 !netvsc_validate_ethtool_ss_cmd(cmd)) 1035 return -EINVAL; 1036 1037 ndc->speed = speed; 1038 ndc->duplex = cmd->base.duplex; 1039 1040 return 0; 1041 } 1042 1043 static int netvsc_change_mtu(struct net_device *ndev, int mtu) 1044 { 1045 struct net_device_context *ndevctx = netdev_priv(ndev); 1046 struct net_device *vf_netdev = rtnl_dereference(ndevctx->vf_netdev); 1047 struct netvsc_device *nvdev = rtnl_dereference(ndevctx->nvdev); 1048 int orig_mtu = ndev->mtu; 1049 struct netvsc_device_info device_info; 1050 int ret = 0; 1051 1052 if (!nvdev || nvdev->destroy) 1053 return -ENODEV; 1054 1055 /* Change MTU of underlying VF netdev first. */ 1056 if (vf_netdev) { 1057 ret = dev_set_mtu(vf_netdev, mtu); 1058 if (ret) 1059 return ret; 1060 } 1061 1062 memset(&device_info, 0, sizeof(device_info)); 1063 device_info.num_chn = nvdev->num_chn; 1064 device_info.send_sections = nvdev->send_section_cnt; 1065 device_info.send_section_size = nvdev->send_section_size; 1066 device_info.recv_sections = nvdev->recv_section_cnt; 1067 device_info.recv_section_size = nvdev->recv_section_size; 1068 1069 ret = netvsc_detach(ndev, nvdev); 1070 if (ret) 1071 goto rollback_vf; 1072 1073 ndev->mtu = mtu; 1074 1075 ret = netvsc_attach(ndev, &device_info); 1076 if (ret) 1077 goto rollback; 1078 1079 return 0; 1080 1081 rollback: 1082 /* Attempt rollback to original MTU */ 1083 ndev->mtu = orig_mtu; 1084 1085 if (netvsc_attach(ndev, &device_info)) 1086 netdev_err(ndev, "restoring mtu failed\n"); 1087 rollback_vf: 1088 if (vf_netdev) 1089 dev_set_mtu(vf_netdev, orig_mtu); 1090 1091 return ret; 1092 } 1093 1094 static void netvsc_get_vf_stats(struct net_device *net, 1095 struct netvsc_vf_pcpu_stats *tot) 1096 { 1097 struct net_device_context *ndev_ctx = netdev_priv(net); 1098 int i; 1099 1100 memset(tot, 0, sizeof(*tot)); 1101 1102 for_each_possible_cpu(i) { 1103 const struct netvsc_vf_pcpu_stats *stats 1104 = per_cpu_ptr(ndev_ctx->vf_stats, i); 1105 u64 rx_packets, rx_bytes, tx_packets, tx_bytes; 1106 unsigned int start; 1107 1108 do { 1109 start = u64_stats_fetch_begin_irq(&stats->syncp); 1110 rx_packets = stats->rx_packets; 1111 tx_packets = stats->tx_packets; 1112 rx_bytes = stats->rx_bytes; 1113 tx_bytes = stats->tx_bytes; 1114 } while (u64_stats_fetch_retry_irq(&stats->syncp, start)); 1115 1116 tot->rx_packets += rx_packets; 1117 tot->tx_packets += tx_packets; 1118 tot->rx_bytes += rx_bytes; 1119 tot->tx_bytes += tx_bytes; 1120 tot->tx_dropped += stats->tx_dropped; 1121 } 1122 } 1123 1124 static void netvsc_get_pcpu_stats(struct net_device *net, 1125 struct netvsc_ethtool_pcpu_stats *pcpu_tot) 1126 { 1127 struct net_device_context *ndev_ctx = netdev_priv(net); 1128 struct netvsc_device *nvdev = rcu_dereference_rtnl(ndev_ctx->nvdev); 1129 int i; 1130 1131 /* fetch percpu stats of vf */ 1132 for_each_possible_cpu(i) { 1133 const struct netvsc_vf_pcpu_stats *stats = 1134 per_cpu_ptr(ndev_ctx->vf_stats, i); 1135 struct netvsc_ethtool_pcpu_stats *this_tot = &pcpu_tot[i]; 1136 unsigned int start; 1137 1138 do { 1139 start = u64_stats_fetch_begin_irq(&stats->syncp); 1140 this_tot->vf_rx_packets = stats->rx_packets; 1141 this_tot->vf_tx_packets = stats->tx_packets; 1142 this_tot->vf_rx_bytes = stats->rx_bytes; 1143 this_tot->vf_tx_bytes = stats->tx_bytes; 1144 } while (u64_stats_fetch_retry_irq(&stats->syncp, start)); 1145 this_tot->rx_packets = this_tot->vf_rx_packets; 1146 this_tot->tx_packets = this_tot->vf_tx_packets; 1147 this_tot->rx_bytes = this_tot->vf_rx_bytes; 1148 this_tot->tx_bytes = this_tot->vf_tx_bytes; 1149 } 1150 1151 /* fetch percpu stats of netvsc */ 1152 for (i = 0; i < nvdev->num_chn; i++) { 1153 const struct netvsc_channel *nvchan = &nvdev->chan_table[i]; 1154 const struct netvsc_stats *stats; 1155 struct netvsc_ethtool_pcpu_stats *this_tot = 1156 &pcpu_tot[nvchan->channel->target_cpu]; 1157 u64 packets, bytes; 1158 unsigned int start; 1159 1160 stats = &nvchan->tx_stats; 1161 do { 1162 start = u64_stats_fetch_begin_irq(&stats->syncp); 1163 packets = stats->packets; 1164 bytes = stats->bytes; 1165 } while (u64_stats_fetch_retry_irq(&stats->syncp, start)); 1166 1167 this_tot->tx_bytes += bytes; 1168 this_tot->tx_packets += packets; 1169 1170 stats = &nvchan->rx_stats; 1171 do { 1172 start = u64_stats_fetch_begin_irq(&stats->syncp); 1173 packets = stats->packets; 1174 bytes = stats->bytes; 1175 } while (u64_stats_fetch_retry_irq(&stats->syncp, start)); 1176 1177 this_tot->rx_bytes += bytes; 1178 this_tot->rx_packets += packets; 1179 } 1180 } 1181 1182 static void netvsc_get_stats64(struct net_device *net, 1183 struct rtnl_link_stats64 *t) 1184 { 1185 struct net_device_context *ndev_ctx = netdev_priv(net); 1186 struct netvsc_device *nvdev = rcu_dereference_rtnl(ndev_ctx->nvdev); 1187 struct netvsc_vf_pcpu_stats vf_tot; 1188 int i; 1189 1190 if (!nvdev) 1191 return; 1192 1193 netdev_stats_to_stats64(t, &net->stats); 1194 1195 netvsc_get_vf_stats(net, &vf_tot); 1196 t->rx_packets += vf_tot.rx_packets; 1197 t->tx_packets += vf_tot.tx_packets; 1198 t->rx_bytes += vf_tot.rx_bytes; 1199 t->tx_bytes += vf_tot.tx_bytes; 1200 t->tx_dropped += vf_tot.tx_dropped; 1201 1202 for (i = 0; i < nvdev->num_chn; i++) { 1203 const struct netvsc_channel *nvchan = &nvdev->chan_table[i]; 1204 const struct netvsc_stats *stats; 1205 u64 packets, bytes, multicast; 1206 unsigned int start; 1207 1208 stats = &nvchan->tx_stats; 1209 do { 1210 start = u64_stats_fetch_begin_irq(&stats->syncp); 1211 packets = stats->packets; 1212 bytes = stats->bytes; 1213 } while (u64_stats_fetch_retry_irq(&stats->syncp, start)); 1214 1215 t->tx_bytes += bytes; 1216 t->tx_packets += packets; 1217 1218 stats = &nvchan->rx_stats; 1219 do { 1220 start = u64_stats_fetch_begin_irq(&stats->syncp); 1221 packets = stats->packets; 1222 bytes = stats->bytes; 1223 multicast = stats->multicast + stats->broadcast; 1224 } while (u64_stats_fetch_retry_irq(&stats->syncp, start)); 1225 1226 t->rx_bytes += bytes; 1227 t->rx_packets += packets; 1228 t->multicast += multicast; 1229 } 1230 } 1231 1232 static int netvsc_set_mac_addr(struct net_device *ndev, void *p) 1233 { 1234 struct net_device_context *ndc = netdev_priv(ndev); 1235 struct net_device *vf_netdev = rtnl_dereference(ndc->vf_netdev); 1236 struct netvsc_device *nvdev = rtnl_dereference(ndc->nvdev); 1237 struct sockaddr *addr = p; 1238 int err; 1239 1240 err = eth_prepare_mac_addr_change(ndev, p); 1241 if (err) 1242 return err; 1243 1244 if (!nvdev) 1245 return -ENODEV; 1246 1247 if (vf_netdev) { 1248 err = dev_set_mac_address(vf_netdev, addr); 1249 if (err) 1250 return err; 1251 } 1252 1253 err = rndis_filter_set_device_mac(nvdev, addr->sa_data); 1254 if (!err) { 1255 eth_commit_mac_addr_change(ndev, p); 1256 } else if (vf_netdev) { 1257 /* rollback change on VF */ 1258 memcpy(addr->sa_data, ndev->dev_addr, ETH_ALEN); 1259 dev_set_mac_address(vf_netdev, addr); 1260 } 1261 1262 return err; 1263 } 1264 1265 static const struct { 1266 char name[ETH_GSTRING_LEN]; 1267 u16 offset; 1268 } netvsc_stats[] = { 1269 { "tx_scattered", offsetof(struct netvsc_ethtool_stats, tx_scattered) }, 1270 { "tx_no_memory", offsetof(struct netvsc_ethtool_stats, tx_no_memory) }, 1271 { "tx_no_space", offsetof(struct netvsc_ethtool_stats, tx_no_space) }, 1272 { "tx_too_big", offsetof(struct netvsc_ethtool_stats, tx_too_big) }, 1273 { "tx_busy", offsetof(struct netvsc_ethtool_stats, tx_busy) }, 1274 { "tx_send_full", offsetof(struct netvsc_ethtool_stats, tx_send_full) }, 1275 { "rx_comp_busy", offsetof(struct netvsc_ethtool_stats, rx_comp_busy) }, 1276 { "rx_no_memory", offsetof(struct netvsc_ethtool_stats, rx_no_memory) }, 1277 { "stop_queue", offsetof(struct netvsc_ethtool_stats, stop_queue) }, 1278 { "wake_queue", offsetof(struct netvsc_ethtool_stats, wake_queue) }, 1279 }, pcpu_stats[] = { 1280 { "cpu%u_rx_packets", 1281 offsetof(struct netvsc_ethtool_pcpu_stats, rx_packets) }, 1282 { "cpu%u_rx_bytes", 1283 offsetof(struct netvsc_ethtool_pcpu_stats, rx_bytes) }, 1284 { "cpu%u_tx_packets", 1285 offsetof(struct netvsc_ethtool_pcpu_stats, tx_packets) }, 1286 { "cpu%u_tx_bytes", 1287 offsetof(struct netvsc_ethtool_pcpu_stats, tx_bytes) }, 1288 { "cpu%u_vf_rx_packets", 1289 offsetof(struct netvsc_ethtool_pcpu_stats, vf_rx_packets) }, 1290 { "cpu%u_vf_rx_bytes", 1291 offsetof(struct netvsc_ethtool_pcpu_stats, vf_rx_bytes) }, 1292 { "cpu%u_vf_tx_packets", 1293 offsetof(struct netvsc_ethtool_pcpu_stats, vf_tx_packets) }, 1294 { "cpu%u_vf_tx_bytes", 1295 offsetof(struct netvsc_ethtool_pcpu_stats, vf_tx_bytes) }, 1296 }, vf_stats[] = { 1297 { "vf_rx_packets", offsetof(struct netvsc_vf_pcpu_stats, rx_packets) }, 1298 { "vf_rx_bytes", offsetof(struct netvsc_vf_pcpu_stats, rx_bytes) }, 1299 { "vf_tx_packets", offsetof(struct netvsc_vf_pcpu_stats, tx_packets) }, 1300 { "vf_tx_bytes", offsetof(struct netvsc_vf_pcpu_stats, tx_bytes) }, 1301 { "vf_tx_dropped", offsetof(struct netvsc_vf_pcpu_stats, tx_dropped) }, 1302 }; 1303 1304 #define NETVSC_GLOBAL_STATS_LEN ARRAY_SIZE(netvsc_stats) 1305 #define NETVSC_VF_STATS_LEN ARRAY_SIZE(vf_stats) 1306 1307 /* statistics per queue (rx/tx packets/bytes) */ 1308 #define NETVSC_PCPU_STATS_LEN (num_present_cpus() * ARRAY_SIZE(pcpu_stats)) 1309 1310 /* 4 statistics per queue (rx/tx packets/bytes) */ 1311 #define NETVSC_QUEUE_STATS_LEN(dev) ((dev)->num_chn * 4) 1312 1313 static int netvsc_get_sset_count(struct net_device *dev, int string_set) 1314 { 1315 struct net_device_context *ndc = netdev_priv(dev); 1316 struct netvsc_device *nvdev = rtnl_dereference(ndc->nvdev); 1317 1318 if (!nvdev) 1319 return -ENODEV; 1320 1321 switch (string_set) { 1322 case ETH_SS_STATS: 1323 return NETVSC_GLOBAL_STATS_LEN 1324 + NETVSC_VF_STATS_LEN 1325 + NETVSC_QUEUE_STATS_LEN(nvdev) 1326 + NETVSC_PCPU_STATS_LEN; 1327 default: 1328 return -EINVAL; 1329 } 1330 } 1331 1332 static void netvsc_get_ethtool_stats(struct net_device *dev, 1333 struct ethtool_stats *stats, u64 *data) 1334 { 1335 struct net_device_context *ndc = netdev_priv(dev); 1336 struct netvsc_device *nvdev = rtnl_dereference(ndc->nvdev); 1337 const void *nds = &ndc->eth_stats; 1338 const struct netvsc_stats *qstats; 1339 struct netvsc_vf_pcpu_stats sum; 1340 struct netvsc_ethtool_pcpu_stats *pcpu_sum; 1341 unsigned int start; 1342 u64 packets, bytes; 1343 int i, j, cpu; 1344 1345 if (!nvdev) 1346 return; 1347 1348 for (i = 0; i < NETVSC_GLOBAL_STATS_LEN; i++) 1349 data[i] = *(unsigned long *)(nds + netvsc_stats[i].offset); 1350 1351 netvsc_get_vf_stats(dev, &sum); 1352 for (j = 0; j < NETVSC_VF_STATS_LEN; j++) 1353 data[i++] = *(u64 *)((void *)&sum + vf_stats[j].offset); 1354 1355 for (j = 0; j < nvdev->num_chn; j++) { 1356 qstats = &nvdev->chan_table[j].tx_stats; 1357 1358 do { 1359 start = u64_stats_fetch_begin_irq(&qstats->syncp); 1360 packets = qstats->packets; 1361 bytes = qstats->bytes; 1362 } while (u64_stats_fetch_retry_irq(&qstats->syncp, start)); 1363 data[i++] = packets; 1364 data[i++] = bytes; 1365 1366 qstats = &nvdev->chan_table[j].rx_stats; 1367 do { 1368 start = u64_stats_fetch_begin_irq(&qstats->syncp); 1369 packets = qstats->packets; 1370 bytes = qstats->bytes; 1371 } while (u64_stats_fetch_retry_irq(&qstats->syncp, start)); 1372 data[i++] = packets; 1373 data[i++] = bytes; 1374 } 1375 1376 pcpu_sum = kvmalloc_array(num_possible_cpus(), 1377 sizeof(struct netvsc_ethtool_pcpu_stats), 1378 GFP_KERNEL); 1379 netvsc_get_pcpu_stats(dev, pcpu_sum); 1380 for_each_present_cpu(cpu) { 1381 struct netvsc_ethtool_pcpu_stats *this_sum = &pcpu_sum[cpu]; 1382 1383 for (j = 0; j < ARRAY_SIZE(pcpu_stats); j++) 1384 data[i++] = *(u64 *)((void *)this_sum 1385 + pcpu_stats[j].offset); 1386 } 1387 kvfree(pcpu_sum); 1388 } 1389 1390 static void netvsc_get_strings(struct net_device *dev, u32 stringset, u8 *data) 1391 { 1392 struct net_device_context *ndc = netdev_priv(dev); 1393 struct netvsc_device *nvdev = rtnl_dereference(ndc->nvdev); 1394 u8 *p = data; 1395 int i, cpu; 1396 1397 if (!nvdev) 1398 return; 1399 1400 switch (stringset) { 1401 case ETH_SS_STATS: 1402 for (i = 0; i < ARRAY_SIZE(netvsc_stats); i++) { 1403 memcpy(p, netvsc_stats[i].name, ETH_GSTRING_LEN); 1404 p += ETH_GSTRING_LEN; 1405 } 1406 1407 for (i = 0; i < ARRAY_SIZE(vf_stats); i++) { 1408 memcpy(p, vf_stats[i].name, ETH_GSTRING_LEN); 1409 p += ETH_GSTRING_LEN; 1410 } 1411 1412 for (i = 0; i < nvdev->num_chn; i++) { 1413 sprintf(p, "tx_queue_%u_packets", i); 1414 p += ETH_GSTRING_LEN; 1415 sprintf(p, "tx_queue_%u_bytes", i); 1416 p += ETH_GSTRING_LEN; 1417 sprintf(p, "rx_queue_%u_packets", i); 1418 p += ETH_GSTRING_LEN; 1419 sprintf(p, "rx_queue_%u_bytes", i); 1420 p += ETH_GSTRING_LEN; 1421 } 1422 1423 for_each_present_cpu(cpu) { 1424 for (i = 0; i < ARRAY_SIZE(pcpu_stats); i++) { 1425 sprintf(p, pcpu_stats[i].name, cpu); 1426 p += ETH_GSTRING_LEN; 1427 } 1428 } 1429 1430 break; 1431 } 1432 } 1433 1434 static int 1435 netvsc_get_rss_hash_opts(struct net_device_context *ndc, 1436 struct ethtool_rxnfc *info) 1437 { 1438 const u32 l4_flag = RXH_L4_B_0_1 | RXH_L4_B_2_3; 1439 1440 info->data = RXH_IP_SRC | RXH_IP_DST; 1441 1442 switch (info->flow_type) { 1443 case TCP_V4_FLOW: 1444 if (ndc->l4_hash & HV_TCP4_L4HASH) 1445 info->data |= l4_flag; 1446 1447 break; 1448 1449 case TCP_V6_FLOW: 1450 if (ndc->l4_hash & HV_TCP6_L4HASH) 1451 info->data |= l4_flag; 1452 1453 break; 1454 1455 case UDP_V4_FLOW: 1456 if (ndc->l4_hash & HV_UDP4_L4HASH) 1457 info->data |= l4_flag; 1458 1459 break; 1460 1461 case UDP_V6_FLOW: 1462 if (ndc->l4_hash & HV_UDP6_L4HASH) 1463 info->data |= l4_flag; 1464 1465 break; 1466 1467 case IPV4_FLOW: 1468 case IPV6_FLOW: 1469 break; 1470 default: 1471 info->data = 0; 1472 break; 1473 } 1474 1475 return 0; 1476 } 1477 1478 static int 1479 netvsc_get_rxnfc(struct net_device *dev, struct ethtool_rxnfc *info, 1480 u32 *rules) 1481 { 1482 struct net_device_context *ndc = netdev_priv(dev); 1483 struct netvsc_device *nvdev = rtnl_dereference(ndc->nvdev); 1484 1485 if (!nvdev) 1486 return -ENODEV; 1487 1488 switch (info->cmd) { 1489 case ETHTOOL_GRXRINGS: 1490 info->data = nvdev->num_chn; 1491 return 0; 1492 1493 case ETHTOOL_GRXFH: 1494 return netvsc_get_rss_hash_opts(ndc, info); 1495 } 1496 return -EOPNOTSUPP; 1497 } 1498 1499 static int netvsc_set_rss_hash_opts(struct net_device_context *ndc, 1500 struct ethtool_rxnfc *info) 1501 { 1502 if (info->data == (RXH_IP_SRC | RXH_IP_DST | 1503 RXH_L4_B_0_1 | RXH_L4_B_2_3)) { 1504 switch (info->flow_type) { 1505 case TCP_V4_FLOW: 1506 ndc->l4_hash |= HV_TCP4_L4HASH; 1507 break; 1508 1509 case TCP_V6_FLOW: 1510 ndc->l4_hash |= HV_TCP6_L4HASH; 1511 break; 1512 1513 case UDP_V4_FLOW: 1514 ndc->l4_hash |= HV_UDP4_L4HASH; 1515 break; 1516 1517 case UDP_V6_FLOW: 1518 ndc->l4_hash |= HV_UDP6_L4HASH; 1519 break; 1520 1521 default: 1522 return -EOPNOTSUPP; 1523 } 1524 1525 return 0; 1526 } 1527 1528 if (info->data == (RXH_IP_SRC | RXH_IP_DST)) { 1529 switch (info->flow_type) { 1530 case TCP_V4_FLOW: 1531 ndc->l4_hash &= ~HV_TCP4_L4HASH; 1532 break; 1533 1534 case TCP_V6_FLOW: 1535 ndc->l4_hash &= ~HV_TCP6_L4HASH; 1536 break; 1537 1538 case UDP_V4_FLOW: 1539 ndc->l4_hash &= ~HV_UDP4_L4HASH; 1540 break; 1541 1542 case UDP_V6_FLOW: 1543 ndc->l4_hash &= ~HV_UDP6_L4HASH; 1544 break; 1545 1546 default: 1547 return -EOPNOTSUPP; 1548 } 1549 1550 return 0; 1551 } 1552 1553 return -EOPNOTSUPP; 1554 } 1555 1556 static int 1557 netvsc_set_rxnfc(struct net_device *ndev, struct ethtool_rxnfc *info) 1558 { 1559 struct net_device_context *ndc = netdev_priv(ndev); 1560 1561 if (info->cmd == ETHTOOL_SRXFH) 1562 return netvsc_set_rss_hash_opts(ndc, info); 1563 1564 return -EOPNOTSUPP; 1565 } 1566 1567 #ifdef CONFIG_NET_POLL_CONTROLLER 1568 static void netvsc_poll_controller(struct net_device *dev) 1569 { 1570 struct net_device_context *ndc = netdev_priv(dev); 1571 struct netvsc_device *ndev; 1572 int i; 1573 1574 rcu_read_lock(); 1575 ndev = rcu_dereference(ndc->nvdev); 1576 if (ndev) { 1577 for (i = 0; i < ndev->num_chn; i++) { 1578 struct netvsc_channel *nvchan = &ndev->chan_table[i]; 1579 1580 napi_schedule(&nvchan->napi); 1581 } 1582 } 1583 rcu_read_unlock(); 1584 } 1585 #endif 1586 1587 static u32 netvsc_get_rxfh_key_size(struct net_device *dev) 1588 { 1589 return NETVSC_HASH_KEYLEN; 1590 } 1591 1592 static u32 netvsc_rss_indir_size(struct net_device *dev) 1593 { 1594 return ITAB_NUM; 1595 } 1596 1597 static int netvsc_get_rxfh(struct net_device *dev, u32 *indir, u8 *key, 1598 u8 *hfunc) 1599 { 1600 struct net_device_context *ndc = netdev_priv(dev); 1601 struct netvsc_device *ndev = rtnl_dereference(ndc->nvdev); 1602 struct rndis_device *rndis_dev; 1603 int i; 1604 1605 if (!ndev) 1606 return -ENODEV; 1607 1608 if (hfunc) 1609 *hfunc = ETH_RSS_HASH_TOP; /* Toeplitz */ 1610 1611 rndis_dev = ndev->extension; 1612 if (indir) { 1613 for (i = 0; i < ITAB_NUM; i++) 1614 indir[i] = rndis_dev->rx_table[i]; 1615 } 1616 1617 if (key) 1618 memcpy(key, rndis_dev->rss_key, NETVSC_HASH_KEYLEN); 1619 1620 return 0; 1621 } 1622 1623 static int netvsc_set_rxfh(struct net_device *dev, const u32 *indir, 1624 const u8 *key, const u8 hfunc) 1625 { 1626 struct net_device_context *ndc = netdev_priv(dev); 1627 struct netvsc_device *ndev = rtnl_dereference(ndc->nvdev); 1628 struct rndis_device *rndis_dev; 1629 int i; 1630 1631 if (!ndev) 1632 return -ENODEV; 1633 1634 if (hfunc != ETH_RSS_HASH_NO_CHANGE && hfunc != ETH_RSS_HASH_TOP) 1635 return -EOPNOTSUPP; 1636 1637 rndis_dev = ndev->extension; 1638 if (indir) { 1639 for (i = 0; i < ITAB_NUM; i++) 1640 if (indir[i] >= ndev->num_chn) 1641 return -EINVAL; 1642 1643 for (i = 0; i < ITAB_NUM; i++) 1644 rndis_dev->rx_table[i] = indir[i]; 1645 } 1646 1647 if (!key) { 1648 if (!indir) 1649 return 0; 1650 1651 key = rndis_dev->rss_key; 1652 } 1653 1654 return rndis_filter_set_rss_param(rndis_dev, key); 1655 } 1656 1657 /* Hyper-V RNDIS protocol does not have ring in the HW sense. 1658 * It does have pre-allocated receive area which is divided into sections. 1659 */ 1660 static void __netvsc_get_ringparam(struct netvsc_device *nvdev, 1661 struct ethtool_ringparam *ring) 1662 { 1663 u32 max_buf_size; 1664 1665 ring->rx_pending = nvdev->recv_section_cnt; 1666 ring->tx_pending = nvdev->send_section_cnt; 1667 1668 if (nvdev->nvsp_version <= NVSP_PROTOCOL_VERSION_2) 1669 max_buf_size = NETVSC_RECEIVE_BUFFER_SIZE_LEGACY; 1670 else 1671 max_buf_size = NETVSC_RECEIVE_BUFFER_SIZE; 1672 1673 ring->rx_max_pending = max_buf_size / nvdev->recv_section_size; 1674 ring->tx_max_pending = NETVSC_SEND_BUFFER_SIZE 1675 / nvdev->send_section_size; 1676 } 1677 1678 static void netvsc_get_ringparam(struct net_device *ndev, 1679 struct ethtool_ringparam *ring) 1680 { 1681 struct net_device_context *ndevctx = netdev_priv(ndev); 1682 struct netvsc_device *nvdev = rtnl_dereference(ndevctx->nvdev); 1683 1684 if (!nvdev) 1685 return; 1686 1687 __netvsc_get_ringparam(nvdev, ring); 1688 } 1689 1690 static int netvsc_set_ringparam(struct net_device *ndev, 1691 struct ethtool_ringparam *ring) 1692 { 1693 struct net_device_context *ndevctx = netdev_priv(ndev); 1694 struct netvsc_device *nvdev = rtnl_dereference(ndevctx->nvdev); 1695 struct netvsc_device_info device_info; 1696 struct ethtool_ringparam orig; 1697 u32 new_tx, new_rx; 1698 int ret = 0; 1699 1700 if (!nvdev || nvdev->destroy) 1701 return -ENODEV; 1702 1703 memset(&orig, 0, sizeof(orig)); 1704 __netvsc_get_ringparam(nvdev, &orig); 1705 1706 new_tx = clamp_t(u32, ring->tx_pending, 1707 NETVSC_MIN_TX_SECTIONS, orig.tx_max_pending); 1708 new_rx = clamp_t(u32, ring->rx_pending, 1709 NETVSC_MIN_RX_SECTIONS, orig.rx_max_pending); 1710 1711 if (new_tx == orig.tx_pending && 1712 new_rx == orig.rx_pending) 1713 return 0; /* no change */ 1714 1715 memset(&device_info, 0, sizeof(device_info)); 1716 device_info.num_chn = nvdev->num_chn; 1717 device_info.send_sections = new_tx; 1718 device_info.send_section_size = nvdev->send_section_size; 1719 device_info.recv_sections = new_rx; 1720 device_info.recv_section_size = nvdev->recv_section_size; 1721 1722 ret = netvsc_detach(ndev, nvdev); 1723 if (ret) 1724 return ret; 1725 1726 ret = netvsc_attach(ndev, &device_info); 1727 if (ret) { 1728 device_info.send_sections = orig.tx_pending; 1729 device_info.recv_sections = orig.rx_pending; 1730 1731 if (netvsc_attach(ndev, &device_info)) 1732 netdev_err(ndev, "restoring ringparam failed"); 1733 } 1734 1735 return ret; 1736 } 1737 1738 static int netvsc_set_features(struct net_device *ndev, 1739 netdev_features_t features) 1740 { 1741 netdev_features_t change = features ^ ndev->features; 1742 struct net_device_context *ndevctx = netdev_priv(ndev); 1743 struct netvsc_device *nvdev = rtnl_dereference(ndevctx->nvdev); 1744 struct ndis_offload_params offloads; 1745 1746 if (!nvdev || nvdev->destroy) 1747 return -ENODEV; 1748 1749 if (!(change & NETIF_F_LRO)) 1750 return 0; 1751 1752 memset(&offloads, 0, sizeof(struct ndis_offload_params)); 1753 1754 if (features & NETIF_F_LRO) { 1755 offloads.rsc_ip_v4 = NDIS_OFFLOAD_PARAMETERS_RSC_ENABLED; 1756 offloads.rsc_ip_v6 = NDIS_OFFLOAD_PARAMETERS_RSC_ENABLED; 1757 } else { 1758 offloads.rsc_ip_v4 = NDIS_OFFLOAD_PARAMETERS_RSC_DISABLED; 1759 offloads.rsc_ip_v6 = NDIS_OFFLOAD_PARAMETERS_RSC_DISABLED; 1760 } 1761 1762 return rndis_filter_set_offload_params(ndev, nvdev, &offloads); 1763 } 1764 1765 static u32 netvsc_get_msglevel(struct net_device *ndev) 1766 { 1767 struct net_device_context *ndev_ctx = netdev_priv(ndev); 1768 1769 return ndev_ctx->msg_enable; 1770 } 1771 1772 static void netvsc_set_msglevel(struct net_device *ndev, u32 val) 1773 { 1774 struct net_device_context *ndev_ctx = netdev_priv(ndev); 1775 1776 ndev_ctx->msg_enable = val; 1777 } 1778 1779 static const struct ethtool_ops ethtool_ops = { 1780 .get_drvinfo = netvsc_get_drvinfo, 1781 .get_msglevel = netvsc_get_msglevel, 1782 .set_msglevel = netvsc_set_msglevel, 1783 .get_link = ethtool_op_get_link, 1784 .get_ethtool_stats = netvsc_get_ethtool_stats, 1785 .get_sset_count = netvsc_get_sset_count, 1786 .get_strings = netvsc_get_strings, 1787 .get_channels = netvsc_get_channels, 1788 .set_channels = netvsc_set_channels, 1789 .get_ts_info = ethtool_op_get_ts_info, 1790 .get_rxnfc = netvsc_get_rxnfc, 1791 .set_rxnfc = netvsc_set_rxnfc, 1792 .get_rxfh_key_size = netvsc_get_rxfh_key_size, 1793 .get_rxfh_indir_size = netvsc_rss_indir_size, 1794 .get_rxfh = netvsc_get_rxfh, 1795 .set_rxfh = netvsc_set_rxfh, 1796 .get_link_ksettings = netvsc_get_link_ksettings, 1797 .set_link_ksettings = netvsc_set_link_ksettings, 1798 .get_ringparam = netvsc_get_ringparam, 1799 .set_ringparam = netvsc_set_ringparam, 1800 }; 1801 1802 static const struct net_device_ops device_ops = { 1803 .ndo_open = netvsc_open, 1804 .ndo_stop = netvsc_close, 1805 .ndo_start_xmit = netvsc_start_xmit, 1806 .ndo_change_rx_flags = netvsc_change_rx_flags, 1807 .ndo_set_rx_mode = netvsc_set_rx_mode, 1808 .ndo_set_features = netvsc_set_features, 1809 .ndo_change_mtu = netvsc_change_mtu, 1810 .ndo_validate_addr = eth_validate_addr, 1811 .ndo_set_mac_address = netvsc_set_mac_addr, 1812 .ndo_select_queue = netvsc_select_queue, 1813 .ndo_get_stats64 = netvsc_get_stats64, 1814 #ifdef CONFIG_NET_POLL_CONTROLLER 1815 .ndo_poll_controller = netvsc_poll_controller, 1816 #endif 1817 }; 1818 1819 /* 1820 * Handle link status changes. For RNDIS_STATUS_NETWORK_CHANGE emulate link 1821 * down/up sequence. In case of RNDIS_STATUS_MEDIA_CONNECT when carrier is 1822 * present send GARP packet to network peers with netif_notify_peers(). 1823 */ 1824 static void netvsc_link_change(struct work_struct *w) 1825 { 1826 struct net_device_context *ndev_ctx = 1827 container_of(w, struct net_device_context, dwork.work); 1828 struct hv_device *device_obj = ndev_ctx->device_ctx; 1829 struct net_device *net = hv_get_drvdata(device_obj); 1830 struct netvsc_device *net_device; 1831 struct rndis_device *rdev; 1832 struct netvsc_reconfig *event = NULL; 1833 bool notify = false, reschedule = false; 1834 unsigned long flags, next_reconfig, delay; 1835 1836 /* if changes are happening, comeback later */ 1837 if (!rtnl_trylock()) { 1838 schedule_delayed_work(&ndev_ctx->dwork, LINKCHANGE_INT); 1839 return; 1840 } 1841 1842 net_device = rtnl_dereference(ndev_ctx->nvdev); 1843 if (!net_device) 1844 goto out_unlock; 1845 1846 rdev = net_device->extension; 1847 1848 next_reconfig = ndev_ctx->last_reconfig + LINKCHANGE_INT; 1849 if (time_is_after_jiffies(next_reconfig)) { 1850 /* link_watch only sends one notification with current state 1851 * per second, avoid doing reconfig more frequently. Handle 1852 * wrap around. 1853 */ 1854 delay = next_reconfig - jiffies; 1855 delay = delay < LINKCHANGE_INT ? delay : LINKCHANGE_INT; 1856 schedule_delayed_work(&ndev_ctx->dwork, delay); 1857 goto out_unlock; 1858 } 1859 ndev_ctx->last_reconfig = jiffies; 1860 1861 spin_lock_irqsave(&ndev_ctx->lock, flags); 1862 if (!list_empty(&ndev_ctx->reconfig_events)) { 1863 event = list_first_entry(&ndev_ctx->reconfig_events, 1864 struct netvsc_reconfig, list); 1865 list_del(&event->list); 1866 reschedule = !list_empty(&ndev_ctx->reconfig_events); 1867 } 1868 spin_unlock_irqrestore(&ndev_ctx->lock, flags); 1869 1870 if (!event) 1871 goto out_unlock; 1872 1873 switch (event->event) { 1874 /* Only the following events are possible due to the check in 1875 * netvsc_linkstatus_callback() 1876 */ 1877 case RNDIS_STATUS_MEDIA_CONNECT: 1878 if (rdev->link_state) { 1879 rdev->link_state = false; 1880 netif_carrier_on(net); 1881 netif_tx_wake_all_queues(net); 1882 } else { 1883 notify = true; 1884 } 1885 kfree(event); 1886 break; 1887 case RNDIS_STATUS_MEDIA_DISCONNECT: 1888 if (!rdev->link_state) { 1889 rdev->link_state = true; 1890 netif_carrier_off(net); 1891 netif_tx_stop_all_queues(net); 1892 } 1893 kfree(event); 1894 break; 1895 case RNDIS_STATUS_NETWORK_CHANGE: 1896 /* Only makes sense if carrier is present */ 1897 if (!rdev->link_state) { 1898 rdev->link_state = true; 1899 netif_carrier_off(net); 1900 netif_tx_stop_all_queues(net); 1901 event->event = RNDIS_STATUS_MEDIA_CONNECT; 1902 spin_lock_irqsave(&ndev_ctx->lock, flags); 1903 list_add(&event->list, &ndev_ctx->reconfig_events); 1904 spin_unlock_irqrestore(&ndev_ctx->lock, flags); 1905 reschedule = true; 1906 } 1907 break; 1908 } 1909 1910 rtnl_unlock(); 1911 1912 if (notify) 1913 netdev_notify_peers(net); 1914 1915 /* link_watch only sends one notification with current state per 1916 * second, handle next reconfig event in 2 seconds. 1917 */ 1918 if (reschedule) 1919 schedule_delayed_work(&ndev_ctx->dwork, LINKCHANGE_INT); 1920 1921 return; 1922 1923 out_unlock: 1924 rtnl_unlock(); 1925 } 1926 1927 static struct net_device *get_netvsc_byref(struct net_device *vf_netdev) 1928 { 1929 struct net_device_context *net_device_ctx; 1930 struct net_device *dev; 1931 1932 dev = netdev_master_upper_dev_get(vf_netdev); 1933 if (!dev || dev->netdev_ops != &device_ops) 1934 return NULL; /* not a netvsc device */ 1935 1936 net_device_ctx = netdev_priv(dev); 1937 if (!rtnl_dereference(net_device_ctx->nvdev)) 1938 return NULL; /* device is removed */ 1939 1940 return dev; 1941 } 1942 1943 /* Called when VF is injecting data into network stack. 1944 * Change the associated network device from VF to netvsc. 1945 * note: already called with rcu_read_lock 1946 */ 1947 static rx_handler_result_t netvsc_vf_handle_frame(struct sk_buff **pskb) 1948 { 1949 struct sk_buff *skb = *pskb; 1950 struct net_device *ndev = rcu_dereference(skb->dev->rx_handler_data); 1951 struct net_device_context *ndev_ctx = netdev_priv(ndev); 1952 struct netvsc_vf_pcpu_stats *pcpu_stats 1953 = this_cpu_ptr(ndev_ctx->vf_stats); 1954 1955 skb->dev = ndev; 1956 1957 u64_stats_update_begin(&pcpu_stats->syncp); 1958 pcpu_stats->rx_packets++; 1959 pcpu_stats->rx_bytes += skb->len; 1960 u64_stats_update_end(&pcpu_stats->syncp); 1961 1962 return RX_HANDLER_ANOTHER; 1963 } 1964 1965 static int netvsc_vf_join(struct net_device *vf_netdev, 1966 struct net_device *ndev) 1967 { 1968 struct net_device_context *ndev_ctx = netdev_priv(ndev); 1969 int ret; 1970 1971 ret = netdev_rx_handler_register(vf_netdev, 1972 netvsc_vf_handle_frame, ndev); 1973 if (ret != 0) { 1974 netdev_err(vf_netdev, 1975 "can not register netvsc VF receive handler (err = %d)\n", 1976 ret); 1977 goto rx_handler_failed; 1978 } 1979 1980 ret = netdev_master_upper_dev_link(vf_netdev, ndev, 1981 NULL, NULL, NULL); 1982 if (ret != 0) { 1983 netdev_err(vf_netdev, 1984 "can not set master device %s (err = %d)\n", 1985 ndev->name, ret); 1986 goto upper_link_failed; 1987 } 1988 1989 /* set slave flag before open to prevent IPv6 addrconf */ 1990 vf_netdev->flags |= IFF_SLAVE; 1991 1992 schedule_delayed_work(&ndev_ctx->vf_takeover, VF_TAKEOVER_INT); 1993 1994 call_netdevice_notifiers(NETDEV_JOIN, vf_netdev); 1995 1996 netdev_info(vf_netdev, "joined to %s\n", ndev->name); 1997 return 0; 1998 1999 upper_link_failed: 2000 netdev_rx_handler_unregister(vf_netdev); 2001 rx_handler_failed: 2002 return ret; 2003 } 2004 2005 static void __netvsc_vf_setup(struct net_device *ndev, 2006 struct net_device *vf_netdev) 2007 { 2008 int ret; 2009 2010 /* Align MTU of VF with master */ 2011 ret = dev_set_mtu(vf_netdev, ndev->mtu); 2012 if (ret) 2013 netdev_warn(vf_netdev, 2014 "unable to change mtu to %u\n", ndev->mtu); 2015 2016 /* set multicast etc flags on VF */ 2017 dev_change_flags(vf_netdev, ndev->flags | IFF_SLAVE); 2018 2019 /* sync address list from ndev to VF */ 2020 netif_addr_lock_bh(ndev); 2021 dev_uc_sync(vf_netdev, ndev); 2022 dev_mc_sync(vf_netdev, ndev); 2023 netif_addr_unlock_bh(ndev); 2024 2025 if (netif_running(ndev)) { 2026 ret = dev_open(vf_netdev); 2027 if (ret) 2028 netdev_warn(vf_netdev, 2029 "unable to open: %d\n", ret); 2030 } 2031 } 2032 2033 /* Setup VF as slave of the synthetic device. 2034 * Runs in workqueue to avoid recursion in netlink callbacks. 2035 */ 2036 static void netvsc_vf_setup(struct work_struct *w) 2037 { 2038 struct net_device_context *ndev_ctx 2039 = container_of(w, struct net_device_context, vf_takeover.work); 2040 struct net_device *ndev = hv_get_drvdata(ndev_ctx->device_ctx); 2041 struct net_device *vf_netdev; 2042 2043 if (!rtnl_trylock()) { 2044 schedule_delayed_work(&ndev_ctx->vf_takeover, 0); 2045 return; 2046 } 2047 2048 vf_netdev = rtnl_dereference(ndev_ctx->vf_netdev); 2049 if (vf_netdev) 2050 __netvsc_vf_setup(ndev, vf_netdev); 2051 2052 rtnl_unlock(); 2053 } 2054 2055 /* Find netvsc by VMBus serial number. 2056 * The PCI hyperv controller records the serial number as the slot. 2057 */ 2058 static struct net_device *get_netvsc_byslot(const struct net_device *vf_netdev) 2059 { 2060 struct device *parent = vf_netdev->dev.parent; 2061 struct net_device_context *ndev_ctx; 2062 struct pci_dev *pdev; 2063 2064 if (!parent || !dev_is_pci(parent)) 2065 return NULL; /* not a PCI device */ 2066 2067 pdev = to_pci_dev(parent); 2068 if (!pdev->slot) { 2069 netdev_notice(vf_netdev, "no PCI slot information\n"); 2070 return NULL; 2071 } 2072 2073 list_for_each_entry(ndev_ctx, &netvsc_dev_list, list) { 2074 if (!ndev_ctx->vf_alloc) 2075 continue; 2076 2077 if (ndev_ctx->vf_serial == pdev->slot->number) 2078 return hv_get_drvdata(ndev_ctx->device_ctx); 2079 } 2080 2081 netdev_notice(vf_netdev, 2082 "no netdev found for slot %u\n", pdev->slot->number); 2083 return NULL; 2084 } 2085 2086 static int netvsc_register_vf(struct net_device *vf_netdev) 2087 { 2088 struct net_device_context *net_device_ctx; 2089 struct netvsc_device *netvsc_dev; 2090 struct net_device *ndev; 2091 int ret; 2092 2093 if (vf_netdev->addr_len != ETH_ALEN) 2094 return NOTIFY_DONE; 2095 2096 ndev = get_netvsc_byslot(vf_netdev); 2097 if (!ndev) 2098 return NOTIFY_DONE; 2099 2100 net_device_ctx = netdev_priv(ndev); 2101 netvsc_dev = rtnl_dereference(net_device_ctx->nvdev); 2102 if (!netvsc_dev || rtnl_dereference(net_device_ctx->vf_netdev)) 2103 return NOTIFY_DONE; 2104 2105 /* if syntihetic interface is a different namespace, 2106 * then move the VF to that namespace; join will be 2107 * done again in that context. 2108 */ 2109 if (!net_eq(dev_net(ndev), dev_net(vf_netdev))) { 2110 ret = dev_change_net_namespace(vf_netdev, 2111 dev_net(ndev), "eth%d"); 2112 if (ret) 2113 netdev_err(vf_netdev, 2114 "could not move to same namespace as %s: %d\n", 2115 ndev->name, ret); 2116 else 2117 netdev_info(vf_netdev, 2118 "VF moved to namespace with: %s\n", 2119 ndev->name); 2120 return NOTIFY_DONE; 2121 } 2122 2123 netdev_info(ndev, "VF registering: %s\n", vf_netdev->name); 2124 2125 if (netvsc_vf_join(vf_netdev, ndev) != 0) 2126 return NOTIFY_DONE; 2127 2128 dev_hold(vf_netdev); 2129 rcu_assign_pointer(net_device_ctx->vf_netdev, vf_netdev); 2130 return NOTIFY_OK; 2131 } 2132 2133 /* VF up/down change detected, schedule to change data path */ 2134 static int netvsc_vf_changed(struct net_device *vf_netdev) 2135 { 2136 struct net_device_context *net_device_ctx; 2137 struct netvsc_device *netvsc_dev; 2138 struct net_device *ndev; 2139 bool vf_is_up = netif_running(vf_netdev); 2140 2141 ndev = get_netvsc_byref(vf_netdev); 2142 if (!ndev) 2143 return NOTIFY_DONE; 2144 2145 net_device_ctx = netdev_priv(ndev); 2146 netvsc_dev = rtnl_dereference(net_device_ctx->nvdev); 2147 if (!netvsc_dev) 2148 return NOTIFY_DONE; 2149 2150 netvsc_switch_datapath(ndev, vf_is_up); 2151 netdev_info(ndev, "Data path switched %s VF: %s\n", 2152 vf_is_up ? "to" : "from", vf_netdev->name); 2153 2154 return NOTIFY_OK; 2155 } 2156 2157 static int netvsc_unregister_vf(struct net_device *vf_netdev) 2158 { 2159 struct net_device *ndev; 2160 struct net_device_context *net_device_ctx; 2161 2162 ndev = get_netvsc_byref(vf_netdev); 2163 if (!ndev) 2164 return NOTIFY_DONE; 2165 2166 net_device_ctx = netdev_priv(ndev); 2167 cancel_delayed_work_sync(&net_device_ctx->vf_takeover); 2168 2169 netdev_info(ndev, "VF unregistering: %s\n", vf_netdev->name); 2170 2171 netdev_rx_handler_unregister(vf_netdev); 2172 netdev_upper_dev_unlink(vf_netdev, ndev); 2173 RCU_INIT_POINTER(net_device_ctx->vf_netdev, NULL); 2174 dev_put(vf_netdev); 2175 2176 return NOTIFY_OK; 2177 } 2178 2179 static int netvsc_probe(struct hv_device *dev, 2180 const struct hv_vmbus_device_id *dev_id) 2181 { 2182 struct net_device *net = NULL; 2183 struct net_device_context *net_device_ctx; 2184 struct netvsc_device_info device_info; 2185 struct netvsc_device *nvdev; 2186 int ret = -ENOMEM; 2187 2188 net = alloc_etherdev_mq(sizeof(struct net_device_context), 2189 VRSS_CHANNEL_MAX); 2190 if (!net) 2191 goto no_net; 2192 2193 netif_carrier_off(net); 2194 2195 netvsc_init_settings(net); 2196 2197 net_device_ctx = netdev_priv(net); 2198 net_device_ctx->device_ctx = dev; 2199 net_device_ctx->msg_enable = netif_msg_init(debug, default_msg); 2200 if (netif_msg_probe(net_device_ctx)) 2201 netdev_dbg(net, "netvsc msg_enable: %d\n", 2202 net_device_ctx->msg_enable); 2203 2204 hv_set_drvdata(dev, net); 2205 2206 INIT_DELAYED_WORK(&net_device_ctx->dwork, netvsc_link_change); 2207 2208 spin_lock_init(&net_device_ctx->lock); 2209 INIT_LIST_HEAD(&net_device_ctx->reconfig_events); 2210 INIT_DELAYED_WORK(&net_device_ctx->vf_takeover, netvsc_vf_setup); 2211 2212 net_device_ctx->vf_stats 2213 = netdev_alloc_pcpu_stats(struct netvsc_vf_pcpu_stats); 2214 if (!net_device_ctx->vf_stats) 2215 goto no_stats; 2216 2217 net->netdev_ops = &device_ops; 2218 net->ethtool_ops = ðtool_ops; 2219 SET_NETDEV_DEV(net, &dev->device); 2220 2221 /* We always need headroom for rndis header */ 2222 net->needed_headroom = RNDIS_AND_PPI_SIZE; 2223 2224 /* Initialize the number of queues to be 1, we may change it if more 2225 * channels are offered later. 2226 */ 2227 netif_set_real_num_tx_queues(net, 1); 2228 netif_set_real_num_rx_queues(net, 1); 2229 2230 /* Notify the netvsc driver of the new device */ 2231 memset(&device_info, 0, sizeof(device_info)); 2232 device_info.num_chn = VRSS_CHANNEL_DEFAULT; 2233 device_info.send_sections = NETVSC_DEFAULT_TX; 2234 device_info.send_section_size = NETVSC_SEND_SECTION_SIZE; 2235 device_info.recv_sections = NETVSC_DEFAULT_RX; 2236 device_info.recv_section_size = NETVSC_RECV_SECTION_SIZE; 2237 2238 nvdev = rndis_filter_device_add(dev, &device_info); 2239 if (IS_ERR(nvdev)) { 2240 ret = PTR_ERR(nvdev); 2241 netdev_err(net, "unable to add netvsc device (ret %d)\n", ret); 2242 goto rndis_failed; 2243 } 2244 2245 memcpy(net->dev_addr, device_info.mac_adr, ETH_ALEN); 2246 2247 /* We must get rtnl lock before scheduling nvdev->subchan_work, 2248 * otherwise netvsc_subchan_work() can get rtnl lock first and wait 2249 * all subchannels to show up, but that may not happen because 2250 * netvsc_probe() can't get rtnl lock and as a result vmbus_onoffer() 2251 * -> ... -> device_add() -> ... -> __device_attach() can't get 2252 * the device lock, so all the subchannels can't be processed -- 2253 * finally netvsc_subchan_work() hangs for ever. 2254 */ 2255 rtnl_lock(); 2256 2257 if (nvdev->num_chn > 1) 2258 schedule_work(&nvdev->subchan_work); 2259 2260 /* hw_features computed in rndis_netdev_set_hwcaps() */ 2261 net->features = net->hw_features | 2262 NETIF_F_HIGHDMA | NETIF_F_SG | 2263 NETIF_F_HW_VLAN_CTAG_TX | NETIF_F_HW_VLAN_CTAG_RX; 2264 net->vlan_features = net->features; 2265 2266 netdev_lockdep_set_classes(net); 2267 2268 /* MTU range: 68 - 1500 or 65521 */ 2269 net->min_mtu = NETVSC_MTU_MIN; 2270 if (nvdev->nvsp_version >= NVSP_PROTOCOL_VERSION_2) 2271 net->max_mtu = NETVSC_MTU - ETH_HLEN; 2272 else 2273 net->max_mtu = ETH_DATA_LEN; 2274 2275 ret = register_netdevice(net); 2276 if (ret != 0) { 2277 pr_err("Unable to register netdev.\n"); 2278 goto register_failed; 2279 } 2280 2281 list_add(&net_device_ctx->list, &netvsc_dev_list); 2282 rtnl_unlock(); 2283 return 0; 2284 2285 register_failed: 2286 rtnl_unlock(); 2287 rndis_filter_device_remove(dev, nvdev); 2288 rndis_failed: 2289 free_percpu(net_device_ctx->vf_stats); 2290 no_stats: 2291 hv_set_drvdata(dev, NULL); 2292 free_netdev(net); 2293 no_net: 2294 return ret; 2295 } 2296 2297 static int netvsc_remove(struct hv_device *dev) 2298 { 2299 struct net_device_context *ndev_ctx; 2300 struct net_device *vf_netdev, *net; 2301 struct netvsc_device *nvdev; 2302 2303 net = hv_get_drvdata(dev); 2304 if (net == NULL) { 2305 dev_err(&dev->device, "No net device to remove\n"); 2306 return 0; 2307 } 2308 2309 ndev_ctx = netdev_priv(net); 2310 2311 cancel_delayed_work_sync(&ndev_ctx->dwork); 2312 2313 rtnl_lock(); 2314 nvdev = rtnl_dereference(ndev_ctx->nvdev); 2315 if (nvdev) 2316 cancel_work_sync(&nvdev->subchan_work); 2317 2318 /* 2319 * Call to the vsc driver to let it know that the device is being 2320 * removed. Also blocks mtu and channel changes. 2321 */ 2322 vf_netdev = rtnl_dereference(ndev_ctx->vf_netdev); 2323 if (vf_netdev) 2324 netvsc_unregister_vf(vf_netdev); 2325 2326 if (nvdev) 2327 rndis_filter_device_remove(dev, nvdev); 2328 2329 unregister_netdevice(net); 2330 list_del(&ndev_ctx->list); 2331 2332 rtnl_unlock(); 2333 2334 hv_set_drvdata(dev, NULL); 2335 2336 free_percpu(ndev_ctx->vf_stats); 2337 free_netdev(net); 2338 return 0; 2339 } 2340 2341 static const struct hv_vmbus_device_id id_table[] = { 2342 /* Network guid */ 2343 { HV_NIC_GUID, }, 2344 { }, 2345 }; 2346 2347 MODULE_DEVICE_TABLE(vmbus, id_table); 2348 2349 /* The one and only one */ 2350 static struct hv_driver netvsc_drv = { 2351 .name = KBUILD_MODNAME, 2352 .id_table = id_table, 2353 .probe = netvsc_probe, 2354 .remove = netvsc_remove, 2355 .driver = { 2356 .probe_type = PROBE_PREFER_ASYNCHRONOUS, 2357 }, 2358 }; 2359 2360 /* 2361 * On Hyper-V, every VF interface is matched with a corresponding 2362 * synthetic interface. The synthetic interface is presented first 2363 * to the guest. When the corresponding VF instance is registered, 2364 * we will take care of switching the data path. 2365 */ 2366 static int netvsc_netdev_event(struct notifier_block *this, 2367 unsigned long event, void *ptr) 2368 { 2369 struct net_device *event_dev = netdev_notifier_info_to_dev(ptr); 2370 2371 /* Skip our own events */ 2372 if (event_dev->netdev_ops == &device_ops) 2373 return NOTIFY_DONE; 2374 2375 /* Avoid non-Ethernet type devices */ 2376 if (event_dev->type != ARPHRD_ETHER) 2377 return NOTIFY_DONE; 2378 2379 /* Avoid Vlan dev with same MAC registering as VF */ 2380 if (is_vlan_dev(event_dev)) 2381 return NOTIFY_DONE; 2382 2383 /* Avoid Bonding master dev with same MAC registering as VF */ 2384 if ((event_dev->priv_flags & IFF_BONDING) && 2385 (event_dev->flags & IFF_MASTER)) 2386 return NOTIFY_DONE; 2387 2388 switch (event) { 2389 case NETDEV_REGISTER: 2390 return netvsc_register_vf(event_dev); 2391 case NETDEV_UNREGISTER: 2392 return netvsc_unregister_vf(event_dev); 2393 case NETDEV_UP: 2394 case NETDEV_DOWN: 2395 return netvsc_vf_changed(event_dev); 2396 default: 2397 return NOTIFY_DONE; 2398 } 2399 } 2400 2401 static struct notifier_block netvsc_netdev_notifier = { 2402 .notifier_call = netvsc_netdev_event, 2403 }; 2404 2405 static void __exit netvsc_drv_exit(void) 2406 { 2407 unregister_netdevice_notifier(&netvsc_netdev_notifier); 2408 vmbus_driver_unregister(&netvsc_drv); 2409 } 2410 2411 static int __init netvsc_drv_init(void) 2412 { 2413 int ret; 2414 2415 if (ring_size < RING_SIZE_MIN) { 2416 ring_size = RING_SIZE_MIN; 2417 pr_info("Increased ring_size to %u (min allowed)\n", 2418 ring_size); 2419 } 2420 netvsc_ring_bytes = ring_size * PAGE_SIZE; 2421 2422 ret = vmbus_driver_register(&netvsc_drv); 2423 if (ret) 2424 return ret; 2425 2426 register_netdevice_notifier(&netvsc_netdev_notifier); 2427 return 0; 2428 } 2429 2430 MODULE_LICENSE("GPL"); 2431 MODULE_DESCRIPTION("Microsoft Hyper-V network driver"); 2432 2433 module_init(netvsc_drv_init); 2434 module_exit(netvsc_drv_exit); 2435