]> git.proxmox.com Git - mirror_edk2.git/blame - MdeModulePkg/Universal/Network/Mtftp4Dxe/Mtftp4Impl.c
Libraries and utilities for instrumenting regions of code and measuring their perform...
[mirror_edk2.git] / MdeModulePkg / Universal / Network / Mtftp4Dxe / Mtftp4Impl.c
CommitLineData
772db4bb 1/** @file\r
dab714aa 2 Interface routine for Mtftp4.\r
3 \r
dd29f3ed 4Copyright (c) 2006 - 2010, Intel Corporation<BR>\r
772db4bb 5All rights reserved. This program and the accompanying materials\r
6are licensed and made available under the terms and conditions of the BSD License\r
7which accompanies this distribution. The full text of the license may be found at\r
dab714aa 8http://opensource.org/licenses/bsd-license.php<BR>\r
772db4bb 9\r
10THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r
11WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r
12\r
772db4bb 13**/\r
14\r
772db4bb 15\r
dab714aa 16#include "Mtftp4Impl.h"\r
772db4bb 17\r
18\r
772db4bb 19/**\r
20 Clean up the MTFTP session to get ready for new operation.\r
21\r
22 @param Instance The MTFTP session to clean up\r
23 @param Result The result to return to the caller who initiated\r
24 the operation.\r
772db4bb 25**/\r
26VOID\r
27Mtftp4CleanOperation (\r
dab714aa 28 IN OUT MTFTP4_PROTOCOL *Instance,\r
29 IN EFI_STATUS Result\r
772db4bb 30 )\r
31{\r
e48e37fc 32 LIST_ENTRY *Entry;\r
33 LIST_ENTRY *Next;\r
772db4bb 34 MTFTP4_BLOCK_RANGE *Block;\r
35 EFI_MTFTP4_TOKEN *Token;\r
36\r
37 //\r
38 // Free various resources.\r
39 //\r
40 Token = Instance->Token;\r
41\r
42 if (Token != NULL) {\r
43 Token->Status = Result;\r
44\r
45 if (Token->Event != NULL) {\r
46 gBS->SignalEvent (Token->Event);\r
47 }\r
48\r
49 Instance->Token = NULL;\r
50 }\r
51\r
52 ASSERT (Instance->UnicastPort != NULL);\r
b45b45b2 53 UdpIoCleanIo (Instance->UnicastPort);\r
772db4bb 54\r
55 if (Instance->LastPacket != NULL) {\r
56 NetbufFree (Instance->LastPacket);\r
57 Instance->LastPacket = NULL;\r
58 }\r
59\r
60 if (Instance->McastUdpPort != NULL) {\r
b45b45b2 61 UdpIoFreeIo (Instance->McastUdpPort);\r
772db4bb 62 Instance->McastUdpPort = NULL;\r
63 }\r
64\r
65 NET_LIST_FOR_EACH_SAFE (Entry, Next, &Instance->Blocks) {\r
66 Block = NET_LIST_USER_STRUCT (Entry, MTFTP4_BLOCK_RANGE, Link);\r
e48e37fc 67 RemoveEntryList (Entry);\r
766c7483 68 FreePool (Block);\r
772db4bb 69 }\r
70\r
e48e37fc 71 ZeroMem (&Instance->RequestOption, sizeof (MTFTP4_OPTION));\r
772db4bb 72\r
73 Instance->Operation = 0;\r
74\r
75 Instance->BlkSize = MTFTP4_DEFAULT_BLKSIZE;\r
76 Instance->LastBlock = 0;\r
77 Instance->ServerIp = 0;\r
78 Instance->ListeningPort = 0;\r
79 Instance->ConnectedPort = 0;\r
80 Instance->Gateway = 0;\r
81 Instance->PacketToLive = 0;\r
82 Instance->MaxRetry = 0;\r
83 Instance->CurRetry = 0;\r
84 Instance->Timeout = 0;\r
85 Instance->McastIp = 0;\r
86 Instance->McastPort = 0;\r
87 Instance->Master = TRUE;\r
88}\r
89\r
90\r
772db4bb 91/**\r
dab714aa 92 Check packet for GetInfo. \r
93 \r
94 GetInfo is implemented with EfiMtftp4ReadFile. It use Mtftp4GetInfoCheckPacket \r
95 to inspect the first packet from server, then abort the session.\r
772db4bb 96\r
97 @param This The MTFTP4 protocol instance\r
98 @param Token The user's token\r
99 @param PacketLen The length of the packet\r
100 @param Packet The received packet.\r
101\r
102 @retval EFI_ABORTED Abort the ReadFile operation and return.\r
103\r
104**/\r
772db4bb 105EFI_STATUS\r
6d3ea23f 106EFIAPI\r
772db4bb 107Mtftp4GetInfoCheckPacket (\r
108 IN EFI_MTFTP4_PROTOCOL *This,\r
109 IN EFI_MTFTP4_TOKEN *Token,\r
110 IN UINT16 PacketLen,\r
111 IN EFI_MTFTP4_PACKET *Packet\r
112 )\r
113{\r
114 MTFTP4_GETINFO_STATE *State;\r
115 EFI_STATUS Status;\r
116 UINT16 OpCode;\r
117\r
ea886bef 118 State = (MTFTP4_GETINFO_STATE *) Token->Context;\r
a5867703 119 OpCode = NTOHS (Packet->OpCode);\r
772db4bb 120\r
121 //\r
122 // Set the GetInfo's return status according to the OpCode.\r
123 //\r
124 switch (OpCode) {\r
125 case EFI_MTFTP4_OPCODE_ERROR:\r
126 State->Status = EFI_TFTP_ERROR;\r
127 break;\r
128\r
129 case EFI_MTFTP4_OPCODE_OACK:\r
130 State->Status = EFI_SUCCESS;\r
131 break;\r
132\r
133 default:\r
134 State->Status = EFI_PROTOCOL_ERROR;\r
135 }\r
136\r
137 //\r
138 // Allocate buffer then copy the packet over. Use gBS->AllocatePool\r
e48e37fc 139 // in case AllocatePool will implements something tricky.\r
772db4bb 140 //\r
141 Status = gBS->AllocatePool (EfiBootServicesData, PacketLen, (VOID **) State->Packet);\r
142\r
143 if (EFI_ERROR (Status)) {\r
144 State->Status = EFI_OUT_OF_RESOURCES;\r
145 return EFI_ABORTED;\r
146 }\r
147\r
148 *(State->PacketLen) = PacketLen;\r
e48e37fc 149 CopyMem (*(State->Packet), Packet, PacketLen);\r
772db4bb 150\r
151 return EFI_ABORTED;\r
152}\r
153\r
154\r
772db4bb 155/**\r
dab714aa 156 Check whether the override data is valid. \r
157 \r
158 It will first validate whether the server is a valid unicast. If a gateway\r
159 is provided in the Override, it also check that it is a unicast on the \r
160 connected network.\r
772db4bb 161\r
162 @param Instance The MTFTP instance\r
163 @param Override The override data to validate.\r
164\r
dab714aa 165 @retval TRUE The override data is valid\r
166 @retval FALSE The override data is invalid\r
167 \r
772db4bb 168**/\r
772db4bb 169BOOLEAN\r
170Mtftp4OverrideValid (\r
171 IN MTFTP4_PROTOCOL *Instance,\r
172 IN EFI_MTFTP4_OVERRIDE_DATA *Override\r
173 )\r
174{\r
175 EFI_MTFTP4_CONFIG_DATA *Config;\r
176 IP4_ADDR Ip;\r
177 IP4_ADDR Netmask;\r
178 IP4_ADDR Gateway;\r
179\r
e48e37fc 180 CopyMem (&Ip, &Override->ServerIp, sizeof (IP4_ADDR));\r
f6b7393c 181 if (!NetIp4IsUnicast (NTOHL (Ip), 0)) {\r
772db4bb 182 return FALSE;\r
183 }\r
184\r
185 Config = &Instance->Config;\r
186\r
e48e37fc 187 CopyMem (&Gateway, &Override->GatewayIp, sizeof (IP4_ADDR));\r
772db4bb 188 Gateway = NTOHL (Gateway);\r
189\r
190 if (!Config->UseDefaultSetting && (Gateway != 0)) {\r
e48e37fc 191 CopyMem (&Netmask, &Config->SubnetMask, sizeof (IP4_ADDR));\r
192 CopyMem (&Ip, &Config->StationIp, sizeof (IP4_ADDR));\r
772db4bb 193\r
194 Netmask = NTOHL (Netmask);\r
195 Ip = NTOHL (Ip);\r
196\r
f6b7393c 197 if (!NetIp4IsUnicast (Gateway, Netmask) || !IP4_NET_EQUAL (Gateway, Ip, Netmask)) {\r
772db4bb 198 return FALSE;\r
199 }\r
200 }\r
201\r
202 return TRUE;\r
203}\r
204\r
205\r
206/**\r
207 Poll the UDP to get the IP4 default address, which may be retrieved\r
dab714aa 208 by DHCP. \r
209 \r
210 The default time out value is 5 seconds. If IP has retrieved the default address, \r
211 the UDP is reconfigured.\r
772db4bb 212\r
213 @param Instance The Mtftp instance\r
b45b45b2 214 @param UdpIo The UDP_IO to poll\r
215 @param UdpCfgData The UDP configure data to reconfigure the UDP_IO\r
772db4bb 216\r
dab714aa 217 @retval TRUE The default address is retrieved and UDP is reconfigured.\r
218 @retval FALSE Some error occured.\r
772db4bb 219\r
220**/\r
221BOOLEAN\r
222Mtftp4GetMapping (\r
223 IN MTFTP4_PROTOCOL *Instance,\r
b45b45b2 224 IN UDP_IO *UdpIo,\r
772db4bb 225 IN EFI_UDP4_CONFIG_DATA *UdpCfgData\r
226 )\r
227{\r
228 MTFTP4_SERVICE *Service;\r
229 EFI_IP4_MODE_DATA Ip4Mode;\r
230 EFI_UDP4_PROTOCOL *Udp;\r
231 EFI_STATUS Status;\r
232\r
233 ASSERT (Instance->Config.UseDefaultSetting);\r
234\r
235 Service = Instance->Service;\r
b45b45b2 236 Udp = UdpIo->Protocol.Udp4;\r
772db4bb 237\r
238 Status = gBS->SetTimer (\r
239 Service->TimerToGetMap,\r
240 TimerRelative,\r
241 MTFTP4_TIME_TO_GETMAP * TICKS_PER_SECOND\r
242 );\r
243 if (EFI_ERROR (Status)) {\r
244 return FALSE;\r
245 }\r
246\r
247 while (!EFI_ERROR (gBS->CheckEvent (Service->TimerToGetMap))) {\r
248 Udp->Poll (Udp);\r
249\r
250 if (!EFI_ERROR (Udp->GetModeData (Udp, NULL, &Ip4Mode, NULL, NULL)) &&\r
251 Ip4Mode.IsConfigured) {\r
252\r
253 Udp->Configure (Udp, NULL);\r
254 return (BOOLEAN) (Udp->Configure (Udp, UdpCfgData) == EFI_SUCCESS);\r
255 }\r
256 }\r
257\r
258 return FALSE;\r
259}\r
260\r
261\r
262/**\r
263 Configure the UDP port for unicast receiving.\r
264\r
b45b45b2 265 @param UdpIo The UDP_IO instance\r
772db4bb 266 @param Instance The MTFTP session\r
267\r
268 @retval EFI_SUCCESS The UDP port is successfully configured for the\r
269 session to unicast receive.\r
270\r
271**/\r
772db4bb 272EFI_STATUS\r
273Mtftp4ConfigUnicastPort (\r
b45b45b2 274 IN UDP_IO *UdpIo,\r
772db4bb 275 IN MTFTP4_PROTOCOL *Instance\r
276 )\r
277{\r
278 EFI_MTFTP4_CONFIG_DATA *Config;\r
279 EFI_UDP4_CONFIG_DATA UdpConfig;\r
280 EFI_STATUS Status;\r
281 IP4_ADDR Ip;\r
282\r
283 Config = &Instance->Config;\r
284\r
285 UdpConfig.AcceptBroadcast = FALSE;\r
286 UdpConfig.AcceptPromiscuous = FALSE;\r
287 UdpConfig.AcceptAnyPort = FALSE;\r
288 UdpConfig.AllowDuplicatePort = FALSE;\r
289 UdpConfig.TypeOfService = 0;\r
290 UdpConfig.TimeToLive = 64;\r
291 UdpConfig.DoNotFragment = FALSE;\r
292 UdpConfig.ReceiveTimeout = 0;\r
293 UdpConfig.TransmitTimeout = 0;\r
294 UdpConfig.UseDefaultAddress = Config->UseDefaultSetting;\r
295 UdpConfig.StationAddress = Config->StationIp;\r
296 UdpConfig.SubnetMask = Config->SubnetMask;\r
297 UdpConfig.StationPort = 0;\r
298 UdpConfig.RemotePort = 0;\r
299\r
300 Ip = HTONL (Instance->ServerIp);\r
e48e37fc 301 CopyMem (&UdpConfig.RemoteAddress, &Ip, sizeof (EFI_IPv4_ADDRESS));\r
772db4bb 302\r
b45b45b2 303 Status = UdpIo->Protocol.Udp4->Configure (UdpIo->Protocol.Udp4, &UdpConfig);\r
772db4bb 304\r
305 if ((Status == EFI_NO_MAPPING) && Mtftp4GetMapping (Instance, UdpIo, &UdpConfig)) {\r
306 return EFI_SUCCESS;\r
307 }\r
308\r
c4a62a12 309 if (!Config->UseDefaultSetting && !EFI_IP4_EQUAL (&mZeroIp4Addr, &Config->GatewayIp)) {\r
310 //\r
311 // The station IP address is manually configured and the Gateway IP is not 0.\r
312 // Add the default route for this UDP instance.\r
313 //\r
b45b45b2 314 Status = UdpIo->Protocol.Udp4->Routes (\r
315 UdpIo->Protocol.Udp4,\r
316 FALSE,\r
317 &mZeroIp4Addr,\r
318 &mZeroIp4Addr,\r
319 &Config->GatewayIp\r
320 );\r
c4a62a12 321 if (EFI_ERROR (Status)) {\r
b45b45b2 322 UdpIo->Protocol.Udp4->Configure (UdpIo->Protocol.Udp4, NULL);\r
c4a62a12 323 }\r
324 }\r
772db4bb 325 return Status;\r
326}\r
327\r
328\r
329/**\r
330 Start the MTFTP session to do the operation, such as read file,\r
331 write file, and read directory.\r
332\r
333 @param This The MTFTP session\r
334 @param Token The token than encapsues the user's request.\r
335 @param Operation The operation to do\r
336\r
337 @retval EFI_INVALID_PARAMETER Some of the parameters are invalid.\r
338 @retval EFI_NOT_STARTED The MTFTP session hasn't been configured.\r
339 @retval EFI_ALREADY_STARTED There is pending operation for the session.\r
340 @retval EFI_SUCCESS The operation is successfully started.\r
341\r
342**/\r
772db4bb 343EFI_STATUS\r
344Mtftp4Start (\r
345 IN EFI_MTFTP4_PROTOCOL *This,\r
346 IN EFI_MTFTP4_TOKEN *Token,\r
347 IN UINT16 Operation\r
348 )\r
349{\r
350 MTFTP4_PROTOCOL *Instance;\r
351 EFI_MTFTP4_OVERRIDE_DATA *Override;\r
352 EFI_MTFTP4_CONFIG_DATA *Config;\r
353 EFI_TPL OldTpl;\r
354 EFI_STATUS Status;\r
355\r
356 //\r
357 // Validate the parameters\r
358 //\r
359 if ((This == NULL) || (Token == NULL) || (Token->Filename == NULL) ||\r
360 ((Token->OptionCount != 0) && (Token->OptionList == NULL))) {\r
361 return EFI_INVALID_PARAMETER;\r
362 }\r
363\r
364 //\r
365 // User must provide at least one method to collect the data for download.\r
366 //\r
367 if (((Operation == EFI_MTFTP4_OPCODE_RRQ) || (Operation == EFI_MTFTP4_OPCODE_DIR)) &&\r
368 ((Token->Buffer == NULL) && (Token->CheckPacket == NULL))) {\r
369 return EFI_INVALID_PARAMETER;\r
370 }\r
371\r
372 //\r
373 // User must provide at least one method to provide the data for upload.\r
374 //\r
375 if ((Operation == EFI_MTFTP4_OPCODE_WRQ) &&\r
376 ((Token->Buffer == NULL) && (Token->PacketNeeded == NULL))) {\r
377 return EFI_INVALID_PARAMETER;\r
378 }\r
379\r
380 Instance = MTFTP4_PROTOCOL_FROM_THIS (This);\r
381\r
382 Status = EFI_SUCCESS;\r
e48e37fc 383 OldTpl = gBS->RaiseTPL (TPL_CALLBACK);\r
772db4bb 384\r
385 if (Instance->State != MTFTP4_STATE_CONFIGED) {\r
386 Status = EFI_NOT_STARTED;\r
387 }\r
388\r
389 if (Instance->Operation != 0) {\r
390 Status = EFI_ACCESS_DENIED;\r
391 }\r
392\r
393 if (EFI_ERROR (Status)) {\r
e48e37fc 394 gBS->RestoreTPL (OldTpl);\r
772db4bb 395 return Status;\r
396 }\r
397\r
398 //\r
399 // Set the Operation now to prevent the application start other\r
400 // operations.\r
401 //\r
402 Instance->Operation = Operation;\r
403 Override = Token->OverrideData;\r
404\r
405 if ((Override != NULL) && !Mtftp4OverrideValid (Instance, Override)) {\r
406 Status = EFI_INVALID_PARAMETER;\r
407 goto ON_ERROR;\r
408 }\r
409\r
410 if (Token->OptionCount != 0) {\r
411 Status = Mtftp4ParseOption (\r
412 Token->OptionList,\r
413 Token->OptionCount,\r
414 TRUE,\r
415 &Instance->RequestOption\r
416 );\r
417\r
418 if (EFI_ERROR (Status)) {\r
419 goto ON_ERROR;\r
420 }\r
421 }\r
422\r
423 //\r
424 // Set the operation parameters from the configuration or override data.\r
425 //\r
426 Config = &Instance->Config;\r
427 Instance->Token = Token;\r
428 Instance->BlkSize = MTFTP4_DEFAULT_BLKSIZE;\r
429\r
e48e37fc 430 CopyMem (&Instance->ServerIp, &Config->ServerIp, sizeof (IP4_ADDR));\r
772db4bb 431 Instance->ServerIp = NTOHL (Instance->ServerIp);\r
432\r
433 Instance->ListeningPort = Config->InitialServerPort;\r
434 Instance->ConnectedPort = 0;\r
435\r
e48e37fc 436 CopyMem (&Instance->Gateway, &Config->GatewayIp, sizeof (IP4_ADDR));\r
772db4bb 437 Instance->Gateway = NTOHL (Instance->Gateway);\r
438\r
439 Instance->MaxRetry = Config->TryCount;\r
440 Instance->Timeout = Config->TimeoutValue;\r
441 Instance->Master = TRUE;\r
442\r
443 if (Override != NULL) {\r
e48e37fc 444 CopyMem (&Instance->ServerIp, &Override->ServerIp, sizeof (IP4_ADDR));\r
445 CopyMem (&Instance->Gateway, &Override->GatewayIp, sizeof (IP4_ADDR));\r
772db4bb 446\r
447 Instance->ServerIp = NTOHL (Instance->ServerIp);\r
448 Instance->Gateway = NTOHL (Instance->Gateway);\r
449\r
450 Instance->ListeningPort = Override->ServerPort;\r
451 Instance->MaxRetry = Override->TryCount;\r
452 Instance->Timeout = Override->TimeoutValue;\r
453 }\r
454\r
455 if (Instance->ListeningPort == 0) {\r
456 Instance->ListeningPort = MTFTP4_DEFAULT_SERVER_PORT;\r
457 }\r
458\r
459 if (Instance->MaxRetry == 0) {\r
460 Instance->MaxRetry = MTFTP4_DEFAULT_RETRY;\r
461 }\r
462\r
463 if (Instance->Timeout == 0) {\r
464 Instance->Timeout = MTFTP4_DEFAULT_TIMEOUT;\r
465 }\r
466\r
467 //\r
468 // Config the unicast UDP child to send initial request\r
469 //\r
470 Status = Mtftp4ConfigUnicastPort (Instance->UnicastPort, Instance);\r
471\r
472 if (EFI_ERROR (Status)) {\r
473 goto ON_ERROR;\r
474 }\r
475\r
174f03d2 476 //\r
477 // Set initial status.\r
478 //\r
479 Token->Status = EFI_NOT_READY;\r
480\r
772db4bb 481 //\r
482 // Build and send an initial requests\r
483 //\r
484 if (Operation == EFI_MTFTP4_OPCODE_WRQ) {\r
485 Status = Mtftp4WrqStart (Instance, Operation);\r
486 } else {\r
487 Status = Mtftp4RrqStart (Instance, Operation);\r
488 }\r
489\r
e48e37fc 490 gBS->RestoreTPL (OldTpl);\r
772db4bb 491\r
492 if (EFI_ERROR (Status)) {\r
493 goto ON_ERROR;\r
494 }\r
772db4bb 495\r
496 if (Token->Event != NULL) {\r
497 return EFI_SUCCESS;\r
498 }\r
499\r
174f03d2 500 //\r
501 // Return immediately for asynchronous operation or poll the\r
502 // instance for synchronous operation.\r
503 //\r
772db4bb 504 while (Token->Status == EFI_NOT_READY) {\r
505 This->Poll (This);\r
506 }\r
507\r
508 return Token->Status;\r
509\r
510ON_ERROR:\r
511 Mtftp4CleanOperation (Instance, Status);\r
e48e37fc 512 gBS->RestoreTPL (OldTpl);\r
772db4bb 513\r
514 return Status;\r
515}\r
516\r
517\r
3dc3861a 518/**\r
519 Reads the current operational settings.\r
520\r
521 The GetModeData()function reads the current operational settings of this \r
522 EFI MTFTPv4 Protocol driver instance.\r
523\r
524 @param This Pointer to the EFI_MTFTP4_PROTOCOL instance.\r
525 @param ModeData Pointer to storage for the EFI MTFTPv4 Protocol\r
526 driver mode data. \r
527\r
528 @retval EFI_SUCCESS The configuration data was successfully returned.\r
529 @retval EFI_OUT_OF_RESOURCES The required mode data could not be allocated.\r
530 @retval EFI_INVALID_PARAMETER This is NULL or ModeData is NULL.\r
531 \r
532**/\r
533EFI_STATUS\r
534EFIAPI\r
535EfiMtftp4GetModeData (\r
536 IN EFI_MTFTP4_PROTOCOL *This,\r
537 OUT EFI_MTFTP4_MODE_DATA *ModeData\r
538 )\r
539{\r
540 MTFTP4_PROTOCOL *Instance;\r
541 EFI_TPL OldTpl;\r
542\r
543 if ((This == NULL) || (ModeData == NULL)) {\r
544 return EFI_INVALID_PARAMETER;\r
545 }\r
546\r
547 OldTpl = gBS->RaiseTPL (TPL_CALLBACK);\r
548\r
549 Instance = MTFTP4_PROTOCOL_FROM_THIS (This);\r
550 CopyMem(&ModeData->ConfigData, &Instance->Config, sizeof (Instance->Config));\r
551 ModeData->SupportedOptionCount = MTFTP4_SUPPORTED_OPTIONS;\r
552 ModeData->SupportedOptoins = (UINT8 **) mMtftp4SupportedOptions;\r
553 ModeData->UnsupportedOptionCount = 0;\r
554 ModeData->UnsupportedOptoins = NULL;\r
555\r
556 gBS->RestoreTPL (OldTpl);\r
557\r
558 return EFI_SUCCESS;\r
559}\r
560\r
561\r
562\r
563/**\r
564 Initializes, changes, or resets the default operational setting for this \r
565 EFI MTFTPv4 Protocol driver instance.\r
566 \r
567 The Configure() function is used to set and change the configuration data for \r
568 this EFI MTFTPv4 Protocol driver instance. The configuration data can be reset \r
569 to startup defaults by calling Configure() with MtftpConfigData set to NULL. \r
570 Whenever the instance is reset, any pending operation is aborted. By changing \r
571 the EFI MTFTPv4 Protocol driver instance configuration data, the client can \r
572 connect to different MTFTPv4 servers. The configuration parameters in \r
573 MtftpConfigData are used as the default parameters in later MTFTPv4 operations \r
574 and can be overridden in later operations.\r
575 \r
576 @param This Pointer to the EFI_MTFTP4_PROTOCOL instance\r
577 @param ConfigData MtftpConfigDataPointer to the configuration data \r
578 structure\r
579\r
580 @retval EFI_SUCCESS The EFI MTFTPv4 Protocol driver was configured \r
581 successfully.\r
582 @retval EFI_INVALID_PARAMETER One or more following conditions are TRUE:\r
583 1.This is NULL.\r
584 2.MtftpConfigData.UseDefaultSetting is FALSE and \r
585 MtftpConfigData.StationIp is not a valid IPv4 \r
586 unicast address.\r
587 3.MtftpCofigData.UseDefaultSetting is FALSE and \r
588 MtftpConfigData.SubnetMask is invalid.\r
589 4.MtftpCofigData.ServerIp is not a valid IPv4 \r
590 unicast address.\r
591 5.MtftpConfigData.UseDefaultSetting is FALSE and \r
592 MtftpConfigData.GatewayIp is not a valid IPv4 \r
593 unicast address or is not in the same subnet \r
594 with station address.\r
595 @retval EFI_ACCESS_DENIED The EFI configuration could not be changed at this \r
596 time because there is one MTFTP background operation \r
597 in progress.\r
598 @retval EFI_NO_MAPPING When using a default address, configuration \r
599 (DHCP, BOOTP, RARP, etc.) has not finished yet.\r
600 @retval EFI_UNSUPPORTED A configuration protocol (DHCP, BOOTP, RARP, etc.) \r
601 could not be located when clients choose to use \r
602 the default address settings.\r
603 @retval EFI_OUT_OF_RESOURCES The EFI MTFTPv4 Protocol driver instance data could \r
604 not be allocated.\r
605 @retval EFI_DEVICE_ERROR An unexpected system or network error occurred. \r
606 The EFI MTFTPv4 Protocol driver instance is not \r
607 configured.\r
608\r
609**/\r
610EFI_STATUS\r
611EFIAPI\r
612EfiMtftp4Configure (\r
613 IN EFI_MTFTP4_PROTOCOL *This,\r
614 IN EFI_MTFTP4_CONFIG_DATA *ConfigData\r
615 )\r
616{\r
617 MTFTP4_PROTOCOL *Instance;\r
618 EFI_TPL OldTpl;\r
619 IP4_ADDR Ip;\r
620 IP4_ADDR Netmask;\r
621 IP4_ADDR Gateway;\r
622 IP4_ADDR ServerIp;\r
623\r
624 if (This == NULL) {\r
625 return EFI_INVALID_PARAMETER;\r
626 }\r
627\r
628 Instance = MTFTP4_PROTOCOL_FROM_THIS (This);\r
629\r
630 if (ConfigData == NULL) {\r
631 //\r
632 // Reset the operation if ConfigData is NULL\r
633 //\r
634 OldTpl = gBS->RaiseTPL (TPL_CALLBACK);\r
635\r
636 Mtftp4CleanOperation (Instance, EFI_ABORTED);\r
637 ZeroMem (&Instance->Config, sizeof (EFI_MTFTP4_CONFIG_DATA));\r
638 Instance->State = MTFTP4_STATE_UNCONFIGED;\r
639\r
640 gBS->RestoreTPL (OldTpl);\r
641\r
642 } else {\r
643 //\r
644 // Configure the parameters for new operation.\r
645 //\r
646 CopyMem (&Ip, &ConfigData->StationIp, sizeof (IP4_ADDR));\r
647 CopyMem (&Netmask, &ConfigData->SubnetMask, sizeof (IP4_ADDR));\r
648 CopyMem (&Gateway, &ConfigData->GatewayIp, sizeof (IP4_ADDR));\r
649 CopyMem (&ServerIp, &ConfigData->ServerIp, sizeof (IP4_ADDR));\r
650\r
651 Ip = NTOHL (Ip);\r
652 Netmask = NTOHL (Netmask);\r
653 Gateway = NTOHL (Gateway);\r
654 ServerIp = NTOHL (ServerIp);\r
655\r
f6b7393c 656 if (!NetIp4IsUnicast (ServerIp, 0)) {\r
3dc3861a 657 return EFI_INVALID_PARAMETER;\r
658 }\r
659\r
660 if (!ConfigData->UseDefaultSetting &&\r
f6b7393c 661 ((!IP4_IS_VALID_NETMASK (Netmask) || !NetIp4IsUnicast (Ip, Netmask)))) {\r
3dc3861a 662\r
663 return EFI_INVALID_PARAMETER;\r
664 }\r
665\r
666 if ((Gateway != 0) &&\r
f6b7393c 667 (!IP4_NET_EQUAL (Gateway, Ip, Netmask) || !NetIp4IsUnicast (Gateway, Netmask))) {\r
3dc3861a 668\r
669 return EFI_INVALID_PARAMETER;\r
670 }\r
671\r
672 OldTpl = gBS->RaiseTPL (TPL_CALLBACK);\r
673\r
674 if ((Instance->State == MTFTP4_STATE_CONFIGED) && (Instance->Operation != 0)) {\r
675 gBS->RestoreTPL (OldTpl);\r
676 return EFI_ACCESS_DENIED;\r
677 }\r
678\r
679 CopyMem(&Instance->Config, ConfigData, sizeof (*ConfigData));;\r
680 Instance->State = MTFTP4_STATE_CONFIGED;\r
681\r
682 gBS->RestoreTPL (OldTpl);\r
683 }\r
684\r
685 return EFI_SUCCESS;\r
686}\r
687\r
688\r
689\r
690/**\r
691 Parses the options in an MTFTPv4 OACK packet.\r
692 \r
693 The ParseOptions() function parses the option fields in an MTFTPv4 OACK packet \r
694 and returns the number of options that were found and optionally a list of \r
695 pointers to the options in the packet.\r
696 If one or more of the option fields are not valid, then EFI_PROTOCOL_ERROR is \r
697 returned and *OptionCount and *OptionList stop at the last valid option.\r
698 The OptionList is allocated by this function, and caller should free it when used.\r
699\r
700 @param This Pointer to the EFI_MTFTP4_PROTOCOL instance.\r
701 @param PacketLen Length of the OACK packet to be parsed.\r
702 @param Packet Pointer to the OACK packet to be parsed. \r
703 @param OptionCount Pointer to the number of options in following OptionList.\r
704 @param OptionList Pointer to EFI_MTFTP4_OPTION storage. Call the \r
705 EFI Boot Service FreePool() to release theOptionList\r
706 if the options in this OptionList are not needed \r
707 any more\r
708\r
709 @retval EFI_SUCCESS The OACK packet was valid and the OptionCount and\r
710 OptionList parameters have been updated.\r
711 @retval EFI_INVALID_PARAMETER One or more of the following conditions is TRUE:\r
712 1.PacketLen is 0.\r
713 2.Packet is NULL or Packet is not a valid MTFTPv4 packet.\r
714 3.OptionCount is NULL.\r
715 @retval EFI_NOT_FOUND No options were found in the OACK packet.\r
716 @retval EFI_OUT_OF_RESOURCES Storage for the OptionList array cannot be allocated.\r
717 @retval EFI_PROTOCOL_ERROR One or more of the option fields is invalid.\r
718\r
719**/\r
720EFI_STATUS\r
721EFIAPI\r
722EfiMtftp4ParseOptions (\r
723 IN EFI_MTFTP4_PROTOCOL *This,\r
724 IN UINT32 PacketLen,\r
725 IN EFI_MTFTP4_PACKET *Packet,\r
726 OUT UINT32 *OptionCount,\r
727 OUT EFI_MTFTP4_OPTION **OptionList OPTIONAL\r
728 )\r
729{\r
730 EFI_STATUS Status;\r
731\r
732 if ((This == NULL) || (PacketLen < MTFTP4_OPCODE_LEN) ||\r
733 (Packet == NULL) || (OptionCount == NULL)) {\r
734\r
735 return EFI_INVALID_PARAMETER;\r
736 }\r
737\r
738 Status = Mtftp4ExtractOptions (Packet, PacketLen, OptionCount, OptionList);\r
739\r
740 if (EFI_ERROR (Status)) {\r
741 return Status;\r
742 }\r
743\r
744 if (*OptionCount == 0) {\r
745 return EFI_NOT_FOUND;\r
746 }\r
747\r
748 return EFI_SUCCESS;\r
749}\r
750\r
751\r
772db4bb 752/**\r
dab714aa 753 Downloads a file from an MTFTPv4 server.\r
754 \r
755 The ReadFile() function is used to initialize and start an MTFTPv4 download \r
756 process and optionally wait for completion. When the download operation completes, \r
757 whether successfully or not, the Token.Status field is updated by the EFI MTFTPv4 \r
758 Protocol driver and then Token.Event is signaled (if it is not NULL).\r
759 Data can be downloaded from the MTFTPv4 server into either of the following locations:\r
760 1.A fixed buffer that is pointed to by Token.Buffer\r
761 2.A download service function that is pointed to by Token.CheckPacket\r
762 If both Token.Buffer and Token.CheckPacket are used, then Token.CheckPacket \r
763 will be called first. If the call is successful, the packet will be stored in \r
764 Token.Buffer.\r
765\r
766 @param This Pointer to the EFI_MTFTP4_PROTOCOL instance\r
767 @param Token Pointer to the token structure to provide the \r
768 parameters that are used in this operation.\r
769\r
770 @retval EFI_SUCCESS The data file has been transferred successfully.\r
771 @retval EFI_OUT_OF_RESOURCES Required system resources could not be allocated.\r
772 @retval EFI_BUFFER_TOO_SMALL BufferSize is not large enough to hold the downloaded \r
773 data in downloading process.\r
774 @retval EFI_ABORTED Current operation is aborted by user.\r
775 @retval EFI_ICMP_ERROR An ICMP ERROR packet was received.\r
776 @retval EFI_TIMEOUT No responses were received from the MTFTPv4 server.\r
777 @retval EFI_TFTP_ERROR An MTFTPv4 ERROR packet was received.\r
778 @retval EFI_DEVICE_ERROR An unexpected network error or system error occurred.\r
dd29f3ed 779 @retval EFI_NO_MEDIA There was a media error.\r
772db4bb 780\r
781**/\r
772db4bb 782EFI_STATUS\r
783EFIAPI\r
784EfiMtftp4ReadFile (\r
785 IN EFI_MTFTP4_PROTOCOL *This,\r
786 IN EFI_MTFTP4_TOKEN *Token\r
787 )\r
788{\r
789 return Mtftp4Start (This, Token, EFI_MTFTP4_OPCODE_RRQ);\r
790}\r
791\r
792\r
793/**\r
dab714aa 794 Sends a data file to an MTFTPv4 server. May be unsupported in some EFI implementations\r
795\r
796 The WriteFile() function is used to initialize an uploading operation with the \r
797 given option list and optionally wait for completion. If one or more of the \r
798 options is not supported by the server, the unsupported options are ignored and \r
799 a standard TFTP process starts instead. When the upload process completes, \r
800 whether successfully or not, Token.Event is signaled, and the EFI MTFTPv4 Protocol \r
801 driver updates Token.Status.\r
802 The caller can supply the data to be uploaded in the following two modes:\r
803 1.Through the user-provided buffer\r
804 2.Through a callback function\r
805 With the user-provided buffer, the Token.BufferSize field indicates the length\r
806 of the buffer, and the driver will upload the data in the buffer. With an \r
807 EFI_MTFTP4_PACKET_NEEDED callback function, the driver will call this callback \r
808 function to get more data from the user to upload. See the definition of \r
809 EFI_MTFTP4_PACKET_NEEDED for more information. These two modes cannot be used at \r
810 the same time. The callback function will be ignored if the user provides the buffer.\r
811\r
812 @param This Pointer to the EFI_MTFTP4_PROTOCOL instance.\r
813 @param Token Pointer to the token structure to provide the \r
814 parameters that are used in this function\r
815\r
816 @retval EFI_SUCCESS The upload session has started.\r
817 @retval EFI_UNSUPPORTED The operation is not supported by this implementation.\r
818 @retval EFI_INVALID_PARAMETER One or more of the following conditions is TRUE:\r
819 1. This is NULL.\r
820 2. Token is NULL.\r
821 3. Token.Filename is NULL.\r
822 4. Token.OptionCount is not zero and\r
823 Token.OptionList is NULL.\r
824 5. One or more options in Token.OptionList have wrong\r
825 format.\r
826 6. Token.Buffer and Token.PacketNeeded are both\r
827 NULL.\r
828 7. One or more IPv4 addresses in Token.OverrideData \r
829 are not valid unicast IPv4 addresses if \r
830 Token.OverrideData is not NULL.\r
831 @retval EFI_UNSUPPORTED One or more options in the Token.OptionList are in the\r
832 unsupported list of structure EFI_MTFTP4_MODE_DATA.\r
833 @retval EFI_NOT_STARTED The EFI MTFTPv4 Protocol driver has not been started.\r
834 @retval EFI_NO_MAPPING When using a default address, configuration (DHCP, \r
835 BOOTP, RARP, etc.) is not finished yet.\r
836 @retval EFI_ALREADY_STARTED This Token is already being used in another MTFTPv4 \r
837 session.\r
838 @retval EFI_OUT_OF_RESOURCES Required system resources could not be allocated.\r
839 @retval EFI_ACCESS_DENIED The previous operation has not completed yet.\r
840 @retval EFI_DEVICE_ERROR An unexpected network error or system error occurred.\r
772db4bb 841\r
842**/\r
772db4bb 843EFI_STATUS\r
844EFIAPI\r
845EfiMtftp4WriteFile (\r
846 IN EFI_MTFTP4_PROTOCOL *This,\r
847 IN EFI_MTFTP4_TOKEN *Token\r
848 )\r
849{\r
850 return Mtftp4Start (This, Token, EFI_MTFTP4_OPCODE_WRQ);\r
851}\r
852\r
853\r
854/**\r
dab714aa 855 Downloads a data file "directory" from an MTFTPv4 server. \r
856 May be unsupported in some EFI implementations\r
857 \r
858 The ReadDirectory() function is used to return a list of files on the MTFTPv4 \r
859 server that are logically (or operationally) related to Token.Filename. The \r
860 directory request packet that is sent to the server is built with the option \r
861 list that was provided by caller, if present.\r
862 The file information that the server returns is put into either of the following \r
863 locations:\r
864 1.A fixed buffer that is pointed to by Token.Buffer\r
865 2.A download service function that is pointed to by Token.CheckPacket\r
866 If both Token.Buffer and Token.CheckPacket are used, then Token.CheckPacket will \r
867 be called first. If the call is successful, the packet will be stored in Token.Buffer.\r
868 The returned directory listing in the Token.Buffer or EFI_MTFTP4_PACKET consists \r
869 of a list of two or three variable-length ASCII strings, each terminated by a \r
870 null character, for each file in the directory. If the multicast option is involved, \r
871 the first field of each directory entry is the static multicast IP address and \r
872 UDP port number that is associated with the file name. The format of the field \r
873 is ip:ip:ip:ip:port. If the multicast option is not involved, this field and its \r
874 terminating null character are not present.\r
875 The next field of each directory entry is the file name and the last field is \r
876 the file information string. The information string contains the file size and \r
877 the create/modify timestamp. The format of the information string is filesize \r
878 yyyy-mm-dd hh:mm:ss:ffff. The timestamp is Coordinated Universal Time \r
879 (UTC; also known as Greenwich Mean Time [GMT]).\r
880 The only difference between ReadFile and ReadDirectory is the opcode used.\r
881\r
882 @param This Pointer to the EFI_MTFTP4_PROTOCOL instance\r
883 @param Token Pointer to the token structure to provide the \r
884 parameters that are used in this function\r
885\r
886 @retval EFI_SUCCESS The MTFTPv4 related file "directory" has been downloaded.\r
887 @retval EFI_UNSUPPORTED The operation is not supported by this implementation.\r
888 @retval EFI_INVALID_PARAMETER One or more of the following conditions is TRUE:\r
889 1. This is NULL.\r
890 2. Token is NULL.\r
891 3. Token.Filename is NULL.\r
892 4. Token.OptionCount is not zero and\r
893 Token.OptionList is NULL.\r
894 5. One or more options in Token.OptionList have wrong\r
895 format.\r
896 6. Token.Buffer and Token.PacketNeeded are both\r
897 NULL.\r
898 7. One or more IPv4 addresses in Token.OverrideData \r
899 are not valid unicast IPv4 addresses if \r
900 Token.OverrideData is not NULL.\r
901 @retval EFI_UNSUPPORTED One or more options in the Token.OptionList are in the\r
902 unsupported list of structure EFI_MTFTP4_MODE_DATA.\r
903 @retval EFI_NOT_STARTED The EFI MTFTPv4 Protocol driver has not been started.\r
904 @retval EFI_NO_MAPPING When using a default address, configuration (DHCP, \r
905 BOOTP, RARP, etc.) is not finished yet.\r
906 @retval EFI_ALREADY_STARTED This Token is already being used in another MTFTPv4 \r
907 session.\r
908 @retval EFI_OUT_OF_RESOURCES Required system resources could not be allocated.\r
909 @retval EFI_ACCESS_DENIED The previous operation has not completed yet.\r
910 @retval EFI_DEVICE_ERROR An unexpected network error or system error occurred.\r
772db4bb 911\r
912**/\r
772db4bb 913EFI_STATUS\r
914EFIAPI\r
915EfiMtftp4ReadDirectory (\r
916 IN EFI_MTFTP4_PROTOCOL *This,\r
917 IN EFI_MTFTP4_TOKEN *Token\r
918 )\r
919{\r
920 return Mtftp4Start (This, Token, EFI_MTFTP4_OPCODE_DIR);\r
921}\r
922\r
923\r
924/**\r
dab714aa 925 Gets information about a file from an MTFTPv4 server. \r
926 \r
927 The GetInfo() function assembles an MTFTPv4 request packet with options; \r
928 sends it to the MTFTPv4 server; and may return an MTFTPv4 OACK, MTFTPv4 ERROR, \r
929 or ICMP ERROR packet. Retries occur only if no response packets are received \r
930 from the MTFTPv4 server before the timeout expires.\r
931 It is implemented with EfiMtftp4ReadFile: build a token, then pass it to \r
932 EfiMtftp4ReadFile. In its check packet callback abort the opertions.\r
933\r
934 @param This Pointer to the EFI_MTFTP4_PROTOCOL instance\r
935 @param OverrideData Data that is used to override the existing \r
936 parameters. If NULL, the default parameters that \r
937 were set in the EFI_MTFTP4_PROTOCOL.Configure() \r
938 function are used\r
939 @param Filename Pointer to ASCIIZ file name string\r
940 @param ModeStr Pointer to ASCIIZ mode string. If NULL, "octet" \r
941 will be used\r
942 @param OptionCount Number of option/value string pairs in OptionList\r
943 @param OptionList Pointer to array of option/value string pairs. \r
944 Ignored if OptionCount is zero\r
945 @param PacketLength The number of bytes in the returned packet\r
946 @param Packet PacketThe pointer to the received packet. This \r
947 buffer must be freed by the caller.\r
948\r
949 @retval EFI_SUCCESS An MTFTPv4 OACK packet was received and is in \r
950 the Buffer.\r
951 @retval EFI_INVALID_PARAMETER One or more of the following conditions is TRUE:\r
952 1.This is NULL.\r
953 2.Filename is NULL.\r
954 3.OptionCount is not zero and OptionList is NULL.\r
955 4.One or more options in OptionList have wrong format.\r
956 5.PacketLength is NULL.\r
957 6.One or more IPv4 addresses in OverrideData are \r
958 not valid unicast IPv4 addresses if OverrideData \r
959 is not NULL.\r
960 @retval EFI_UNSUPPORTED One or more options in the OptionList are in the\r
961 unsupported list of structure EFI_MTFTP4_MODE_DATA\r
962 @retval EFI_NOT_STARTED The EFI MTFTPv4 Protocol driver has not been started.\r
963 @retval EFI_NO_MAPPING When using a default address, configuration (DHCP, \r
964 BOOTP, RARP, etc.) has not finished yet.\r
965 @retval EFI_ACCESS_DENIED The previous operation has not completed yet.\r
966 @retval EFI_OUT_OF_RESOURCES Required system resources could not be allocated.\r
967 @retval EFI_TFTP_ERROR An MTFTPv4 ERROR packet was received and is in \r
968 the Buffer.\r
969 @retval EFI_ICMP_ERROR An ICMP ERROR packet was received and the Packet \r
970 is set to NULL.\r
971 @retval EFI_PROTOCOL_ERROR An unexpected MTFTPv4 packet was received and is \r
972 in the Buffer.\r
973 @retval EFI_TIMEOUT No responses were received from the MTFTPv4 server.\r
974 @retval EFI_DEVICE_ERROR An unexpected network error or system error occurred.\r
dd29f3ed 975 @retval EFI_NO_MEDIA There was a media error.\r
976\r
dab714aa 977**/\r
978EFI_STATUS\r
979EFIAPI\r
980EfiMtftp4GetInfo (\r
981 IN EFI_MTFTP4_PROTOCOL *This,\r
982 IN EFI_MTFTP4_OVERRIDE_DATA *OverrideData OPTIONAL,\r
983 IN UINT8 *Filename,\r
984 IN UINT8 *ModeStr OPTIONAL,\r
985 IN UINT8 OptionCount,\r
986 IN EFI_MTFTP4_OPTION *OptionList OPTIONAL,\r
987 OUT UINT32 *PacketLength,\r
988 OUT EFI_MTFTP4_PACKET **Packet OPTIONAL\r
989 )\r
990{\r
991 EFI_MTFTP4_TOKEN Token;\r
ea886bef 992 MTFTP4_GETINFO_STATE State;\r
dab714aa 993 EFI_STATUS Status;\r
994\r
995 if ((This == NULL) || (Filename == NULL) || (PacketLength == NULL) ||\r
996 ((OptionCount != 0) && (OptionList == NULL))) {\r
997 return EFI_INVALID_PARAMETER;\r
998 }\r
999\r
1000 if (Packet != NULL) {\r
1001 *Packet = NULL;\r
1002 }\r
1003\r
1004 *PacketLength = 0;\r
ea886bef 1005 State.Packet = Packet;\r
1006 State.PacketLen = PacketLength;\r
1007 State.Status = EFI_SUCCESS;\r
dab714aa 1008\r
1009 //\r
1010 // Fill in the Token to issue an synchronous ReadFile operation\r
1011 //\r
1012 Token.Status = EFI_SUCCESS;\r
1013 Token.Event = NULL;\r
1014 Token.OverrideData = OverrideData;\r
1015 Token.Filename = Filename;\r
1016 Token.ModeStr = ModeStr;\r
1017 Token.OptionCount = OptionCount;\r
1018 Token.OptionList = OptionList;\r
1019 Token.BufferSize = 0;\r
1020 Token.Buffer = NULL;\r
ea886bef 1021 Token.Context = &State;\r
dab714aa 1022 Token.CheckPacket = Mtftp4GetInfoCheckPacket;\r
1023 Token.TimeoutCallback = NULL;\r
1024 Token.PacketNeeded = NULL;\r
1025\r
1026 Status = EfiMtftp4ReadFile (This, &Token);\r
772db4bb 1027\r
dab714aa 1028 if (EFI_ABORTED == Status) {\r
ea886bef 1029 return State.Status;\r
dab714aa 1030 }\r
1031\r
1032 return Status;\r
1033}\r
772db4bb 1034\r
dab714aa 1035/**\r
1036 Polls for incoming data packets and processes outgoing data packets.\r
1037\r
1038 The Poll() function can be used by network drivers and applications to increase \r
1039 the rate that data packets are moved between the communications device and the \r
1040 transmit and receive queues.\r
1041 In some systems, the periodic timer event in the managed network driver may not \r
1042 poll the underlying communications device fast enough to transmit and/or receive \r
1043 all data packets without missing incoming packets or dropping outgoing packets. \r
1044 Drivers and applications that are experiencing packet loss should try calling \r
1045 the Poll() function more often.\r
1046 \r
1047 @param This Pointer to the EFI_MTFTP4_PROTOCOL instance\r
1048\r
1049 @retval EFI_SUCCESS Incoming or outgoing data was processed.\r
1050 @retval EFI_NOT_STARTED This EFI MTFTPv4 Protocol instance has not been started.\r
1051 @retval EFI_NO_MAPPING When using a default address, configuration (DHCP,\r
1052 BOOTP, RARP, etc.) is not finished yet.\r
772db4bb 1053 @retval EFI_INVALID_PARAMETER This is NULL.\r
dab714aa 1054 @retval EFI_DEVICE_ERROR An unexpected system or network error occurred.\r
1055 @retval EFI_TIMEOUT Data was dropped out of the transmit and/or receive \r
1056 queue. Consider increasing the polling rate.\r
772db4bb 1057\r
1058**/\r
772db4bb 1059EFI_STATUS\r
1060EFIAPI\r
1061EfiMtftp4Poll (\r
1062 IN EFI_MTFTP4_PROTOCOL *This\r
1063 )\r
1064{\r
1065 MTFTP4_PROTOCOL *Instance;\r
1066 EFI_UDP4_PROTOCOL *Udp;\r
1067\r
1068 if (This == NULL) {\r
1069 return EFI_INVALID_PARAMETER;\r
1070 }\r
1071\r
1072 Instance = MTFTP4_PROTOCOL_FROM_THIS (This);\r
1073\r
1074 if (Instance->State == MTFTP4_STATE_UNCONFIGED) {\r
1075 return EFI_NOT_STARTED;\r
1076 } else if (Instance->State == MTFTP4_STATE_DESTORY) {\r
1077 return EFI_DEVICE_ERROR;\r
1078 }\r
1079\r
b45b45b2 1080 Udp = Instance->UnicastPort->Protocol.Udp4;\r
772db4bb 1081 return Udp->Poll (Udp);\r
1082}\r
1083\r
1084EFI_MTFTP4_PROTOCOL gMtftp4ProtocolTemplate = {\r
1085 EfiMtftp4GetModeData,\r
1086 EfiMtftp4Configure,\r
1087 EfiMtftp4GetInfo,\r
1088 EfiMtftp4ParseOptions,\r
1089 EfiMtftp4ReadFile,\r
1090 EfiMtftp4WriteFile,\r
1091 EfiMtftp4ReadDirectory,\r
1092 EfiMtftp4Poll\r
1093};\r