]>
Commit | Line | Data |
---|---|---|
a3bcde70 HT |
1 | /** @file\r |
2 | Mtftp6 internal data structure and definition declaration.\r | |
3 | \r | |
75dce340 | 4 | Copyright (c) 2009 - 2012, Intel Corporation. All rights reserved. <BR>\r |
a3bcde70 HT |
5 | \r |
6 | This program and the accompanying materials\r | |
7 | are licensed and made available under the terms and conditions of the BSD License\r | |
8 | which accompanies this distribution. The full text of the license may be found at\r | |
9 | http://opensource.org/licenses/bsd-license.php.\r | |
10 | \r | |
11 | THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r | |
12 | WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r | |
13 | \r | |
14 | **/\r | |
15 | \r | |
16 | #ifndef __EFI_MTFTP6_IMPL_H__\r | |
17 | #define __EFI_MTFTP6_IMPL_H__\r | |
18 | \r | |
19 | #include <Uefi.h>\r | |
20 | \r | |
21 | #include <Protocol/Udp6.h>\r | |
22 | #include <Protocol/Mtftp6.h>\r | |
23 | #include <Protocol/ServiceBinding.h>\r | |
24 | #include <Protocol/DriverBinding.h>\r | |
25 | \r | |
26 | #include <Library/DebugLib.h>\r | |
27 | #include <Library/UefiDriverEntryPoint.h>\r | |
28 | #include <Library/UefiBootServicesTableLib.h>\r | |
29 | #include <Library/UefiLib.h>\r | |
30 | #include <Library/BaseLib.h>\r | |
31 | #include <Library/NetLib.h>\r | |
216f7970 | 32 | #include <Library/PrintLib.h>\r |
a3bcde70 HT |
33 | \r |
34 | typedef struct _MTFTP6_SERVICE MTFTP6_SERVICE;\r | |
35 | typedef struct _MTFTP6_INSTANCE MTFTP6_INSTANCE;\r | |
36 | \r | |
37 | #include "Mtftp6Driver.h"\r | |
38 | #include "Mtftp6Option.h"\r | |
39 | #include "Mtftp6Support.h"\r | |
40 | \r | |
41 | #define MTFTP6_SERVICE_SIGNATURE SIGNATURE_32 ('M', 'F', '6', 'S')\r | |
42 | #define MTFTP6_INSTANCE_SIGNATURE SIGNATURE_32 ('M', 'F', '6', 'I')\r | |
43 | \r | |
44 | #define MTFTP6_DEFAULT_SERVER_CMD_PORT 69\r | |
45 | #define MTFTP6_DEFAULT_TIMEOUT 3\r | |
46 | #define MTFTP6_GET_MAPPING_TIMEOUT 3\r | |
47 | #define MTFTP6_DEFAULT_MAX_RETRY 5\r | |
48 | #define MTFTP6_DEFAULT_BLK_SIZE 512\r | |
49 | #define MTFTP6_TICK_PER_SECOND 10000000U\r | |
50 | \r | |
51 | #define MTFTP6_SERVICE_FROM_THIS(a) CR (a, MTFTP6_SERVICE, ServiceBinding, MTFTP6_SERVICE_SIGNATURE)\r | |
52 | #define MTFTP6_INSTANCE_FROM_THIS(a) CR (a, MTFTP6_INSTANCE, Mtftp6, MTFTP6_INSTANCE_SIGNATURE)\r | |
53 | \r | |
54 | extern EFI_MTFTP6_PROTOCOL gMtftp6ProtocolTemplate;\r | |
55 | \r | |
56 | typedef struct _MTFTP6_GETINFO_CONTEXT{\r | |
57 | EFI_MTFTP6_PACKET **Packet;\r | |
58 | UINT32 *PacketLen;\r | |
59 | EFI_STATUS Status;\r | |
60 | } MTFTP6_GETINFO_CONTEXT;\r | |
61 | \r | |
62 | //\r | |
63 | // Control block for MTFTP6 instance, it's per configuration data.\r | |
64 | //\r | |
65 | struct _MTFTP6_INSTANCE {\r | |
66 | UINT32 Signature;\r | |
67 | EFI_HANDLE Handle;\r | |
68 | LIST_ENTRY Link;\r | |
69 | EFI_MTFTP6_PROTOCOL Mtftp6;\r | |
70 | MTFTP6_SERVICE *Service;\r | |
71 | EFI_MTFTP6_CONFIG_DATA *Config;\r | |
72 | \r | |
73 | EFI_MTFTP6_TOKEN *Token;\r | |
74 | MTFTP6_EXT_OPTION_INFO ExtInfo;\r | |
75 | \r | |
76 | UINT16 BlkSize;\r | |
77 | UINT16 LastBlk;\r | |
78 | LIST_ENTRY BlkList;\r | |
79 | \r | |
80 | EFI_IPv6_ADDRESS ServerIp;\r | |
81 | UINT16 ServerCmdPort;\r | |
82 | UINT16 ServerDataPort;\r | |
83 | UDP_IO *UdpIo;\r | |
84 | \r | |
85 | EFI_IPv6_ADDRESS McastIp;\r | |
86 | UINT16 McastPort;\r | |
87 | UDP_IO *McastUdpIo;\r | |
88 | \r | |
89 | NET_BUF *LastPacket;\r | |
90 | UINT32 CurRetry;\r | |
91 | UINT32 MaxRetry;\r | |
92 | UINT32 PacketToLive;\r | |
93 | UINT32 Timeout;\r | |
94 | \r | |
95 | EFI_TPL OldTpl;\r | |
96 | BOOLEAN IsTransmitted;\r | |
97 | BOOLEAN IsMaster;\r | |
75dce340 | 98 | BOOLEAN InDestroy;\r |
a3bcde70 HT |
99 | };\r |
100 | \r | |
101 | //\r | |
102 | // Control block for MTFTP6 service, it's per Nic handle.\r | |
103 | //\r | |
104 | struct _MTFTP6_SERVICE {\r | |
105 | UINT32 Signature;\r | |
106 | EFI_SERVICE_BINDING_PROTOCOL ServiceBinding;\r | |
107 | EFI_HANDLE Controller;\r | |
108 | EFI_HANDLE Image;\r | |
109 | \r | |
110 | UINT16 ChildrenNum;\r | |
111 | LIST_ENTRY Children;\r | |
112 | //\r | |
113 | // It is used to be as internal calculagraph for all instances.\r | |
114 | //\r | |
115 | EFI_EVENT Timer;\r | |
116 | //\r | |
117 | // It is used to maintain the parent-child relationship between\r | |
118 | // mtftp driver and udp driver.\r | |
119 | //\r | |
120 | UDP_IO *DummyUdpIo;\r | |
a3bcde70 HT |
121 | };\r |
122 | \r | |
216f7970 | 123 | typedef struct {\r |
124 | EFI_SERVICE_BINDING_PROTOCOL *ServiceBinding;\r | |
125 | UINTN NumberOfChildren;\r | |
126 | EFI_HANDLE *ChildHandleBuffer;\r | |
127 | } MTFTP6_DESTROY_CHILD_IN_HANDLE_BUF_CONTEXT;\r | |
128 | \r | |
a3bcde70 HT |
129 | /**\r |
130 | Returns the current operating mode data for the MTFTP6 instance.\r | |
131 | \r | |
132 | The GetModeData() function returns the current operating mode and\r | |
133 | cached data packet for the MTFTP6 instance.\r | |
134 | \r | |
135 | @param[in] This Pointer to the EFI_MTFTP6_PROTOCOL instance.\r | |
136 | @param[out] ModeData The buffer in which the EFI MTFTPv6 Protocol driver mode\r | |
137 | data is returned.\r | |
138 | \r | |
139 | @retval EFI_SUCCESS The configuration data was returned successfully.\r | |
140 | @retval EFI_OUT_OF_RESOURCES The required mode data could not be allocated.\r | |
141 | @retval EFI_INVALID_PARAMETER This is NULL, or ModeData is NULL.\r | |
142 | \r | |
143 | **/\r | |
144 | EFI_STATUS\r | |
145 | EFIAPI\r | |
146 | EfiMtftp6GetModeData (\r | |
147 | IN EFI_MTFTP6_PROTOCOL *This,\r | |
148 | OUT EFI_MTFTP6_MODE_DATA *ModeData\r | |
149 | );\r | |
150 | \r | |
151 | /**\r | |
152 | Initializes, changes, or resets the default operational setting for\r | |
153 | this EFI MTFTPv6 Protocol driver instance.\r | |
154 | \r | |
155 | The Configure() function is used to set and change the configuration\r | |
156 | data for this EFI MTFTPv6 Protocol driver instance. The configuration\r | |
157 | data can be reset to startup defaults by calling Configure() with\r | |
158 | MtftpConfigData set to NULL. Whenever the instance is reset, any\r | |
159 | pending operation is aborted. By changing the EFI MTFTPv6 Protocol\r | |
160 | driver instance configuration data, the client can connect to\r | |
161 | different MTFTPv6 servers. The configuration parameters in\r | |
162 | MtftpConfigData are used as the default parameters in later MTFTPv6\r | |
163 | operations and can be overridden in later operations.\r | |
164 | \r | |
165 | @param[in] This Pointer to the EFI_MTFTP6_PROTOCOL instance.\r | |
166 | @param[in] MtftpConfigData Pointer to the configuration data structure.\r | |
167 | \r | |
168 | @retval EFI_SUCCESS The EFI MTFTPv6 Protocol instance was configured successfully.\r | |
169 | @retval EFI_INVALID_PARAMETER One or more following conditions are TRUE:\r | |
170 | - This is NULL.\r | |
171 | - MtftpConfigData.StationIp is neither zero nor one\r | |
172 | of the configured IP addresses in the underlying IPv6 driver.\r | |
173 | - MtftpCofigData.ServerIp is not a valid IPv6 unicast address.\r | |
174 | Note: It does not match the UEFI 2.3 Specification.\r | |
175 | @retval EFI_ACCESS_DENIED - The configuration could not be changed at this time because there\r | |
176 | is some MTFTP background operation in progress.\r | |
177 | - MtftpCofigData.LocalPort is already in use.\r | |
178 | Note: It does not match the UEFI 2.3 Specification.\r | |
179 | @retval EFI_NO_MAPPING The underlying IPv6 driver was responsible for choosing a source\r | |
180 | address for this instance, but no source address was available for use.\r | |
181 | @retval EFI_OUT_OF_RESOURCES The EFI MTFTPv6 Protocol driver instance data could not be\r | |
182 | allocated.\r | |
183 | Note: It is not defined in the UEFI 2.3 Specification.\r | |
184 | @retval EFI_DEVICE_ERROR An unexpected system or network error occurred. The EFI\r | |
185 | MTFTPv6 Protocol driver instance is not configured.\r | |
186 | Note: It is not defined in the UEFI 2.3 Specification.\r | |
187 | \r | |
188 | **/\r | |
189 | EFI_STATUS\r | |
190 | EFIAPI\r | |
191 | EfiMtftp6Configure (\r | |
192 | IN EFI_MTFTP6_PROTOCOL *This,\r | |
193 | IN EFI_MTFTP6_CONFIG_DATA *MtftpConfigData OPTIONAL\r | |
194 | );\r | |
195 | \r | |
196 | /**\r | |
197 | Get the information of the download from the server.\r | |
198 | \r | |
199 | The GetInfo() function assembles an MTFTPv6 request packet\r | |
200 | with options, sends it to the MTFTPv6 server, and may return\r | |
201 | an MTFTPv6 OACK, MTFTPv6 ERROR, or ICMP ERROR packet. Retries\r | |
202 | occur only if no response packets are received from the MTFTPv6\r | |
203 | server before the timeout expires.\r | |
204 | \r | |
205 | @param[in] This Pointer to the EFI_MTFTP6_PROTOCOL instance.\r | |
206 | @param[in] OverrideData Data that is used to override the existing parameters. If NULL, the\r | |
207 | default parameters that were set in the EFI_MTFTP6_PROTOCOL.Configure()\r | |
208 | function are used.\r | |
4f077902 SZ |
209 | @param[in] Filename Pointer to null-terminated ASCII file name string.\r |
210 | @param[in] ModeStr Pointer to null-terminated ASCII mode string. If NULL, octet will be used\r | |
a3bcde70 HT |
211 | @param[in] OptionCount Number of option/value string pairs in OptionList.\r |
212 | @param[in] OptionList Pointer to array of option/value string pairs. Ignored if\r | |
213 | OptionCount is zero.\r | |
214 | @param[out] PacketLength The number of bytes in the returned packet.\r | |
215 | @param[out] Packet The pointer to the received packet. This buffer must be freed by\r | |
216 | the caller.\r | |
217 | \r | |
218 | @retval EFI_SUCCESS An MTFTPv6 OACK packet was received and is in the Packet.\r | |
219 | Note: It does not match the UEFI 2.3 Specification.\r | |
220 | @retval EFI_INVALID_PARAMETER One or more of the following conditions is TRUE:\r | |
221 | - This is NULL.\r | |
222 | - Filename is NULL.\r | |
223 | - OptionCount is not zero and OptionList is NULL.\r | |
224 | - One or more options in OptionList have wrong format.\r | |
225 | - PacketLength is NULL.\r | |
226 | - OverrideData.ServerIp is not a valid unicast IPv6 address.\r | |
227 | @retval EFI_UNSUPPORTED One or more options in the OptionList are unsupported by\r | |
228 | this implementation.\r | |
229 | @retval EFI_NOT_STARTED The EFI MTFTPv6 Protocol driver has not been started.\r | |
230 | @retval EFI_NO_MAPPING The underlying IPv6 driver was responsible for choosing a source\r | |
231 | address for this instance, but no source address was available for use.\r | |
232 | @retval EFI_ACCESS_DENIED The previous operation has not completed yet.\r | |
233 | @retval EFI_OUT_OF_RESOURCES Required system resources could not be allocated.\r | |
234 | @retval EFI_TFTP_ERROR An MTFTPv6 ERROR packet was received and is in the Packet.\r | |
235 | @retval EFI_NETWORK_UNREACHABLE An ICMP network unreachable error packet was received, and the Packet is set to NULL.\r | |
236 | Note: It is not defined in the UEFI 2.3 Specification.\r | |
237 | @retval EFI_HOST_UNREACHABLE An ICMP host unreachable error packet was received, and the Packet is set to NULL.\r | |
238 | Note: It is not defined in the UEFI 2.3 Specification.\r | |
239 | @retval EFI_PROTOCOL_UNREACHABLE An ICMP protocol unreachable error packet was received, and the Packet is set to NULL.\r | |
240 | Note: It is not defined in the UEFI 2.3 Specification.\r | |
241 | @retval EFI_PORT_UNREACHABLE An ICMP port unreachable error packet was received, and the Packet is set to NULL.\r | |
242 | @retval EFI_ICMP_ERROR Some other ICMP ERROR packet was received, and the Packet is set to NULL.\r | |
243 | Note: It does not match the UEFI 2.3 Specification.\r | |
244 | @retval EFI_PROTOCOL_ERROR An unexpected MTFTPv6 packet was received and is in the Packet.\r | |
245 | @retval EFI_TIMEOUT No responses were received from the MTFTPv6 server.\r | |
246 | @retval EFI_DEVICE_ERROR An unexpected network error or system error occurred.\r | |
247 | \r | |
248 | **/\r | |
249 | EFI_STATUS\r | |
250 | EFIAPI\r | |
251 | EfiMtftp6GetInfo (\r | |
252 | IN EFI_MTFTP6_PROTOCOL *This,\r | |
253 | IN EFI_MTFTP6_OVERRIDE_DATA *OverrideData OPTIONAL,\r | |
254 | IN UINT8 *Filename,\r | |
255 | IN UINT8 *ModeStr OPTIONAL,\r | |
256 | IN UINT8 OptionCount,\r | |
257 | IN EFI_MTFTP6_OPTION *OptionList OPTIONAL,\r | |
258 | OUT UINT32 *PacketLength,\r | |
259 | OUT EFI_MTFTP6_PACKET **Packet OPTIONAL\r | |
260 | );\r | |
261 | \r | |
262 | /**\r | |
263 | Parse the options in an MTFTPv6 OACK packet.\r | |
264 | \r | |
265 | The ParseOptions() function parses the option fields in an MTFTPv6 OACK\r | |
266 | packet and returns the number of options that were found, and optionally,\r | |
267 | a list of pointers to the options in the packet. If one or more of the\r | |
268 | option fields are not valid, then EFI_PROTOCOL_ERROR is returned and\r | |
269 | *OptionCount and *OptionList stop at the last valid option.\r | |
270 | \r | |
271 | @param[in] This Pointer to the EFI_MTFTP6_PROTOCOL instance.\r | |
272 | @param[in] PacketLen Length of the OACK packet to be parsed.\r | |
273 | @param[in] Packet Pointer to the OACK packet to be parsed.\r | |
274 | @param[out] OptionCount Pointer to the number of options in the following OptionList.\r | |
275 | @param[out] OptionList Pointer to EFI_MTFTP6_OPTION storage. Each pointer in the\r | |
276 | OptionList points to the corresponding MTFTP option buffer\r | |
277 | in the Packet. Call the EFI Boot Service FreePool() to\r | |
278 | release the OptionList if the options in this OptionList\r | |
279 | are not needed any more.\r | |
280 | \r | |
281 | @retval EFI_SUCCESS The OACK packet was valid and the OptionCount, and\r | |
282 | OptionList parameters have been updated.\r | |
283 | @retval EFI_INVALID_PARAMETER One or more of the following conditions is TRUE:\r | |
284 | - PacketLen is 0.\r | |
285 | - Packet is NULL or Packet is not a valid MTFTPv6 packet.\r | |
286 | - OptionCount is NULL.\r | |
287 | @retval EFI_NOT_FOUND No options were found in the OACK packet.\r | |
288 | @retval EFI_OUT_OF_RESOURCES Storage for the OptionList array can not be allocated.\r | |
289 | @retval EFI_PROTOCOL_ERROR One or more of the option fields is invalid.\r | |
290 | \r | |
291 | **/\r | |
292 | EFI_STATUS\r | |
293 | EFIAPI\r | |
294 | EfiMtftp6ParseOptions (\r | |
295 | IN EFI_MTFTP6_PROTOCOL *This,\r | |
296 | IN UINT32 PacketLen,\r | |
297 | IN EFI_MTFTP6_PACKET *Packet,\r | |
298 | OUT UINT32 *OptionCount,\r | |
299 | OUT EFI_MTFTP6_OPTION **OptionList OPTIONAL\r | |
300 | );\r | |
301 | \r | |
302 | /**\r | |
303 | Download a file from an MTFTPv6 server.\r | |
304 | \r | |
305 | The ReadFile() function is used to initialize and start an MTFTPv6 download\r | |
306 | process and optionally wait for completion. When the download operation\r | |
307 | completes, whether successfully or not, the Token.Status field is updated\r | |
308 | by the EFI MTFTPv6 Protocol driver, and then Token.Event is signaled if it\r | |
309 | is not NULL.\r | |
310 | Data can be downloaded from the MTFTPv6 server into either of the following\r | |
311 | locations:\r | |
312 | - A fixed buffer that is pointed to by Token.Buffer.\r | |
313 | - A download service function that is pointed to by Token.CheckPacket.\r | |
314 | If both Token.Buffer and Token.CheckPacket are used, then Token.CheckPacket\r | |
315 | will be called first. If the call is successful, the packet will be stored\r | |
316 | in Token.Buffer.\r | |
317 | \r | |
318 | @param[in] This Pointer to the EFI_MTFTP6_PROTOCOL instance.\r | |
319 | @param[in] Token Pointer to the token structure to provide the parameters that are\r | |
320 | used in this operation.\r | |
321 | \r | |
322 | @retval EFI_SUCCESS The data file has been transferred successfully.\r | |
323 | @retval EFI_OUT_OF_RESOURCES Required system resources could not be allocated.\r | |
324 | @retval EFI_BUFFER_TOO_SMALL BufferSize is not zero but not large enough to hold the\r | |
325 | downloaded data in downloading process.\r | |
326 | Note: It does not match the UEFI 2.3 Specification.\r | |
327 | @retval EFI_ABORTED Current operation is aborted by user.\r | |
328 | @retval EFI_NETWORK_UNREACHABLE An ICMP network unreachable error packet was received.\r | |
329 | Note: It is not defined in the UEFI 2.3 Specification.\r | |
330 | @retval EFI_HOST_UNREACHABLE An ICMP host unreachable error packet was received.\r | |
331 | Note: It is not defined in the UEFI 2.3 Specification.\r | |
332 | @retval EFI_PROTOCOL_UNREACHABLE An ICMP protocol unreachable error packet was received.\r | |
333 | Note: It is not defined in the UEFI 2.3 Specification.\r | |
334 | @retval EFI_PORT_UNREACHABLE An ICMP port unreachable error packet was received.\r | |
335 | Note: It is not defined in the UEFI 2.3 Specification.\r | |
336 | @retval EFI_ICMP_ERROR An ICMP ERROR packet was received.\r | |
337 | @retval EFI_TIMEOUT No responses were received from the MTFTPv6 server.\r | |
338 | @retval EFI_TFTP_ERROR An MTFTPv6 ERROR packet was received.\r | |
339 | @retval EFI_DEVICE_ERROR An unexpected network error or system error occurred.\r | |
340 | \r | |
341 | **/\r | |
342 | EFI_STATUS\r | |
343 | EFIAPI\r | |
344 | EfiMtftp6ReadFile (\r | |
345 | IN EFI_MTFTP6_PROTOCOL *This,\r | |
346 | IN EFI_MTFTP6_TOKEN *Token\r | |
347 | );\r | |
348 | \r | |
349 | /**\r | |
350 | Send a file to an MTFTPv6 server.\r | |
351 | \r | |
352 | The WriteFile() function is used to initialize an uploading operation\r | |
353 | with the given option list, and optionally, wait for completion. If one\r | |
354 | or more of the options is not supported by the server, the unsupported\r | |
355 | options are ignored and a standard TFTP process starts instead. When\r | |
356 | the upload process completes, whether successfully or not, Token.Event\r | |
357 | is signaled, and the EFI MTFTPv6 Protocol driver updates Token.Status.\r | |
358 | The caller can supply the data to be uploaded in the following two modes:\r | |
359 | - Through the user-provided buffer.\r | |
360 | - Through a callback function.\r | |
361 | With the user-provided buffer, the Token.BufferSize field indicates\r | |
362 | the length of the buffer, and the driver will upload the data in the\r | |
363 | buffer. With an EFI_MTFTP6_PACKET_NEEDED callback function, the driver\r | |
364 | will call this callback function to get more data from the user to upload.\r | |
365 | \r | |
366 | @param[in] This Pointer to the EFI_MTFTP6_PROTOCOL instance.\r | |
367 | @param[in] Token Pointer to the token structure to provide the parameters that are\r | |
368 | used in this operation.\r | |
369 | \r | |
370 | @retval EFI_SUCCESS The upload session has started.\r | |
371 | @retval EFI_UNSUPPORTED The operation is not supported by this implementation.\r | |
372 | @retval EFI_INVALID_PARAMETER One or more of the following conditions is TRUE:\r | |
373 | - This is NULL.\r | |
374 | - Token is NULL.\r | |
375 | - Token.Filename is NULL.\r | |
376 | - Token.OptionCount is not zero and Token.OptionList is NULL.\r | |
377 | - One or more options in Token.OptionList have wrong format.\r | |
378 | - Token.Buffer and Token.PacketNeeded are both NULL.\r | |
379 | - Token.OverrideData.ServerIp is not valid unicast IPv6 addresses.\r | |
380 | @retval EFI_UNSUPPORTED One or more options in the Token.OptionList are not\r | |
381 | supported by this implementation.\r | |
382 | @retval EFI_NOT_STARTED The EFI MTFTPv6 Protocol driver has not been started.\r | |
383 | @retval EFI_NO_MAPPING The underlying IPv6 driver was responsible for choosing a source\r | |
384 | address for this instance, but no source address was available for use.\r | |
385 | @retval EFI_ALREADY_STARTED This Token is already being used in another MTFTPv6 session.\r | |
386 | @retval EFI_OUT_OF_RESOURCES Required system resources could not be allocated.\r | |
387 | @retval EFI_ACCESS_DENIED The previous operation has not completed yet.\r | |
388 | @retval EFI_DEVICE_ERROR An unexpected network error or system error occurred.\r | |
389 | \r | |
390 | **/\r | |
391 | EFI_STATUS\r | |
392 | EFIAPI\r | |
393 | EfiMtftp6WriteFile (\r | |
394 | IN EFI_MTFTP6_PROTOCOL *This,\r | |
395 | IN EFI_MTFTP6_TOKEN *Token\r | |
396 | );\r | |
397 | \r | |
398 | /**\r | |
399 | Download a data file directory from an MTFTPv6 server.\r | |
400 | \r | |
401 | The ReadDirectory() function is used to return a list of files on the\r | |
402 | MTFTPv6 server that are logically (or operationally) related to\r | |
403 | Token.Filename. The directory request packet that is sent to the server\r | |
404 | is built with the option list that was provided by caller, if present.\r | |
405 | The file information that the server returns is put into either of\r | |
406 | the following locations:\r | |
407 | - A fixed buffer that is pointed to by Token.Buffer.\r | |
408 | - A download service function that is pointed to by Token.CheckPacket.\r | |
409 | If both Token.Buffer and Token.CheckPacket are used, then Token.CheckPacket\r | |
410 | will be called first. If the call is successful, the packet will be stored\r | |
411 | in Token.Buffer.\r | |
412 | \r | |
413 | @param[in] This Pointer to the EFI_MTFTP6_PROTOCOL instance.\r | |
414 | @param[in] Token Pointer to the token structure to provide the parameters that are\r | |
415 | used in this operation.\r | |
416 | \r | |
417 | @retval EFI_SUCCESS The MTFTPv6 related file "directory" has been downloaded.\r | |
418 | @retval EFI_UNSUPPORTED The EFI MTFTPv6 Protocol driver does not support this function.\r | |
419 | @retval EFI_INVALID_PARAMETER One or more of the following conditions is TRUE:\r | |
420 | - This is NULL.\r | |
421 | - Token is NULL.\r | |
422 | - Token.Filename is NULL.\r | |
423 | - Token.OptionCount is not zero and Token.OptionList is NULL.\r | |
424 | - One or more options in Token.OptionList have wrong format.\r | |
425 | - Token.Buffer and Token.CheckPacket are both NULL.\r | |
426 | - Token.OverrideData.ServerIp is not valid unicast IPv6 addresses.\r | |
427 | @retval EFI_UNSUPPORTED One or more options in the Token.OptionList are not\r | |
428 | supported by this implementation.\r | |
429 | @retval EFI_NOT_STARTED The EFI MTFTPv6 Protocol driver has not been started.\r | |
430 | @retval EFI_NO_MAPPING The underlying IPv6 driver was responsible for choosing a source\r | |
431 | address for this instance, but no source address was available for use.\r | |
432 | @retval EFI_ALREADY_STARTED This Token is already being used in another MTFTPv6 session.\r | |
433 | @retval EFI_OUT_OF_RESOURCES Required system resources could not be allocated.\r | |
434 | @retval EFI_ACCESS_DENIED The previous operation has not completed yet.\r | |
435 | @retval EFI_DEVICE_ERROR An unexpected network error or system error occurred.\r | |
436 | \r | |
437 | **/\r | |
438 | EFI_STATUS\r | |
439 | EFIAPI\r | |
440 | EfiMtftp6ReadDirectory (\r | |
441 | IN EFI_MTFTP6_PROTOCOL *This,\r | |
442 | IN EFI_MTFTP6_TOKEN *Token\r | |
443 | );\r | |
444 | \r | |
445 | /**\r | |
446 | Polls for incoming data packets and processes outgoing data packets.\r | |
447 | \r | |
448 | The Poll() function can be used by network drivers and applications\r | |
449 | to increase the rate that data packets are moved between the\r | |
450 | communications device and the transmit and receive queues.In some\r | |
451 | systems, the periodic timer event in the managed network driver may\r | |
452 | not poll the underlying communications device fast enough to transmit\r | |
453 | and/or receive all data packets without missing incoming packets or\r | |
454 | dropping outgoing packets. Drivers and applications that are\r | |
455 | experiencing packet loss should try calling the Poll() function\r | |
456 | more often.\r | |
457 | \r | |
458 | @param[in] This The MTFTP6 protocol instance.\r | |
459 | \r | |
460 | \r | |
461 | @retval EFI_SUCCESS Incoming or outgoing data was processed.\r | |
462 | @retval EFI_NOT_STARTED This EFI MTFTPv6 Protocol instance has not been started.\r | |
463 | @retval EFI_INVALID_PARAMETER This is NULL.\r | |
464 | @retval EFI_DEVICE_ERROR An unexpected system or network error occurred.\r | |
465 | @retval EFI_TIMEOUT Data was dropped out of the transmit and/or receive queue.\r | |
466 | Consider increasing the polling rate.\r | |
467 | \r | |
468 | **/\r | |
469 | EFI_STATUS\r | |
470 | EFIAPI\r | |
471 | EfiMtftp6Poll (\r | |
472 | IN EFI_MTFTP6_PROTOCOL *This\r | |
473 | );\r | |
474 | \r | |
475 | #endif\r |