blob: b69c3a4d1e9e41c72c6044ffb5299316b768966f [file] [log] [blame]
Hank Janssenfceaf242009-07-13 15:34:54 -07001/*
Hank Janssenfceaf242009-07-13 15:34:54 -07002 * Copyright (c) 2009, Microsoft Corporation.
3 *
4 * This program is free software; you can redistribute it and/or modify it
5 * under the terms and conditions of the GNU General Public License,
6 * version 2, as published by the Free Software Foundation.
7 *
8 * This program is distributed in the hope it will be useful, but WITHOUT
9 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
10 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
11 * more details.
12 *
13 * You should have received a copy of the GNU General Public License along with
14 * this program; if not, write to the Free Software Foundation, Inc., 59 Temple
15 * Place - Suite 330, Boston, MA 02111-1307 USA.
16 *
17 * Authors:
Haiyang Zhangd0e94d12009-11-23 17:00:22 +000018 * Haiyang Zhang <haiyangz@microsoft.com>
Hank Janssenfceaf242009-07-13 15:34:54 -070019 * Hank Janssen <hjanssen@microsoft.com>
Hank Janssenfceaf242009-07-13 15:34:54 -070020 */
Hank Jansseneb335bc2011-03-29 13:58:48 -070021#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
22
Hank Janssenfceaf242009-07-13 15:34:54 -070023#include <linux/init.h>
K. Y. Srinivasan9079ce62011-06-16 13:16:37 -070024#include <linux/atomic.h>
Hank Janssenfceaf242009-07-13 15:34:54 -070025#include <linux/module.h>
26#include <linux/highmem.h>
27#include <linux/device.h>
Hank Janssenfceaf242009-07-13 15:34:54 -070028#include <linux/io.h>
Hank Janssenfceaf242009-07-13 15:34:54 -070029#include <linux/delay.h>
30#include <linux/netdevice.h>
31#include <linux/inetdevice.h>
32#include <linux/etherdevice.h>
33#include <linux/skbuff.h>
34#include <linux/in.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090035#include <linux/slab.h>
Hank Janssenfceaf242009-07-13 15:34:54 -070036#include <net/arp.h>
37#include <net/route.h>
38#include <net/sock.h>
39#include <net/pkt_sched.h>
K. Y. Srinivasan3f335ea2011-05-12 19:34:15 -070040
K. Y. Srinivasan5ca72522011-05-12 19:34:37 -070041#include "hyperv_net.h"
Hank Janssenfceaf242009-07-13 15:34:54 -070042
Hank Janssenfceaf242009-07-13 15:34:54 -070043struct net_device_context {
Greg Kroah-Hartman02fafbc2009-08-31 21:09:45 -070044 /* point back to our device context */
K. Y. Srinivasan6bad88d2011-03-07 13:35:48 -080045 struct hv_device *device_ctx;
K. Y. Srinivasan9079ce62011-06-16 13:16:37 -070046 atomic_t avail;
Haiyang Zhang122a5f62011-05-27 06:21:55 -070047 struct delayed_work dwork;
Hank Janssenfceaf242009-07-13 15:34:54 -070048};
49
Hank Janssenfceaf242009-07-13 15:34:54 -070050
Stephen Hemmingerb220f5f2010-05-04 09:58:56 -070051#define PACKET_PAGES_LOWATER 8
52/* Need this many pages to handle worst case fragmented packet */
53#define PACKET_PAGES_HIWATER (MAX_SKB_FRAGS + 2)
54
Hank Janssen99c8da02010-10-12 10:45:23 -070055static int ring_size = 128;
Stephen Hemminger450d7a42010-05-04 09:58:53 -070056module_param(ring_size, int, S_IRUGO);
57MODULE_PARM_DESC(ring_size, "Ring buffer size (# of pages)");
Hank Janssenfceaf242009-07-13 15:34:54 -070058
Haiyang Zhangd426b2e2011-11-30 07:19:08 -080059struct set_multicast_work {
60 struct work_struct work;
61 struct net_device *net;
62};
63
64static void do_set_multicast(struct work_struct *w)
65{
66 struct set_multicast_work *swk =
67 container_of(w, struct set_multicast_work, work);
68 struct net_device *net = swk->net;
69
70 struct net_device_context *ndevctx = netdev_priv(net);
71 struct netvsc_device *nvdev;
72 struct rndis_device *rdev;
73
74 nvdev = hv_get_drvdata(ndevctx->device_ctx);
75 if (nvdev == NULL)
76 return;
77
78 rdev = nvdev->extension;
79 if (rdev == NULL)
80 return;
81
82 if (net->flags & IFF_PROMISC)
83 rndis_filter_set_packet_filter(rdev,
84 NDIS_PACKET_TYPE_PROMISCUOUS);
85 else
86 rndis_filter_set_packet_filter(rdev,
87 NDIS_PACKET_TYPE_BROADCAST |
88 NDIS_PACKET_TYPE_ALL_MULTICAST |
89 NDIS_PACKET_TYPE_DIRECTED);
90
91 kfree(w);
92}
93
Greg Kroah-Hartman4e9bfef2009-07-15 12:45:20 -070094static void netvsc_set_multicast_list(struct net_device *net)
Hank Janssenfceaf242009-07-13 15:34:54 -070095{
Haiyang Zhangd426b2e2011-11-30 07:19:08 -080096 struct set_multicast_work *swk =
97 kmalloc(sizeof(struct set_multicast_work), GFP_ATOMIC);
98 if (swk == NULL)
99 return;
100
101 swk->net = net;
102 INIT_WORK(&swk->work, do_set_multicast);
103 schedule_work(&swk->work);
Hank Janssenfceaf242009-07-13 15:34:54 -0700104}
105
Hank Janssenfceaf242009-07-13 15:34:54 -0700106static int netvsc_open(struct net_device *net)
107{
Hank Janssenfceaf242009-07-13 15:34:54 -0700108 struct net_device_context *net_device_ctx = netdev_priv(net);
K. Y. Srinivasan6bad88d2011-03-07 13:35:48 -0800109 struct hv_device *device_obj = net_device_ctx->device_ctx;
Greg Kroah-Hartman02fafbc2009-08-31 21:09:45 -0700110 int ret = 0;
Hank Janssenfceaf242009-07-13 15:34:54 -0700111
Haiyang Zhangd515d0f2011-09-28 13:24:15 -0700112 /* Open up the device */
113 ret = rndis_filter_open(device_obj);
114 if (ret != 0) {
115 netdev_err(net, "unable to open device (ret %d).\n", ret);
116 return ret;
Hank Janssenfceaf242009-07-13 15:34:54 -0700117 }
118
Haiyang Zhangd515d0f2011-09-28 13:24:15 -0700119 netif_start_queue(net);
120
Hank Janssenfceaf242009-07-13 15:34:54 -0700121 return ret;
122}
123
Hank Janssenfceaf242009-07-13 15:34:54 -0700124static int netvsc_close(struct net_device *net)
125{
Hank Janssenfceaf242009-07-13 15:34:54 -0700126 struct net_device_context *net_device_ctx = netdev_priv(net);
K. Y. Srinivasan6bad88d2011-03-07 13:35:48 -0800127 struct hv_device *device_obj = net_device_ctx->device_ctx;
Greg Kroah-Hartman02fafbc2009-08-31 21:09:45 -0700128 int ret;
Hank Janssenfceaf242009-07-13 15:34:54 -0700129
Hank Janssenfceaf242009-07-13 15:34:54 -0700130 netif_stop_queue(net);
131
Haiyang Zhang9c26aa02010-12-10 12:03:57 -0800132 ret = rndis_filter_close(device_obj);
Hank Janssenfceaf242009-07-13 15:34:54 -0700133 if (ret != 0)
Hank Jansseneb335bc2011-03-29 13:58:48 -0700134 netdev_err(net, "unable to close device (ret %d).\n", ret);
Hank Janssenfceaf242009-07-13 15:34:54 -0700135
Hank Janssenfceaf242009-07-13 15:34:54 -0700136 return ret;
137}
138
Hank Janssenfceaf242009-07-13 15:34:54 -0700139static void netvsc_xmit_completion(void *context)
140{
Nicolas Palix4193d4f2009-07-29 14:10:10 +0200141 struct hv_netvsc_packet *packet = (struct hv_netvsc_packet *)context;
Greg Kroah-Hartman02fafbc2009-08-31 21:09:45 -0700142 struct sk_buff *skb = (struct sk_buff *)
Haiyang Zhang72a2f5b2010-12-10 12:03:58 -0800143 (unsigned long)packet->completion.send.send_completion_tid;
Hank Janssenfceaf242009-07-13 15:34:54 -0700144
Hank Janssenfceaf242009-07-13 15:34:54 -0700145 kfree(packet);
146
Greg Kroah-Hartman02fafbc2009-08-31 21:09:45 -0700147 if (skb) {
Stephen Hemminger7880fc52010-05-04 09:58:52 -0700148 struct net_device *net = skb->dev;
Stephen Hemmingerb220f5f2010-05-04 09:58:56 -0700149 struct net_device_context *net_device_ctx = netdev_priv(net);
150 unsigned int num_pages = skb_shinfo(skb)->nr_frags + 2;
151
Hank Janssenfceaf242009-07-13 15:34:54 -0700152 dev_kfree_skb_any(skb);
153
K. Y. Srinivasan9079ce62011-06-16 13:16:37 -0700154 atomic_add(num_pages, &net_device_ctx->avail);
155 if (atomic_read(&net_device_ctx->avail) >=
156 PACKET_PAGES_HIWATER)
Haiyang Zhange4d59ac2011-06-17 07:58:04 -0700157 netif_wake_queue(net);
Hank Janssenfceaf242009-07-13 15:34:54 -0700158 }
Hank Janssenfceaf242009-07-13 15:34:54 -0700159}
160
Greg Kroah-Hartman02fafbc2009-08-31 21:09:45 -0700161static int netvsc_start_xmit(struct sk_buff *skb, struct net_device *net)
Hank Janssenfceaf242009-07-13 15:34:54 -0700162{
Hank Janssenfceaf242009-07-13 15:34:54 -0700163 struct net_device_context *net_device_ctx = netdev_priv(net);
Nicolas Palix4193d4f2009-07-29 14:10:10 +0200164 struct hv_netvsc_packet *packet;
Greg Kroah-Hartman02fafbc2009-08-31 21:09:45 -0700165 int ret;
Stephen Hemminger60487182010-05-04 09:58:55 -0700166 unsigned int i, num_pages;
Hank Janssenfceaf242009-07-13 15:34:54 -0700167
Stephen Hemminger60487182010-05-04 09:58:55 -0700168 /* Add 1 for skb->data and additional one for RNDIS */
169 num_pages = skb_shinfo(skb)->nr_frags + 1 + 1;
K. Y. Srinivasan9079ce62011-06-16 13:16:37 -0700170 if (num_pages > atomic_read(&net_device_ctx->avail))
Stephen Hemmingerb220f5f2010-05-04 09:58:56 -0700171 return NETDEV_TX_BUSY;
Hank Janssenfceaf242009-07-13 15:34:54 -0700172
Bill Pemberton454f18a2009-07-27 16:47:24 -0400173 /* Allocate a netvsc packet based on # of frags. */
Greg Kroah-Hartman02fafbc2009-08-31 21:09:45 -0700174 packet = kzalloc(sizeof(struct hv_netvsc_packet) +
Stephen Hemminger60487182010-05-04 09:58:55 -0700175 (num_pages * sizeof(struct hv_page_buffer)) +
K. Y. Srinivasanf8ba8c72011-05-12 19:35:01 -0700176 sizeof(struct rndis_filter_packet), GFP_ATOMIC);
Greg Kroah-Hartman02fafbc2009-08-31 21:09:45 -0700177 if (!packet) {
Haiyang Zhangbf769372011-09-01 12:19:46 -0700178 /* out of memory, drop packet */
Hank Jansseneb335bc2011-03-29 13:58:48 -0700179 netdev_err(net, "unable to allocate hv_netvsc_packet\n");
Stephen Hemmingerb220f5f2010-05-04 09:58:56 -0700180
181 dev_kfree_skb(skb);
182 net->stats.tx_dropped++;
Haiyang Zhangbf769372011-09-01 12:19:46 -0700183 return NETDEV_TX_BUSY;
Hank Janssenfceaf242009-07-13 15:34:54 -0700184 }
185
Haiyang Zhang72a2f5b2010-12-10 12:03:58 -0800186 packet->extension = (void *)(unsigned long)packet +
Greg Kroah-Hartman02fafbc2009-08-31 21:09:45 -0700187 sizeof(struct hv_netvsc_packet) +
Stephen Hemminger60487182010-05-04 09:58:55 -0700188 (num_pages * sizeof(struct hv_page_buffer));
Hank Janssenfceaf242009-07-13 15:34:54 -0700189
Bill Pemberton454f18a2009-07-27 16:47:24 -0400190 /* Setup the rndis header */
Haiyang Zhang72a2f5b2010-12-10 12:03:58 -0800191 packet->page_buf_cnt = num_pages;
Hank Janssenfceaf242009-07-13 15:34:54 -0700192
Bill Pemberton454f18a2009-07-27 16:47:24 -0400193 /* Initialize it from the skb */
Haiyang Zhang72a2f5b2010-12-10 12:03:58 -0800194 packet->total_data_buflen = skb->len;
Hank Janssenfceaf242009-07-13 15:34:54 -0700195
Stephen Hemminger60487182010-05-04 09:58:55 -0700196 /* Start filling in the page buffers starting after RNDIS buffer. */
Haiyang Zhangca623ad2011-01-26 12:12:11 -0800197 packet->page_buf[1].pfn = virt_to_phys(skb->data) >> PAGE_SHIFT;
198 packet->page_buf[1].offset
Stephen Hemminger60487182010-05-04 09:58:55 -0700199 = (unsigned long)skb->data & (PAGE_SIZE - 1);
Haiyang Zhangca623ad2011-01-26 12:12:11 -0800200 packet->page_buf[1].len = skb_headlen(skb);
Hank Janssenfceaf242009-07-13 15:34:54 -0700201
Stephen Hemminger60487182010-05-04 09:58:55 -0700202 /* Additional fragments are after SKB data */
203 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
Eric Dumazet9e903e02011-10-18 21:00:24 +0000204 const skb_frag_t *f = &skb_shinfo(skb)->frags[i];
Hank Janssenfceaf242009-07-13 15:34:54 -0700205
Ian Campbell6caaf902011-10-05 00:28:49 +0000206 packet->page_buf[i+2].pfn = page_to_pfn(skb_frag_page(f));
Haiyang Zhangca623ad2011-01-26 12:12:11 -0800207 packet->page_buf[i+2].offset = f->page_offset;
Eric Dumazet9e903e02011-10-18 21:00:24 +0000208 packet->page_buf[i+2].len = skb_frag_size(f);
Hank Janssenfceaf242009-07-13 15:34:54 -0700209 }
210
Bill Pemberton454f18a2009-07-27 16:47:24 -0400211 /* Set the completion routine */
Haiyang Zhang72a2f5b2010-12-10 12:03:58 -0800212 packet->completion.send.send_completion = netvsc_xmit_completion;
213 packet->completion.send.send_completion_ctx = packet;
214 packet->completion.send.send_completion_tid = (unsigned long)skb;
Hank Janssenfceaf242009-07-13 15:34:54 -0700215
K. Y. Srinivasan55acb692011-05-12 19:34:54 -0700216 ret = rndis_filter_send(net_device_ctx->device_ctx,
Greg Kroah-Hartman02fafbc2009-08-31 21:09:45 -0700217 packet);
Greg Kroah-Hartman02fafbc2009-08-31 21:09:45 -0700218 if (ret == 0) {
Stephen Hemmingerb852fdc2010-03-09 17:42:33 -0800219 net->stats.tx_bytes += skb->len;
220 net->stats.tx_packets++;
Stephen Hemmingerb220f5f2010-05-04 09:58:56 -0700221
K. Y. Srinivasan9079ce62011-06-16 13:16:37 -0700222 atomic_sub(num_pages, &net_device_ctx->avail);
223 if (atomic_read(&net_device_ctx->avail) < PACKET_PAGES_LOWATER)
Stephen Hemmingerb220f5f2010-05-04 09:58:56 -0700224 netif_stop_queue(net);
Greg Kroah-Hartman02fafbc2009-08-31 21:09:45 -0700225 } else {
Stephen Hemmingerb220f5f2010-05-04 09:58:56 -0700226 /* we are shutting down or bus overloaded, just drop packet */
Stephen Hemmingerb852fdc2010-03-09 17:42:33 -0800227 net->stats.tx_dropped++;
Haiyang Zhang8a5f9ed2011-09-01 12:19:45 -0700228 kfree(packet);
229 dev_kfree_skb_any(skb);
Hank Janssenfceaf242009-07-13 15:34:54 -0700230 }
231
Haiyang Zhangbf769372011-09-01 12:19:46 -0700232 return ret ? NETDEV_TX_BUSY : NETDEV_TX_OK;
Hank Janssenfceaf242009-07-13 15:34:54 -0700233}
234
Hank Janssen3e189512010-03-04 22:11:00 +0000235/*
Greg Kroah-Hartman02fafbc2009-08-31 21:09:45 -0700236 * netvsc_linkstatus_callback - Link up/down notification
237 */
K. Y. Srinivasan90ef1172011-05-12 19:34:50 -0700238void netvsc_linkstatus_callback(struct hv_device *device_obj,
Greg Kroah-Hartman02fafbc2009-08-31 21:09:45 -0700239 unsigned int status)
Hank Janssenfceaf242009-07-13 15:34:54 -0700240{
K. Y. Srinivasan2ddd5e52011-09-13 10:59:49 -0700241 struct net_device *net;
Haiyang Zhangc996edc2011-04-06 15:18:00 -0700242 struct net_device_context *ndev_ctx;
K. Y. Srinivasan2ddd5e52011-09-13 10:59:49 -0700243 struct netvsc_device *net_device;
244
245 net_device = hv_get_drvdata(device_obj);
246 net = net_device->ndev;
Hank Janssenfceaf242009-07-13 15:34:54 -0700247
Greg Kroah-Hartman02fafbc2009-08-31 21:09:45 -0700248 if (!net) {
Hank Jansseneb335bc2011-03-29 13:58:48 -0700249 netdev_err(net, "got link status but net device "
250 "not initialized yet\n");
Hank Janssenfceaf242009-07-13 15:34:54 -0700251 return;
252 }
253
Greg Kroah-Hartman02fafbc2009-08-31 21:09:45 -0700254 if (status == 1) {
Hank Janssenfceaf242009-07-13 15:34:54 -0700255 netif_carrier_on(net);
256 netif_wake_queue(net);
Haiyang Zhangc996edc2011-04-06 15:18:00 -0700257 ndev_ctx = netdev_priv(net);
Haiyang Zhangc4b6a2e2011-09-01 12:19:42 -0700258 schedule_delayed_work(&ndev_ctx->dwork, 0);
Haiyang Zhang122a5f62011-05-27 06:21:55 -0700259 schedule_delayed_work(&ndev_ctx->dwork, msecs_to_jiffies(20));
Greg Kroah-Hartman02fafbc2009-08-31 21:09:45 -0700260 } else {
Hank Janssenfceaf242009-07-13 15:34:54 -0700261 netif_carrier_off(net);
262 netif_stop_queue(net);
263 }
Hank Janssenfceaf242009-07-13 15:34:54 -0700264}
265
Hank Janssen3e189512010-03-04 22:11:00 +0000266/*
267 * netvsc_recv_callback - Callback when we receive a packet from the
268 * "wire" on the specified device.
Greg Kroah-Hartman02fafbc2009-08-31 21:09:45 -0700269 */
K. Y. Srinivasanf79adf82011-05-12 19:34:51 -0700270int netvsc_recv_callback(struct hv_device *device_obj,
Greg Kroah-Hartman02fafbc2009-08-31 21:09:45 -0700271 struct hv_netvsc_packet *packet)
Hank Janssenfceaf242009-07-13 15:34:54 -0700272{
K. Y. Srinivasan6bad88d2011-03-07 13:35:48 -0800273 struct net_device *net = dev_get_drvdata(&device_obj->device);
Hank Janssenfceaf242009-07-13 15:34:54 -0700274 struct sk_buff *skb;
275 void *data;
Greg Kroah-Hartman02fafbc2009-08-31 21:09:45 -0700276 int i;
Hank Janssenfceaf242009-07-13 15:34:54 -0700277 unsigned long flags;
K. Y. Srinivasan2ddd5e52011-09-13 10:59:49 -0700278 struct netvsc_device *net_device;
279
280 net_device = hv_get_drvdata(device_obj);
281 net = net_device->ndev;
Hank Janssenfceaf242009-07-13 15:34:54 -0700282
Greg Kroah-Hartman02fafbc2009-08-31 21:09:45 -0700283 if (!net) {
Hank Jansseneb335bc2011-03-29 13:58:48 -0700284 netdev_err(net, "got receive callback but net device"
285 " not initialized yet\n");
Hank Janssenfceaf242009-07-13 15:34:54 -0700286 return 0;
287 }
288
Stephen Hemminger9495c282010-03-09 17:42:17 -0800289 /* Allocate a skb - TODO direct I/O to pages? */
Haiyang Zhang72a2f5b2010-12-10 12:03:58 -0800290 skb = netdev_alloc_skb_ip_align(net, packet->total_data_buflen);
Stephen Hemminger9495c282010-03-09 17:42:17 -0800291 if (unlikely(!skb)) {
292 ++net->stats.rx_dropped;
293 return 0;
294 }
Hank Janssenfceaf242009-07-13 15:34:54 -0700295
Bill Pemberton454f18a2009-07-27 16:47:24 -0400296 /* for kmap_atomic */
Hank Janssenfceaf242009-07-13 15:34:54 -0700297 local_irq_save(flags);
298
Greg Kroah-Hartman02fafbc2009-08-31 21:09:45 -0700299 /*
300 * Copy to skb. This copy is needed here since the memory pointed by
301 * hv_netvsc_packet cannot be deallocated
302 */
Haiyang Zhang72a2f5b2010-12-10 12:03:58 -0800303 for (i = 0; i < packet->page_buf_cnt; i++) {
Haiyang Zhangca623ad2011-01-26 12:12:11 -0800304 data = kmap_atomic(pfn_to_page(packet->page_buf[i].pfn),
Greg Kroah-Hartman02fafbc2009-08-31 21:09:45 -0700305 KM_IRQ1);
306 data = (void *)(unsigned long)data +
Haiyang Zhangca623ad2011-01-26 12:12:11 -0800307 packet->page_buf[i].offset;
Hank Janssenfceaf242009-07-13 15:34:54 -0700308
Haiyang Zhangca623ad2011-01-26 12:12:11 -0800309 memcpy(skb_put(skb, packet->page_buf[i].len), data,
310 packet->page_buf[i].len);
Hank Janssenfceaf242009-07-13 15:34:54 -0700311
Greg Kroah-Hartman02fafbc2009-08-31 21:09:45 -0700312 kunmap_atomic((void *)((unsigned long)data -
Haiyang Zhangca623ad2011-01-26 12:12:11 -0800313 packet->page_buf[i].offset), KM_IRQ1);
Hank Janssenfceaf242009-07-13 15:34:54 -0700314 }
315
316 local_irq_restore(flags);
317
318 skb->protocol = eth_type_trans(skb, net);
Hank Janssenfceaf242009-07-13 15:34:54 -0700319 skb->ip_summed = CHECKSUM_NONE;
320
Stephen Hemminger9495c282010-03-09 17:42:17 -0800321 net->stats.rx_packets++;
322 net->stats.rx_bytes += skb->len;
323
Greg Kroah-Hartman02fafbc2009-08-31 21:09:45 -0700324 /*
325 * Pass the skb back up. Network stack will deallocate the skb when it
Stephen Hemminger9495c282010-03-09 17:42:17 -0800326 * is done.
327 * TODO - use NAPI?
Greg Kroah-Hartman02fafbc2009-08-31 21:09:45 -0700328 */
Stephen Hemminger9495c282010-03-09 17:42:17 -0800329 netif_rx(skb);
Hank Janssenfceaf242009-07-13 15:34:54 -0700330
Hank Janssenfceaf242009-07-13 15:34:54 -0700331 return 0;
332}
333
Stephen Hemmingerf82f4ad2010-05-04 09:58:57 -0700334static void netvsc_get_drvinfo(struct net_device *net,
335 struct ethtool_drvinfo *info)
336{
337 strcpy(info->driver, "hv_netvsc");
338 strcpy(info->version, HV_DRV_VERSION);
339 strcpy(info->fw_version, "N/A");
340}
341
342static const struct ethtool_ops ethtool_ops = {
343 .get_drvinfo = netvsc_get_drvinfo,
Stephen Hemmingerf82f4ad2010-05-04 09:58:57 -0700344 .get_link = ethtool_op_get_link,
345};
346
Greg Kroah-Hartmandf2fff22009-08-31 21:11:12 -0700347static const struct net_device_ops device_ops = {
348 .ndo_open = netvsc_open,
349 .ndo_stop = netvsc_close,
350 .ndo_start_xmit = netvsc_start_xmit,
Jiri Pirkoafc4b132011-08-16 06:29:01 +0000351 .ndo_set_rx_mode = netvsc_set_multicast_list,
Haiyang Zhangb681b582010-08-03 19:15:31 +0000352 .ndo_change_mtu = eth_change_mtu,
353 .ndo_validate_addr = eth_validate_addr,
354 .ndo_set_mac_address = eth_mac_addr,
Greg Kroah-Hartmandf2fff22009-08-31 21:11:12 -0700355};
356
Haiyang Zhangc996edc2011-04-06 15:18:00 -0700357/*
358 * Send GARP packet to network peers after migrations.
359 * After Quick Migration, the network is not immediately operational in the
360 * current context when receiving RNDIS_STATUS_MEDIA_CONNECT event. So, add
Haiyang Zhang122a5f62011-05-27 06:21:55 -0700361 * another netif_notify_peers() into a delayed work, otherwise GARP packet
Haiyang Zhangc996edc2011-04-06 15:18:00 -0700362 * will not be sent after quick migration, and cause network disconnection.
363 */
364static void netvsc_send_garp(struct work_struct *w)
365{
366 struct net_device_context *ndev_ctx;
367 struct net_device *net;
K. Y. Srinivasan2ddd5e52011-09-13 10:59:49 -0700368 struct netvsc_device *net_device;
Haiyang Zhangc996edc2011-04-06 15:18:00 -0700369
Haiyang Zhang122a5f62011-05-27 06:21:55 -0700370 ndev_ctx = container_of(w, struct net_device_context, dwork.work);
K. Y. Srinivasan2ddd5e52011-09-13 10:59:49 -0700371 net_device = hv_get_drvdata(ndev_ctx->device_ctx);
372 net = net_device->ndev;
Haiyang Zhangc996edc2011-04-06 15:18:00 -0700373 netif_notify_peers(net);
374}
375
376
K. Y. Srinivasan84946892011-09-13 10:59:38 -0700377static int netvsc_probe(struct hv_device *dev,
378 const struct hv_vmbus_device_id *dev_id)
Greg Kroah-Hartmandf2fff22009-08-31 21:11:12 -0700379{
Greg Kroah-Hartmandf2fff22009-08-31 21:11:12 -0700380 struct net_device *net = NULL;
381 struct net_device_context *net_device_ctx;
382 struct netvsc_device_info device_info;
383 int ret;
384
Stephen Hemminger546d9e12010-03-11 09:11:37 -0800385 net = alloc_etherdev(sizeof(struct net_device_context));
Greg Kroah-Hartmandf2fff22009-08-31 21:11:12 -0700386 if (!net)
K. Y. Srinivasan51a805d2011-08-25 09:49:11 -0700387 return -ENOMEM;
Greg Kroah-Hartmandf2fff22009-08-31 21:11:12 -0700388
389 /* Set initial state */
390 netif_carrier_off(net);
Greg Kroah-Hartmandf2fff22009-08-31 21:11:12 -0700391
392 net_device_ctx = netdev_priv(net);
K. Y. Srinivasan9efd21e2011-04-29 13:45:10 -0700393 net_device_ctx->device_ctx = dev;
K. Y. Srinivasan9079ce62011-06-16 13:16:37 -0700394 atomic_set(&net_device_ctx->avail, ring_size);
K. Y. Srinivasan2ddd5e52011-09-13 10:59:49 -0700395 hv_set_drvdata(dev, net);
Haiyang Zhang122a5f62011-05-27 06:21:55 -0700396 INIT_DELAYED_WORK(&net_device_ctx->dwork, netvsc_send_garp);
Greg Kroah-Hartmandf2fff22009-08-31 21:11:12 -0700397
Greg Kroah-Hartmandf2fff22009-08-31 21:11:12 -0700398 net->netdev_ops = &device_ops;
399
Stephen Hemminger60487182010-05-04 09:58:55 -0700400 /* TODO: Add GSO and Checksum offload */
Michał Mirosław877a3442011-04-19 12:43:20 +0200401 net->hw_features = NETIF_F_SG;
Stephen Hemminger60487182010-05-04 09:58:55 -0700402 net->features = NETIF_F_SG;
403
Stephen Hemmingerf82f4ad2010-05-04 09:58:57 -0700404 SET_ETHTOOL_OPS(net, &ethtool_ops);
K. Y. Srinivasan9efd21e2011-04-29 13:45:10 -0700405 SET_NETDEV_DEV(net, &dev->device);
Greg Kroah-Hartmandf2fff22009-08-31 21:11:12 -0700406
407 ret = register_netdev(net);
408 if (ret != 0) {
Haiyang Zhang692e0842011-09-01 12:19:43 -0700409 pr_err("Unable to register netdev.\n");
Greg Kroah-Hartmandf2fff22009-08-31 21:11:12 -0700410 free_netdev(net);
Haiyang Zhang692e0842011-09-01 12:19:43 -0700411 goto out;
Greg Kroah-Hartmandf2fff22009-08-31 21:11:12 -0700412 }
413
Haiyang Zhang692e0842011-09-01 12:19:43 -0700414 /* Notify the netvsc driver of the new device */
415 device_info.ring_size = ring_size;
416 ret = rndis_filter_device_add(dev, &device_info);
417 if (ret != 0) {
418 netdev_err(net, "unable to add netvsc device (ret %d)\n", ret);
419 unregister_netdev(net);
420 free_netdev(net);
K. Y. Srinivasan2ddd5e52011-09-13 10:59:49 -0700421 hv_set_drvdata(dev, NULL);
Haiyang Zhang692e0842011-09-01 12:19:43 -0700422 return ret;
423 }
424 memcpy(net->dev_addr, device_info.mac_adr, ETH_ALEN);
425
426 netif_carrier_on(net);
427
428out:
Greg Kroah-Hartmandf2fff22009-08-31 21:11:12 -0700429 return ret;
430}
431
K. Y. Srinivasan415b0232011-04-29 13:45:12 -0700432static int netvsc_remove(struct hv_device *dev)
Greg Kroah-Hartmandf2fff22009-08-31 21:11:12 -0700433{
K. Y. Srinivasan2ddd5e52011-09-13 10:59:49 -0700434 struct net_device *net;
Haiyang Zhang122a5f62011-05-27 06:21:55 -0700435 struct net_device_context *ndev_ctx;
K. Y. Srinivasan2ddd5e52011-09-13 10:59:49 -0700436 struct netvsc_device *net_device;
437
438 net_device = hv_get_drvdata(dev);
439 net = net_device->ndev;
Greg Kroah-Hartmandf2fff22009-08-31 21:11:12 -0700440
Greg Kroah-Hartmandf2fff22009-08-31 21:11:12 -0700441 if (net == NULL) {
K. Y. Srinivasan415b0232011-04-29 13:45:12 -0700442 dev_err(&dev->device, "No net device to remove\n");
Greg Kroah-Hartmandf2fff22009-08-31 21:11:12 -0700443 return 0;
444 }
445
Haiyang Zhang122a5f62011-05-27 06:21:55 -0700446 ndev_ctx = netdev_priv(net);
447 cancel_delayed_work_sync(&ndev_ctx->dwork);
448
Greg Kroah-Hartmandf2fff22009-08-31 21:11:12 -0700449 /* Stop outbound asap */
450 netif_stop_queue(net);
Greg Kroah-Hartmandf2fff22009-08-31 21:11:12 -0700451
452 unregister_netdev(net);
453
454 /*
455 * Call to the vsc driver to let it know that the device is being
456 * removed
457 */
Haiyang Zhangdf06bcf2011-05-23 09:03:47 -0700458 rndis_filter_device_remove(dev);
Greg Kroah-Hartmandf2fff22009-08-31 21:11:12 -0700459
460 free_netdev(net);
Haiyang Zhangdf06bcf2011-05-23 09:03:47 -0700461 return 0;
Greg Kroah-Hartmandf2fff22009-08-31 21:11:12 -0700462}
463
K. Y. Srinivasan345c4cc2011-08-25 09:48:34 -0700464static const struct hv_vmbus_device_id id_table[] = {
Greg Kroah-Hartmanc45cf2d2011-08-25 11:41:33 -0700465 /* Network guid */
466 { VMBUS_DEVICE(0x63, 0x51, 0x61, 0xF8, 0x3E, 0xDF, 0xc5, 0x46,
467 0x91, 0x3F, 0xF2, 0xD2, 0xF9, 0x65, 0xED, 0x0E) },
468 { },
K. Y. Srinivasan345c4cc2011-08-25 09:48:34 -0700469};
470
471MODULE_DEVICE_TABLE(vmbus, id_table);
472
K. Y. Srinivasanf1542a62011-05-10 07:55:16 -0700473/* The one and only one */
K. Y. Srinivasanfde0ef92011-05-12 19:35:08 -0700474static struct hv_driver netvsc_drv = {
Greg Kroah-Hartman768fa212011-08-25 15:07:32 -0700475 .name = "netvsc",
K. Y. Srinivasan345c4cc2011-08-25 09:48:34 -0700476 .id_table = id_table,
K. Y. Srinivasanfde0ef92011-05-12 19:35:08 -0700477 .probe = netvsc_probe,
478 .remove = netvsc_remove,
K. Y. Srinivasand4890972011-05-10 07:55:17 -0700479};
K. Y. Srinivasanf1542a62011-05-10 07:55:16 -0700480
K. Y. Srinivasana9869c92011-05-12 19:35:17 -0700481static void __exit netvsc_drv_exit(void)
Hank Janssenfceaf242009-07-13 15:34:54 -0700482{
Greg Kroah-Hartman768fa212011-08-25 15:07:32 -0700483 vmbus_driver_unregister(&netvsc_drv);
Hank Janssenfceaf242009-07-13 15:34:54 -0700484}
485
K. Y. Srinivasan1fde28c2011-05-12 19:35:16 -0700486static int __init netvsc_drv_init(void)
Greg Kroah-Hartmandf2fff22009-08-31 21:11:12 -0700487{
Greg Kroah-Hartman768fa212011-08-25 15:07:32 -0700488 return vmbus_driver_register(&netvsc_drv);
Greg Kroah-Hartmandf2fff22009-08-31 21:11:12 -0700489}
490
Hank Janssen26c14cc2010-02-11 23:02:42 +0000491MODULE_LICENSE("GPL");
492MODULE_VERSION(HV_DRV_VERSION);
Stephen Hemminger7880fc52010-05-04 09:58:52 -0700493MODULE_DESCRIPTION("Microsoft Hyper-V network driver");
Hank Janssenfceaf242009-07-13 15:34:54 -0700494
K. Y. Srinivasan1fde28c2011-05-12 19:35:16 -0700495module_init(netvsc_drv_init);
K. Y. Srinivasana9869c92011-05-12 19:35:17 -0700496module_exit(netvsc_drv_exit);