]> git.proxmox.com Git - mirror_edk2.git/blame - MdePkg/Include/Protocol/PxeBaseCode.h
MdePkg: Removing ipf which is no longer supported from edk2.
[mirror_edk2.git] / MdePkg / Include / Protocol / PxeBaseCode.h
CommitLineData
d1f95000 1/** @file\r
9095d37b 2 EFI PXE Base Code Protocol definitions, which is used to access PXE-compatible\r
4ca9b6c4 3 devices for network access and network booting.\r
d1f95000 4\r
9095d37b
LG
5Copyright (c) 2006 - 2018, Intel Corporation. All rights reserved.<BR>\r
6This program and the accompanying materials are licensed and made available under\r
7the terms and conditions of the BSD License that accompanies this distribution.\r
af2dc6a7 8The full text of the license may be found at\r
9095d37b 9http://opensource.org/licenses/bsd-license.php.\r
5899caf0 10\r
9095d37b
LG
11THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r
12WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r
13\r
14 @par Revision Reference:\r
15 This Protocol is introduced in EFI Specification 1.10.\r
d1f95000 16\r
d1f95000 17**/\r
18#ifndef __PXE_BASE_CODE_PROTOCOL_H__\r
19#define __PXE_BASE_CODE_PROTOCOL_H__\r
20\r
99e8ed21 21///\r
af2dc6a7 22/// PXE Base Code protocol.\r
99e8ed21 23///\r
d1f95000 24#define EFI_PXE_BASE_CODE_PROTOCOL_GUID \\r
25 { \\r
26 0x03c4e603, 0xac28, 0x11d3, {0x9a, 0x2d, 0x00, 0x90, 0x27, 0x3f, 0xc1, 0x4d } \\r
27 }\r
28\r
a6508c05 29typedef struct _EFI_PXE_BASE_CODE_PROTOCOL EFI_PXE_BASE_CODE_PROTOCOL;\r
30\r
99e8ed21 31///\r
32/// Protocol defined in EFI1.1.\r
9095d37b 33///\r
a6508c05 34typedef EFI_PXE_BASE_CODE_PROTOCOL EFI_PXE_BASE_CODE;\r
d1f95000 35\r
99e8ed21 36///\r
37/// Default IP TTL and ToS.\r
38///\r
d1f95000 39#define DEFAULT_TTL 16\r
40#define DEFAULT_ToS 0\r
41\r
99e8ed21 42///\r
af2dc6a7 43/// ICMP error format.\r
99e8ed21 44///\r
d1f95000 45typedef struct {\r
46 UINT8 Type;\r
47 UINT8 Code;\r
48 UINT16 Checksum;\r
49 union {\r
50 UINT32 reserved;\r
51 UINT32 Mtu;\r
52 UINT32 Pointer;\r
53 struct {\r
54 UINT16 Identifier;\r
55 UINT16 Sequence;\r
56 } Echo;\r
57 } u;\r
58 UINT8 Data[494];\r
59} EFI_PXE_BASE_CODE_ICMP_ERROR;\r
60\r
99e8ed21 61///\r
af2dc6a7 62/// TFTP error format.\r
99e8ed21 63///\r
d1f95000 64typedef struct {\r
65 UINT8 ErrorCode;\r
66 CHAR8 ErrorString[127];\r
67} EFI_PXE_BASE_CODE_TFTP_ERROR;\r
68\r
99e8ed21 69///\r
af2dc6a7 70/// IP Receive Filter definitions.\r
99e8ed21 71///\r
d1f95000 72#define EFI_PXE_BASE_CODE_MAX_IPCNT 8\r
73\r
9319d2c2 74///\r
af2dc6a7 75/// IP Receive Filter structure.\r
9319d2c2 76///\r
d1f95000 77typedef struct {\r
78 UINT8 Filters;\r
79 UINT8 IpCnt;\r
80 UINT16 reserved;\r
81 EFI_IP_ADDRESS IpList[EFI_PXE_BASE_CODE_MAX_IPCNT];\r
82} EFI_PXE_BASE_CODE_IP_FILTER;\r
83\r
84#define EFI_PXE_BASE_CODE_IP_FILTER_STATION_IP 0x0001\r
85#define EFI_PXE_BASE_CODE_IP_FILTER_BROADCAST 0x0002\r
86#define EFI_PXE_BASE_CODE_IP_FILTER_PROMISCUOUS 0x0004\r
87#define EFI_PXE_BASE_CODE_IP_FILTER_PROMISCUOUS_MULTICAST 0x0008\r
88\r
99e8ed21 89///\r
af2dc6a7 90/// ARP cache entries.\r
99e8ed21 91///\r
d1f95000 92typedef struct {\r
93 EFI_IP_ADDRESS IpAddr;\r
94 EFI_MAC_ADDRESS MacAddr;\r
95} EFI_PXE_BASE_CODE_ARP_ENTRY;\r
96\r
9319d2c2 97///\r
af2dc6a7 98/// ARP route table entries.\r
9319d2c2 99///\r
d1f95000 100typedef struct {\r
101 EFI_IP_ADDRESS IpAddr;\r
102 EFI_IP_ADDRESS SubnetMask;\r
103 EFI_IP_ADDRESS GwAddr;\r
104} EFI_PXE_BASE_CODE_ROUTE_ENTRY;\r
105\r
106//\r
107// UDP definitions\r
108//\r
109typedef UINT16 EFI_PXE_BASE_CODE_UDP_PORT;\r
110\r
111#define EFI_PXE_BASE_CODE_UDP_OPFLAGS_ANY_SRC_IP 0x0001\r
112#define EFI_PXE_BASE_CODE_UDP_OPFLAGS_ANY_SRC_PORT 0x0002\r
113#define EFI_PXE_BASE_CODE_UDP_OPFLAGS_ANY_DEST_IP 0x0004\r
114#define EFI_PXE_BASE_CODE_UDP_OPFLAGS_ANY_DEST_PORT 0x0008\r
115#define EFI_PXE_BASE_CODE_UDP_OPFLAGS_USE_FILTER 0x0010\r
116#define EFI_PXE_BASE_CODE_UDP_OPFLAGS_MAY_FRAGMENT 0x0020\r
117\r
118//\r
119// Discover() definitions\r
120//\r
121#define EFI_PXE_BASE_CODE_BOOT_TYPE_BOOTSTRAP 0\r
122#define EFI_PXE_BASE_CODE_BOOT_TYPE_MS_WINNT_RIS 1\r
123#define EFI_PXE_BASE_CODE_BOOT_TYPE_INTEL_LCM 2\r
124#define EFI_PXE_BASE_CODE_BOOT_TYPE_DOSUNDI 3\r
125#define EFI_PXE_BASE_CODE_BOOT_TYPE_NEC_ESMPRO 4\r
126#define EFI_PXE_BASE_CODE_BOOT_TYPE_IBM_WSoD 5\r
127#define EFI_PXE_BASE_CODE_BOOT_TYPE_IBM_LCCM 6\r
128#define EFI_PXE_BASE_CODE_BOOT_TYPE_CA_UNICENTER_TNG 7\r
129#define EFI_PXE_BASE_CODE_BOOT_TYPE_HP_OPENVIEW 8\r
130#define EFI_PXE_BASE_CODE_BOOT_TYPE_ALTIRIS_9 9\r
131#define EFI_PXE_BASE_CODE_BOOT_TYPE_ALTIRIS_10 10\r
132#define EFI_PXE_BASE_CODE_BOOT_TYPE_ALTIRIS_11 11\r
133#define EFI_PXE_BASE_CODE_BOOT_TYPE_NOT_USED_12 12\r
134#define EFI_PXE_BASE_CODE_BOOT_TYPE_REDHAT_INSTALL 13\r
135#define EFI_PXE_BASE_CODE_BOOT_TYPE_REDHAT_BOOT 14\r
136#define EFI_PXE_BASE_CODE_BOOT_TYPE_REMBO 15\r
137#define EFI_PXE_BASE_CODE_BOOT_TYPE_BEOBOOT 16\r
138//\r
139// 17 through 32767 are reserved\r
140// 32768 through 65279 are for vendor use\r
141// 65280 through 65534 are reserved\r
142//\r
143#define EFI_PXE_BASE_CODE_BOOT_TYPE_PXETEST 65535\r
144\r
145#define EFI_PXE_BASE_CODE_BOOT_LAYER_MASK 0x7FFF\r
146#define EFI_PXE_BASE_CODE_BOOT_LAYER_INITIAL 0x0000\r
147\r
5fb89a0b 148//\r
9095d37b 149// PXE Tag definition that identifies the processor\r
5fb89a0b 150// and programming environment of the client system.\r
a2cacc9a
HL
151// These identifiers are defined by IETF:\r
152// http://www.ietf.org/assignments/dhcpv6-parameters/dhcpv6-parameters.xml\r
5fb89a0b 153//\r
154#if defined (MDE_CPU_IA32)\r
155#define EFI_PXE_CLIENT_SYSTEM_ARCHITECTURE 0x0006\r
5fb89a0b 156#elif defined (MDE_CPU_X64)\r
157#define EFI_PXE_CLIENT_SYSTEM_ARCHITECTURE 0x0007\r
158#elif defined (MDE_CPU_ARM)\r
159#define EFI_PXE_CLIENT_SYSTEM_ARCHITECTURE 0x000A\r
a2cacc9a
HL
160#elif defined (MDE_CPU_AARCH64)\r
161#define EFI_PXE_CLIENT_SYSTEM_ARCHITECTURE 0x000B\r
5fb89a0b 162#endif\r
163\r
164\r
99e8ed21 165///\r
166/// Discover() server list structure.\r
167///\r
d1f95000 168typedef struct {\r
169 UINT16 Type;\r
170 BOOLEAN AcceptAnyResponse;\r
171 UINT8 Reserved;\r
172 EFI_IP_ADDRESS IpAddr;\r
173} EFI_PXE_BASE_CODE_SRVLIST;\r
174\r
99e8ed21 175///\r
176/// Discover() information override structure.\r
177///\r
d1f95000 178typedef struct {\r
179 BOOLEAN UseMCast;\r
180 BOOLEAN UseBCast;\r
181 BOOLEAN UseUCast;\r
182 BOOLEAN MustUseList;\r
183 EFI_IP_ADDRESS ServerMCastIp;\r
184 UINT16 IpCnt;\r
185 EFI_PXE_BASE_CODE_SRVLIST SrvList[1];\r
186} EFI_PXE_BASE_CODE_DISCOVER_INFO;\r
187\r
99e8ed21 188///\r
af2dc6a7 189/// TFTP opcode definitions.\r
99e8ed21 190///\r
d1f95000 191typedef enum {\r
192 EFI_PXE_BASE_CODE_TFTP_FIRST,\r
193 EFI_PXE_BASE_CODE_TFTP_GET_FILE_SIZE,\r
194 EFI_PXE_BASE_CODE_TFTP_READ_FILE,\r
195 EFI_PXE_BASE_CODE_TFTP_WRITE_FILE,\r
196 EFI_PXE_BASE_CODE_TFTP_READ_DIRECTORY,\r
197 EFI_PXE_BASE_CODE_MTFTP_GET_FILE_SIZE,\r
198 EFI_PXE_BASE_CODE_MTFTP_READ_FILE,\r
199 EFI_PXE_BASE_CODE_MTFTP_READ_DIRECTORY,\r
200 EFI_PXE_BASE_CODE_MTFTP_LAST\r
201} EFI_PXE_BASE_CODE_TFTP_OPCODE;\r
202\r
9319d2c2
LG
203///\r
204/// MTFTP information. This information is required\r
205/// to start or join a multicast TFTP session. It is also required to\r
206/// perform the "get file size" and "read directory" operations of MTFTP.\r
207///\r
d1f95000 208typedef struct {\r
209 EFI_IP_ADDRESS MCastIp;\r
210 EFI_PXE_BASE_CODE_UDP_PORT CPort;\r
211 EFI_PXE_BASE_CODE_UDP_PORT SPort;\r
212 UINT16 ListenTimeout;\r
213 UINT16 TransmitTimeout;\r
214} EFI_PXE_BASE_CODE_MTFTP_INFO;\r
215\r
3ed785e9 216///\r
af2dc6a7 217/// DHCPV4 Packet structure.\r
3ed785e9 218///\r
219typedef struct {\r
220 UINT8 BootpOpcode;\r
221 UINT8 BootpHwType;\r
222 UINT8 BootpHwAddrLen;\r
223 UINT8 BootpGateHops;\r
224 UINT32 BootpIdent;\r
225 UINT16 BootpSeconds;\r
226 UINT16 BootpFlags;\r
227 UINT8 BootpCiAddr[4];\r
228 UINT8 BootpYiAddr[4];\r
229 UINT8 BootpSiAddr[4];\r
230 UINT8 BootpGiAddr[4];\r
231 UINT8 BootpHwAddr[16];\r
232 UINT8 BootpSrvName[64];\r
233 UINT8 BootpBootFile[128];\r
234 UINT32 DhcpMagik;\r
235 UINT8 DhcpOptions[56];\r
236} EFI_PXE_BASE_CODE_DHCPV4_PACKET;\r
237\r
6e19836f 238///\r
239/// DHCPV6 Packet structure.\r
240///\r
241typedef struct {\r
242 UINT32 MessageType:8;\r
243 UINT32 TransactionId:24;\r
244 UINT8 DhcpOptions[1024];\r
245} EFI_PXE_BASE_CODE_DHCPV6_PACKET;\r
246\r
9319d2c2 247///\r
af2dc6a7 248/// Packet structure.\r
9319d2c2 249///\r
3ed785e9 250typedef union {\r
251 UINT8 Raw[1472];\r
252 EFI_PXE_BASE_CODE_DHCPV4_PACKET Dhcpv4;\r
6e19836f 253 EFI_PXE_BASE_CODE_DHCPV6_PACKET Dhcpv6;\r
3ed785e9 254} EFI_PXE_BASE_CODE_PACKET;\r
255\r
d1f95000 256//\r
257// PXE Base Code Mode structure\r
258//\r
259#define EFI_PXE_BASE_CODE_MAX_ARP_ENTRIES 8\r
260#define EFI_PXE_BASE_CODE_MAX_ROUTE_ENTRIES 8\r
261\r
9319d2c2 262///\r
af2dc6a7 263/// EFI_PXE_BASE_CODE_MODE.\r
9095d37b 264/// The data values in this structure are read-only and\r
9319d2c2
LG
265/// are updated by the code that produces the\r
266/// EFI_PXE_BASE_CODE_PROTOCOL functions.\r
267///\r
d1f95000 268typedef struct {\r
269 BOOLEAN Started;\r
270 BOOLEAN Ipv6Available;\r
271 BOOLEAN Ipv6Supported;\r
272 BOOLEAN UsingIpv6;\r
273 BOOLEAN BisSupported;\r
274 BOOLEAN BisDetected;\r
275 BOOLEAN AutoArp;\r
276 BOOLEAN SendGUID;\r
277 BOOLEAN DhcpDiscoverValid;\r
278 BOOLEAN DhcpAckReceived;\r
279 BOOLEAN ProxyOfferReceived;\r
280 BOOLEAN PxeDiscoverValid;\r
281 BOOLEAN PxeReplyReceived;\r
282 BOOLEAN PxeBisReplyReceived;\r
283 BOOLEAN IcmpErrorReceived;\r
284 BOOLEAN TftpErrorReceived;\r
285 BOOLEAN MakeCallbacks;\r
286 UINT8 TTL;\r
287 UINT8 ToS;\r
288 EFI_IP_ADDRESS StationIp;\r
289 EFI_IP_ADDRESS SubnetMask;\r
290 EFI_PXE_BASE_CODE_PACKET DhcpDiscover;\r
291 EFI_PXE_BASE_CODE_PACKET DhcpAck;\r
292 EFI_PXE_BASE_CODE_PACKET ProxyOffer;\r
293 EFI_PXE_BASE_CODE_PACKET PxeDiscover;\r
294 EFI_PXE_BASE_CODE_PACKET PxeReply;\r
295 EFI_PXE_BASE_CODE_PACKET PxeBisReply;\r
296 EFI_PXE_BASE_CODE_IP_FILTER IpFilter;\r
297 UINT32 ArpCacheEntries;\r
298 EFI_PXE_BASE_CODE_ARP_ENTRY ArpCache[EFI_PXE_BASE_CODE_MAX_ARP_ENTRIES];\r
299 UINT32 RouteTableEntries;\r
300 EFI_PXE_BASE_CODE_ROUTE_ENTRY RouteTable[EFI_PXE_BASE_CODE_MAX_ROUTE_ENTRIES];\r
301 EFI_PXE_BASE_CODE_ICMP_ERROR IcmpError;\r
302 EFI_PXE_BASE_CODE_TFTP_ERROR TftpError;\r
303} EFI_PXE_BASE_CODE_MODE;\r
304\r
305//\r
306// PXE Base Code Interface Function definitions\r
307//\r
308\r
9095d37b 309/**\r
d1f95000 310 Enables the use of the PXE Base Code Protocol functions.\r
f737cfb9 311\r
312 This function enables the use of the PXE Base Code Protocol functions. If the\r
313 Started field of the EFI_PXE_BASE_CODE_MODE structure is already TRUE, then\r
314 EFI_ALREADY_STARTED will be returned. If UseIpv6 is TRUE, then IPv6 formatted\r
315 addresses will be used in this session. If UseIpv6 is FALSE, then IPv4 formatted\r
316 addresses will be used in this session. If UseIpv6 is TRUE, and the Ipv6Supported\r
317 field of the EFI_PXE_BASE_CODE_MODE structure is FALSE, then EFI_UNSUPPORTED will\r
318 be returned. If there is not enough memory or other resources to start the PXE\r
319 Base Code Protocol, then EFI_OUT_OF_RESOURCES will be returned. Otherwise, the\r
320 PXE Base Code Protocol will be started, and all of the fields of the EFI_PXE_BASE_CODE_MODE\r
321 structure will be initialized as follows:\r
322 StartedSet to TRUE.\r
323 Ipv6SupportedUnchanged.\r
324 Ipv6AvailableUnchanged.\r
325 UsingIpv6Set to UseIpv6.\r
326 BisSupportedUnchanged.\r
327 BisDetectedUnchanged.\r
328 AutoArpSet to TRUE.\r
329 SendGUIDSet to FALSE.\r
330 TTLSet to DEFAULT_TTL.\r
331 ToSSet to DEFAULT_ToS.\r
332 DhcpCompletedSet to FALSE.\r
333 ProxyOfferReceivedSet to FALSE.\r
334 StationIpSet to an address of all zeros.\r
335 SubnetMaskSet to a subnet mask of all zeros.\r
336 DhcpDiscoverZero-filled.\r
337 DhcpAckZero-filled.\r
338 ProxyOfferZero-filled.\r
339 PxeDiscoverValidSet to FALSE.\r
340 PxeDiscoverZero-filled.\r
341 PxeReplyValidSet to FALSE.\r
342 PxeReplyZero-filled.\r
343 PxeBisReplyValidSet to FALSE.\r
344 PxeBisReplyZero-filled.\r
345 IpFilterSet the Filters field to 0 and the IpCnt field to 0.\r
346 ArpCacheEntriesSet to 0.\r
347 ArpCacheZero-filled.\r
348 RouteTableEntriesSet to 0.\r
349 RouteTableZero-filled.\r
350 IcmpErrorReceivedSet to FALSE.\r
351 IcmpErrorZero-filled.\r
352 TftpErroReceivedSet to FALSE.\r
353 TftpErrorZero-filled.\r
354 MakeCallbacksSet to TRUE if the PXE Base Code Callback Protocol is available.\r
355 Set to FALSE if the PXE Base Code Callback Protocol is not available.\r
9095d37b 356\r
af2dc6a7 357 @param This The pointer to the EFI_PXE_BASE_CODE_PROTOCOL instance.\r
d1f95000 358 @param UseIpv6 Specifies the type of IP addresses that are to be used during the session\r
9095d37b
LG
359 that is being started. Set to TRUE for IPv6 addresses, and FALSE for\r
360 IPv4 addresses.\r
361\r
d1f95000 362 @retval EFI_SUCCESS The PXE Base Code Protocol was started.\r
9095d37b 363 @retval EFI_DEVICE_ERROR The network device encountered an error during this oper\r
d1f95000 364 @retval EFI_UNSUPPORTED UseIpv6 is TRUE, but the Ipv6Supported field of the\r
9095d37b
LG
365 EFI_PXE_BASE_CODE_MODE structure is FALSE.\r
366 @retval EFI_ALREADY_STARTED The PXE Base Code Protocol is already in the started state.\r
d1f95000 367 @retval EFI_INVALID_PARAMETER The This parameter is NULL or does not point to a valid\r
9095d37b
LG
368 EFI_PXE_BASE_CODE_PROTOCOL structure.\r
369 @retval EFI_OUT_OF_RESOURCES Could not allocate enough memory or other resources to start the\r
370 PXE Base Code Protocol.\r
371\r
d1f95000 372**/\r
373typedef\r
374EFI_STATUS\r
8b13229b 375(EFIAPI *EFI_PXE_BASE_CODE_START)(\r
d1f95000 376 IN EFI_PXE_BASE_CODE_PROTOCOL *This,\r
377 IN BOOLEAN UseIpv6\r
378 );\r
379\r
9095d37b 380/**\r
d1f95000 381 Disables the use of the PXE Base Code Protocol functions.\r
f737cfb9 382\r
383 This function stops all activity on the network device. All the resources allocated\r
384 in Start() are released, the Started field of the EFI_PXE_BASE_CODE_MODE structure is\r
385 set to FALSE and EFI_SUCCESS is returned. If the Started field of the EFI_PXE_BASE_CODE_MODE\r
386 structure is already FALSE, then EFI_NOT_STARTED will be returned.\r
9095d37b 387\r
af2dc6a7 388 @param This The pointer to the EFI_PXE_BASE_CODE_PROTOCOL instance.\r
9095d37b 389\r
d1f95000 390 @retval EFI_SUCCESS The PXE Base Code Protocol was stopped.\r
9095d37b 391 @retval EFI_NOT_STARTED The PXE Base Code Protocol is already in the stopped state.\r
d1f95000 392 @retval EFI_INVALID_PARAMETER The This parameter is NULL or does not point to a valid\r
9095d37b
LG
393 EFI_PXE_BASE_CODE_PROTOCOL structure.\r
394 @retval EFI_DEVICE_ERROR The network device encountered an error during this operation.\r
395\r
d1f95000 396**/\r
397typedef\r
398EFI_STATUS\r
8b13229b 399(EFIAPI *EFI_PXE_BASE_CODE_STOP)(\r
d1f95000 400 IN EFI_PXE_BASE_CODE_PROTOCOL *This\r
401 );\r
402\r
9095d37b 403/**\r
d1f95000 404 Attempts to complete a DHCPv4 D.O.R.A. (discover / offer / request / acknowledge) or DHCPv6\r
405 S.A.R.R (solicit / advertise / request / reply) sequence.\r
f737cfb9 406\r
407 This function attempts to complete the DHCP sequence. If this sequence is completed,\r
408 then EFI_SUCCESS is returned, and the DhcpCompleted, ProxyOfferReceived, StationIp,\r
409 SubnetMask, DhcpDiscover, DhcpAck, and ProxyOffer fields of the EFI_PXE_BASE_CODE_MODE\r
410 structure are filled in.\r
411 If SortOffers is TRUE, then the cached DHCP offer packets will be sorted before\r
412 they are tried. If SortOffers is FALSE, then the cached DHCP offer packets will\r
413 be tried in the order in which they are received. Please see the Preboot Execution\r
414 Environment (PXE) Specification for additional details on the implementation of DHCP.\r
415 This function can take at least 31 seconds to timeout and return control to the\r
416 caller. If the DHCP sequence does not complete, then EFI_TIMEOUT will be returned.\r
417 If the Callback Protocol does not return EFI_PXE_BASE_CODE_CALLBACK_STATUS_CONTINUE,\r
418 then the DHCP sequence will be stopped and EFI_ABORTED will be returned.\r
9095d37b 419\r
af2dc6a7 420 @param This The pointer to the EFI_PXE_BASE_CODE_PROTOCOL instance.\r
d1f95000 421 @param SortOffers TRUE if the offers received should be sorted. Set to FALSE to try the\r
9095d37b
LG
422 offers in the order that they are received.\r
423\r
d1f95000 424 @retval EFI_SUCCESS Valid DHCP has completed.\r
425 @retval EFI_NOT_STARTED The PXE Base Code Protocol is in the stopped state.\r
426 @retval EFI_INVALID_PARAMETER The This parameter is NULL or does not point to a valid\r
9095d37b
LG
427 EFI_PXE_BASE_CODE_PROTOCOL structure.\r
428 @retval EFI_DEVICE_ERROR The network device encountered an error during this operation.\r
d1f95000 429 @retval EFI_OUT_OF_RESOURCES Could not allocate enough memory to complete the DHCP Protocol.\r
430 @retval EFI_ABORTED The callback function aborted the DHCP Protocol.\r
431 @retval EFI_TIMEOUT The DHCP Protocol timed out.\r
432 @retval EFI_ICMP_ERROR An ICMP error packet was received during the DHCP session.\r
433 @retval EFI_NO_RESPONSE Valid PXE offer was not received.\r
9095d37b 434\r
d1f95000 435**/\r
436typedef\r
437EFI_STATUS\r
8b13229b 438(EFIAPI *EFI_PXE_BASE_CODE_DHCP)(\r
d1f95000 439 IN EFI_PXE_BASE_CODE_PROTOCOL *This,\r
440 IN BOOLEAN SortOffers\r
441 );\r
442\r
9095d37b 443/**\r
d1f95000 444 Attempts to complete the PXE Boot Server and/or boot image discovery sequence.\r
f737cfb9 445\r
446 This function attempts to complete the PXE Boot Server and/or boot image discovery\r
447 sequence. If this sequence is completed, then EFI_SUCCESS is returned, and the\r
448 PxeDiscoverValid, PxeDiscover, PxeReplyReceived, and PxeReply fields of the\r
449 EFI_PXE_BASE_CODE_MODE structure are filled in. If UseBis is TRUE, then the\r
450 PxeBisReplyReceived and PxeBisReply fields of the EFI_PXE_BASE_CODE_MODE structure\r
451 will also be filled in. If UseBis is FALSE, then PxeBisReplyValid will be set to FALSE.\r
452 In the structure referenced by parameter Info, the PXE Boot Server list, SrvList[],\r
453 has two uses: It is the Boot Server IP address list used for unicast discovery\r
454 (if the UseUCast field is TRUE), and it is the list used for Boot Server verification\r
455 (if the MustUseList field is TRUE). Also, if the MustUseList field in that structure\r
456 is TRUE and the AcceptAnyResponse field in the SrvList[] array is TRUE, any Boot\r
457 Server reply of that type will be accepted. If the AcceptAnyResponse field is\r
458 FALSE, only responses from Boot Servers with matching IP addresses will be accepted.\r
459 This function can take at least 10 seconds to timeout and return control to the\r
460 caller. If the Discovery sequence does not complete, then EFI_TIMEOUT will be\r
461 returned. Please see the Preboot Execution Environment (PXE) Specification for\r
462 additional details on the implementation of the Discovery sequence.\r
463 If the Callback Protocol does not return EFI_PXE_BASE_CODE_CALLBACK_STATUS_CONTINUE,\r
464 then the Discovery sequence is stopped and EFI_ABORTED will be returned.\r
9095d37b 465\r
af2dc6a7 466 @param This The pointer to the EFI_PXE_BASE_CODE_PROTOCOL instance.\r
d1f95000 467 @param Type The type of bootstrap to perform.\r
af2dc6a7 468 @param Layer The pointer to the boot server layer number to discover, which must be\r
9095d37b
LG
469 PXE_BOOT_LAYER_INITIAL when a new server type is being\r
470 discovered.\r
471 @param UseBis TRUE if Boot Integrity Services are to be used. FALSE otherwise.\r
af2dc6a7 472 @param Info The pointer to a data structure that contains additional information on the\r
9095d37b
LG
473 type of discovery operation that is to be performed.\r
474\r
d1f95000 475 @retval EFI_SUCCESS The Discovery sequence has been completed.\r
476 @retval EFI_NOT_STARTED The PXE Base Code Protocol is in the stopped state.\r
9095d37b
LG
477 @retval EFI_INVALID_PARAMETER One or more parameters are invalid.\r
478 @retval EFI_DEVICE_ERROR The network device encountered an error during this operation.\r
d1f95000 479 @retval EFI_OUT_OF_RESOURCES Could not allocate enough memory to complete Discovery.\r
480 @retval EFI_ABORTED The callback function aborted the Discovery sequence.\r
481 @retval EFI_TIMEOUT The Discovery sequence timed out.\r
482 @retval EFI_ICMP_ERROR An ICMP error packet was received during the PXE discovery\r
9095d37b
LG
483 session.\r
484\r
d1f95000 485**/\r
486typedef\r
487EFI_STATUS\r
8b13229b 488(EFIAPI *EFI_PXE_BASE_CODE_DISCOVER)(\r
d1f95000 489 IN EFI_PXE_BASE_CODE_PROTOCOL *This,\r
490 IN UINT16 Type,\r
491 IN UINT16 *Layer,\r
492 IN BOOLEAN UseBis,\r
493 IN EFI_PXE_BASE_CODE_DISCOVER_INFO *Info OPTIONAL\r
494 );\r
495\r
9095d37b 496/**\r
d1f95000 497 Used to perform TFTP and MTFTP services.\r
f737cfb9 498\r
499 This function is used to perform TFTP and MTFTP services. This includes the\r
500 TFTP operations to get the size of a file, read a directory, read a file, and\r
501 write a file. It also includes the MTFTP operations to get the size of a file,\r
502 read a directory, and read a file. The type of operation is specified by Operation.\r
503 If the callback function that is invoked during the TFTP/MTFTP operation does\r
504 not return EFI_PXE_BASE_CODE_CALLBACK_STATUS_CONTINUE, then EFI_ABORTED will\r
505 be returned.\r
506 For read operations, the return data will be placed in the buffer specified by\r
507 BufferPtr. If BufferSize is too small to contain the entire downloaded file,\r
508 then EFI_BUFFER_TOO_SMALL will be returned and BufferSize will be set to zero\r
509 or the size of the requested file (the size of the requested file is only returned\r
510 if the TFTP server supports TFTP options). If BufferSize is large enough for the\r
511 read operation, then BufferSize will be set to the size of the downloaded file,\r
512 and EFI_SUCCESS will be returned. Applications using the PxeBc.Mtftp() services\r
513 should use the get-file-size operations to determine the size of the downloaded\r
514 file prior to using the read-file operations--especially when downloading large\r
515 (greater than 64 MB) files--instead of making two calls to the read-file operation.\r
516 Following this recommendation will save time if the file is larger than expected\r
517 and the TFTP server does not support TFTP option extensions. Without TFTP option\r
518 extension support, the client has to download the entire file, counting and discarding\r
519 the received packets, to determine the file size.\r
520 For write operations, the data to be sent is in the buffer specified by BufferPtr.\r
521 BufferSize specifies the number of bytes to send. If the write operation completes\r
522 successfully, then EFI_SUCCESS will be returned.\r
2f5c655a 523 For TFTP "get file size" operations, the size of the requested file or directory\r
f737cfb9 524 is returned in BufferSize, and EFI_SUCCESS will be returned. If the TFTP server\r
525 does not support options, the file will be downloaded into a bit bucket and the\r
2f5c655a 526 length of the downloaded file will be returned. For MTFTP "get file size" operations,\r
527 if the MTFTP server does not support the "get file size" option, EFI_UNSUPPORTED\r
f737cfb9 528 will be returned.\r
529 This function can take up to 10 seconds to timeout and return control to the caller.\r
530 If the TFTP sequence does not complete, EFI_TIMEOUT will be returned.\r
531 If the Callback Protocol does not return EFI_PXE_BASE_CODE_CALLBACK_STATUS_CONTINUE,\r
532 then the TFTP sequence is stopped and EFI_ABORTED will be returned.\r
533 The format of the data returned from a TFTP read directory operation is a null-terminated\r
534 filename followed by a null-terminated information string, of the form\r
2f5c655a 535 "size year-month-day hour:minute:second" (i.e. %d %d-%d-%d %d:%d:%f - note that\r
f737cfb9 536 the seconds field can be a decimal number), where the date and time are UTC. For\r
537 an MTFTP read directory command, there is additionally a null-terminated multicast\r
538 IP address preceding the filename of the form %d.%d.%d.%d for IP v4. The final\r
539 entry is itself null-terminated, so that the final information string is terminated\r
540 with two null octets.\r
9095d37b 541\r
af2dc6a7 542 @param This The pointer to the EFI_PXE_BASE_CODE_PROTOCOL instance.\r
d1f95000 543 @param Operation The type of operation to perform.\r
9095d37b 544 @param BufferPtr A pointer to the data buffer.\r
d1f95000 545 @param Overwrite Only used on write file operations. TRUE if a file on a remote server can\r
9095d37b 546 be overwritten.\r
d1f95000 547 @param BufferSize For get-file-size operations, *BufferSize returns the size of the\r
9095d37b 548 requested file.\r
d1f95000 549 @param BlockSize The requested block size to be used during a TFTP transfer.\r
550 @param ServerIp The TFTP / MTFTP server IP address.\r
551 @param Filename A Null-terminated ASCII string that specifies a directory name or a file\r
9095d37b 552 name.\r
af2dc6a7 553 @param Info The pointer to the MTFTP information.\r
9095d37b
LG
554 @param DontUseBuffer Set to FALSE for normal TFTP and MTFTP read file operation.\r
555\r
d1f95000 556 @retval EFI_SUCCESS The TFTP/MTFTP operation was completed.\r
557 @retval EFI_NOT_STARTED The PXE Base Code Protocol is in the stopped state.\r
9095d37b
LG
558 @retval EFI_INVALID_PARAMETER One or more parameters are invalid.\r
559 @retval EFI_DEVICE_ERROR The network device encountered an error during this operation.\r
560 @retval EFI_BUFFER_TOO_SMALL The buffer is not large enough to complete the read operation.\r
d1f95000 561 @retval EFI_ABORTED The callback function aborted the TFTP/MTFTP operation.\r
562 @retval EFI_TIMEOUT The TFTP/MTFTP operation timed out.\r
563 @retval EFI_ICMP_ERROR An ICMP error packet was received during the MTFTP session.\r
564 @retval EFI_TFTP_ERROR A TFTP error packet was received during the MTFTP session.\r
9095d37b 565\r
d1f95000 566**/\r
567typedef\r
568EFI_STATUS\r
8b13229b 569(EFIAPI *EFI_PXE_BASE_CODE_MTFTP)(\r
d1f95000 570 IN EFI_PXE_BASE_CODE_PROTOCOL *This,\r
571 IN EFI_PXE_BASE_CODE_TFTP_OPCODE Operation,\r
572 IN OUT VOID *BufferPtr OPTIONAL,\r
573 IN BOOLEAN Overwrite,\r
574 IN OUT UINT64 *BufferSize,\r
575 IN UINTN *BlockSize OPTIONAL,\r
576 IN EFI_IP_ADDRESS *ServerIp,\r
577 IN UINT8 *Filename OPTIONAL,\r
578 IN EFI_PXE_BASE_CODE_MTFTP_INFO *Info OPTIONAL,\r
579 IN BOOLEAN DontUseBuffer\r
580 );\r
581\r
9095d37b 582/**\r
d1f95000 583 Writes a UDP packet to the network interface.\r
f737cfb9 584\r
585 This function writes a UDP packet specified by the (optional HeaderPtr and)\r
586 BufferPtr parameters to the network interface. The UDP header is automatically\r
587 built by this routine. It uses the parameters OpFlags, DestIp, DestPort, GatewayIp,\r
588 SrcIp, and SrcPort to build this header. If the packet is successfully built and\r
589 transmitted through the network interface, then EFI_SUCCESS will be returned.\r
590 If a timeout occurs during the transmission of the packet, then EFI_TIMEOUT will\r
591 be returned. If an ICMP error occurs during the transmission of the packet, then\r
592 the IcmpErrorReceived field is set to TRUE, the IcmpError field is filled in and\r
593 EFI_ICMP_ERROR will be returned. If the Callback Protocol does not return\r
594 EFI_PXE_BASE_CODE_CALLBACK_STATUS_CONTINUE, then EFI_ABORTED will be returned.\r
9095d37b 595\r
af2dc6a7 596 @param This The pointer to the EFI_PXE_BASE_CODE_PROTOCOL instance.\r
9095d37b 597 @param OpFlags The UDP operation flags.\r
d1f95000 598 @param DestIp The destination IP address.\r
9095d37b
LG
599 @param DestPort The destination UDP port number.\r
600 @param GatewayIp The gateway IP address.\r
d1f95000 601 @param SrcIp The source IP address.\r
602 @param SrcPort The source UDP port number.\r
603 @param HeaderSize An optional field which may be set to the length of a header at\r
9095d37b 604 HeaderPtr to be prefixed to the data at BufferPtr.\r
d1f95000 605 @param HeaderPtr If HeaderSize is not NULL, a pointer to a header to be prefixed to the\r
9095d37b 606 data at BufferPtr.\r
d1f95000 607 @param BufferSize A pointer to the size of the data at BufferPtr.\r
608 @param BufferPtr A pointer to the data to be written.\r
9095d37b 609\r
d1f95000 610 @retval EFI_SUCCESS The UDP Write operation was completed.\r
611 @retval EFI_NOT_STARTED The PXE Base Code Protocol is in the stopped state.\r
9095d37b
LG
612 @retval EFI_INVALID_PARAMETER One or more parameters are invalid.\r
613 @retval EFI_BAD_BUFFER_SIZE The buffer is too long to be transmitted.\r
d1f95000 614 @retval EFI_ABORTED The callback function aborted the UDP Write operation.\r
615 @retval EFI_TIMEOUT The UDP Write operation timed out.\r
9095d37b
LG
616 @retval EFI_ICMP_ERROR An ICMP error packet was received during the UDP write session.\r
617\r
d1f95000 618**/\r
619typedef\r
620EFI_STATUS\r
8b13229b 621(EFIAPI *EFI_PXE_BASE_CODE_UDP_WRITE)(\r
d1f95000 622 IN EFI_PXE_BASE_CODE_PROTOCOL *This,\r
623 IN UINT16 OpFlags,\r
624 IN EFI_IP_ADDRESS *DestIp,\r
625 IN EFI_PXE_BASE_CODE_UDP_PORT *DestPort,\r
626 IN EFI_IP_ADDRESS *GatewayIp, OPTIONAL\r
627 IN EFI_IP_ADDRESS *SrcIp, OPTIONAL\r
628 IN OUT EFI_PXE_BASE_CODE_UDP_PORT *SrcPort, OPTIONAL\r
629 IN UINTN *HeaderSize, OPTIONAL\r
630 IN VOID *HeaderPtr, OPTIONAL\r
631 IN UINTN *BufferSize,\r
632 IN VOID *BufferPtr\r
633 );\r
634\r
9095d37b 635/**\r
d1f95000 636 Reads a UDP packet from the network interface.\r
f737cfb9 637\r
638 This function reads a UDP packet from a network interface. The data contents\r
639 are returned in (the optional HeaderPtr and) BufferPtr, and the size of the\r
af2dc6a7 640 buffer received is returned in BufferSize. If the input BufferSize is smaller\r
f737cfb9 641 than the UDP packet received (less optional HeaderSize), it will be set to the\r
642 required size, and EFI_BUFFER_TOO_SMALL will be returned. In this case, the\r
643 contents of BufferPtr are undefined, and the packet is lost. If a UDP packet is\r
644 successfully received, then EFI_SUCCESS will be returned, and the information\r
645 from the UDP header will be returned in DestIp, DestPort, SrcIp, and SrcPort if\r
646 they are not NULL.\r
647 Depending on the values of OpFlags and the DestIp, DestPort, SrcIp, and SrcPort\r
648 input values, different types of UDP packet receive filtering will be performed.\r
649 The following tables summarize these receive filter operations.\r
9095d37b 650\r
af2dc6a7 651 @param This The pointer to the EFI_PXE_BASE_CODE_PROTOCOL instance.\r
9095d37b 652 @param OpFlags The UDP operation flags.\r
d1f95000 653 @param DestIp The destination IP address.\r
f737cfb9 654 @param DestPort The destination UDP port number.\r
d1f95000 655 @param SrcIp The source IP address.\r
656 @param SrcPort The source UDP port number.\r
657 @param HeaderSize An optional field which may be set to the length of a header at\r
9095d37b 658 HeaderPtr to be prefixed to the data at BufferPtr.\r
d1f95000 659 @param HeaderPtr If HeaderSize is not NULL, a pointer to a header to be prefixed to the\r
9095d37b 660 data at BufferPtr.\r
d1f95000 661 @param BufferSize A pointer to the size of the data at BufferPtr.\r
662 @param BufferPtr A pointer to the data to be read.\r
9095d37b 663\r
f737cfb9 664 @retval EFI_SUCCESS The UDP Read operation was completed.\r
d1f95000 665 @retval EFI_NOT_STARTED The PXE Base Code Protocol is in the stopped state.\r
9095d37b 666 @retval EFI_INVALID_PARAMETER One or more parameters are invalid.\r
d1f95000 667 @retval EFI_DEVICE_ERROR The network device encountered an error during this operation.\r
668 @retval EFI_BUFFER_TOO_SMALL The packet is larger than Buffer can hold.\r
669 @retval EFI_ABORTED The callback function aborted the UDP Read operation.\r
9095d37b
LG
670 @retval EFI_TIMEOUT The UDP Read operation timed out.\r
671\r
d1f95000 672**/\r
673typedef\r
674EFI_STATUS\r
8b13229b 675(EFIAPI *EFI_PXE_BASE_CODE_UDP_READ)(\r
d1f95000 676 IN EFI_PXE_BASE_CODE_PROTOCOL *This,\r
677 IN UINT16 OpFlags,\r
678 IN OUT EFI_IP_ADDRESS *DestIp, OPTIONAL\r
679 IN OUT EFI_PXE_BASE_CODE_UDP_PORT *DestPort, OPTIONAL\r
680 IN OUT EFI_IP_ADDRESS *SrcIp, OPTIONAL\r
681 IN OUT EFI_PXE_BASE_CODE_UDP_PORT *SrcPort, OPTIONAL\r
682 IN UINTN *HeaderSize, OPTIONAL\r
683 IN VOID *HeaderPtr, OPTIONAL\r
684 IN OUT UINTN *BufferSize,\r
685 IN VOID *BufferPtr\r
686 );\r
687\r
9095d37b 688/**\r
d1f95000 689 Updates the IP receive filters of a network device and enables software filtering.\r
9095d37b 690\r
f737cfb9 691 The NewFilter field is used to modify the network device's current IP receive\r
692 filter settings and to enable a software filter. This function updates the IpFilter\r
693 field of the EFI_PXE_BASE_CODE_MODE structure with the contents of NewIpFilter.\r
694 The software filter is used when the USE_FILTER in OpFlags is set to UdpRead().\r
695 The current hardware filter remains in effect no matter what the settings of OpFlags\r
696 are, so that the meaning of ANY_DEST_IP set in OpFlags to UdpRead() is from those\r
2f5c655a 697 packets whose reception is enabled in hardware - physical NIC address (unicast),\r
f737cfb9 698 broadcast address, logical address or addresses (multicast), or all (promiscuous).\r
699 UdpRead() does not modify the IP filter settings.\r
700 Dhcp(), Discover(), and Mtftp() set the IP filter, and return with the IP receive\r
701 filter list emptied and the filter set to EFI_PXE_BASE_CODE_IP_FILTER_STATION_IP.\r
702 If an application or driver wishes to preserve the IP receive filter settings,\r
703 it will have to preserve the IP receive filter settings before these calls, and\r
704 use SetIpFilter() to restore them after the calls. If incompatible filtering is\r
af2dc6a7 705 requested (for example, PROMISCUOUS with anything else), or if the device does not\r
f737cfb9 706 support a requested filter setting and it cannot be accommodated in software\r
707 (for example, PROMISCUOUS not supported), EFI_INVALID_PARAMETER will be returned.\r
708 The IPlist field is used to enable IPs other than the StationIP. They may be\r
709 multicast or unicast. If IPcnt is set as well as EFI_PXE_BASE_CODE_IP_FILTER_STATION_IP,\r
710 then both the StationIP and the IPs from the IPlist will be used.\r
9095d37b 711\r
af2dc6a7 712 @param This The pointer to the EFI_PXE_BASE_CODE_PROTOCOL instance.\r
713 @param NewFilter The pointer to the new set of IP receive filters.\r
9095d37b 714\r
d1f95000 715 @retval EFI_SUCCESS The IP receive filter settings were updated.\r
716 @retval EFI_NOT_STARTED The PXE Base Code Protocol is in the stopped state.\r
9095d37b
LG
717 @retval EFI_INVALID_PARAMETER One or more parameters are invalid.\r
718\r
d1f95000 719**/\r
720typedef\r
721EFI_STATUS\r
8b13229b 722(EFIAPI *EFI_PXE_BASE_CODE_SET_IP_FILTER)(\r
d1f95000 723 IN EFI_PXE_BASE_CODE_PROTOCOL *This,\r
724 IN EFI_PXE_BASE_CODE_IP_FILTER *NewFilter\r
725 );\r
726\r
9095d37b 727/**\r
d1f95000 728 Uses the ARP protocol to resolve a MAC address.\r
9095d37b 729\r
f737cfb9 730 This function uses the ARP protocol to resolve a MAC address. The UsingIpv6 field\r
731 of the EFI_PXE_BASE_CODE_MODE structure is used to determine if IPv4 or IPv6\r
732 addresses are being used. The IP address specified by IpAddr is used to resolve\r
733 a MAC address. If the ARP protocol succeeds in resolving the specified address,\r
734 then the ArpCacheEntries and ArpCache fields of the EFI_PXE_BASE_CODE_MODE structure\r
735 are updated, and EFI_SUCCESS is returned. If MacAddr is not NULL, the resolved\r
736 MAC address is placed there as well.\r
737 If the PXE Base Code protocol is in the stopped state, then EFI_NOT_STARTED is\r
738 returned. If the ARP protocol encounters a timeout condition while attempting\r
739 to resolve an address, then EFI_TIMEOUT is returned. If the Callback Protocol\r
740 does not return EFI_PXE_BASE_CODE_CALLBACK_STATUS_CONTINUE, then EFI_ABORTED is\r
741 returned.\r
9095d37b 742\r
af2dc6a7 743 @param This The pointer to the EFI_PXE_BASE_CODE_PROTOCOL instance.\r
744 @param IpAddr The pointer to the IP address that is used to resolve a MAC address.\r
d1f95000 745 @param MacAddr If not NULL, a pointer to the MAC address that was resolved with the\r
9095d37b
LG
746 ARP protocol.\r
747\r
d1f95000 748 @retval EFI_SUCCESS The IP or MAC address was resolved.\r
749 @retval EFI_NOT_STARTED The PXE Base Code Protocol is in the stopped state.\r
9095d37b
LG
750 @retval EFI_INVALID_PARAMETER One or more parameters are invalid.\r
751 @retval EFI_DEVICE_ERROR The network device encountered an error during this operation.\r
d1f95000 752 @retval EFI_ABORTED The callback function aborted the ARP Protocol.\r
753 @retval EFI_TIMEOUT The ARP Protocol encountered a timeout condition.\r
9095d37b 754\r
d1f95000 755**/\r
756typedef\r
757EFI_STATUS\r
8b13229b 758(EFIAPI *EFI_PXE_BASE_CODE_ARP)(\r
d1f95000 759 IN EFI_PXE_BASE_CODE_PROTOCOL *This,\r
760 IN EFI_IP_ADDRESS *IpAddr,\r
761 IN EFI_MAC_ADDRESS *MacAddr OPTIONAL\r
762 );\r
763\r
9095d37b 764/**\r
d1f95000 765 Updates the parameters that affect the operation of the PXE Base Code Protocol.\r
9095d37b 766\r
f737cfb9 767 This function sets parameters that affect the operation of the PXE Base Code Protocol.\r
768 The parameter specified by NewAutoArp is used to control the generation of ARP\r
769 protocol packets. If NewAutoArp is TRUE, then ARP Protocol packets will be generated\r
770 as required by the PXE Base Code Protocol. If NewAutoArp is FALSE, then no ARP\r
771 Protocol packets will be generated. In this case, the only mappings that are\r
772 available are those stored in the ArpCache of the EFI_PXE_BASE_CODE_MODE structure.\r
773 If there are not enough mappings in the ArpCache to perform a PXE Base Code Protocol\r
774 service, then the service will fail. This function updates the AutoArp field of\r
775 the EFI_PXE_BASE_CODE_MODE structure to NewAutoArp.\r
776 The SetParameters() call must be invoked after a Callback Protocol is installed\r
777 to enable the use of callbacks.\r
9095d37b 778\r
af2dc6a7 779 @param This The pointer to the EFI_PXE_BASE_CODE_PROTOCOL instance.\r
d1f95000 780 @param NewAutoArp If not NULL, a pointer to a value that specifies whether to replace the\r
9095d37b 781 current value of AutoARP.\r
d1f95000 782 @param NewSendGUID If not NULL, a pointer to a value that specifies whether to replace the\r
9095d37b 783 current value of SendGUID.\r
d1f95000 784 @param NewTTL If not NULL, a pointer to be used in place of the current value of TTL,\r
9095d37b 785 the "time to live" field of the IP header.\r
d1f95000 786 @param NewToS If not NULL, a pointer to be used in place of the current value of ToS,\r
9095d37b 787 the "type of service" field of the IP header.\r
d1f95000 788 @param NewMakeCallback If not NULL, a pointer to a value that specifies whether to replace the\r
9095d37b
LG
789 current value of the MakeCallback field of the Mode structure.\r
790\r
d1f95000 791 @retval EFI_SUCCESS The new parameters values were updated.\r
792 @retval EFI_NOT_STARTED The PXE Base Code Protocol is in the stopped state.\r
9095d37b
LG
793 @retval EFI_INVALID_PARAMETER One or more parameters are invalid.\r
794\r
d1f95000 795**/\r
796typedef\r
797EFI_STATUS\r
8b13229b 798(EFIAPI *EFI_PXE_BASE_CODE_SET_PARAMETERS)(\r
d1f95000 799 IN EFI_PXE_BASE_CODE_PROTOCOL *This,\r
800 IN BOOLEAN *NewAutoArp, OPTIONAL\r
801 IN BOOLEAN *NewSendGUID, OPTIONAL\r
802 IN UINT8 *NewTTL, OPTIONAL\r
803 IN UINT8 *NewToS, OPTIONAL\r
804 IN BOOLEAN *NewMakeCallback OPTIONAL\r
805 );\r
806\r
9095d37b 807/**\r
d1f95000 808 Updates the station IP address and/or subnet mask values of a network device.\r
9095d37b 809\r
f737cfb9 810 This function updates the station IP address and/or subnet mask values of a network\r
811 device.\r
812 The NewStationIp field is used to modify the network device's current IP address.\r
813 If NewStationIP is NULL, then the current IP address will not be modified. Otherwise,\r
814 this function updates the StationIp field of the EFI_PXE_BASE_CODE_MODE structure\r
815 with NewStationIp.\r
816 The NewSubnetMask field is used to modify the network device's current subnet\r
817 mask. If NewSubnetMask is NULL, then the current subnet mask will not be modified.\r
818 Otherwise, this function updates the SubnetMask field of the EFI_PXE_BASE_CODE_MODE\r
819 structure with NewSubnetMask.\r
9095d37b 820\r
af2dc6a7 821 @param This The pointer to the EFI_PXE_BASE_CODE_PROTOCOL instance.\r
9095d37b
LG
822 @param NewStationIp The pointer to the new IP address to be used by the network device.\r
823 @param NewSubnetMask The pointer to the new subnet mask to be used by the network device.\r
824\r
d1f95000 825 @retval EFI_SUCCESS The new station IP address and/or subnet mask were updated.\r
826 @retval EFI_NOT_STARTED The PXE Base Code Protocol is in the stopped state.\r
9095d37b
LG
827 @retval EFI_INVALID_PARAMETER One or more parameters are invalid.\r
828\r
d1f95000 829**/\r
830typedef\r
831EFI_STATUS\r
8b13229b 832(EFIAPI *EFI_PXE_BASE_CODE_SET_STATION_IP)(\r
d1f95000 833 IN EFI_PXE_BASE_CODE_PROTOCOL *This,\r
834 IN EFI_IP_ADDRESS *NewStationIp, OPTIONAL\r
835 IN EFI_IP_ADDRESS *NewSubnetMask OPTIONAL\r
836 );\r
837\r
9095d37b 838/**\r
d1f95000 839 Updates the contents of the cached DHCP and Discover packets.\r
9095d37b 840\r
f737cfb9 841 The pointers to the new packets are used to update the contents of the cached\r
842 packets in the EFI_PXE_BASE_CODE_MODE structure.\r
9095d37b 843\r
af2dc6a7 844 @param This The pointer to the EFI_PXE_BASE_CODE_PROTOCOL instance.\r
845 @param NewDhcpDiscoverValid The pointer to a value that will replace the current\r
9095d37b 846 DhcpDiscoverValid field.\r
af2dc6a7 847 @param NewDhcpAckReceived The pointer to a value that will replace the current\r
9095d37b 848 DhcpAckReceived field.\r
af2dc6a7 849 @param NewProxyOfferReceived The pointer to a value that will replace the current\r
9095d37b
LG
850 ProxyOfferReceived field.\r
851 @param NewPxeDiscoverValid The pointer to a value that will replace the current\r
852 ProxyOfferReceived field.\r
af2dc6a7 853 @param NewPxeReplyReceived The pointer to a value that will replace the current\r
9095d37b 854 PxeReplyReceived field.\r
af2dc6a7 855 @param NewPxeBisReplyReceived The pointer to a value that will replace the current\r
9095d37b
LG
856 PxeBisReplyReceived field.\r
857 @param NewDhcpDiscover The pointer to the new cached DHCP Discover packet contents.\r
af2dc6a7 858 @param NewDhcpAck The pointer to the new cached DHCP Ack packet contents.\r
859 @param NewProxyOffer The pointer to the new cached Proxy Offer packet contents.\r
860 @param NewPxeDiscover The pointer to the new cached PXE Discover packet contents.\r
861 @param NewPxeReply The pointer to the new cached PXE Reply packet contents.\r
862 @param NewPxeBisReply The pointer to the new cached PXE BIS Reply packet contents.\r
9095d37b 863\r
d1f95000 864 @retval EFI_SUCCESS The cached packet contents were updated.\r
865 @retval EFI_NOT_STARTED The PXE Base Code Protocol is in the stopped state.\r
866 @retval EFI_INVALID_PARAMETER This is NULL or not point to a valid EFI_PXE_BASE_CODE_PROTOCOL structure.\r
9095d37b 867\r
d1f95000 868**/\r
869typedef\r
870EFI_STATUS\r
8b13229b 871(EFIAPI *EFI_PXE_BASE_CODE_SET_PACKETS)(\r
d1f95000 872 IN EFI_PXE_BASE_CODE_PROTOCOL *This,\r
873 BOOLEAN *NewDhcpDiscoverValid, OPTIONAL\r
874 BOOLEAN *NewDhcpAckReceived, OPTIONAL\r
875 BOOLEAN *NewProxyOfferReceived, OPTIONAL\r
876 BOOLEAN *NewPxeDiscoverValid, OPTIONAL\r
877 BOOLEAN *NewPxeReplyReceived, OPTIONAL\r
878 BOOLEAN *NewPxeBisReplyReceived, OPTIONAL\r
879 IN EFI_PXE_BASE_CODE_PACKET *NewDhcpDiscover, OPTIONAL\r
880 IN EFI_PXE_BASE_CODE_PACKET *NewDhcpAck, OPTIONAL\r
881 IN EFI_PXE_BASE_CODE_PACKET *NewProxyOffer, OPTIONAL\r
882 IN EFI_PXE_BASE_CODE_PACKET *NewPxeDiscover, OPTIONAL\r
883 IN EFI_PXE_BASE_CODE_PACKET *NewPxeReply, OPTIONAL\r
884 IN EFI_PXE_BASE_CODE_PACKET *NewPxeBisReply OPTIONAL\r
885 );\r
886\r
887//\r
888// PXE Base Code Protocol structure\r
889//\r
a6508c05 890#define EFI_PXE_BASE_CODE_PROTOCOL_REVISION 0x00010000\r
891\r
892//\r
893// Revision defined in EFI1.1\r
9095d37b 894//\r
a6508c05 895#define EFI_PXE_BASE_CODE_INTERFACE_REVISION EFI_PXE_BASE_CODE_PROTOCOL_REVISION\r
d1f95000 896\r
44717a39 897///\r
898/// The EFI_PXE_BASE_CODE_PROTOCOL is used to control PXE-compatible devices.\r
899/// An EFI_PXE_BASE_CODE_PROTOCOL will be layered on top of an\r
900/// EFI_MANAGED_NETWORK_PROTOCOL protocol in order to perform packet level transactions.\r
901/// The EFI_PXE_BASE_CODE_PROTOCOL handle also supports the\r
902/// EFI_LOAD_FILE_PROTOCOL protocol. This provides a clean way to obtain control from the\r
903/// boot manager if the boot path is from the remote device.\r
904///\r
d1f95000 905struct _EFI_PXE_BASE_CODE_PROTOCOL {\r
1f08a159 906 ///\r
9095d37b
LG
907 /// The revision of the EFI_PXE_BASE_CODE_PROTOCOL. All future revisions must\r
908 /// be backwards compatible. If a future version is not backwards compatible\r
1f08a159 909 /// it is not the same GUID.\r
910 ///\r
d1f95000 911 UINT64 Revision;\r
912 EFI_PXE_BASE_CODE_START Start;\r
913 EFI_PXE_BASE_CODE_STOP Stop;\r
914 EFI_PXE_BASE_CODE_DHCP Dhcp;\r
915 EFI_PXE_BASE_CODE_DISCOVER Discover;\r
916 EFI_PXE_BASE_CODE_MTFTP Mtftp;\r
917 EFI_PXE_BASE_CODE_UDP_WRITE UdpWrite;\r
918 EFI_PXE_BASE_CODE_UDP_READ UdpRead;\r
919 EFI_PXE_BASE_CODE_SET_IP_FILTER SetIpFilter;\r
920 EFI_PXE_BASE_CODE_ARP Arp;\r
921 EFI_PXE_BASE_CODE_SET_PARAMETERS SetParameters;\r
922 EFI_PXE_BASE_CODE_SET_STATION_IP SetStationIp;\r
923 EFI_PXE_BASE_CODE_SET_PACKETS SetPackets;\r
44717a39 924 ///\r
af2dc6a7 925 /// The pointer to the EFI_PXE_BASE_CODE_MODE data for this device.\r
44717a39 926 ///\r
d1f95000 927 EFI_PXE_BASE_CODE_MODE *Mode;\r
928};\r
929\r
930extern EFI_GUID gEfiPxeBaseCodeProtocolGuid;\r
931\r
9095d37b 932#endif\r