]> git.proxmox.com Git - mirror_edk2.git/blame - MdeModulePkg/Universal/Network/UefiPxeBcDxe/PxeBcImpl.h
Use siaddr in DHCP packet, if zero, use option 54 instead.
[mirror_edk2.git] / MdeModulePkg / Universal / Network / UefiPxeBcDxe / PxeBcImpl.h
CommitLineData
30368135 1/** @file\r
2\r
f737cfb9 3Copyright (c) 2007 - 2008, Intel Corporation.<BR> \r
30368135 4All rights reserved. This program and the accompanying materials\r
5are licensed and made available under the terms and conditions of the BSD License\r
6which accompanies this distribution. The full text of the license may be found at\r
7http://opensource.org/licenses/bsd-license.php\r
8\r
9THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r
10WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r
11\r
30368135 12**/\r
13\r
14#ifndef __EFI_PXEBC_IMPL_H__\r
15#define __EFI_PXEBC_IMPL_H__\r
16\r
17\r
18typedef struct _PXEBC_PRIVATE_DATA PXEBC_PRIVATE_DATA;\r
19\r
2517435c 20#include <Uefi.h>\r
30368135 21\r
22#include <Guid/SmBios.h>\r
23#include <IndustryStandard/SmBios.h>\r
24#include <Protocol/Dhcp4.h>\r
25#include <Protocol/PxeBaseCode.h>\r
26#include <Protocol/Mtftp4.h>\r
27#include <Protocol/Udp4.h>\r
28#include <Protocol/LoadFile.h>\r
29#include <Protocol/NetworkInterfaceIdentifier.h>\r
30#include <Protocol/PxeBaseCodeCallBack.h>\r
31#include <Protocol/Arp.h>\r
32#include <Protocol/Ip4.h>\r
33\r
34#include <Library/DebugLib.h>\r
35#include <Library/BaseMemoryLib.h>\r
20610fa8 36#include <Library/MemoryAllocationLib.h>\r
30368135 37#include <Library/UefiDriverEntryPoint.h>\r
38#include <Library/UefiBootServicesTableLib.h>\r
39#include <Library/UefiLib.h>\r
40#include <Library/BaseLib.h>\r
41#include <Library/NetLib.h>\r
d8d26fb2 42#include <Library/DpcLib.h>\r
30368135 43\r
44#include "PxeBcDriver.h"\r
45#include "PxeArch.h"\r
46#include "PxeBcDhcp.h"\r
47#include "PxeBcMtftp.h"\r
48#include "PxeBcSupport.h"\r
49\r
f3f2e05d 50#define PXEBC_PRIVATE_DATA_SIGNATURE SIGNATURE_32 ('P', 'X', 'E', 'P')\r
30368135 51#define PXEBC_MTFTP_TIMEOUT 4\r
52#define PXEBC_MTFTP_RETRIES 6\r
53\r
54struct _PXEBC_PRIVATE_DATA {\r
55 UINT32 Signature;\r
56 EFI_HANDLE Controller;\r
57 EFI_HANDLE Image;\r
58 EFI_HANDLE ArpChild;\r
59 EFI_HANDLE Dhcp4Child;\r
60 EFI_HANDLE Ip4Child;\r
61 EFI_HANDLE Mtftp4Child;\r
62 EFI_HANDLE Udp4ReadChild;\r
63 EFI_HANDLE Udp4WriteChild;\r
64\r
65 EFI_NETWORK_INTERFACE_IDENTIFIER_PROTOCOL *Nii;\r
66\r
67 EFI_PXE_BASE_CODE_PROTOCOL PxeBc;\r
68 EFI_LOAD_FILE_PROTOCOL LoadFile;\r
69 EFI_PXE_BASE_CODE_CALLBACK_PROTOCOL LoadFileCallback;\r
70 EFI_PXE_BASE_CODE_CALLBACK_PROTOCOL *PxeBcCallback;\r
71 EFI_ARP_PROTOCOL *Arp;\r
72 EFI_DHCP4_PROTOCOL *Dhcp4;\r
73 EFI_IP4_PROTOCOL *Ip4;\r
74 EFI_IP4_CONFIG_DATA Ip4ConfigData;\r
75 EFI_MTFTP4_PROTOCOL *Mtftp4;\r
76 EFI_UDP4_PROTOCOL *Udp4Read;\r
77 EFI_UDP4_PROTOCOL *Udp4Write;\r
78 UINT16 CurrentUdpSrcPort;\r
79 EFI_UDP4_CONFIG_DATA Udp4CfgData;\r
80\r
81\r
82 EFI_PXE_BASE_CODE_MODE Mode;\r
83 EFI_PXE_BASE_CODE_FUNCTION Function;\r
84\r
85 CHAR8 *BootFileName;\r
86\r
87 EFI_IP_ADDRESS StationIp;\r
88 EFI_IP_ADDRESS SubnetMask;\r
89 EFI_IP_ADDRESS GatewayIp;\r
90 EFI_IP_ADDRESS ServerIp;\r
91 BOOLEAN AddressIsOk;\r
92\r
93 UINTN FileSize;\r
94\r
95 UINT8 OptionBuffer[PXEBC_DHCP4_MAX_OPTION_SIZE];\r
96 EFI_DHCP4_PACKET SeedPacket;\r
97 EFI_MAC_ADDRESS Mac;\r
98 UINT8 MacLen;\r
99\r
100 BOOLEAN SortOffers;\r
101 BOOLEAN GotProxyOffer;\r
102 UINT32 NumOffers;\r
103 UINT32 SelectedOffer;\r
104 UINT32 ProxyOfferType;\r
105\r
106 //\r
107 // Cached packets as complements of pxe mode data\r
108 //\r
109 PXEBC_CACHED_DHCP4_PACKET ProxyOffer;\r
110 PXEBC_CACHED_DHCP4_PACKET Dhcp4Ack;\r
111 PXEBC_CACHED_DHCP4_PACKET PxeReply;\r
112 PXEBC_CACHED_DHCP4_PACKET Dhcp4Offers[PXEBC_MAX_OFFER_NUM];\r
113\r
114 //\r
115 // Arrays for different types of offers:\r
116 // ServerCount records the count of the servers we got the offers,\r
117 // OfferIndex records the index of the offer sent by the server indexed by ServerCount.\r
118 //\r
119 UINT32 ServerCount[DHCP4_PACKET_TYPE_MAX];\r
120 UINT32 OfferIndex[DHCP4_PACKET_TYPE_MAX][PXEBC_MAX_OFFER_NUM];\r
121 UINT32 BootpIndex;\r
122 UINT32 ProxyIndex[DHCP4_PACKET_TYPE_MAX];\r
123 UINT32 BinlIndex[PXEBC_MAX_OFFER_NUM];\r
124\r
125 EFI_EVENT GetArpCacheEvent;\r
126 //\r
127 // token and event used to get ICMP error data from IP\r
128 //\r
129 EFI_IP4_COMPLETION_TOKEN IcmpErrorRcvToken;\r
130};\r
131\r
132#define PXEBC_PRIVATE_DATA_FROM_PXEBC(a) CR (a, PXEBC_PRIVATE_DATA, PxeBc, PXEBC_PRIVATE_DATA_SIGNATURE)\r
133\r
134#define PXEBC_PRIVATE_DATA_FROM_LOADFILE(a) CR (a, PXEBC_PRIVATE_DATA, LoadFile, PXEBC_PRIVATE_DATA_SIGNATURE)\r
135\r
136#define PXEBC_PRIVATE_DATA_FROM_PXEBCCALLBACK(a) CR (a, PXEBC_PRIVATE_DATA, PxeBcCallback, PXEBC_PRIVATE_DATA_SIGNATURE)\r
137\r
138extern EFI_PXE_BASE_CODE_PROTOCOL mPxeBcProtocolTemplate;\r
139extern EFI_LOAD_FILE_PROTOCOL mLoadFileProtocolTemplate;\r
140\r
f737cfb9 141/**\r
142 Causes the driver to load a specified file.\r
143\r
144 @param This Protocol instance pointer.\r
145 @param FilePath The device specific path of the file to load.\r
146 @param BootPolicy If TRUE, indicates that the request originates from the \r
147 boot manager is attempting to load FilePath as a boot\r
148 selection. If FALSE, then FilePath must match as exact file\r
149 to be loaded.\r
150 @param BufferSize On input the size of Buffer in bytes. On output with a return\r
151 code of EFI_SUCCESS, the amount of data transferred to \r
152 Buffer. On output with a return code of EFI_BUFFER_TOO_SMALL,\r
153 the size of Buffer required to retrieve the requested file.\r
154 @param Buffer The memory buffer to transfer the file to. IF Buffer is NULL,\r
155 then no the size of the requested file is returned in \r
156 BufferSize.\r
157\r
158 @retval EFI_SUCCESS The file was loaded.\r
159 @retval EFI_UNSUPPORTED The device does not support the provided BootPolicy\r
160 @retval EFI_INVALID_PARAMETER FilePath is not a valid device path, or \r
161 BufferSize is NULL.\r
162 @retval EFI_NO_MEDIA No medium was present to load the file.\r
163 @retval EFI_DEVICE_ERROR The file was not loaded due to a device error.\r
164 @retval EFI_NO_RESPONSE The remote system did not respond.\r
165 @retval EFI_NOT_FOUND The file was not found.\r
166 @retval EFI_ABORTED The file load process was manually cancelled.\r
167\r
168**/\r
169EFI_STATUS\r
170EFIAPI\r
171EfiPxeLoadFile (\r
172 IN EFI_LOAD_FILE_PROTOCOL * This,\r
173 IN EFI_DEVICE_PATH_PROTOCOL * FilePath,\r
174 IN BOOLEAN BootPolicy,\r
175 IN OUT UINTN *BufferSize,\r
176 IN VOID *Buffer OPTIONAL\r
177 );\r
178\r
30368135 179#endif\r