]> git.kernelconcepts.de Git - karo-tx-linux.git/blob - drivers/net/hyperv/rndis_filter.c
42bfb3a11efd490633e20f0a8a9f50e015584b64
[karo-tx-linux.git] / drivers / net / hyperv / rndis_filter.c
1 /*
2  * Copyright (c) 2009, Microsoft Corporation.
3  *
4  * This program is free software; you can redistribute it and/or modify it
5  * under the terms and conditions of the GNU General Public License,
6  * version 2, as published by the Free Software Foundation.
7  *
8  * This program is distributed in the hope it will be useful, but WITHOUT
9  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
10  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for
11  * more details.
12  *
13  * You should have received a copy of the GNU General Public License along with
14  * this program; if not, see <http://www.gnu.org/licenses/>.
15  *
16  * Authors:
17  *   Haiyang Zhang <haiyangz@microsoft.com>
18  *   Hank Janssen  <hjanssen@microsoft.com>
19  */
20 #include <linux/kernel.h>
21 #include <linux/sched.h>
22 #include <linux/wait.h>
23 #include <linux/highmem.h>
24 #include <linux/slab.h>
25 #include <linux/io.h>
26 #include <linux/if_ether.h>
27 #include <linux/netdevice.h>
28 #include <linux/if_vlan.h>
29 #include <linux/nls.h>
30
31 #include "hyperv_net.h"
32
33
34 #define RNDIS_EXT_LEN 100
35 struct rndis_request {
36         struct list_head list_ent;
37         struct completion  wait_event;
38
39         struct rndis_message response_msg;
40         /*
41          * The buffer for extended info after the RNDIS response message. It's
42          * referenced based on the data offset in the RNDIS message. Its size
43          * is enough for current needs, and should be sufficient for the near
44          * future.
45          */
46         u8 response_ext[RNDIS_EXT_LEN];
47
48         /* Simplify allocation by having a netvsc packet inline */
49         struct hv_netvsc_packet pkt;
50         /* Set 2 pages for rndis requests crossing page boundary */
51         struct hv_page_buffer buf[2];
52
53         struct rndis_message request_msg;
54         /*
55          * The buffer for the extended info after the RNDIS request message.
56          * It is referenced and sized in a similar way as response_ext.
57          */
58         u8 request_ext[RNDIS_EXT_LEN];
59 };
60
61 static struct rndis_device *get_rndis_device(void)
62 {
63         struct rndis_device *device;
64
65         device = kzalloc(sizeof(struct rndis_device), GFP_KERNEL);
66         if (!device)
67                 return NULL;
68
69         spin_lock_init(&device->request_lock);
70
71         INIT_LIST_HEAD(&device->req_list);
72
73         device->state = RNDIS_DEV_UNINITIALIZED;
74
75         return device;
76 }
77
78 static struct rndis_request *get_rndis_request(struct rndis_device *dev,
79                                              u32 msg_type,
80                                              u32 msg_len)
81 {
82         struct rndis_request *request;
83         struct rndis_message *rndis_msg;
84         struct rndis_set_request *set;
85         unsigned long flags;
86
87         request = kzalloc(sizeof(struct rndis_request), GFP_KERNEL);
88         if (!request)
89                 return NULL;
90
91         init_completion(&request->wait_event);
92
93         rndis_msg = &request->request_msg;
94         rndis_msg->ndis_msg_type = msg_type;
95         rndis_msg->msg_len = msg_len;
96
97         /*
98          * Set the request id. This field is always after the rndis header for
99          * request/response packet types so we just used the SetRequest as a
100          * template
101          */
102         set = &rndis_msg->msg.set_req;
103         set->req_id = atomic_inc_return(&dev->new_req_id);
104
105         /* Add to the request list */
106         spin_lock_irqsave(&dev->request_lock, flags);
107         list_add_tail(&request->list_ent, &dev->req_list);
108         spin_unlock_irqrestore(&dev->request_lock, flags);
109
110         return request;
111 }
112
113 static void put_rndis_request(struct rndis_device *dev,
114                             struct rndis_request *req)
115 {
116         unsigned long flags;
117
118         spin_lock_irqsave(&dev->request_lock, flags);
119         list_del(&req->list_ent);
120         spin_unlock_irqrestore(&dev->request_lock, flags);
121
122         kfree(req);
123 }
124
125 static void dump_rndis_message(struct hv_device *hv_dev,
126                         struct rndis_message *rndis_msg)
127 {
128         struct net_device *netdev;
129         struct netvsc_device *net_device;
130
131         net_device = hv_get_drvdata(hv_dev);
132         netdev = net_device->ndev;
133
134         switch (rndis_msg->ndis_msg_type) {
135         case RNDIS_MSG_PACKET:
136                 netdev_dbg(netdev, "RNDIS_MSG_PACKET (len %u, "
137                            "data offset %u data len %u, # oob %u, "
138                            "oob offset %u, oob len %u, pkt offset %u, "
139                            "pkt len %u\n",
140                            rndis_msg->msg_len,
141                            rndis_msg->msg.pkt.data_offset,
142                            rndis_msg->msg.pkt.data_len,
143                            rndis_msg->msg.pkt.num_oob_data_elements,
144                            rndis_msg->msg.pkt.oob_data_offset,
145                            rndis_msg->msg.pkt.oob_data_len,
146                            rndis_msg->msg.pkt.per_pkt_info_offset,
147                            rndis_msg->msg.pkt.per_pkt_info_len);
148                 break;
149
150         case RNDIS_MSG_INIT_C:
151                 netdev_dbg(netdev, "RNDIS_MSG_INIT_C "
152                         "(len %u, id 0x%x, status 0x%x, major %d, minor %d, "
153                         "device flags %d, max xfer size 0x%x, max pkts %u, "
154                         "pkt aligned %u)\n",
155                         rndis_msg->msg_len,
156                         rndis_msg->msg.init_complete.req_id,
157                         rndis_msg->msg.init_complete.status,
158                         rndis_msg->msg.init_complete.major_ver,
159                         rndis_msg->msg.init_complete.minor_ver,
160                         rndis_msg->msg.init_complete.dev_flags,
161                         rndis_msg->msg.init_complete.max_xfer_size,
162                         rndis_msg->msg.init_complete.
163                            max_pkt_per_msg,
164                         rndis_msg->msg.init_complete.
165                            pkt_alignment_factor);
166                 break;
167
168         case RNDIS_MSG_QUERY_C:
169                 netdev_dbg(netdev, "RNDIS_MSG_QUERY_C "
170                         "(len %u, id 0x%x, status 0x%x, buf len %u, "
171                         "buf offset %u)\n",
172                         rndis_msg->msg_len,
173                         rndis_msg->msg.query_complete.req_id,
174                         rndis_msg->msg.query_complete.status,
175                         rndis_msg->msg.query_complete.
176                            info_buflen,
177                         rndis_msg->msg.query_complete.
178                            info_buf_offset);
179                 break;
180
181         case RNDIS_MSG_SET_C:
182                 netdev_dbg(netdev,
183                         "RNDIS_MSG_SET_C (len %u, id 0x%x, status 0x%x)\n",
184                         rndis_msg->msg_len,
185                         rndis_msg->msg.set_complete.req_id,
186                         rndis_msg->msg.set_complete.status);
187                 break;
188
189         case RNDIS_MSG_INDICATE:
190                 netdev_dbg(netdev, "RNDIS_MSG_INDICATE "
191                         "(len %u, status 0x%x, buf len %u, buf offset %u)\n",
192                         rndis_msg->msg_len,
193                         rndis_msg->msg.indicate_status.status,
194                         rndis_msg->msg.indicate_status.status_buflen,
195                         rndis_msg->msg.indicate_status.status_buf_offset);
196                 break;
197
198         default:
199                 netdev_dbg(netdev, "0x%x (len %u)\n",
200                         rndis_msg->ndis_msg_type,
201                         rndis_msg->msg_len);
202                 break;
203         }
204 }
205
206 static int rndis_filter_send_request(struct rndis_device *dev,
207                                   struct rndis_request *req)
208 {
209         int ret;
210         struct hv_netvsc_packet *packet;
211
212         /* Setup the packet to send it */
213         packet = &req->pkt;
214
215         packet->is_data_pkt = false;
216         packet->total_data_buflen = req->request_msg.msg_len;
217         packet->page_buf_cnt = 1;
218
219         packet->page_buf[0].pfn = virt_to_phys(&req->request_msg) >>
220                                         PAGE_SHIFT;
221         packet->page_buf[0].len = req->request_msg.msg_len;
222         packet->page_buf[0].offset =
223                 (unsigned long)&req->request_msg & (PAGE_SIZE - 1);
224
225         /* Add one page_buf when request_msg crossing page boundary */
226         if (packet->page_buf[0].offset + packet->page_buf[0].len > PAGE_SIZE) {
227                 packet->page_buf_cnt++;
228                 packet->page_buf[0].len = PAGE_SIZE -
229                         packet->page_buf[0].offset;
230                 packet->page_buf[1].pfn = virt_to_phys((void *)&req->request_msg
231                         + packet->page_buf[0].len) >> PAGE_SHIFT;
232                 packet->page_buf[1].offset = 0;
233                 packet->page_buf[1].len = req->request_msg.msg_len -
234                         packet->page_buf[0].len;
235         }
236
237         packet->completion.send.send_completion = NULL;
238
239         ret = netvsc_send(dev->net_dev->dev, packet);
240         return ret;
241 }
242
243 static void rndis_filter_receive_response(struct rndis_device *dev,
244                                        struct rndis_message *resp)
245 {
246         struct rndis_request *request = NULL;
247         bool found = false;
248         unsigned long flags;
249         struct net_device *ndev;
250
251         ndev = dev->net_dev->ndev;
252
253         spin_lock_irqsave(&dev->request_lock, flags);
254         list_for_each_entry(request, &dev->req_list, list_ent) {
255                 /*
256                  * All request/response message contains RequestId as the 1st
257                  * field
258                  */
259                 if (request->request_msg.msg.init_req.req_id
260                     == resp->msg.init_complete.req_id) {
261                         found = true;
262                         break;
263                 }
264         }
265         spin_unlock_irqrestore(&dev->request_lock, flags);
266
267         if (found) {
268                 if (resp->msg_len <=
269                     sizeof(struct rndis_message) + RNDIS_EXT_LEN) {
270                         memcpy(&request->response_msg, resp,
271                                resp->msg_len);
272                 } else {
273                         netdev_err(ndev,
274                                 "rndis response buffer overflow "
275                                 "detected (size %u max %zu)\n",
276                                 resp->msg_len,
277                                 sizeof(struct rndis_message));
278
279                         if (resp->ndis_msg_type ==
280                             RNDIS_MSG_RESET_C) {
281                                 /* does not have a request id field */
282                                 request->response_msg.msg.reset_complete.
283                                         status = RNDIS_STATUS_BUFFER_OVERFLOW;
284                         } else {
285                                 request->response_msg.msg.
286                                 init_complete.status =
287                                         RNDIS_STATUS_BUFFER_OVERFLOW;
288                         }
289                 }
290
291                 complete(&request->wait_event);
292         } else {
293                 netdev_err(ndev,
294                         "no rndis request found for this response "
295                         "(id 0x%x res type 0x%x)\n",
296                         resp->msg.init_complete.req_id,
297                         resp->ndis_msg_type);
298         }
299 }
300
301 static void rndis_filter_receive_indicate_status(struct rndis_device *dev,
302                                              struct rndis_message *resp)
303 {
304         struct rndis_indicate_status *indicate =
305                         &resp->msg.indicate_status;
306
307         if (indicate->status == RNDIS_STATUS_MEDIA_CONNECT) {
308                 netvsc_linkstatus_callback(
309                         dev->net_dev->dev, 1);
310         } else if (indicate->status == RNDIS_STATUS_MEDIA_DISCONNECT) {
311                 netvsc_linkstatus_callback(
312                         dev->net_dev->dev, 0);
313         } else {
314                 /*
315                  * TODO:
316                  */
317         }
318 }
319
320 /*
321  * Get the Per-Packet-Info with the specified type
322  * return NULL if not found.
323  */
324 static inline void *rndis_get_ppi(struct rndis_packet *rpkt, u32 type)
325 {
326         struct rndis_per_packet_info *ppi;
327         int len;
328
329         if (rpkt->per_pkt_info_offset == 0)
330                 return NULL;
331
332         ppi = (struct rndis_per_packet_info *)((ulong)rpkt +
333                 rpkt->per_pkt_info_offset);
334         len = rpkt->per_pkt_info_len;
335
336         while (len > 0) {
337                 if (ppi->type == type)
338                         return (void *)((ulong)ppi + ppi->ppi_offset);
339                 len -= ppi->size;
340                 ppi = (struct rndis_per_packet_info *)((ulong)ppi + ppi->size);
341         }
342
343         return NULL;
344 }
345
346 static void rndis_filter_receive_data(struct rndis_device *dev,
347                                    struct rndis_message *msg,
348                                    struct hv_netvsc_packet *pkt)
349 {
350         struct rndis_packet *rndis_pkt;
351         u32 data_offset;
352         struct ndis_pkt_8021q_info *vlan;
353
354         rndis_pkt = &msg->msg.pkt;
355
356         /* Remove the rndis header and pass it back up the stack */
357         data_offset = RNDIS_HEADER_SIZE + rndis_pkt->data_offset;
358
359         pkt->total_data_buflen -= data_offset;
360
361         /*
362          * Make sure we got a valid RNDIS message, now total_data_buflen
363          * should be the data packet size plus the trailer padding size
364          */
365         if (pkt->total_data_buflen < rndis_pkt->data_len) {
366                 netdev_err(dev->net_dev->ndev, "rndis message buffer "
367                            "overflow detected (got %u, min %u)"
368                            "...dropping this message!\n",
369                            pkt->total_data_buflen, rndis_pkt->data_len);
370                 return;
371         }
372
373         /*
374          * Remove the rndis trailer padding from rndis packet message
375          * rndis_pkt->data_len tell us the real data length, we only copy
376          * the data packet to the stack, without the rndis trailer padding
377          */
378         pkt->total_data_buflen = rndis_pkt->data_len;
379         pkt->data = (void *)((unsigned long)pkt->data + data_offset);
380
381         pkt->is_data_pkt = true;
382
383         vlan = rndis_get_ppi(rndis_pkt, IEEE_8021Q_INFO);
384         if (vlan) {
385                 pkt->vlan_tci = VLAN_TAG_PRESENT | vlan->vlanid |
386                         (vlan->pri << VLAN_PRIO_SHIFT);
387         } else {
388                 pkt->vlan_tci = 0;
389         }
390
391         netvsc_recv_callback(dev->net_dev->dev, pkt);
392 }
393
394 int rndis_filter_receive(struct hv_device *dev,
395                                 struct hv_netvsc_packet *pkt)
396 {
397         struct netvsc_device *net_dev = hv_get_drvdata(dev);
398         struct rndis_device *rndis_dev;
399         struct rndis_message *rndis_msg;
400         struct net_device *ndev;
401         int ret = 0;
402
403         if (!net_dev) {
404                 ret = -EINVAL;
405                 goto exit;
406         }
407
408         ndev = net_dev->ndev;
409
410         /* Make sure the rndis device state is initialized */
411         if (!net_dev->extension) {
412                 netdev_err(ndev, "got rndis message but no rndis device - "
413                           "dropping this message!\n");
414                 ret = -ENODEV;
415                 goto exit;
416         }
417
418         rndis_dev = (struct rndis_device *)net_dev->extension;
419         if (rndis_dev->state == RNDIS_DEV_UNINITIALIZED) {
420                 netdev_err(ndev, "got rndis message but rndis device "
421                            "uninitialized...dropping this message!\n");
422                 ret = -ENODEV;
423                 goto exit;
424         }
425
426         rndis_msg = pkt->data;
427
428         dump_rndis_message(dev, rndis_msg);
429
430         switch (rndis_msg->ndis_msg_type) {
431         case RNDIS_MSG_PACKET:
432                 /* data msg */
433                 rndis_filter_receive_data(rndis_dev, rndis_msg, pkt);
434                 break;
435
436         case RNDIS_MSG_INIT_C:
437         case RNDIS_MSG_QUERY_C:
438         case RNDIS_MSG_SET_C:
439                 /* completion msgs */
440                 rndis_filter_receive_response(rndis_dev, rndis_msg);
441                 break;
442
443         case RNDIS_MSG_INDICATE:
444                 /* notification msgs */
445                 rndis_filter_receive_indicate_status(rndis_dev, rndis_msg);
446                 break;
447         default:
448                 netdev_err(ndev,
449                         "unhandled rndis message (type %u len %u)\n",
450                            rndis_msg->ndis_msg_type,
451                            rndis_msg->msg_len);
452                 break;
453         }
454
455 exit:
456         if (ret != 0)
457                 pkt->status = NVSP_STAT_FAIL;
458
459         return ret;
460 }
461
462 static int rndis_filter_query_device(struct rndis_device *dev, u32 oid,
463                                   void *result, u32 *result_size)
464 {
465         struct rndis_request *request;
466         u32 inresult_size = *result_size;
467         struct rndis_query_request *query;
468         struct rndis_query_complete *query_complete;
469         int ret = 0;
470         int t;
471
472         if (!result)
473                 return -EINVAL;
474
475         *result_size = 0;
476         request = get_rndis_request(dev, RNDIS_MSG_QUERY,
477                         RNDIS_MESSAGE_SIZE(struct rndis_query_request));
478         if (!request) {
479                 ret = -ENOMEM;
480                 goto cleanup;
481         }
482
483         /* Setup the rndis query */
484         query = &request->request_msg.msg.query_req;
485         query->oid = oid;
486         query->info_buf_offset = sizeof(struct rndis_query_request);
487         query->info_buflen = 0;
488         query->dev_vc_handle = 0;
489
490         ret = rndis_filter_send_request(dev, request);
491         if (ret != 0)
492                 goto cleanup;
493
494         t = wait_for_completion_timeout(&request->wait_event, 5*HZ);
495         if (t == 0) {
496                 ret = -ETIMEDOUT;
497                 goto cleanup;
498         }
499
500         /* Copy the response back */
501         query_complete = &request->response_msg.msg.query_complete;
502
503         if (query_complete->info_buflen > inresult_size) {
504                 ret = -1;
505                 goto cleanup;
506         }
507
508         memcpy(result,
509                (void *)((unsigned long)query_complete +
510                          query_complete->info_buf_offset),
511                query_complete->info_buflen);
512
513         *result_size = query_complete->info_buflen;
514
515 cleanup:
516         if (request)
517                 put_rndis_request(dev, request);
518
519         return ret;
520 }
521
522 static int rndis_filter_query_device_mac(struct rndis_device *dev)
523 {
524         u32 size = ETH_ALEN;
525
526         return rndis_filter_query_device(dev,
527                                       RNDIS_OID_802_3_PERMANENT_ADDRESS,
528                                       dev->hw_mac_adr, &size);
529 }
530
531 #define NWADR_STR "NetworkAddress"
532 #define NWADR_STRLEN 14
533
534 int rndis_filter_set_device_mac(struct hv_device *hdev, char *mac)
535 {
536         struct netvsc_device *nvdev = hv_get_drvdata(hdev);
537         struct rndis_device *rdev = nvdev->extension;
538         struct net_device *ndev = nvdev->ndev;
539         struct rndis_request *request;
540         struct rndis_set_request *set;
541         struct rndis_config_parameter_info *cpi;
542         wchar_t *cfg_nwadr, *cfg_mac;
543         struct rndis_set_complete *set_complete;
544         char macstr[2*ETH_ALEN+1];
545         u32 extlen = sizeof(struct rndis_config_parameter_info) +
546                 2*NWADR_STRLEN + 4*ETH_ALEN;
547         int ret, t;
548
549         request = get_rndis_request(rdev, RNDIS_MSG_SET,
550                 RNDIS_MESSAGE_SIZE(struct rndis_set_request) + extlen);
551         if (!request)
552                 return -ENOMEM;
553
554         set = &request->request_msg.msg.set_req;
555         set->oid = RNDIS_OID_GEN_RNDIS_CONFIG_PARAMETER;
556         set->info_buflen = extlen;
557         set->info_buf_offset = sizeof(struct rndis_set_request);
558         set->dev_vc_handle = 0;
559
560         cpi = (struct rndis_config_parameter_info *)((ulong)set +
561                 set->info_buf_offset);
562         cpi->parameter_name_offset =
563                 sizeof(struct rndis_config_parameter_info);
564         /* Multiply by 2 because host needs 2 bytes (utf16) for each char */
565         cpi->parameter_name_length = 2*NWADR_STRLEN;
566         cpi->parameter_type = RNDIS_CONFIG_PARAM_TYPE_STRING;
567         cpi->parameter_value_offset =
568                 cpi->parameter_name_offset + cpi->parameter_name_length;
569         /* Multiply by 4 because each MAC byte displayed as 2 utf16 chars */
570         cpi->parameter_value_length = 4*ETH_ALEN;
571
572         cfg_nwadr = (wchar_t *)((ulong)cpi + cpi->parameter_name_offset);
573         cfg_mac = (wchar_t *)((ulong)cpi + cpi->parameter_value_offset);
574         ret = utf8s_to_utf16s(NWADR_STR, NWADR_STRLEN, UTF16_HOST_ENDIAN,
575                               cfg_nwadr, NWADR_STRLEN);
576         if (ret < 0)
577                 goto cleanup;
578         snprintf(macstr, 2*ETH_ALEN+1, "%pm", mac);
579         ret = utf8s_to_utf16s(macstr, 2*ETH_ALEN, UTF16_HOST_ENDIAN,
580                               cfg_mac, 2*ETH_ALEN);
581         if (ret < 0)
582                 goto cleanup;
583
584         ret = rndis_filter_send_request(rdev, request);
585         if (ret != 0)
586                 goto cleanup;
587
588         t = wait_for_completion_timeout(&request->wait_event, 5*HZ);
589         if (t == 0) {
590                 netdev_err(ndev, "timeout before we got a set response...\n");
591                 /*
592                  * can't put_rndis_request, since we may still receive a
593                  * send-completion.
594                  */
595                 return -EBUSY;
596         } else {
597                 set_complete = &request->response_msg.msg.set_complete;
598                 if (set_complete->status != RNDIS_STATUS_SUCCESS) {
599                         netdev_err(ndev, "Fail to set MAC on host side:0x%x\n",
600                                    set_complete->status);
601                         ret = -EINVAL;
602                 }
603         }
604
605 cleanup:
606         put_rndis_request(rdev, request);
607         return ret;
608 }
609
610 int rndis_filter_set_offload_params(struct hv_device *hdev,
611                                 struct ndis_offload_params *req_offloads)
612 {
613         struct netvsc_device *nvdev = hv_get_drvdata(hdev);
614         struct rndis_device *rdev = nvdev->extension;
615         struct net_device *ndev = nvdev->ndev;
616         struct rndis_request *request;
617         struct rndis_set_request *set;
618         struct ndis_offload_params *offload_params;
619         struct rndis_set_complete *set_complete;
620         u32 extlen = sizeof(struct ndis_offload_params);
621         int ret, t;
622
623         request = get_rndis_request(rdev, RNDIS_MSG_SET,
624                 RNDIS_MESSAGE_SIZE(struct rndis_set_request) + extlen);
625         if (!request)
626                 return -ENOMEM;
627
628         set = &request->request_msg.msg.set_req;
629         set->oid = OID_TCP_OFFLOAD_PARAMETERS;
630         set->info_buflen = extlen;
631         set->info_buf_offset = sizeof(struct rndis_set_request);
632         set->dev_vc_handle = 0;
633
634         offload_params = (struct ndis_offload_params *)((ulong)set +
635                                 set->info_buf_offset);
636         *offload_params = *req_offloads;
637         offload_params->header.type = NDIS_OBJECT_TYPE_DEFAULT;
638         offload_params->header.revision = NDIS_OFFLOAD_PARAMETERS_REVISION_3;
639         offload_params->header.size = extlen;
640
641         ret = rndis_filter_send_request(rdev, request);
642         if (ret != 0)
643                 goto cleanup;
644
645         t = wait_for_completion_timeout(&request->wait_event, 5*HZ);
646         if (t == 0) {
647                 netdev_err(ndev, "timeout before we got aOFFLOAD set response...\n");
648                 /* can't put_rndis_request, since we may still receive a
649                  * send-completion.
650                  */
651                 return -EBUSY;
652         } else {
653                 set_complete = &request->response_msg.msg.set_complete;
654                 if (set_complete->status != RNDIS_STATUS_SUCCESS) {
655                         netdev_err(ndev, "Fail to set MAC on host side:0x%x\n",
656                                    set_complete->status);
657                         ret = -EINVAL;
658                 }
659         }
660
661 cleanup:
662         put_rndis_request(rdev, request);
663         return ret;
664 }
665
666 static int rndis_filter_query_device_link_status(struct rndis_device *dev)
667 {
668         u32 size = sizeof(u32);
669         u32 link_status;
670         int ret;
671
672         ret = rndis_filter_query_device(dev,
673                                       RNDIS_OID_GEN_MEDIA_CONNECT_STATUS,
674                                       &link_status, &size);
675         dev->link_state = (link_status != 0) ? true : false;
676
677         return ret;
678 }
679
680 int rndis_filter_set_packet_filter(struct rndis_device *dev, u32 new_filter)
681 {
682         struct rndis_request *request;
683         struct rndis_set_request *set;
684         struct rndis_set_complete *set_complete;
685         u32 status;
686         int ret, t;
687         struct net_device *ndev;
688
689         ndev = dev->net_dev->ndev;
690
691         request = get_rndis_request(dev, RNDIS_MSG_SET,
692                         RNDIS_MESSAGE_SIZE(struct rndis_set_request) +
693                         sizeof(u32));
694         if (!request) {
695                 ret = -ENOMEM;
696                 goto cleanup;
697         }
698
699         /* Setup the rndis set */
700         set = &request->request_msg.msg.set_req;
701         set->oid = RNDIS_OID_GEN_CURRENT_PACKET_FILTER;
702         set->info_buflen = sizeof(u32);
703         set->info_buf_offset = sizeof(struct rndis_set_request);
704
705         memcpy((void *)(unsigned long)set + sizeof(struct rndis_set_request),
706                &new_filter, sizeof(u32));
707
708         ret = rndis_filter_send_request(dev, request);
709         if (ret != 0)
710                 goto cleanup;
711
712         t = wait_for_completion_timeout(&request->wait_event, 5*HZ);
713
714         if (t == 0) {
715                 netdev_err(ndev,
716                         "timeout before we got a set response...\n");
717                 ret = -ETIMEDOUT;
718                 /*
719                  * We can't deallocate the request since we may still receive a
720                  * send completion for it.
721                  */
722                 goto exit;
723         } else {
724                 set_complete = &request->response_msg.msg.set_complete;
725                 status = set_complete->status;
726         }
727
728 cleanup:
729         if (request)
730                 put_rndis_request(dev, request);
731 exit:
732         return ret;
733 }
734
735
736 static int rndis_filter_init_device(struct rndis_device *dev)
737 {
738         struct rndis_request *request;
739         struct rndis_initialize_request *init;
740         struct rndis_initialize_complete *init_complete;
741         u32 status;
742         int ret, t;
743
744         request = get_rndis_request(dev, RNDIS_MSG_INIT,
745                         RNDIS_MESSAGE_SIZE(struct rndis_initialize_request));
746         if (!request) {
747                 ret = -ENOMEM;
748                 goto cleanup;
749         }
750
751         /* Setup the rndis set */
752         init = &request->request_msg.msg.init_req;
753         init->major_ver = RNDIS_MAJOR_VERSION;
754         init->minor_ver = RNDIS_MINOR_VERSION;
755         init->max_xfer_size = 0x4000;
756
757         dev->state = RNDIS_DEV_INITIALIZING;
758
759         ret = rndis_filter_send_request(dev, request);
760         if (ret != 0) {
761                 dev->state = RNDIS_DEV_UNINITIALIZED;
762                 goto cleanup;
763         }
764
765
766         t = wait_for_completion_timeout(&request->wait_event, 5*HZ);
767
768         if (t == 0) {
769                 ret = -ETIMEDOUT;
770                 goto cleanup;
771         }
772
773         init_complete = &request->response_msg.msg.init_complete;
774         status = init_complete->status;
775         if (status == RNDIS_STATUS_SUCCESS) {
776                 dev->state = RNDIS_DEV_INITIALIZED;
777                 ret = 0;
778         } else {
779                 dev->state = RNDIS_DEV_UNINITIALIZED;
780                 ret = -EINVAL;
781         }
782
783 cleanup:
784         if (request)
785                 put_rndis_request(dev, request);
786
787         return ret;
788 }
789
790 static void rndis_filter_halt_device(struct rndis_device *dev)
791 {
792         struct rndis_request *request;
793         struct rndis_halt_request *halt;
794         struct netvsc_device *nvdev = dev->net_dev;
795         struct hv_device *hdev = nvdev->dev;
796         ulong flags;
797
798         /* Attempt to do a rndis device halt */
799         request = get_rndis_request(dev, RNDIS_MSG_HALT,
800                                 RNDIS_MESSAGE_SIZE(struct rndis_halt_request));
801         if (!request)
802                 goto cleanup;
803
804         /* Setup the rndis set */
805         halt = &request->request_msg.msg.halt_req;
806         halt->req_id = atomic_inc_return(&dev->new_req_id);
807
808         /* Ignore return since this msg is optional. */
809         rndis_filter_send_request(dev, request);
810
811         dev->state = RNDIS_DEV_UNINITIALIZED;
812
813 cleanup:
814         spin_lock_irqsave(&hdev->channel->inbound_lock, flags);
815         nvdev->destroy = true;
816         spin_unlock_irqrestore(&hdev->channel->inbound_lock, flags);
817
818         /* Wait for all send completions */
819         wait_event(nvdev->wait_drain,
820                 atomic_read(&nvdev->num_outstanding_sends) == 0);
821
822         if (request)
823                 put_rndis_request(dev, request);
824         return;
825 }
826
827 static int rndis_filter_open_device(struct rndis_device *dev)
828 {
829         int ret;
830
831         if (dev->state != RNDIS_DEV_INITIALIZED)
832                 return 0;
833
834         ret = rndis_filter_set_packet_filter(dev,
835                                          NDIS_PACKET_TYPE_BROADCAST |
836                                          NDIS_PACKET_TYPE_ALL_MULTICAST |
837                                          NDIS_PACKET_TYPE_DIRECTED);
838         if (ret == 0)
839                 dev->state = RNDIS_DEV_DATAINITIALIZED;
840
841         return ret;
842 }
843
844 static int rndis_filter_close_device(struct rndis_device *dev)
845 {
846         int ret;
847
848         if (dev->state != RNDIS_DEV_DATAINITIALIZED)
849                 return 0;
850
851         ret = rndis_filter_set_packet_filter(dev, 0);
852         if (ret == 0)
853                 dev->state = RNDIS_DEV_INITIALIZED;
854
855         return ret;
856 }
857
858 int rndis_filter_device_add(struct hv_device *dev,
859                                   void *additional_info)
860 {
861         int ret;
862         struct netvsc_device *net_device;
863         struct rndis_device *rndis_device;
864         struct netvsc_device_info *device_info = additional_info;
865         struct ndis_offload_params offloads;
866
867         rndis_device = get_rndis_device();
868         if (!rndis_device)
869                 return -ENODEV;
870
871         /*
872          * Let the inner driver handle this first to create the netvsc channel
873          * NOTE! Once the channel is created, we may get a receive callback
874          * (RndisFilterOnReceive()) before this call is completed
875          */
876         ret = netvsc_device_add(dev, additional_info);
877         if (ret != 0) {
878                 kfree(rndis_device);
879                 return ret;
880         }
881
882
883         /* Initialize the rndis device */
884         net_device = hv_get_drvdata(dev);
885
886         net_device->extension = rndis_device;
887         rndis_device->net_dev = net_device;
888
889         /* Send the rndis initialization message */
890         ret = rndis_filter_init_device(rndis_device);
891         if (ret != 0) {
892                 rndis_filter_device_remove(dev);
893                 return ret;
894         }
895
896         /* Get the mac address */
897         ret = rndis_filter_query_device_mac(rndis_device);
898         if (ret != 0) {
899                 rndis_filter_device_remove(dev);
900                 return ret;
901         }
902
903         memcpy(device_info->mac_adr, rndis_device->hw_mac_adr, ETH_ALEN);
904
905         /* Turn on the offloads; the host supports all of the relevant
906          * offloads.
907          */
908         memset(&offloads, 0, sizeof(struct ndis_offload_params));
909         /* A value of zero means "no change"; now turn on what we
910          * want.
911          */
912         offloads.ip_v4_csum = NDIS_OFFLOAD_PARAMETERS_TX_RX_ENABLED;
913         offloads.tcp_ip_v4_csum = NDIS_OFFLOAD_PARAMETERS_TX_RX_ENABLED;
914         offloads.udp_ip_v4_csum = NDIS_OFFLOAD_PARAMETERS_TX_RX_ENABLED;
915         offloads.tcp_ip_v6_csum = NDIS_OFFLOAD_PARAMETERS_TX_RX_ENABLED;
916         offloads.udp_ip_v6_csum = NDIS_OFFLOAD_PARAMETERS_TX_RX_ENABLED;
917         offloads.lso_v2_ipv4 = NDIS_OFFLOAD_PARAMETERS_LSOV2_ENABLED;
918
919
920         ret = rndis_filter_set_offload_params(dev, &offloads);
921         if (ret)
922                 goto err_dev_remv;
923
924
925         rndis_filter_query_device_link_status(rndis_device);
926
927         device_info->link_state = rndis_device->link_state;
928
929         dev_info(&dev->device, "Device MAC %pM link state %s\n",
930                  rndis_device->hw_mac_adr,
931                  device_info->link_state ? "down" : "up");
932
933         return ret;
934
935 err_dev_remv:
936         rndis_filter_device_remove(dev);
937         return ret;
938 }
939
940 void rndis_filter_device_remove(struct hv_device *dev)
941 {
942         struct netvsc_device *net_dev = hv_get_drvdata(dev);
943         struct rndis_device *rndis_dev = net_dev->extension;
944
945         /* Halt and release the rndis device */
946         rndis_filter_halt_device(rndis_dev);
947
948         kfree(rndis_dev);
949         net_dev->extension = NULL;
950
951         netvsc_device_remove(dev);
952 }
953
954
955 int rndis_filter_open(struct hv_device *dev)
956 {
957         struct netvsc_device *net_device = hv_get_drvdata(dev);
958
959         if (!net_device)
960                 return -EINVAL;
961
962         return rndis_filter_open_device(net_device->extension);
963 }
964
965 int rndis_filter_close(struct hv_device *dev)
966 {
967         struct netvsc_device *nvdev = hv_get_drvdata(dev);
968
969         if (!nvdev)
970                 return -EINVAL;
971
972         return rndis_filter_close_device(nvdev->extension);
973 }