blob: 462d05f05e84d85d558f036a58b3786768514b03 [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;
Haiyang Zhang122a5f62011-05-27 06:21:55 -070046 struct delayed_work dwork;
Hank Janssenfceaf242009-07-13 15:34:54 -070047};
48
Hank Janssenfceaf242009-07-13 15:34:54 -070049
Hank Janssen99c8da02010-10-12 10:45:23 -070050static int ring_size = 128;
Stephen Hemminger450d7a42010-05-04 09:58:53 -070051module_param(ring_size, int, S_IRUGO);
52MODULE_PARM_DESC(ring_size, "Ring buffer size (# of pages)");
Hank Janssenfceaf242009-07-13 15:34:54 -070053
Haiyang Zhangd426b2e2011-11-30 07:19:08 -080054struct set_multicast_work {
55 struct work_struct work;
56 struct net_device *net;
57};
58
59static void do_set_multicast(struct work_struct *w)
60{
61 struct set_multicast_work *swk =
62 container_of(w, struct set_multicast_work, work);
63 struct net_device *net = swk->net;
64
65 struct net_device_context *ndevctx = netdev_priv(net);
66 struct netvsc_device *nvdev;
67 struct rndis_device *rdev;
68
69 nvdev = hv_get_drvdata(ndevctx->device_ctx);
70 if (nvdev == NULL)
71 return;
72
73 rdev = nvdev->extension;
74 if (rdev == NULL)
75 return;
76
77 if (net->flags & IFF_PROMISC)
78 rndis_filter_set_packet_filter(rdev,
79 NDIS_PACKET_TYPE_PROMISCUOUS);
80 else
81 rndis_filter_set_packet_filter(rdev,
82 NDIS_PACKET_TYPE_BROADCAST |
83 NDIS_PACKET_TYPE_ALL_MULTICAST |
84 NDIS_PACKET_TYPE_DIRECTED);
85
86 kfree(w);
87}
88
Greg Kroah-Hartman4e9bfef2009-07-15 12:45:20 -070089static void netvsc_set_multicast_list(struct net_device *net)
Hank Janssenfceaf242009-07-13 15:34:54 -070090{
Haiyang Zhangd426b2e2011-11-30 07:19:08 -080091 struct set_multicast_work *swk =
92 kmalloc(sizeof(struct set_multicast_work), GFP_ATOMIC);
93 if (swk == NULL)
94 return;
95
96 swk->net = net;
97 INIT_WORK(&swk->work, do_set_multicast);
98 schedule_work(&swk->work);
Hank Janssenfceaf242009-07-13 15:34:54 -070099}
100
Hank Janssenfceaf242009-07-13 15:34:54 -0700101static int netvsc_open(struct net_device *net)
102{
Hank Janssenfceaf242009-07-13 15:34:54 -0700103 struct net_device_context *net_device_ctx = netdev_priv(net);
K. Y. Srinivasan6bad88d2011-03-07 13:35:48 -0800104 struct hv_device *device_obj = net_device_ctx->device_ctx;
Greg Kroah-Hartman02fafbc2009-08-31 21:09:45 -0700105 int ret = 0;
Hank Janssenfceaf242009-07-13 15:34:54 -0700106
Haiyang Zhangd515d0f2011-09-28 13:24:15 -0700107 /* Open up the device */
108 ret = rndis_filter_open(device_obj);
109 if (ret != 0) {
110 netdev_err(net, "unable to open device (ret %d).\n", ret);
111 return ret;
Hank Janssenfceaf242009-07-13 15:34:54 -0700112 }
113
Haiyang Zhangd515d0f2011-09-28 13:24:15 -0700114 netif_start_queue(net);
115
Hank Janssenfceaf242009-07-13 15:34:54 -0700116 return ret;
117}
118
Hank Janssenfceaf242009-07-13 15:34:54 -0700119static int netvsc_close(struct net_device *net)
120{
Hank Janssenfceaf242009-07-13 15:34:54 -0700121 struct net_device_context *net_device_ctx = netdev_priv(net);
K. Y. Srinivasan6bad88d2011-03-07 13:35:48 -0800122 struct hv_device *device_obj = net_device_ctx->device_ctx;
Greg Kroah-Hartman02fafbc2009-08-31 21:09:45 -0700123 int ret;
Hank Janssenfceaf242009-07-13 15:34:54 -0700124
Hank Janssenfceaf242009-07-13 15:34:54 -0700125 netif_stop_queue(net);
126
Haiyang Zhang9c26aa02010-12-10 12:03:57 -0800127 ret = rndis_filter_close(device_obj);
Hank Janssenfceaf242009-07-13 15:34:54 -0700128 if (ret != 0)
Hank Jansseneb335bc2011-03-29 13:58:48 -0700129 netdev_err(net, "unable to close device (ret %d).\n", ret);
Hank Janssenfceaf242009-07-13 15:34:54 -0700130
Hank Janssenfceaf242009-07-13 15:34:54 -0700131 return ret;
132}
133
Hank Janssenfceaf242009-07-13 15:34:54 -0700134static void netvsc_xmit_completion(void *context)
135{
Nicolas Palix4193d4f2009-07-29 14:10:10 +0200136 struct hv_netvsc_packet *packet = (struct hv_netvsc_packet *)context;
Greg Kroah-Hartman02fafbc2009-08-31 21:09:45 -0700137 struct sk_buff *skb = (struct sk_buff *)
Haiyang Zhang72a2f5b2010-12-10 12:03:58 -0800138 (unsigned long)packet->completion.send.send_completion_tid;
Hank Janssenfceaf242009-07-13 15:34:54 -0700139
Hank Janssenfceaf242009-07-13 15:34:54 -0700140 kfree(packet);
141
Haiyang Zhang1d068252011-12-02 11:56:25 -0800142 if (skb)
Hank Janssenfceaf242009-07-13 15:34:54 -0700143 dev_kfree_skb_any(skb);
Hank Janssenfceaf242009-07-13 15:34:54 -0700144}
145
Greg Kroah-Hartman02fafbc2009-08-31 21:09:45 -0700146static int netvsc_start_xmit(struct sk_buff *skb, struct net_device *net)
Hank Janssenfceaf242009-07-13 15:34:54 -0700147{
Hank Janssenfceaf242009-07-13 15:34:54 -0700148 struct net_device_context *net_device_ctx = netdev_priv(net);
Nicolas Palix4193d4f2009-07-29 14:10:10 +0200149 struct hv_netvsc_packet *packet;
Greg Kroah-Hartman02fafbc2009-08-31 21:09:45 -0700150 int ret;
Haiyang Zhang4d447c92011-12-15 13:45:17 -0800151 unsigned int i, num_pages, npg_data;
Hank Janssenfceaf242009-07-13 15:34:54 -0700152
Haiyang Zhang4d447c92011-12-15 13:45:17 -0800153 /* Add multipage for skb->data and additional one for RNDIS */
154 npg_data = (((unsigned long)skb->data + skb_headlen(skb) - 1)
155 >> PAGE_SHIFT) - ((unsigned long)skb->data >> PAGE_SHIFT) + 1;
156 num_pages = skb_shinfo(skb)->nr_frags + npg_data + 1;
Hank Janssenfceaf242009-07-13 15:34:54 -0700157
Bill Pemberton454f18a2009-07-27 16:47:24 -0400158 /* Allocate a netvsc packet based on # of frags. */
Greg Kroah-Hartman02fafbc2009-08-31 21:09:45 -0700159 packet = kzalloc(sizeof(struct hv_netvsc_packet) +
Stephen Hemminger60487182010-05-04 09:58:55 -0700160 (num_pages * sizeof(struct hv_page_buffer)) +
K. Y. Srinivasanf8ba8c72011-05-12 19:35:01 -0700161 sizeof(struct rndis_filter_packet), GFP_ATOMIC);
Greg Kroah-Hartman02fafbc2009-08-31 21:09:45 -0700162 if (!packet) {
Haiyang Zhangbf769372011-09-01 12:19:46 -0700163 /* out of memory, drop packet */
Hank Jansseneb335bc2011-03-29 13:58:48 -0700164 netdev_err(net, "unable to allocate hv_netvsc_packet\n");
Stephen Hemmingerb220f5f2010-05-04 09:58:56 -0700165
166 dev_kfree_skb(skb);
167 net->stats.tx_dropped++;
Haiyang Zhangbf769372011-09-01 12:19:46 -0700168 return NETDEV_TX_BUSY;
Hank Janssenfceaf242009-07-13 15:34:54 -0700169 }
170
Haiyang Zhang72a2f5b2010-12-10 12:03:58 -0800171 packet->extension = (void *)(unsigned long)packet +
Greg Kroah-Hartman02fafbc2009-08-31 21:09:45 -0700172 sizeof(struct hv_netvsc_packet) +
Stephen Hemminger60487182010-05-04 09:58:55 -0700173 (num_pages * sizeof(struct hv_page_buffer));
Hank Janssenfceaf242009-07-13 15:34:54 -0700174
Bill Pemberton454f18a2009-07-27 16:47:24 -0400175 /* Setup the rndis header */
Haiyang Zhang72a2f5b2010-12-10 12:03:58 -0800176 packet->page_buf_cnt = num_pages;
Hank Janssenfceaf242009-07-13 15:34:54 -0700177
Bill Pemberton454f18a2009-07-27 16:47:24 -0400178 /* Initialize it from the skb */
Haiyang Zhang4d447c92011-12-15 13:45:17 -0800179 packet->total_data_buflen = skb->len;
Hank Janssenfceaf242009-07-13 15:34:54 -0700180
Stephen Hemminger60487182010-05-04 09:58:55 -0700181 /* Start filling in the page buffers starting after RNDIS buffer. */
Haiyang Zhangca623ad2011-01-26 12:12:11 -0800182 packet->page_buf[1].pfn = virt_to_phys(skb->data) >> PAGE_SHIFT;
183 packet->page_buf[1].offset
Stephen Hemminger60487182010-05-04 09:58:55 -0700184 = (unsigned long)skb->data & (PAGE_SIZE - 1);
Haiyang Zhang4d447c92011-12-15 13:45:17 -0800185 if (npg_data == 1)
186 packet->page_buf[1].len = skb_headlen(skb);
187 else
188 packet->page_buf[1].len = PAGE_SIZE
189 - packet->page_buf[1].offset;
190
191 for (i = 2; i <= npg_data; i++) {
192 packet->page_buf[i].pfn = virt_to_phys(skb->data
193 + PAGE_SIZE * (i-1)) >> PAGE_SHIFT;
194 packet->page_buf[i].offset = 0;
195 packet->page_buf[i].len = PAGE_SIZE;
196 }
197 if (npg_data > 1)
198 packet->page_buf[npg_data].len = (((unsigned long)skb->data
199 + skb_headlen(skb) - 1) & (PAGE_SIZE - 1)) + 1;
Hank Janssenfceaf242009-07-13 15:34:54 -0700200
Stephen Hemminger60487182010-05-04 09:58:55 -0700201 /* Additional fragments are after SKB data */
202 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
Eric Dumazet9e903e02011-10-18 21:00:24 +0000203 const skb_frag_t *f = &skb_shinfo(skb)->frags[i];
Hank Janssenfceaf242009-07-13 15:34:54 -0700204
Haiyang Zhang4d447c92011-12-15 13:45:17 -0800205 packet->page_buf[i+npg_data+1].pfn =
206 page_to_pfn(skb_frag_page(f));
207 packet->page_buf[i+npg_data+1].offset = f->page_offset;
208 packet->page_buf[i+npg_data+1].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++;
Greg Kroah-Hartman02fafbc2009-08-31 21:09:45 -0700221 } else {
Stephen Hemmingerb220f5f2010-05-04 09:58:56 -0700222 /* we are shutting down or bus overloaded, just drop packet */
Stephen Hemmingerb852fdc2010-03-09 17:42:33 -0800223 net->stats.tx_dropped++;
Haiyang Zhang8a5f9ed2011-09-01 12:19:45 -0700224 kfree(packet);
225 dev_kfree_skb_any(skb);
Hank Janssenfceaf242009-07-13 15:34:54 -0700226 }
227
Haiyang Zhangbf769372011-09-01 12:19:46 -0700228 return ret ? NETDEV_TX_BUSY : NETDEV_TX_OK;
Hank Janssenfceaf242009-07-13 15:34:54 -0700229}
230
Hank Janssen3e189512010-03-04 22:11:00 +0000231/*
Greg Kroah-Hartman02fafbc2009-08-31 21:09:45 -0700232 * netvsc_linkstatus_callback - Link up/down notification
233 */
K. Y. Srinivasan90ef1172011-05-12 19:34:50 -0700234void netvsc_linkstatus_callback(struct hv_device *device_obj,
Greg Kroah-Hartman02fafbc2009-08-31 21:09:45 -0700235 unsigned int status)
Hank Janssenfceaf242009-07-13 15:34:54 -0700236{
K. Y. Srinivasan2ddd5e52011-09-13 10:59:49 -0700237 struct net_device *net;
Haiyang Zhangc996edc2011-04-06 15:18:00 -0700238 struct net_device_context *ndev_ctx;
K. Y. Srinivasan2ddd5e52011-09-13 10:59:49 -0700239 struct netvsc_device *net_device;
240
241 net_device = hv_get_drvdata(device_obj);
242 net = net_device->ndev;
Hank Janssenfceaf242009-07-13 15:34:54 -0700243
Greg Kroah-Hartman02fafbc2009-08-31 21:09:45 -0700244 if (!net) {
Hank Jansseneb335bc2011-03-29 13:58:48 -0700245 netdev_err(net, "got link status but net device "
246 "not initialized yet\n");
Hank Janssenfceaf242009-07-13 15:34:54 -0700247 return;
248 }
249
Greg Kroah-Hartman02fafbc2009-08-31 21:09:45 -0700250 if (status == 1) {
Hank Janssenfceaf242009-07-13 15:34:54 -0700251 netif_carrier_on(net);
252 netif_wake_queue(net);
Haiyang Zhangc996edc2011-04-06 15:18:00 -0700253 ndev_ctx = netdev_priv(net);
Haiyang Zhangc4b6a2e2011-09-01 12:19:42 -0700254 schedule_delayed_work(&ndev_ctx->dwork, 0);
Haiyang Zhang122a5f62011-05-27 06:21:55 -0700255 schedule_delayed_work(&ndev_ctx->dwork, msecs_to_jiffies(20));
Greg Kroah-Hartman02fafbc2009-08-31 21:09:45 -0700256 } else {
Hank Janssenfceaf242009-07-13 15:34:54 -0700257 netif_carrier_off(net);
258 netif_stop_queue(net);
259 }
Hank Janssenfceaf242009-07-13 15:34:54 -0700260}
261
Hank Janssen3e189512010-03-04 22:11:00 +0000262/*
263 * netvsc_recv_callback - Callback when we receive a packet from the
264 * "wire" on the specified device.
Greg Kroah-Hartman02fafbc2009-08-31 21:09:45 -0700265 */
K. Y. Srinivasanf79adf82011-05-12 19:34:51 -0700266int netvsc_recv_callback(struct hv_device *device_obj,
Greg Kroah-Hartman02fafbc2009-08-31 21:09:45 -0700267 struct hv_netvsc_packet *packet)
Hank Janssenfceaf242009-07-13 15:34:54 -0700268{
K. Y. Srinivasan6bad88d2011-03-07 13:35:48 -0800269 struct net_device *net = dev_get_drvdata(&device_obj->device);
Hank Janssenfceaf242009-07-13 15:34:54 -0700270 struct sk_buff *skb;
K. Y. Srinivasan2ddd5e52011-09-13 10:59:49 -0700271 struct netvsc_device *net_device;
272
273 net_device = hv_get_drvdata(device_obj);
274 net = net_device->ndev;
Hank Janssenfceaf242009-07-13 15:34:54 -0700275
Greg Kroah-Hartman02fafbc2009-08-31 21:09:45 -0700276 if (!net) {
Hank Jansseneb335bc2011-03-29 13:58:48 -0700277 netdev_err(net, "got receive callback but net device"
278 " not initialized yet\n");
Hank Janssenfceaf242009-07-13 15:34:54 -0700279 return 0;
280 }
281
Stephen Hemminger9495c282010-03-09 17:42:17 -0800282 /* Allocate a skb - TODO direct I/O to pages? */
Haiyang Zhang72a2f5b2010-12-10 12:03:58 -0800283 skb = netdev_alloc_skb_ip_align(net, packet->total_data_buflen);
Stephen Hemminger9495c282010-03-09 17:42:17 -0800284 if (unlikely(!skb)) {
285 ++net->stats.rx_dropped;
286 return 0;
287 }
Hank Janssenfceaf242009-07-13 15:34:54 -0700288
Greg Kroah-Hartman02fafbc2009-08-31 21:09:45 -0700289 /*
290 * Copy to skb. This copy is needed here since the memory pointed by
291 * hv_netvsc_packet cannot be deallocated
292 */
Haiyang Zhang45326342011-12-15 13:45:15 -0800293 memcpy(skb_put(skb, packet->total_data_buflen), packet->data,
294 packet->total_data_buflen);
Hank Janssenfceaf242009-07-13 15:34:54 -0700295
296 skb->protocol = eth_type_trans(skb, net);
Hank Janssenfceaf242009-07-13 15:34:54 -0700297 skb->ip_summed = CHECKSUM_NONE;
298
Stephen Hemminger9495c282010-03-09 17:42:17 -0800299 net->stats.rx_packets++;
300 net->stats.rx_bytes += skb->len;
301
Greg Kroah-Hartman02fafbc2009-08-31 21:09:45 -0700302 /*
303 * Pass the skb back up. Network stack will deallocate the skb when it
Stephen Hemminger9495c282010-03-09 17:42:17 -0800304 * is done.
305 * TODO - use NAPI?
Greg Kroah-Hartman02fafbc2009-08-31 21:09:45 -0700306 */
Stephen Hemminger9495c282010-03-09 17:42:17 -0800307 netif_rx(skb);
Hank Janssenfceaf242009-07-13 15:34:54 -0700308
Hank Janssenfceaf242009-07-13 15:34:54 -0700309 return 0;
310}
311
Stephen Hemmingerf82f4ad2010-05-04 09:58:57 -0700312static void netvsc_get_drvinfo(struct net_device *net,
313 struct ethtool_drvinfo *info)
314{
315 strcpy(info->driver, "hv_netvsc");
316 strcpy(info->version, HV_DRV_VERSION);
317 strcpy(info->fw_version, "N/A");
318}
319
Haiyang Zhang4d447c92011-12-15 13:45:17 -0800320static int netvsc_change_mtu(struct net_device *ndev, int mtu)
321{
322 struct net_device_context *ndevctx = netdev_priv(ndev);
323 struct hv_device *hdev = ndevctx->device_ctx;
324 struct netvsc_device *nvdev = hv_get_drvdata(hdev);
325 struct netvsc_device_info device_info;
326 int limit = ETH_DATA_LEN;
327
328 if (nvdev == NULL || nvdev->destroy)
329 return -ENODEV;
330
331 if (nvdev->nvsp_version == NVSP_PROTOCOL_VERSION_2)
332 limit = NETVSC_MTU;
333
334 if (mtu < 68 || mtu > limit)
335 return -EINVAL;
336
337 nvdev->start_remove = true;
338 cancel_delayed_work_sync(&ndevctx->dwork);
339 netif_stop_queue(ndev);
340 rndis_filter_device_remove(hdev);
341
342 ndev->mtu = mtu;
343
344 ndevctx->device_ctx = hdev;
345 hv_set_drvdata(hdev, ndev);
346 device_info.ring_size = ring_size;
347 rndis_filter_device_add(hdev, &device_info);
348 netif_wake_queue(ndev);
349
350 return 0;
351}
352
Stephen Hemmingerf82f4ad2010-05-04 09:58:57 -0700353static const struct ethtool_ops ethtool_ops = {
354 .get_drvinfo = netvsc_get_drvinfo,
Stephen Hemmingerf82f4ad2010-05-04 09:58:57 -0700355 .get_link = ethtool_op_get_link,
356};
357
Greg Kroah-Hartmandf2fff22009-08-31 21:11:12 -0700358static const struct net_device_ops device_ops = {
359 .ndo_open = netvsc_open,
360 .ndo_stop = netvsc_close,
361 .ndo_start_xmit = netvsc_start_xmit,
Jiri Pirkoafc4b132011-08-16 06:29:01 +0000362 .ndo_set_rx_mode = netvsc_set_multicast_list,
Haiyang Zhang4d447c92011-12-15 13:45:17 -0800363 .ndo_change_mtu = netvsc_change_mtu,
Haiyang Zhangb681b582010-08-03 19:15:31 +0000364 .ndo_validate_addr = eth_validate_addr,
365 .ndo_set_mac_address = eth_mac_addr,
Greg Kroah-Hartmandf2fff22009-08-31 21:11:12 -0700366};
367
Haiyang Zhangc996edc2011-04-06 15:18:00 -0700368/*
369 * Send GARP packet to network peers after migrations.
370 * After Quick Migration, the network is not immediately operational in the
371 * current context when receiving RNDIS_STATUS_MEDIA_CONNECT event. So, add
Haiyang Zhang122a5f62011-05-27 06:21:55 -0700372 * another netif_notify_peers() into a delayed work, otherwise GARP packet
Haiyang Zhangc996edc2011-04-06 15:18:00 -0700373 * will not be sent after quick migration, and cause network disconnection.
374 */
375static void netvsc_send_garp(struct work_struct *w)
376{
377 struct net_device_context *ndev_ctx;
378 struct net_device *net;
K. Y. Srinivasan2ddd5e52011-09-13 10:59:49 -0700379 struct netvsc_device *net_device;
Haiyang Zhangc996edc2011-04-06 15:18:00 -0700380
Haiyang Zhang122a5f62011-05-27 06:21:55 -0700381 ndev_ctx = container_of(w, struct net_device_context, dwork.work);
K. Y. Srinivasan2ddd5e52011-09-13 10:59:49 -0700382 net_device = hv_get_drvdata(ndev_ctx->device_ctx);
383 net = net_device->ndev;
Haiyang Zhangc996edc2011-04-06 15:18:00 -0700384 netif_notify_peers(net);
385}
386
387
K. Y. Srinivasan84946892011-09-13 10:59:38 -0700388static int netvsc_probe(struct hv_device *dev,
389 const struct hv_vmbus_device_id *dev_id)
Greg Kroah-Hartmandf2fff22009-08-31 21:11:12 -0700390{
Greg Kroah-Hartmandf2fff22009-08-31 21:11:12 -0700391 struct net_device *net = NULL;
392 struct net_device_context *net_device_ctx;
393 struct netvsc_device_info device_info;
394 int ret;
395
Stephen Hemminger546d9e12010-03-11 09:11:37 -0800396 net = alloc_etherdev(sizeof(struct net_device_context));
Greg Kroah-Hartmandf2fff22009-08-31 21:11:12 -0700397 if (!net)
K. Y. Srinivasan51a805d2011-08-25 09:49:11 -0700398 return -ENOMEM;
Greg Kroah-Hartmandf2fff22009-08-31 21:11:12 -0700399
400 /* Set initial state */
401 netif_carrier_off(net);
Greg Kroah-Hartmandf2fff22009-08-31 21:11:12 -0700402
403 net_device_ctx = netdev_priv(net);
K. Y. Srinivasan9efd21e2011-04-29 13:45:10 -0700404 net_device_ctx->device_ctx = dev;
K. Y. Srinivasan2ddd5e52011-09-13 10:59:49 -0700405 hv_set_drvdata(dev, net);
Haiyang Zhang122a5f62011-05-27 06:21:55 -0700406 INIT_DELAYED_WORK(&net_device_ctx->dwork, netvsc_send_garp);
Greg Kroah-Hartmandf2fff22009-08-31 21:11:12 -0700407
Greg Kroah-Hartmandf2fff22009-08-31 21:11:12 -0700408 net->netdev_ops = &device_ops;
409
Stephen Hemminger60487182010-05-04 09:58:55 -0700410 /* TODO: Add GSO and Checksum offload */
Michał Mirosław877a3442011-04-19 12:43:20 +0200411 net->hw_features = NETIF_F_SG;
Stephen Hemminger60487182010-05-04 09:58:55 -0700412 net->features = NETIF_F_SG;
413
Stephen Hemmingerf82f4ad2010-05-04 09:58:57 -0700414 SET_ETHTOOL_OPS(net, &ethtool_ops);
K. Y. Srinivasan9efd21e2011-04-29 13:45:10 -0700415 SET_NETDEV_DEV(net, &dev->device);
Greg Kroah-Hartmandf2fff22009-08-31 21:11:12 -0700416
417 ret = register_netdev(net);
418 if (ret != 0) {
Haiyang Zhang692e0842011-09-01 12:19:43 -0700419 pr_err("Unable to register netdev.\n");
Greg Kroah-Hartmandf2fff22009-08-31 21:11:12 -0700420 free_netdev(net);
Haiyang Zhang692e0842011-09-01 12:19:43 -0700421 goto out;
Greg Kroah-Hartmandf2fff22009-08-31 21:11:12 -0700422 }
423
Haiyang Zhang692e0842011-09-01 12:19:43 -0700424 /* Notify the netvsc driver of the new device */
425 device_info.ring_size = ring_size;
426 ret = rndis_filter_device_add(dev, &device_info);
427 if (ret != 0) {
428 netdev_err(net, "unable to add netvsc device (ret %d)\n", ret);
429 unregister_netdev(net);
430 free_netdev(net);
K. Y. Srinivasan2ddd5e52011-09-13 10:59:49 -0700431 hv_set_drvdata(dev, NULL);
Haiyang Zhang692e0842011-09-01 12:19:43 -0700432 return ret;
433 }
434 memcpy(net->dev_addr, device_info.mac_adr, ETH_ALEN);
435
436 netif_carrier_on(net);
437
438out:
Greg Kroah-Hartmandf2fff22009-08-31 21:11:12 -0700439 return ret;
440}
441
K. Y. Srinivasan415b0232011-04-29 13:45:12 -0700442static int netvsc_remove(struct hv_device *dev)
Greg Kroah-Hartmandf2fff22009-08-31 21:11:12 -0700443{
K. Y. Srinivasan2ddd5e52011-09-13 10:59:49 -0700444 struct net_device *net;
Haiyang Zhang122a5f62011-05-27 06:21:55 -0700445 struct net_device_context *ndev_ctx;
K. Y. Srinivasan2ddd5e52011-09-13 10:59:49 -0700446 struct netvsc_device *net_device;
447
448 net_device = hv_get_drvdata(dev);
449 net = net_device->ndev;
Greg Kroah-Hartmandf2fff22009-08-31 21:11:12 -0700450
Greg Kroah-Hartmandf2fff22009-08-31 21:11:12 -0700451 if (net == NULL) {
K. Y. Srinivasan415b0232011-04-29 13:45:12 -0700452 dev_err(&dev->device, "No net device to remove\n");
Greg Kroah-Hartmandf2fff22009-08-31 21:11:12 -0700453 return 0;
454 }
455
Haiyang Zhang4d447c92011-12-15 13:45:17 -0800456 net_device->start_remove = true;
457
Haiyang Zhang122a5f62011-05-27 06:21:55 -0700458 ndev_ctx = netdev_priv(net);
459 cancel_delayed_work_sync(&ndev_ctx->dwork);
460
Greg Kroah-Hartmandf2fff22009-08-31 21:11:12 -0700461 /* Stop outbound asap */
462 netif_stop_queue(net);
Greg Kroah-Hartmandf2fff22009-08-31 21:11:12 -0700463
464 unregister_netdev(net);
465
466 /*
467 * Call to the vsc driver to let it know that the device is being
468 * removed
469 */
Haiyang Zhangdf06bcf2011-05-23 09:03:47 -0700470 rndis_filter_device_remove(dev);
Greg Kroah-Hartmandf2fff22009-08-31 21:11:12 -0700471
472 free_netdev(net);
Haiyang Zhangdf06bcf2011-05-23 09:03:47 -0700473 return 0;
Greg Kroah-Hartmandf2fff22009-08-31 21:11:12 -0700474}
475
K. Y. Srinivasan345c4cc2011-08-25 09:48:34 -0700476static const struct hv_vmbus_device_id id_table[] = {
Greg Kroah-Hartmanc45cf2d2011-08-25 11:41:33 -0700477 /* Network guid */
478 { VMBUS_DEVICE(0x63, 0x51, 0x61, 0xF8, 0x3E, 0xDF, 0xc5, 0x46,
479 0x91, 0x3F, 0xF2, 0xD2, 0xF9, 0x65, 0xED, 0x0E) },
480 { },
K. Y. Srinivasan345c4cc2011-08-25 09:48:34 -0700481};
482
483MODULE_DEVICE_TABLE(vmbus, id_table);
484
K. Y. Srinivasanf1542a62011-05-10 07:55:16 -0700485/* The one and only one */
K. Y. Srinivasanfde0ef92011-05-12 19:35:08 -0700486static struct hv_driver netvsc_drv = {
Greg Kroah-Hartman768fa212011-08-25 15:07:32 -0700487 .name = "netvsc",
K. Y. Srinivasan345c4cc2011-08-25 09:48:34 -0700488 .id_table = id_table,
K. Y. Srinivasanfde0ef92011-05-12 19:35:08 -0700489 .probe = netvsc_probe,
490 .remove = netvsc_remove,
K. Y. Srinivasand4890972011-05-10 07:55:17 -0700491};
K. Y. Srinivasanf1542a62011-05-10 07:55:16 -0700492
K. Y. Srinivasana9869c92011-05-12 19:35:17 -0700493static void __exit netvsc_drv_exit(void)
Hank Janssenfceaf242009-07-13 15:34:54 -0700494{
Greg Kroah-Hartman768fa212011-08-25 15:07:32 -0700495 vmbus_driver_unregister(&netvsc_drv);
Hank Janssenfceaf242009-07-13 15:34:54 -0700496}
497
K. Y. Srinivasan1fde28c2011-05-12 19:35:16 -0700498static int __init netvsc_drv_init(void)
Greg Kroah-Hartmandf2fff22009-08-31 21:11:12 -0700499{
Greg Kroah-Hartman768fa212011-08-25 15:07:32 -0700500 return vmbus_driver_register(&netvsc_drv);
Greg Kroah-Hartmandf2fff22009-08-31 21:11:12 -0700501}
502
Hank Janssen26c14cc2010-02-11 23:02:42 +0000503MODULE_LICENSE("GPL");
504MODULE_VERSION(HV_DRV_VERSION);
Stephen Hemminger7880fc54c2010-05-04 09:58:52 -0700505MODULE_DESCRIPTION("Microsoft Hyper-V network driver");
Hank Janssenfceaf242009-07-13 15:34:54 -0700506
K. Y. Srinivasan1fde28c2011-05-12 19:35:16 -0700507module_init(netvsc_drv_init);
K. Y. Srinivasana9869c92011-05-12 19:35:17 -0700508module_exit(netvsc_drv_exit);