148925e37SRusty Russell /* A network driver using virtio. 2296f96fcSRusty Russell * 3296f96fcSRusty Russell * Copyright 2007 Rusty Russell <rusty@rustcorp.com.au> IBM Corporation 4296f96fcSRusty Russell * 5296f96fcSRusty Russell * This program is free software; you can redistribute it and/or modify 6296f96fcSRusty Russell * it under the terms of the GNU General Public License as published by 7296f96fcSRusty Russell * the Free Software Foundation; either version 2 of the License, or 8296f96fcSRusty Russell * (at your option) any later version. 9296f96fcSRusty Russell * 10296f96fcSRusty Russell * This program is distributed in the hope that it will be useful, 11296f96fcSRusty Russell * but WITHOUT ANY WARRANTY; without even the implied warranty of 12296f96fcSRusty Russell * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13296f96fcSRusty Russell * GNU General Public License for more details. 14296f96fcSRusty Russell * 15296f96fcSRusty Russell * You should have received a copy of the GNU General Public License 16296f96fcSRusty Russell * along with this program; if not, write to the Free Software 17296f96fcSRusty Russell * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 18296f96fcSRusty Russell */ 19296f96fcSRusty Russell //#define DEBUG 20296f96fcSRusty Russell #include <linux/netdevice.h> 21296f96fcSRusty Russell #include <linux/etherdevice.h> 22a9ea3fc6SHerbert Xu #include <linux/ethtool.h> 23296f96fcSRusty Russell #include <linux/module.h> 24296f96fcSRusty Russell #include <linux/virtio.h> 25296f96fcSRusty Russell #include <linux/virtio_net.h> 26296f96fcSRusty Russell #include <linux/scatterlist.h> 27e918085aSAlex Williamson #include <linux/if_vlan.h> 285a0e3ad6STejun Heo #include <linux/slab.h> 29*8de4b2f3SWanlong Gao #include <linux/cpu.h> 30296f96fcSRusty Russell 316c0cd7c0SDor Laor static int napi_weight = 128; 326c0cd7c0SDor Laor module_param(napi_weight, int, 0444); 336c0cd7c0SDor Laor 34eb939922SRusty Russell static bool csum = true, gso = true; 3534a48579SRusty Russell module_param(csum, bool, 0444); 3634a48579SRusty Russell module_param(gso, bool, 0444); 3734a48579SRusty Russell 38296f96fcSRusty Russell /* FIXME: MTU in config. */ 39e918085aSAlex Williamson #define MAX_PACKET_LEN (ETH_HLEN + VLAN_HLEN + ETH_DATA_LEN) 403f2c31d9SMark McLoughlin #define GOOD_COPY_LEN 128 41296f96fcSRusty Russell 42f565a7c2SAlex Williamson #define VIRTNET_SEND_COMMAND_SG_MAX 2 4366846048SRick Jones #define VIRTNET_DRIVER_VERSION "1.0.0" 442a41f71dSAlex Williamson 453fa2a1dfSstephen hemminger struct virtnet_stats { 4683a27052SEric Dumazet struct u64_stats_sync tx_syncp; 4783a27052SEric Dumazet struct u64_stats_sync rx_syncp; 483fa2a1dfSstephen hemminger u64 tx_bytes; 493fa2a1dfSstephen hemminger u64 tx_packets; 503fa2a1dfSstephen hemminger 513fa2a1dfSstephen hemminger u64 rx_bytes; 523fa2a1dfSstephen hemminger u64 rx_packets; 533fa2a1dfSstephen hemminger }; 543fa2a1dfSstephen hemminger 55e9d7417bSJason Wang /* Internal representation of a send virtqueue */ 56e9d7417bSJason Wang struct send_queue { 57e9d7417bSJason Wang /* Virtqueue associated with this send _queue */ 58e9d7417bSJason Wang struct virtqueue *vq; 59e9d7417bSJason Wang 60e9d7417bSJason Wang /* TX: fragments + linear part + virtio header */ 61e9d7417bSJason Wang struct scatterlist sg[MAX_SKB_FRAGS + 2]; 62986a4f4dSJason Wang 63986a4f4dSJason Wang /* Name of the send queue: output.$index */ 64986a4f4dSJason Wang char name[40]; 65e9d7417bSJason Wang }; 66e9d7417bSJason Wang 67e9d7417bSJason Wang /* Internal representation of a receive virtqueue */ 68e9d7417bSJason Wang struct receive_queue { 69e9d7417bSJason Wang /* Virtqueue associated with this receive_queue */ 70e9d7417bSJason Wang struct virtqueue *vq; 71e9d7417bSJason Wang 72296f96fcSRusty Russell struct napi_struct napi; 73296f96fcSRusty Russell 74296f96fcSRusty Russell /* Number of input buffers, and max we've ever had. */ 75296f96fcSRusty Russell unsigned int num, max; 76296f96fcSRusty Russell 77e9d7417bSJason Wang /* Chain pages by the private ptr. */ 78e9d7417bSJason Wang struct page *pages; 79e9d7417bSJason Wang 80e9d7417bSJason Wang /* RX: fragments + linear part + virtio header */ 81e9d7417bSJason Wang struct scatterlist sg[MAX_SKB_FRAGS + 2]; 82986a4f4dSJason Wang 83986a4f4dSJason Wang /* Name of this receive queue: input.$index */ 84986a4f4dSJason Wang char name[40]; 85e9d7417bSJason Wang }; 86e9d7417bSJason Wang 87e9d7417bSJason Wang struct virtnet_info { 88e9d7417bSJason Wang struct virtio_device *vdev; 89e9d7417bSJason Wang struct virtqueue *cvq; 90e9d7417bSJason Wang struct net_device *dev; 91986a4f4dSJason Wang struct send_queue *sq; 92986a4f4dSJason Wang struct receive_queue *rq; 93e9d7417bSJason Wang unsigned int status; 94e9d7417bSJason Wang 95986a4f4dSJason Wang /* Max # of queue pairs supported by the device */ 96986a4f4dSJason Wang u16 max_queue_pairs; 97986a4f4dSJason Wang 98986a4f4dSJason Wang /* # of queue pairs currently used by the driver */ 99986a4f4dSJason Wang u16 curr_queue_pairs; 100986a4f4dSJason Wang 10197402b96SHerbert Xu /* I like... big packets and I cannot lie! */ 10297402b96SHerbert Xu bool big_packets; 10397402b96SHerbert Xu 1043f2c31d9SMark McLoughlin /* Host will merge rx buffers for big packets (shake it! shake it!) */ 1053f2c31d9SMark McLoughlin bool mergeable_rx_bufs; 1063f2c31d9SMark McLoughlin 107986a4f4dSJason Wang /* Has control virtqueue */ 108986a4f4dSJason Wang bool has_cvq; 109986a4f4dSJason Wang 110586d17c5SJason Wang /* enable config space updates */ 111586d17c5SJason Wang bool config_enable; 112586d17c5SJason Wang 1133fa2a1dfSstephen hemminger /* Active statistics */ 1143fa2a1dfSstephen hemminger struct virtnet_stats __percpu *stats; 1153fa2a1dfSstephen hemminger 1163161e453SRusty Russell /* Work struct for refilling if we run low on memory. */ 1173161e453SRusty Russell struct delayed_work refill; 1183161e453SRusty Russell 119586d17c5SJason Wang /* Work struct for config space updates */ 120586d17c5SJason Wang struct work_struct config_work; 121586d17c5SJason Wang 122586d17c5SJason Wang /* Lock for config space updates */ 123586d17c5SJason Wang struct mutex config_lock; 124986a4f4dSJason Wang 125986a4f4dSJason Wang /* Does the affinity hint is set for virtqueues? */ 126986a4f4dSJason Wang bool affinity_hint_set; 12747be2479SWanlong Gao 12847be2479SWanlong Gao /* Per-cpu variable to show the mapping from CPU to virtqueue */ 12947be2479SWanlong Gao int __percpu *vq_index; 130*8de4b2f3SWanlong Gao 131*8de4b2f3SWanlong Gao /* CPU hot plug notifier */ 132*8de4b2f3SWanlong Gao struct notifier_block nb; 133296f96fcSRusty Russell }; 134296f96fcSRusty Russell 135b3f24698SRusty Russell struct skb_vnet_hdr { 136b3f24698SRusty Russell union { 137b3f24698SRusty Russell struct virtio_net_hdr hdr; 138b3f24698SRusty Russell struct virtio_net_hdr_mrg_rxbuf mhdr; 139b3f24698SRusty Russell }; 140b3f24698SRusty Russell }; 141b3f24698SRusty Russell 1429ab86bbcSShirley Ma struct padded_vnet_hdr { 1439ab86bbcSShirley Ma struct virtio_net_hdr hdr; 1449ab86bbcSShirley Ma /* 1459ab86bbcSShirley Ma * virtio_net_hdr should be in a separated sg buffer because of a 1469ab86bbcSShirley Ma * QEMU bug, and data sg buffer shares same page with this header sg. 1479ab86bbcSShirley Ma * This padding makes next sg 16 byte aligned after virtio_net_hdr. 1489ab86bbcSShirley Ma */ 1499ab86bbcSShirley Ma char padding[6]; 1509ab86bbcSShirley Ma }; 1519ab86bbcSShirley Ma 152986a4f4dSJason Wang /* Converting between virtqueue no. and kernel tx/rx queue no. 153986a4f4dSJason Wang * 0:rx0 1:tx0 2:rx1 3:tx1 ... 2N:rxN 2N+1:txN 2N+2:cvq 154986a4f4dSJason Wang */ 155986a4f4dSJason Wang static int vq2txq(struct virtqueue *vq) 156986a4f4dSJason Wang { 157986a4f4dSJason Wang return (virtqueue_get_queue_index(vq) - 1) / 2; 158986a4f4dSJason Wang } 159986a4f4dSJason Wang 160986a4f4dSJason Wang static int txq2vq(int txq) 161986a4f4dSJason Wang { 162986a4f4dSJason Wang return txq * 2 + 1; 163986a4f4dSJason Wang } 164986a4f4dSJason Wang 165986a4f4dSJason Wang static int vq2rxq(struct virtqueue *vq) 166986a4f4dSJason Wang { 167986a4f4dSJason Wang return virtqueue_get_queue_index(vq) / 2; 168986a4f4dSJason Wang } 169986a4f4dSJason Wang 170986a4f4dSJason Wang static int rxq2vq(int rxq) 171986a4f4dSJason Wang { 172986a4f4dSJason Wang return rxq * 2; 173986a4f4dSJason Wang } 174986a4f4dSJason Wang 175b3f24698SRusty Russell static inline struct skb_vnet_hdr *skb_vnet_hdr(struct sk_buff *skb) 176296f96fcSRusty Russell { 177b3f24698SRusty Russell return (struct skb_vnet_hdr *)skb->cb; 178296f96fcSRusty Russell } 179296f96fcSRusty Russell 1809ab86bbcSShirley Ma /* 1819ab86bbcSShirley Ma * private is used to chain pages for big packets, put the whole 1829ab86bbcSShirley Ma * most recent used list in the beginning for reuse 1839ab86bbcSShirley Ma */ 184e9d7417bSJason Wang static void give_pages(struct receive_queue *rq, struct page *page) 185fb6813f4SRusty Russell { 1869ab86bbcSShirley Ma struct page *end; 1879ab86bbcSShirley Ma 188e9d7417bSJason Wang /* Find end of list, sew whole thing into vi->rq.pages. */ 1899ab86bbcSShirley Ma for (end = page; end->private; end = (struct page *)end->private); 190e9d7417bSJason Wang end->private = (unsigned long)rq->pages; 191e9d7417bSJason Wang rq->pages = page; 192fb6813f4SRusty Russell } 193fb6813f4SRusty Russell 194e9d7417bSJason Wang static struct page *get_a_page(struct receive_queue *rq, gfp_t gfp_mask) 195fb6813f4SRusty Russell { 196e9d7417bSJason Wang struct page *p = rq->pages; 197fb6813f4SRusty Russell 1989ab86bbcSShirley Ma if (p) { 199e9d7417bSJason Wang rq->pages = (struct page *)p->private; 2009ab86bbcSShirley Ma /* clear private here, it is used to chain pages */ 2019ab86bbcSShirley Ma p->private = 0; 2029ab86bbcSShirley Ma } else 203fb6813f4SRusty Russell p = alloc_page(gfp_mask); 204fb6813f4SRusty Russell return p; 205fb6813f4SRusty Russell } 206fb6813f4SRusty Russell 207e9d7417bSJason Wang static void skb_xmit_done(struct virtqueue *vq) 208296f96fcSRusty Russell { 209e9d7417bSJason Wang struct virtnet_info *vi = vq->vdev->priv; 210296f96fcSRusty Russell 2112cb9c6baSRusty Russell /* Suppress further interrupts. */ 212e9d7417bSJason Wang virtqueue_disable_cb(vq); 21311a3a154SRusty Russell 214363f1514SRusty Russell /* We were probably waiting for more output buffers. */ 215986a4f4dSJason Wang netif_wake_subqueue(vi->dev, vq2txq(vq)); 216296f96fcSRusty Russell } 217296f96fcSRusty Russell 2189ab86bbcSShirley Ma static void set_skb_frag(struct sk_buff *skb, struct page *page, 2199ab86bbcSShirley Ma unsigned int offset, unsigned int *len) 220296f96fcSRusty Russell { 2218a59a7b9SKrishna Kumar int size = min((unsigned)PAGE_SIZE - offset, *len); 2229ab86bbcSShirley Ma int i = skb_shinfo(skb)->nr_frags; 223296f96fcSRusty Russell 2248a59a7b9SKrishna Kumar __skb_fill_page_desc(skb, i, page, offset, size); 2259ab86bbcSShirley Ma 2268a59a7b9SKrishna Kumar skb->data_len += size; 2278a59a7b9SKrishna Kumar skb->len += size; 2284b727361SEric Dumazet skb->truesize += PAGE_SIZE; 2299ab86bbcSShirley Ma skb_shinfo(skb)->nr_frags++; 2308a59a7b9SKrishna Kumar *len -= size; 231296f96fcSRusty Russell } 2323f2c31d9SMark McLoughlin 2333464645aSMike Waychison /* Called from bottom half context */ 234e9d7417bSJason Wang static struct sk_buff *page_to_skb(struct receive_queue *rq, 2359ab86bbcSShirley Ma struct page *page, unsigned int len) 2369ab86bbcSShirley Ma { 237e9d7417bSJason Wang struct virtnet_info *vi = rq->vq->vdev->priv; 2389ab86bbcSShirley Ma struct sk_buff *skb; 2399ab86bbcSShirley Ma struct skb_vnet_hdr *hdr; 2409ab86bbcSShirley Ma unsigned int copy, hdr_len, offset; 2419ab86bbcSShirley Ma char *p; 2429ab86bbcSShirley Ma 2439ab86bbcSShirley Ma p = page_address(page); 2449ab86bbcSShirley Ma 2459ab86bbcSShirley Ma /* copy small packet so we can reuse these pages for small data */ 2469ab86bbcSShirley Ma skb = netdev_alloc_skb_ip_align(vi->dev, GOOD_COPY_LEN); 2479ab86bbcSShirley Ma if (unlikely(!skb)) 2489ab86bbcSShirley Ma return NULL; 2499ab86bbcSShirley Ma 2509ab86bbcSShirley Ma hdr = skb_vnet_hdr(skb); 2519ab86bbcSShirley Ma 2523f2c31d9SMark McLoughlin if (vi->mergeable_rx_bufs) { 2539ab86bbcSShirley Ma hdr_len = sizeof hdr->mhdr; 2549ab86bbcSShirley Ma offset = hdr_len; 2559ab86bbcSShirley Ma } else { 2569ab86bbcSShirley Ma hdr_len = sizeof hdr->hdr; 2579ab86bbcSShirley Ma offset = sizeof(struct padded_vnet_hdr); 2589ab86bbcSShirley Ma } 2593f2c31d9SMark McLoughlin 2609ab86bbcSShirley Ma memcpy(hdr, p, hdr_len); 2613f2c31d9SMark McLoughlin 2629ab86bbcSShirley Ma len -= hdr_len; 2639ab86bbcSShirley Ma p += offset; 2643f2c31d9SMark McLoughlin 2653f2c31d9SMark McLoughlin copy = len; 2663f2c31d9SMark McLoughlin if (copy > skb_tailroom(skb)) 2673f2c31d9SMark McLoughlin copy = skb_tailroom(skb); 2683f2c31d9SMark McLoughlin memcpy(skb_put(skb, copy), p, copy); 2693f2c31d9SMark McLoughlin 2703f2c31d9SMark McLoughlin len -= copy; 2719ab86bbcSShirley Ma offset += copy; 2723f2c31d9SMark McLoughlin 273e878d78bSSasha Levin /* 274e878d78bSSasha Levin * Verify that we can indeed put this data into a skb. 275e878d78bSSasha Levin * This is here to handle cases when the device erroneously 276e878d78bSSasha Levin * tries to receive more than is possible. This is usually 277e878d78bSSasha Levin * the case of a broken device. 278e878d78bSSasha Levin */ 279e878d78bSSasha Levin if (unlikely(len > MAX_SKB_FRAGS * PAGE_SIZE)) { 280be443899SAmerigo Wang net_dbg_ratelimited("%s: too much data\n", skb->dev->name); 281e878d78bSSasha Levin dev_kfree_skb(skb); 282e878d78bSSasha Levin return NULL; 283e878d78bSSasha Levin } 284e878d78bSSasha Levin 2859ab86bbcSShirley Ma while (len) { 2869ab86bbcSShirley Ma set_skb_frag(skb, page, offset, &len); 2879ab86bbcSShirley Ma page = (struct page *)page->private; 2889ab86bbcSShirley Ma offset = 0; 2893f2c31d9SMark McLoughlin } 2903f2c31d9SMark McLoughlin 2919ab86bbcSShirley Ma if (page) 292e9d7417bSJason Wang give_pages(rq, page); 2933f2c31d9SMark McLoughlin 2949ab86bbcSShirley Ma return skb; 2959ab86bbcSShirley Ma } 2969ab86bbcSShirley Ma 297e9d7417bSJason Wang static int receive_mergeable(struct receive_queue *rq, struct sk_buff *skb) 2989ab86bbcSShirley Ma { 2999ab86bbcSShirley Ma struct skb_vnet_hdr *hdr = skb_vnet_hdr(skb); 3009ab86bbcSShirley Ma struct page *page; 3019ab86bbcSShirley Ma int num_buf, i, len; 3029ab86bbcSShirley Ma 3039ab86bbcSShirley Ma num_buf = hdr->mhdr.num_buffers; 3049ab86bbcSShirley Ma while (--num_buf) { 3053f2c31d9SMark McLoughlin i = skb_shinfo(skb)->nr_frags; 3063f2c31d9SMark McLoughlin if (i >= MAX_SKB_FRAGS) { 3079ab86bbcSShirley Ma pr_debug("%s: packet too long\n", skb->dev->name); 3089ab86bbcSShirley Ma skb->dev->stats.rx_length_errors++; 3099ab86bbcSShirley Ma return -EINVAL; 3103f2c31d9SMark McLoughlin } 311e9d7417bSJason Wang page = virtqueue_get_buf(rq->vq, &len); 3129ab86bbcSShirley Ma if (!page) { 3133f2c31d9SMark McLoughlin pr_debug("%s: rx error: %d buffers missing\n", 3149ab86bbcSShirley Ma skb->dev->name, hdr->mhdr.num_buffers); 3159ab86bbcSShirley Ma skb->dev->stats.rx_length_errors++; 3169ab86bbcSShirley Ma return -EINVAL; 3173f2c31d9SMark McLoughlin } 3183fa2a1dfSstephen hemminger 3193f2c31d9SMark McLoughlin if (len > PAGE_SIZE) 3203f2c31d9SMark McLoughlin len = PAGE_SIZE; 3213f2c31d9SMark McLoughlin 3229ab86bbcSShirley Ma set_skb_frag(skb, page, 0, &len); 3239ab86bbcSShirley Ma 324e9d7417bSJason Wang --rq->num; 3253f2c31d9SMark McLoughlin } 3269ab86bbcSShirley Ma return 0; 3279ab86bbcSShirley Ma } 3289ab86bbcSShirley Ma 329e9d7417bSJason Wang static void receive_buf(struct receive_queue *rq, void *buf, unsigned int len) 3309ab86bbcSShirley Ma { 331e9d7417bSJason Wang struct virtnet_info *vi = rq->vq->vdev->priv; 332e9d7417bSJason Wang struct net_device *dev = vi->dev; 33358472a76SEric Dumazet struct virtnet_stats *stats = this_cpu_ptr(vi->stats); 3349ab86bbcSShirley Ma struct sk_buff *skb; 3359ab86bbcSShirley Ma struct page *page; 3369ab86bbcSShirley Ma struct skb_vnet_hdr *hdr; 3379ab86bbcSShirley Ma 3389ab86bbcSShirley Ma if (unlikely(len < sizeof(struct virtio_net_hdr) + ETH_HLEN)) { 3399ab86bbcSShirley Ma pr_debug("%s: short packet %i\n", dev->name, len); 3409ab86bbcSShirley Ma dev->stats.rx_length_errors++; 3419ab86bbcSShirley Ma if (vi->mergeable_rx_bufs || vi->big_packets) 342e9d7417bSJason Wang give_pages(rq, buf); 3439ab86bbcSShirley Ma else 3449ab86bbcSShirley Ma dev_kfree_skb(buf); 3459ab86bbcSShirley Ma return; 3469ab86bbcSShirley Ma } 3479ab86bbcSShirley Ma 3489ab86bbcSShirley Ma if (!vi->mergeable_rx_bufs && !vi->big_packets) { 3499ab86bbcSShirley Ma skb = buf; 3509ab86bbcSShirley Ma len -= sizeof(struct virtio_net_hdr); 3519ab86bbcSShirley Ma skb_trim(skb, len); 3523f2c31d9SMark McLoughlin } else { 3539ab86bbcSShirley Ma page = buf; 354e9d7417bSJason Wang skb = page_to_skb(rq, page, len); 3559ab86bbcSShirley Ma if (unlikely(!skb)) { 35697402b96SHerbert Xu dev->stats.rx_dropped++; 357e9d7417bSJason Wang give_pages(rq, page); 3589ab86bbcSShirley Ma return; 3599ab86bbcSShirley Ma } 3609ab86bbcSShirley Ma if (vi->mergeable_rx_bufs) 361e9d7417bSJason Wang if (receive_mergeable(rq, skb)) { 3629ab86bbcSShirley Ma dev_kfree_skb(skb); 3639ab86bbcSShirley Ma return; 36497402b96SHerbert Xu } 3653f2c31d9SMark McLoughlin } 3663f2c31d9SMark McLoughlin 3679ab86bbcSShirley Ma hdr = skb_vnet_hdr(skb); 3683fa2a1dfSstephen hemminger 36983a27052SEric Dumazet u64_stats_update_begin(&stats->rx_syncp); 3703fa2a1dfSstephen hemminger stats->rx_bytes += skb->len; 3713fa2a1dfSstephen hemminger stats->rx_packets++; 37283a27052SEric Dumazet u64_stats_update_end(&stats->rx_syncp); 373296f96fcSRusty Russell 374b3f24698SRusty Russell if (hdr->hdr.flags & VIRTIO_NET_HDR_F_NEEDS_CSUM) { 375296f96fcSRusty Russell pr_debug("Needs csum!\n"); 376b3f24698SRusty Russell if (!skb_partial_csum_set(skb, 377b3f24698SRusty Russell hdr->hdr.csum_start, 378b3f24698SRusty Russell hdr->hdr.csum_offset)) 379296f96fcSRusty Russell goto frame_err; 38010a8d94aSJason Wang } else if (hdr->hdr.flags & VIRTIO_NET_HDR_F_DATA_VALID) { 38110a8d94aSJason Wang skb->ip_summed = CHECKSUM_UNNECESSARY; 382296f96fcSRusty Russell } 383296f96fcSRusty Russell 38423cde76dSMark McLoughlin skb->protocol = eth_type_trans(skb, dev); 38523cde76dSMark McLoughlin pr_debug("Receiving skb proto 0x%04x len %i type %i\n", 38623cde76dSMark McLoughlin ntohs(skb->protocol), skb->len, skb->pkt_type); 38723cde76dSMark McLoughlin 388b3f24698SRusty Russell if (hdr->hdr.gso_type != VIRTIO_NET_HDR_GSO_NONE) { 389296f96fcSRusty Russell pr_debug("GSO!\n"); 390b3f24698SRusty Russell switch (hdr->hdr.gso_type & ~VIRTIO_NET_HDR_GSO_ECN) { 391296f96fcSRusty Russell case VIRTIO_NET_HDR_GSO_TCPV4: 392296f96fcSRusty Russell skb_shinfo(skb)->gso_type = SKB_GSO_TCPV4; 393296f96fcSRusty Russell break; 394296f96fcSRusty Russell case VIRTIO_NET_HDR_GSO_UDP: 395296f96fcSRusty Russell skb_shinfo(skb)->gso_type = SKB_GSO_UDP; 396296f96fcSRusty Russell break; 397296f96fcSRusty Russell case VIRTIO_NET_HDR_GSO_TCPV6: 398296f96fcSRusty Russell skb_shinfo(skb)->gso_type = SKB_GSO_TCPV6; 399296f96fcSRusty Russell break; 400296f96fcSRusty Russell default: 401be443899SAmerigo Wang net_warn_ratelimited("%s: bad gso type %u.\n", 402b3f24698SRusty Russell dev->name, hdr->hdr.gso_type); 403296f96fcSRusty Russell goto frame_err; 404296f96fcSRusty Russell } 405296f96fcSRusty Russell 406b3f24698SRusty Russell if (hdr->hdr.gso_type & VIRTIO_NET_HDR_GSO_ECN) 40734a48579SRusty Russell skb_shinfo(skb)->gso_type |= SKB_GSO_TCP_ECN; 40834a48579SRusty Russell 409b3f24698SRusty Russell skb_shinfo(skb)->gso_size = hdr->hdr.gso_size; 410296f96fcSRusty Russell if (skb_shinfo(skb)->gso_size == 0) { 411be443899SAmerigo Wang net_warn_ratelimited("%s: zero gso size.\n", dev->name); 412296f96fcSRusty Russell goto frame_err; 413296f96fcSRusty Russell } 414296f96fcSRusty Russell 415296f96fcSRusty Russell /* Header must be checked, and gso_segs computed. */ 416296f96fcSRusty Russell skb_shinfo(skb)->gso_type |= SKB_GSO_DODGY; 417296f96fcSRusty Russell skb_shinfo(skb)->gso_segs = 0; 418296f96fcSRusty Russell } 419296f96fcSRusty Russell 420296f96fcSRusty Russell netif_receive_skb(skb); 421296f96fcSRusty Russell return; 422296f96fcSRusty Russell 423296f96fcSRusty Russell frame_err: 424296f96fcSRusty Russell dev->stats.rx_frame_errors++; 425296f96fcSRusty Russell dev_kfree_skb(skb); 426296f96fcSRusty Russell } 427296f96fcSRusty Russell 428e9d7417bSJason Wang static int add_recvbuf_small(struct receive_queue *rq, gfp_t gfp) 429296f96fcSRusty Russell { 430e9d7417bSJason Wang struct virtnet_info *vi = rq->vq->vdev->priv; 431296f96fcSRusty Russell struct sk_buff *skb; 432b3f24698SRusty Russell struct skb_vnet_hdr *hdr; 4339ab86bbcSShirley Ma int err; 4343f2c31d9SMark McLoughlin 4353464645aSMike Waychison skb = __netdev_alloc_skb_ip_align(vi->dev, MAX_PACKET_LEN, gfp); 4369ab86bbcSShirley Ma if (unlikely(!skb)) 4379ab86bbcSShirley Ma return -ENOMEM; 438296f96fcSRusty Russell 439296f96fcSRusty Russell skb_put(skb, MAX_PACKET_LEN); 4403f2c31d9SMark McLoughlin 4413f2c31d9SMark McLoughlin hdr = skb_vnet_hdr(skb); 442e9d7417bSJason Wang sg_set_buf(rq->sg, &hdr->hdr, sizeof hdr->hdr); 44397402b96SHerbert Xu 444e9d7417bSJason Wang skb_to_sgvec(skb, rq->sg + 1, 0, skb->len); 44597402b96SHerbert Xu 446e9d7417bSJason Wang err = virtqueue_add_buf(rq->vq, rq->sg, 0, 2, skb, gfp); 4479ab86bbcSShirley Ma if (err < 0) 4489ab86bbcSShirley Ma dev_kfree_skb(skb); 44997402b96SHerbert Xu 4509ab86bbcSShirley Ma return err; 45197402b96SHerbert Xu } 45297402b96SHerbert Xu 453e9d7417bSJason Wang static int add_recvbuf_big(struct receive_queue *rq, gfp_t gfp) 4549ab86bbcSShirley Ma { 4559ab86bbcSShirley Ma struct page *first, *list = NULL; 4569ab86bbcSShirley Ma char *p; 4579ab86bbcSShirley Ma int i, err, offset; 458296f96fcSRusty Russell 459e9d7417bSJason Wang /* page in rq->sg[MAX_SKB_FRAGS + 1] is list tail */ 4609ab86bbcSShirley Ma for (i = MAX_SKB_FRAGS + 1; i > 1; --i) { 461e9d7417bSJason Wang first = get_a_page(rq, gfp); 4629ab86bbcSShirley Ma if (!first) { 4639ab86bbcSShirley Ma if (list) 464e9d7417bSJason Wang give_pages(rq, list); 4659ab86bbcSShirley Ma return -ENOMEM; 466296f96fcSRusty Russell } 467e9d7417bSJason Wang sg_set_buf(&rq->sg[i], page_address(first), PAGE_SIZE); 4689ab86bbcSShirley Ma 4699ab86bbcSShirley Ma /* chain new page in list head to match sg */ 4709ab86bbcSShirley Ma first->private = (unsigned long)list; 4719ab86bbcSShirley Ma list = first; 4729ab86bbcSShirley Ma } 4739ab86bbcSShirley Ma 474e9d7417bSJason Wang first = get_a_page(rq, gfp); 4759ab86bbcSShirley Ma if (!first) { 476e9d7417bSJason Wang give_pages(rq, list); 4779ab86bbcSShirley Ma return -ENOMEM; 4789ab86bbcSShirley Ma } 4799ab86bbcSShirley Ma p = page_address(first); 4809ab86bbcSShirley Ma 481e9d7417bSJason Wang /* rq->sg[0], rq->sg[1] share the same page */ 482e9d7417bSJason Wang /* a separated rq->sg[0] for virtio_net_hdr only due to QEMU bug */ 483e9d7417bSJason Wang sg_set_buf(&rq->sg[0], p, sizeof(struct virtio_net_hdr)); 4849ab86bbcSShirley Ma 485e9d7417bSJason Wang /* rq->sg[1] for data packet, from offset */ 4869ab86bbcSShirley Ma offset = sizeof(struct padded_vnet_hdr); 487e9d7417bSJason Wang sg_set_buf(&rq->sg[1], p + offset, PAGE_SIZE - offset); 4889ab86bbcSShirley Ma 4899ab86bbcSShirley Ma /* chain first in list head */ 4909ab86bbcSShirley Ma first->private = (unsigned long)list; 491e9d7417bSJason Wang err = virtqueue_add_buf(rq->vq, rq->sg, 0, MAX_SKB_FRAGS + 2, 492aa989f5eSMichael S. Tsirkin first, gfp); 4939ab86bbcSShirley Ma if (err < 0) 494e9d7417bSJason Wang give_pages(rq, first); 4959ab86bbcSShirley Ma 4969ab86bbcSShirley Ma return err; 4979ab86bbcSShirley Ma } 4989ab86bbcSShirley Ma 499e9d7417bSJason Wang static int add_recvbuf_mergeable(struct receive_queue *rq, gfp_t gfp) 5009ab86bbcSShirley Ma { 5019ab86bbcSShirley Ma struct page *page; 5029ab86bbcSShirley Ma int err; 5039ab86bbcSShirley Ma 504e9d7417bSJason Wang page = get_a_page(rq, gfp); 5059ab86bbcSShirley Ma if (!page) 5069ab86bbcSShirley Ma return -ENOMEM; 5079ab86bbcSShirley Ma 508e9d7417bSJason Wang sg_init_one(rq->sg, page_address(page), PAGE_SIZE); 5099ab86bbcSShirley Ma 510e9d7417bSJason Wang err = virtqueue_add_buf(rq->vq, rq->sg, 0, 1, page, gfp); 5119ab86bbcSShirley Ma if (err < 0) 512e9d7417bSJason Wang give_pages(rq, page); 5139ab86bbcSShirley Ma 5149ab86bbcSShirley Ma return err; 515296f96fcSRusty Russell } 516296f96fcSRusty Russell 517b2baed69SRusty Russell /* 518b2baed69SRusty Russell * Returns false if we couldn't fill entirely (OOM). 519b2baed69SRusty Russell * 520b2baed69SRusty Russell * Normally run in the receive path, but can also be run from ndo_open 521b2baed69SRusty Russell * before we're receiving packets, or from refill_work which is 522b2baed69SRusty Russell * careful to disable receiving (using napi_disable). 523b2baed69SRusty Russell */ 524e9d7417bSJason Wang static bool try_fill_recv(struct receive_queue *rq, gfp_t gfp) 5253f2c31d9SMark McLoughlin { 526e9d7417bSJason Wang struct virtnet_info *vi = rq->vq->vdev->priv; 5273f2c31d9SMark McLoughlin int err; 5281788f495SMichael S. Tsirkin bool oom; 5293f2c31d9SMark McLoughlin 5300aea51c3SAmit Shah do { 5319ab86bbcSShirley Ma if (vi->mergeable_rx_bufs) 532e9d7417bSJason Wang err = add_recvbuf_mergeable(rq, gfp); 5339ab86bbcSShirley Ma else if (vi->big_packets) 534e9d7417bSJason Wang err = add_recvbuf_big(rq, gfp); 5359ab86bbcSShirley Ma else 536e9d7417bSJason Wang err = add_recvbuf_small(rq, gfp); 5373f2c31d9SMark McLoughlin 5381788f495SMichael S. Tsirkin oom = err == -ENOMEM; 5399ed4cb07SRusty Russell if (err) 5403f2c31d9SMark McLoughlin break; 541e9d7417bSJason Wang ++rq->num; 542b7dfde95SLinus Torvalds } while (rq->vq->num_free); 543e9d7417bSJason Wang if (unlikely(rq->num > rq->max)) 544e9d7417bSJason Wang rq->max = rq->num; 545e9d7417bSJason Wang virtqueue_kick(rq->vq); 5463161e453SRusty Russell return !oom; 5473f2c31d9SMark McLoughlin } 5483f2c31d9SMark McLoughlin 54918445c4dSRusty Russell static void skb_recv_done(struct virtqueue *rvq) 550296f96fcSRusty Russell { 551296f96fcSRusty Russell struct virtnet_info *vi = rvq->vdev->priv; 552986a4f4dSJason Wang struct receive_queue *rq = &vi->rq[vq2rxq(rvq)]; 553e9d7417bSJason Wang 55418445c4dSRusty Russell /* Schedule NAPI, Suppress further interrupts if successful. */ 555e9d7417bSJason Wang if (napi_schedule_prep(&rq->napi)) { 5561915a712SMichael S. Tsirkin virtqueue_disable_cb(rvq); 557e9d7417bSJason Wang __napi_schedule(&rq->napi); 55818445c4dSRusty Russell } 559296f96fcSRusty Russell } 560296f96fcSRusty Russell 561e9d7417bSJason Wang static void virtnet_napi_enable(struct receive_queue *rq) 5623e9d08ecSBruce Rogers { 563e9d7417bSJason Wang napi_enable(&rq->napi); 5643e9d08ecSBruce Rogers 5653e9d08ecSBruce Rogers /* If all buffers were filled by other side before we napi_enabled, we 5663e9d08ecSBruce Rogers * won't get another interrupt, so process any outstanding packets 5673e9d08ecSBruce Rogers * now. virtnet_poll wants re-enable the queue, so we disable here. 5683e9d08ecSBruce Rogers * We synchronize against interrupts via NAPI_STATE_SCHED */ 569e9d7417bSJason Wang if (napi_schedule_prep(&rq->napi)) { 570e9d7417bSJason Wang virtqueue_disable_cb(rq->vq); 571ec13ee80SMichael S. Tsirkin local_bh_disable(); 572e9d7417bSJason Wang __napi_schedule(&rq->napi); 573ec13ee80SMichael S. Tsirkin local_bh_enable(); 5743e9d08ecSBruce Rogers } 5753e9d08ecSBruce Rogers } 5763e9d08ecSBruce Rogers 5773161e453SRusty Russell static void refill_work(struct work_struct *work) 5783161e453SRusty Russell { 579e9d7417bSJason Wang struct virtnet_info *vi = 580e9d7417bSJason Wang container_of(work, struct virtnet_info, refill.work); 5813161e453SRusty Russell bool still_empty; 582986a4f4dSJason Wang int i; 5833161e453SRusty Russell 584986a4f4dSJason Wang for (i = 0; i < vi->max_queue_pairs; i++) { 585986a4f4dSJason Wang struct receive_queue *rq = &vi->rq[i]; 586986a4f4dSJason Wang 587986a4f4dSJason Wang napi_disable(&rq->napi); 588986a4f4dSJason Wang still_empty = !try_fill_recv(rq, GFP_KERNEL); 589986a4f4dSJason Wang virtnet_napi_enable(rq); 5903161e453SRusty Russell 5913161e453SRusty Russell /* In theory, this can happen: if we don't get any buffers in 592986a4f4dSJason Wang * we will *never* try to fill again. 593986a4f4dSJason Wang */ 5943161e453SRusty Russell if (still_empty) 5953b07e9caSTejun Heo schedule_delayed_work(&vi->refill, HZ/2); 5963161e453SRusty Russell } 597986a4f4dSJason Wang } 5983161e453SRusty Russell 599296f96fcSRusty Russell static int virtnet_poll(struct napi_struct *napi, int budget) 600296f96fcSRusty Russell { 601e9d7417bSJason Wang struct receive_queue *rq = 602e9d7417bSJason Wang container_of(napi, struct receive_queue, napi); 603e9d7417bSJason Wang struct virtnet_info *vi = rq->vq->vdev->priv; 6049ab86bbcSShirley Ma void *buf; 605296f96fcSRusty Russell unsigned int len, received = 0; 606296f96fcSRusty Russell 607296f96fcSRusty Russell again: 608296f96fcSRusty Russell while (received < budget && 609e9d7417bSJason Wang (buf = virtqueue_get_buf(rq->vq, &len)) != NULL) { 610e9d7417bSJason Wang receive_buf(rq, buf, len); 611e9d7417bSJason Wang --rq->num; 612296f96fcSRusty Russell received++; 613296f96fcSRusty Russell } 614296f96fcSRusty Russell 615e9d7417bSJason Wang if (rq->num < rq->max / 2) { 616e9d7417bSJason Wang if (!try_fill_recv(rq, GFP_ATOMIC)) 6173b07e9caSTejun Heo schedule_delayed_work(&vi->refill, 0); 6183161e453SRusty Russell } 619296f96fcSRusty Russell 6208329d98eSRusty Russell /* Out of packets? */ 6218329d98eSRusty Russell if (received < budget) { 622288379f0SBen Hutchings napi_complete(napi); 623e9d7417bSJason Wang if (unlikely(!virtqueue_enable_cb(rq->vq)) && 6248e95a202SJoe Perches napi_schedule_prep(napi)) { 625e9d7417bSJason Wang virtqueue_disable_cb(rq->vq); 626288379f0SBen Hutchings __napi_schedule(napi); 627296f96fcSRusty Russell goto again; 628296f96fcSRusty Russell } 6294265f161SChristian Borntraeger } 630296f96fcSRusty Russell 631296f96fcSRusty Russell return received; 632296f96fcSRusty Russell } 633296f96fcSRusty Russell 634986a4f4dSJason Wang static int virtnet_open(struct net_device *dev) 635986a4f4dSJason Wang { 636986a4f4dSJason Wang struct virtnet_info *vi = netdev_priv(dev); 637986a4f4dSJason Wang int i; 638986a4f4dSJason Wang 639986a4f4dSJason Wang for (i = 0; i < vi->max_queue_pairs; i++) { 640986a4f4dSJason Wang /* Make sure we have some buffers: if oom use wq. */ 641986a4f4dSJason Wang if (!try_fill_recv(&vi->rq[i], GFP_KERNEL)) 642986a4f4dSJason Wang schedule_delayed_work(&vi->refill, 0); 643986a4f4dSJason Wang virtnet_napi_enable(&vi->rq[i]); 644986a4f4dSJason Wang } 645986a4f4dSJason Wang 646986a4f4dSJason Wang return 0; 647986a4f4dSJason Wang } 648986a4f4dSJason Wang 649b7dfde95SLinus Torvalds static void free_old_xmit_skbs(struct send_queue *sq) 650296f96fcSRusty Russell { 651296f96fcSRusty Russell struct sk_buff *skb; 6526ee57bccSMichael S. Tsirkin unsigned int len; 653e9d7417bSJason Wang struct virtnet_info *vi = sq->vq->vdev->priv; 65458472a76SEric Dumazet struct virtnet_stats *stats = this_cpu_ptr(vi->stats); 655296f96fcSRusty Russell 656e9d7417bSJason Wang while ((skb = virtqueue_get_buf(sq->vq, &len)) != NULL) { 657296f96fcSRusty Russell pr_debug("Sent skb %p\n", skb); 6583fa2a1dfSstephen hemminger 65983a27052SEric Dumazet u64_stats_update_begin(&stats->tx_syncp); 6603fa2a1dfSstephen hemminger stats->tx_bytes += skb->len; 6613fa2a1dfSstephen hemminger stats->tx_packets++; 66283a27052SEric Dumazet u64_stats_update_end(&stats->tx_syncp); 6633fa2a1dfSstephen hemminger 664ed79bab8SEric Dumazet dev_kfree_skb_any(skb); 665296f96fcSRusty Russell } 666296f96fcSRusty Russell } 667296f96fcSRusty Russell 668e9d7417bSJason Wang static int xmit_skb(struct send_queue *sq, struct sk_buff *skb) 669296f96fcSRusty Russell { 670b3f24698SRusty Russell struct skb_vnet_hdr *hdr = skb_vnet_hdr(skb); 671296f96fcSRusty Russell const unsigned char *dest = ((struct ethhdr *)skb->data)->h_dest; 672e9d7417bSJason Wang struct virtnet_info *vi = sq->vq->vdev->priv; 6737bedc7dcSMichael S. Tsirkin unsigned num_sg; 674296f96fcSRusty Russell 675e174961cSJohannes Berg pr_debug("%s: xmit %p %pM\n", vi->dev->name, skb, dest); 676296f96fcSRusty Russell 677296f96fcSRusty Russell if (skb->ip_summed == CHECKSUM_PARTIAL) { 678b3f24698SRusty Russell hdr->hdr.flags = VIRTIO_NET_HDR_F_NEEDS_CSUM; 67955508d60SMichał Mirosław hdr->hdr.csum_start = skb_checksum_start_offset(skb); 680b3f24698SRusty Russell hdr->hdr.csum_offset = skb->csum_offset; 681296f96fcSRusty Russell } else { 682b3f24698SRusty Russell hdr->hdr.flags = 0; 683b3f24698SRusty Russell hdr->hdr.csum_offset = hdr->hdr.csum_start = 0; 684296f96fcSRusty Russell } 685296f96fcSRusty Russell 686296f96fcSRusty Russell if (skb_is_gso(skb)) { 687b3f24698SRusty Russell hdr->hdr.hdr_len = skb_headlen(skb); 688b3f24698SRusty Russell hdr->hdr.gso_size = skb_shinfo(skb)->gso_size; 68934a48579SRusty Russell if (skb_shinfo(skb)->gso_type & SKB_GSO_TCPV4) 690b3f24698SRusty Russell hdr->hdr.gso_type = VIRTIO_NET_HDR_GSO_TCPV4; 691296f96fcSRusty Russell else if (skb_shinfo(skb)->gso_type & SKB_GSO_TCPV6) 692b3f24698SRusty Russell hdr->hdr.gso_type = VIRTIO_NET_HDR_GSO_TCPV6; 693296f96fcSRusty Russell else if (skb_shinfo(skb)->gso_type & SKB_GSO_UDP) 694b3f24698SRusty Russell hdr->hdr.gso_type = VIRTIO_NET_HDR_GSO_UDP; 695296f96fcSRusty Russell else 696296f96fcSRusty Russell BUG(); 69734a48579SRusty Russell if (skb_shinfo(skb)->gso_type & SKB_GSO_TCP_ECN) 698b3f24698SRusty Russell hdr->hdr.gso_type |= VIRTIO_NET_HDR_GSO_ECN; 699296f96fcSRusty Russell } else { 700b3f24698SRusty Russell hdr->hdr.gso_type = VIRTIO_NET_HDR_GSO_NONE; 701b3f24698SRusty Russell hdr->hdr.gso_size = hdr->hdr.hdr_len = 0; 702296f96fcSRusty Russell } 703296f96fcSRusty Russell 704b3f24698SRusty Russell hdr->mhdr.num_buffers = 0; 7053f2c31d9SMark McLoughlin 7063f2c31d9SMark McLoughlin /* Encode metadata header at front. */ 7073f2c31d9SMark McLoughlin if (vi->mergeable_rx_bufs) 708e9d7417bSJason Wang sg_set_buf(sq->sg, &hdr->mhdr, sizeof hdr->mhdr); 7093f2c31d9SMark McLoughlin else 710e9d7417bSJason Wang sg_set_buf(sq->sg, &hdr->hdr, sizeof hdr->hdr); 7113f2c31d9SMark McLoughlin 712b7dfde95SLinus Torvalds num_sg = skb_to_sgvec(skb, sq->sg + 1, 0, skb->len) + 1; 713b7dfde95SLinus Torvalds return virtqueue_add_buf(sq->vq, sq->sg, num_sg, 714f96fde41SRusty Russell 0, skb, GFP_ATOMIC); 71511a3a154SRusty Russell } 71611a3a154SRusty Russell 717424efe9cSStephen Hemminger static netdev_tx_t start_xmit(struct sk_buff *skb, struct net_device *dev) 71899ffc696SRusty Russell { 71999ffc696SRusty Russell struct virtnet_info *vi = netdev_priv(dev); 720986a4f4dSJason Wang int qnum = skb_get_queue_mapping(skb); 721986a4f4dSJason Wang struct send_queue *sq = &vi->sq[qnum]; 7229ed4cb07SRusty Russell int err; 7232cb9c6baSRusty Russell 7242cb9c6baSRusty Russell /* Free up any pending old buffers before queueing new ones. */ 725e9d7417bSJason Wang free_old_xmit_skbs(sq); 72699ffc696SRusty Russell 72703f191baSMichael S. Tsirkin /* Try to transmit */ 728b7dfde95SLinus Torvalds err = xmit_skb(sq, skb); 72999ffc696SRusty Russell 7309ed4cb07SRusty Russell /* This should not happen! */ 7310e3daa64SRusty Russell if (unlikely(err)) { 73258eba97dSRusty Russell dev->stats.tx_fifo_errors++; 7332e57b79cSRick Jones if (net_ratelimit()) 73458eba97dSRusty Russell dev_warn(&dev->dev, 735b7dfde95SLinus Torvalds "Unexpected TXQ (%d) queue failure: %d\n", qnum, err); 73658eba97dSRusty Russell dev->stats.tx_dropped++; 73758eba97dSRusty Russell kfree_skb(skb); 73858eba97dSRusty Russell return NETDEV_TX_OK; 739296f96fcSRusty Russell } 740e9d7417bSJason Wang virtqueue_kick(sq->vq); 74103f191baSMichael S. Tsirkin 74248925e37SRusty Russell /* Don't wait up for transmitted skbs to be freed. */ 74348925e37SRusty Russell skb_orphan(skb); 74448925e37SRusty Russell nf_reset(skb); 74548925e37SRusty Russell 74648925e37SRusty Russell /* Apparently nice girls don't return TX_BUSY; stop the queue 74748925e37SRusty Russell * before it gets out of hand. Naturally, this wastes entries. */ 748b7dfde95SLinus Torvalds if (sq->vq->num_free < 2+MAX_SKB_FRAGS) { 749986a4f4dSJason Wang netif_stop_subqueue(dev, qnum); 750e9d7417bSJason Wang if (unlikely(!virtqueue_enable_cb_delayed(sq->vq))) { 75148925e37SRusty Russell /* More just got used, free them then recheck. */ 752b7dfde95SLinus Torvalds free_old_xmit_skbs(sq); 753b7dfde95SLinus Torvalds if (sq->vq->num_free >= 2+MAX_SKB_FRAGS) { 754986a4f4dSJason Wang netif_start_subqueue(dev, qnum); 755e9d7417bSJason Wang virtqueue_disable_cb(sq->vq); 75648925e37SRusty Russell } 75748925e37SRusty Russell } 75848925e37SRusty Russell } 75948925e37SRusty Russell 76048925e37SRusty Russell return NETDEV_TX_OK; 76148925e37SRusty Russell } 76248925e37SRusty Russell 7639c46f6d4SAlex Williamson static int virtnet_set_mac_address(struct net_device *dev, void *p) 7649c46f6d4SAlex Williamson { 7659c46f6d4SAlex Williamson struct virtnet_info *vi = netdev_priv(dev); 7669c46f6d4SAlex Williamson struct virtio_device *vdev = vi->vdev; 767f2f2c8b4SJiri Pirko int ret; 7689c46f6d4SAlex Williamson 769f2f2c8b4SJiri Pirko ret = eth_mac_addr(dev, p); 770f2f2c8b4SJiri Pirko if (ret) 771f2f2c8b4SJiri Pirko return ret; 7729c46f6d4SAlex Williamson 77362994b2dSAlex Williamson if (virtio_has_feature(vdev, VIRTIO_NET_F_MAC)) 7749c46f6d4SAlex Williamson vdev->config->set(vdev, offsetof(struct virtio_net_config, mac), 7759c46f6d4SAlex Williamson dev->dev_addr, dev->addr_len); 7769c46f6d4SAlex Williamson 7779c46f6d4SAlex Williamson return 0; 7789c46f6d4SAlex Williamson } 7799c46f6d4SAlex Williamson 7803fa2a1dfSstephen hemminger static struct rtnl_link_stats64 *virtnet_stats(struct net_device *dev, 7813fa2a1dfSstephen hemminger struct rtnl_link_stats64 *tot) 7823fa2a1dfSstephen hemminger { 7833fa2a1dfSstephen hemminger struct virtnet_info *vi = netdev_priv(dev); 7843fa2a1dfSstephen hemminger int cpu; 7853fa2a1dfSstephen hemminger unsigned int start; 7863fa2a1dfSstephen hemminger 7873fa2a1dfSstephen hemminger for_each_possible_cpu(cpu) { 78858472a76SEric Dumazet struct virtnet_stats *stats = per_cpu_ptr(vi->stats, cpu); 7893fa2a1dfSstephen hemminger u64 tpackets, tbytes, rpackets, rbytes; 7903fa2a1dfSstephen hemminger 7913fa2a1dfSstephen hemminger do { 792e3906486SKevin Groeneveld start = u64_stats_fetch_begin_bh(&stats->tx_syncp); 7933fa2a1dfSstephen hemminger tpackets = stats->tx_packets; 7943fa2a1dfSstephen hemminger tbytes = stats->tx_bytes; 795e3906486SKevin Groeneveld } while (u64_stats_fetch_retry_bh(&stats->tx_syncp, start)); 79683a27052SEric Dumazet 79783a27052SEric Dumazet do { 798e3906486SKevin Groeneveld start = u64_stats_fetch_begin_bh(&stats->rx_syncp); 7993fa2a1dfSstephen hemminger rpackets = stats->rx_packets; 8003fa2a1dfSstephen hemminger rbytes = stats->rx_bytes; 801e3906486SKevin Groeneveld } while (u64_stats_fetch_retry_bh(&stats->rx_syncp, start)); 8023fa2a1dfSstephen hemminger 8033fa2a1dfSstephen hemminger tot->rx_packets += rpackets; 8043fa2a1dfSstephen hemminger tot->tx_packets += tpackets; 8053fa2a1dfSstephen hemminger tot->rx_bytes += rbytes; 8063fa2a1dfSstephen hemminger tot->tx_bytes += tbytes; 8073fa2a1dfSstephen hemminger } 8083fa2a1dfSstephen hemminger 8093fa2a1dfSstephen hemminger tot->tx_dropped = dev->stats.tx_dropped; 810021ac8d3SRick Jones tot->tx_fifo_errors = dev->stats.tx_fifo_errors; 8113fa2a1dfSstephen hemminger tot->rx_dropped = dev->stats.rx_dropped; 8123fa2a1dfSstephen hemminger tot->rx_length_errors = dev->stats.rx_length_errors; 8133fa2a1dfSstephen hemminger tot->rx_frame_errors = dev->stats.rx_frame_errors; 8143fa2a1dfSstephen hemminger 8153fa2a1dfSstephen hemminger return tot; 8163fa2a1dfSstephen hemminger } 8173fa2a1dfSstephen hemminger 818da74e89dSAmit Shah #ifdef CONFIG_NET_POLL_CONTROLLER 819da74e89dSAmit Shah static void virtnet_netpoll(struct net_device *dev) 820da74e89dSAmit Shah { 821da74e89dSAmit Shah struct virtnet_info *vi = netdev_priv(dev); 822986a4f4dSJason Wang int i; 823da74e89dSAmit Shah 824986a4f4dSJason Wang for (i = 0; i < vi->curr_queue_pairs; i++) 825986a4f4dSJason Wang napi_schedule(&vi->rq[i].napi); 826da74e89dSAmit Shah } 827da74e89dSAmit Shah #endif 828da74e89dSAmit Shah 8292a41f71dSAlex Williamson /* 8302a41f71dSAlex Williamson * Send command via the control virtqueue and check status. Commands 8312a41f71dSAlex Williamson * supported by the hypervisor, as indicated by feature bits, should 8322a41f71dSAlex Williamson * never fail unless improperly formated. 8332a41f71dSAlex Williamson */ 8342a41f71dSAlex Williamson static bool virtnet_send_command(struct virtnet_info *vi, u8 class, u8 cmd, 8352a41f71dSAlex Williamson struct scatterlist *data, int out, int in) 8362a41f71dSAlex Williamson { 83723e258e1SAlex Williamson struct scatterlist *s, sg[VIRTNET_SEND_COMMAND_SG_MAX + 2]; 8382a41f71dSAlex Williamson struct virtio_net_ctrl_hdr ctrl; 8392a41f71dSAlex Williamson virtio_net_ctrl_ack status = ~0; 8402a41f71dSAlex Williamson unsigned int tmp; 84123e258e1SAlex Williamson int i; 8422a41f71dSAlex Williamson 8430ee904c3SAlexander Beregalov /* Caller should know better */ 8440ee904c3SAlexander Beregalov BUG_ON(!virtio_has_feature(vi->vdev, VIRTIO_NET_F_CTRL_VQ) || 8450ee904c3SAlexander Beregalov (out + in > VIRTNET_SEND_COMMAND_SG_MAX)); 8462a41f71dSAlex Williamson 8472a41f71dSAlex Williamson out++; /* Add header */ 8482a41f71dSAlex Williamson in++; /* Add return status */ 8492a41f71dSAlex Williamson 8502a41f71dSAlex Williamson ctrl.class = class; 8512a41f71dSAlex Williamson ctrl.cmd = cmd; 8522a41f71dSAlex Williamson 8532a41f71dSAlex Williamson sg_init_table(sg, out + in); 8542a41f71dSAlex Williamson 8552a41f71dSAlex Williamson sg_set_buf(&sg[0], &ctrl, sizeof(ctrl)); 85623e258e1SAlex Williamson for_each_sg(data, s, out + in - 2, i) 85723e258e1SAlex Williamson sg_set_buf(&sg[i + 1], sg_virt(s), s->length); 8582a41f71dSAlex Williamson sg_set_buf(&sg[out + in - 1], &status, sizeof(status)); 8592a41f71dSAlex Williamson 860f96fde41SRusty Russell BUG_ON(virtqueue_add_buf(vi->cvq, sg, out, in, vi, GFP_ATOMIC) < 0); 8612a41f71dSAlex Williamson 8621915a712SMichael S. Tsirkin virtqueue_kick(vi->cvq); 8632a41f71dSAlex Williamson 8642a41f71dSAlex Williamson /* 8652a41f71dSAlex Williamson * Spin for a response, the kick causes an ioport write, trapping 8662a41f71dSAlex Williamson * into the hypervisor, so the request should be handled immediately. 8672a41f71dSAlex Williamson */ 8681915a712SMichael S. Tsirkin while (!virtqueue_get_buf(vi->cvq, &tmp)) 8692a41f71dSAlex Williamson cpu_relax(); 8702a41f71dSAlex Williamson 8712a41f71dSAlex Williamson return status == VIRTIO_NET_OK; 8722a41f71dSAlex Williamson } 8732a41f71dSAlex Williamson 874586d17c5SJason Wang static void virtnet_ack_link_announce(struct virtnet_info *vi) 875586d17c5SJason Wang { 876586d17c5SJason Wang rtnl_lock(); 877586d17c5SJason Wang if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_ANNOUNCE, 878586d17c5SJason Wang VIRTIO_NET_CTRL_ANNOUNCE_ACK, NULL, 879586d17c5SJason Wang 0, 0)) 880586d17c5SJason Wang dev_warn(&vi->dev->dev, "Failed to ack link announce.\n"); 881586d17c5SJason Wang rtnl_unlock(); 882586d17c5SJason Wang } 883586d17c5SJason Wang 884986a4f4dSJason Wang static int virtnet_set_queues(struct virtnet_info *vi, u16 queue_pairs) 885986a4f4dSJason Wang { 886986a4f4dSJason Wang struct scatterlist sg; 887986a4f4dSJason Wang struct virtio_net_ctrl_mq s; 888986a4f4dSJason Wang struct net_device *dev = vi->dev; 889986a4f4dSJason Wang 890986a4f4dSJason Wang if (!vi->has_cvq || !virtio_has_feature(vi->vdev, VIRTIO_NET_F_MQ)) 891986a4f4dSJason Wang return 0; 892986a4f4dSJason Wang 893986a4f4dSJason Wang s.virtqueue_pairs = queue_pairs; 894986a4f4dSJason Wang sg_init_one(&sg, &s, sizeof(s)); 895986a4f4dSJason Wang 896986a4f4dSJason Wang if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_MQ, 897986a4f4dSJason Wang VIRTIO_NET_CTRL_MQ_VQ_PAIRS_SET, &sg, 1, 0)){ 898986a4f4dSJason Wang dev_warn(&dev->dev, "Fail to set num of queue pairs to %d\n", 899986a4f4dSJason Wang queue_pairs); 900986a4f4dSJason Wang return -EINVAL; 901986a4f4dSJason Wang } else 902986a4f4dSJason Wang vi->curr_queue_pairs = queue_pairs; 903986a4f4dSJason Wang 904986a4f4dSJason Wang return 0; 905986a4f4dSJason Wang } 906986a4f4dSJason Wang 907296f96fcSRusty Russell static int virtnet_close(struct net_device *dev) 908296f96fcSRusty Russell { 909296f96fcSRusty Russell struct virtnet_info *vi = netdev_priv(dev); 910986a4f4dSJason Wang int i; 911296f96fcSRusty Russell 912b2baed69SRusty Russell /* Make sure refill_work doesn't re-enable napi! */ 913b2baed69SRusty Russell cancel_delayed_work_sync(&vi->refill); 914986a4f4dSJason Wang 915986a4f4dSJason Wang for (i = 0; i < vi->max_queue_pairs; i++) 916986a4f4dSJason Wang napi_disable(&vi->rq[i].napi); 917296f96fcSRusty Russell 918296f96fcSRusty Russell return 0; 919296f96fcSRusty Russell } 920296f96fcSRusty Russell 9212af7698eSAlex Williamson static void virtnet_set_rx_mode(struct net_device *dev) 9222af7698eSAlex Williamson { 9232af7698eSAlex Williamson struct virtnet_info *vi = netdev_priv(dev); 924f565a7c2SAlex Williamson struct scatterlist sg[2]; 9252af7698eSAlex Williamson u8 promisc, allmulti; 926f565a7c2SAlex Williamson struct virtio_net_ctrl_mac *mac_data; 927ccffad25SJiri Pirko struct netdev_hw_addr *ha; 92832e7bfc4SJiri Pirko int uc_count; 9294cd24eafSJiri Pirko int mc_count; 930f565a7c2SAlex Williamson void *buf; 931f565a7c2SAlex Williamson int i; 9322af7698eSAlex Williamson 9332af7698eSAlex Williamson /* We can't dynamicaly set ndo_set_rx_mode, so return gracefully */ 9342af7698eSAlex Williamson if (!virtio_has_feature(vi->vdev, VIRTIO_NET_F_CTRL_RX)) 9352af7698eSAlex Williamson return; 9362af7698eSAlex Williamson 937f565a7c2SAlex Williamson promisc = ((dev->flags & IFF_PROMISC) != 0); 938f565a7c2SAlex Williamson allmulti = ((dev->flags & IFF_ALLMULTI) != 0); 9392af7698eSAlex Williamson 94023e258e1SAlex Williamson sg_init_one(sg, &promisc, sizeof(promisc)); 9412af7698eSAlex Williamson 9422af7698eSAlex Williamson if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_RX, 9432af7698eSAlex Williamson VIRTIO_NET_CTRL_RX_PROMISC, 944f565a7c2SAlex Williamson sg, 1, 0)) 9452af7698eSAlex Williamson dev_warn(&dev->dev, "Failed to %sable promisc mode.\n", 9462af7698eSAlex Williamson promisc ? "en" : "dis"); 9472af7698eSAlex Williamson 94823e258e1SAlex Williamson sg_init_one(sg, &allmulti, sizeof(allmulti)); 9492af7698eSAlex Williamson 9502af7698eSAlex Williamson if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_RX, 9512af7698eSAlex Williamson VIRTIO_NET_CTRL_RX_ALLMULTI, 952f565a7c2SAlex Williamson sg, 1, 0)) 9532af7698eSAlex Williamson dev_warn(&dev->dev, "Failed to %sable allmulti mode.\n", 9542af7698eSAlex Williamson allmulti ? "en" : "dis"); 955f565a7c2SAlex Williamson 95632e7bfc4SJiri Pirko uc_count = netdev_uc_count(dev); 9574cd24eafSJiri Pirko mc_count = netdev_mc_count(dev); 958f565a7c2SAlex Williamson /* MAC filter - use one buffer for both lists */ 9594cd24eafSJiri Pirko buf = kzalloc(((uc_count + mc_count) * ETH_ALEN) + 960f565a7c2SAlex Williamson (2 * sizeof(mac_data->entries)), GFP_ATOMIC); 9614cd24eafSJiri Pirko mac_data = buf; 962f565a7c2SAlex Williamson if (!buf) { 963f565a7c2SAlex Williamson dev_warn(&dev->dev, "No memory for MAC address buffer\n"); 964f565a7c2SAlex Williamson return; 965f565a7c2SAlex Williamson } 966f565a7c2SAlex Williamson 96723e258e1SAlex Williamson sg_init_table(sg, 2); 96823e258e1SAlex Williamson 969f565a7c2SAlex Williamson /* Store the unicast list and count in the front of the buffer */ 97032e7bfc4SJiri Pirko mac_data->entries = uc_count; 971ccffad25SJiri Pirko i = 0; 97232e7bfc4SJiri Pirko netdev_for_each_uc_addr(ha, dev) 973ccffad25SJiri Pirko memcpy(&mac_data->macs[i++][0], ha->addr, ETH_ALEN); 974f565a7c2SAlex Williamson 975f565a7c2SAlex Williamson sg_set_buf(&sg[0], mac_data, 97632e7bfc4SJiri Pirko sizeof(mac_data->entries) + (uc_count * ETH_ALEN)); 977f565a7c2SAlex Williamson 978f565a7c2SAlex Williamson /* multicast list and count fill the end */ 97932e7bfc4SJiri Pirko mac_data = (void *)&mac_data->macs[uc_count][0]; 980f565a7c2SAlex Williamson 9814cd24eafSJiri Pirko mac_data->entries = mc_count; 982567ec874SJiri Pirko i = 0; 98322bedad3SJiri Pirko netdev_for_each_mc_addr(ha, dev) 98422bedad3SJiri Pirko memcpy(&mac_data->macs[i++][0], ha->addr, ETH_ALEN); 985f565a7c2SAlex Williamson 986f565a7c2SAlex Williamson sg_set_buf(&sg[1], mac_data, 9874cd24eafSJiri Pirko sizeof(mac_data->entries) + (mc_count * ETH_ALEN)); 988f565a7c2SAlex Williamson 989f565a7c2SAlex Williamson if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_MAC, 990f565a7c2SAlex Williamson VIRTIO_NET_CTRL_MAC_TABLE_SET, 991f565a7c2SAlex Williamson sg, 2, 0)) 992f565a7c2SAlex Williamson dev_warn(&dev->dev, "Failed to set MAC fitler table.\n"); 993f565a7c2SAlex Williamson 994f565a7c2SAlex Williamson kfree(buf); 9952af7698eSAlex Williamson } 9962af7698eSAlex Williamson 9978e586137SJiri Pirko static int virtnet_vlan_rx_add_vid(struct net_device *dev, u16 vid) 9980bde9569SAlex Williamson { 9990bde9569SAlex Williamson struct virtnet_info *vi = netdev_priv(dev); 10000bde9569SAlex Williamson struct scatterlist sg; 10010bde9569SAlex Williamson 100223e258e1SAlex Williamson sg_init_one(&sg, &vid, sizeof(vid)); 10030bde9569SAlex Williamson 10040bde9569SAlex Williamson if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_VLAN, 10050bde9569SAlex Williamson VIRTIO_NET_CTRL_VLAN_ADD, &sg, 1, 0)) 10060bde9569SAlex Williamson dev_warn(&dev->dev, "Failed to add VLAN ID %d.\n", vid); 10078e586137SJiri Pirko return 0; 10080bde9569SAlex Williamson } 10090bde9569SAlex Williamson 10108e586137SJiri Pirko static int virtnet_vlan_rx_kill_vid(struct net_device *dev, u16 vid) 10110bde9569SAlex Williamson { 10120bde9569SAlex Williamson struct virtnet_info *vi = netdev_priv(dev); 10130bde9569SAlex Williamson struct scatterlist sg; 10140bde9569SAlex Williamson 101523e258e1SAlex Williamson sg_init_one(&sg, &vid, sizeof(vid)); 10160bde9569SAlex Williamson 10170bde9569SAlex Williamson if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_VLAN, 10180bde9569SAlex Williamson VIRTIO_NET_CTRL_VLAN_DEL, &sg, 1, 0)) 10190bde9569SAlex Williamson dev_warn(&dev->dev, "Failed to kill VLAN ID %d.\n", vid); 10208e586137SJiri Pirko return 0; 10210bde9569SAlex Williamson } 10220bde9569SAlex Williamson 10238898c21cSWanlong Gao static void virtnet_clean_affinity(struct virtnet_info *vi, long hcpu) 10248898c21cSWanlong Gao { 10258898c21cSWanlong Gao int i; 10268898c21cSWanlong Gao int cpu; 10278898c21cSWanlong Gao 10288898c21cSWanlong Gao if (vi->affinity_hint_set) { 10298898c21cSWanlong Gao for (i = 0; i < vi->max_queue_pairs; i++) { 10308898c21cSWanlong Gao virtqueue_set_affinity(vi->rq[i].vq, -1); 10318898c21cSWanlong Gao virtqueue_set_affinity(vi->sq[i].vq, -1); 10328898c21cSWanlong Gao } 10338898c21cSWanlong Gao 10348898c21cSWanlong Gao vi->affinity_hint_set = false; 10358898c21cSWanlong Gao } 10368898c21cSWanlong Gao 10378898c21cSWanlong Gao i = 0; 10388898c21cSWanlong Gao for_each_online_cpu(cpu) { 10398898c21cSWanlong Gao if (cpu == hcpu) { 10408898c21cSWanlong Gao *per_cpu_ptr(vi->vq_index, cpu) = -1; 10418898c21cSWanlong Gao } else { 10428898c21cSWanlong Gao *per_cpu_ptr(vi->vq_index, cpu) = 10438898c21cSWanlong Gao ++i % vi->curr_queue_pairs; 10448898c21cSWanlong Gao } 10458898c21cSWanlong Gao } 10468898c21cSWanlong Gao } 10478898c21cSWanlong Gao 10488898c21cSWanlong Gao static void virtnet_set_affinity(struct virtnet_info *vi) 1049986a4f4dSJason Wang { 1050986a4f4dSJason Wang int i; 105147be2479SWanlong Gao int cpu; 1052986a4f4dSJason Wang 1053986a4f4dSJason Wang /* In multiqueue mode, when the number of cpu is equal to the number of 1054986a4f4dSJason Wang * queue pairs, we let the queue pairs to be private to one cpu by 1055986a4f4dSJason Wang * setting the affinity hint to eliminate the contention. 1056986a4f4dSJason Wang */ 10578898c21cSWanlong Gao if (vi->curr_queue_pairs == 1 || 10588898c21cSWanlong Gao vi->max_queue_pairs != num_online_cpus()) { 10598898c21cSWanlong Gao virtnet_clean_affinity(vi, -1); 1060986a4f4dSJason Wang return; 1061986a4f4dSJason Wang } 1062986a4f4dSJason Wang 106347be2479SWanlong Gao i = 0; 106447be2479SWanlong Gao for_each_online_cpu(cpu) { 106547be2479SWanlong Gao virtqueue_set_affinity(vi->rq[i].vq, cpu); 106647be2479SWanlong Gao virtqueue_set_affinity(vi->sq[i].vq, cpu); 106747be2479SWanlong Gao *per_cpu_ptr(vi->vq_index, cpu) = i; 106847be2479SWanlong Gao i++; 106947be2479SWanlong Gao } 107047be2479SWanlong Gao 1071986a4f4dSJason Wang vi->affinity_hint_set = true; 107247be2479SWanlong Gao } 1073986a4f4dSJason Wang 1074*8de4b2f3SWanlong Gao static int virtnet_cpu_callback(struct notifier_block *nfb, 1075*8de4b2f3SWanlong Gao unsigned long action, void *hcpu) 1076*8de4b2f3SWanlong Gao { 1077*8de4b2f3SWanlong Gao struct virtnet_info *vi = container_of(nfb, struct virtnet_info, nb); 1078*8de4b2f3SWanlong Gao 1079*8de4b2f3SWanlong Gao switch(action & ~CPU_TASKS_FROZEN) { 1080*8de4b2f3SWanlong Gao case CPU_ONLINE: 1081*8de4b2f3SWanlong Gao case CPU_DOWN_FAILED: 1082*8de4b2f3SWanlong Gao case CPU_DEAD: 1083*8de4b2f3SWanlong Gao virtnet_set_affinity(vi); 1084*8de4b2f3SWanlong Gao break; 1085*8de4b2f3SWanlong Gao case CPU_DOWN_PREPARE: 1086*8de4b2f3SWanlong Gao virtnet_clean_affinity(vi, (long)hcpu); 1087*8de4b2f3SWanlong Gao break; 1088*8de4b2f3SWanlong Gao default: 1089*8de4b2f3SWanlong Gao break; 1090*8de4b2f3SWanlong Gao } 1091*8de4b2f3SWanlong Gao return NOTIFY_OK; 1092*8de4b2f3SWanlong Gao } 1093*8de4b2f3SWanlong Gao 10948f9f4668SRick Jones static void virtnet_get_ringparam(struct net_device *dev, 10958f9f4668SRick Jones struct ethtool_ringparam *ring) 10968f9f4668SRick Jones { 10978f9f4668SRick Jones struct virtnet_info *vi = netdev_priv(dev); 10988f9f4668SRick Jones 1099986a4f4dSJason Wang ring->rx_max_pending = virtqueue_get_vring_size(vi->rq[0].vq); 1100986a4f4dSJason Wang ring->tx_max_pending = virtqueue_get_vring_size(vi->sq[0].vq); 11018f9f4668SRick Jones ring->rx_pending = ring->rx_max_pending; 11028f9f4668SRick Jones ring->tx_pending = ring->tx_max_pending; 11038f9f4668SRick Jones } 11048f9f4668SRick Jones 110566846048SRick Jones 110666846048SRick Jones static void virtnet_get_drvinfo(struct net_device *dev, 110766846048SRick Jones struct ethtool_drvinfo *info) 110866846048SRick Jones { 110966846048SRick Jones struct virtnet_info *vi = netdev_priv(dev); 111066846048SRick Jones struct virtio_device *vdev = vi->vdev; 111166846048SRick Jones 111266846048SRick Jones strlcpy(info->driver, KBUILD_MODNAME, sizeof(info->driver)); 111366846048SRick Jones strlcpy(info->version, VIRTNET_DRIVER_VERSION, sizeof(info->version)); 111466846048SRick Jones strlcpy(info->bus_info, virtio_bus_name(vdev), sizeof(info->bus_info)); 111566846048SRick Jones 111666846048SRick Jones } 111766846048SRick Jones 1118d73bcd2cSJason Wang /* TODO: Eliminate OOO packets during switching */ 1119d73bcd2cSJason Wang static int virtnet_set_channels(struct net_device *dev, 1120d73bcd2cSJason Wang struct ethtool_channels *channels) 1121d73bcd2cSJason Wang { 1122d73bcd2cSJason Wang struct virtnet_info *vi = netdev_priv(dev); 1123d73bcd2cSJason Wang u16 queue_pairs = channels->combined_count; 1124d73bcd2cSJason Wang int err; 1125d73bcd2cSJason Wang 1126d73bcd2cSJason Wang /* We don't support separate rx/tx channels. 1127d73bcd2cSJason Wang * We don't allow setting 'other' channels. 1128d73bcd2cSJason Wang */ 1129d73bcd2cSJason Wang if (channels->rx_count || channels->tx_count || channels->other_count) 1130d73bcd2cSJason Wang return -EINVAL; 1131d73bcd2cSJason Wang 1132d73bcd2cSJason Wang if (queue_pairs > vi->max_queue_pairs) 1133d73bcd2cSJason Wang return -EINVAL; 1134d73bcd2cSJason Wang 113547be2479SWanlong Gao get_online_cpus(); 1136d73bcd2cSJason Wang err = virtnet_set_queues(vi, queue_pairs); 1137d73bcd2cSJason Wang if (!err) { 1138d73bcd2cSJason Wang netif_set_real_num_tx_queues(dev, queue_pairs); 1139d73bcd2cSJason Wang netif_set_real_num_rx_queues(dev, queue_pairs); 1140d73bcd2cSJason Wang 11418898c21cSWanlong Gao virtnet_set_affinity(vi); 1142d73bcd2cSJason Wang } 114347be2479SWanlong Gao put_online_cpus(); 1144d73bcd2cSJason Wang 1145d73bcd2cSJason Wang return err; 1146d73bcd2cSJason Wang } 1147d73bcd2cSJason Wang 1148d73bcd2cSJason Wang static void virtnet_get_channels(struct net_device *dev, 1149d73bcd2cSJason Wang struct ethtool_channels *channels) 1150d73bcd2cSJason Wang { 1151d73bcd2cSJason Wang struct virtnet_info *vi = netdev_priv(dev); 1152d73bcd2cSJason Wang 1153d73bcd2cSJason Wang channels->combined_count = vi->curr_queue_pairs; 1154d73bcd2cSJason Wang channels->max_combined = vi->max_queue_pairs; 1155d73bcd2cSJason Wang channels->max_other = 0; 1156d73bcd2cSJason Wang channels->rx_count = 0; 1157d73bcd2cSJason Wang channels->tx_count = 0; 1158d73bcd2cSJason Wang channels->other_count = 0; 1159d73bcd2cSJason Wang } 1160d73bcd2cSJason Wang 11610fc0b732SStephen Hemminger static const struct ethtool_ops virtnet_ethtool_ops = { 116266846048SRick Jones .get_drvinfo = virtnet_get_drvinfo, 11639f4d26d0SMark McLoughlin .get_link = ethtool_op_get_link, 11648f9f4668SRick Jones .get_ringparam = virtnet_get_ringparam, 1165d73bcd2cSJason Wang .set_channels = virtnet_set_channels, 1166d73bcd2cSJason Wang .get_channels = virtnet_get_channels, 1167a9ea3fc6SHerbert Xu }; 1168a9ea3fc6SHerbert Xu 116939da5814SMark McLoughlin #define MIN_MTU 68 117039da5814SMark McLoughlin #define MAX_MTU 65535 117139da5814SMark McLoughlin 117239da5814SMark McLoughlin static int virtnet_change_mtu(struct net_device *dev, int new_mtu) 117339da5814SMark McLoughlin { 117439da5814SMark McLoughlin if (new_mtu < MIN_MTU || new_mtu > MAX_MTU) 117539da5814SMark McLoughlin return -EINVAL; 117639da5814SMark McLoughlin dev->mtu = new_mtu; 117739da5814SMark McLoughlin return 0; 117839da5814SMark McLoughlin } 117939da5814SMark McLoughlin 1180986a4f4dSJason Wang /* To avoid contending a lock hold by a vcpu who would exit to host, select the 1181986a4f4dSJason Wang * txq based on the processor id. 1182986a4f4dSJason Wang */ 1183986a4f4dSJason Wang static u16 virtnet_select_queue(struct net_device *dev, struct sk_buff *skb) 1184986a4f4dSJason Wang { 118547be2479SWanlong Gao int txq; 118647be2479SWanlong Gao struct virtnet_info *vi = netdev_priv(dev); 118747be2479SWanlong Gao 118847be2479SWanlong Gao if (skb_rx_queue_recorded(skb)) { 118947be2479SWanlong Gao txq = skb_get_rx_queue(skb); 119047be2479SWanlong Gao } else { 119147be2479SWanlong Gao txq = *__this_cpu_ptr(vi->vq_index); 119247be2479SWanlong Gao if (txq == -1) 119347be2479SWanlong Gao txq = 0; 119447be2479SWanlong Gao } 1195986a4f4dSJason Wang 1196986a4f4dSJason Wang while (unlikely(txq >= dev->real_num_tx_queues)) 1197986a4f4dSJason Wang txq -= dev->real_num_tx_queues; 1198986a4f4dSJason Wang 1199986a4f4dSJason Wang return txq; 1200986a4f4dSJason Wang } 1201986a4f4dSJason Wang 120276288b4eSStephen Hemminger static const struct net_device_ops virtnet_netdev = { 120376288b4eSStephen Hemminger .ndo_open = virtnet_open, 120476288b4eSStephen Hemminger .ndo_stop = virtnet_close, 120576288b4eSStephen Hemminger .ndo_start_xmit = start_xmit, 120676288b4eSStephen Hemminger .ndo_validate_addr = eth_validate_addr, 12079c46f6d4SAlex Williamson .ndo_set_mac_address = virtnet_set_mac_address, 12082af7698eSAlex Williamson .ndo_set_rx_mode = virtnet_set_rx_mode, 120976288b4eSStephen Hemminger .ndo_change_mtu = virtnet_change_mtu, 12103fa2a1dfSstephen hemminger .ndo_get_stats64 = virtnet_stats, 12111824a989SAlex Williamson .ndo_vlan_rx_add_vid = virtnet_vlan_rx_add_vid, 12121824a989SAlex Williamson .ndo_vlan_rx_kill_vid = virtnet_vlan_rx_kill_vid, 1213986a4f4dSJason Wang .ndo_select_queue = virtnet_select_queue, 121476288b4eSStephen Hemminger #ifdef CONFIG_NET_POLL_CONTROLLER 121576288b4eSStephen Hemminger .ndo_poll_controller = virtnet_netpoll, 121676288b4eSStephen Hemminger #endif 121776288b4eSStephen Hemminger }; 121876288b4eSStephen Hemminger 1219586d17c5SJason Wang static void virtnet_config_changed_work(struct work_struct *work) 12209f4d26d0SMark McLoughlin { 1221586d17c5SJason Wang struct virtnet_info *vi = 1222586d17c5SJason Wang container_of(work, struct virtnet_info, config_work); 12239f4d26d0SMark McLoughlin u16 v; 12249f4d26d0SMark McLoughlin 1225586d17c5SJason Wang mutex_lock(&vi->config_lock); 1226586d17c5SJason Wang if (!vi->config_enable) 1227586d17c5SJason Wang goto done; 1228586d17c5SJason Wang 122977dd7693SSasha Levin if (virtio_config_val(vi->vdev, VIRTIO_NET_F_STATUS, 12309f4d26d0SMark McLoughlin offsetof(struct virtio_net_config, status), 123177dd7693SSasha Levin &v) < 0) 1232586d17c5SJason Wang goto done; 1233586d17c5SJason Wang 1234586d17c5SJason Wang if (v & VIRTIO_NET_S_ANNOUNCE) { 1235ee89bab1SAmerigo Wang netdev_notify_peers(vi->dev); 1236586d17c5SJason Wang virtnet_ack_link_announce(vi); 1237586d17c5SJason Wang } 12389f4d26d0SMark McLoughlin 12399f4d26d0SMark McLoughlin /* Ignore unknown (future) status bits */ 12409f4d26d0SMark McLoughlin v &= VIRTIO_NET_S_LINK_UP; 12419f4d26d0SMark McLoughlin 12429f4d26d0SMark McLoughlin if (vi->status == v) 1243586d17c5SJason Wang goto done; 12449f4d26d0SMark McLoughlin 12459f4d26d0SMark McLoughlin vi->status = v; 12469f4d26d0SMark McLoughlin 12479f4d26d0SMark McLoughlin if (vi->status & VIRTIO_NET_S_LINK_UP) { 12489f4d26d0SMark McLoughlin netif_carrier_on(vi->dev); 1249986a4f4dSJason Wang netif_tx_wake_all_queues(vi->dev); 12509f4d26d0SMark McLoughlin } else { 12519f4d26d0SMark McLoughlin netif_carrier_off(vi->dev); 1252986a4f4dSJason Wang netif_tx_stop_all_queues(vi->dev); 12539f4d26d0SMark McLoughlin } 1254586d17c5SJason Wang done: 1255586d17c5SJason Wang mutex_unlock(&vi->config_lock); 12569f4d26d0SMark McLoughlin } 12579f4d26d0SMark McLoughlin 12589f4d26d0SMark McLoughlin static void virtnet_config_changed(struct virtio_device *vdev) 12599f4d26d0SMark McLoughlin { 12609f4d26d0SMark McLoughlin struct virtnet_info *vi = vdev->priv; 12619f4d26d0SMark McLoughlin 12623b07e9caSTejun Heo schedule_work(&vi->config_work); 12639f4d26d0SMark McLoughlin } 12649f4d26d0SMark McLoughlin 1265986a4f4dSJason Wang static void virtnet_free_queues(struct virtnet_info *vi) 1266986a4f4dSJason Wang { 1267986a4f4dSJason Wang kfree(vi->rq); 1268986a4f4dSJason Wang kfree(vi->sq); 1269986a4f4dSJason Wang } 1270986a4f4dSJason Wang 1271986a4f4dSJason Wang static void free_receive_bufs(struct virtnet_info *vi) 1272986a4f4dSJason Wang { 1273986a4f4dSJason Wang int i; 1274986a4f4dSJason Wang 1275986a4f4dSJason Wang for (i = 0; i < vi->max_queue_pairs; i++) { 1276986a4f4dSJason Wang while (vi->rq[i].pages) 1277986a4f4dSJason Wang __free_pages(get_a_page(&vi->rq[i], GFP_KERNEL), 0); 1278986a4f4dSJason Wang } 1279986a4f4dSJason Wang } 1280986a4f4dSJason Wang 1281986a4f4dSJason Wang static void free_unused_bufs(struct virtnet_info *vi) 1282986a4f4dSJason Wang { 1283986a4f4dSJason Wang void *buf; 1284986a4f4dSJason Wang int i; 1285986a4f4dSJason Wang 1286986a4f4dSJason Wang for (i = 0; i < vi->max_queue_pairs; i++) { 1287986a4f4dSJason Wang struct virtqueue *vq = vi->sq[i].vq; 1288986a4f4dSJason Wang while ((buf = virtqueue_detach_unused_buf(vq)) != NULL) 1289986a4f4dSJason Wang dev_kfree_skb(buf); 1290986a4f4dSJason Wang } 1291986a4f4dSJason Wang 1292986a4f4dSJason Wang for (i = 0; i < vi->max_queue_pairs; i++) { 1293986a4f4dSJason Wang struct virtqueue *vq = vi->rq[i].vq; 1294986a4f4dSJason Wang 1295986a4f4dSJason Wang while ((buf = virtqueue_detach_unused_buf(vq)) != NULL) { 1296986a4f4dSJason Wang if (vi->mergeable_rx_bufs || vi->big_packets) 1297986a4f4dSJason Wang give_pages(&vi->rq[i], buf); 1298986a4f4dSJason Wang else 1299986a4f4dSJason Wang dev_kfree_skb(buf); 1300986a4f4dSJason Wang --vi->rq[i].num; 1301986a4f4dSJason Wang } 1302986a4f4dSJason Wang BUG_ON(vi->rq[i].num != 0); 1303986a4f4dSJason Wang } 1304986a4f4dSJason Wang } 1305986a4f4dSJason Wang 1306e9d7417bSJason Wang static void virtnet_del_vqs(struct virtnet_info *vi) 1307e9d7417bSJason Wang { 1308e9d7417bSJason Wang struct virtio_device *vdev = vi->vdev; 1309e9d7417bSJason Wang 13108898c21cSWanlong Gao virtnet_clean_affinity(vi, -1); 1311986a4f4dSJason Wang 1312e9d7417bSJason Wang vdev->config->del_vqs(vdev); 1313986a4f4dSJason Wang 1314986a4f4dSJason Wang virtnet_free_queues(vi); 1315986a4f4dSJason Wang } 1316986a4f4dSJason Wang 1317986a4f4dSJason Wang static int virtnet_find_vqs(struct virtnet_info *vi) 1318986a4f4dSJason Wang { 1319986a4f4dSJason Wang vq_callback_t **callbacks; 1320986a4f4dSJason Wang struct virtqueue **vqs; 1321986a4f4dSJason Wang int ret = -ENOMEM; 1322986a4f4dSJason Wang int i, total_vqs; 1323986a4f4dSJason Wang const char **names; 1324986a4f4dSJason Wang 1325986a4f4dSJason Wang /* We expect 1 RX virtqueue followed by 1 TX virtqueue, followed by 1326986a4f4dSJason Wang * possible N-1 RX/TX queue pairs used in multiqueue mode, followed by 1327986a4f4dSJason Wang * possible control vq. 1328986a4f4dSJason Wang */ 1329986a4f4dSJason Wang total_vqs = vi->max_queue_pairs * 2 + 1330986a4f4dSJason Wang virtio_has_feature(vi->vdev, VIRTIO_NET_F_CTRL_VQ); 1331986a4f4dSJason Wang 1332986a4f4dSJason Wang /* Allocate space for find_vqs parameters */ 1333986a4f4dSJason Wang vqs = kzalloc(total_vqs * sizeof(*vqs), GFP_KERNEL); 1334986a4f4dSJason Wang if (!vqs) 1335986a4f4dSJason Wang goto err_vq; 1336986a4f4dSJason Wang callbacks = kmalloc(total_vqs * sizeof(*callbacks), GFP_KERNEL); 1337986a4f4dSJason Wang if (!callbacks) 1338986a4f4dSJason Wang goto err_callback; 1339986a4f4dSJason Wang names = kmalloc(total_vqs * sizeof(*names), GFP_KERNEL); 1340986a4f4dSJason Wang if (!names) 1341986a4f4dSJason Wang goto err_names; 1342986a4f4dSJason Wang 1343986a4f4dSJason Wang /* Parameters for control virtqueue, if any */ 1344986a4f4dSJason Wang if (vi->has_cvq) { 1345986a4f4dSJason Wang callbacks[total_vqs - 1] = NULL; 1346986a4f4dSJason Wang names[total_vqs - 1] = "control"; 1347986a4f4dSJason Wang } 1348986a4f4dSJason Wang 1349986a4f4dSJason Wang /* Allocate/initialize parameters for send/receive virtqueues */ 1350986a4f4dSJason Wang for (i = 0; i < vi->max_queue_pairs; i++) { 1351986a4f4dSJason Wang callbacks[rxq2vq(i)] = skb_recv_done; 1352986a4f4dSJason Wang callbacks[txq2vq(i)] = skb_xmit_done; 1353986a4f4dSJason Wang sprintf(vi->rq[i].name, "input.%d", i); 1354986a4f4dSJason Wang sprintf(vi->sq[i].name, "output.%d", i); 1355986a4f4dSJason Wang names[rxq2vq(i)] = vi->rq[i].name; 1356986a4f4dSJason Wang names[txq2vq(i)] = vi->sq[i].name; 1357986a4f4dSJason Wang } 1358986a4f4dSJason Wang 1359986a4f4dSJason Wang ret = vi->vdev->config->find_vqs(vi->vdev, total_vqs, vqs, callbacks, 1360986a4f4dSJason Wang names); 1361986a4f4dSJason Wang if (ret) 1362986a4f4dSJason Wang goto err_find; 1363986a4f4dSJason Wang 1364986a4f4dSJason Wang if (vi->has_cvq) { 1365986a4f4dSJason Wang vi->cvq = vqs[total_vqs - 1]; 1366986a4f4dSJason Wang if (virtio_has_feature(vi->vdev, VIRTIO_NET_F_CTRL_VLAN)) 1367986a4f4dSJason Wang vi->dev->features |= NETIF_F_HW_VLAN_FILTER; 1368986a4f4dSJason Wang } 1369986a4f4dSJason Wang 1370986a4f4dSJason Wang for (i = 0; i < vi->max_queue_pairs; i++) { 1371986a4f4dSJason Wang vi->rq[i].vq = vqs[rxq2vq(i)]; 1372986a4f4dSJason Wang vi->sq[i].vq = vqs[txq2vq(i)]; 1373986a4f4dSJason Wang } 1374986a4f4dSJason Wang 1375986a4f4dSJason Wang kfree(names); 1376986a4f4dSJason Wang kfree(callbacks); 1377986a4f4dSJason Wang kfree(vqs); 1378986a4f4dSJason Wang 1379986a4f4dSJason Wang return 0; 1380986a4f4dSJason Wang 1381986a4f4dSJason Wang err_find: 1382986a4f4dSJason Wang kfree(names); 1383986a4f4dSJason Wang err_names: 1384986a4f4dSJason Wang kfree(callbacks); 1385986a4f4dSJason Wang err_callback: 1386986a4f4dSJason Wang kfree(vqs); 1387986a4f4dSJason Wang err_vq: 1388986a4f4dSJason Wang return ret; 1389986a4f4dSJason Wang } 1390986a4f4dSJason Wang 1391986a4f4dSJason Wang static int virtnet_alloc_queues(struct virtnet_info *vi) 1392986a4f4dSJason Wang { 1393986a4f4dSJason Wang int i; 1394986a4f4dSJason Wang 1395986a4f4dSJason Wang vi->sq = kzalloc(sizeof(*vi->sq) * vi->max_queue_pairs, GFP_KERNEL); 1396986a4f4dSJason Wang if (!vi->sq) 1397986a4f4dSJason Wang goto err_sq; 1398986a4f4dSJason Wang vi->rq = kzalloc(sizeof(*vi->rq) * vi->max_queue_pairs, GFP_KERNEL); 1399008d4278SAmerigo Wang if (!vi->rq) 1400986a4f4dSJason Wang goto err_rq; 1401986a4f4dSJason Wang 1402986a4f4dSJason Wang INIT_DELAYED_WORK(&vi->refill, refill_work); 1403986a4f4dSJason Wang for (i = 0; i < vi->max_queue_pairs; i++) { 1404986a4f4dSJason Wang vi->rq[i].pages = NULL; 1405986a4f4dSJason Wang netif_napi_add(vi->dev, &vi->rq[i].napi, virtnet_poll, 1406986a4f4dSJason Wang napi_weight); 1407986a4f4dSJason Wang 1408986a4f4dSJason Wang sg_init_table(vi->rq[i].sg, ARRAY_SIZE(vi->rq[i].sg)); 1409986a4f4dSJason Wang sg_init_table(vi->sq[i].sg, ARRAY_SIZE(vi->sq[i].sg)); 1410986a4f4dSJason Wang } 1411986a4f4dSJason Wang 1412986a4f4dSJason Wang return 0; 1413986a4f4dSJason Wang 1414986a4f4dSJason Wang err_rq: 1415986a4f4dSJason Wang kfree(vi->sq); 1416986a4f4dSJason Wang err_sq: 1417986a4f4dSJason Wang return -ENOMEM; 1418e9d7417bSJason Wang } 1419e9d7417bSJason Wang 14203f9c10b0SAmit Shah static int init_vqs(struct virtnet_info *vi) 14213f9c10b0SAmit Shah { 1422986a4f4dSJason Wang int ret; 14233f9c10b0SAmit Shah 1424986a4f4dSJason Wang /* Allocate send & receive queues */ 1425986a4f4dSJason Wang ret = virtnet_alloc_queues(vi); 1426986a4f4dSJason Wang if (ret) 1427986a4f4dSJason Wang goto err; 14283f9c10b0SAmit Shah 1429986a4f4dSJason Wang ret = virtnet_find_vqs(vi); 1430986a4f4dSJason Wang if (ret) 1431986a4f4dSJason Wang goto err_free; 14323f9c10b0SAmit Shah 143347be2479SWanlong Gao get_online_cpus(); 14348898c21cSWanlong Gao virtnet_set_affinity(vi); 143547be2479SWanlong Gao put_online_cpus(); 143647be2479SWanlong Gao 14373f9c10b0SAmit Shah return 0; 1438986a4f4dSJason Wang 1439986a4f4dSJason Wang err_free: 1440986a4f4dSJason Wang virtnet_free_queues(vi); 1441986a4f4dSJason Wang err: 1442986a4f4dSJason Wang return ret; 14433f9c10b0SAmit Shah } 14443f9c10b0SAmit Shah 1445296f96fcSRusty Russell static int virtnet_probe(struct virtio_device *vdev) 1446296f96fcSRusty Russell { 1447986a4f4dSJason Wang int i, err; 1448296f96fcSRusty Russell struct net_device *dev; 1449296f96fcSRusty Russell struct virtnet_info *vi; 1450986a4f4dSJason Wang u16 max_queue_pairs; 1451986a4f4dSJason Wang 1452986a4f4dSJason Wang /* Find if host supports multiqueue virtio_net device */ 1453986a4f4dSJason Wang err = virtio_config_val(vdev, VIRTIO_NET_F_MQ, 1454986a4f4dSJason Wang offsetof(struct virtio_net_config, 1455986a4f4dSJason Wang max_virtqueue_pairs), &max_queue_pairs); 1456986a4f4dSJason Wang 1457986a4f4dSJason Wang /* We need at least 2 queue's */ 1458986a4f4dSJason Wang if (err || max_queue_pairs < VIRTIO_NET_CTRL_MQ_VQ_PAIRS_MIN || 1459986a4f4dSJason Wang max_queue_pairs > VIRTIO_NET_CTRL_MQ_VQ_PAIRS_MAX || 1460986a4f4dSJason Wang !virtio_has_feature(vdev, VIRTIO_NET_F_CTRL_VQ)) 1461986a4f4dSJason Wang max_queue_pairs = 1; 1462296f96fcSRusty Russell 1463296f96fcSRusty Russell /* Allocate ourselves a network device with room for our info */ 1464986a4f4dSJason Wang dev = alloc_etherdev_mq(sizeof(struct virtnet_info), max_queue_pairs); 1465296f96fcSRusty Russell if (!dev) 1466296f96fcSRusty Russell return -ENOMEM; 1467296f96fcSRusty Russell 1468296f96fcSRusty Russell /* Set up network device as normal. */ 1469f2f2c8b4SJiri Pirko dev->priv_flags |= IFF_UNICAST_FLT | IFF_LIVE_ADDR_CHANGE; 147076288b4eSStephen Hemminger dev->netdev_ops = &virtnet_netdev; 1471296f96fcSRusty Russell dev->features = NETIF_F_HIGHDMA; 14723fa2a1dfSstephen hemminger 1473a9ea3fc6SHerbert Xu SET_ETHTOOL_OPS(dev, &virtnet_ethtool_ops); 1474296f96fcSRusty Russell SET_NETDEV_DEV(dev, &vdev->dev); 1475296f96fcSRusty Russell 1476296f96fcSRusty Russell /* Do we support "hardware" checksums? */ 147798e778c9SMichał Mirosław if (virtio_has_feature(vdev, VIRTIO_NET_F_CSUM)) { 1478296f96fcSRusty Russell /* This opens up the world of extra features. */ 147998e778c9SMichał Mirosław dev->hw_features |= NETIF_F_HW_CSUM|NETIF_F_SG|NETIF_F_FRAGLIST; 148098e778c9SMichał Mirosław if (csum) 1481296f96fcSRusty Russell dev->features |= NETIF_F_HW_CSUM|NETIF_F_SG|NETIF_F_FRAGLIST; 148298e778c9SMichał Mirosław 148398e778c9SMichał Mirosław if (virtio_has_feature(vdev, VIRTIO_NET_F_GSO)) { 148498e778c9SMichał Mirosław dev->hw_features |= NETIF_F_TSO | NETIF_F_UFO 148534a48579SRusty Russell | NETIF_F_TSO_ECN | NETIF_F_TSO6; 148634a48579SRusty Russell } 14875539ae96SRusty Russell /* Individual feature bits: what can host handle? */ 148898e778c9SMichał Mirosław if (virtio_has_feature(vdev, VIRTIO_NET_F_HOST_TSO4)) 148998e778c9SMichał Mirosław dev->hw_features |= NETIF_F_TSO; 149098e778c9SMichał Mirosław if (virtio_has_feature(vdev, VIRTIO_NET_F_HOST_TSO6)) 149198e778c9SMichał Mirosław dev->hw_features |= NETIF_F_TSO6; 149298e778c9SMichał Mirosław if (virtio_has_feature(vdev, VIRTIO_NET_F_HOST_ECN)) 149398e778c9SMichał Mirosław dev->hw_features |= NETIF_F_TSO_ECN; 149498e778c9SMichał Mirosław if (virtio_has_feature(vdev, VIRTIO_NET_F_HOST_UFO)) 149598e778c9SMichał Mirosław dev->hw_features |= NETIF_F_UFO; 149698e778c9SMichał Mirosław 149798e778c9SMichał Mirosław if (gso) 149898e778c9SMichał Mirosław dev->features |= dev->hw_features & (NETIF_F_ALL_TSO|NETIF_F_UFO); 149998e778c9SMichał Mirosław /* (!csum && gso) case will be fixed by register_netdev() */ 1500296f96fcSRusty Russell } 1501296f96fcSRusty Russell 1502296f96fcSRusty Russell /* Configuration may specify what MAC to use. Otherwise random. */ 150377dd7693SSasha Levin if (virtio_config_val_len(vdev, VIRTIO_NET_F_MAC, 1504a586d4f6SRusty Russell offsetof(struct virtio_net_config, mac), 150577dd7693SSasha Levin dev->dev_addr, dev->addr_len) < 0) 1506f2cedb63SDanny Kukawka eth_hw_addr_random(dev); 1507296f96fcSRusty Russell 1508296f96fcSRusty Russell /* Set up our device-specific information */ 1509296f96fcSRusty Russell vi = netdev_priv(dev); 1510296f96fcSRusty Russell vi->dev = dev; 1511296f96fcSRusty Russell vi->vdev = vdev; 1512d9d5dcc8SChristian Borntraeger vdev->priv = vi; 15133fa2a1dfSstephen hemminger vi->stats = alloc_percpu(struct virtnet_stats); 15143fa2a1dfSstephen hemminger err = -ENOMEM; 15153fa2a1dfSstephen hemminger if (vi->stats == NULL) 15163fa2a1dfSstephen hemminger goto free; 15173fa2a1dfSstephen hemminger 151847be2479SWanlong Gao vi->vq_index = alloc_percpu(int); 151947be2479SWanlong Gao if (vi->vq_index == NULL) 152047be2479SWanlong Gao goto free_stats; 152147be2479SWanlong Gao 1522586d17c5SJason Wang mutex_init(&vi->config_lock); 1523586d17c5SJason Wang vi->config_enable = true; 1524586d17c5SJason Wang INIT_WORK(&vi->config_work, virtnet_config_changed_work); 1525296f96fcSRusty Russell 152697402b96SHerbert Xu /* If we can receive ANY GSO packets, we must allocate large ones. */ 15278e95a202SJoe Perches if (virtio_has_feature(vdev, VIRTIO_NET_F_GUEST_TSO4) || 15288e95a202SJoe Perches virtio_has_feature(vdev, VIRTIO_NET_F_GUEST_TSO6) || 15298e95a202SJoe Perches virtio_has_feature(vdev, VIRTIO_NET_F_GUEST_ECN)) 153097402b96SHerbert Xu vi->big_packets = true; 153197402b96SHerbert Xu 15323f2c31d9SMark McLoughlin if (virtio_has_feature(vdev, VIRTIO_NET_F_MRG_RXBUF)) 15333f2c31d9SMark McLoughlin vi->mergeable_rx_bufs = true; 15343f2c31d9SMark McLoughlin 1535986a4f4dSJason Wang if (virtio_has_feature(vdev, VIRTIO_NET_F_CTRL_VQ)) 1536986a4f4dSJason Wang vi->has_cvq = true; 1537986a4f4dSJason Wang 1538986a4f4dSJason Wang /* Use single tx/rx queue pair as default */ 1539986a4f4dSJason Wang vi->curr_queue_pairs = 1; 1540986a4f4dSJason Wang vi->max_queue_pairs = max_queue_pairs; 1541986a4f4dSJason Wang 1542986a4f4dSJason Wang /* Allocate/initialize the rx/tx queues, and invoke find_vqs */ 15433f9c10b0SAmit Shah err = init_vqs(vi); 1544d2a7dddaSMichael S. Tsirkin if (err) 154547be2479SWanlong Gao goto free_index; 1546d2a7dddaSMichael S. Tsirkin 1547986a4f4dSJason Wang netif_set_real_num_tx_queues(dev, 1); 1548986a4f4dSJason Wang netif_set_real_num_rx_queues(dev, 1); 1549986a4f4dSJason Wang 1550296f96fcSRusty Russell err = register_netdev(dev); 1551296f96fcSRusty Russell if (err) { 1552296f96fcSRusty Russell pr_debug("virtio_net: registering device failed\n"); 1553d2a7dddaSMichael S. Tsirkin goto free_vqs; 1554296f96fcSRusty Russell } 1555b3369c1fSRusty Russell 1556b3369c1fSRusty Russell /* Last of all, set up some receive buffers. */ 1557986a4f4dSJason Wang for (i = 0; i < vi->max_queue_pairs; i++) { 1558986a4f4dSJason Wang try_fill_recv(&vi->rq[i], GFP_KERNEL); 1559b3369c1fSRusty Russell 1560b3369c1fSRusty Russell /* If we didn't even get one input buffer, we're useless. */ 1561986a4f4dSJason Wang if (vi->rq[i].num == 0) { 1562986a4f4dSJason Wang free_unused_bufs(vi); 1563b3369c1fSRusty Russell err = -ENOMEM; 1564986a4f4dSJason Wang goto free_recv_bufs; 1565986a4f4dSJason Wang } 1566b3369c1fSRusty Russell } 1567b3369c1fSRusty Russell 1568*8de4b2f3SWanlong Gao vi->nb.notifier_call = &virtnet_cpu_callback; 1569*8de4b2f3SWanlong Gao err = register_hotcpu_notifier(&vi->nb); 1570*8de4b2f3SWanlong Gao if (err) { 1571*8de4b2f3SWanlong Gao pr_debug("virtio_net: registering cpu notifier failed\n"); 1572*8de4b2f3SWanlong Gao goto free_recv_bufs; 1573*8de4b2f3SWanlong Gao } 1574*8de4b2f3SWanlong Gao 1575167c25e4SJason Wang /* Assume link up if device can't report link status, 1576167c25e4SJason Wang otherwise get link status from config. */ 1577167c25e4SJason Wang if (virtio_has_feature(vi->vdev, VIRTIO_NET_F_STATUS)) { 1578167c25e4SJason Wang netif_carrier_off(dev); 15793b07e9caSTejun Heo schedule_work(&vi->config_work); 1580167c25e4SJason Wang } else { 1581167c25e4SJason Wang vi->status = VIRTIO_NET_S_LINK_UP; 15824783256eSPantelis Koukousoulas netif_carrier_on(dev); 1583167c25e4SJason Wang } 15849f4d26d0SMark McLoughlin 1585986a4f4dSJason Wang pr_debug("virtnet: registered device %s with %d RX and TX vq's\n", 1586986a4f4dSJason Wang dev->name, max_queue_pairs); 1587986a4f4dSJason Wang 1588296f96fcSRusty Russell return 0; 1589296f96fcSRusty Russell 1590986a4f4dSJason Wang free_recv_bufs: 1591986a4f4dSJason Wang free_receive_bufs(vi); 1592b3369c1fSRusty Russell unregister_netdev(dev); 1593d2a7dddaSMichael S. Tsirkin free_vqs: 1594986a4f4dSJason Wang cancel_delayed_work_sync(&vi->refill); 1595e9d7417bSJason Wang virtnet_del_vqs(vi); 159647be2479SWanlong Gao free_index: 159747be2479SWanlong Gao free_percpu(vi->vq_index); 15983fa2a1dfSstephen hemminger free_stats: 15993fa2a1dfSstephen hemminger free_percpu(vi->stats); 1600296f96fcSRusty Russell free: 1601296f96fcSRusty Russell free_netdev(dev); 1602296f96fcSRusty Russell return err; 1603296f96fcSRusty Russell } 1604296f96fcSRusty Russell 160504486ed0SAmit Shah static void remove_vq_common(struct virtnet_info *vi) 1606296f96fcSRusty Russell { 160704486ed0SAmit Shah vi->vdev->config->reset(vi->vdev); 1608830a8a97SShirley Ma 1609830a8a97SShirley Ma /* Free unused buffers in both send and recv, if any. */ 16109ab86bbcSShirley Ma free_unused_bufs(vi); 1611fb6813f4SRusty Russell 1612986a4f4dSJason Wang free_receive_bufs(vi); 1613d2a7dddaSMichael S. Tsirkin 1614986a4f4dSJason Wang virtnet_del_vqs(vi); 161504486ed0SAmit Shah } 161604486ed0SAmit Shah 16178cc085d6SBill Pemberton static void virtnet_remove(struct virtio_device *vdev) 161804486ed0SAmit Shah { 161904486ed0SAmit Shah struct virtnet_info *vi = vdev->priv; 162004486ed0SAmit Shah 1621*8de4b2f3SWanlong Gao unregister_hotcpu_notifier(&vi->nb); 1622*8de4b2f3SWanlong Gao 1623586d17c5SJason Wang /* Prevent config work handler from accessing the device. */ 1624586d17c5SJason Wang mutex_lock(&vi->config_lock); 1625586d17c5SJason Wang vi->config_enable = false; 1626586d17c5SJason Wang mutex_unlock(&vi->config_lock); 1627586d17c5SJason Wang 162804486ed0SAmit Shah unregister_netdev(vi->dev); 162904486ed0SAmit Shah 163004486ed0SAmit Shah remove_vq_common(vi); 1631fb6813f4SRusty Russell 1632586d17c5SJason Wang flush_work(&vi->config_work); 1633586d17c5SJason Wang 163447be2479SWanlong Gao free_percpu(vi->vq_index); 16352e66f55bSKrishna Kumar free_percpu(vi->stats); 163674b2553fSRusty Russell free_netdev(vi->dev); 1637296f96fcSRusty Russell } 1638296f96fcSRusty Russell 16390741bcb5SAmit Shah #ifdef CONFIG_PM 16400741bcb5SAmit Shah static int virtnet_freeze(struct virtio_device *vdev) 16410741bcb5SAmit Shah { 16420741bcb5SAmit Shah struct virtnet_info *vi = vdev->priv; 1643986a4f4dSJason Wang int i; 16440741bcb5SAmit Shah 1645586d17c5SJason Wang /* Prevent config work handler from accessing the device */ 1646586d17c5SJason Wang mutex_lock(&vi->config_lock); 1647586d17c5SJason Wang vi->config_enable = false; 1648586d17c5SJason Wang mutex_unlock(&vi->config_lock); 1649586d17c5SJason Wang 16500741bcb5SAmit Shah netif_device_detach(vi->dev); 16510741bcb5SAmit Shah cancel_delayed_work_sync(&vi->refill); 16520741bcb5SAmit Shah 16530741bcb5SAmit Shah if (netif_running(vi->dev)) 1654986a4f4dSJason Wang for (i = 0; i < vi->max_queue_pairs; i++) { 1655986a4f4dSJason Wang napi_disable(&vi->rq[i].napi); 1656986a4f4dSJason Wang netif_napi_del(&vi->rq[i].napi); 1657986a4f4dSJason Wang } 16580741bcb5SAmit Shah 16590741bcb5SAmit Shah remove_vq_common(vi); 16600741bcb5SAmit Shah 1661586d17c5SJason Wang flush_work(&vi->config_work); 1662586d17c5SJason Wang 16630741bcb5SAmit Shah return 0; 16640741bcb5SAmit Shah } 16650741bcb5SAmit Shah 16660741bcb5SAmit Shah static int virtnet_restore(struct virtio_device *vdev) 16670741bcb5SAmit Shah { 16680741bcb5SAmit Shah struct virtnet_info *vi = vdev->priv; 1669986a4f4dSJason Wang int err, i; 16700741bcb5SAmit Shah 16710741bcb5SAmit Shah err = init_vqs(vi); 16720741bcb5SAmit Shah if (err) 16730741bcb5SAmit Shah return err; 16740741bcb5SAmit Shah 16750741bcb5SAmit Shah if (netif_running(vi->dev)) 1676986a4f4dSJason Wang for (i = 0; i < vi->max_queue_pairs; i++) 1677986a4f4dSJason Wang virtnet_napi_enable(&vi->rq[i]); 16780741bcb5SAmit Shah 16790741bcb5SAmit Shah netif_device_attach(vi->dev); 16800741bcb5SAmit Shah 1681986a4f4dSJason Wang for (i = 0; i < vi->max_queue_pairs; i++) 1682986a4f4dSJason Wang if (!try_fill_recv(&vi->rq[i], GFP_KERNEL)) 16833b07e9caSTejun Heo schedule_delayed_work(&vi->refill, 0); 16840741bcb5SAmit Shah 1685586d17c5SJason Wang mutex_lock(&vi->config_lock); 1686586d17c5SJason Wang vi->config_enable = true; 1687586d17c5SJason Wang mutex_unlock(&vi->config_lock); 1688586d17c5SJason Wang 1689986a4f4dSJason Wang virtnet_set_queues(vi, vi->curr_queue_pairs); 1690986a4f4dSJason Wang 16910741bcb5SAmit Shah return 0; 16920741bcb5SAmit Shah } 16930741bcb5SAmit Shah #endif 16940741bcb5SAmit Shah 1695296f96fcSRusty Russell static struct virtio_device_id id_table[] = { 1696296f96fcSRusty Russell { VIRTIO_ID_NET, VIRTIO_DEV_ANY_ID }, 1697296f96fcSRusty Russell { 0 }, 1698296f96fcSRusty Russell }; 1699296f96fcSRusty Russell 1700c45a6816SRusty Russell static unsigned int features[] = { 17015e4fe5c4SMark McLoughlin VIRTIO_NET_F_CSUM, VIRTIO_NET_F_GUEST_CSUM, 17025e4fe5c4SMark McLoughlin VIRTIO_NET_F_GSO, VIRTIO_NET_F_MAC, 1703c45a6816SRusty Russell VIRTIO_NET_F_HOST_TSO4, VIRTIO_NET_F_HOST_UFO, VIRTIO_NET_F_HOST_TSO6, 170497402b96SHerbert Xu VIRTIO_NET_F_HOST_ECN, VIRTIO_NET_F_GUEST_TSO4, VIRTIO_NET_F_GUEST_TSO6, 17055c516751SSridhar Samudrala VIRTIO_NET_F_GUEST_ECN, VIRTIO_NET_F_GUEST_UFO, 17062a41f71dSAlex Williamson VIRTIO_NET_F_MRG_RXBUF, VIRTIO_NET_F_STATUS, VIRTIO_NET_F_CTRL_VQ, 17070bde9569SAlex Williamson VIRTIO_NET_F_CTRL_RX, VIRTIO_NET_F_CTRL_VLAN, 1708986a4f4dSJason Wang VIRTIO_NET_F_GUEST_ANNOUNCE, VIRTIO_NET_F_MQ, 1709c45a6816SRusty Russell }; 1710c45a6816SRusty Russell 171122402529SUwe Kleine-König static struct virtio_driver virtio_net_driver = { 1712c45a6816SRusty Russell .feature_table = features, 1713c45a6816SRusty Russell .feature_table_size = ARRAY_SIZE(features), 1714296f96fcSRusty Russell .driver.name = KBUILD_MODNAME, 1715296f96fcSRusty Russell .driver.owner = THIS_MODULE, 1716296f96fcSRusty Russell .id_table = id_table, 1717296f96fcSRusty Russell .probe = virtnet_probe, 17188cc085d6SBill Pemberton .remove = virtnet_remove, 17199f4d26d0SMark McLoughlin .config_changed = virtnet_config_changed, 17200741bcb5SAmit Shah #ifdef CONFIG_PM 17210741bcb5SAmit Shah .freeze = virtnet_freeze, 17220741bcb5SAmit Shah .restore = virtnet_restore, 17230741bcb5SAmit Shah #endif 1724296f96fcSRusty Russell }; 1725296f96fcSRusty Russell 1726296f96fcSRusty Russell static int __init init(void) 1727296f96fcSRusty Russell { 172822402529SUwe Kleine-König return register_virtio_driver(&virtio_net_driver); 1729296f96fcSRusty Russell } 1730296f96fcSRusty Russell 1731296f96fcSRusty Russell static void __exit fini(void) 1732296f96fcSRusty Russell { 173322402529SUwe Kleine-König unregister_virtio_driver(&virtio_net_driver); 1734296f96fcSRusty Russell } 1735296f96fcSRusty Russell module_init(init); 1736296f96fcSRusty Russell module_exit(fini); 1737296f96fcSRusty Russell 1738296f96fcSRusty Russell MODULE_DEVICE_TABLE(virtio, id_table); 1739296f96fcSRusty Russell MODULE_DESCRIPTION("Virtio network driver"); 1740296f96fcSRusty Russell MODULE_LICENSE("GPL"); 1741