TianoCore EDK2 master
|
#include "Mtftp6Impl.h"
Go to the source code of this file.
Variables | |
EFI_MTFTP6_PROTOCOL | gMtftp6ProtocolTemplate |
This EFI_MTFTP6_PROTOCOL interface implementation.
It supports the following RFCs: RFC1350 - THE TFTP PROTOCOL (REVISION 2) RFC2090 - TFTP Multicast Option RFC2347 - TFTP Option Extension RFC2348 - TFTP Blocksize Option RFC2349 - TFTP Timeout Interval and Transfer Size Options
Copyright (c) 2009 - 2012, Intel Corporation. All rights reserved.
SPDX-License-Identifier: BSD-2-Clause-Patent
Definition in file Mtftp6Impl.c.
EFI_STATUS EFIAPI EfiMtftp6Configure | ( | IN EFI_MTFTP6_PROTOCOL * | This, |
IN EFI_MTFTP6_CONFIG_DATA *MtftpConfigData | OPTIONAL | ||
) |
Initializes, changes, or resets the default operational setting for this EFI MTFTPv6 Protocol driver instance.
The Configure() function is used to set and change the configuration data for this EFI MTFTPv6 Protocol driver instance. The configuration data can be reset to startup defaults by calling Configure() with MtftpConfigData set to NULL. Whenever the instance is reset, any pending operation is aborted. By changing the EFI MTFTPv6 Protocol driver instance configuration data, the client can connect to different MTFTPv6 servers. The configuration parameters in MtftpConfigData are used as the default parameters in later MTFTPv6 operations and can be overridden in later operations.
[in] | This | Pointer to the EFI_MTFTP6_PROTOCOL instance. |
[in] | MtftpConfigData | Pointer to the configuration data structure. |
EFI_SUCCESS | The EFI MTFTPv6 Protocol instance was configured successfully. |
EFI_INVALID_PARAMETER | One or more following conditions are TRUE:
|
EFI_ACCESS_DENIED | - The configuration could not be changed at this time because there is some MTFTP background operation in progress.
|
EFI_NO_MAPPING | The underlying IPv6 driver was responsible for choosing a source address for this instance, but no source address was available for use. |
EFI_OUT_OF_RESOURCES | The EFI MTFTPv6 Protocol driver instance data could not be allocated. Note: It is not defined in the UEFI 2.3 Specification. |
EFI_DEVICE_ERROR | An unexpected system or network error occurred. The EFI MTFTPv6 Protocol driver instance is not configured. Note: It is not defined in the UEFI 2.3 Specification. |
Definition at line 129 of file Mtftp6Impl.c.
EFI_STATUS EFIAPI EfiMtftp6GetInfo | ( | IN EFI_MTFTP6_PROTOCOL * | This, |
IN EFI_MTFTP6_OVERRIDE_DATA *OverrideData | OPTIONAL, | ||
IN UINT8 * | Filename, | ||
IN UINT8 *ModeStr | OPTIONAL, | ||
IN UINT8 | OptionCount, | ||
IN EFI_MTFTP6_OPTION *OptionList | OPTIONAL, | ||
OUT UINT32 * | PacketLength, | ||
OUT EFI_MTFTP6_PACKET **Packet | OPTIONAL | ||
) |
Get the information of the download from the server.
The GetInfo() function assembles an MTFTPv6 request packet with options, sends it to the MTFTPv6 server, and may return an MTFTPv6 OACK, MTFTPv6 ERROR, or ICMP ERROR packet. Retries occur only if no response packets are received from the MTFTPv6 server before the timeout expires.
[in] | This | Pointer to the EFI_MTFTP6_PROTOCOL instance. |
[in] | OverrideData | Data that is used to override the existing parameters. If NULL, the default parameters that were set in the EFI_MTFTP6_PROTOCOL.Configure() function are used. |
[in] | Filename | Pointer to null-terminated ASCII file name string. |
[in] | ModeStr | Pointer to null-terminated ASCII mode string. If NULL, octet will be used. |
[in] | OptionCount | Number of option/value string pairs in OptionList. |
[in] | OptionList | Pointer to array of option/value string pairs. Ignored if OptionCount is zero. |
[out] | PacketLength | The number of bytes in the returned packet. |
[out] | Packet | The pointer to the received packet. This buffer must be freed by the caller. |
EFI_SUCCESS | An MTFTPv6 OACK packet was received and is in the Packet. Note: It does not match the UEFI 2.3 Specification. |
EFI_INVALID_PARAMETER | One or more of the following conditions is TRUE:
|
EFI_UNSUPPORTED | One or more options in the OptionList are unsupported by this implementation. |
EFI_NOT_STARTED | The EFI MTFTPv6 Protocol driver has not been started. |
EFI_NO_MAPPING | The underlying IPv6 driver was responsible for choosing a source address for this instance, but no source address was available for use. |
EFI_ACCESS_DENIED | The previous operation has not completed yet. |
EFI_OUT_OF_RESOURCES | Required system resources could not be allocated. |
EFI_TFTP_ERROR | An MTFTPv6 ERROR packet was received and is in the Packet. |
EFI_NETWORK_UNREACHABLE | An ICMP network unreachable error packet was received and the Packet is set to NULL. Note: It is not defined in UEFI 2.3 Specification. |
EFI_HOST_UNREACHABLE | An ICMP host unreachable error packet was received and the Packet is set to NULL. Note: It is not defined in the UEFI 2.3 Specification. |
EFI_PROTOCOL_UNREACHABLE | An ICMP protocol unreachable error packet was received and the Packet is set to NULL. Note: It is not defined in the UEFI 2.3 Specification. |
EFI_PORT_UNREACHABLE | An ICMP port unreachable error packet was received and the Packet is set to NULL. |
EFI_ICMP_ERROR | Some other ICMP ERROR packet was received and the Packet is set to NULL. Note: It does not match the UEFI 2.3 Specification. |
EFI_PROTOCOL_ERROR | An unexpected MTFTPv6 packet was received and is in the Packet. |
EFI_TIMEOUT | No responses were received from the MTFTPv6 server. |
EFI_DEVICE_ERROR | An unexpected network error or system error occurred. |
EFI_NO_MEDIA | There was a media error. |
Definition at line 322 of file Mtftp6Impl.c.
EFI_STATUS EFIAPI EfiMtftp6GetModeData | ( | IN EFI_MTFTP6_PROTOCOL * | This, |
OUT EFI_MTFTP6_MODE_DATA * | ModeData | ||
) |
Returns the current operating mode data for the MTFTP6 instance.
The GetModeData() function returns the current operating mode and cached data packet for the MTFTP6 instance.
[in] | This | Pointer to the EFI_MTFTP6_PROTOCOL instance. |
[out] | ModeData | The buffer in which the EFI MTFTPv6 Protocol driver mode data is returned. |
EFI_SUCCESS | The configuration data was returned successfully. |
EFI_OUT_OF_RESOURCES | The required mode data could not be allocated. |
EFI_INVALID_PARAMETER | This is NULL or ModeData is NULL. |
Definition at line 47 of file Mtftp6Impl.c.
EFI_STATUS EFIAPI EfiMtftp6ParseOptions | ( | IN EFI_MTFTP6_PROTOCOL * | This, |
IN UINT32 | PacketLen, | ||
IN EFI_MTFTP6_PACKET * | Packet, | ||
OUT UINT32 * | OptionCount, | ||
OUT EFI_MTFTP6_OPTION **OptionList | OPTIONAL | ||
) |
Parse the options in an MTFTPv6 OACK packet.
The ParseOptions() function parses the option fields in an MTFTPv6 OACK packet and returns the number of options that were found, and optionally, a list of pointers to the options in the packet. If one or more of the option fields are not valid, then EFI_PROTOCOL_ERROR is returned and OptionCount and *OptionList stop at the last valid option.
[in] | This | Pointer to the EFI_MTFTP6_PROTOCOL instance. |
[in] | PacketLen | Length of the OACK packet to be parsed. |
[in] | Packet | Pointer to the OACK packet to be parsed. |
[out] | OptionCount | Pointer to the number of options in the following OptionList. |
[out] | OptionList | Pointer to EFI_MTFTP6_OPTION storage. Each pointer in the OptionList points to the corresponding MTFTP option buffer in the Packet. Call the EFI Boot Service FreePool() to release the OptionList if the options in this OptionList are not needed anymore. |
EFI_SUCCESS | The OACK packet was valid and the OptionCount and OptionList parameters have been updated. |
EFI_INVALID_PARAMETER | One or more of the following conditions is TRUE:
|
EFI_NOT_FOUND | No options were found in the OACK packet. |
EFI_OUT_OF_RESOURCES | Storage for the OptionList array can not be allocated. |
EFI_PROTOCOL_ERROR | One or more of the option fields is invalid. |
Definition at line 421 of file Mtftp6Impl.c.
EFI_STATUS EFIAPI EfiMtftp6Poll | ( | IN EFI_MTFTP6_PROTOCOL * | This | ) |
Polls for incoming data packets and processes outgoing data packets.
The Poll() function can be used by network drivers and applications to increase the rate that data packets are moved between the communications device and the transmit and receive queues. In some systems, the periodic timer event in the managed network driver may not poll the underlying communications device fast enough to transmit and/or receive all data packets without missing incoming packets or dropping outgoing packets. Drivers and applications that are experiencing packet loss should try calling the Poll() function more often.
[in] | This | The MTFTP6 protocol instance. |
EFI_SUCCESS | Incoming or outgoing data was processed. |
EFI_NOT_STARTED | This EFI MTFTPv6 Protocol instance has not been started. |
EFI_INVALID_PARAMETER | This is NULL. |
EFI_DEVICE_ERROR | An unexpected system or network error occurred. |
EFI_TIMEOUT | Data was dropped out of the transmit and/or receive queue. Consider increasing the polling rate. |
Definition at line 615 of file Mtftp6Impl.c.
EFI_STATUS EFIAPI EfiMtftp6ReadDirectory | ( | IN EFI_MTFTP6_PROTOCOL * | This, |
IN EFI_MTFTP6_TOKEN * | Token | ||
) |
Download a data file directory from an MTFTPv6 server.
The ReadDirectory() function is used to return a list of files on the MTFTPv6 server that are logically (or operationally) related to Token.Filename. The directory request packet that is sent to the server is built with the option list that was provided by the caller, if present. The file information that the server returns is put into either of the following locations:
[in] | This | Pointer to the EFI_MTFTP6_PROTOCOL instance. |
[in] | Token | Pointer to the token structure to provide the parameters that are used in this operation. |
EFI_SUCCESS | The MTFTPv6 related file "directory" has been downloaded. |
EFI_UNSUPPORTED | The EFI MTFTPv6 Protocol driver does not support this function. |
EFI_INVALID_PARAMETER | One or more of the following conditions is TRUE:
|
EFI_UNSUPPORTED | One or more options in the Token.OptionList are not supported by this implementation. |
EFI_NOT_STARTED | The EFI MTFTPv6 Protocol driver has not been started. |
EFI_NO_MAPPING | The underlying IPv6 driver was responsible for choosing a source address for this instance, but no source address was available for use. |
EFI_ALREADY_STARTED | This Token is already being used in another MTFTPv6 session. |
EFI_OUT_OF_RESOURCES | Required system resources could not be allocated. |
EFI_ACCESS_DENIED | The previous operation has not completed yet. |
EFI_DEVICE_ERROR | An unexpected network error or system error occurred. |
Definition at line 581 of file Mtftp6Impl.c.
EFI_STATUS EFIAPI EfiMtftp6ReadFile | ( | IN EFI_MTFTP6_PROTOCOL * | This, |
IN EFI_MTFTP6_TOKEN * | Token | ||
) |
Download a file from an MTFTPv6 server.
The ReadFile() function is used to initialize and start an MTFTPv6 download process, and optionally, wait for completion. When the download operation completes, whether successfully or not, the Token.Status field is updated by the EFI MTFTPv6 Protocol driver, and then Token.Event is signaled if it is not NULL. Data can be downloaded from the MTFTPv6 server into either of the following locations:
[in] | This | Pointer to the EFI_MTFTP6_PROTOCOL instance. |
[in] | Token | Pointer to the token structure to provide the parameters that are used in this operation. |
EFI_SUCCESS | The data file has been transferred successfully. |
EFI_OUT_OF_RESOURCES | Required system resources could not be allocated. |
EFI_BUFFER_TOO_SMALL | BufferSize is not zero but not large enough to hold the downloaded data in downloading process. Note: It does not match the UEFI 2.3 Specification. |
EFI_ABORTED | Current operation is aborted by user. |
EFI_NETWORK_UNREACHABLE | An ICMP network unreachable error packet was received. Note: It is not defined in the UEFI 2.3 Specification. |
EFI_HOST_UNREACHABLE | An ICMP host unreachable error packet was received. Note: It is not defined in the UEFI 2.3 Specification. |
EFI_PROTOCOL_UNREACHABLE | An ICMP protocol unreachable error packet was received. Note: It is not defined in the UEFI 2.3 Specification. |
EFI_PORT_UNREACHABLE | An ICMP port unreachable error packet was received. Note: It is not defined in the UEFI 2.3 Specification. |
EFI_ICMP_ERROR | An ICMP ERROR packet was received. |
EFI_TIMEOUT | No responses were received from the MTFTPv6 server. |
EFI_TFTP_ERROR | An MTFTPv6 ERROR packet was received. |
EFI_DEVICE_ERROR | An unexpected network error or system error occurred. |
EFI_NO_MEDIA | There was a media error. |
Definition at line 479 of file Mtftp6Impl.c.
EFI_STATUS EFIAPI EfiMtftp6WriteFile | ( | IN EFI_MTFTP6_PROTOCOL * | This, |
IN EFI_MTFTP6_TOKEN * | Token | ||
) |
Send a file to an MTFTPv6 server.
The WriteFile() function is used to initialize an uploading operation with the given option list and optionally wait for completion. If one or more of the options is not supported by the server, the unsupported options are ignored and a standard TFTP process starts instead. When the upload process completes, whether successfully or not, Token.Event is signaled, and the EFI MTFTPv6 Protocol driver updates Token.Status. The caller can supply the data to be uploaded in the following two modes:
[in] | This | Pointer to the EFI_MTFTP6_PROTOCOL instance. |
[in] | Token | Pointer to the token structure to provide the parameters that are used in this operation. |
EFI_SUCCESS | The upload session has started. |
EFI_UNSUPPORTED | The operation is not supported by this implementation. |
EFI_INVALID_PARAMETER | One or more of the following conditions is TRUE:
|
EFI_UNSUPPORTED | One or more options in the Token.OptionList are not supported by this implementation. |
EFI_NOT_STARTED | The EFI MTFTPv6 Protocol driver has not been started. |
EFI_NO_MAPPING | The underlying IPv6 driver was responsible for choosing a source address for this instance, but no source address was available for use. |
EFI_ALREADY_STARTED | This Token is already being used in another MTFTPv6 session. |
EFI_OUT_OF_RESOURCES | Required system resources could not be allocated. |
EFI_ACCESS_DENIED | The previous operation has not completed yet. |
EFI_DEVICE_ERROR | An unexpected network error or system error occurred. |
Definition at line 531 of file Mtftp6Impl.c.
EFI_MTFTP6_PROTOCOL gMtftp6ProtocolTemplate |
Definition at line 19 of file Mtftp6Impl.c.