3 Copyright (c) 2006, Intel Corporation
4 All rights reserved. This program and the accompanying materials
5 are licensed and made available under the terms and conditions of the BSD License
6 which accompanies this distribution. The full text of the license may be found at
7 http://opensource.org/licenses/bsd-license.php
9 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
10 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
16 DHCP and PXE discovery protocol implementations.
23 STATIC EFI_PXE_BASE_CODE_UDP_PORT DhcpServerPort
= DHCP_SERVER_PORT
;
24 STATIC EFI_PXE_BASE_CODE_UDP_PORT DHCPClientPort
= DHCP_CLIENT_PORT
;
25 STATIC EFI_PXE_BASE_CODE_UDP_PORT PseudoDhcpServerPort
= PXE_DISCOVERY_PORT
;
26 #define PSEUDO_DHCP_CLIENT_PORT PseudoDhcpServerPort
27 STATIC EFI_IP_ADDRESS BroadcastIP
= { { 0xffffffff } };
28 STATIC EFI_IP_ADDRESS DefaultSubnetMask
= { { 0xffffff00 } };
31 DHCPV4_OP_STRUCT
*OpPtr
;
32 PXE_OP_SERVER_LIST
*BootServersStr
;
33 PXE_SERVER_LIST
*BootServerList
;
34 PXE_BOOT_MENU_ENTRY
*BootMenuItem
;
35 PXE_OP_DISCOVERY_CONTROL
*DiscoveryControl
;
36 PXE_OP_BOOT_MENU
*BootMenu
;
37 PXE_OP_BOOT_ITEM
*BootItem
;
38 DHCPV4_OP_VENDOR_OPTIONS
*VendorOptions
;
39 DHCPV4_OP_OVERLOAD
*Overload
;
40 DHCPV4_OP_CLASS
*PxeClassStr
;
41 DHCPV4_OP_SUBNET_MASK
*SubnetMaskStr
;
42 DHCPV4_OP_MESSAGE_TYPE
*MessageType
;
47 // 1 for Itanium-based, 0 for IA32
49 #define IA64SZ ((sizeof (UINTN) / sizeof (UINT32)) - 1)
51 #define SYS_ARCH (SYS_ARCH_EFI32 - (SYS_ARCH_EFI32 - IA64) * IA64SZ)
55 // option structure for DHCPREQUEST at end of DISCOVER options
56 // and for DHCPDECLINE
58 STATIC
const struct requestopendstr
{
59 DHCPV4_OP_REQUESTED_IP OpReqIP
;
60 DHCPV4_OP_SERVER_IP DhcServerIpPtr
;
67 DHCPV4_OPTION_LENGTH(DHCPV4_OP_REQUESTED_IP
)
73 DHCPV4_OPTION_LENGTH(DHCPV4_OP_SERVER_IP
)
81 #define DHCP_REQ_OPTIONS (*(struct requestopendstr *) DHCPV4_OPTIONS_BUFFER.End)
83 PXE_OP_BOOT_ITEM DefaultBootItem
= {
86 DHCPV4_OPTION_LENGTH(PXE_OP_BOOT_ITEM
)
92 // PXE discovery control default structure
94 STATIC PXE_OP_DISCOVERY_CONTROL DefaultDisCtl
= {
95 { VEND_PXE_DISCOVERY_CONTROL
, DHCPV4_OPTION_LENGTH(PXE_OP_DISCOVERY_CONTROL
) },
100 // PXE credentials option structure
107 DHCPV4_OP_HEADER Header
;
108 PXE_CREDENTIAL Credentials
[1];
109 } PXE_OP_CREDENTIAL_TYPES
;
112 // option structure for PXE discover (without credentials)
114 typedef struct { // discoveropendstr {
115 DHCPV4_OP_HEADER Header
; // vendor options
116 PXE_OP_BOOT_ITEM BootItem
;
117 UINT8 End
[1]; // if credentials option, it starts here
118 } PXE_DISCOVER_OPTIONS
;
120 #define DISCOVERoptions (*(PXE_DISCOVER_OPTIONS *) DHCPV4_OPTIONS_BUFFER.End)
121 #define DISCREDoptions (*(PXE_OP_CREDENTIAL_TYPES *) DISCOVERoptions.End)
124 // common option beginning for all our DHCP messages except
125 // DHCPDECLINE and DHCPRELEASE
127 STATIC
struct optionsstr
{
129 DHCPV4_OP_MESSAGE_TYPE DhcpMessageType
;
130 DHCPV4_OP_MAX_MESSAGE_SIZE DhcpMaxMessageSize
;
131 DHCPV4_OP_REQUESTED_OPTIONS DhcpRequestedOptions
;
132 DHCPV4_OP_PLATFORM_ID DhcpPlatformId
;
133 DHCPV4_OP_NETWORK_INTERFACE DhcpNetworkInterface
;
134 DHCPV4_OP_ARCHITECTURE_TYPE DhcpClientArchitecture
;
135 DHCPV4_OP_CLASS_ID DhcpClassIdentifier
;
139 /* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
145 DHCPOpStart
.DhcpCookie
[0] = 99;
146 DHCPOpStart
.DhcpCookie
[1] = 130;
147 DHCPOpStart
.DhcpCookie
[2] = 83;
148 DHCPOpStart
.DhcpCookie
[3] = 99;
149 DHCPOpStart
.DhcpMessageType
.Header
.OpCode
= OP_DHCP_MESSAGE_TYPE
;
150 DHCPOpStart
.DhcpMessageType
.Header
.Length
= 1;
151 DHCPOpStart
.DhcpMessageType
.Type
= DHCPDISCOVER
;
152 DHCPOpStart
.DhcpMaxMessageSize
.Header
.OpCode
= OP_DHCP_MAX_MESSAGE_SZ
;
153 DHCPOpStart
.DhcpMaxMessageSize
.Header
.Length
= 2;
154 DHCPOpStart
.DhcpMaxMessageSize
.MaxSize
[0] = MAX_DHCP_MSG_SZ
>> 8;
155 DHCPOpStart
.DhcpMaxMessageSize
.MaxSize
[1] = MAX_DHCP_MSG_SZ
& 0xff;
156 DHCPOpStart
.DhcpRequestedOptions
.Header
.OpCode
= OP_DHCP_PARM_REQ_LIST
;
157 DHCPOpStart
.DhcpRequestedOptions
.Header
.Length
= sizeof (DHCPV4_REQUESTED_OPTIONS_DATA
);
158 DHCPOpStart
.DhcpRequestedOptions
.Data
._OP_SUBNET_MASK
= OP_SUBNET_MASK
; /* 1 */
159 DHCPOpStart
.DhcpRequestedOptions
.Data
._OP_TIME_OFFSET
= OP_TIME_OFFSET
; /* 2 */
160 DHCPOpStart
.DhcpRequestedOptions
.Data
._OP_ROUTER_LIST
= OP_ROUTER_LIST
; /* 3 */
161 DHCPOpStart
.DhcpRequestedOptions
.Data
._OP_TIME_SERVERS
= OP_TIME_SERVERS
; /* 4 */
162 DHCPOpStart
.DhcpRequestedOptions
.Data
._OP_NAME_SERVERS
= OP_NAME_SERVERS
; /* 5 */
163 DHCPOpStart
.DhcpRequestedOptions
.Data
._OP_DNS_SERVERS
= OP_DNS_SERVERS
; /* 6 */
164 DHCPOpStart
.DhcpRequestedOptions
.Data
._OP_HOST_NAME
= OP_HOST_NAME
; /* 12 */
165 DHCPOpStart
.DhcpRequestedOptions
.Data
._OP_BOOT_FILE_SZ
= OP_BOOT_FILE_SZ
; /* 13 */
166 DHCPOpStart
.DhcpRequestedOptions
.Data
._OP_DOMAIN_NAME
= OP_DOMAIN_NAME
; /* 15 */
167 DHCPOpStart
.DhcpRequestedOptions
.Data
._OP_ROOT_PATH
= OP_ROOT_PATH
; /* 17 */
168 DHCPOpStart
.DhcpRequestedOptions
.Data
._OP_EXTENSION_PATH
= OP_EXTENSION_PATH
; /* 18 */
169 DHCPOpStart
.DhcpRequestedOptions
.Data
._OP_MAX_DATAGRAM_SZ
= OP_MAX_DATAGRAM_SZ
; /* 22 */
170 DHCPOpStart
.DhcpRequestedOptions
.Data
._OP_DEFAULT_TTL
= OP_DEFAULT_TTL
; /* 23 */
171 DHCPOpStart
.DhcpRequestedOptions
.Data
._OP_BROADCAST_ADD
= OP_BROADCAST_ADD
; /* 28 */
172 DHCPOpStart
.DhcpRequestedOptions
.Data
._OP_NIS_DOMAIN_NAME
= OP_NIS_DOMAIN_NAME
; /* 40 */
173 DHCPOpStart
.DhcpRequestedOptions
.Data
._OP_NIS_SERVERS
= OP_NIS_SERVERS
; /* 41 */
174 DHCPOpStart
.DhcpRequestedOptions
.Data
._OP_NTP_SERVERS
= OP_NTP_SERVERS
; /* 42 */
175 DHCPOpStart
.DhcpRequestedOptions
.Data
._OP_VENDOR_SPECIFIC
= OP_VENDOR_SPECIFIC
; /* 43 */
176 DHCPOpStart
.DhcpRequestedOptions
.Data
._OP_DHCP_REQ_IP_ADD
= OP_DHCP_REQ_IP_ADD
; /* 50 */
177 DHCPOpStart
.DhcpRequestedOptions
.Data
._OP_DHCP_LEASE_TIME
= OP_DHCP_LEASE_TIME
; /* 51 */
178 DHCPOpStart
.DhcpRequestedOptions
.Data
._OP_DHCP_SERVER_IP
= OP_DHCP_SERVER_IP
; /* 54 */
179 DHCPOpStart
.DhcpRequestedOptions
.Data
._OP_DHCP_RENEWAL_TIME
= OP_DHCP_RENEWAL_TIME
; /* 58 */
180 DHCPOpStart
.DhcpRequestedOptions
.Data
._OP_DHCP_REBINDING_TIME
= OP_DHCP_REBINDING_TIME
; /* 59 */
181 DHCPOpStart
.DhcpRequestedOptions
.Data
._OP_DHCP_CLASS_IDENTIFIER
= OP_DHCP_CLASS_IDENTIFIER
; /* 60 */
182 DHCPOpStart
.DhcpRequestedOptions
.Data
._OP_DHCP_TFTP_SERVER_NAME
= OP_DHCP_TFTP_SERVER_NAME
; /* 66 */
183 DHCPOpStart
.DhcpRequestedOptions
.Data
._OP_DHCP_BOOTFILE
= OP_DHCP_BOOTFILE
; /* 67 */
184 DHCPOpStart
.DhcpRequestedOptions
.Data
._OP_DHCP_PLATFORM_ID
= OP_DHCP_PLATFORM_ID
; /* 97 */
185 DHCPOpStart
.DhcpRequestedOptions
.Data
.VendorOption128
= 128;
186 DHCPOpStart
.DhcpRequestedOptions
.Data
.VendorOption129
= 129;
187 DHCPOpStart
.DhcpRequestedOptions
.Data
.VendorOption130
= 130;
188 DHCPOpStart
.DhcpRequestedOptions
.Data
.VendorOption131
= 131;
189 DHCPOpStart
.DhcpRequestedOptions
.Data
.VendorOption132
= 132;
190 DHCPOpStart
.DhcpRequestedOptions
.Data
.VendorOption133
= 133, DHCPOpStart
.DhcpRequestedOptions
.Data
.VendorOption134
= 134;
191 DHCPOpStart
.DhcpRequestedOptions
.Data
.VendorOption135
= 135;
192 DHCPOpStart
.DhcpPlatformId
.Header
.OpCode
= OP_DHCP_PLATFORM_ID
;
193 DHCPOpStart
.DhcpPlatformId
.Header
.Length
= DHCPV4_OPTION_LENGTH (DHCPV4_OP_PLATFORM_ID
);
194 DHCPOpStart
.DhcpNetworkInterface
.Header
.OpCode
= OP_DHCP_NETWORK_ARCH
;
195 DHCPOpStart
.DhcpNetworkInterface
.Header
.Length
= DHCPV4_OPTION_LENGTH (DHCPV4_OP_NETWORK_INTERFACE
);
196 DHCPOpStart
.DhcpNetworkInterface
.Type
= 0;
197 DHCPOpStart
.DhcpNetworkInterface
.MajorVersion
= 0;
198 DHCPOpStart
.DhcpNetworkInterface
.MinorVersion
= 0;
199 DHCPOpStart
.DhcpClientArchitecture
.Header
.OpCode
= OP_DHCP_SYSTEM_ARCH
;
200 DHCPOpStart
.DhcpClientArchitecture
.Header
.Length
= DHCPV4_OPTION_LENGTH (DHCPV4_OP_ARCHITECTURE_TYPE
);
201 DHCPOpStart
.DhcpClientArchitecture
.Type
= HTONS (SYS_ARCH
);
202 DHCPOpStart
.DhcpClassIdentifier
.Header
.OpCode
= OP_DHCP_CLASS_IDENTIFIER
;
203 DHCPOpStart
.DhcpClassIdentifier
.Header
.Length
= sizeof (DHCPV4_CLASS_ID_DATA
);
205 DHCPOpStart
.DhcpClassIdentifier
.Data
.ClassIdentifier
,
207 sizeof ("PXEClient:")
209 CopyMem (DHCPOpStart
.DhcpClassIdentifier
.Data
.Lit2
, "Arch:", sizeof ("Arch:"));
211 DHCPOpStart
.DhcpClassIdentifier
.Data
.ArchitectureType
,
215 CopyMem (DHCPOpStart
.DhcpClassIdentifier
.Data
.Lit3
, ":", sizeof (":"));
216 CopyMem (DHCPOpStart
.DhcpClassIdentifier
.Data
.InterfaceName
, "XXXX", sizeof ("XXXX"));
217 CopyMem (DHCPOpStart
.DhcpClassIdentifier
.Data
.Lit4
, ":", sizeof (":"));
218 CopyMem (DHCPOpStart
.DhcpClassIdentifier
.Data
.UndiMajor
, "yyy", sizeof ("yyy"));
219 CopyMem (DHCPOpStart
.DhcpClassIdentifier
.Data
.UndiMinor
, "xxx", sizeof ("xxx"));
220 DHCPOpStart
.End
[0] = OP_END
;
223 /* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
226 // DHCPDECLINE option structure
228 struct opdeclinestr
{
230 DHCPV4_OP_MESSAGE_TYPE DhcpMessageType
;
231 struct requestopendstr OpDeclineEnd
;
234 #define DHCPDECLINEoptions (*(struct opdeclinestr *) DHCPV4_TRANSMIT_BUFFER.options)
237 // DHCPRELEASE option structure
239 struct opreleasestr
{
241 DHCPV4_OP_MESSAGE_TYPE DhcpMessageType
;
242 DHCPV4_OP_SERVER_IP DhcServerIpPtr
;
246 #define DHCPRELEASEoptions (*(struct opreleasestr *) DHCPV4_TRANSMIT_BUFFER.options)
249 // array of PXE vendor options in which we are interested
250 // value 0 -> not of interest, else value is index into PXE OPTION array
251 // option values from 1 to MAX_OUR_PXE_OPT
253 STATIC UINT8 ourPXEopts
[MAX_OUR_PXE_OPT
] = {
254 VEND_PXE_MTFTP_IP_IX
, // multicast IP address of bootfile for MTFTP listen
255 VEND_PXE_MTFTP_CPORT_IX
, // UDP Port to monitor for MTFTP responses - Intel order
256 VEND_PXE_MTFTP_SPORT_IX
, // Server UDP Port for MTFTP open - Intel order
257 VEND_PXE_MTFTP_TMOUT_IX
, // Listen timeout - secs
258 VEND_PXE_MTFTP_DELAY_IX
, // Transmission timeout - secs
259 VEND_PXE_DISCOVERY_CONTROL_IX
, // bit field
260 VEND_PXE_DISCOVERY_MCAST_ADDR_IX
, // boot server discovery multicast address
261 VEND_PXE_BOOT_SERVERS_IX
, // list of boot servers of form tp(2) cnt(1) ips[cnt]
262 VEND_PXE_BOOT_MENU_IX
,
263 VEND_PXE_BOOT_PROMPT_IX
,
264 VEND_PXE_MCAST_ADDRS_ALLOC_IX
, // not used by client
265 VEND_PXE_CREDENTIAL_TYPES_IX
,
266 VEND_13_IX
, // not used by client
267 VEND_14_IX
, // not used by client
268 VEND_15_IX
, // not used by client
269 VEND_16_IX
, // not used by client
270 VEND_17_IX
, // not used by client
271 VEND_18_IX
, // not used by client
272 VEND_19_IX
, // not used by client
273 VEND_20_IX
, // not used by client
274 VEND_21_IX
, // not used by client
275 VEND_22_IX
, // not used by client
276 VEND_23_IX
, // not used by client
277 VEND_24_IX
, // not used by client
278 VEND_25_IX
, // not used by client
279 VEND_26_IX
, // not used by client
280 VEND_27_IX
, // not used by client
281 VEND_28_IX
, // not used by client
282 VEND_29_IX
, // not used by client
283 VEND_30_IX
, // not used by client
284 VEND_31_IX
, // not used by client
285 VEND_32_IX
, // not used by client
286 VEND_33_IX
, // not used by client
287 VEND_34_IX
, // not used by client
288 VEND_35_IX
, // not used by client
289 VEND_36_IX
, // not used by client
290 VEND_37_IX
, // not used by client
291 VEND_38_IX
, // not used by client
292 VEND_39_IX
, // not used by client
293 VEND_40_IX
, // not used by client
294 VEND_41_IX
, // not used by client
295 VEND_42_IX
, // not used by client
296 VEND_43_IX
, // not used by client
297 VEND_44_IX
, // not used by client
298 VEND_45_IX
, // not used by client
299 VEND_46_IX
, // not used by client
300 VEND_47_IX
, // not used by client
301 VEND_48_IX
, // not used by client
302 VEND_49_IX
, // not used by client
303 VEND_50_IX
, // not used by client
304 VEND_51_IX
, // not used by client
305 VEND_52_IX
, // not used by client
306 VEND_53_IX
, // not used by client
307 VEND_54_IX
, // not used by client
308 VEND_55_IX
, // not used by client
309 VEND_56_IX
, // not used by client
310 VEND_57_IX
, // not used by client
311 VEND_58_IX
, // not used by client
312 VEND_59_IX
, // not used by client
313 VEND_60_IX
, // not used by client
314 VEND_61_IX
, // not used by client
315 VEND_62_IX
, // not used by client
316 VEND_63_IX
, // not used by client
317 VEND_64_IX
, // not used by client
318 VEND_65_IX
, // not used by client
319 VEND_66_IX
, // not used by client
320 VEND_67_IX
, // not used by client
321 VEND_68_IX
, // not used by client
322 VEND_69_IX
, // not used by client
323 VEND_70_IX
, // not used by client
324 VEND_PXE_BOOT_ITEM_IX
327 /* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
330 // array of options in which we are interested
331 // value 0 -> not of interest, else value is index into OPTION array
332 // option values from 1 to MAX_OUR_OPT
334 STATIC UINT8 OurDhcpOptions
[MAX_OUR_OPT
] = {
335 OP_SUBNET_MASK_IX
, // OP_SUBNET_MASK 1 // data is the subnet mask
336 OP_TIME_OFFSET_IX
, // OP_TIME_OFFSET 2 // data is the time offset of subnet to UTC in seconds
337 OP_ROUTER_LIST_IX
, // OP_ROUTER_LIST 3 // list of routers on subnet
338 OP_TIME_SERVERS_IX
, // OP_TIME_SERVERS 4 // list of time servers available
339 OP_NAME_SERVERS_IX
, // OP_NAME_SERVERS 5 // list of name servers available
340 OP_DNS_SERVERS_IX
, // OP_DNS_SERVERS 6 // list of DNS servers available
341 OP_LOG_SERVERS_IX
, // OP_LOG_SERVERS 7
342 OP_COOKIE_SERVERS_IX
, // OP_COOKIE_SERVERS 8
343 OP_LPR_SREVERS_IX
, // OP_LPR_SREVERS 9
344 OP_IMPRESS_SERVERS_IX
, // OP_IMPRESS_SERVERS 10
345 OP_RES_LOC_SERVERS_IX
, // OP_RES_LOC_SERVERS 11
346 OP_HOST_NAME_IX
, // OP_HOST_NAME 12 // client name
347 OP_BOOT_FILE_SZ_IX
, // OP_BOOT_FILE_SZ 13 // number of 512 blocks of boot file
348 OP_DUMP_FILE_IX
, // OP_DUMP_FILE 14 // path name of dump file if client crashes
349 OP_DOMAIN_NAME_IX
, // OP_DOMAIN_NAME 15 // domain name to use
350 OP_SWAP_SERVER_IX
, // OP_SWAP_SERVER 16
351 OP_ROOT_PATH_IX
, // OP_ROOT_PATH 17 // path name containing root disk
352 OP_EXTENSION_PATH_IX
, // OP_EXTENSION_PATH 18 // name of TFTP downloadable file of form of OP
353 OP_IP_FORWARDING_IX
, // OP_IP_FORWARDING 19 // enable/disable IP packet forwarding
354 OP_NON_LOCAL_SRC_RTE_IX
, // OP_NON_LOCAL_SRC_RTE 20 // enable/disable non local source routing
355 OP_POLICY_FILTER_IX
, // OP_POLICY_FILTER 21 // policy filters for non local source routing
356 OP_MAX_DATAGRAM_SZ_IX
, // OP_MAX_DATAGRAM_SZ 22 // maximum datagram reassembly size
357 OP_DEFAULT_TTL_IX
, // OP_DEFAULT_TTL 23 // default IP time to live
358 OP_MTU_AGING_TIMEOUT_IX
, // OP_MTU_AGING_TIMEOUT 24
359 OP_MTU_SIZES_IX
, // OP_MTU_SIZES 25
360 OP_MTU_TO_USE_IX
, // OP_MTU_TO_USE 26
361 OP_ALL_SUBNETS_LOCAL_IX
, // OP_ALL_SUBNETS_LOCAL 27
362 OP_BROADCAST_ADD_IX
, // OP_BROADCAST_ADD 28 // broadcast address used on subnet
363 OP_PERFORM_MASK_DISCOVERY_IX
, // OP_PERFORM_MASK_DISCOVERY 29 // perform mask discovery using ICMP
364 OP_RESPOND_TO_MASK_REQ_IX
, // OP_RESPOND_TO_MASK_REQ 30 // respond to subnet mask requests using ICMP
365 OP_PERFORM_ROUTER_DISCOVERY_IX
, // OP_PERFORM_ROUTER_DISCOVERY 31
366 OP_ROUTER_SOLICIT_ADDRESS_IX
, // OP_ROUTER_SOLICIT_ADDRESS 32
367 OP_STATIC_ROUTER_LIST_IX
, // OP_STATIC_ROUTER_LIST 33 // list of dest/route pairs
368 OP_USE_ARP_TRAILERS_IX
, // OP_USE_ARP_TRAILERS 34
369 OP_ARP_CACHE_TIMEOUT_IX
, // OP_ARP_CACHE_TIMEOUT 35
370 OP_ETHERNET_ENCAPSULATION_IX
, // OP_ETHERNET_ENCAPSULATION 36 // 0 -> RFC 894, 1 -> IEEE 802.3 (RFC 1042)
371 OP_TCP_DEFAULT_TTL_IX
, // OP_TCP_DEFAULT_TTL 37 // default time to live when sending TCP segments
372 OP_TCP_KEEP_ALIVE_INT_IX
, // OP_TCP_KEEP_ALIVE_INT 38 // keep alive interval in seconds
373 OP_KEEP_ALIVE_GARBAGE_IX
, // OP_KEEP_ALIVE_GARBAGE 39
374 OP_NIS_DOMAIN_NAME_IX
, // OP_NIS_DOMAIN_NAME 40
375 OP_NIS_SERVERS_IX
, // OP_NIS_SERVERS 41
376 OP_NTP_SERVERS_IX
, // OP_NTP_SERVERS 42
377 OP_VENDOR_SPECIFIC_IX
, // OP_VENDOR_SPECIFIC 43
378 OP_NBNS_SERVERS_IX
, // OP_NBNS_SERVERS 44
379 OP_NBDD_SERVERS_IX
, // OP_NBDD_SERVERS 45
380 OP_NETBIOS_NODE_TYPE_IX
, // OP_NETBIOS_NODE_TYPE 46
381 OP_NETBIOS_SCOPE_IX
, // OP_NETBIOS_SCOPE 47
382 OP_XWINDOW_SYSTEM_FONT_SERVERS_IX
, // OP_XWINDOW_SYSTEM_FONT_SERVERS 48
383 OP_XWINDOW_SYSTEM_DISPLAY_MANAGERS_IX
, // OP_XWINDOW_SYSTEM_DISPLAY_MANAGERS 49
384 OP_DHCP_REQ_IP_ADD_IX
, // OP_DHCP_REQ_IP_ADD 50 // requested IP address - in DHCPDISCOVER
385 OP_DHCP_LEASE_TIME_IX
, // OP_DHCP_LEASE_TIME 51 // lease time requested/granted
386 OP_DHCP_OPTION_OVERLOAD_IX
, // OP_DHCP_OPTION_OVERLOAD 52 // file/server name/both used to hold options
387 OP_DHCP_MESSAGE_TYPE_IX
, // OP_DHCP_MESSAGE_TYPE 53 // message type
388 OP_DHCP_SERVER_IP_IX
, // OP_DHCP_SERVER_IP 54 // IP of server
389 OP_DHCP_PARM_REQ_LIST_IX
, // OP_DHCP_PARM_REQ_LIST 55 // list of requested parameters
390 OP_DHCP_ERROR_MESSAGE_IX
, // OP_DHCP_ERROR_MESSAGE 56 // in DHCPNAK or DECLINE messages
391 OP_DHCP_MAX_MESSAGE_SZ_IX
, // OP_DHCP_MAX_MESSAGE_SZ 57 // maximum DHCP message size client will accept
392 OP_DHCP_RENEWAL_TIME_IX
, // OP_DHCP_RENEWAL_TIME 58 // time in seconds before transitioning to RENEWING state
393 OP_DHCP_REBINDING_TIME_IX
, // OP_DHCP_REBINDING_TIME 59 // time in seconds before transitioning to REBINDING state
394 OP_DHCP_CLASS_IDENTIFIER_IX
, // OP_DHCP_CLASS_IDENTIFIER 60
395 OP_DHCP_CLIENT_IDENTIFIER_IX
, // OP_DHCP_CLIENT_IDENTIFIER 61
396 OP_RESERVED62_IX
, // OP_RESERVED62
397 OP_RESERVED63_IX
, // OP_RESERVED63
398 OP_NISPLUS_DOMAIN_NAME_IX
, // OP_NISPLUS_DOMAIN_NAME 64
399 OP_NISPLUS_SERVERS_IX
, // OP_NISPLUS_SERVERS 65
400 OP_DHCP_TFTP_SERVER_NAME_IX
, // OP_DHCP_TFTP_SERVER_NAME 66
401 OP_DHCP_BOOTFILE_IX
// OP_DHCP_BOOTFILE 67
404 #define RxBuf ((DHCP_RECEIVE_BUFFER *) (Private->ReceiveBuffers))
408 /* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
410 PxeBcLibGetSmbiosString (
411 IN SMBIOS_STRUCTURE_POINTER
*Smbios
,
412 IN UINT16 StringNumber
416 Return SMBIOS string given the string number.
419 Smbios - Pointer to SMBIOS structure
420 StringNumber - String number to return. 0 is used to skip all strings and
421 point to the next SMBIOS structure.
424 Pointer to string, or pointer to next SMBIOS strcuture if StringNumber == 0
431 // Skip over formatted section
433 String
= (CHAR8
*) (Smbios
->Raw
+ Smbios
->Hdr
->Length
);
436 // Look through unformated section
438 for (Index
= 1; Index
<= StringNumber
|| StringNumber
== 0; Index
++) {
439 if (StringNumber
== Index
) {
445 for (; *String
!= 0; String
++)
451 // If double NULL then we are done.
452 // Return pointer to next structure in Smbios.
453 // if you pass in a 0 you will always get here
455 Smbios
->Raw
= (UINT8
*)++String
;
464 PxeBcLibGetSmbiosSystemGuidAndSerialNumber (
465 IN EFI_GUID
*SystemGuid
,
466 OUT CHAR8
**SystemSerialNumber
471 This function gets system guid and serial number from the smbios table
474 SystemGuid - The pointer of returned system guid
475 SystemSerialNumber - The pointer of returned system serial number
478 EFI_SUCCESS - Successfully get the system guid and system serial number
479 EFI_NOT_FOUND - Not find the SMBIOS table
483 SMBIOS_STRUCTURE_TABLE
*SmbiosTable
;
484 SMBIOS_STRUCTURE_POINTER Smbios
;
485 SMBIOS_STRUCTURE_POINTER SmbiosEnd
;
488 Status
= EfiGetSystemConfigurationTable (&gEfiSmbiosTableGuid
, (VOID
**) &SmbiosTable
);
490 if (EFI_ERROR (Status
)) {
491 return EFI_NOT_FOUND
;
494 Smbios
.Hdr
= (SMBIOS_HEADER
*) (UINTN
) SmbiosTable
->TableAddress
;
495 SmbiosEnd
.Raw
= (UINT8
*) (UINTN
) (SmbiosTable
->TableAddress
+ SmbiosTable
->TableLength
);
497 for (Index
= 0; Index
< SmbiosTable
->TableLength
; Index
++) {
498 if (Smbios
.Hdr
->Type
== 1) {
499 if (Smbios
.Hdr
->Length
< 0x19) {
501 // Older version did not support Guid and Serial number
506 // SMBIOS tables are byte packed so we need to do a byte copy to
507 // prevend alignment faults on Itanium-based platform.
509 CopyMem (SystemGuid
, &Smbios
.Type1
->Uuid
, sizeof (EFI_GUID
));
510 *SystemSerialNumber
= PxeBcLibGetSmbiosString (&Smbios
, Smbios
.Type1
->SerialNumber
);
515 // Make Smbios point to the next record
517 PxeBcLibGetSmbiosString (&Smbios
, 0);
519 if (Smbios
.Raw
>= SmbiosEnd
.Raw
) {
521 // SMBIOS 2.1 incorrectly stated the length of SmbiosTable as 0x1e.
522 // given this we must double check against the lenght of
532 /* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
535 // add router list to list
540 PXE_BASECODE_DEVICE
*Private
,
541 DHCPV4_OP_IP_LIST
*IpListPtr
544 EFI_IP_ADDRESS TmpIp
;
548 if (IpListPtr
== NULL
) {
552 for (Index
= 0, num
= IpListPtr
->Header
.Length
>> 2; Index
< num
; ++Index
) {
553 CopyMem (&TmpIp
, &IpListPtr
->IpList
[Index
], 4);
554 Ip4AddRouter (Private
, &TmpIp
);
558 /* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
561 // send ARP for our IP - fail if someone has it
566 PXE_BASECODE_DEVICE
*Private
569 EFI_MAC_ADDRESS DestMac
;
570 EFI_STATUS EfiStatus
;
572 ZeroMem (&DestMac
, sizeof DestMac
);
574 if (GetHwAddr(Private
, (EFI_IP_ADDRESS
*)&DHCP_REQ_OPTIONS
.OpReqIP
.Ip
, (EFI_MAC_ADDRESS
*)&DestMac
)
575 || DoArp(Private
, (EFI_IP_ADDRESS
*)&DHCP_REQ_OPTIONS
.OpReqIP
.Ip
, (EFI_MAC_ADDRESS
*)&DestMac
) == EFI_SUCCESS
) {
576 return FALSE
; // somebody else has this IP
580 (EFI_IPv4_ADDRESS
*) &Private
->EfiBc
.Mode
->StationIp
,
581 &DHCP_REQ_OPTIONS
.OpReqIP
.Ip
,
582 sizeof (EFI_IPv4_ADDRESS
)
585 Private
->GoodStationIp
= TRUE
;
587 if (!Private
->UseIgmpv1Reporting
) {
591 if (Private
->Igmpv1TimeoutEvent
!= NULL
) {
595 EfiStatus
= gBS
->CreateEvent (
600 &Private
->Igmpv1TimeoutEvent
603 if (EFI_ERROR (EfiStatus
)) {
604 Private
->Igmpv1TimeoutEvent
= NULL
;
608 EfiStatus
= gBS
->SetTimer (
609 Private
->Igmpv1TimeoutEvent
,
611 (UINT64
) V1ROUTER_PRESENT_TIMEOUT
* 10000000
614 if (EFI_ERROR (EfiStatus
)) {
615 gBS
->CloseEvent (Private
->Igmpv1TimeoutEvent
);
616 Private
->Igmpv1TimeoutEvent
= NULL
;
622 /* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
626 PXE_BASECODE_DEVICE
*Private
,
627 DHCP_RECEIVE_BUFFER
*RxBufPtr
630 Ip4AddRouter (Private
, &RxBufPtr
->u
.Dhcpv4
.giaddr
);
634 (DHCPV4_OP_IP_LIST
*) RxBufPtr
->OpAdds
.PktOptAdds
[OP_ROUTER_LIST_IX
- 1]
638 /* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
642 PXE_BASECODE_DEVICE
*Private
,
643 EFI_IP_ADDRESS
*ServerIpPtr
,
644 EFI_PXE_BASE_CODE_UDP_PORT
*ServerPortPtr
,
645 EFI_IP_ADDRESS
*ClientIpPtr
,
646 EFI_PXE_BASE_CODE_UDP_PORT
*ClientPortPtr
651 Len
= sizeof DHCPV4_TRANSMIT_BUFFER
;
655 EFI_PXE_BASE_CODE_UDP_OPFLAGS_MAY_FRAGMENT
,
664 Private
->TransmitBuffer
668 /* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
671 // initialize the DHCP structure
680 PXE_BASECODE_DEVICE
*Private
685 CHAR8
*SystemSerialNumber
;
686 EFI_PXE_BASE_CODE_MODE
*PxebcMode
;
688 PxebcMode
= Private
->EfiBc
.Mode
;
690 ZeroMem (&DHCPV4_TRANSMIT_BUFFER
, sizeof (DHCPV4_STRUCT
));
691 DHCPV4_TRANSMIT_BUFFER
.op
= BOOTP_REQUEST
;
692 DHCPV4_TRANSMIT_BUFFER
.htype
= Private
->SimpleNetwork
->Mode
->IfType
;
693 DHCPV4_TRANSMIT_BUFFER
.flags
= HTONS (DHCP_BROADCAST_FLAG
);
694 CopyMem (&DHCPV4_OPTIONS_BUFFER
, (VOID
*) &DHCPOpStart
, sizeof (DHCPOpStart
));
697 // default to hardware address
699 HwAddrLen
= Private
->SimpleNetwork
->Mode
->HwAddressSize
;
701 if (HwAddrLen
> sizeof DHCPV4_TRANSMIT_BUFFER
.chaddr
) {
702 HwAddrLen
= sizeof DHCPV4_TRANSMIT_BUFFER
.chaddr
;
705 String
= (UINT8
*) &Private
->SimpleNetwork
->Mode
->CurrentAddress
;
707 if (PxeBcLibGetSmbiosSystemGuidAndSerialNumber (
708 (EFI_GUID
*) DHCPV4_OPTIONS_BUFFER
.DhcpPlatformId
.Guid
,
711 if (PxebcMode
->SendGUID
) {
712 HwAddrLen
= sizeof (EFI_GUID
);
713 String
= (UINT8
*) DHCPV4_OPTIONS_BUFFER
.DhcpPlatformId
.Guid
;
717 // GUID not yet set - send all 0xff's to show programable (via SetVariable)
718 // SetMem(DHCPV4_OPTIONS_BUFFER.DhcpPlatformId.Guid, sizeof(EFI_GUID), 0xff);
719 // GUID not yet set - send all 0's to show not programable
721 ZeroMem (DHCPV4_OPTIONS_BUFFER
.DhcpPlatformId
.Guid
, sizeof (EFI_GUID
));
724 DHCPV4_TRANSMIT_BUFFER
.hlen
= (UINT8
) HwAddrLen
;
725 CopyMem (DHCPV4_TRANSMIT_BUFFER
.chaddr
, String
, HwAddrLen
);
729 (UINT8
*) DHCPV4_OPTIONS_BUFFER
.DhcpClassIdentifier
.Data
.ArchitectureType
,
730 sizeof DHCPV4_OPTIONS_BUFFER
.DhcpClassIdentifier
.Data
.ArchitectureType
733 DHCPV4_OPTIONS_BUFFER
.DhcpNetworkInterface
.Type
= Private
->NiiPtr
->Type
;
734 DHCPV4_OPTIONS_BUFFER
.DhcpNetworkInterface
.MajorVersion
= Private
->NiiPtr
->MajorVer
;
735 DHCPV4_OPTIONS_BUFFER
.DhcpNetworkInterface
.MinorVersion
= Private
->NiiPtr
->MinorVer
;
737 *(C4Str
*) DHCPV4_OPTIONS_BUFFER
.DhcpClassIdentifier
.Data
.InterfaceName
= *(C4Str
*) Private
->NiiPtr
->StringId
;
740 DHCPV4_OPTIONS_BUFFER
.DhcpNetworkInterface
.MajorVersion
,
741 (UINT8
*) DHCPV4_OPTIONS_BUFFER
.DhcpClassIdentifier
.Data
.UndiMajor
,
742 sizeof DHCPV4_OPTIONS_BUFFER
.DhcpClassIdentifier
.Data
.UndiMajor
746 DHCPV4_OPTIONS_BUFFER
.DhcpNetworkInterface
.MinorVersion
,
747 (UINT8
*) DHCPV4_OPTIONS_BUFFER
.DhcpClassIdentifier
.Data
.UndiMinor
,
748 sizeof DHCPV4_OPTIONS_BUFFER
.DhcpClassIdentifier
.Data
.UndiMinor
752 /* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
756 DHCP_RECEIVE_BUFFER
*RxBufPtr
,
769 for (EndPtr
= ptr
+ Len
; ptr
< EndPtr
; ptr
+= Len
+ 2) {
782 LocalPtr
.BytePtr
= ptr
;
783 if (Op
<= MAX_OUR_PXE_OPT
) {
784 Index
= ourPXEopts
[Op
- 1];
786 RxBufPtr
->OpAdds
.PxeOptAdds
[Index
- 1] = LocalPtr
.OpPtr
;
787 status
|= 1 << Index
;
788 if (Index
== VEND_PXE_BOOT_ITEM
&& LocalPtr
.BootItem
->Header
.Length
== 3) {
789 RxBufPtr
->OpAdds
.Status
|= USE_THREE_BYTE
;
800 /* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
804 DHCP_RECEIVE_BUFFER
*RxBufPtr
,
814 for (EndPtr
= ptr
+ Len
; ptr
< EndPtr
; ptr
+= Len
+ 2) {
827 LocalPtr
.BytePtr
= ptr
;
828 if (Op
<= MAX_OUR_OPT
) {
829 Index
= OurDhcpOptions
[Op
- 1];
831 RxBufPtr
->OpAdds
.PktOptAdds
[Index
- 1] = LocalPtr
.OpPtr
;
832 if (Index
== OP_VENDOR_SPECIFIC_IX
) {
834 status
= DecodePxeOptions (
836 (UINT8
*) LocalPtr
.VendorOptions
->VendorOptions
,
837 LocalPtr
.VendorOptions
->Header
.Length
840 RxBufPtr
->OpAdds
.Status
|= PXE_TYPE
;
842 // check for all the MTFTP info options present - any missing is a nogo
844 if ((status
& WfM11a_OPTS
) == WfM11a_OPTS
) {
845 RxBufPtr
->OpAdds
.Status
|= WfM11a_TYPE
;
848 if (status
& DISCOVER_OPTS
) {
849 RxBufPtr
->OpAdds
.Status
|= DISCOVER_TYPE
;
852 if (status
& CREDENTIALS_OPT
) {
853 RxBufPtr
->OpAdds
.Status
|= CREDENTIALS_TYPE
;
864 /* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
867 DHCP_RECEIVE_BUFFER
*RxBufPtr
,
876 SetMem (&RxBufPtr
->OpAdds
, sizeof RxBufPtr
->OpAdds
, 0);
880 RxBufPtr
->u
.Dhcpv4
.options
+ 4,
881 Len
- (sizeof RxBufPtr
->u
.Dhcpv4
- sizeof RxBufPtr
->u
.Dhcpv4
.options
+ 4)
884 LocalPtr
.OpPtr
= RxBufPtr
->OpAdds
.PktOptAdds
[OP_DHCP_OPTION_OVERLOAD_IX
- 1];
886 if ((LocalPtr
.OpPtr
) && (LocalPtr
.Overload
->Overload
& OVLD_SRVR_NAME
)) {
887 DecodeOptions (RxBufPtr
, RxBufPtr
->u
.Dhcpv4
.sname
, sizeof RxBufPtr
->u
.Dhcpv4
.sname
);
890 if (LocalPtr
.OpPtr
&& (LocalPtr
.Overload
->Overload
& OVLD_FILE
)) {
891 DecodeOptions (RxBufPtr
, RxBufPtr
->u
.Dhcpv4
.file
, sizeof RxBufPtr
->u
.Dhcpv4
.file
);
892 } else if (!RxBufPtr
->OpAdds
.PktOptAdds
[OP_DHCP_BOOTFILE_IX
- 1] && RxBufPtr
->u
.Dhcpv4
.file
[0]) {
893 RxBufPtr
->OpAdds
.PktOptAdds
[OP_DHCP_BOOTFILE_IX
- 1] = (DHCPV4_OP_STRUCT
*) (RxBufPtr
->u
.Dhcpv4
.file
- sizeof (DHCPV4_OP_HEADER
));
895 RxBufPtr
->OpAdds
.PktOptAdds
[OP_DHCP_BOOTFILE_IX
- 1]->Header
.Length
= (UINT8
) AsciiStrLen ((CHAR8
*)RxBufPtr
->u
.Dhcpv4
.file
);
898 LocalPtr
.OpPtr
= RxBufPtr
->OpAdds
.PktOptAdds
[OP_DHCP_CLASS_IDENTIFIER_IX
- 1];
900 if ((LocalPtr
.OpPtr
) &&
901 LocalPtr
.PxeClassStr
->Header
.Length
>= 9 &&
902 !CompareMem (LocalPtr
.PxeClassStr
->Class
, "PXEClient", 9)
904 RxBufPtr
->OpAdds
.Status
|= PXE_TYPE
;
908 /* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
912 PXE_BASECODE_DEVICE
*Private
,
917 DHCP_RECEIVE_BUFFER
*RxBufPtr
;
919 RxBufPtr
= &((DHCP_RECEIVE_BUFFER
*) Private
->DhcpPacketBuffer
)[PacketIndex
];
923 &RxBuf
[RxBufIndex
].u
.Dhcpv4
,
924 sizeof (RxBuf
[RxBufIndex
].u
.Dhcpv4
)
927 Parse (RxBufPtr
, sizeof RxBufPtr
->u
.ReceiveBuffer
);
930 /* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
934 PXE_BASECODE_DEVICE
*Private
,
938 Private
->EfiBc
.Mode
->ProxyOfferReceived
= TRUE
;
939 CopyParseRxBuf (Private
, RxBufIndex
, PXE_OFFER_INDEX
);
942 /* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
946 PXE_BASECODE_DEVICE
*Private
,
947 EFI_PXE_BASE_CODE_PACKET
*PacketPtr
,
948 EFI_PXE_BASE_CODE_PACKET
*NewPacketPtr
,
952 DHCP_RECEIVE_BUFFER
*DhcpRxBuf
;
954 DhcpRxBuf
= &((DHCP_RECEIVE_BUFFER
*) Private
->DhcpPacketBuffer
)[Index
];
957 (EFI_PXE_BASE_CODE_PACKET
*) &DhcpRxBuf
->u
.Dhcpv4
,
959 sizeof (*NewPacketPtr
)
962 CopyMem (&*PacketPtr
, &*NewPacketPtr
, sizeof (*NewPacketPtr
));
964 Parse (DhcpRxBuf
, sizeof DhcpRxBuf
->u
.ReceiveBuffer
);
967 /* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
970 DHCP_RECEIVE_BUFFER
*DhcpRxBuf
975 LocalPtr
.OpPtr
= DhcpRxBuf
->OpAdds
.PktOptAdds
[OP_DHCP_MESSAGE_TYPE_IX
- 1];
979 // if a DHCP type, must be DHCPOFFER and must have server id
984 (LocalPtr
.MessageType
->Type
== DHCPACK
) &&
985 DhcpRxBuf
->OpAdds
.PktOptAdds
[OP_DHCP_SERVER_IP_IX
- 1]
989 /* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
992 // if a discover type packet, make sure all required fields are present
996 DHCP_RECEIVE_BUFFER
*DhcpRxBuf
999 PXE_OP_SERVER_LIST
*BootServerOpPtr
;
1002 if ((DhcpRxBuf
->OpAdds
.Status
& DISCOVER_TYPE
) == 0) {
1006 LocalPtr
.OpPtr
= DhcpRxBuf
->OpAdds
.PxeOptAdds
[VEND_PXE_DISCOVERY_CONTROL_IX
- 1];
1008 if (LocalPtr
.OpPtr
== NULL
) {
1009 LocalPtr
.OpPtr
= (DHCPV4_OP_STRUCT
*) &DefaultDisCtl
;
1010 DhcpRxBuf
->OpAdds
.PxeOptAdds
[VEND_PXE_DISCOVERY_CONTROL_IX
- 1] = (DHCPV4_OP_STRUCT
*) &DefaultDisCtl
;
1013 // make sure all required fields are here
1014 // if mucticast enabled, need multicast address
1016 if (!(LocalPtr
.DiscoveryControl
->ControlBits
& DISABLE_MCAST
) &&
1017 (!DhcpRxBuf
->OpAdds
.PxeOptAdds
[VEND_PXE_DISCOVERY_MCAST_ADDR_IX
- 1] || !IS_MULTICAST (((DHCPV4_OP_STRUCT
*) DhcpRxBuf
->OpAdds
.PxeOptAdds
[VEND_PXE_DISCOVERY_MCAST_ADDR_IX
- 1])->Data
))
1021 // missing required field
1025 // if a list, it better be good
1027 BootServerOpPtr
= (PXE_OP_SERVER_LIST
*) DhcpRxBuf
->OpAdds
.PxeOptAdds
[VEND_PXE_BOOT_SERVERS_IX
- 1];
1029 if (BootServerOpPtr
!= NULL
) {
1030 PXE_SERVER_LIST
*BootServerListPtr
;
1032 INTN ServerEntryLen
;
1034 BootServerListPtr
= BootServerOpPtr
->ServerList
;
1035 ServerListLen
= BootServerOpPtr
->Header
.Length
;
1038 EFI_IPv4_ADDRESS
*IpListPtr
;
1041 IpCnt
= BootServerListPtr
->u
.Ipv4List
.IpCount
;
1043 ServerEntryLen
= sizeof (PXEV4_SERVER_LIST
) + 2 + (IpCnt
- 1) * sizeof (EFI_IPv4_ADDRESS
);
1045 if (ServerListLen
< ServerEntryLen
) {
1047 // missing required field
1052 IpListPtr
= BootServerListPtr
->u
.Ipv4List
.IpList
;
1055 if (IS_MULTICAST (IpListPtr
)) {
1057 // missing required field
1065 BootServerListPtr
= (PXE_SERVER_LIST
*) IpListPtr
;
1066 } while (ServerListLen
-= ServerEntryLen
);
1069 // else there must be a list if use list enabled or multicast and
1070 // broadcast disabled
1072 else if ((LocalPtr
.DiscoveryControl
->ControlBits
& USE_ACCEPT_LIST
) ||
1073 ((LocalPtr
.DiscoveryControl
->ControlBits
& (DISABLE_MCAST
| DISABLE_BCAST
)) == (DISABLE_MCAST
| DISABLE_BCAST
))
1076 // missing required field
1081 // if not USE_BOOTFILE or no bootfile given, must have menu stuff
1083 if (!(LocalPtr
.DiscoveryControl
->ControlBits
& USE_BOOTFILE
) ||
1084 !DhcpRxBuf
->OpAdds
.PktOptAdds
[OP_DHCP_BOOTFILE_IX
- 1]
1088 LocalPtr
.OpPtr
= DhcpRxBuf
->OpAdds
.PxeOptAdds
[VEND_PXE_BOOT_MENU_IX
- 1];
1090 if (LocalPtr
.OpPtr
== NULL
|| !DhcpRxBuf
->OpAdds
.PxeOptAdds
[VEND_PXE_BOOT_PROMPT_IX
- 1]) {
1092 // missing required field
1097 // make sure menu valid
1099 MenuLth
= LocalPtr
.BootMenu
->Header
.Length
;
1100 LocalPtr
.BootMenuItem
= LocalPtr
.BootMenu
->MenuItem
;
1105 MenuItemLen
= LocalPtr
.BootMenuItem
->DataLen
;
1107 if (MenuItemLen
== 0) {
1109 // missing required field
1114 MenuItemLen
+= sizeof (*LocalPtr
.BootMenuItem
) - sizeof (LocalPtr
.BootMenuItem
->Data
);
1116 MenuLth
-= MenuItemLen
;
1117 LocalPtr
.BytePtr
+= MenuItemLen
;
1118 } while (MenuLth
> 0);
1122 // missing required field
1128 if (!DhcpRxBuf
->OpAdds
.PxeOptAdds
[VEND_PXE_BOOT_ITEM_IX
- 1]) {
1129 DhcpRxBuf
->OpAdds
.PxeOptAdds
[VEND_PXE_BOOT_ITEM_IX
- 1] = (DHCPV4_OP_STRUCT
*) &DefaultBootItem
;
1135 /* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
1138 DHCP_RECEIVE_BUFFER
*RxBufPtr
1141 return (BOOLEAN
) (DHCPOfferAckEdit (RxBufPtr
) ? AckEdit (RxBufPtr
) : FALSE
);
1144 /* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
1151 PXE_BASECODE_DEVICE
*Private
,
1152 BOOLEAN (*ExtraEdit
)(DHCP_RECEIVE_BUFFER
*DhcpRxBuf
),
1153 UINT16 OpFlags
, // for Udp read
1154 EFI_IP_ADDRESS
*ServerIpPtr
,
1155 EFI_PXE_BASE_CODE_UDP_PORT
*ServerPortPtr
,
1156 EFI_IP_ADDRESS
*ClientIpPtr
,
1157 EFI_PXE_BASE_CODE_UDP_PORT
*ClientPortPtr
,
1158 DHCP_RECEIVE_BUFFER
*DhcpRxBuf
,
1159 EFI_EVENT TimeoutEvent
1162 Routine description:
1163 Wait for an OFFER/ACK packet.
1166 Private := Pointer to PxeBc interface
1167 ExtraEdit := Pointer to extra option checking function
1168 OpFlags := UdpRead() option flags
1179 EFI_IP_ADDRESS ServerIp
;
1180 EFI_STATUS StatCode
;
1185 // Wait until we get a UDP packet.
1187 ZeroMem (&ServerIp
, sizeof (EFI_IP_ADDRESS
));
1188 RxBufLen
= sizeof RxBuf
[0].u
.ReceiveBuffer
;
1190 if ((StatCode
= UdpRead (
1199 (UINTN
*) &RxBufLen
,
1200 &DhcpRxBuf
->u
.Dhcpv4
,
1202 )) != EFI_SUCCESS
) {
1203 if (StatCode
== EFI_TIMEOUT
) {
1204 StatCode
= EFI_NO_RESPONSE
;
1210 // got a packet - see if a good offer
1212 if (DhcpRxBuf
->u
.Dhcpv4
.op
!= BOOTP_REPLY
) {
1216 if (DhcpRxBuf
->u
.Dhcpv4
.xid
!= DHCPV4_TRANSMIT_BUFFER
.xid
) {
1220 if (*(UINT32
*) DHCPV4_TRANSMIT_BUFFER
.options
!= * (UINT32
*) DhcpRxBuf
->u
.Dhcpv4
.options
) {
1224 if (*(UINT8
*) &DhcpRxBuf
->u
.Dhcpv4
.yiaddr
> 223) {
1229 DhcpRxBuf
->u
.Dhcpv4
.chaddr
,
1230 DHCPV4_TRANSMIT_BUFFER
.chaddr
,
1231 sizeof DhcpRxBuf
->u
.Dhcpv4
.chaddr
1239 Parse (DhcpRxBuf
, RxBufLen
);
1241 if (!(*ExtraEdit
) (DhcpRxBuf
)) {
1245 // Good DHCP packet.
1247 StatCode
= EFI_SUCCESS
;
1254 /* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
1261 PXE_BASECODE_DEVICE
*Private
1264 EFI_IP_ADDRESS ClientIp
;
1265 EFI_IP_ADDRESS ServerIp
;
1266 EFI_STATUS StatCode
;
1267 EFI_EVENT TimeoutEvent
;
1274 ZeroMem (&ServerIp
, sizeof (EFI_IP_ADDRESS
));
1277 for (Index
= 0; Index
< (sizeof Private
->ServerCount
) / sizeof Private
->ServerCount
[0]; ++Index
) {
1278 Private
->ServerCount
[Index
] = 0;
1279 Private
->GotProxy
[Index
] = 0;
1282 Private
->GotBootp
= 0;
1284 // these we throw away
1286 Private
->GotProxy
[DHCP_ONLY_IX
] = 1;
1287 StatCode
= gBS
->CreateEvent (
1295 if (EFI_ERROR (StatCode
)) {
1299 StatCode
= gBS
->SetTimer (
1302 Private
->Timeout
* 10000000 + 1000000
1305 if (EFI_ERROR (StatCode
)) {
1306 gBS
->CloseEvent (TimeoutEvent
);
1313 DHCP_RECEIVE_BUFFER
*DhcpRxBuf
;
1316 DhcpRxBuf
= &RxBuf
[NumOffers
];
1319 StatCode
= GetOfferAck (
1322 EFI_PXE_BASE_CODE_UDP_OPFLAGS_ANY_SRC_IP
|
1323 EFI_PXE_BASE_CODE_UDP_OPFLAGS_ANY_DEST_IP
|
1324 EFI_PXE_BASE_CODE_UDP_OPFLAGS_ANY_SRC_PORT
,
1337 LocalPtr
.OpPtr
= DhcpRxBuf
->OpAdds
.PktOptAdds
[OP_DHCP_MESSAGE_TYPE_IX
- 1];
1340 // check type of offer
1342 if (LocalPtr
.OpPtr
== NULL
) {
1344 // bootp - we only need one and make sure has bootfile
1346 if (Private
->GotBootp
|| !DhcpRxBuf
->OpAdds
.PktOptAdds
[OP_DHCP_BOOTFILE_IX
- 1]) {
1350 Private
->GotBootp
= (UINT8
) (NumOffers
+ 1);
1353 // if a DHCP type, must be DHCPOFFER and must have server id
1355 else if (LocalPtr
.MessageType
->Type
!= DHCPOFFER
|| !DhcpRxBuf
->OpAdds
.PktOptAdds
[OP_DHCP_SERVER_IP_IX
- 1]) {
1361 // get type - PXE10, WfM11a, or BINL
1363 if (DhcpRxBuf
->OpAdds
.Status
& DISCOVER_TYPE
) {
1365 } else if (DhcpRxBuf
->OpAdds
.Status
& WfM11a_TYPE
) {
1367 // WfM - make sure it has a bootfile
1369 if (!DhcpRxBuf
->OpAdds
.PktOptAdds
[OP_DHCP_BOOTFILE_IX
- 1]) {
1375 TypeIx
= (DhcpRxBuf
->OpAdds
.Status
& PXE_TYPE
) ? BINL_IX
: DHCP_ONLY_IX
;
1378 // check DHCP or proxy
1380 if (DhcpRxBuf
->u
.Dhcpv4
.yiaddr
== 0) {
1382 // proxy - only need one of each type if not BINL
1383 // and must have at least PXE_TYPE
1385 if (TypeIx
== BINL_IX
) {
1386 Private
->BinlProxies
[Private
->GotProxy
[BINL_IX
]++] = (UINT8
) NumOffers
;
1387 } else if (Private
->GotProxy
[TypeIx
]) {
1390 Private
->GotProxy
[TypeIx
] = (UINT8
) (NumOffers
+ 1);
1393 Private
->OfferCount
[TypeIx
][Private
->ServerCount
[TypeIx
]++] = (UINT8
) NumOffers
;
1397 if (++NumOffers
== MAX_OFFERS
) {
1402 gBS
->CloseEvent (TimeoutEvent
);
1403 Private
->NumOffersReceived
= NumOffers
;
1405 return (Private
->NumOffersReceived
) ? EFI_SUCCESS
: EFI_NO_RESPONSE
;
1408 /* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
1416 PXE_BASECODE_DEVICE
*Private
1419 EFI_PXE_BASE_CODE_MODE
*PxebcMode
;
1422 PxebcMode
= Private
->EfiBc
.Mode
;
1423 SaveSecs
= DHCPV4_TRANSMIT_BUFFER
.secs
;
1425 DHCPV4_TRANSMIT_BUFFER
.secs
= 0;
1426 DHCPV4_TRANSMIT_BUFFER
.flags
= 0;
1428 DHCPV4_TRANSMIT_BUFFER
.options
+ sizeof (struct opdeclinestr
),
1429 sizeof (DHCPOpStart
) - sizeof (struct opdeclinestr
),
1432 DHCPDECLINEoptions
.DhcpMessageType
.Type
= DHCPDECLINE
;
1433 CopyMem (&DHCPDECLINEoptions
.OpDeclineEnd
, &DHCP_REQ_OPTIONS
, sizeof (struct requestopendstr
));
1434 // DHCPDECLINEoptions.OpDeclineEnd = DHCP_REQ_OPTIONS;
1437 EFI_IP_ADDRESS TmpIp
;
1439 CopyMem (&TmpIp
, &DHCP_REQ_OPTIONS
.DhcServerIpPtr
.Ip
, sizeof TmpIp
);
1445 &PxebcMode
->StationIp
,
1450 InitDhcpv4TxBuf (Private
);
1451 DHCPV4_TRANSMIT_BUFFER
.secs
= SaveSecs
;
1452 Private
->GoodStationIp
= FALSE
;
1455 /* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
1463 PXE_BASECODE_DEVICE
*Private
1466 EFI_PXE_BASE_CODE_MODE
*PxebcMode
;
1468 DHCPV4_OP_SERVER_IP
*Point
;
1470 PxebcMode
= Private
->EfiBc
.Mode
;
1471 SaveSecs
= DHCPV4_TRANSMIT_BUFFER
.secs
;
1472 DHCPV4_TRANSMIT_BUFFER
.secs
= 0;
1475 DHCPV4_TRANSMIT_BUFFER
.options
+ sizeof (struct opreleasestr
),
1476 sizeof (DHCPOpStart
) - sizeof (struct opreleasestr
),
1480 DHCPRELEASEoptions
.DhcpMessageType
.Type
= DHCPRELEASE
;
1481 Point
= (DHCPV4_OP_SERVER_IP
*) DHCPV4_ACK_BUFFER
.OpAdds
.PktOptAdds
[OP_DHCP_SERVER_IP_IX
- 1];
1483 &DHCPRELEASEoptions
.DhcServerIpPtr
,
1485 sizeof DHCPRELEASEoptions
.DhcServerIpPtr
1488 DHCPRELEASEoptions
.End
[0] = OP_END
;
1491 EFI_IP_ADDRESS TmpIp
;
1493 CopyMem (&TmpIp
, &DHCPRELEASEoptions
.DhcServerIpPtr
.Ip
, sizeof TmpIp
);
1499 &PxebcMode
->StationIp
,
1504 InitDhcpv4TxBuf (Private
);
1506 DHCPV4_TRANSMIT_BUFFER
.secs
= SaveSecs
;
1507 Private
->GoodStationIp
= FALSE
;
1511 /* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
1515 PXE_BASECODE_DEVICE
*Private
,
1516 EFI_IP_ADDRESS
*ServerIpPtr
1519 DHCP_RECEIVE_BUFFER
*DhcpRxBuf
;
1520 EFI_STATUS StatCode
;
1521 EFI_EVENT TimeoutEvent
;
1526 StatCode
= gBS
->CreateEvent (
1534 if (EFI_ERROR (StatCode
)) {
1538 StatCode
= gBS
->SetTimer (
1541 Private
->Timeout
* 10000000 + 1000000
1544 if (EFI_ERROR (StatCode
)) {
1545 gBS
->CloseEvent (TimeoutEvent
);
1551 DhcpRxBuf
= &PXE_BINL_BUFFER
;
1554 EFI_PXE_BASE_CODE_UDP_PORT BINLSrvPort
;
1561 EFI_PXE_BASE_CODE_UDP_OPFLAGS_ANY_SRC_PORT
,
1564 &Private
->EfiBc
.Mode
->StationIp
,
1565 &PSEUDO_DHCP_CLIENT_PORT
,
1572 // make sure from whom we wanted
1574 if (!DhcpRxBuf
->u
.Dhcpv4
.yiaddr
&& !CompareMem (
1576 &((DHCPV4_OP_SERVER_IP
*) DhcpRxBuf
->OpAdds
.PktOptAdds
[OP_DHCP_SERVER_IP_IX
- 1])->Ip
,
1577 sizeof (ServerIpPtr
->v4
)
1579 gBS
->CloseEvent (TimeoutEvent
);
1581 // got an ACK from server
1587 gBS
->CloseEvent (TimeoutEvent
);
1591 /* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
1594 // make sure we can get BINL
1595 // send DHCPREQUEST to PXE server
1600 PXE_BASECODE_DEVICE
*Private
,
1604 DHCP_RECEIVE_BUFFER
*DhcpRxBuf
;
1605 EFI_IP_ADDRESS ServerIp
;
1609 DhcpRxBuf
= &RxBuf
[OfferIx
];
1612 // send DHCP request
1613 // if fail return false
1616 ((EFI_IPv4_ADDRESS
*) &ServerIp
),
1617 &((DHCPV4_OP_SERVER_IP
*) DhcpRxBuf
->OpAdds
.PktOptAdds
[OP_DHCP_SERVER_IP_IX
- 1])->Ip
,
1618 sizeof (EFI_IPv4_ADDRESS
)
1622 // client IP address - filled in by client if it knows it
1625 ((EFI_IPv4_ADDRESS
*) &DHCPV4_TRANSMIT_BUFFER
.ciaddr
),
1626 &DHCP_REQ_OPTIONS
.OpReqIP
.Ip
,
1627 sizeof (EFI_IPv4_ADDRESS
)
1630 SetMem (&DHCP_REQ_OPTIONS
, sizeof DHCP_REQ_OPTIONS
, OP_PAD
);
1631 DHCPV4_TRANSMIT_BUFFER
.flags
= 0;
1632 DHCPV4_OPTIONS_BUFFER
.End
[0] = OP_END
;
1633 AddRouters (Private
, DhcpRxBuf
);
1634 SaveSecs
= DHCPV4_TRANSMIT_BUFFER
.secs
;
1636 for (Index
= 0; Index
< 3; Private
->TotalSeconds
= (UINT16
) (Private
->TotalSeconds
+ Private
->Timeout
), ++Index
) {
1637 DHCPV4_TRANSMIT_BUFFER
.secs
= HTONS (Private
->TotalSeconds
);
1640 // unicast DHCPREQUEST to PXE server
1645 &PseudoDhcpServerPort
,
1646 (EFI_IP_ADDRESS
*) &DHCPV4_TRANSMIT_BUFFER
.ciaddr
,
1647 &PSEUDO_DHCP_CLIENT_PORT
1652 if (!GetBINLAck (Private
, &ServerIp
)) {
1656 // early exit failures
1657 // make sure a good ACK
1659 if (!DHCPOfferAckEdit (&PXE_BINL_BUFFER
) || (
1660 !(PXE_BINL_BUFFER
.OpAdds
.Status
& DISCOVER_TYPE
) && !PXE_BINL_BUFFER
.OpAdds
.PktOptAdds
[OP_DHCP_BOOTFILE_IX
- 1]
1666 Private
->EfiBc
.Mode
->ProxyOfferReceived
= TRUE
;
1670 // failed - reset seconds field, etc.
1672 Private
->EfiBc
.Mode
->RouteTableEntries
= 0;
1676 DHCPV4_TRANSMIT_BUFFER
.secs
= SaveSecs
;
1680 /* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
1684 PXE_BASECODE_DEVICE
*Private
,
1688 if (TryBINL (Private
, OfferIx
)) {
1692 return Release (Private
);
1695 /* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
1698 TryFinishProxyBINL (
1699 PXE_BASECODE_DEVICE
*Private
1704 for (Index
= 0; Index
< Private
->GotProxy
[BINL_IX
]; ++Index
) {
1705 if (TryBINL (Private
, Private
->BinlProxies
[Index
])) {
1710 return Release (Private
);
1713 /* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
1716 // try to finish DORA - send DHCP request, wait for ACK, check with ARP
1721 PXE_BASECODE_DEVICE
*Private
,
1725 DHCP_RECEIVE_BUFFER
*DhcpRxBuf
;
1726 EFI_IP_ADDRESS ClientIp
;
1727 EFI_IP_ADDRESS ServerIp
;
1728 EFI_STATUS StatCode
;
1730 EFI_EVENT TimeoutEvent
;
1733 // send DHCP request
1734 // if fail return false
1736 DhcpRxBuf
= &DHCPV4_ACK_BUFFER
;
1737 DHCPV4_OPTIONS_BUFFER
.DhcpMessageType
.Type
= DHCPREQUEST
;
1738 CopyMem (&DHCP_REQ_OPTIONS
, &RequestOpEndStr
, sizeof (RequestOpEndStr
));
1739 // DHCP_REQ_OPTIONS = RequestOpEndStr;
1740 DHCP_REQ_OPTIONS
.OpReqIP
.Ip
= *(EFI_IPv4_ADDRESS
*) &RxBuf
[OfferIx
].u
.Dhcpv4
.yiaddr
;
1743 &DHCP_REQ_OPTIONS
.DhcServerIpPtr
.Ip
,
1744 &((DHCPV4_OP_SERVER_IP
*) RxBuf
[OfferIx
].OpAdds
.PktOptAdds
[OP_DHCP_SERVER_IP_IX
- 1])->Ip
,
1745 sizeof DHCP_REQ_OPTIONS
.DhcServerIpPtr
.Ip
1749 Private
->EfiBc
.Mode
->SubnetMask
.Addr
,
1755 // broadcast DHCPREQUEST
1761 (EFI_IP_ADDRESS
*) &DHCPV4_TRANSMIT_BUFFER
.ciaddr
,
1769 StatCode
= gBS
->CreateEvent (
1777 if (EFI_ERROR (StatCode
)) {
1781 StatCode
= gBS
->SetTimer (
1784 Private
->Timeout
* 10000000 + 1000000
1787 if (EFI_ERROR (StatCode
)) {
1788 gBS
->CloseEvent (TimeoutEvent
);
1798 EFI_PXE_BASE_CODE_UDP_OPFLAGS_ANY_DEST_IP
| EFI_PXE_BASE_CODE_UDP_OPFLAGS_ANY_SRC_IP
,
1809 // check type of response - need DHCPACK
1812 &DHCP_REQ_OPTIONS
.OpReqIP
.Ip
,
1813 &DhcpRxBuf
->u
.Dhcpv4
.yiaddr
,
1814 sizeof (EFI_IPv4_ADDRESS
)
1816 &DHCP_REQ_OPTIONS
.DhcServerIpPtr
.Ip
,
1817 &((DHCPV4_OP_SERVER_IP
*) DhcpRxBuf
->OpAdds
.PktOptAdds
[OP_DHCP_SERVER_IP_IX
- 1])->Ip
,
1818 sizeof (EFI_IPv4_ADDRESS
)
1824 // check with ARP that IP unused - good return true
1826 if (!SetStationIP (Private
)) {
1828 // fail - send DHCPDECLINE and return false
1830 DeclineOffer (Private
);
1834 LocalPtr
.OpPtr
= DHCPV4_ACK_BUFFER
.OpAdds
.PktOptAdds
[OP_SUBNET_MASK_IX
- 1];
1836 if (LocalPtr
.OpPtr
!= NULL
) {
1838 (EFI_IPv4_ADDRESS
*) &Private
->EfiBc
.Mode
->SubnetMask
,
1839 &LocalPtr
.SubnetMaskStr
->Ip
,
1840 sizeof (EFI_IPv4_ADDRESS
)
1844 AddRouters (Private
, DhcpRxBuf
);
1845 gBS
->CloseEvent (TimeoutEvent
);
1849 gBS
->CloseEvent (TimeoutEvent
);
1853 /* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
1856 // try a DHCP server of appropriate type
1861 PXE_BASECODE_DEVICE
*Private
,
1868 // go through the DHCP servers of the requested type
1870 for (Index
= 0; Index
< Private
->ServerCount
[TypeIx
]; ++Index
) {
1871 if (TryFinishDORA (Private
, Index
= Private
->OfferCount
[TypeIx
][Index
])) {
1872 if (TypeIx
== BINL_IX
&& !TryFinishBINL (Private
, Index
)) {
1883 /* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
1886 // try a DHCP only server and a proxy of appropriate type
1890 TryProxyFinishDORA (
1891 PXE_BASECODE_DEVICE
*Private
,
1897 if (!Private
->GotProxy
[TypeIx
]) {
1899 // no proxies of the type wanted
1904 // go through the DHCP only servers
1906 for (Index
= 0; Index
< Private
->ServerCount
[DHCP_ONLY_IX
]; ++Index
) {
1907 if (TryFinishDORA (Private
, Private
->OfferCount
[DHCP_ONLY_IX
][Index
])) {
1908 if (TypeIx
!= BINL_IX
) {
1909 CopyProxyRxBuf (Private
, Private
->GotProxy
[TypeIx
] - 1);
1910 } else if (!TryFinishProxyBINL (Private
)) {
1912 // if didn't work with this DHCP, won't work with any
1924 /* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
1927 // getting to the bottom of the barrel
1931 TryAnyWithBootfileFinishDORA (
1932 PXE_BASECODE_DEVICE
*Private
1936 // try a DHCP only server who has a bootfile
1941 for (Index
= 0; Index
< Private
->ServerCount
[DHCP_ONLY_IX
]; ++Index
) {
1944 offer
= Private
->OfferCount
[DHCP_ONLY_IX
][Index
];
1946 if (RxBuf
[offer
].OpAdds
.PktOptAdds
[OP_DHCP_BOOTFILE_IX
- 1] && TryFinishDORA (Private
, offer
)) {
1951 // really at bottom - see if be have any bootps
1953 if (!Private
->GotBootp
) {
1957 DHCP_REQ_OPTIONS
.OpReqIP
.Ip
= *(EFI_IPv4_ADDRESS
*) &RxBuf
[Private
->GotBootp
- 1].u
.Dhcpv4
.yiaddr
;
1959 if (!SetStationIP (Private
)) {
1963 // treat BOOTP response as DHCP ACK packet
1965 CopyParseRxBuf (Private
, Private
->GotBootp
- 1, DHCPV4_ACK_INDEX
);
1967 LocalPtr
.OpPtr
= RxBuf
[Private
->GotBootp
- 1].OpAdds
.PktOptAdds
[OP_SUBNET_MASK_IX
- 1];
1969 if (LocalPtr
.OpPtr
!= NULL
) {
1970 *(EFI_IPv4_ADDRESS
*) &Private
->EfiBc
.Mode
->SubnetMask
= LocalPtr
.SubnetMaskStr
->Ip
;
1976 /* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
1983 PXE_BASECODE_DEVICE
*Private
,
1987 EFI_PXE_BASE_CODE_IP_FILTER Filter
;
1988 EFI_STATUS StatCode
;
1991 Filter
.Filters
= EFI_PXE_BASE_CODE_IP_FILTER_STATION_IP
| EFI_PXE_BASE_CODE_IP_FILTER_BROADCAST
;
1994 Filter
.reserved
= 0;
1997 // set filter unicast or broadcast
1999 if ((StatCode
= IpFilter (Private
, &Filter
)) != EFI_SUCCESS
) {
2003 // seed random number with hardware address
2005 SeedRandom (Private
, *(UINT16
*) &Private
->SimpleNetwork
->Mode
->CurrentAddress
);
2007 for (Private
->Timeout
= 1;
2008 Private
->Timeout
< 17;
2009 Private
->TotalSeconds
= (UINT16
) (Private
->TotalSeconds
+ Private
->Timeout
), Private
->Timeout
<<= 1
2013 InitDhcpv4TxBuf (Private
);
2014 DHCPV4_TRANSMIT_BUFFER
.xid
= Random (Private
);
2015 DHCPV4_TRANSMIT_BUFFER
.secs
= HTONS (Private
->TotalSeconds
);
2018 // broadcast DHCPDISCOVER
2020 StatCode
= DoUdpWrite (
2024 (EFI_IP_ADDRESS
*) &DHCPV4_TRANSMIT_BUFFER
.ciaddr
,
2028 if (StatCode
!= EFI_SUCCESS
) {
2033 &Private
->EfiBc
.Mode
->DhcpDiscover
,
2034 (EFI_PXE_BASE_CODE_PACKET
*) &DHCPV4_TRANSMIT_BUFFER
,
2035 sizeof (EFI_PXE_BASE_CODE_PACKET
)
2041 if ((StatCode
= GetOffers (Private
)) != EFI_SUCCESS
) {
2042 if (StatCode
!= EFI_NO_RESPONSE
) {
2049 // select offer and reply DHCPREQUEST
2052 if (TryDHCPFinishDORA(Private
, PXE10_IX
) || // try DHCP with PXE10
2053 TryDHCPFinishDORA(Private
, WfM11a_IX
) || // no - try with WfM
2054 TryProxyFinishDORA(Private
, PXE10_IX
) || // no - try DHCP only and proxy with PXE10
2055 TryProxyFinishDORA(Private
, WfM11a_IX
) || // no - try DHCP only and proxy with WfM
2056 TryDHCPFinishDORA(Private
, BINL_IX
) || // no - try with WfM
2057 TryProxyFinishDORA(Private
, BINL_IX
) || // no - try DHCP only and proxy with PXE10
2058 TryAnyWithBootfileFinishDORA(Private
))
2068 NumOffers
= Private
->NumOffersReceived
;
2070 for (Index
= 0; Index
< NumOffers
; ++Index
) {
2074 if (!RxBuf
[Index
].u
.Dhcpv4
.yiaddr
) {
2078 // check if a bootp server
2080 if (!RxBuf
[Index
].OpAdds
.PktOptAdds
[OP_DHCP_MESSAGE_TYPE_IX
- 1]) {
2082 // it is - just check ARP
2084 if (!SetStationIP (Private
)) {
2089 // else check if a DHCP only server
2091 else if (!(RxBuf
[Index
].OpAdds
.Status
& (DISCOVER_TYPE
| WfM11a_TYPE
| PXE_TYPE
))) {
2093 // it is a normal DHCP offer (without any PXE options), just finish the D.O.R.A by sending DHCP request.
2095 if (!TryFinishDORA (Private
, Index
)) {
2098 } else if (TryFinishDORA (Private
, Index
)) {
2099 if (!(RxBuf
[Index
].OpAdds
.Status
& (DISCOVER_TYPE
| WfM11a_TYPE
)) && !TryFinishBINL (Private
, Index
)) {
2104 DEBUG ((EFI_D_WARN
, "\nDoDhcpDora() Got packets. "));
2108 // now look for DHCP onlys and a Proxy
2110 for (Index
= 0; Index
< NumOffers
; ++Index
) {
2114 // ignore proxies, bootps, non DHCP onlys, and bootable DHCPS
2116 if (!RxBuf
[Index
].u
.Dhcpv4
.yiaddr
||
2117 !RxBuf
[Index
].OpAdds
.PktOptAdds
[OP_DHCP_MESSAGE_TYPE_IX
- 1] ||
2118 RxBuf
[Index
].OpAdds
.Status
& (DISCOVER_TYPE
| WfM11a_TYPE
| PXE_TYPE
) ||
2119 RxBuf
[Index
].OpAdds
.PktOptAdds
[OP_DHCP_BOOTFILE_IX
- 1]
2124 // found non bootable DHCP only - try to find a proxy
2126 for (Index2
= 0; Index2
< NumOffers
; ++Index2
) {
2127 if (!RxBuf
[Index2
].u
.Dhcpv4
.yiaddr
) {
2128 if (!TryFinishDORA (Private
, Index
)) {
2135 if (RxBuf
[Index2
].OpAdds
.Status
& (DISCOVER_TYPE
| WfM11a_TYPE
)) {
2136 CopyProxyRxBuf (Private
, Index2
);
2137 } else if (!TryFinishBINL (Private
, Index2
)) {
2141 DEBUG ((EFI_D_WARN
, "\nDoDhcpDora() Got packets. "));
2148 return EFI_NO_RESPONSE
;
2151 /* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
2154 // determine if the server ip is in the ip list
2158 EFI_IP_ADDRESS
*ServerIpPtr
,
2159 PXE_SERVER_LISTS
*ServerListPtr
2164 if (!ServerListPtr
|| !ServerListPtr
->Ipv4List
.IpCount
) {
2168 for (Index
= 0; Index
< ServerListPtr
->Ipv4List
.IpCount
; ++Index
) {
2171 &ServerListPtr
->Ipv4List
.IpList
[Index
],
2172 sizeof (EFI_IPv4_ADDRESS
)
2181 /* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
2183 ExtractBootServerList (
2185 DHCPV4_OP_STRUCT
*ptr
,
2186 PXE_SERVER_LISTS
**ServerListPtr
2192 LocalPtr
.OpPtr
= ptr
;
2193 ServerListLen
= LocalPtr
.BootServersStr
->Header
.Length
;
2198 LocalPtr
.BootServerList
= LocalPtr
.BootServersStr
->ServerList
;
2200 while (ServerListLen
) {
2201 INTN ServerEntryLen
;
2203 ServerEntryLen
= sizeof (PXEV4_SERVER_LIST
) + 2 + (LocalPtr
.BootServerList
->u
.Ipv4List
.IpCount
- 1) *
2204 sizeof (EFI_IPv4_ADDRESS
);
2206 if (NTOHS (LocalPtr
.BootServerList
->Type
) == Type
) {
2207 *ServerListPtr
= &LocalPtr
.BootServerList
->u
;
2211 (LocalPtr
.BytePtr
) += ServerEntryLen
;
2212 ServerListLen
-= ServerEntryLen
;
2218 /* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
2221 PXE_BASECODE_DEVICE
*Private
2224 if (Private
->TransmitBuffer
!= NULL
) {
2225 gBS
->FreePool (Private
->TransmitBuffer
);
2226 Private
->TransmitBuffer
= NULL
;
2229 if (Private
->ReceiveBuffers
!= NULL
) {
2230 gBS
->FreePool (Private
->ReceiveBuffers
);
2231 Private
->ReceiveBuffers
= NULL
;
2235 /* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
2238 PXE_BASECODE_DEVICE
*Private
2243 if (Private
->DhcpPacketBuffer
== NULL
) {
2244 Status
= gBS
->AllocatePool (
2245 EfiBootServicesData
,
2246 sizeof (DHCP_RECEIVE_BUFFER
) * (PXE_BIS_INDEX
+ 1),
2247 &Private
->DhcpPacketBuffer
2250 if (EFI_ERROR (Status
) || Private
->DhcpPacketBuffer
== NULL
) {
2251 Private
->DhcpPacketBuffer
= NULL
;
2257 Status
= gBS
->AllocatePool (
2258 EfiBootServicesData
,
2259 sizeof (EFI_PXE_BASE_CODE_PACKET
),
2260 &Private
->TransmitBuffer
2263 if (EFI_ERROR (Status
) || Private
->TransmitBuffer
== NULL
) {
2264 gBS
->FreePool (Private
->DhcpPacketBuffer
);
2265 Private
->DhcpPacketBuffer
= NULL
;
2266 Private
->TransmitBuffer
= NULL
;
2271 Status
= gBS
->AllocatePool (
2272 EfiBootServicesData
,
2273 sizeof (DHCP_RECEIVE_BUFFER
) * (MAX_OFFERS
),
2274 &Private
->ReceiveBuffers
2277 if (EFI_ERROR (Status
) || Private
->ReceiveBuffers
== NULL
) {
2278 gBS
->FreePool (Private
->TransmitBuffer
);
2279 gBS
->FreePool (Private
->DhcpPacketBuffer
);
2280 Private
->DhcpPacketBuffer
= NULL
;
2281 Private
->TransmitBuffer
= NULL
;
2282 Private
->ReceiveBuffers
= NULL
;
2290 /* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
2294 IN EFI_PXE_BASE_CODE_PROTOCOL
*This
,
2295 IN BOOLEAN SortOffers
2298 Routine description:
2299 standard DHCP Discover/Offer/Request/Ack session
2300 broadcast DHCPDISCOVER
2302 broadcast DHCPREQUEST
2307 This := Pointer to PxeBc interface
2313 EFI_PXE_BASE_CODE_IP_FILTER Filter
;
2314 EFI_PXE_BASE_CODE_MODE
*PxebcMode
;
2315 PXE_BASECODE_DEVICE
*Private
;
2316 EFI_STATUS StatCode
;
2319 // Lock the instance data and make sure started
2321 StatCode
= EFI_SUCCESS
;
2324 DEBUG ((EFI_D_ERROR
, "BC *This pointer == NULL"));
2325 return EFI_INVALID_PARAMETER
;
2328 Private
= CR (This
, PXE_BASECODE_DEVICE
, EfiBc
, PXE_BASECODE_DEVICE_SIGNATURE
);
2330 if (Private
== NULL
) {
2331 DEBUG ((EFI_D_ERROR
, "PXE_BASECODE_DEVICE pointer == NULL"));
2332 return EFI_INVALID_PARAMETER
;
2335 EfiAcquireLock (&Private
->Lock
);
2337 if (This
->Mode
== NULL
|| !This
->Mode
->Started
) {
2338 DEBUG ((EFI_D_ERROR
, "BC was not started."));
2339 EfiReleaseLock (&Private
->Lock
);
2340 return EFI_NOT_STARTED
;
2343 Filter
.Filters
= EFI_PXE_BASE_CODE_IP_FILTER_STATION_IP
;
2345 Filter
.reserved
= 0;
2347 DEBUG ((EFI_D_INFO
, "\nBcDhcp() Enter. "));
2349 PxebcMode
= Private
->EfiBc
.Mode
;
2351 if (!GetMem (Private
)) {
2352 DEBUG ((EFI_D_ERROR
, "\nBcDhcp() GetMem() failed.\n"));
2353 EfiReleaseLock (&Private
->Lock
);
2354 return EFI_OUT_OF_RESOURCES
;
2357 PxebcMode
->DhcpDiscoverValid
= FALSE
;
2358 PxebcMode
->DhcpAckReceived
= FALSE
;
2359 PxebcMode
->ProxyOfferReceived
= FALSE
;
2361 Private
->Function
= EFI_PXE_BASE_CODE_FUNCTION_DHCP
;
2366 if (Private
->TotalSeconds
== 0) {
2368 // put in seconds field of DHCP send packets
2370 Private
->TotalSeconds
= 4;
2373 if ((StatCode
= DoDhcpDora (Private
, SortOffers
)) == EFI_SUCCESS
) {
2375 // success - copy packets
2377 PxebcMode
->DhcpDiscoverValid
= PxebcMode
->DhcpAckReceived
= TRUE
;
2380 &PxebcMode
->DhcpAck
,
2381 (EFI_PXE_BASE_CODE_PACKET
*) &DHCPV4_ACK_PACKET
,
2382 sizeof (EFI_PXE_BASE_CODE_PACKET
)
2385 if (PxebcMode
->ProxyOfferReceived
) {
2387 &PxebcMode
->ProxyOffer
,
2388 (EFI_PXE_BASE_CODE_PACKET
*) &PXE_OFFER_PACKET
,
2389 sizeof (EFI_PXE_BASE_CODE_PACKET
)
2394 // set filter back to unicast
2396 IpFilter (Private
, &Filter
);
2401 // Unlock the instance data
2403 DEBUG ((EFI_D_WARN
, "\nBcDhcp() Exit = %xh ", StatCode
));
2405 EfiReleaseLock (&Private
->Lock
);
2409 /* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
2412 VerifyCredentialOption (
2420 // Fail verification if either pointer is NULL.
2422 if (tx
== NULL
|| rx
== NULL
) {
2426 // Fail verification if tx[0] is not a credential type option
2427 // or if the length is zero or not a multiple of four.
2429 if (tx
[0] != VEND_PXE_CREDENTIAL_TYPES
|| tx
[1] == 0 || tx
[1] % 4 != 0) {
2433 // Fail verification if rx[0] is not a credential type option
2434 // or if the length is not equal to four.
2436 if (rx
[0] != VEND_PXE_CREDENTIAL_TYPES
|| rx
[1] != 4) {
2440 // Look through transmitted credential types for a copy
2441 // of the received credential type.
2443 for (n
= 0; n
< tx
[1]; n
+= 4) {
2444 if (!CompareMem (&tx
[n
+ 2], &rx
[2], 4)) {
2452 /* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
2455 PXE_BASECODE_DEVICE
*Private
,
2458 IN UINT16
*LayerPtr
,
2460 EFI_IP_ADDRESS
*DestPtr
,
2461 PXE_SERVER_LISTS
*ServerListPtr
2464 Routine description:
2465 This function tries to complete the PXE Bootserver and/or boot image
2466 discovery sequence. When this command completes successfully, the
2467 PXEdiscover and PXEreply fields in the BC instance data structure are
2468 updated. If the Info pointer is set to NULL, the discovery information
2469 in the DHCPack and ProxyOffer packets must be valid and will be used.
2470 If Info is not set to NULL, the discovery methods in the Info field
2471 must be set and will be used. When discovering any layer number other
2472 than zero (the credential flag does not count), only unicast discovery
2476 Private := Pointer to PxeBc interface
2487 EFI_PXE_BASE_CODE_UDP_PORT ClientPort
;
2488 EFI_PXE_BASE_CODE_UDP_PORT ServerPort
;
2489 EFI_PXE_BASE_CODE_MODE
*PxebcMode
;
2490 EFI_STATUS StatCode
;
2491 EFI_EVENT TimeoutEvent
;
2494 PxebcMode
= Private
->EfiBc
.Mode
;
2496 if (DestPtr
->Addr
[0] == 0) {
2497 DEBUG ((EFI_D_WARN
, "\nDoDiscover() !DestPtr->Addr[0]"));
2498 return EFI_INVALID_PARAMETER
;
2501 // seed random number with hardware address
2503 SeedRandom (Private
, *(UINT16
*) &Private
->SimpleNetwork
->Mode
->CurrentAddress
);
2505 if (DestPtr
->Addr
[0] == BroadcastIP
.Addr
[0]) {
2506 ClientPort
= DHCPClientPort
;
2507 ServerPort
= DhcpServerPort
;
2509 ClientPort
= PSEUDO_DHCP_CLIENT_PORT
;
2510 ServerPort
= PseudoDhcpServerPort
;
2514 *LayerPtr
|= PXE_BOOT_LAYER_CREDENTIAL_FLAG
;
2516 *LayerPtr
&= PXE_BOOT_LAYER_MASK
;
2519 for (Private
->Timeout
= 1;
2520 Private
->Timeout
< 5;
2521 Private
->TotalSeconds
= (UINT16
) (Private
->TotalSeconds
+ Private
->Timeout
), ++Private
->Timeout
2523 InitDhcpv4TxBuf (Private
);
2525 // initialize DHCP message structure
2527 DHCPV4_TRANSMIT_BUFFER
.xid
= Random (Private
);
2528 DHCPV4_TRANSMIT_BUFFER
.secs
= HTONS (Private
->TotalSeconds
);
2530 &DHCPV4_TRANSMIT_BUFFER
.ciaddr
,
2531 &PxebcMode
->StationIp
,
2532 sizeof DHCPV4_TRANSMIT_BUFFER
.ciaddr
2535 DHCPV4_OPTIONS_BUFFER
.DhcpMessageType
.Type
= DHCPREQUEST
;
2536 DISCOVERoptions
.Header
.OpCode
= OP_VENDOR_SPECIFIC
;
2537 DISCOVERoptions
.BootItem
.Header
.OpCode
= VEND_PXE_BOOT_ITEM
;
2538 DISCOVERoptions
.BootItem
.Header
.Length
= DHCPV4_OPTION_LENGTH (PXE_OP_BOOT_ITEM
);
2539 DISCOVERoptions
.BootItem
.Type
= HTONS (Type
);
2540 DISCOVERoptions
.BootItem
.Layer
= HTONS (*LayerPtr
);
2543 EFI_BIS_PROTOCOL
*BisPtr
;
2544 BIS_APPLICATION_HANDLE BisAppHandle
;
2545 EFI_BIS_DATA
*BisDataSigInfo
;
2546 EFI_BIS_SIGNATURE_INFO
*BisSigInfo
;
2550 BisPtr
= PxebcBisStart (
2556 if (BisPtr
== NULL
) {
2558 // %%TBD - In order to get here, BIS must have
2559 // been present when PXEBC.Start() was called.
2560 // BIS had to be shutdown/removed/damaged
2561 // before PXEBC.Discover() was called.
2562 // Do we need to document a specific error
2565 return EFI_OUT_OF_RESOURCES
;
2568 // Compute number of credential types.
2570 Index2
= BisDataSigInfo
->Length
/ sizeof (EFI_BIS_SIGNATURE_INFO
);
2572 DISCREDoptions
.Header
.OpCode
= VEND_PXE_CREDENTIAL_TYPES
;
2574 DISCREDoptions
.Header
.Length
= (UINT8
) (Index2
* sizeof (PXE_CREDENTIAL
));
2576 OpLen
= (UINT8
) (DHCPV4_OPTION_LENGTH (PXE_DISCOVER_OPTIONS
) + sizeof (DHCPV4_OP_HEADER
) + DISCREDoptions
.Header
.Length
);
2578 BisSigInfo
= (EFI_BIS_SIGNATURE_INFO
*) BisDataSigInfo
->Data
;
2580 for (Index
= 0; Index
< Index2
; ++Index
) {
2583 CopyMem (&x
, &BisSigInfo
[Index
], sizeof x
);
2585 CopyMem (&DISCREDoptions
.Credentials
[Index
], &x
, sizeof x
);
2588 PxebcBisStop (BisPtr
, BisAppHandle
, BisDataSigInfo
);
2590 OpLen
= DHCPV4_OPTION_LENGTH (PXE_DISCOVER_OPTIONS
);
2593 DISCOVERoptions
.Header
.Length
= OpLen
;
2595 ((UINT8
*) &DISCOVERoptions
)[sizeof (DHCPV4_OP_HEADER
) + OpLen
- 1] = OP_END
;
2596 ((UINT8
*) &DISCOVERoptions
)[sizeof (DHCPV4_OP_HEADER
) + OpLen
] = OP_END
;
2598 StatCode
= DoUdpWrite (
2602 (EFI_IP_ADDRESS
*) &DHCPV4_TRANSMIT_BUFFER
.ciaddr
,
2606 if (StatCode
!= EFI_SUCCESS
) {
2612 StatCode
= gBS
->CreateEvent (
2620 if (EFI_ERROR (StatCode
)) {
2624 StatCode
= gBS
->SetTimer (
2627 Private
->Timeout
* 10000000 + 1000000
2630 if (EFI_ERROR (StatCode
)) {
2631 gBS
->CloseEvent (TimeoutEvent
);
2638 DHCP_RECEIVE_BUFFER
*RxBufPtr
;
2642 RxBufPtr
= UseBis
? &PXE_BIS_BUFFER
: &PXE_ACK_BUFFER
;
2643 ZeroMem (&Private
->ServerIp
, sizeof (EFI_IP_ADDRESS
));
2649 (EFI_IP_ADDRESS
*) &Private
->ServerIp
,
2651 (EFI_IP_ADDRESS
*) &DHCPV4_TRANSMIT_BUFFER
.ciaddr
,
2659 // check type of response - need PXEClient DHCPACK of proper type with bootfile
2661 if (!(RxBufPtr
->OpAdds
.Status
& PXE_TYPE
) ||
2662 (UseBis
&& (RxBufPtr
->OpAdds
.Status
& USE_THREE_BYTE
)) ||
2663 !RxBufPtr
->OpAdds
.PktOptAdds
[OP_DHCP_BOOTFILE_IX
- 1] ||
2664 !RxBufPtr
->OpAdds
.PktOptAdds
[OP_DHCP_SERVER_IP_IX
- 1] ||
2665 !InServerList((EFI_IP_ADDRESS
*)&((DHCPV4_OP_SERVER_IP
*)RxBufPtr
->OpAdds
.PktOptAdds
[OP_DHCP_SERVER_IP_IX
-1])->Ip
, ServerListPtr
)) {
2670 TmpType
= TmpLayer
= 0;
2672 if (RxBufPtr
->OpAdds
.PxeOptAdds
[VEND_PXE_BOOT_ITEM_IX
- 1]) {
2673 TmpType
= NTOHS (((PXE_OP_BOOT_ITEM
*) RxBufPtr
->OpAdds
.PxeOptAdds
[VEND_PXE_BOOT_ITEM_IX
- 1])->Type
);
2675 if (RxBufPtr
->OpAdds
.Status
& USE_THREE_BYTE
) {
2676 TmpLayer
= (UINT16
) (((PXE_OP_BOOT_ITEM
*) RxBufPtr
->OpAdds
.PxeOptAdds
[VEND_PXE_BOOT_ITEM_IX
- 1])->Layer
>> 8);
2678 TmpLayer
= NTOHS (((PXE_OP_BOOT_ITEM
*) RxBufPtr
->OpAdds
.PxeOptAdds
[VEND_PXE_BOOT_ITEM_IX
- 1])->Layer
);
2682 if (TmpType
!= Type
) {
2687 if (!RxBufPtr
->OpAdds
.PxeOptAdds
[VEND_PXE_CREDENTIAL_TYPES_IX
- 1]) {
2691 if (!VerifyCredentialOption (
2692 (UINT8
*) &DISCREDoptions
.Header
,
2693 (UINT8
*) RxBufPtr
->OpAdds
.PxeOptAdds
[VEND_PXE_CREDENTIAL_TYPES_IX
- 1]
2699 *LayerPtr
= TmpLayer
;
2703 &PxebcMode
->PxeBisReply
,
2704 &RxBufPtr
->u
.Dhcpv4
,
2705 sizeof (EFI_PXE_BASE_CODE_PACKET
)
2708 PxebcMode
->PxeBisReplyReceived
= TRUE
;
2710 StatCode
= DoDiscover (
2712 EFI_PXE_BASE_CODE_UDP_OPFLAGS_ANY_SRC_PORT
,
2720 gBS
->CloseEvent (TimeoutEvent
);
2724 PxebcMode
->PxeDiscoverValid
= PxebcMode
->PxeReplyReceived
= TRUE
;
2727 &PxebcMode
->PxeDiscover
,
2728 &*(EFI_PXE_BASE_CODE_PACKET
*) &DHCPV4_TRANSMIT_BUFFER
,
2729 sizeof (*(EFI_PXE_BASE_CODE_PACKET
*) &DHCPV4_TRANSMIT_BUFFER
)
2733 &PxebcMode
->PxeReply
,
2734 &*(EFI_PXE_BASE_CODE_PACKET
*) &RxBufPtr
->u
.Dhcpv4
,
2735 sizeof (*(EFI_PXE_BASE_CODE_PACKET
*) &RxBufPtr
->u
.Dhcpv4
)
2738 AddRouters (Private
, RxBufPtr
);
2740 gBS
->CloseEvent (TimeoutEvent
);
2744 gBS
->CloseEvent (TimeoutEvent
);
2752 /* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
2756 PXE_BASECODE_DEVICE
*Private
,
2758 IN UINT16
*LayerPtr
,
2760 IN EFI_PXE_BASE_CODE_DISCOVER_INFO
*DiscoverInfoPtr
,
2761 PXE_SERVER_LISTS
*McastServerListPtr
,
2762 PXE_SERVER_LISTS
*ServerListPtr
2765 Routine Description:
2768 Private := Pointer to PxeBc interface
2773 McastServerListPtr :=
2779 EFI_IP_ADDRESS DestIp
;
2780 EFI_STATUS StatCode
;
2782 DEBUG ((EFI_D_INFO
, "\nDiscover() Type=%d Layer=%d ", Type
, *LayerPtr
));
2785 DEBUG ((EFI_D_INFO
, "BIS "));
2788 // get dest IP addr - mcast, bcast, or unicast
2790 if (DiscoverInfoPtr
->UseMCast
) {
2791 DestIp
.v4
= DiscoverInfoPtr
->ServerMCastIp
.v4
;
2795 "\nDiscover() MCast %d.%d.%d.%d ",
2802 if ((StatCode
= DoDiscover (
2804 EFI_PXE_BASE_CODE_UDP_OPFLAGS_ANY_SRC_IP
| EFI_PXE_BASE_CODE_UDP_OPFLAGS_ANY_SRC_PORT
,
2810 )) != EFI_TIMEOUT
) {
2813 "\nDiscover() status == %r (%Xh)",
2822 if (DiscoverInfoPtr
->UseBCast
) {
2823 DEBUG ((EFI_D_INFO
, "\nDiscver() BCast "));
2825 if ((StatCode
= DoDiscover (
2827 EFI_PXE_BASE_CODE_UDP_OPFLAGS_ANY_SRC_IP
| EFI_PXE_BASE_CODE_UDP_OPFLAGS_ANY_SRC_PORT
,
2833 )) != EFI_TIMEOUT
) {
2835 DEBUG ((EFI_D_WARN
, "\nDiscover() status == %r (%Xh)", StatCode
, StatCode
));
2841 if (DiscoverInfoPtr
->UseUCast
) {
2846 "\nDiscover() UCast IP#=%d ",
2847 ServerListPtr
->Ipv4List
.IpCount
)
2850 for (Index
= 0; Index
< ServerListPtr
->Ipv4List
.IpCount
; ++Index
) {
2851 CopyMem (&DestIp
, &ServerListPtr
->Ipv4List
.IpList
[Index
], 4);
2855 "\nDiscover() UCast %d.%d.%d.%d ",
2862 if ((StatCode
= DoDiscover (
2864 EFI_PXE_BASE_CODE_UDP_OPFLAGS_ANY_SRC_IP
| EFI_PXE_BASE_CODE_UDP_OPFLAGS_ANY_SRC_PORT
,
2870 )) != EFI_TIMEOUT
) {
2873 "\nDiscover() status == %r (%Xh)",
2883 DEBUG ((EFI_D_WARN
, "\nDiscover() TIMEOUT"));
2888 /* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
2895 IN EFI_PXE_BASE_CODE_PROTOCOL
* This
,
2897 IN UINT16
*LayerPtr
,
2899 IN EFI_PXE_BASE_CODE_DISCOVER_INFO
* DiscoverInfoPtr OPTIONAL
2902 Routine description:
2914 EFI_PXE_BASE_CODE_DISCOVER_INFO DefaultInfo
;
2915 EFI_PXE_BASE_CODE_MODE
*PxebcMode
;
2916 DHCP_RECEIVE_BUFFER
*DhcpRxBuf
;
2917 PXE_SERVER_LISTS DefaultSrvList
;
2918 PXE_SERVER_LISTS
*ServerListPtr
;
2919 PXE_SERVER_LISTS
*McastServerListPtr
;
2924 BOOLEAN AcquiredSrvList
;
2925 EFI_STATUS StatCode
;
2926 PXE_BASECODE_DEVICE
*Private
;
2929 // Lock the instance data and make sure started
2931 StatCode
= EFI_SUCCESS
;
2934 DEBUG ((EFI_D_ERROR
, "BC *This pointer == NULL"));
2935 return EFI_INVALID_PARAMETER
;
2938 Private
= CR (This
, PXE_BASECODE_DEVICE
, EfiBc
, PXE_BASECODE_DEVICE_SIGNATURE
);
2940 if (Private
== NULL
) {
2941 DEBUG ((EFI_D_ERROR
, "PXE_BASECODE_DEVICE poiner == NULL"));
2942 return EFI_INVALID_PARAMETER
;
2945 EfiAcquireLock (&Private
->Lock
);
2947 if (This
->Mode
== NULL
|| !This
->Mode
->Started
) {
2948 DEBUG ((EFI_D_ERROR
, "BC was not started."));
2949 EfiReleaseLock (&Private
->Lock
);
2950 return EFI_NOT_STARTED
;
2953 ServerListPtr
= NULL
;
2954 McastServerListPtr
= NULL
;
2955 AcquiredSrvList
= FALSE
;
2957 PxebcMode
= Private
->EfiBc
.Mode
;
2959 if (!GetMem (Private
)) {
2960 EfiReleaseLock (&Private
->Lock
);
2961 return EFI_OUT_OF_RESOURCES
;
2965 if (!PxebcMode
->BisSupported
) {
2966 EfiReleaseLock (&Private
->Lock
);
2967 return EFI_INVALID_PARAMETER
;
2971 Private
->Function
= EFI_PXE_BASE_CODE_FUNCTION_DISCOVER
;
2973 if (Private
->TotalSeconds
== 0) {
2975 // put in seconds field of DHCP send packets
2977 Private
->TotalSeconds
= 4;
2980 ZeroMem (&DefaultInfo
, sizeof (EFI_PXE_BASE_CODE_DISCOVER_INFO
));
2983 // if layer number not zero, use previous discover
2985 if (*LayerPtr
!= 0) {
2986 DEBUG ((EFI_D_WARN
, "\nBcDiscover() layer != 0"));
2988 if (DiscoverInfoPtr
!= NULL
) {
2989 DEBUG ((EFI_D_WARN
, "\nBcDiscover() layer != 0 && DiscoverInfoPtr != NULL\n"));
2991 EfiReleaseLock (&Private
->Lock
);
2992 return EFI_INVALID_PARAMETER
;
2995 if (!PxebcMode
->PxeDiscoverValid
) {
2996 DEBUG ((EFI_D_WARN
, "\nBcDiscover() layer != 0 && PxeDiscoverValid == 0\n"));
2998 EfiReleaseLock (&Private
->Lock
);
2999 return EFI_INVALID_PARAMETER
;
3002 if (!PxebcMode
->PxeReplyReceived
) {
3003 DEBUG ((EFI_D_WARN
, "\nBcDiscover() layer != 0 && PxeReplyReceived == 0\n"));
3005 EfiReleaseLock (&Private
->Lock
);
3006 return EFI_INVALID_PARAMETER
;
3009 if (UseBis
&& !PxebcMode
->PxeBisReplyReceived
) {
3010 DEBUG ((EFI_D_WARN
, "\nBcDiscover() layer != 0 && PxeBisReplyReceived == 0\n"));
3012 EfiReleaseLock (&Private
->Lock
);
3013 return EFI_INVALID_PARAMETER
;
3016 DefaultInfo
.UseUCast
= TRUE
;
3017 DiscoverInfoPtr
= &DefaultInfo
;
3019 DefaultSrvList
.Ipv4List
.IpCount
= 1;
3020 CopyMem (&DefaultSrvList
.Ipv4List
.IpList
[0], &Private
->ServerIp
, 4);
3022 ServerListPtr
= &DefaultSrvList
;
3025 // layer is zero - see if info is supplied or if we need to use info from a cached offer
3027 else if (!DiscoverInfoPtr
) {
3029 // not supplied - generate it
3030 // make sure that there is cached, appropriate information
3031 // if neither DhcpAck packet nor ProxyOffer packet has pxe info, fail
3033 DhcpRxBuf
= (PxebcMode
->ProxyOfferReceived
) ? &PXE_OFFER_BUFFER
: &DHCPV4_ACK_BUFFER
;
3035 if (!PxebcMode
->DhcpAckReceived
|| !(DhcpRxBuf
->OpAdds
.Status
& DISCOVER_TYPE
)) {
3036 DEBUG ((EFI_D_WARN
, "\nBcDiscover() !ack && !proxy"));
3037 EfiReleaseLock (&Private
->Lock
);
3038 return EFI_INVALID_PARAMETER
;
3041 DiscoverInfoPtr
= &DefaultInfo
;
3043 LocalPtr
.OpPtr
= DhcpRxBuf
->OpAdds
.PxeOptAdds
[VEND_PXE_DISCOVERY_CONTROL_IX
- 1];
3046 // if multicast enabled, need multicast address
3048 if (!(LocalPtr
.DiscoveryControl
->ControlBits
& DISABLE_MCAST
)) {
3049 DefaultInfo
.UseMCast
= TRUE
;
3052 ((EFI_IPv4_ADDRESS
*) &DefaultInfo
.ServerMCastIp
),
3053 &((DHCPV4_OP_IP_ADDRESS
*) DhcpRxBuf
->OpAdds
.PxeOptAdds
[VEND_PXE_DISCOVERY_MCAST_ADDR_IX
- 1])->Ip
,
3054 sizeof (EFI_IPv4_ADDRESS
)
3058 DefaultInfo
.UseBCast
= (BOOLEAN
) ((LocalPtr
.DiscoveryControl
->ControlBits
& DISABLE_BCAST
) == 0);
3060 DefaultInfo
.MustUseList
= (BOOLEAN
) ((LocalPtr
.DiscoveryControl
->ControlBits
& USE_ACCEPT_LIST
) != 0);
3062 DefaultInfo
.UseUCast
= (BOOLEAN
)
3064 (DefaultInfo
.MustUseList
) ||
3065 ((LocalPtr
.DiscoveryControl
->ControlBits
& (DISABLE_MCAST
| DISABLE_BCAST
)) == (DISABLE_MCAST
| DISABLE_BCAST
))
3068 if ((DefaultInfo
.UseUCast
| DefaultInfo
.MustUseList
) && !ExtractBootServerList (
3070 DhcpRxBuf
->OpAdds
.PxeOptAdds
[VEND_PXE_BOOT_SERVERS_IX
- 1],
3073 DEBUG ((EFI_D_WARN
, "\nBcDiscover() type not in list"));
3074 EfiReleaseLock (&Private
->Lock
);
3075 return EFI_INVALID_PARAMETER
;
3079 // Info supplied - make SrvList if required
3080 // if we use ucast discovery or must use list, there better be one
3082 else if (DiscoverInfoPtr
->UseUCast
|| DiscoverInfoPtr
->MustUseList
) {
3084 // there better be a list
3086 if (DiscoverInfoPtr
->IpCnt
== 0) {
3087 DEBUG ((EFI_D_WARN
, "\nBcDiscover() no bootserver list"));
3088 EfiReleaseLock (&Private
->Lock
);
3089 return EFI_INVALID_PARAMETER
;
3094 for (Index
= Index2
= 0; Index
< DiscoverInfoPtr
->IpCnt
; ++Index
) {
3095 if (DiscoverInfoPtr
->SrvList
[Index
].Type
== Type
) {
3096 if (DiscoverInfoPtr
->SrvList
[Index
].AcceptAnyResponse
) {
3098 DEBUG ((EFI_D_WARN
, "\nBcDiscover() accept any?"));
3099 EfiReleaseLock (&Private
->Lock
);
3100 return EFI_INVALID_PARAMETER
;
3103 DefaultSrvList
.Ipv4List
.IpCount
= 0;
3104 ServerListPtr
= &DefaultSrvList
;
3114 DEBUG ((EFI_D_WARN
, "\nBcDiscover() !Index2?"));
3115 EfiReleaseLock (&Private
->Lock
);
3116 return EFI_INVALID_PARAMETER
;