]> git.proxmox.com Git - mirror_edk2.git/blob - NetworkPkg/HttpDxe/HttpImpl.c
NetworkPkg: update code for NULL pointer check.
[mirror_edk2.git] / NetworkPkg / HttpDxe / HttpImpl.c
1 /** @file
2 Implementation of EFI_HTTP_PROTOCOL protocol interfaces.
3
4 Copyright (c) 2015 - 2016, Intel Corporation. All rights reserved.<BR>
5 (C) Copyright 2015-2016 Hewlett Packard Enterprise Development LP<BR>
6
7 This program and the accompanying materials
8 are licensed and made available under the terms and conditions of the BSD License
9 which accompanies this distribution. The full text of the license may be found at
10 http://opensource.org/licenses/bsd-license.php.
11
12 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
13 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
14
15 **/
16
17 #include "HttpDriver.h"
18
19 EFI_HTTP_PROTOCOL mEfiHttpTemplate = {
20 EfiHttpGetModeData,
21 EfiHttpConfigure,
22 EfiHttpRequest,
23 EfiHttpCancel,
24 EfiHttpResponse,
25 EfiHttpPoll
26 };
27
28 /**
29 Returns the operational parameters for the current HTTP child instance.
30
31 The GetModeData() function is used to read the current mode data (operational
32 parameters) for this HTTP protocol instance.
33
34 @param[in] This Pointer to EFI_HTTP_PROTOCOL instance.
35 @param[out] HttpConfigData Point to buffer for operational parameters of this
36 HTTP instance.
37
38 @retval EFI_SUCCESS Operation succeeded.
39 @retval EFI_INVALID_PARAMETER One or more of the following conditions is TRUE:
40 This is NULL.
41 HttpConfigData is NULL.
42 HttpInstance->LocalAddressIsIPv6 is FALSE and
43 HttpConfigData->IPv4Node is NULL.
44 HttpInstance->LocalAddressIsIPv6 is TRUE and
45 HttpConfigData->IPv6Node is NULL.
46 @retval EFI_NOT_STARTED This EFI HTTP Protocol instance has not been started.
47
48 **/
49 EFI_STATUS
50 EFIAPI
51 EfiHttpGetModeData (
52 IN EFI_HTTP_PROTOCOL *This,
53 OUT EFI_HTTP_CONFIG_DATA *HttpConfigData
54 )
55 {
56 HTTP_PROTOCOL *HttpInstance;
57
58 //
59 // Check input parameters.
60 //
61 if ((This == NULL) || (HttpConfigData == NULL)) {
62 return EFI_INVALID_PARAMETER;
63 }
64
65 HttpInstance = HTTP_INSTANCE_FROM_PROTOCOL (This);
66 ASSERT (HttpInstance != NULL);
67
68 if ((HttpInstance->LocalAddressIsIPv6 && HttpConfigData->AccessPoint.IPv6Node == NULL) ||
69 (!HttpInstance->LocalAddressIsIPv6 && HttpConfigData->AccessPoint.IPv4Node == NULL)) {
70 return EFI_INVALID_PARAMETER;
71 }
72
73 if (HttpInstance->State < HTTP_STATE_HTTP_CONFIGED) {
74 return EFI_NOT_STARTED;
75 }
76
77 HttpConfigData->HttpVersion = HttpInstance->HttpVersion;
78 HttpConfigData->TimeOutMillisec = HttpInstance->TimeOutMillisec;
79 HttpConfigData->LocalAddressIsIPv6 = HttpInstance->LocalAddressIsIPv6;
80
81 if (HttpInstance->LocalAddressIsIPv6) {
82 CopyMem (
83 HttpConfigData->AccessPoint.IPv6Node,
84 &HttpInstance->Ipv6Node,
85 sizeof (HttpInstance->Ipv6Node)
86 );
87 } else {
88 CopyMem (
89 HttpConfigData->AccessPoint.IPv4Node,
90 &HttpInstance->IPv4Node,
91 sizeof (HttpInstance->IPv4Node)
92 );
93 }
94
95 return EFI_SUCCESS;
96 }
97
98 /**
99 Initialize or brutally reset the operational parameters for this EFI HTTP instance.
100
101 The Configure() function does the following:
102 When HttpConfigData is not NULL Initialize this EFI HTTP instance by configuring
103 timeout, local address, port, etc.
104 When HttpConfigData is NULL, reset this EFI HTTP instance by closing all active
105 connections with remote hosts, canceling all asynchronous tokens, and flush request
106 and response buffers without informing the appropriate hosts.
107
108 No other EFI HTTP function can be executed by this instance until the Configure()
109 function is executed and returns successfully.
110
111 @param[in] This Pointer to EFI_HTTP_PROTOCOL instance.
112 @param[in] HttpConfigData Pointer to the configure data to configure the instance.
113
114 @retval EFI_SUCCESS Operation succeeded.
115 @retval EFI_INVALID_PARAMETER One or more of the following conditions is TRUE:
116 This is NULL.
117 HttpConfigData is NULL.
118 HttpConfigData->LocalAddressIsIPv6 is FALSE and
119 HttpConfigData->IPv4Node is NULL.
120 HttpConfigData->LocalAddressIsIPv6 is TRUE and
121 HttpConfigData->IPv6Node is NULL.
122 @retval EFI_ALREADY_STARTED Reinitialize this HTTP instance without calling
123 Configure() with NULL to reset it.
124 @retval EFI_DEVICE_ERROR An unexpected system or network error occurred.
125 @retval EFI_OUT_OF_RESOURCES Could not allocate enough system resources when
126 executing Configure().
127 @retval EFI_UNSUPPORTED One or more options in HttpConfigData are not supported
128 in the implementation.
129 **/
130 EFI_STATUS
131 EFIAPI
132 EfiHttpConfigure (
133 IN EFI_HTTP_PROTOCOL *This,
134 IN EFI_HTTP_CONFIG_DATA *HttpConfigData
135 )
136 {
137 HTTP_PROTOCOL *HttpInstance;
138 EFI_STATUS Status;
139
140 //
141 // Check input parameters.
142 //
143 if (This == NULL ||
144 HttpConfigData == NULL ||
145 ((HttpConfigData->LocalAddressIsIPv6 && HttpConfigData->AccessPoint.IPv6Node == NULL) ||
146 (!HttpConfigData->LocalAddressIsIPv6 && HttpConfigData->AccessPoint.IPv4Node == NULL))) {
147 return EFI_INVALID_PARAMETER;
148 }
149
150 HttpInstance = HTTP_INSTANCE_FROM_PROTOCOL (This);
151 ASSERT (HttpInstance != NULL && HttpInstance->Service != NULL);
152
153 if (HttpConfigData != NULL) {
154
155 //
156 // Now configure this HTTP instance.
157 //
158 if (HttpInstance->State != HTTP_STATE_UNCONFIGED) {
159 return EFI_ALREADY_STARTED;
160 }
161
162 HttpInstance->HttpVersion = HttpConfigData->HttpVersion;
163 HttpInstance->TimeOutMillisec = HttpConfigData->TimeOutMillisec;
164 HttpInstance->LocalAddressIsIPv6 = HttpConfigData->LocalAddressIsIPv6;
165
166 if (HttpConfigData->LocalAddressIsIPv6) {
167 CopyMem (
168 &HttpInstance->Ipv6Node,
169 HttpConfigData->AccessPoint.IPv6Node,
170 sizeof (HttpInstance->Ipv6Node)
171 );
172 } else {
173 CopyMem (
174 &HttpInstance->IPv4Node,
175 HttpConfigData->AccessPoint.IPv4Node,
176 sizeof (HttpInstance->IPv4Node)
177 );
178 }
179
180 //
181 // Creat Tcp child
182 //
183 Status = HttpInitProtocol (HttpInstance, HttpInstance->LocalAddressIsIPv6);
184 if (EFI_ERROR (Status)) {
185 return Status;
186 }
187
188 HttpInstance->State = HTTP_STATE_HTTP_CONFIGED;
189 return EFI_SUCCESS;
190
191 } else {
192 //
193 // Reset all the resources related to HttpInsance.
194 //
195 HttpCleanProtocol (HttpInstance);
196 HttpInstance->State = HTTP_STATE_UNCONFIGED;
197 return EFI_SUCCESS;
198 }
199 }
200
201
202 /**
203 The Request() function queues an HTTP request to this HTTP instance.
204
205 Similar to Transmit() function in the EFI TCP driver. When the HTTP request is sent
206 successfully, or if there is an error, Status in token will be updated and Event will
207 be signaled.
208
209 @param[in] This Pointer to EFI_HTTP_PROTOCOL instance.
210 @param[in] Token Pointer to storage containing HTTP request token.
211
212 @retval EFI_SUCCESS Outgoing data was processed.
213 @retval EFI_NOT_STARTED This EFI HTTP Protocol instance has not been started.
214 @retval EFI_DEVICE_ERROR An unexpected system or network error occurred.
215 @retval EFI_TIMEOUT Data was dropped out of the transmit or receive queue.
216 @retval EFI_OUT_OF_RESOURCES Could not allocate enough system resources.
217 @retval EFI_UNSUPPORTED The HTTP method is not supported in current
218 implementation.
219 @retval EFI_INVALID_PARAMETER One or more of the following conditions is TRUE:
220 This is NULL.
221 Token is NULL.
222 Token->Message is NULL.
223 Token->Message->Body is not NULL,
224 Token->Message->BodyLength is non-zero, and
225 Token->Message->Data is NULL, but a previous call to
226 Request()has not been completed successfully.
227 **/
228 EFI_STATUS
229 EFIAPI
230 EfiHttpRequest (
231 IN EFI_HTTP_PROTOCOL *This,
232 IN EFI_HTTP_TOKEN *Token
233 )
234 {
235 EFI_HTTP_MESSAGE *HttpMsg;
236 EFI_HTTP_REQUEST_DATA *Request;
237 VOID *UrlParser;
238 EFI_STATUS Status;
239 CHAR8 *HostName;
240 UINT16 RemotePort;
241 HTTP_PROTOCOL *HttpInstance;
242 BOOLEAN Configure;
243 BOOLEAN ReConfigure;
244 CHAR8 *RequestMsg;
245 CHAR8 *Url;
246 UINTN UrlLen;
247 CHAR16 *HostNameStr;
248 HTTP_TOKEN_WRAP *Wrap;
249 CHAR8 *FileUrl;
250 UINTN RequestMsgSize;
251
252 //
253 // Initializations
254 //
255 Url = NULL;
256 UrlParser = NULL;
257 HostName = NULL;
258 RequestMsg = NULL;
259 HostNameStr = NULL;
260 Wrap = NULL;
261 FileUrl = NULL;
262
263 if ((This == NULL) || (Token == NULL)) {
264 return EFI_INVALID_PARAMETER;
265 }
266
267 HttpMsg = Token->Message;
268 if (HttpMsg == NULL) {
269 return EFI_INVALID_PARAMETER;
270 }
271
272 Request = HttpMsg->Data.Request;
273
274 //
275 // Only support GET, HEAD, PUT and POST method in current implementation.
276 //
277 if ((Request != NULL) && (Request->Method != HttpMethodGet) &&
278 (Request->Method != HttpMethodHead) && (Request->Method != HttpMethodPut) && (Request->Method != HttpMethodPost)) {
279 return EFI_UNSUPPORTED;
280 }
281
282 HttpInstance = HTTP_INSTANCE_FROM_PROTOCOL (This);
283 ASSERT (HttpInstance != NULL);
284
285 //
286 // Capture the method into HttpInstance.
287 //
288 if (Request != NULL) {
289 HttpInstance->Method = Request->Method;
290 }
291
292 if (HttpInstance->State < HTTP_STATE_HTTP_CONFIGED) {
293 return EFI_NOT_STARTED;
294 }
295
296 if (Request == NULL) {
297 //
298 // Request would be NULL only for PUT/POST operation (in the current implementation)
299 //
300 if ((HttpInstance->Method != HttpMethodPut) && (HttpInstance->Method != HttpMethodPost)) {
301 return EFI_INVALID_PARAMETER;
302 }
303
304 //
305 // For PUT/POST, we need to have the TCP already configured. Bail out if it is not!
306 //
307 if (HttpInstance->State < HTTP_STATE_TCP_CONFIGED) {
308 return EFI_INVALID_PARAMETER;
309 }
310
311 //
312 // We need to have the Message Body for sending the HTTP message across in these cases.
313 //
314 if (HttpMsg->Body == NULL || HttpMsg->BodyLength == 0) {
315 return EFI_INVALID_PARAMETER;
316 }
317
318 //
319 // Use existing TCP instance to transmit the packet.
320 //
321 Configure = FALSE;
322 ReConfigure = FALSE;
323 } else {
324 //
325 // Check whether the token already existed.
326 //
327 if (EFI_ERROR (NetMapIterate (&HttpInstance->TxTokens, HttpTokenExist, Token))) {
328 return EFI_ACCESS_DENIED;
329 }
330
331 //
332 // Parse the URI of the remote host.
333 //
334 Url = HttpInstance->Url;
335 UrlLen = StrLen (Request->Url) + 1;
336 if (UrlLen > HTTP_URL_BUFFER_LEN) {
337 Url = AllocateZeroPool (UrlLen);
338 if (Url == NULL) {
339 return EFI_OUT_OF_RESOURCES;
340 }
341 FreePool (HttpInstance->Url);
342 HttpInstance->Url = Url;
343 }
344
345
346 UnicodeStrToAsciiStr (Request->Url, Url);
347 UrlParser = NULL;
348 Status = HttpParseUrl (Url, (UINT32) AsciiStrLen (Url), FALSE, &UrlParser);
349 if (EFI_ERROR (Status)) {
350 goto Error1;
351 }
352
353 HostName = NULL;
354 Status = HttpUrlGetHostName (Url, UrlParser, &HostName);
355 if (EFI_ERROR (Status)) {
356 goto Error1;
357 }
358
359 Status = HttpUrlGetPort (Url, UrlParser, &RemotePort);
360 if (EFI_ERROR (Status)) {
361 RemotePort = HTTP_DEFAULT_PORT;
362 }
363 //
364 // If Configure is TRUE, it indicates the first time to call Request();
365 // If ReConfigure is TRUE, it indicates the request URL is not same
366 // with the previous call to Request();
367 //
368 Configure = TRUE;
369 ReConfigure = TRUE;
370
371 if (HttpInstance->RemoteHost == NULL) {
372 //
373 // Request() is called the first time.
374 //
375 ReConfigure = FALSE;
376 } else {
377 if ((HttpInstance->RemotePort == RemotePort) &&
378 (AsciiStrCmp (HttpInstance->RemoteHost, HostName) == 0)) {
379 //
380 // Host Name and port number of the request URL are the same with previous call to Request().
381 // Check whether previous TCP packet sent out.
382 //
383
384 if (EFI_ERROR (NetMapIterate (&HttpInstance->TxTokens, HttpTcpNotReady, NULL))) {
385 //
386 // Wrap the HTTP token in HTTP_TOKEN_WRAP
387 //
388 Wrap = AllocateZeroPool (sizeof (HTTP_TOKEN_WRAP));
389 if (Wrap == NULL) {
390 Status = EFI_OUT_OF_RESOURCES;
391 goto Error1;
392 }
393
394 Wrap->HttpToken = Token;
395 Wrap->HttpInstance = HttpInstance;
396
397 Status = HttpCreateTcpTxEvent (Wrap);
398 if (EFI_ERROR (Status)) {
399 goto Error1;
400 }
401
402 Status = NetMapInsertTail (&HttpInstance->TxTokens, Token, Wrap);
403 if (EFI_ERROR (Status)) {
404 goto Error1;
405 }
406
407 Wrap->TcpWrap.Method = Request->Method;
408
409 FreePool (HostName);
410
411 //
412 // Queue the HTTP token and return.
413 //
414 return EFI_SUCCESS;
415 } else {
416 //
417 // Use existing TCP instance to transmit the packet.
418 //
419 Configure = FALSE;
420 ReConfigure = FALSE;
421 }
422 } else {
423 //
424 // Need close existing TCP instance and create a new TCP instance for data transmit.
425 //
426 if (HttpInstance->RemoteHost != NULL) {
427 FreePool (HttpInstance->RemoteHost);
428 HttpInstance->RemoteHost = NULL;
429 HttpInstance->RemotePort = 0;
430 }
431 }
432 }
433 }
434
435 if (Configure) {
436 //
437 // Parse Url for IPv4 or IPv6 address, if failed, perform DNS resolution.
438 //
439 if (!HttpInstance->LocalAddressIsIPv6) {
440 Status = NetLibAsciiStrToIp4 (HostName, &HttpInstance->RemoteAddr);
441 } else {
442 Status = HttpUrlGetIp6 (Url, UrlParser, &HttpInstance->RemoteIpv6Addr);
443 }
444
445 if (EFI_ERROR (Status)) {
446 HostNameStr = AllocateZeroPool ((AsciiStrLen (HostName) + 1) * sizeof (CHAR16));
447 if (HostNameStr == NULL) {
448 Status = EFI_OUT_OF_RESOURCES;
449 goto Error1;
450 }
451
452 AsciiStrToUnicodeStr (HostName, HostNameStr);
453 if (!HttpInstance->LocalAddressIsIPv6) {
454 Status = HttpDns4 (HttpInstance, HostNameStr, &HttpInstance->RemoteAddr);
455 } else {
456 Status = HttpDns6 (HttpInstance, HostNameStr, &HttpInstance->RemoteIpv6Addr);
457 }
458
459 FreePool (HostNameStr);
460 if (EFI_ERROR (Status)) {
461 goto Error1;
462 }
463 }
464
465
466 //
467 // Save the RemotePort and RemoteHost.
468 //
469 ASSERT (HttpInstance->RemoteHost == NULL);
470 HttpInstance->RemotePort = RemotePort;
471 HttpInstance->RemoteHost = HostName;
472 HostName = NULL;
473 }
474
475 if (ReConfigure) {
476 //
477 // The request URL is different from previous calls to Request(), close existing TCP instance.
478 //
479 if (!HttpInstance->LocalAddressIsIPv6) {
480 ASSERT (HttpInstance->Tcp4 != NULL);
481 } else {
482 ASSERT (HttpInstance->Tcp6 != NULL);
483 }
484 HttpCloseConnection (HttpInstance);
485 EfiHttpCancel (This, NULL);
486 }
487
488 //
489 // Wrap the HTTP token in HTTP_TOKEN_WRAP
490 //
491 Wrap = AllocateZeroPool (sizeof (HTTP_TOKEN_WRAP));
492 if (Wrap == NULL) {
493 Status = EFI_OUT_OF_RESOURCES;
494 goto Error1;
495 }
496
497 Wrap->HttpToken = Token;
498 Wrap->HttpInstance = HttpInstance;
499 if (Request != NULL) {
500 Wrap->TcpWrap.Method = Request->Method;
501 }
502
503 Status = HttpInitTcp (HttpInstance, Wrap, Configure);
504 if (EFI_ERROR (Status)) {
505 goto Error2;
506 }
507
508 if (!Configure) {
509 //
510 // For the new HTTP token, create TX TCP token events.
511 //
512 Status = HttpCreateTcpTxEvent (Wrap);
513 if (EFI_ERROR (Status)) {
514 goto Error1;
515 }
516 }
517
518 //
519 // Create request message.
520 //
521 FileUrl = Url;
522 if (Url != NULL && *FileUrl != '/') {
523 //
524 // Convert the absolute-URI to the absolute-path
525 //
526 while (*FileUrl != ':') {
527 FileUrl++;
528 }
529 if ((*(FileUrl+1) == '/') && (*(FileUrl+2) == '/')) {
530 FileUrl += 3;
531 while (*FileUrl != '/') {
532 FileUrl++;
533 }
534 } else {
535 Status = EFI_INVALID_PARAMETER;
536 goto Error3;
537 }
538 }
539
540 Status = HttpGenRequestMessage (HttpMsg, FileUrl, &RequestMsg, &RequestMsgSize);
541
542 if (EFI_ERROR (Status)) {
543 goto Error3;
544 }
545
546 //
547 // Every request we insert a TxToken and a response call would remove the TxToken.
548 // In cases of PUT/POST, after an initial request-response pair, we would do a
549 // continuous request without a response call. So, in such cases, where Request
550 // structure is NULL, we would not insert a TxToken.
551 //
552 if (Request != NULL) {
553 Status = NetMapInsertTail (&HttpInstance->TxTokens, Token, Wrap);
554 if (EFI_ERROR (Status)) {
555 goto Error4;
556 }
557 }
558
559 //
560 // Transmit the request message.
561 //
562 Status = HttpTransmitTcp (
563 HttpInstance,
564 Wrap,
565 (UINT8*) RequestMsg,
566 RequestMsgSize
567 );
568 if (EFI_ERROR (Status)) {
569 goto Error5;
570 }
571
572 DispatchDpc ();
573
574 if (HostName != NULL) {
575 FreePool (HostName);
576 }
577
578 return EFI_SUCCESS;
579
580 Error5:
581 //
582 // We would have inserted a TxToken only if Request structure is not NULL.
583 // Hence check before we do a remove in this error case.
584 //
585 if (Request != NULL) {
586 NetMapRemoveTail (&HttpInstance->TxTokens, NULL);
587 }
588
589 Error4:
590 if (RequestMsg != NULL) {
591 FreePool (RequestMsg);
592 }
593
594 Error3:
595 HttpCloseConnection (HttpInstance);
596
597 Error2:
598 HttpCloseTcpConnCloseEvent (HttpInstance);
599 if (NULL != Wrap->TcpWrap.Tx4Token.CompletionToken.Event) {
600 gBS->CloseEvent (Wrap->TcpWrap.Tx4Token.CompletionToken.Event);
601 Wrap->TcpWrap.Tx4Token.CompletionToken.Event = NULL;
602 }
603 if (NULL != Wrap->TcpWrap.Tx6Token.CompletionToken.Event) {
604 gBS->CloseEvent (Wrap->TcpWrap.Tx6Token.CompletionToken.Event);
605 Wrap->TcpWrap.Tx6Token.CompletionToken.Event = NULL;
606 }
607
608 Error1:
609
610 if (HostName != NULL) {
611 FreePool (HostName);
612 }
613 if (Wrap != NULL) {
614 FreePool (Wrap);
615 }
616 if (UrlParser!= NULL) {
617 HttpUrlFreeParser (UrlParser);
618 }
619
620 return Status;
621
622 }
623
624 /**
625 Cancel a user's Token.
626
627 @param[in] Map The HTTP instance's token queue.
628 @param[in] Item Object container for one HTTP token and token's wrap.
629 @param[in] Context The user's token to cancel.
630
631 @retval EFI_SUCCESS Continue to check the next Item.
632 @retval EFI_ABORTED The user's Token (Token != NULL) is cancelled.
633
634 **/
635 EFI_STATUS
636 EFIAPI
637 HttpCancelTokens (
638 IN NET_MAP *Map,
639 IN NET_MAP_ITEM *Item,
640 IN VOID *Context
641 )
642 {
643
644 EFI_HTTP_TOKEN *Token;
645 HTTP_TOKEN_WRAP *Wrap;
646 HTTP_PROTOCOL *HttpInstance;
647
648 Token = (EFI_HTTP_TOKEN *) Context;
649
650 //
651 // Return EFI_SUCCESS to check the next item in the map if
652 // this one doesn't match.
653 //
654 if ((Token != NULL) && (Token != Item->Key)) {
655 return EFI_SUCCESS;
656 }
657
658 Wrap = (HTTP_TOKEN_WRAP *) Item->Value;
659 ASSERT (Wrap != NULL);
660 HttpInstance = Wrap->HttpInstance;
661
662 //
663 // Free resources.
664 //
665 NetMapRemoveItem (Map, Item, NULL);
666
667 if (!HttpInstance->LocalAddressIsIPv6) {
668 if (Wrap->TcpWrap.Tx4Token.CompletionToken.Event != NULL) {
669 gBS->CloseEvent (Wrap->TcpWrap.Tx4Token.CompletionToken.Event);
670 }
671
672 if (Wrap->TcpWrap.Rx4Token.CompletionToken.Event != NULL) {
673 gBS->CloseEvent (Wrap->TcpWrap.Rx4Token.CompletionToken.Event);
674 }
675
676 if (Wrap->TcpWrap.Rx4Token.Packet.RxData->FragmentTable[0].FragmentBuffer != NULL) {
677 FreePool (Wrap->TcpWrap.Rx4Token.Packet.RxData->FragmentTable[0].FragmentBuffer);
678 }
679
680 } else {
681 if (Wrap->TcpWrap.Tx6Token.CompletionToken.Event != NULL) {
682 gBS->CloseEvent (Wrap->TcpWrap.Tx6Token.CompletionToken.Event);
683 }
684
685 if (Wrap->TcpWrap.Rx6Token.CompletionToken.Event != NULL) {
686 gBS->CloseEvent (Wrap->TcpWrap.Rx6Token.CompletionToken.Event);
687 }
688
689 if (Wrap->TcpWrap.Rx6Token.Packet.RxData->FragmentTable[0].FragmentBuffer != NULL) {
690 FreePool (Wrap->TcpWrap.Rx6Token.Packet.RxData->FragmentTable[0].FragmentBuffer);
691 }
692 }
693
694
695 FreePool (Wrap);
696
697 //
698 // If only one item is to be cancel, return EFI_ABORTED to stop
699 // iterating the map any more.
700 //
701 if (Token != NULL) {
702 return EFI_ABORTED;
703 }
704
705 return EFI_SUCCESS;
706 }
707
708 /**
709 Cancel the user's receive/transmit request. It is the worker function of
710 EfiHttpCancel API. If a matching token is found, it will call HttpCancelTokens to cancel the
711 token.
712
713 @param[in] HttpInstance Pointer to HTTP_PROTOCOL structure.
714 @param[in] Token The token to cancel. If NULL, all token will be
715 cancelled.
716
717 @retval EFI_SUCCESS The token is cancelled.
718 @retval EFI_NOT_FOUND The asynchronous request or response token is not found.
719 @retval Others Other error as indicated.
720
721 **/
722 EFI_STATUS
723 HttpCancel (
724 IN HTTP_PROTOCOL *HttpInstance,
725 IN EFI_HTTP_TOKEN *Token
726 )
727 {
728 EFI_STATUS Status;
729
730 //
731 // First check the tokens queued by EfiHttpRequest().
732 //
733 Status = NetMapIterate (&HttpInstance->TxTokens, HttpCancelTokens, Token);
734 if (EFI_ERROR (Status)) {
735 if (Token != NULL) {
736 if (Status == EFI_ABORTED) {
737 return EFI_SUCCESS;
738 }
739 } else {
740 return Status;
741 }
742 }
743
744 //
745 // Then check the tokens queued by EfiHttpResponse().
746 //
747 Status = NetMapIterate (&HttpInstance->RxTokens, HttpCancelTokens, Token);
748 if (EFI_ERROR (Status)) {
749 if (Token != NULL) {
750 if (Status == EFI_ABORTED) {
751 return EFI_SUCCESS;
752 } else {
753 return EFI_NOT_FOUND;
754 }
755 } else {
756 return Status;
757 }
758 }
759
760 return EFI_SUCCESS;
761 }
762
763
764 /**
765 Abort an asynchronous HTTP request or response token.
766
767 The Cancel() function aborts a pending HTTP request or response transaction. If
768 Token is not NULL and the token is in transmit or receive queues when it is being
769 cancelled, its Token->Status will be set to EFI_ABORTED and then Token->Event will
770 be signaled. If the token is not in one of the queues, which usually means that the
771 asynchronous operation has completed, EFI_NOT_FOUND is returned. If Token is NULL,
772 all asynchronous tokens issued by Request() or Response() will be aborted.
773
774 @param[in] This Pointer to EFI_HTTP_PROTOCOL instance.
775 @param[in] Token Point to storage containing HTTP request or response
776 token.
777
778 @retval EFI_SUCCESS Request and Response queues are successfully flushed.
779 @retval EFI_INVALID_PARAMETER This is NULL.
780 @retval EFI_NOT_STARTED This instance hasn't been configured.
781 @retval EFI_NOT_FOUND The asynchronous request or response token is not
782 found.
783 @retval EFI_UNSUPPORTED The implementation does not support this function.
784
785 **/
786 EFI_STATUS
787 EFIAPI
788 EfiHttpCancel (
789 IN EFI_HTTP_PROTOCOL *This,
790 IN EFI_HTTP_TOKEN *Token
791 )
792 {
793 HTTP_PROTOCOL *HttpInstance;
794
795 if (This == NULL) {
796 return EFI_INVALID_PARAMETER;
797 }
798
799 HttpInstance = HTTP_INSTANCE_FROM_PROTOCOL (This);
800 ASSERT (HttpInstance != NULL);
801
802 if (HttpInstance->State != HTTP_STATE_TCP_CONNECTED) {
803 return EFI_NOT_STARTED;
804 }
805
806 return HttpCancel (HttpInstance, Token);
807
808 }
809
810 /**
811 A callback function to intercept events during message parser.
812
813 This function will be invoked during HttpParseMessageBody() with various events type. An error
814 return status of the callback function will cause the HttpParseMessageBody() aborted.
815
816 @param[in] EventType Event type of this callback call.
817 @param[in] Data A pointer to data buffer.
818 @param[in] Length Length in bytes of the Data.
819 @param[in] Context Callback context set by HttpInitMsgParser().
820
821 @retval EFI_SUCCESS Continue to parser the message body.
822
823 **/
824 EFI_STATUS
825 EFIAPI
826 HttpBodyParserCallback (
827 IN HTTP_BODY_PARSE_EVENT EventType,
828 IN CHAR8 *Data,
829 IN UINTN Length,
830 IN VOID *Context
831 )
832 {
833 HTTP_TOKEN_WRAP *Wrap;
834 UINTN BodyLength;
835 CHAR8 *Body;
836
837 if (EventType != BodyParseEventOnComplete) {
838 return EFI_SUCCESS;
839 }
840
841 if (Data == NULL || Length != 0 || Context == NULL) {
842 return EFI_SUCCESS;
843 }
844
845 Wrap = (HTTP_TOKEN_WRAP *) Context;
846 Body = Wrap->HttpToken->Message->Body;
847 BodyLength = Wrap->HttpToken->Message->BodyLength;
848 if (Data < Body + BodyLength) {
849 Wrap->HttpInstance->NextMsg = Data;
850 } else {
851 Wrap->HttpInstance->NextMsg = NULL;
852 }
853
854
855 //
856 // Free Tx4Token or Tx6Token since already received corrsponding HTTP response.
857 //
858 FreePool (Wrap);
859
860 return EFI_SUCCESS;
861 }
862
863 /**
864 The work function of EfiHttpResponse().
865
866 @param[in] Wrap Pointer to HTTP token's wrap data.
867
868 @retval EFI_SUCCESS Allocation succeeded.
869 @retval EFI_OUT_OF_RESOURCES Failed to complete the opration due to lack of resources.
870 @retval EFI_NOT_READY Can't find a corresponding Tx4Token/Tx6Token or
871 the EFI_HTTP_UTILITIES_PROTOCOL is not available.
872
873 **/
874 EFI_STATUS
875 HttpResponseWorker (
876 IN HTTP_TOKEN_WRAP *Wrap
877 )
878 {
879 EFI_STATUS Status;
880 EFI_HTTP_MESSAGE *HttpMsg;
881 CHAR8 *EndofHeader;
882 CHAR8 *HttpHeaders;
883 UINTN SizeofHeaders;
884 UINTN BufferSize;
885 UINTN StatusCode;
886 CHAR8 *Tmp;
887 CHAR8 *HeaderTmp;
888 CHAR8 *StatusCodeStr;
889 UINTN BodyLen;
890 HTTP_PROTOCOL *HttpInstance;
891 EFI_HTTP_TOKEN *Token;
892 NET_MAP_ITEM *Item;
893 HTTP_TOKEN_WRAP *ValueInItem;
894 UINTN HdrLen;
895
896 if (Wrap == NULL || Wrap->HttpInstance == NULL) {
897 return EFI_INVALID_PARAMETER;
898 }
899
900 HttpInstance = Wrap->HttpInstance;
901 Token = Wrap->HttpToken;
902 HttpMsg = Token->Message;
903
904 HttpInstance->EndofHeader = NULL;
905 HttpInstance->HttpHeaders = NULL;
906 HttpMsg->Headers = NULL;
907 HttpHeaders = NULL;
908 SizeofHeaders = 0;
909 BufferSize = 0;
910 EndofHeader = NULL;
911
912 if (HttpMsg->Data.Response != NULL) {
913 //
914 // Need receive the HTTP headers, prepare buffer.
915 //
916 Status = HttpCreateTcpRxEventForHeader (HttpInstance);
917 if (EFI_ERROR (Status)) {
918 goto Error;
919 }
920
921 //
922 // Check whether we have cached header from previous call.
923 //
924 if ((HttpInstance->CacheBody != NULL) && (HttpInstance->NextMsg != NULL)) {
925 //
926 // The data is stored at [NextMsg, CacheBody + CacheLen].
927 //
928 HdrLen = HttpInstance->CacheBody + HttpInstance->CacheLen - HttpInstance->NextMsg;
929 HttpHeaders = AllocateZeroPool (HdrLen);
930 if (HttpHeaders == NULL) {
931 Status = EFI_OUT_OF_RESOURCES;
932 goto Error;
933 }
934
935 CopyMem (HttpHeaders, HttpInstance->NextMsg, HdrLen);
936 FreePool (HttpInstance->CacheBody);
937 HttpInstance->CacheBody = NULL;
938 HttpInstance->NextMsg = NULL;
939 HttpInstance->CacheOffset = 0;
940 SizeofHeaders = HdrLen;
941 BufferSize = HttpInstance->CacheLen;
942
943 //
944 // Check whether we cached the whole HTTP headers.
945 //
946 EndofHeader = AsciiStrStr (HttpHeaders, HTTP_END_OF_HDR_STR);
947 }
948
949 HttpInstance->EndofHeader = &EndofHeader;
950 HttpInstance->HttpHeaders = &HttpHeaders;
951
952
953 if (HttpInstance->TimeoutEvent == NULL) {
954 //
955 // Create TimeoutEvent for response
956 //
957 Status = gBS->CreateEvent (
958 EVT_TIMER,
959 TPL_CALLBACK,
960 NULL,
961 NULL,
962 &HttpInstance->TimeoutEvent
963 );
964 if (EFI_ERROR (Status)) {
965 goto Error;
966 }
967 }
968
969 //
970 // Start the timer, and wait Timeout seconds to receive the header packet.
971 //
972 Status = gBS->SetTimer (HttpInstance->TimeoutEvent, TimerRelative, HTTP_RESPONSE_TIMEOUT * TICKS_PER_SECOND);
973 if (EFI_ERROR (Status)) {
974 goto Error;
975 }
976
977 Status = HttpTcpReceiveHeader (HttpInstance, &SizeofHeaders, &BufferSize, HttpInstance->TimeoutEvent);
978
979 gBS->SetTimer (HttpInstance->TimeoutEvent, TimerCancel, 0);
980
981 if (EFI_ERROR (Status)) {
982 goto Error;
983 }
984
985 ASSERT (HttpHeaders != NULL);
986
987 //
988 // Cache the part of body.
989 //
990 BodyLen = BufferSize - (EndofHeader - HttpHeaders);
991 if (BodyLen > 0) {
992 if (HttpInstance->CacheBody != NULL) {
993 FreePool (HttpInstance->CacheBody);
994 }
995
996 HttpInstance->CacheBody = AllocateZeroPool (BodyLen);
997 if (HttpInstance->CacheBody == NULL) {
998 Status = EFI_OUT_OF_RESOURCES;
999 goto Error;
1000 }
1001
1002 CopyMem (HttpInstance->CacheBody, EndofHeader, BodyLen);
1003 HttpInstance->CacheLen = BodyLen;
1004 }
1005
1006 //
1007 // Search for Status Code.
1008 //
1009 StatusCodeStr = HttpHeaders + AsciiStrLen (HTTP_VERSION_STR) + 1;
1010 if (StatusCodeStr == NULL) {
1011 goto Error;
1012 }
1013
1014 StatusCode = AsciiStrDecimalToUintn (StatusCodeStr);
1015
1016 //
1017 // Remove the first line of HTTP message, e.g. "HTTP/1.1 200 OK\r\n".
1018 //
1019 Tmp = AsciiStrStr (HttpHeaders, HTTP_CRLF_STR);
1020 if (Tmp == NULL) {
1021 goto Error;
1022 }
1023
1024 //
1025 // We could have response with just a HTTP message and no headers. For Example,
1026 // "100 Continue". In such cases, we would not want to unnecessarily call a Parse
1027 // method. A "\r\n" following Tmp string again would indicate an end. Compare and
1028 // set SizeofHeaders to 0.
1029 //
1030 Tmp = Tmp + AsciiStrLen (HTTP_CRLF_STR);
1031 if (CompareMem (Tmp, HTTP_CRLF_STR, AsciiStrLen (HTTP_CRLF_STR)) == 0) {
1032 SizeofHeaders = 0;
1033 } else {
1034 SizeofHeaders = SizeofHeaders - (Tmp - HttpHeaders);
1035 }
1036
1037 HttpMsg->Data.Response->StatusCode = HttpMappingToStatusCode (StatusCode);
1038 HttpInstance->StatusCode = StatusCode;
1039
1040 Status = EFI_NOT_READY;
1041 ValueInItem = NULL;
1042
1043 //
1044 // In cases of PUT/POST, after an initial request-response pair, we would do a
1045 // continuous request without a response call. So, we would not do an insert of
1046 // TxToken. After we have sent the complete file, we will call a response to get
1047 // a final response from server. In such a case, we would not have any TxTokens.
1048 // Hence, check that case before doing a NetMapRemoveHead.
1049 //
1050 if (!NetMapIsEmpty (&HttpInstance->TxTokens)) {
1051 NetMapRemoveHead (&HttpInstance->TxTokens, (VOID**) &ValueInItem);
1052 if (ValueInItem == NULL) {
1053 goto Error;
1054 }
1055
1056 //
1057 // The first Tx Token not transmitted yet, insert back and return error.
1058 //
1059 if (!ValueInItem->TcpWrap.IsTxDone) {
1060 goto Error2;
1061 }
1062 }
1063
1064 if (SizeofHeaders != 0) {
1065 HeaderTmp = AllocateZeroPool (SizeofHeaders);
1066 if (HeaderTmp == NULL) {
1067 goto Error2;
1068 }
1069
1070 CopyMem (HeaderTmp, Tmp, SizeofHeaders);
1071 FreePool (HttpHeaders);
1072 HttpHeaders = HeaderTmp;
1073
1074 //
1075 // Check whether the EFI_HTTP_UTILITIES_PROTOCOL is available.
1076 //
1077 if (mHttpUtilities == NULL) {
1078 Status = EFI_NOT_READY;
1079 goto Error2;
1080 }
1081
1082 //
1083 // Parse the HTTP header into array of key/value pairs.
1084 //
1085 Status = mHttpUtilities->Parse (
1086 mHttpUtilities,
1087 HttpHeaders,
1088 SizeofHeaders,
1089 &HttpMsg->Headers,
1090 &HttpMsg->HeaderCount
1091 );
1092 if (EFI_ERROR (Status)) {
1093 goto Error2;
1094 }
1095
1096 FreePool (HttpHeaders);
1097 HttpHeaders = NULL;
1098
1099
1100 //
1101 // Init message-body parser by header information.
1102 //
1103 Status = HttpInitMsgParser (
1104 HttpInstance->Method,
1105 HttpMsg->Data.Response->StatusCode,
1106 HttpMsg->HeaderCount,
1107 HttpMsg->Headers,
1108 HttpBodyParserCallback,
1109 (VOID *) ValueInItem,
1110 &HttpInstance->MsgParser
1111 );
1112 if (EFI_ERROR (Status)) {
1113 goto Error2;
1114 }
1115
1116 //
1117 // Check whether we received a complete HTTP message.
1118 //
1119 if (HttpInstance->CacheBody != NULL) {
1120 Status = HttpParseMessageBody (HttpInstance->MsgParser, HttpInstance->CacheLen, HttpInstance->CacheBody);
1121 if (EFI_ERROR (Status)) {
1122 goto Error2;
1123 }
1124
1125 if (HttpIsMessageComplete (HttpInstance->MsgParser)) {
1126 //
1127 // Free the MsgParse since we already have a full HTTP message.
1128 //
1129 HttpFreeMsgParser (HttpInstance->MsgParser);
1130 HttpInstance->MsgParser = NULL;
1131 }
1132 }
1133 }
1134
1135 if ((HttpMsg->Body == NULL) || (HttpMsg->BodyLength == 0)) {
1136 Status = EFI_SUCCESS;
1137 goto Exit;
1138 }
1139 }
1140
1141 //
1142 // Receive the response body.
1143 //
1144 BodyLen = 0;
1145
1146 //
1147 // First check whether we cached some data.
1148 //
1149 if (HttpInstance->CacheBody != NULL) {
1150 //
1151 // Calculate the length of the cached data.
1152 //
1153 if (HttpInstance->NextMsg != NULL) {
1154 //
1155 // We have a cached HTTP message which includes a part of HTTP header of next message.
1156 //
1157 BodyLen = HttpInstance->NextMsg - (HttpInstance->CacheBody + HttpInstance->CacheOffset);
1158 } else {
1159 BodyLen = HttpInstance->CacheLen - HttpInstance->CacheOffset;
1160 }
1161
1162 if (BodyLen > 0) {
1163 //
1164 // We have some cached data. Just copy the data and return.
1165 //
1166 if (HttpMsg->BodyLength < BodyLen) {
1167 CopyMem (HttpMsg->Body, HttpInstance->CacheBody + HttpInstance->CacheOffset, HttpMsg->BodyLength);
1168 HttpInstance->CacheOffset = HttpInstance->CacheOffset + HttpMsg->BodyLength;
1169 } else {
1170 //
1171 // Copy all cached data out.
1172 //
1173 CopyMem (HttpMsg->Body, HttpInstance->CacheBody + HttpInstance->CacheOffset, BodyLen);
1174 HttpInstance->CacheOffset = BodyLen + HttpInstance->CacheOffset;
1175 HttpMsg->BodyLength = BodyLen;
1176
1177 if (HttpInstance->NextMsg == NULL) {
1178 //
1179 // There is no HTTP header of next message. Just free the cache buffer.
1180 //
1181 FreePool (HttpInstance->CacheBody);
1182 HttpInstance->CacheBody = NULL;
1183 HttpInstance->NextMsg = NULL;
1184 HttpInstance->CacheOffset = 0;
1185 }
1186 }
1187 //
1188 // Return since we aready received required data.
1189 //
1190 Status = EFI_SUCCESS;
1191 goto Exit;
1192 }
1193
1194 if (BodyLen == 0 && HttpInstance->MsgParser == NULL) {
1195 //
1196 // We received a complete HTTP message, and we don't have more data to return to caller.
1197 //
1198 HttpMsg->BodyLength = 0;
1199 Status = EFI_SUCCESS;
1200 goto Exit;
1201 }
1202 }
1203
1204 ASSERT (HttpInstance->MsgParser != NULL);
1205
1206 if (HttpInstance->TimeoutEvent == NULL) {
1207 //
1208 // Create TimeoutEvent for response
1209 //
1210 Status = gBS->CreateEvent (
1211 EVT_TIMER,
1212 TPL_CALLBACK,
1213 NULL,
1214 NULL,
1215 &HttpInstance->TimeoutEvent
1216 );
1217 if (EFI_ERROR (Status)) {
1218 goto Error2;
1219 }
1220 }
1221
1222 //
1223 // Start the timer, and wait Timeout seconds to receive the body packet.
1224 //
1225 Status = gBS->SetTimer (HttpInstance->TimeoutEvent, TimerRelative, HTTP_RESPONSE_TIMEOUT * TICKS_PER_SECOND);
1226 if (EFI_ERROR (Status)) {
1227 goto Error2;
1228 }
1229
1230 //
1231 // We still need receive more data when there is no cache data and MsgParser is not NULL;
1232 //
1233 Status = HttpTcpReceiveBody (Wrap, HttpMsg, HttpInstance->TimeoutEvent);
1234
1235 gBS->SetTimer (HttpInstance->TimeoutEvent, TimerCancel, 0);
1236
1237 if (EFI_ERROR (Status)) {
1238 goto Error2;
1239 }
1240
1241 FreePool (Wrap);
1242 return Status;
1243
1244 Exit:
1245 Item = NetMapFindKey (&Wrap->HttpInstance->RxTokens, Wrap->HttpToken);
1246 if (Item != NULL) {
1247 NetMapRemoveItem (&Wrap->HttpInstance->RxTokens, Item, NULL);
1248 }
1249
1250 if (HttpInstance->StatusCode >= HTTP_ERROR_OR_NOT_SUPPORT_STATUS_CODE) {
1251 Token->Status = EFI_HTTP_ERROR;
1252 } else {
1253 Token->Status = Status;
1254 }
1255
1256 gBS->SignalEvent (Token->Event);
1257 HttpCloseTcpRxEvent (Wrap);
1258 FreePool (Wrap);
1259 return Status;
1260
1261 Error2:
1262 if (ValueInItem != NULL) {
1263 NetMapInsertHead (&HttpInstance->TxTokens, ValueInItem->HttpToken, ValueInItem);
1264 }
1265
1266 Error:
1267 HttpTcpTokenCleanup (Wrap);
1268
1269 if (HttpHeaders != NULL) {
1270 FreePool (HttpHeaders);
1271 }
1272
1273 if (HttpMsg->Headers != NULL) {
1274 FreePool (HttpMsg->Headers);
1275 }
1276
1277 if (HttpInstance->CacheBody != NULL) {
1278 FreePool (HttpInstance->CacheBody);
1279 HttpInstance->CacheBody = NULL;
1280 }
1281
1282 if (HttpInstance->StatusCode >= HTTP_ERROR_OR_NOT_SUPPORT_STATUS_CODE) {
1283 Token->Status = EFI_HTTP_ERROR;
1284 } else {
1285 Token->Status = Status;
1286 }
1287
1288 gBS->SignalEvent (Token->Event);
1289
1290 return Status;
1291
1292 }
1293
1294
1295 /**
1296 The Response() function queues an HTTP response to this HTTP instance, similar to
1297 Receive() function in the EFI TCP driver. When the HTTP response is received successfully,
1298 or if there is an error, Status in token will be updated and Event will be signaled.
1299
1300 The HTTP driver will queue a receive token to the underlying TCP instance. When data
1301 is received in the underlying TCP instance, the data will be parsed and Token will
1302 be populated with the response data. If the data received from the remote host
1303 contains an incomplete or invalid HTTP header, the HTTP driver will continue waiting
1304 (asynchronously) for more data to be sent from the remote host before signaling
1305 Event in Token.
1306
1307 It is the responsibility of the caller to allocate a buffer for Body and specify the
1308 size in BodyLength. If the remote host provides a response that contains a content
1309 body, up to BodyLength bytes will be copied from the receive buffer into Body and
1310 BodyLength will be updated with the amount of bytes received and copied to Body. This
1311 allows the client to download a large file in chunks instead of into one contiguous
1312 block of memory. Similar to HTTP request, if Body is not NULL and BodyLength is
1313 non-zero and all other fields are NULL or 0, the HTTP driver will queue a receive
1314 token to underlying TCP instance. If data arrives in the receive buffer, up to
1315 BodyLength bytes of data will be copied to Body. The HTTP driver will then update
1316 BodyLength with the amount of bytes received and copied to Body.
1317
1318 If the HTTP driver does not have an open underlying TCP connection with the host
1319 specified in the response URL, Request() will return EFI_ACCESS_DENIED. This is
1320 consistent with RFC 2616 recommendation that HTTP clients should attempt to maintain
1321 an open TCP connection between client and host.
1322
1323 @param[in] This Pointer to EFI_HTTP_PROTOCOL instance.
1324 @param[in] Token Pointer to storage containing HTTP response token.
1325
1326 @retval EFI_SUCCESS Allocation succeeded.
1327 @retval EFI_NOT_STARTED This EFI HTTP Protocol instance has not been
1328 initialized.
1329 @retval EFI_INVALID_PARAMETER One or more of the following conditions is TRUE:
1330 This is NULL.
1331 Token is NULL.
1332 Token->Message->Headers is NULL.
1333 Token->Message is NULL.
1334 Token->Message->Body is not NULL,
1335 Token->Message->BodyLength is non-zero, and
1336 Token->Message->Data is NULL, but a previous call to
1337 Response() has not been completed successfully.
1338 @retval EFI_OUT_OF_RESOURCES Could not allocate enough system resources.
1339 @retval EFI_ACCESS_DENIED An open TCP connection is not present with the host
1340 specified by response URL.
1341 **/
1342 EFI_STATUS
1343 EFIAPI
1344 EfiHttpResponse (
1345 IN EFI_HTTP_PROTOCOL *This,
1346 IN EFI_HTTP_TOKEN *Token
1347 )
1348 {
1349 EFI_STATUS Status;
1350 EFI_HTTP_MESSAGE *HttpMsg;
1351 HTTP_PROTOCOL *HttpInstance;
1352 HTTP_TOKEN_WRAP *Wrap;
1353
1354 if ((This == NULL) || (Token == NULL)) {
1355 return EFI_INVALID_PARAMETER;
1356 }
1357
1358 HttpMsg = Token->Message;
1359 if (HttpMsg == NULL) {
1360 return EFI_INVALID_PARAMETER;
1361 }
1362
1363 HttpInstance = HTTP_INSTANCE_FROM_PROTOCOL (This);
1364 ASSERT (HttpInstance != NULL);
1365
1366 if (HttpInstance->State != HTTP_STATE_TCP_CONNECTED) {
1367 return EFI_NOT_STARTED;
1368 }
1369
1370 //
1371 // Check whether the token already existed.
1372 //
1373 if (EFI_ERROR (NetMapIterate (&HttpInstance->RxTokens, HttpTokenExist, Token))) {
1374 return EFI_ACCESS_DENIED;
1375 }
1376
1377 Wrap = AllocateZeroPool (sizeof (HTTP_TOKEN_WRAP));
1378 if (Wrap == NULL) {
1379 return EFI_OUT_OF_RESOURCES;
1380 }
1381
1382 Wrap->HttpInstance = HttpInstance;
1383 Wrap->HttpToken = Token;
1384
1385 Status = HttpCreateTcpRxEvent (Wrap);
1386 if (EFI_ERROR (Status)) {
1387 goto Error;
1388 }
1389
1390 Status = NetMapInsertTail (&HttpInstance->RxTokens, Token, Wrap);
1391 if (EFI_ERROR (Status)) {
1392 goto Error;
1393 }
1394
1395 //
1396 // If already have pending RxTokens, return directly.
1397 //
1398 if (NetMapGetCount (&HttpInstance->RxTokens) > 1) {
1399 return EFI_SUCCESS;
1400 }
1401
1402 return HttpResponseWorker (Wrap);
1403
1404 Error:
1405 if (Wrap != NULL) {
1406 if (Wrap->TcpWrap.Rx4Token.CompletionToken.Event != NULL) {
1407 gBS->CloseEvent (Wrap->TcpWrap.Rx4Token.CompletionToken.Event);
1408 }
1409
1410 if (Wrap->TcpWrap.Rx6Token.CompletionToken.Event != NULL) {
1411 gBS->CloseEvent (Wrap->TcpWrap.Rx6Token.CompletionToken.Event);
1412 }
1413 FreePool (Wrap);
1414 }
1415
1416 return Status;
1417 }
1418
1419 /**
1420 The Poll() function can be used by network drivers and applications to increase the
1421 rate that data packets are moved between the communication devices and the transmit
1422 and receive queues.
1423
1424 In some systems, the periodic timer event in the managed network driver may not poll
1425 the underlying communications device fast enough to transmit and/or receive all data
1426 packets without missing incoming packets or dropping outgoing packets. Drivers and
1427 applications that are experiencing packet loss should try calling the Poll() function
1428 more often.
1429
1430 @param[in] This Pointer to EFI_HTTP_PROTOCOL instance.
1431
1432 @retval EFI_SUCCESS Incoming or outgoing data was processed.
1433 @retval EFI_DEVICE_ERROR An unexpected system or network error occurred.
1434 @retval EFI_INVALID_PARAMETER This is NULL.
1435 @retval EFI_NOT_READY No incoming or outgoing data is processed.
1436 @retval EFI_NOT_STARTED This EFI HTTP Protocol instance has not been started.
1437
1438 **/
1439 EFI_STATUS
1440 EFIAPI
1441 EfiHttpPoll (
1442 IN EFI_HTTP_PROTOCOL *This
1443 )
1444 {
1445 EFI_STATUS Status;
1446 HTTP_PROTOCOL *HttpInstance;
1447
1448 if (This == NULL) {
1449 return EFI_INVALID_PARAMETER;
1450 }
1451
1452 HttpInstance = HTTP_INSTANCE_FROM_PROTOCOL (This);
1453 ASSERT (HttpInstance != NULL);
1454
1455 if (HttpInstance->State != HTTP_STATE_TCP_CONNECTED) {
1456 return EFI_NOT_STARTED;
1457 }
1458
1459 if (HttpInstance->LocalAddressIsIPv6) {
1460 if (HttpInstance->Tcp6 == NULL) {
1461 return EFI_NOT_STARTED;
1462 }
1463 Status = HttpInstance->Tcp6->Poll (HttpInstance->Tcp6);
1464 } else {
1465 if (HttpInstance->Tcp4 == NULL) {
1466 return EFI_NOT_STARTED;
1467 }
1468 Status = HttpInstance->Tcp4->Poll (HttpInstance->Tcp4);
1469 }
1470
1471 DispatchDpc ();
1472
1473 return Status;
1474 }