]> git.kernelconcepts.de Git - karo-tx-linux.git/blob - drivers/net/hyperv/rndis_filter.c
eaa149950af7efb97793dc1e7d3836f6f860770b
[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
611 static int rndis_filter_query_device_link_status(struct rndis_device *dev)
612 {
613         u32 size = sizeof(u32);
614         u32 link_status;
615         int ret;
616
617         ret = rndis_filter_query_device(dev,
618                                       RNDIS_OID_GEN_MEDIA_CONNECT_STATUS,
619                                       &link_status, &size);
620         dev->link_state = (link_status != 0) ? true : false;
621
622         return ret;
623 }
624
625 int rndis_filter_set_packet_filter(struct rndis_device *dev, u32 new_filter)
626 {
627         struct rndis_request *request;
628         struct rndis_set_request *set;
629         struct rndis_set_complete *set_complete;
630         u32 status;
631         int ret, t;
632         struct net_device *ndev;
633
634         ndev = dev->net_dev->ndev;
635
636         request = get_rndis_request(dev, RNDIS_MSG_SET,
637                         RNDIS_MESSAGE_SIZE(struct rndis_set_request) +
638                         sizeof(u32));
639         if (!request) {
640                 ret = -ENOMEM;
641                 goto cleanup;
642         }
643
644         /* Setup the rndis set */
645         set = &request->request_msg.msg.set_req;
646         set->oid = RNDIS_OID_GEN_CURRENT_PACKET_FILTER;
647         set->info_buflen = sizeof(u32);
648         set->info_buf_offset = sizeof(struct rndis_set_request);
649
650         memcpy((void *)(unsigned long)set + sizeof(struct rndis_set_request),
651                &new_filter, sizeof(u32));
652
653         ret = rndis_filter_send_request(dev, request);
654         if (ret != 0)
655                 goto cleanup;
656
657         t = wait_for_completion_timeout(&request->wait_event, 5*HZ);
658
659         if (t == 0) {
660                 netdev_err(ndev,
661                         "timeout before we got a set response...\n");
662                 ret = -ETIMEDOUT;
663                 /*
664                  * We can't deallocate the request since we may still receive a
665                  * send completion for it.
666                  */
667                 goto exit;
668         } else {
669                 set_complete = &request->response_msg.msg.set_complete;
670                 status = set_complete->status;
671         }
672
673 cleanup:
674         if (request)
675                 put_rndis_request(dev, request);
676 exit:
677         return ret;
678 }
679
680
681 static int rndis_filter_init_device(struct rndis_device *dev)
682 {
683         struct rndis_request *request;
684         struct rndis_initialize_request *init;
685         struct rndis_initialize_complete *init_complete;
686         u32 status;
687         int ret, t;
688
689         request = get_rndis_request(dev, RNDIS_MSG_INIT,
690                         RNDIS_MESSAGE_SIZE(struct rndis_initialize_request));
691         if (!request) {
692                 ret = -ENOMEM;
693                 goto cleanup;
694         }
695
696         /* Setup the rndis set */
697         init = &request->request_msg.msg.init_req;
698         init->major_ver = RNDIS_MAJOR_VERSION;
699         init->minor_ver = RNDIS_MINOR_VERSION;
700         init->max_xfer_size = 0x4000;
701
702         dev->state = RNDIS_DEV_INITIALIZING;
703
704         ret = rndis_filter_send_request(dev, request);
705         if (ret != 0) {
706                 dev->state = RNDIS_DEV_UNINITIALIZED;
707                 goto cleanup;
708         }
709
710
711         t = wait_for_completion_timeout(&request->wait_event, 5*HZ);
712
713         if (t == 0) {
714                 ret = -ETIMEDOUT;
715                 goto cleanup;
716         }
717
718         init_complete = &request->response_msg.msg.init_complete;
719         status = init_complete->status;
720         if (status == RNDIS_STATUS_SUCCESS) {
721                 dev->state = RNDIS_DEV_INITIALIZED;
722                 ret = 0;
723         } else {
724                 dev->state = RNDIS_DEV_UNINITIALIZED;
725                 ret = -EINVAL;
726         }
727
728 cleanup:
729         if (request)
730                 put_rndis_request(dev, request);
731
732         return ret;
733 }
734
735 static void rndis_filter_halt_device(struct rndis_device *dev)
736 {
737         struct rndis_request *request;
738         struct rndis_halt_request *halt;
739         struct netvsc_device *nvdev = dev->net_dev;
740         struct hv_device *hdev = nvdev->dev;
741         ulong flags;
742
743         /* Attempt to do a rndis device halt */
744         request = get_rndis_request(dev, RNDIS_MSG_HALT,
745                                 RNDIS_MESSAGE_SIZE(struct rndis_halt_request));
746         if (!request)
747                 goto cleanup;
748
749         /* Setup the rndis set */
750         halt = &request->request_msg.msg.halt_req;
751         halt->req_id = atomic_inc_return(&dev->new_req_id);
752
753         /* Ignore return since this msg is optional. */
754         rndis_filter_send_request(dev, request);
755
756         dev->state = RNDIS_DEV_UNINITIALIZED;
757
758 cleanup:
759         spin_lock_irqsave(&hdev->channel->inbound_lock, flags);
760         nvdev->destroy = true;
761         spin_unlock_irqrestore(&hdev->channel->inbound_lock, flags);
762
763         /* Wait for all send completions */
764         wait_event(nvdev->wait_drain,
765                 atomic_read(&nvdev->num_outstanding_sends) == 0);
766
767         if (request)
768                 put_rndis_request(dev, request);
769         return;
770 }
771
772 static int rndis_filter_open_device(struct rndis_device *dev)
773 {
774         int ret;
775
776         if (dev->state != RNDIS_DEV_INITIALIZED)
777                 return 0;
778
779         ret = rndis_filter_set_packet_filter(dev,
780                                          NDIS_PACKET_TYPE_BROADCAST |
781                                          NDIS_PACKET_TYPE_ALL_MULTICAST |
782                                          NDIS_PACKET_TYPE_DIRECTED);
783         if (ret == 0)
784                 dev->state = RNDIS_DEV_DATAINITIALIZED;
785
786         return ret;
787 }
788
789 static int rndis_filter_close_device(struct rndis_device *dev)
790 {
791         int ret;
792
793         if (dev->state != RNDIS_DEV_DATAINITIALIZED)
794                 return 0;
795
796         ret = rndis_filter_set_packet_filter(dev, 0);
797         if (ret == 0)
798                 dev->state = RNDIS_DEV_INITIALIZED;
799
800         return ret;
801 }
802
803 int rndis_filter_device_add(struct hv_device *dev,
804                                   void *additional_info)
805 {
806         int ret;
807         struct netvsc_device *net_device;
808         struct rndis_device *rndis_device;
809         struct netvsc_device_info *device_info = additional_info;
810
811         rndis_device = get_rndis_device();
812         if (!rndis_device)
813                 return -ENODEV;
814
815         /*
816          * Let the inner driver handle this first to create the netvsc channel
817          * NOTE! Once the channel is created, we may get a receive callback
818          * (RndisFilterOnReceive()) before this call is completed
819          */
820         ret = netvsc_device_add(dev, additional_info);
821         if (ret != 0) {
822                 kfree(rndis_device);
823                 return ret;
824         }
825
826
827         /* Initialize the rndis device */
828         net_device = hv_get_drvdata(dev);
829
830         net_device->extension = rndis_device;
831         rndis_device->net_dev = net_device;
832
833         /* Send the rndis initialization message */
834         ret = rndis_filter_init_device(rndis_device);
835         if (ret != 0) {
836                 rndis_filter_device_remove(dev);
837                 return ret;
838         }
839
840         /* Get the mac address */
841         ret = rndis_filter_query_device_mac(rndis_device);
842         if (ret != 0) {
843                 rndis_filter_device_remove(dev);
844                 return ret;
845         }
846
847         memcpy(device_info->mac_adr, rndis_device->hw_mac_adr, ETH_ALEN);
848
849         rndis_filter_query_device_link_status(rndis_device);
850
851         device_info->link_state = rndis_device->link_state;
852
853         dev_info(&dev->device, "Device MAC %pM link state %s\n",
854                  rndis_device->hw_mac_adr,
855                  device_info->link_state ? "down" : "up");
856
857         return ret;
858 }
859
860 void rndis_filter_device_remove(struct hv_device *dev)
861 {
862         struct netvsc_device *net_dev = hv_get_drvdata(dev);
863         struct rndis_device *rndis_dev = net_dev->extension;
864
865         /* Halt and release the rndis device */
866         rndis_filter_halt_device(rndis_dev);
867
868         kfree(rndis_dev);
869         net_dev->extension = NULL;
870
871         netvsc_device_remove(dev);
872 }
873
874
875 int rndis_filter_open(struct hv_device *dev)
876 {
877         struct netvsc_device *net_device = hv_get_drvdata(dev);
878
879         if (!net_device)
880                 return -EINVAL;
881
882         return rndis_filter_open_device(net_device->extension);
883 }
884
885 int rndis_filter_close(struct hv_device *dev)
886 {
887         struct netvsc_device *nvdev = hv_get_drvdata(dev);
888
889         if (!nvdev)
890                 return -EINVAL;
891
892         return rndis_filter_close_device(nvdev->extension);
893 }