]> git.proxmox.com Git - mirror_edk2.git/blob - MdeModulePkg/Universal/Network/Ip4Dxe/Ip4Impl.c
Fix a bug in IP4 driver which may cause “reconnect –r” hang.
[mirror_edk2.git] / MdeModulePkg / Universal / Network / Ip4Dxe / Ip4Impl.c
1 /** @file
2
3 Copyright (c) 2005 - 2013, Intel Corporation. All rights reserved.<BR>
4 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
8
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.
11
12 **/
13
14 #include "Ip4Impl.h"
15
16 EFI_IPSEC2_PROTOCOL *mIpSec = NULL;
17
18 /**
19 Gets the current operational settings for this instance of the EFI IPv4 Protocol driver.
20
21 The GetModeData() function returns the current operational mode data for this
22 driver instance. The data fields in EFI_IP4_MODE_DATA are read only. This
23 function is used optionally to retrieve the operational mode data of underlying
24 networks or drivers.
25
26 @param[in] This Pointer to the EFI_IP4_PROTOCOL instance.
27 @param[out] Ip4ModeData Pointer to the EFI IPv4 Protocol mode data structure.
28 @param[out] MnpConfigData Pointer to the managed network configuration data structure.
29 @param[out] SnpModeData Pointer to the simple network mode data structure.
30
31 @retval EFI_SUCCESS The operation completed successfully.
32 @retval EFI_INVALID_PARAMETER This is NULL.
33 @retval EFI_OUT_OF_RESOURCES The required mode data could not be allocated.
34
35 **/
36 EFI_STATUS
37 EFIAPI
38 EfiIp4GetModeData (
39 IN CONST EFI_IP4_PROTOCOL *This,
40 OUT EFI_IP4_MODE_DATA *Ip4ModeData OPTIONAL,
41 OUT EFI_MANAGED_NETWORK_CONFIG_DATA *MnpConfigData OPTIONAL,
42 OUT EFI_SIMPLE_NETWORK_MODE *SnpModeData OPTIONAL
43 );
44
45 /**
46 Assigns an IPv4 address and subnet mask to this EFI IPv4 Protocol driver instance.
47
48 The Configure() function is used to set, change, or reset the operational
49 parameters and filter settings for this EFI IPv4 Protocol instance. Until these
50 parameters have been set, no network traffic can be sent or received by this
51 instance. Once the parameters have been reset (by calling this function with
52 IpConfigData set to NULL), no more traffic can be sent or received until these
53 parameters have been set again. Each EFI IPv4 Protocol instance can be started
54 and stopped independently of each other by enabling or disabling their receive
55 filter settings with the Configure() function.
56
57 When IpConfigData.UseDefaultAddress is set to FALSE, the new station address will
58 be appended as an alias address into the addresses list in the EFI IPv4 Protocol
59 driver. While set to TRUE, Configure() will trigger the EFI_IP4_CONFIG_PROTOCOL
60 to retrieve the default IPv4 address if it is not available yet. Clients could
61 frequently call GetModeData() to check the status to ensure that the default IPv4
62 address is ready.
63
64 If operational parameters are reset or changed, any pending transmit and receive
65 requests will be cancelled. Their completion token status will be set to EFI_ABORTED
66 and their events will be signaled.
67
68 @param[in] This Pointer to the EFI_IP4_PROTOCOL instance.
69 @param[in] IpConfigData Pointer to the EFI IPv4 Protocol configuration data structure.
70
71 @retval EFI_SUCCESS The driver instance was successfully opened.
72 @retval EFI_NO_MAPPING When using the default address, configuration (DHCP, BOOTP,
73 RARP, etc.) is not finished yet.
74 @retval EFI_INVALID_PARAMETER One or more of the following conditions is TRUE:
75 @retval EFI_UNSUPPORTED One or more of the following conditions is TRUE:
76 A configuration protocol (DHCP, BOOTP, RARP, etc.) could
77 not be located when clients choose to use the default IPv4
78 address. This EFI IPv4 Protocol implementation does not
79 support this requested filter or timeout setting.
80 @retval EFI_OUT_OF_RESOURCES The EFI IPv4 Protocol driver instance data could not be allocated.
81 @retval EFI_ALREADY_STARTED The interface is already open and must be stopped before the
82 IPv4 address or subnet mask can be changed. The interface must
83 also be stopped when switching to/from raw packet mode.
84 @retval EFI_DEVICE_ERROR An unexpected system or network error occurred. The EFI IPv4
85 Protocol driver instance is not opened.
86
87 **/
88 EFI_STATUS
89 EFIAPI
90 EfiIp4Configure (
91 IN EFI_IP4_PROTOCOL *This,
92 IN EFI_IP4_CONFIG_DATA *IpConfigData OPTIONAL
93 );
94
95 /**
96 Joins and leaves multicast groups.
97
98 The Groups() function is used to join and leave multicast group sessions. Joining
99 a group will enable reception of matching multicast packets. Leaving a group will
100 disable the multicast packet reception.
101
102 If JoinFlag is FALSE and GroupAddress is NULL, all joined groups will be left.
103
104 @param[in] This Pointer to the EFI_IP4_PROTOCOL instance.
105 @param[in] JoinFlag Set to TRUE to join the multicast group session and FALSE to leave.
106 @param[in] GroupAddress Pointer to the IPv4 multicast address.
107
108 @retval EFI_SUCCESS The operation completed successfully.
109 @retval EFI_INVALID_PARAMETER One or more of the following is TRUE:
110 - This is NULL.
111 - JoinFlag is TRUE and GroupAddress is NULL.
112 - GroupAddress is not NULL and *GroupAddress is
113 not a multicast IPv4 address.
114 @retval EFI_NOT_STARTED This instance has not been started.
115 @retval EFI_NO_MAPPING When using the default address, configuration (DHCP, BOOTP,
116 RARP, etc.) is not finished yet.
117 @retval EFI_OUT_OF_RESOURCES System resources could not be allocated.
118 @retval EFI_UNSUPPORTED This EFI IPv4 Protocol implementation does not support multicast groups.
119 @retval EFI_ALREADY_STARTED The group address is already in the group table (when
120 JoinFlag is TRUE).
121 @retval EFI_NOT_FOUND The group address is not in the group table (when JoinFlag is FALSE).
122 @retval EFI_DEVICE_ERROR An unexpected system or network error occurred.
123
124 **/
125 EFI_STATUS
126 EFIAPI
127 EfiIp4Groups (
128 IN EFI_IP4_PROTOCOL *This,
129 IN BOOLEAN JoinFlag,
130 IN EFI_IPv4_ADDRESS *GroupAddress OPTIONAL
131 );
132
133 /**
134 Adds and deletes routing table entries.
135
136 The Routes() function adds a route to or deletes a route from the routing table.
137
138 Routes are determined by comparing the SubnetAddress with the destination IPv4
139 address arithmetically AND-ed with the SubnetMask. The gateway address must be
140 on the same subnet as the configured station address.
141
142 The default route is added with SubnetAddress and SubnetMask both set to 0.0.0.0.
143 The default route matches all destination IPv4 addresses that do not match any
144 other routes.
145
146 A GatewayAddress that is zero is a nonroute. Packets are sent to the destination
147 IP address if it can be found in the ARP cache or on the local subnet. One automatic
148 nonroute entry will be inserted into the routing table for outgoing packets that
149 are addressed to a local subnet (gateway address of 0.0.0.0).
150
151 Each EFI IPv4 Protocol instance has its own independent routing table. Those EFI
152 IPv4 Protocol instances that use the default IPv4 address will also have copies
153 of the routing table that was provided by the EFI_IP4_CONFIG_PROTOCOL, and these
154 copies will be updated whenever the EIF IPv4 Protocol driver reconfigures its
155 instances. As a result, client modification to the routing table will be lost.
156
157 @param[in] This Pointer to the EFI_IP4_PROTOCOL instance.
158 @param[in] DeleteRoute Set to TRUE to delete this route from the routing table. Set to
159 FALSE to add this route to the routing table. SubnetAddress
160 and SubnetMask are used as the key to each route entry.
161 @param[in] SubnetAddress The address of the subnet that needs to be routed.
162 @param[in] SubnetMask The subnet mask of SubnetAddress.
163 @param[in] GatewayAddress The unicast gateway IPv4 address for this route.
164
165 @retval EFI_SUCCESS The operation completed successfully.
166 @retval EFI_NOT_STARTED The driver instance has not been started.
167 @retval EFI_NO_MAPPING When using the default address, configuration (DHCP, BOOTP,
168 RARP, etc.) is not finished yet.
169 @retval EFI_INVALID_PARAMETER One or more of the following conditions is TRUE:
170 - This is NULL.
171 - SubnetAddress is NULL.
172 - SubnetMask is NULL.
173 - GatewayAddress is NULL.
174 - *SubnetAddress is not a valid subnet address.
175 - *SubnetMask is not a valid subnet mask.
176 - *GatewayAddress is not a valid unicast IPv4 address.
177 @retval EFI_OUT_OF_RESOURCES Could not add the entry to the routing table.
178 @retval EFI_NOT_FOUND This route is not in the routing table (when DeleteRoute is TRUE).
179 @retval EFI_ACCESS_DENIED The route is already defined in the routing table (when
180 DeleteRoute is FALSE).
181
182 **/
183 EFI_STATUS
184 EFIAPI
185 EfiIp4Routes (
186 IN EFI_IP4_PROTOCOL *This,
187 IN BOOLEAN DeleteRoute,
188 IN EFI_IPv4_ADDRESS *SubnetAddress,
189 IN EFI_IPv4_ADDRESS *SubnetMask,
190 IN EFI_IPv4_ADDRESS *GatewayAddress
191 );
192
193 /**
194 Places outgoing data packets into the transmit queue.
195
196 The Transmit() function places a sending request in the transmit queue of this
197 EFI IPv4 Protocol instance. Whenever the packet in the token is sent out or some
198 errors occur, the event in the token will be signaled and the status is updated.
199
200 @param[in] This Pointer to the EFI_IP4_PROTOCOL instance.
201 @param[in] Token Pointer to the transmit token.
202
203 @retval EFI_SUCCESS The data has been queued for transmission.
204 @retval EFI_NOT_STARTED This instance has not been started.
205 @retval EFI_NO_MAPPING When using the default address, configuration (DHCP, BOOTP,
206 RARP, etc.) is not finished yet.
207 @retval EFI_INVALID_PARAMETER One or more pameters are invalid.
208 @retval EFI_ACCESS_DENIED The transmit completion token with the same Token.Event
209 was already in the transmit queue.
210 @retval EFI_NOT_READY The completion token could not be queued because the transmit
211 queue is full.
212 @retval EFI_NOT_FOUND Not route is found to destination address.
213 @retval EFI_OUT_OF_RESOURCES Could not queue the transmit data.
214 @retval EFI_BUFFER_TOO_SMALL Token.Packet.TxData.TotalDataLength is too
215 short to transmit.
216 @retval EFI_BAD_BUFFER_SIZE The length of the IPv4 header + option length + total data length is
217 greater than MTU (or greater than the maximum packet size if
218 Token.Packet.TxData.OverrideData.
219 DoNotFragment is TRUE.)
220
221 **/
222 EFI_STATUS
223 EFIAPI
224 EfiIp4Transmit (
225 IN EFI_IP4_PROTOCOL *This,
226 IN EFI_IP4_COMPLETION_TOKEN *Token
227 );
228
229 /**
230 Places a receiving request into the receiving queue.
231
232 The Receive() function places a completion token into the receive packet queue.
233 This function is always asynchronous.
234
235 The Token.Event field in the completion token must be filled in by the caller
236 and cannot be NULL. When the receive operation completes, the EFI IPv4 Protocol
237 driver updates the Token.Status and Token.Packet.RxData fields and the Token.Event
238 is signaled.
239
240 @param[in] This Pointer to the EFI_IP4_PROTOCOL instance.
241 @param[in] Token Pointer to a token that is associated with the receive data descriptor.
242
243 @retval EFI_SUCCESS The receive completion token was cached.
244 @retval EFI_NOT_STARTED This EFI IPv4 Protocol instance has not been started.
245 @retval EFI_NO_MAPPING When using the default address, configuration (DHCP, BOOTP, RARP, etc.)
246 is not finished yet.
247 @retval EFI_INVALID_PARAMETER One or more of the following conditions is TRUE:
248 - This is NULL.
249 - Token is NULL.
250 - Token.Event is NULL.
251 @retval EFI_OUT_OF_RESOURCES The receive completion token could not be queued due to a lack of system
252 resources (usually memory).
253 @retval EFI_DEVICE_ERROR An unexpected system or network error occurred.
254 The EFI IPv4 Protocol instance has been reset to startup defaults.
255 EFI_ACCESS_DENIED The receive completion token with the same Token.Event was already
256 in the receive queue.
257 @retval EFI_NOT_READY The receive request could not be queued because the receive queue is full.
258 @retval EFI_ICMP_ERROR An ICMP error packet was received.
259
260 **/
261 EFI_STATUS
262 EFIAPI
263 EfiIp4Receive (
264 IN EFI_IP4_PROTOCOL *This,
265 IN EFI_IP4_COMPLETION_TOKEN *Token
266 );
267
268 /**
269 Abort an asynchronous transmit or receive request.
270
271 The Cancel() function is used to abort a pending transmit or receive request.
272 If the token is in the transmit or receive request queues, after calling this
273 function, Token->Status will be set to EFI_ABORTED and then Token->Event will
274 be signaled. If the token is not in one of the queues, which usually means the
275 asynchronous operation has completed, this function will not signal the token
276 and EFI_NOT_FOUND is returned.
277
278 @param[in] This Pointer to the EFI_IP4_PROTOCOL instance.
279 @param[in] Token Pointer to a token that has been issued by
280 EFI_IP4_PROTOCOL.Transmit() or
281 EFI_IP4_PROTOCOL.Receive(). If NULL, all pending
282 tokens are aborted. Type EFI_IP4_COMPLETION_TOKEN is
283 defined in EFI_IP4_PROTOCOL.Transmit().
284
285 @retval EFI_SUCCESS The asynchronous I/O request was aborted and
286 Token.->Event was signaled. When Token is NULL, all
287 pending requests were aborted and their events were signaled.
288 @retval EFI_INVALID_PARAMETER This is NULL.
289 @retval EFI_NOT_STARTED This instance has not been started.
290 @retval EFI_NO_MAPPING When using the default address, configuration (DHCP, BOOTP,
291 RARP, etc.) is not finished yet.
292 @retval EFI_NOT_FOUND When Token is not NULL, the asynchronous I/O request was
293 not found in the transmit or receive queue. It has either completed
294 or was not issued by Transmit() and Receive().
295
296 **/
297 EFI_STATUS
298 EFIAPI
299 EfiIp4Cancel (
300 IN EFI_IP4_PROTOCOL *This,
301 IN EFI_IP4_COMPLETION_TOKEN *Token OPTIONAL
302 );
303
304 /**
305 Polls for incoming data packets and processes outgoing data packets.
306
307 The Poll() function polls for incoming data packets and processes outgoing data
308 packets. Network drivers and applications can call the EFI_IP4_PROTOCOL.Poll()
309 function to increase the rate that data packets are moved between the communications
310 device and the transmit and receive queues.
311
312 In some systems the periodic timer event may not poll the underlying communications
313 device fast enough to transmit and/or receive all data packets without missing
314 incoming packets or dropping outgoing packets. Drivers and applications that are
315 experiencing packet loss should try calling the EFI_IP4_PROTOCOL.Poll() function
316 more often.
317
318 @param[in] This Pointer to the EFI_IP4_PROTOCOL instance.
319
320 @retval EFI_SUCCESS Incoming or outgoing data was processed.
321 @retval EFI_NOT_STARTED This EFI IPv4 Protocol instance has not been started.
322 @retval EFI_NO_MAPPING When using the default address, configuration (DHCP, BOOTP,
323 RARP, etc.) is not finished yet.
324 @retval EFI_INVALID_PARAMETER This is NULL.
325 @retval EFI_DEVICE_ERROR An unexpected system or network error occurred.
326 @retval EFI_NOT_READY No incoming or outgoing data is processed.
327 @retval EFI_TIMEOUT Data was dropped out of the transmit and/or receive queue.
328 Consider increasing the polling rate.
329
330 **/
331 EFI_STATUS
332 EFIAPI
333 EfiIp4Poll (
334 IN EFI_IP4_PROTOCOL *This
335 );
336
337 EFI_IP4_PROTOCOL
338 mEfiIp4ProtocolTemplete = {
339 EfiIp4GetModeData,
340 EfiIp4Configure,
341 EfiIp4Groups,
342 EfiIp4Routes,
343 EfiIp4Transmit,
344 EfiIp4Receive,
345 EfiIp4Cancel,
346 EfiIp4Poll
347 };
348
349 /**
350 Gets the current operational settings for this instance of the EFI IPv4 Protocol driver.
351
352 The GetModeData() function returns the current operational mode data for this
353 driver instance. The data fields in EFI_IP4_MODE_DATA are read only. This
354 function is used optionally to retrieve the operational mode data of underlying
355 networks or drivers.
356
357 @param[in] This Pointer to the EFI_IP4_PROTOCOL instance.
358 @param[out] Ip4ModeData Pointer to the EFI IPv4 Protocol mode data structure.
359 @param[out] MnpConfigData Pointer to the managed network configuration data structure.
360 @param[out] SnpModeData Pointer to the simple network mode data structure.
361
362 @retval EFI_SUCCESS The operation completed successfully.
363 @retval EFI_INVALID_PARAMETER This is NULL.
364 @retval EFI_OUT_OF_RESOURCES The required mode data could not be allocated.
365
366 **/
367 EFI_STATUS
368 EFIAPI
369 EfiIp4GetModeData (
370 IN CONST EFI_IP4_PROTOCOL *This,
371 OUT EFI_IP4_MODE_DATA *Ip4ModeData OPTIONAL,
372 OUT EFI_MANAGED_NETWORK_CONFIG_DATA *MnpConfigData OPTIONAL,
373 OUT EFI_SIMPLE_NETWORK_MODE *SnpModeData OPTIONAL
374 )
375 {
376 IP4_PROTOCOL *IpInstance;
377 IP4_SERVICE *IpSb;
378 EFI_IP4_CONFIG_DATA *Config;
379 EFI_STATUS Status;
380 EFI_TPL OldTpl;
381 IP4_ADDR Ip;
382
383 if (This == NULL) {
384 return EFI_INVALID_PARAMETER;
385 }
386
387 OldTpl = gBS->RaiseTPL (TPL_CALLBACK);
388 IpInstance = IP4_INSTANCE_FROM_PROTOCOL (This);
389 IpSb = IpInstance->Service;
390
391 if (Ip4ModeData != NULL) {
392 //
393 // IsStarted is "whether the EfiIp4Configure has been called".
394 // IsConfigured is "whether the station address has been configured"
395 //
396 Ip4ModeData->IsStarted = (BOOLEAN)(IpInstance->State == IP4_STATE_CONFIGED);
397 CopyMem (&Ip4ModeData->ConfigData, &IpInstance->ConfigData, sizeof (Ip4ModeData->ConfigData));
398 Ip4ModeData->IsConfigured = FALSE;
399
400 Ip4ModeData->GroupCount = IpInstance->GroupCount;
401 Ip4ModeData->GroupTable = (EFI_IPv4_ADDRESS *) IpInstance->Groups;
402
403 Ip4ModeData->IcmpTypeCount = 23;
404 Ip4ModeData->IcmpTypeList = mIp4SupportedIcmp;
405
406 Ip4ModeData->RouteTable = NULL;
407 Ip4ModeData->RouteCount = 0;
408
409 Ip4ModeData->MaxPacketSize = IpSb->MaxPacketSize;
410
411 //
412 // return the current station address for this IP child. So,
413 // the user can get the default address through this. Some
414 // application wants to know it station address even it is
415 // using the default one, such as a ftp server.
416 //
417 if (Ip4ModeData->IsStarted) {
418 Config = &Ip4ModeData->ConfigData;
419
420 Ip = HTONL (IpInstance->Interface->Ip);
421 CopyMem (&Config->StationAddress, &Ip, sizeof (EFI_IPv4_ADDRESS));
422
423 Ip = HTONL (IpInstance->Interface->SubnetMask);
424 CopyMem (&Config->SubnetMask, &Ip, sizeof (EFI_IPv4_ADDRESS));
425
426 Ip4ModeData->IsConfigured = IpInstance->Interface->Configured;
427
428 //
429 // Build a EFI route table for user from the internal route table.
430 //
431 Status = Ip4BuildEfiRouteTable (IpInstance);
432
433 if (EFI_ERROR (Status)) {
434 gBS->RestoreTPL (OldTpl);
435 return Status;
436 }
437
438 Ip4ModeData->RouteTable = IpInstance->EfiRouteTable;
439 Ip4ModeData->RouteCount = IpInstance->EfiRouteCount;
440 }
441 }
442
443 //
444 // Get fresh mode data from MNP, since underlying media status may change
445 //
446 Status = IpSb->Mnp->GetModeData (IpSb->Mnp, MnpConfigData, SnpModeData);
447
448 gBS->RestoreTPL (OldTpl);
449 return Status;
450 }
451
452
453 /**
454 Config the MNP parameter used by IP. The IP driver use one MNP
455 child to transmit/receive frames. By default, it configures MNP
456 to receive unicast/multicast/broadcast. And it will enable/disable
457 the promiscous receive according to whether there is IP child
458 enable that or not. If Force is FALSE, it will iterate through
459 all the IP children to check whether the promiscuous receive
460 setting has been changed. If it hasn't been changed, it won't
461 reconfigure the MNP. If Force is TRUE, the MNP is configured no
462 matter whether that is changed or not.
463
464 @param[in] IpSb The IP4 service instance that is to be changed.
465 @param[in] Force Force the configuration or not.
466
467 @retval EFI_SUCCESS The MNP is successfully configured/reconfigured.
468 @retval Others Configuration failed.
469
470 **/
471 EFI_STATUS
472 Ip4ServiceConfigMnp (
473 IN IP4_SERVICE *IpSb,
474 IN BOOLEAN Force
475 )
476 {
477 LIST_ENTRY *Entry;
478 LIST_ENTRY *ProtoEntry;
479 IP4_INTERFACE *IpIf;
480 IP4_PROTOCOL *IpInstance;
481 BOOLEAN Reconfig;
482 BOOLEAN PromiscReceive;
483 EFI_STATUS Status;
484
485 Reconfig = FALSE;
486 PromiscReceive = FALSE;
487
488 if (!Force) {
489 //
490 // Iterate through the IP children to check whether promiscuous
491 // receive setting has been changed. Update the interface's receive
492 // filter also.
493 //
494 NET_LIST_FOR_EACH (Entry, &IpSb->Interfaces) {
495
496 IpIf = NET_LIST_USER_STRUCT (Entry, IP4_INTERFACE, Link);
497 IpIf->PromiscRecv = FALSE;
498
499 NET_LIST_FOR_EACH (ProtoEntry, &IpIf->IpInstances) {
500 IpInstance = NET_LIST_USER_STRUCT (ProtoEntry, IP4_PROTOCOL, AddrLink);
501
502 if (IpInstance->ConfigData.AcceptPromiscuous) {
503 IpIf->PromiscRecv = TRUE;
504 PromiscReceive = TRUE;
505 }
506 }
507 }
508
509 //
510 // If promiscuous receive isn't changed, it isn't necessary to reconfigure.
511 //
512 if (PromiscReceive == IpSb->MnpConfigData.EnablePromiscuousReceive) {
513 return EFI_SUCCESS;
514 }
515
516 Reconfig = TRUE;
517 IpSb->MnpConfigData.EnablePromiscuousReceive = PromiscReceive;
518 }
519
520 Status = IpSb->Mnp->Configure (IpSb->Mnp, &IpSb->MnpConfigData);
521
522 //
523 // recover the original configuration if failed to set the configure.
524 //
525 if (EFI_ERROR (Status) && Reconfig) {
526 IpSb->MnpConfigData.EnablePromiscuousReceive = (BOOLEAN) !PromiscReceive;
527 }
528
529 return Status;
530 }
531
532
533 /**
534 The event handle for IP4 auto configuration. If IP is asked
535 to reconfigure the default address. The original default
536 interface and route table are removed as the default. If there
537 is active IP children using the default address, the interface
538 will remain valid until all the children have freed their
539 references. If IP is signalled when auto configuration is done,
540 it will configure the default interface and default route table
541 with the configuration information retrieved by IP4_CONFIGURE.
542
543 @param[in] Context The IP4 service binding instance.
544
545 **/
546 VOID
547 EFIAPI
548 Ip4AutoConfigCallBackDpc (
549 IN VOID *Context
550 )
551 {
552 EFI_IP4_CONFIG_PROTOCOL *Ip4Config;
553 EFI_IP4_IPCONFIG_DATA *Data;
554 EFI_IP4_ROUTE_TABLE *RouteEntry;
555 IP4_SERVICE *IpSb;
556 IP4_ROUTE_TABLE *RouteTable;
557 IP4_INTERFACE *IpIf;
558 EFI_STATUS Status;
559 UINTN Len;
560 UINT32 Index;
561 IP4_ADDR StationAddress;
562 IP4_ADDR SubnetMask;
563 IP4_ADDR SubnetAddress;
564 IP4_ADDR GatewayAddress;
565 IP4_PROTOCOL *Ip4Instance;
566 EFI_ARP_PROTOCOL *Arp;
567 LIST_ENTRY *Entry;
568
569 IpSb = (IP4_SERVICE *) Context;
570 NET_CHECK_SIGNATURE (IpSb, IP4_SERVICE_SIGNATURE);
571
572 Ip4Config = IpSb->Ip4Config;
573
574 //
575 // IP is asked to do the reconfiguration. If the default interface
576 // has been configured, release the default interface and route
577 // table, then create a new one. If there are some IP children
578 // using it, the interface won't be physically freed until all the
579 // children have released their reference to it. Also remember to
580 // restart the receive on the default address. IP4 driver only receive
581 // frames on the default address, and when the default interface is
582 // freed, Ip4AcceptFrame won't be informed.
583 //
584 if (IpSb->ActiveEvent == IpSb->ReconfigEvent) {
585
586 if (IpSb->DefaultInterface->Configured) {
587 IpIf = Ip4CreateInterface (IpSb->Mnp, IpSb->Controller, IpSb->Image);
588
589 if (IpIf == NULL) {
590 return;
591 }
592
593 RouteTable = Ip4CreateRouteTable ();
594
595 if (RouteTable == NULL) {
596 Ip4FreeInterface (IpIf, NULL);
597 return;
598 }
599
600 Ip4CancelReceive (IpSb->DefaultInterface);
601 Ip4FreeInterface (IpSb->DefaultInterface, NULL);
602 Ip4FreeRouteTable (IpSb->DefaultRouteTable);
603
604 IpSb->DefaultInterface = IpIf;
605 InsertHeadList (&IpSb->Interfaces, &IpIf->Link);
606
607 IpSb->DefaultRouteTable = RouteTable;
608 Ip4ReceiveFrame (IpIf, NULL, Ip4AccpetFrame, IpSb);
609 }
610
611 Ip4Config->Stop (Ip4Config);
612 Ip4Config->Start (Ip4Config, IpSb->DoneEvent, IpSb->ReconfigEvent);
613 return ;
614 }
615
616 //
617 // Get the configure data in two steps: get the length then the data.
618 //
619 Len = 0;
620
621 if (Ip4Config->GetData (Ip4Config, &Len, NULL) != EFI_BUFFER_TOO_SMALL) {
622 return ;
623 }
624
625 Data = AllocatePool (Len);
626
627 if (Data == NULL) {
628 return ;
629 }
630
631 Status = Ip4Config->GetData (Ip4Config, &Len, Data);
632
633 if (EFI_ERROR (Status)) {
634 goto ON_EXIT;
635 }
636
637 IpIf = IpSb->DefaultInterface;
638
639 //
640 // If the default address has been configured don't change it.
641 // This is unlikely to happen if EFI_IP4_CONFIG protocol has
642 // informed us to reconfigure each time it wants to change the
643 // configuration parameters.
644 //
645 if (IpIf->Configured) {
646 goto ON_EXIT;
647 }
648
649 //
650 // Set the default interface's address, then add a directed
651 // route for it, that is, the route whose nexthop is zero.
652 //
653 StationAddress = EFI_NTOHL (Data->StationAddress);
654 SubnetMask = EFI_NTOHL (Data->SubnetMask);
655 Status = Ip4SetAddress (IpIf, StationAddress, SubnetMask);
656 if (EFI_ERROR (Status)) {
657 goto ON_EXIT;
658 }
659
660 if (IpIf->Arp != NULL) {
661 //
662 // A non-NULL IpIf->Arp here means a new ARP child is created when setting default address,
663 // but some IP children may have referenced the default interface before it is configured,
664 // these IP instances also consume this ARP protocol so they need to open it BY_CHILD_CONTROLLER.
665 //
666 Arp = NULL;
667 NET_LIST_FOR_EACH (Entry, &IpIf->IpInstances) {
668 Ip4Instance = NET_LIST_USER_STRUCT_S (Entry, IP4_PROTOCOL, AddrLink, IP4_PROTOCOL_SIGNATURE);
669 Status = gBS->OpenProtocol (
670 IpIf->ArpHandle,
671 &gEfiArpProtocolGuid,
672 (VOID **) &Arp,
673 gIp4DriverBinding.DriverBindingHandle,
674 Ip4Instance->Handle,
675 EFI_OPEN_PROTOCOL_BY_CHILD_CONTROLLER
676 );
677 if (EFI_ERROR (Status)) {
678 goto ON_EXIT;
679 }
680 }
681 }
682
683 Ip4AddRoute (
684 IpSb->DefaultRouteTable,
685 StationAddress,
686 SubnetMask,
687 IP4_ALLZERO_ADDRESS
688 );
689
690 //
691 // Add routes returned by EFI_IP4_CONFIG protocol.
692 //
693 for (Index = 0; Index < Data->RouteTableSize; Index++) {
694 RouteEntry = &Data->RouteTable[Index];
695
696 SubnetAddress = EFI_NTOHL (RouteEntry->SubnetAddress);
697 SubnetMask = EFI_NTOHL (RouteEntry->SubnetMask);
698 GatewayAddress = EFI_NTOHL (RouteEntry->GatewayAddress);
699 Ip4AddRoute (IpSb->DefaultRouteTable, SubnetAddress, SubnetMask, GatewayAddress);
700 }
701
702 IpSb->State = IP4_SERVICE_CONFIGED;
703
704 Ip4SetVariableData (IpSb);
705
706 ON_EXIT:
707 FreePool (Data);
708 }
709
710 /**
711 Request Ip4AutoConfigCallBackDpc as a DPC at TPL_CALLBACK.
712
713 @param Event The event that is signalled.
714 @param Context The IP4 service binding instance.
715
716 **/
717 VOID
718 EFIAPI
719 Ip4AutoConfigCallBack (
720 IN EFI_EVENT Event,
721 IN VOID *Context
722 )
723 {
724 IP4_SERVICE *IpSb;
725
726 IpSb = (IP4_SERVICE *) Context;
727 IpSb->ActiveEvent = Event;
728
729 //
730 // Request Ip4AutoConfigCallBackDpc as a DPC at TPL_CALLBACK
731 //
732 QueueDpc (TPL_CALLBACK, Ip4AutoConfigCallBackDpc, Context);
733 }
734
735
736 /**
737 Start the auto configuration for this IP service instance.
738 It will locates the EFI_IP4_CONFIG_PROTOCOL, then start the
739 auto configuration.
740
741 @param[in] IpSb The IP4 service instance to configure
742
743 @retval EFI_SUCCESS The auto configuration is successfull started
744 @retval Others Failed to start auto configuration.
745
746 **/
747 EFI_STATUS
748 Ip4StartAutoConfig (
749 IN IP4_SERVICE *IpSb
750 )
751 {
752 EFI_IP4_CONFIG_PROTOCOL *Ip4Config;
753 EFI_STATUS Status;
754
755 if (IpSb->State > IP4_SERVICE_UNSTARTED) {
756 return EFI_SUCCESS;
757 }
758
759 //
760 // Create the DoneEvent and ReconfigEvent to call EFI_IP4_CONFIG
761 //
762 Status = gBS->CreateEvent (
763 EVT_NOTIFY_SIGNAL,
764 TPL_CALLBACK,
765 Ip4AutoConfigCallBack,
766 IpSb,
767 &IpSb->DoneEvent
768 );
769
770 if (EFI_ERROR (Status)) {
771 return Status;
772 }
773
774 Status = gBS->CreateEvent (
775 EVT_NOTIFY_SIGNAL,
776 TPL_NOTIFY,
777 Ip4AutoConfigCallBack,
778 IpSb,
779 &IpSb->ReconfigEvent
780 );
781
782 if (EFI_ERROR (Status)) {
783 goto CLOSE_DONE_EVENT;
784 }
785
786 //
787 // Open the EFI_IP4_CONFIG protocol then start auto configure
788 //
789 Status = gBS->OpenProtocol (
790 IpSb->Controller,
791 &gEfiIp4ConfigProtocolGuid,
792 (VOID **) &Ip4Config,
793 IpSb->Image,
794 IpSb->Controller,
795 EFI_OPEN_PROTOCOL_BY_DRIVER | EFI_OPEN_PROTOCOL_EXCLUSIVE
796 );
797
798 if (EFI_ERROR (Status)) {
799 Status = EFI_UNSUPPORTED;
800 goto CLOSE_RECONFIG_EVENT;
801 }
802
803 Status = Ip4Config->Start (Ip4Config, IpSb->DoneEvent, IpSb->ReconfigEvent);
804
805 if (EFI_ERROR (Status)) {
806 gBS->CloseProtocol (
807 IpSb->Controller,
808 &gEfiIp4ConfigProtocolGuid,
809 IpSb->Image,
810 IpSb->Controller
811 );
812
813 goto CLOSE_RECONFIG_EVENT;
814 }
815
816 IpSb->Ip4Config = Ip4Config;
817 IpSb->State = IP4_SERVICE_STARTED;
818 return Status;
819
820 CLOSE_RECONFIG_EVENT:
821 gBS->CloseEvent (IpSb->ReconfigEvent);
822 IpSb->ReconfigEvent = NULL;
823
824 CLOSE_DONE_EVENT:
825 gBS->CloseEvent (IpSb->DoneEvent);
826 IpSb->DoneEvent = NULL;
827
828 return Status;
829 }
830
831
832 /**
833 Intiialize the IP4_PROTOCOL structure to the unconfigured states.
834
835 @param IpSb The IP4 service instance.
836 @param IpInstance The IP4 child instance.
837
838 **/
839 VOID
840 Ip4InitProtocol (
841 IN IP4_SERVICE *IpSb,
842 IN OUT IP4_PROTOCOL *IpInstance
843 )
844 {
845 ASSERT ((IpSb != NULL) && (IpInstance != NULL));
846
847 ZeroMem (IpInstance, sizeof (IP4_PROTOCOL));
848
849 IpInstance->Signature = IP4_PROTOCOL_SIGNATURE;
850 CopyMem (&IpInstance->Ip4Proto, &mEfiIp4ProtocolTemplete, sizeof (IpInstance->Ip4Proto));
851 IpInstance->State = IP4_STATE_UNCONFIGED;
852 IpInstance->Service = IpSb;
853
854 InitializeListHead (&IpInstance->Link);
855 NetMapInit (&IpInstance->RxTokens);
856 NetMapInit (&IpInstance->TxTokens);
857 InitializeListHead (&IpInstance->Received);
858 InitializeListHead (&IpInstance->Delivered);
859 InitializeListHead (&IpInstance->AddrLink);
860
861 EfiInitializeLock (&IpInstance->RecycleLock, TPL_NOTIFY);
862 }
863
864
865 /**
866 Configure the IP4 child. If the child is already configured,
867 change the configuration parameter. Otherwise configure it
868 for the first time. The caller should validate the configuration
869 before deliver them to it. It also don't do configure NULL.
870
871 @param[in, out] IpInstance The IP4 child to configure.
872 @param[in] Config The configure data.
873
874 @retval EFI_SUCCESS The IP4 child is successfully configured.
875 @retval EFI_DEVICE_ERROR Failed to free the pending transive or to
876 configure underlying MNP or other errors.
877 @retval EFI_NO_MAPPING The IP4 child is configured to use default
878 address, but the default address hasn't been
879 configured. The IP4 child doesn't need to be
880 reconfigured when default address is configured.
881 @retval EFI_OUT_OF_RESOURCES No more memory space is available.
882 @retval other Other error occurs.
883
884 **/
885 EFI_STATUS
886 Ip4ConfigProtocol (
887 IN OUT IP4_PROTOCOL *IpInstance,
888 IN EFI_IP4_CONFIG_DATA *Config
889 )
890 {
891 IP4_SERVICE *IpSb;
892 IP4_INTERFACE *IpIf;
893 EFI_STATUS Status;
894 IP4_ADDR Ip;
895 IP4_ADDR Netmask;
896 EFI_ARP_PROTOCOL *Arp;
897
898 IpSb = IpInstance->Service;
899
900 //
901 // User is changing packet filters. It must be stopped
902 // before the station address can be changed.
903 //
904 if (IpInstance->State == IP4_STATE_CONFIGED) {
905 //
906 // Cancel all the pending transmit/receive from upper layer
907 //
908 Status = Ip4Cancel (IpInstance, NULL);
909
910 if (EFI_ERROR (Status)) {
911 return EFI_DEVICE_ERROR;
912 }
913
914 CopyMem (&IpInstance->ConfigData, Config, sizeof (IpInstance->ConfigData));
915 return EFI_SUCCESS;
916 }
917
918 //
919 // Configure a fresh IP4 protocol instance. Create a route table.
920 // Each IP child has its own route table, which may point to the
921 // default table if it is using default address.
922 //
923 Status = EFI_OUT_OF_RESOURCES;
924 IpInstance->RouteTable = Ip4CreateRouteTable ();
925
926 if (IpInstance->RouteTable == NULL) {
927 return Status;
928 }
929
930 //
931 // Set up the interface.
932 //
933 CopyMem (&Ip, &Config->StationAddress, sizeof (IP4_ADDR));
934 CopyMem (&Netmask, &Config->SubnetMask, sizeof (IP4_ADDR));
935
936 Ip = NTOHL (Ip);
937 Netmask = NTOHL (Netmask);
938
939 if (!Config->UseDefaultAddress) {
940 //
941 // Find whether there is already an interface with the same
942 // station address. All the instances with the same station
943 // address shares one interface.
944 //
945 IpIf = Ip4FindStationAddress (IpSb, Ip, Netmask);
946
947 if (IpIf != NULL) {
948 NET_GET_REF (IpIf);
949
950 } else {
951 IpIf = Ip4CreateInterface (IpSb->Mnp, IpSb->Controller, IpSb->Image);
952
953 if (IpIf == NULL) {
954 goto ON_ERROR;
955 }
956
957 Status = Ip4SetAddress (IpIf, Ip, Netmask);
958
959 if (EFI_ERROR (Status)) {
960 Status = EFI_DEVICE_ERROR;
961 Ip4FreeInterface (IpIf, IpInstance);
962 goto ON_ERROR;
963 }
964
965 InsertTailList (&IpSb->Interfaces, &IpIf->Link);
966 }
967
968 //
969 // Add a route to this connected network in the route table
970 //
971 Ip4AddRoute (IpInstance->RouteTable, Ip, Netmask, IP4_ALLZERO_ADDRESS);
972
973 } else {
974 //
975 // Use the default address. If the default configuration hasn't
976 // been started, start it.
977 //
978 if (IpSb->State == IP4_SERVICE_UNSTARTED) {
979 Status = Ip4StartAutoConfig (IpSb);
980
981 if (EFI_ERROR (Status)) {
982 goto ON_ERROR;
983 }
984 }
985
986 IpIf = IpSb->DefaultInterface;
987 NET_GET_REF (IpSb->DefaultInterface);
988
989 //
990 // If default address is used, so is the default route table.
991 // Any route set by the instance has the precedence over the
992 // routes in the default route table. Link the default table
993 // after the instance's table. Routing will search the local
994 // table first.
995 //
996 NET_GET_REF (IpSb->DefaultRouteTable);
997 IpInstance->RouteTable->Next = IpSb->DefaultRouteTable;
998 }
999
1000 IpInstance->Interface = IpIf;
1001 if (IpIf->Arp != NULL) {
1002 Arp = NULL;
1003 Status = gBS->OpenProtocol (
1004 IpIf->ArpHandle,
1005 &gEfiArpProtocolGuid,
1006 (VOID **) &Arp,
1007 gIp4DriverBinding.DriverBindingHandle,
1008 IpInstance->Handle,
1009 EFI_OPEN_PROTOCOL_BY_CHILD_CONTROLLER
1010 );
1011 if (EFI_ERROR (Status)) {
1012 goto ON_ERROR;
1013 }
1014 }
1015 InsertTailList (&IpIf->IpInstances, &IpInstance->AddrLink);
1016
1017 CopyMem (&IpInstance->ConfigData, Config, sizeof (IpInstance->ConfigData));
1018 IpInstance->State = IP4_STATE_CONFIGED;
1019
1020 //
1021 // Although EFI_NO_MAPPING is an error code, the IP child has been
1022 // successfully configured and doesn't need reconfiguration when
1023 // default address is acquired.
1024 //
1025 if (Config->UseDefaultAddress && IP4_NO_MAPPING (IpInstance)) {
1026 return EFI_NO_MAPPING;
1027 }
1028
1029 return EFI_SUCCESS;
1030
1031 ON_ERROR:
1032 Ip4FreeRouteTable (IpInstance->RouteTable);
1033 IpInstance->RouteTable = NULL;
1034 return Status;
1035 }
1036
1037
1038 /**
1039 Clean up the IP4 child, release all the resources used by it.
1040
1041 @param[in] IpInstance The IP4 child to clean up.
1042
1043 @retval EFI_SUCCESS The IP4 child is cleaned up
1044 @retval EFI_DEVICE_ERROR Some resources failed to be released
1045
1046 **/
1047 EFI_STATUS
1048 Ip4CleanProtocol (
1049 IN IP4_PROTOCOL *IpInstance
1050 )
1051 {
1052 if (EFI_ERROR (Ip4Cancel (IpInstance, NULL))) {
1053 return EFI_DEVICE_ERROR;
1054 }
1055
1056 if (EFI_ERROR (Ip4Groups (IpInstance, FALSE, NULL))) {
1057 return EFI_DEVICE_ERROR;
1058 }
1059
1060 //
1061 // Some packets haven't been recycled. It is because either the
1062 // user forgets to recycle the packets, or because the callback
1063 // hasn't been called. Just leave it alone.
1064 //
1065 if (!IsListEmpty (&IpInstance->Delivered)) {
1066 ;
1067 }
1068
1069 if (IpInstance->Interface != NULL) {
1070 RemoveEntryList (&IpInstance->AddrLink);
1071 if (IpInstance->Interface->Arp != NULL) {
1072 gBS->CloseProtocol (
1073 IpInstance->Interface->ArpHandle,
1074 &gEfiArpProtocolGuid,
1075 gIp4DriverBinding.DriverBindingHandle,
1076 IpInstance->Handle
1077 );
1078 }
1079 Ip4FreeInterface (IpInstance->Interface, IpInstance);
1080 IpInstance->Interface = NULL;
1081 }
1082
1083 if (IpInstance->RouteTable != NULL) {
1084 if (IpInstance->RouteTable->Next != NULL) {
1085 Ip4FreeRouteTable (IpInstance->RouteTable->Next);
1086 }
1087
1088 Ip4FreeRouteTable (IpInstance->RouteTable);
1089 IpInstance->RouteTable = NULL;
1090 }
1091
1092 if (IpInstance->EfiRouteTable != NULL) {
1093 FreePool (IpInstance->EfiRouteTable);
1094 IpInstance->EfiRouteTable = NULL;
1095 IpInstance->EfiRouteCount = 0;
1096 }
1097
1098 if (IpInstance->Groups != NULL) {
1099 FreePool (IpInstance->Groups);
1100 IpInstance->Groups = NULL;
1101 IpInstance->GroupCount = 0;
1102 }
1103
1104 NetMapClean (&IpInstance->TxTokens);
1105
1106 NetMapClean (&IpInstance->RxTokens);
1107
1108 return EFI_SUCCESS;
1109 }
1110
1111
1112 /**
1113 Validate that Ip/Netmask pair is OK to be used as station
1114 address. Only continuous netmasks are supported. and check
1115 that StationAddress is a unicast address on the newtwork.
1116
1117 @param[in] Ip The IP address to validate
1118 @param[in] Netmask The netmaks of the IP
1119
1120 @retval TRUE The Ip/Netmask pair is valid
1121 @retval FALSE The Ip/Netmask pair is invalid
1122
1123 **/
1124 BOOLEAN
1125 Ip4StationAddressValid (
1126 IN IP4_ADDR Ip,
1127 IN IP4_ADDR Netmask
1128 )
1129 {
1130 IP4_ADDR NetBrdcastMask;
1131 INTN Len;
1132 INTN Type;
1133
1134 //
1135 // Only support the station address with 0.0.0.0/0 to enable DHCP client.
1136 //
1137 if (Netmask == IP4_ALLZERO_ADDRESS) {
1138 return (BOOLEAN) (Ip == IP4_ALLZERO_ADDRESS);
1139 }
1140
1141 //
1142 // Only support the continuous net masks
1143 //
1144 if ((Len = NetGetMaskLength (Netmask)) == IP4_MASK_NUM) {
1145 return FALSE;
1146 }
1147
1148 //
1149 // Station address can't be class D or class E address
1150 //
1151 if ((Type = NetGetIpClass (Ip)) > IP4_ADDR_CLASSC) {
1152 return FALSE;
1153 }
1154
1155 //
1156 // Station address can't be subnet broadcast/net broadcast address
1157 //
1158 if ((Ip == (Ip & Netmask)) || (Ip == (Ip | ~Netmask))) {
1159 return FALSE;
1160 }
1161
1162 NetBrdcastMask = gIp4AllMasks[MIN (Len, Type << 3)];
1163
1164 if (Ip == (Ip | ~NetBrdcastMask)) {
1165 return FALSE;
1166 }
1167
1168 return TRUE;
1169 }
1170
1171
1172 /**
1173 Assigns an IPv4 address and subnet mask to this EFI IPv4 Protocol driver instance.
1174
1175 The Configure() function is used to set, change, or reset the operational
1176 parameters and filter settings for this EFI IPv4 Protocol instance. Until these
1177 parameters have been set, no network traffic can be sent or received by this
1178 instance. Once the parameters have been reset (by calling this function with
1179 IpConfigData set to NULL), no more traffic can be sent or received until these
1180 parameters have been set again. Each EFI IPv4 Protocol instance can be started
1181 and stopped independently of each other by enabling or disabling their receive
1182 filter settings with the Configure() function.
1183
1184 When IpConfigData.UseDefaultAddress is set to FALSE, the new station address will
1185 be appended as an alias address into the addresses list in the EFI IPv4 Protocol
1186 driver. While set to TRUE, Configure() will trigger the EFI_IP4_CONFIG_PROTOCOL
1187 to retrieve the default IPv4 address if it is not available yet. Clients could
1188 frequently call GetModeData() to check the status to ensure that the default IPv4
1189 address is ready.
1190
1191 If operational parameters are reset or changed, any pending transmit and receive
1192 requests will be cancelled. Their completion token status will be set to EFI_ABORTED
1193 and their events will be signaled.
1194
1195 @param[in] This Pointer to the EFI_IP4_PROTOCOL instance.
1196 @param[in] IpConfigData Pointer to the EFI IPv4 Protocol configuration data structure.
1197
1198 @retval EFI_SUCCESS The driver instance was successfully opened.
1199 @retval EFI_NO_MAPPING When using the default address, configuration (DHCP, BOOTP,
1200 RARP, etc.) is not finished yet.
1201 @retval EFI_INVALID_PARAMETER One or more of the following conditions is TRUE:
1202 @retval EFI_UNSUPPORTED One or more of the following conditions is TRUE:
1203 A configuration protocol (DHCP, BOOTP, RARP, etc.) could
1204 not be located when clients choose to use the default IPv4
1205 address. This EFI IPv4 Protocol implementation does not
1206 support this requested filter or timeout setting.
1207 @retval EFI_OUT_OF_RESOURCES The EFI IPv4 Protocol driver instance data could not be allocated.
1208 @retval EFI_ALREADY_STARTED The interface is already open and must be stopped before the
1209 IPv4 address or subnet mask can be changed. The interface must
1210 also be stopped when switching to/from raw packet mode.
1211 @retval EFI_DEVICE_ERROR An unexpected system or network error occurred. The EFI IPv4
1212 Protocol driver instance is not opened.
1213
1214 **/
1215 EFI_STATUS
1216 EFIAPI
1217 EfiIp4Configure (
1218 IN EFI_IP4_PROTOCOL *This,
1219 IN EFI_IP4_CONFIG_DATA *IpConfigData OPTIONAL
1220 )
1221 {
1222 IP4_PROTOCOL *IpInstance;
1223 EFI_IP4_CONFIG_DATA *Current;
1224 EFI_TPL OldTpl;
1225 EFI_STATUS Status;
1226 BOOLEAN AddrOk;
1227 IP4_ADDR IpAddress;
1228 IP4_ADDR SubnetMask;
1229
1230 //
1231 // First, validate the parameters
1232 //
1233 if (This == NULL) {
1234 return EFI_INVALID_PARAMETER;
1235 }
1236
1237 IpInstance = IP4_INSTANCE_FROM_PROTOCOL (This);
1238 OldTpl = gBS->RaiseTPL (TPL_CALLBACK);
1239
1240 //
1241 // Validate the configuration first.
1242 //
1243 if (IpConfigData != NULL) {
1244
1245 CopyMem (&IpAddress, &IpConfigData->StationAddress, sizeof (IP4_ADDR));
1246 CopyMem (&SubnetMask, &IpConfigData->SubnetMask, sizeof (IP4_ADDR));
1247
1248 IpAddress = NTOHL (IpAddress);
1249 SubnetMask = NTOHL (SubnetMask);
1250
1251 //
1252 // Check whether the station address is a valid unicast address
1253 //
1254 if (!IpConfigData->UseDefaultAddress) {
1255 AddrOk = Ip4StationAddressValid (IpAddress, SubnetMask);
1256
1257 if (!AddrOk) {
1258 Status = EFI_INVALID_PARAMETER;
1259 goto ON_EXIT;
1260 }
1261 }
1262
1263 //
1264 // User can only update packet filters when already configured.
1265 // If it wants to change the station address, it must configure(NULL)
1266 // the instance first.
1267 //
1268 if (IpInstance->State == IP4_STATE_CONFIGED) {
1269 Current = &IpInstance->ConfigData;
1270
1271 if (Current->UseDefaultAddress != IpConfigData->UseDefaultAddress) {
1272 Status = EFI_ALREADY_STARTED;
1273 goto ON_EXIT;
1274 }
1275
1276 if (!Current->UseDefaultAddress &&
1277 (!EFI_IP4_EQUAL (&Current->StationAddress, &IpConfigData->StationAddress) ||
1278 !EFI_IP4_EQUAL (&Current->SubnetMask, &IpConfigData->SubnetMask))) {
1279 Status = EFI_ALREADY_STARTED;
1280 goto ON_EXIT;
1281 }
1282
1283 if (Current->UseDefaultAddress && IP4_NO_MAPPING (IpInstance)) {
1284 Status = EFI_NO_MAPPING;
1285 goto ON_EXIT;
1286 }
1287 }
1288 }
1289
1290 //
1291 // Configure the instance or clean it up.
1292 //
1293 if (IpConfigData != NULL) {
1294 Status = Ip4ConfigProtocol (IpInstance, IpConfigData);
1295 } else {
1296 Status = Ip4CleanProtocol (IpInstance);
1297
1298 //
1299 // Don't change the state if it is DESTROY, consider the following
1300 // valid sequence: Mnp is unloaded-->Ip Stopped-->Udp Stopped,
1301 // Configure (ThisIp, NULL). If the state is changed to UNCONFIGED,
1302 // the unload fails miserably.
1303 //
1304 if (IpInstance->State == IP4_STATE_CONFIGED) {
1305 IpInstance->State = IP4_STATE_UNCONFIGED;
1306 }
1307 }
1308
1309 //
1310 // Update the MNP's configure data. Ip4ServiceConfigMnp will check
1311 // whether it is necessary to reconfigure the MNP.
1312 //
1313 Ip4ServiceConfigMnp (IpInstance->Service, FALSE);
1314
1315 //
1316 // Update the variable data.
1317 //
1318 Ip4SetVariableData (IpInstance->Service);
1319
1320 ON_EXIT:
1321 gBS->RestoreTPL (OldTpl);
1322 return Status;
1323
1324 }
1325
1326
1327 /**
1328 Change the IP4 child's multicast setting. The caller
1329 should make sure that the parameters is valid.
1330
1331 @param[in] IpInstance The IP4 child to change the setting.
1332 @param[in] JoinFlag TRUE to join the group, otherwise leave it
1333 @param[in] GroupAddress The target group address
1334
1335 @retval EFI_ALREADY_STARTED Want to join the group, but already a member of it
1336 @retval EFI_OUT_OF_RESOURCES Failed to allocate some resources.
1337 @retval EFI_DEVICE_ERROR Failed to set the group configuraton
1338 @retval EFI_SUCCESS Successfully updated the group setting.
1339 @retval EFI_NOT_FOUND Try to leave the group which it isn't a member.
1340
1341 **/
1342 EFI_STATUS
1343 Ip4Groups (
1344 IN IP4_PROTOCOL *IpInstance,
1345 IN BOOLEAN JoinFlag,
1346 IN EFI_IPv4_ADDRESS *GroupAddress OPTIONAL
1347 )
1348 {
1349 IP4_ADDR *Members;
1350 IP4_ADDR Group;
1351 UINT32 Index;
1352
1353 //
1354 // Add it to the instance's Groups, and join the group by IGMP.
1355 // IpInstance->Groups is in network byte order. IGMP operates in
1356 // host byte order
1357 //
1358 if (JoinFlag) {
1359 //
1360 // When JoinFlag is TRUE, GroupAddress shouldn't be NULL.
1361 //
1362 ASSERT (GroupAddress != NULL);
1363 CopyMem (&Group, GroupAddress, sizeof (IP4_ADDR));
1364
1365 for (Index = 0; Index < IpInstance->GroupCount; Index++) {
1366 if (IpInstance->Groups[Index] == Group) {
1367 return EFI_ALREADY_STARTED;
1368 }
1369 }
1370
1371 Members = Ip4CombineGroups (IpInstance->Groups, IpInstance->GroupCount, Group);
1372
1373 if (Members == NULL) {
1374 return EFI_OUT_OF_RESOURCES;
1375 }
1376
1377 if (EFI_ERROR (Ip4JoinGroup (IpInstance, NTOHL (Group)))) {
1378 FreePool (Members);
1379 return EFI_DEVICE_ERROR;
1380 }
1381
1382 if (IpInstance->Groups != NULL) {
1383 FreePool (IpInstance->Groups);
1384 }
1385
1386 IpInstance->Groups = Members;
1387 IpInstance->GroupCount++;
1388
1389 return EFI_SUCCESS;
1390 }
1391
1392 //
1393 // Leave the group. Leave all the groups if GroupAddress is NULL.
1394 // Must iterate from the end to the beginning because the GroupCount
1395 // is decreamented each time an address is removed..
1396 //
1397 for (Index = IpInstance->GroupCount; Index > 0 ; Index--) {
1398 Group = IpInstance->Groups[Index - 1];
1399
1400 if ((GroupAddress == NULL) || EFI_IP4_EQUAL (&Group, GroupAddress)) {
1401 if (EFI_ERROR (Ip4LeaveGroup (IpInstance, NTOHL (Group)))) {
1402 return EFI_DEVICE_ERROR;
1403 }
1404
1405 Ip4RemoveGroupAddr (IpInstance->Groups, IpInstance->GroupCount, Group);
1406 IpInstance->GroupCount--;
1407
1408 if (IpInstance->GroupCount == 0) {
1409 ASSERT (Index == 1);
1410
1411 FreePool (IpInstance->Groups);
1412 IpInstance->Groups = NULL;
1413 }
1414
1415 if (GroupAddress != NULL) {
1416 return EFI_SUCCESS;
1417 }
1418 }
1419 }
1420
1421 return ((GroupAddress != NULL) ? EFI_NOT_FOUND : EFI_SUCCESS);
1422 }
1423
1424
1425 /**
1426 Joins and leaves multicast groups.
1427
1428 The Groups() function is used to join and leave multicast group sessions. Joining
1429 a group will enable reception of matching multicast packets. Leaving a group will
1430 disable the multicast packet reception.
1431
1432 If JoinFlag is FALSE and GroupAddress is NULL, all joined groups will be left.
1433
1434 @param[in] This Pointer to the EFI_IP4_PROTOCOL instance.
1435 @param[in] JoinFlag Set to TRUE to join the multicast group session and FALSE to leave.
1436 @param[in] GroupAddress Pointer to the IPv4 multicast address.
1437
1438 @retval EFI_SUCCESS The operation completed successfully.
1439 @retval EFI_INVALID_PARAMETER One or more of the following is TRUE:
1440 - This is NULL.
1441 - JoinFlag is TRUE and GroupAddress is NULL.
1442 - GroupAddress is not NULL and *GroupAddress is
1443 not a multicast IPv4 address.
1444 @retval EFI_NOT_STARTED This instance has not been started.
1445 @retval EFI_NO_MAPPING When using the default address, configuration (DHCP, BOOTP,
1446 RARP, etc.) is not finished yet.
1447 @retval EFI_OUT_OF_RESOURCES System resources could not be allocated.
1448 @retval EFI_UNSUPPORTED This EFI IPv4 Protocol implementation does not support multicast groups.
1449 @retval EFI_ALREADY_STARTED The group address is already in the group table (when
1450 JoinFlag is TRUE).
1451 @retval EFI_NOT_FOUND The group address is not in the group table (when JoinFlag is FALSE).
1452 @retval EFI_DEVICE_ERROR An unexpected system or network error occurred.
1453
1454 **/
1455 EFI_STATUS
1456 EFIAPI
1457 EfiIp4Groups (
1458 IN EFI_IP4_PROTOCOL *This,
1459 IN BOOLEAN JoinFlag,
1460 IN EFI_IPv4_ADDRESS *GroupAddress OPTIONAL
1461 )
1462 {
1463 IP4_PROTOCOL *IpInstance;
1464 EFI_STATUS Status;
1465 EFI_TPL OldTpl;
1466 IP4_ADDR McastIp;
1467
1468 if ((This == NULL) || (JoinFlag && (GroupAddress == NULL))) {
1469 return EFI_INVALID_PARAMETER;
1470 }
1471
1472 if (GroupAddress != NULL) {
1473 CopyMem (&McastIp, GroupAddress, sizeof (IP4_ADDR));
1474
1475 if (!IP4_IS_MULTICAST (NTOHL (McastIp))) {
1476 return EFI_INVALID_PARAMETER;
1477 }
1478 }
1479
1480 IpInstance = IP4_INSTANCE_FROM_PROTOCOL (This);
1481 OldTpl = gBS->RaiseTPL (TPL_CALLBACK);
1482
1483 if (IpInstance->State != IP4_STATE_CONFIGED) {
1484 Status = EFI_NOT_STARTED;
1485 goto ON_EXIT;
1486 }
1487
1488 if (IpInstance->ConfigData.UseDefaultAddress && IP4_NO_MAPPING (IpInstance)) {
1489 Status = EFI_NO_MAPPING;
1490 goto ON_EXIT;
1491 }
1492
1493 Status = Ip4Groups (IpInstance, JoinFlag, GroupAddress);
1494
1495 ON_EXIT:
1496 gBS->RestoreTPL (OldTpl);
1497 return Status;
1498 }
1499
1500
1501 /**
1502 Adds and deletes routing table entries.
1503
1504 The Routes() function adds a route to or deletes a route from the routing table.
1505
1506 Routes are determined by comparing the SubnetAddress with the destination IPv4
1507 address arithmetically AND-ed with the SubnetMask. The gateway address must be
1508 on the same subnet as the configured station address.
1509
1510 The default route is added with SubnetAddress and SubnetMask both set to 0.0.0.0.
1511 The default route matches all destination IPv4 addresses that do not match any
1512 other routes.
1513
1514 A GatewayAddress that is zero is a nonroute. Packets are sent to the destination
1515 IP address if it can be found in the ARP cache or on the local subnet. One automatic
1516 nonroute entry will be inserted into the routing table for outgoing packets that
1517 are addressed to a local subnet (gateway address of 0.0.0.0).
1518
1519 Each EFI IPv4 Protocol instance has its own independent routing table. Those EFI
1520 IPv4 Protocol instances that use the default IPv4 address will also have copies
1521 of the routing table that was provided by the EFI_IP4_CONFIG_PROTOCOL, and these
1522 copies will be updated whenever the EIF IPv4 Protocol driver reconfigures its
1523 instances. As a result, client modification to the routing table will be lost.
1524
1525 @param[in] This Pointer to the EFI_IP4_PROTOCOL instance.
1526 @param[in] DeleteRoute Set to TRUE to delete this route from the routing table. Set to
1527 FALSE to add this route to the routing table. SubnetAddress
1528 and SubnetMask are used as the key to each route entry.
1529 @param[in] SubnetAddress The address of the subnet that needs to be routed.
1530 @param[in] SubnetMask The subnet mask of SubnetAddress.
1531 @param[in] GatewayAddress The unicast gateway IPv4 address for this route.
1532
1533 @retval EFI_SUCCESS The operation completed successfully.
1534 @retval EFI_NOT_STARTED The driver instance has not been started.
1535 @retval EFI_NO_MAPPING When using the default address, configuration (DHCP, BOOTP,
1536 RARP, etc.) is not finished yet.
1537 @retval EFI_INVALID_PARAMETER One or more of the following conditions is TRUE:
1538 - This is NULL.
1539 - SubnetAddress is NULL.
1540 - SubnetMask is NULL.
1541 - GatewayAddress is NULL.
1542 - *SubnetAddress is not a valid subnet address.
1543 - *SubnetMask is not a valid subnet mask.
1544 - *GatewayAddress is not a valid unicast IPv4 address.
1545 @retval EFI_OUT_OF_RESOURCES Could not add the entry to the routing table.
1546 @retval EFI_NOT_FOUND This route is not in the routing table (when DeleteRoute is TRUE).
1547 @retval EFI_ACCESS_DENIED The route is already defined in the routing table (when
1548 DeleteRoute is FALSE).
1549
1550 **/
1551 EFI_STATUS
1552 EFIAPI
1553 EfiIp4Routes (
1554 IN EFI_IP4_PROTOCOL *This,
1555 IN BOOLEAN DeleteRoute,
1556 IN EFI_IPv4_ADDRESS *SubnetAddress,
1557 IN EFI_IPv4_ADDRESS *SubnetMask,
1558 IN EFI_IPv4_ADDRESS *GatewayAddress
1559 )
1560 {
1561 IP4_PROTOCOL *IpInstance;
1562 IP4_INTERFACE *IpIf;
1563 IP4_ADDR Dest;
1564 IP4_ADDR Netmask;
1565 IP4_ADDR Nexthop;
1566 EFI_STATUS Status;
1567 EFI_TPL OldTpl;
1568
1569 //
1570 // First, validate the parameters
1571 //
1572 if ((This == NULL) || (SubnetAddress == NULL) ||
1573 (SubnetMask == NULL) || (GatewayAddress == NULL)) {
1574 return EFI_INVALID_PARAMETER;
1575 }
1576
1577 IpInstance = IP4_INSTANCE_FROM_PROTOCOL (This);
1578 OldTpl = gBS->RaiseTPL (TPL_CALLBACK);
1579
1580 if (IpInstance->State != IP4_STATE_CONFIGED) {
1581 Status = EFI_NOT_STARTED;
1582 goto ON_EXIT;
1583 }
1584
1585 if (IpInstance->ConfigData.UseDefaultAddress && IP4_NO_MAPPING (IpInstance)) {
1586 Status = EFI_NO_MAPPING;
1587 goto ON_EXIT;
1588 }
1589
1590 CopyMem (&Dest, SubnetAddress, sizeof (IP4_ADDR));
1591 CopyMem (&Netmask, SubnetMask, sizeof (IP4_ADDR));
1592 CopyMem (&Nexthop, GatewayAddress, sizeof (IP4_ADDR));
1593
1594 Dest = NTOHL (Dest);
1595 Netmask = NTOHL (Netmask);
1596 Nexthop = NTOHL (Nexthop);
1597
1598 IpIf = IpInstance->Interface;
1599
1600 if (!IP4_IS_VALID_NETMASK (Netmask)) {
1601 Status = EFI_INVALID_PARAMETER;
1602 goto ON_EXIT;
1603 }
1604
1605 //
1606 // the gateway address must be a unicast on the connected network if not zero.
1607 //
1608 if ((Nexthop != IP4_ALLZERO_ADDRESS) &&
1609 (!IP4_NET_EQUAL (Nexthop, IpIf->Ip, IpIf->SubnetMask) ||
1610 IP4_IS_BROADCAST (Ip4GetNetCast (Nexthop, IpIf)))) {
1611
1612 Status = EFI_INVALID_PARAMETER;
1613 goto ON_EXIT;
1614 }
1615
1616 if (DeleteRoute) {
1617 Status = Ip4DelRoute (IpInstance->RouteTable, Dest, Netmask, Nexthop);
1618 } else {
1619 Status = Ip4AddRoute (IpInstance->RouteTable, Dest, Netmask, Nexthop);
1620 }
1621
1622 ON_EXIT:
1623 gBS->RestoreTPL (OldTpl);
1624 return Status;
1625 }
1626
1627
1628 /**
1629 Check whether the user's token or event has already
1630 been enqueued on IP4's list.
1631
1632 @param[in] Map The container of either user's transmit or receive
1633 token.
1634 @param[in] Item Current item to check against
1635 @param[in] Context The Token to check againist.
1636
1637 @retval EFI_ACCESS_DENIED The token or event has already been enqueued in IP
1638 @retval EFI_SUCCESS The current item isn't the same token/event as the
1639 context.
1640
1641 **/
1642 EFI_STATUS
1643 EFIAPI
1644 Ip4TokenExist (
1645 IN NET_MAP *Map,
1646 IN NET_MAP_ITEM *Item,
1647 IN VOID *Context
1648 )
1649 {
1650 EFI_IP4_COMPLETION_TOKEN *Token;
1651 EFI_IP4_COMPLETION_TOKEN *TokenInItem;
1652
1653 Token = (EFI_IP4_COMPLETION_TOKEN *) Context;
1654 TokenInItem = (EFI_IP4_COMPLETION_TOKEN *) Item->Key;
1655
1656 if ((Token == TokenInItem) || (Token->Event == TokenInItem->Event)) {
1657 return EFI_ACCESS_DENIED;
1658 }
1659
1660 return EFI_SUCCESS;
1661 }
1662
1663 /**
1664 Validate the user's token against current station address.
1665
1666 @param[in] Token User's token to validate.
1667 @param[in] IpIf The IP4 child's interface.
1668 @param[in] RawData Set to TRUE to send unformatted packets.
1669
1670 @retval EFI_INVALID_PARAMETER Some parameters are invalid.
1671 @retval EFI_BAD_BUFFER_SIZE The user's option/data is too long.
1672 @retval EFI_SUCCESS The token is valid.
1673
1674 **/
1675 EFI_STATUS
1676 Ip4TxTokenValid (
1677 IN EFI_IP4_COMPLETION_TOKEN *Token,
1678 IN IP4_INTERFACE *IpIf,
1679 IN BOOLEAN RawData
1680 )
1681 {
1682 EFI_IP4_TRANSMIT_DATA *TxData;
1683 EFI_IP4_OVERRIDE_DATA *Override;
1684 IP4_ADDR Src;
1685 IP4_ADDR Gateway;
1686 UINT32 Offset;
1687 UINT32 Index;
1688 UINT32 HeadLen;
1689
1690 if ((Token == NULL) || (Token->Event == NULL) || (Token->Packet.TxData == NULL)) {
1691 return EFI_INVALID_PARAMETER;
1692 }
1693
1694 TxData = Token->Packet.TxData;
1695
1696 //
1697 // Check the fragment table: no empty fragment, and length isn't bogus.
1698 //
1699 if ((TxData->TotalDataLength == 0) || (TxData->FragmentCount == 0)) {
1700 return EFI_INVALID_PARAMETER;
1701 }
1702
1703 Offset = TxData->TotalDataLength;
1704
1705 if (Offset > IP4_MAX_PACKET_SIZE) {
1706 return EFI_BAD_BUFFER_SIZE;
1707 }
1708
1709 for (Index = 0; Index < TxData->FragmentCount; Index++) {
1710 if ((TxData->FragmentTable[Index].FragmentBuffer == NULL) ||
1711 (TxData->FragmentTable[Index].FragmentLength == 0)) {
1712
1713 return EFI_INVALID_PARAMETER;
1714 }
1715
1716 Offset -= TxData->FragmentTable[Index].FragmentLength;
1717 }
1718
1719 if (Offset != 0) {
1720 return EFI_INVALID_PARAMETER;
1721 }
1722
1723 //
1724 // NOTE that OptionsLength/OptionsBuffer/OverrideData are ignored if RawData
1725 // is TRUE.
1726 //
1727 if (RawData) {
1728 return EFI_SUCCESS;
1729 }
1730
1731 //
1732 // Check the IP options: no more than 40 bytes and format is OK
1733 //
1734 if (TxData->OptionsLength != 0) {
1735 if ((TxData->OptionsLength > 40) || (TxData->OptionsBuffer == NULL)) {
1736 return EFI_INVALID_PARAMETER;
1737 }
1738
1739 if (!Ip4OptionIsValid (TxData->OptionsBuffer, TxData->OptionsLength, FALSE)) {
1740 return EFI_INVALID_PARAMETER;
1741 }
1742 }
1743
1744 //
1745 // Check the source and gateway: they must be a valid unicast.
1746 // Gateway must also be on the connected network.
1747 //
1748 if (TxData->OverrideData != NULL) {
1749 Override = TxData->OverrideData;
1750
1751 CopyMem (&Src, &Override->SourceAddress, sizeof (IP4_ADDR));
1752 CopyMem (&Gateway, &Override->GatewayAddress, sizeof (IP4_ADDR));
1753
1754 Src = NTOHL (Src);
1755 Gateway = NTOHL (Gateway);
1756
1757 if ((NetGetIpClass (Src) > IP4_ADDR_CLASSC) ||
1758 (Src == IP4_ALLONE_ADDRESS) ||
1759 IP4_IS_BROADCAST (Ip4GetNetCast (Src, IpIf))) {
1760
1761 return EFI_INVALID_PARAMETER;
1762 }
1763
1764 //
1765 // If gateway isn't zero, it must be a unicast address, and
1766 // on the connected network.
1767 //
1768 if ((Gateway != IP4_ALLZERO_ADDRESS) &&
1769 ((NetGetIpClass (Gateway) > IP4_ADDR_CLASSC) ||
1770 !IP4_NET_EQUAL (Gateway, IpIf->Ip, IpIf->SubnetMask) ||
1771 IP4_IS_BROADCAST (Ip4GetNetCast (Gateway, IpIf)))) {
1772
1773 return EFI_INVALID_PARAMETER;
1774 }
1775 }
1776
1777 //
1778 // Check the packet length: Head length and packet length all has a limit
1779 //
1780 HeadLen = sizeof (IP4_HEAD) + ((TxData->OptionsLength + 3) &~0x03);
1781
1782 if ((HeadLen > IP4_MAX_HEADLEN) ||
1783 (TxData->TotalDataLength + HeadLen > IP4_MAX_PACKET_SIZE)) {
1784
1785 return EFI_BAD_BUFFER_SIZE;
1786 }
1787
1788 return EFI_SUCCESS;
1789 }
1790
1791
1792 /**
1793 The callback function for the net buffer which wraps the user's
1794 transmit token. Although it seems this function is pretty simple,
1795 there are some subtle things.
1796 When user requests the IP to transmit a packet by passing it a
1797 token, the token is wrapped in an IP4_TXTOKEN_WRAP and the data
1798 is wrapped in an net buffer. the net buffer's Free function is
1799 set to Ip4FreeTxToken. The Token and token wrap are added to the
1800 IP child's TxToken map. Then the buffer is passed to Ip4Output for
1801 transmission. If something error happened before that, the buffer
1802 is freed, which in turn will free the token wrap. The wrap may
1803 have been added to the TxToken map or not, and the user's event
1804 shouldn't be fired because we are still in the EfiIp4Transmit. If
1805 the buffer has been sent by Ip4Output, it should be removed from
1806 the TxToken map and user's event signaled. The token wrap and buffer
1807 are bound together. Check the comments in Ip4Output for information
1808 about IP fragmentation.
1809
1810 @param[in] Context The token's wrap
1811
1812 **/
1813 VOID
1814 EFIAPI
1815 Ip4FreeTxToken (
1816 IN VOID *Context
1817 )
1818 {
1819 IP4_TXTOKEN_WRAP *Wrap;
1820 NET_MAP_ITEM *Item;
1821
1822 Wrap = (IP4_TXTOKEN_WRAP *) Context;
1823
1824 //
1825 // Signal IpSecRecycleEvent to inform IPsec free the memory
1826 //
1827 if (Wrap->IpSecRecycleSignal != NULL) {
1828 gBS->SignalEvent (Wrap->IpSecRecycleSignal);
1829 }
1830
1831 //
1832 // Find the token in the instance's map. EfiIp4Transmit put the
1833 // token to the map. If that failed, NetMapFindKey will return NULL.
1834 //
1835 Item = NetMapFindKey (&Wrap->IpInstance->TxTokens, Wrap->Token);
1836
1837 if (Item != NULL) {
1838 NetMapRemoveItem (&Wrap->IpInstance->TxTokens, Item, NULL);
1839 }
1840
1841 if (Wrap->Sent) {
1842 gBS->SignalEvent (Wrap->Token->Event);
1843
1844 //
1845 // Dispatch the DPC queued by the NotifyFunction of Token->Event.
1846 //
1847 DispatchDpc ();
1848 }
1849
1850 FreePool (Wrap);
1851 }
1852
1853
1854 /**
1855 The callback function to Ip4Output to update the transmit status.
1856
1857 @param Ip4Instance The Ip4Instance that request the transmit.
1858 @param Packet The user's transmit request
1859 @param IoStatus The result of the transmission
1860 @param Flag Not used during transmission
1861 @param Context The token's wrap.
1862
1863 **/
1864 VOID
1865 Ip4OnPacketSent (
1866 IP4_PROTOCOL *Ip4Instance,
1867 NET_BUF *Packet,
1868 EFI_STATUS IoStatus,
1869 UINT32 Flag,
1870 VOID *Context
1871 )
1872 {
1873 IP4_TXTOKEN_WRAP *Wrap;
1874
1875 //
1876 // This is the transmission request from upper layer,
1877 // not the IP4 driver itself.
1878 //
1879 ASSERT (Ip4Instance != NULL);
1880
1881 //
1882 // The first fragment of the packet has been sent. Update
1883 // the token's status. That is, if fragmented, the transmit's
1884 // status is the first fragment's status. The Wrap will be
1885 // release when all the fragments are release. Check the comments
1886 // in Ip4FreeTxToken and Ip4Output for information.
1887 //
1888 Wrap = (IP4_TXTOKEN_WRAP *) Context;
1889 Wrap->Token->Status = IoStatus;
1890
1891 NetbufFree (Wrap->Packet);
1892 }
1893
1894
1895 /**
1896 Places outgoing data packets into the transmit queue.
1897
1898 The Transmit() function places a sending request in the transmit queue of this
1899 EFI IPv4 Protocol instance. Whenever the packet in the token is sent out or some
1900 errors occur, the event in the token will be signaled and the status is updated.
1901
1902 @param[in] This Pointer to the EFI_IP4_PROTOCOL instance.
1903 @param[in] Token Pointer to the transmit token.
1904
1905 @retval EFI_SUCCESS The data has been queued for transmission.
1906 @retval EFI_NOT_STARTED This instance has not been started.
1907 @retval EFI_NO_MAPPING When using the default address, configuration (DHCP, BOOTP,
1908 RARP, etc.) is not finished yet.
1909 @retval EFI_INVALID_PARAMETER One or more pameters are invalid.
1910 @retval EFI_ACCESS_DENIED The transmit completion token with the same Token.Event
1911 was already in the transmit queue.
1912 @retval EFI_NOT_READY The completion token could not be queued because the transmit
1913 queue is full.
1914 @retval EFI_NOT_FOUND Not route is found to destination address.
1915 @retval EFI_OUT_OF_RESOURCES Could not queue the transmit data.
1916 @retval EFI_BUFFER_TOO_SMALL Token.Packet.TxData.TotalDataLength is too
1917 short to transmit.
1918 @retval EFI_BAD_BUFFER_SIZE The length of the IPv4 header + option length + total data length is
1919 greater than MTU (or greater than the maximum packet size if
1920 Token.Packet.TxData.OverrideData.
1921 DoNotFragment is TRUE.)
1922
1923 **/
1924 EFI_STATUS
1925 EFIAPI
1926 EfiIp4Transmit (
1927 IN EFI_IP4_PROTOCOL *This,
1928 IN EFI_IP4_COMPLETION_TOKEN *Token
1929 )
1930 {
1931 IP4_SERVICE *IpSb;
1932 IP4_PROTOCOL *IpInstance;
1933 IP4_INTERFACE *IpIf;
1934 IP4_TXTOKEN_WRAP *Wrap;
1935 EFI_IP4_TRANSMIT_DATA *TxData;
1936 EFI_IP4_CONFIG_DATA *Config;
1937 EFI_IP4_OVERRIDE_DATA *Override;
1938 IP4_HEAD Head;
1939 IP4_ADDR GateWay;
1940 EFI_STATUS Status;
1941 EFI_TPL OldTpl;
1942 BOOLEAN DontFragment;
1943 UINT32 HeadLen;
1944 UINT8 RawHdrLen;
1945 UINT32 OptionsLength;
1946 UINT8 *OptionsBuffer;
1947 VOID *FirstFragment;
1948
1949 if (This == NULL) {
1950 return EFI_INVALID_PARAMETER;
1951 }
1952
1953 IpInstance = IP4_INSTANCE_FROM_PROTOCOL (This);
1954
1955 if (IpInstance->State != IP4_STATE_CONFIGED) {
1956 return EFI_NOT_STARTED;
1957 }
1958
1959 OldTpl = gBS->RaiseTPL (TPL_CALLBACK);
1960
1961 IpSb = IpInstance->Service;
1962 IpIf = IpInstance->Interface;
1963 Config = &IpInstance->ConfigData;
1964
1965 if (Config->UseDefaultAddress && IP4_NO_MAPPING (IpInstance)) {
1966 Status = EFI_NO_MAPPING;
1967 goto ON_EXIT;
1968 }
1969
1970 //
1971 // make sure that token is properly formated
1972 //
1973 Status = Ip4TxTokenValid (Token, IpIf, Config->RawData);
1974
1975 if (EFI_ERROR (Status)) {
1976 goto ON_EXIT;
1977 }
1978
1979 //
1980 // Check whether the token or signal already existed.
1981 //
1982 if (EFI_ERROR (NetMapIterate (&IpInstance->TxTokens, Ip4TokenExist, Token))) {
1983 Status = EFI_ACCESS_DENIED;
1984 goto ON_EXIT;
1985 }
1986
1987 //
1988 // Build the IP header, need to fill in the Tos, TotalLen, Id,
1989 // fragment, Ttl, protocol, Src, and Dst.
1990 //
1991 TxData = Token->Packet.TxData;
1992
1993 FirstFragment = NULL;
1994
1995 if (Config->RawData) {
1996 //
1997 // When RawData is TRUE, first buffer in FragmentTable points to a raw
1998 // IPv4 fragment including IPv4 header and options.
1999 //
2000 FirstFragment = TxData->FragmentTable[0].FragmentBuffer;
2001 CopyMem (&RawHdrLen, FirstFragment, sizeof (UINT8));
2002
2003 RawHdrLen = (UINT8) (RawHdrLen & 0x0f);
2004 if (RawHdrLen < 5) {
2005 return EFI_INVALID_PARAMETER;
2006 }
2007
2008 RawHdrLen = (UINT8) (RawHdrLen << 2);
2009
2010 CopyMem (&Head, FirstFragment, IP4_MIN_HEADLEN);
2011
2012 Ip4NtohHead (&Head);
2013 HeadLen = 0;
2014 DontFragment = IP4_DO_NOT_FRAGMENT (Head.Fragment);
2015
2016 if (!DontFragment) {
2017 return EFI_INVALID_PARAMETER;
2018 }
2019
2020 GateWay = IP4_ALLZERO_ADDRESS;
2021
2022 //
2023 // Get IPv4 options from first fragment.
2024 //
2025 if (RawHdrLen == IP4_MIN_HEADLEN) {
2026 OptionsLength = 0;
2027 OptionsBuffer = NULL;
2028 } else {
2029 OptionsLength = RawHdrLen - IP4_MIN_HEADLEN;
2030 OptionsBuffer = (UINT8 *) FirstFragment + IP4_MIN_HEADLEN;
2031 }
2032
2033 //
2034 // Trim off IPv4 header and options from first fragment.
2035 //
2036 TxData->FragmentTable[0].FragmentBuffer = (UINT8 *) FirstFragment + RawHdrLen;
2037 TxData->FragmentTable[0].FragmentLength = TxData->FragmentTable[0].FragmentLength - RawHdrLen;
2038 } else {
2039 CopyMem (&Head.Dst, &TxData->DestinationAddress, sizeof (IP4_ADDR));
2040 Head.Dst = NTOHL (Head.Dst);
2041
2042 if (TxData->OverrideData != NULL) {
2043 Override = TxData->OverrideData;
2044 Head.Protocol = Override->Protocol;
2045 Head.Tos = Override->TypeOfService;
2046 Head.Ttl = Override->TimeToLive;
2047 DontFragment = Override->DoNotFragment;
2048
2049 CopyMem (&Head.Src, &Override->SourceAddress, sizeof (IP4_ADDR));
2050 CopyMem (&GateWay, &Override->GatewayAddress, sizeof (IP4_ADDR));
2051
2052 Head.Src = NTOHL (Head.Src);
2053 GateWay = NTOHL (GateWay);
2054 } else {
2055 Head.Src = IpIf->Ip;
2056 GateWay = IP4_ALLZERO_ADDRESS;
2057 Head.Protocol = Config->DefaultProtocol;
2058 Head.Tos = Config->TypeOfService;
2059 Head.Ttl = Config->TimeToLive;
2060 DontFragment = Config->DoNotFragment;
2061 }
2062
2063 Head.Fragment = IP4_HEAD_FRAGMENT_FIELD (DontFragment, FALSE, 0);
2064 HeadLen = (TxData->OptionsLength + 3) & (~0x03);
2065
2066 OptionsLength = TxData->OptionsLength;
2067 OptionsBuffer = (UINT8 *) (TxData->OptionsBuffer);
2068 }
2069
2070 //
2071 // If don't fragment and fragment needed, return error
2072 //
2073 if (DontFragment && (TxData->TotalDataLength + HeadLen > IpSb->MaxPacketSize)) {
2074 Status = EFI_BAD_BUFFER_SIZE;
2075 goto ON_EXIT;
2076 }
2077
2078 //
2079 // OK, it survives all the validation check. Wrap the token in
2080 // a IP4_TXTOKEN_WRAP and the data in a netbuf
2081 //
2082 Status = EFI_OUT_OF_RESOURCES;
2083 Wrap = AllocateZeroPool (sizeof (IP4_TXTOKEN_WRAP));
2084 if (Wrap == NULL) {
2085 goto ON_EXIT;
2086 }
2087
2088 Wrap->IpInstance = IpInstance;
2089 Wrap->Token = Token;
2090 Wrap->Sent = FALSE;
2091 Wrap->Life = IP4_US_TO_SEC (Config->TransmitTimeout);
2092 Wrap->Packet = NetbufFromExt (
2093 (NET_FRAGMENT *) TxData->FragmentTable,
2094 TxData->FragmentCount,
2095 IP4_MAX_HEADLEN,
2096 0,
2097 Ip4FreeTxToken,
2098 Wrap
2099 );
2100
2101 if (Wrap->Packet == NULL) {
2102 FreePool (Wrap);
2103 goto ON_EXIT;
2104 }
2105
2106 Token->Status = EFI_NOT_READY;
2107
2108 if (EFI_ERROR (NetMapInsertTail (&IpInstance->TxTokens, Token, Wrap))) {
2109 //
2110 // NetbufFree will call Ip4FreeTxToken, which in turn will
2111 // free the IP4_TXTOKEN_WRAP. Now, the token wrap hasn't been
2112 // enqueued.
2113 //
2114 if (Config->RawData) {
2115 //
2116 // Restore pointer of first fragment in RawData mode.
2117 //
2118 TxData->FragmentTable[0].FragmentBuffer = (UINT8 *) FirstFragment;
2119 }
2120
2121 NetbufFree (Wrap->Packet);
2122 goto ON_EXIT;
2123 }
2124
2125 //
2126 // Mark the packet sent before output it. Mark it not sent again if the
2127 // returned status is not EFI_SUCCESS;
2128 //
2129 Wrap->Sent = TRUE;
2130
2131 Status = Ip4Output (
2132 IpSb,
2133 IpInstance,
2134 Wrap->Packet,
2135 &Head,
2136 OptionsBuffer,
2137 OptionsLength,
2138 GateWay,
2139 Ip4OnPacketSent,
2140 Wrap
2141 );
2142
2143 if (EFI_ERROR (Status)) {
2144 Wrap->Sent = FALSE;
2145
2146 if (Config->RawData) {
2147 //
2148 // Restore pointer of first fragment in RawData mode.
2149 //
2150 TxData->FragmentTable[0].FragmentBuffer = (UINT8 *) FirstFragment;
2151 }
2152
2153 NetbufFree (Wrap->Packet);
2154 }
2155
2156 if (Config->RawData) {
2157 //
2158 // Restore pointer of first fragment in RawData mode.
2159 //
2160 TxData->FragmentTable[0].FragmentBuffer = (UINT8 *) FirstFragment;
2161 }
2162
2163 ON_EXIT:
2164 gBS->RestoreTPL (OldTpl);
2165 return Status;
2166 }
2167
2168
2169 /**
2170 Places a receiving request into the receiving queue.
2171
2172 The Receive() function places a completion token into the receive packet queue.
2173 This function is always asynchronous.
2174
2175 The Token.Event field in the completion token must be filled in by the caller
2176 and cannot be NULL. When the receive operation completes, the EFI IPv4 Protocol
2177 driver updates the Token.Status and Token.Packet.RxData fields and the Token.Event
2178 is signaled.
2179
2180 @param[in] This Pointer to the EFI_IP4_PROTOCOL instance.
2181 @param[in] Token Pointer to a token that is associated with the receive data descriptor.
2182
2183 @retval EFI_SUCCESS The receive completion token was cached.
2184 @retval EFI_NOT_STARTED This EFI IPv4 Protocol instance has not been started.
2185 @retval EFI_NO_MAPPING When using the default address, configuration (DHCP, BOOTP, RARP, etc.)
2186 is not finished yet.
2187 @retval EFI_INVALID_PARAMETER One or more of the following conditions is TRUE:
2188 - This is NULL.
2189 - Token is NULL.
2190 - Token.Event is NULL.
2191 @retval EFI_OUT_OF_RESOURCES The receive completion token could not be queued due to a lack of system
2192 resources (usually memory).
2193 @retval EFI_DEVICE_ERROR An unexpected system or network error occurred.
2194 The EFI IPv4 Protocol instance has been reset to startup defaults.
2195 EFI_ACCESS_DENIED The receive completion token with the same Token.Event was already
2196 in the receive queue.
2197 @retval EFI_NOT_READY The receive request could not be queued because the receive queue is full.
2198 @retval EFI_ICMP_ERROR An ICMP error packet was received.
2199
2200 **/
2201 EFI_STATUS
2202 EFIAPI
2203 EfiIp4Receive (
2204 IN EFI_IP4_PROTOCOL *This,
2205 IN EFI_IP4_COMPLETION_TOKEN *Token
2206 )
2207 {
2208 IP4_PROTOCOL *IpInstance;
2209 EFI_STATUS Status;
2210 EFI_TPL OldTpl;
2211
2212 //
2213 // First validate the parameters
2214 //
2215 if ((This == NULL) || (Token == NULL) || (Token->Event == NULL)) {
2216 return EFI_INVALID_PARAMETER;
2217 }
2218
2219 IpInstance = IP4_INSTANCE_FROM_PROTOCOL (This);
2220
2221 OldTpl = gBS->RaiseTPL (TPL_CALLBACK);
2222
2223 if (IpInstance->State != IP4_STATE_CONFIGED) {
2224 Status = EFI_NOT_STARTED;
2225 goto ON_EXIT;
2226 }
2227
2228 //
2229 // Check whether the toke is already on the receive queue.
2230 //
2231 Status = NetMapIterate (&IpInstance->RxTokens, Ip4TokenExist, Token);
2232
2233 if (EFI_ERROR (Status)) {
2234 Status = EFI_ACCESS_DENIED;
2235 goto ON_EXIT;
2236 }
2237
2238 //
2239 // Queue the token then check whether there is pending received packet.
2240 //
2241 Status = NetMapInsertTail (&IpInstance->RxTokens, Token, NULL);
2242
2243 if (EFI_ERROR (Status)) {
2244 goto ON_EXIT;
2245 }
2246
2247 Status = Ip4InstanceDeliverPacket (IpInstance);
2248
2249 //
2250 // Dispatch the DPC queued by the NotifyFunction of this instane's receive
2251 // event.
2252 //
2253 DispatchDpc ();
2254
2255 ON_EXIT:
2256 gBS->RestoreTPL (OldTpl);
2257 return Status;
2258 }
2259
2260
2261 /**
2262 Cancel the transmitted but not recycled packet. If a matching
2263 token is found, it will call Ip4CancelPacket to cancel the
2264 packet. Ip4CancelPacket will cancel all the fragments of the
2265 packet. When all the fragments are freed, the IP4_TXTOKEN_WRAP
2266 will be deleted from the Map, and user's event signalled.
2267 Because Ip4CancelPacket and other functions are all called in
2268 line, so, after Ip4CancelPacket returns, the Item has been freed.
2269
2270 @param[in] Map The IP4 child's transmit queue
2271 @param[in] Item The current transmitted packet to test.
2272 @param[in] Context The user's token to cancel.
2273
2274 @retval EFI_SUCCESS Continue to check the next Item.
2275 @retval EFI_ABORTED The user's Token (Token != NULL) is cancelled.
2276
2277 **/
2278 EFI_STATUS
2279 EFIAPI
2280 Ip4CancelTxTokens (
2281 IN NET_MAP *Map,
2282 IN NET_MAP_ITEM *Item,
2283 IN VOID *Context
2284 )
2285 {
2286 EFI_IP4_COMPLETION_TOKEN *Token;
2287 IP4_TXTOKEN_WRAP *Wrap;
2288
2289 Token = (EFI_IP4_COMPLETION_TOKEN *) Context;
2290
2291 //
2292 // Return EFI_SUCCESS to check the next item in the map if
2293 // this one doesn't match.
2294 //
2295 if ((Token != NULL) && (Token != Item->Key)) {
2296 return EFI_SUCCESS;
2297 }
2298
2299 Wrap = (IP4_TXTOKEN_WRAP *) Item->Value;
2300 ASSERT (Wrap != NULL);
2301
2302 //
2303 // Don't access the Item, Wrap and Token's members after this point.
2304 // Item and wrap has been freed. And we no longer own the Token.
2305 //
2306 Ip4CancelPacket (Wrap->IpInstance->Interface, Wrap->Packet, EFI_ABORTED);
2307
2308 //
2309 // If only one item is to be cancel, return EFI_ABORTED to stop
2310 // iterating the map any more.
2311 //
2312 if (Token != NULL) {
2313 return EFI_ABORTED;
2314 }
2315
2316 return EFI_SUCCESS;
2317 }
2318
2319
2320 /**
2321 Cancel the receive request. This is quiet simple, because
2322 it is only enqueued in our local receive map.
2323
2324 @param[in] Map The IP4 child's receive queue
2325 @param[in] Item Current receive request to cancel.
2326 @param[in] Context The user's token to cancel
2327
2328 @retval EFI_SUCCESS Continue to check the next receive request on the
2329 queue.
2330 @retval EFI_ABORTED The user's token (token != NULL) has been
2331 cancelled.
2332
2333 **/
2334 EFI_STATUS
2335 EFIAPI
2336 Ip4CancelRxTokens (
2337 IN NET_MAP *Map,
2338 IN NET_MAP_ITEM *Item,
2339 IN VOID *Context
2340 )
2341 {
2342 EFI_IP4_COMPLETION_TOKEN *Token;
2343 EFI_IP4_COMPLETION_TOKEN *This;
2344
2345 Token = (EFI_IP4_COMPLETION_TOKEN *) Context;
2346 This = Item->Key;
2347
2348 if ((Token != NULL) && (Token != This)) {
2349 return EFI_SUCCESS;
2350 }
2351
2352 NetMapRemoveItem (Map, Item, NULL);
2353
2354 This->Status = EFI_ABORTED;
2355 This->Packet.RxData = NULL;
2356 gBS->SignalEvent (This->Event);
2357
2358 if (Token != NULL) {
2359 return EFI_ABORTED;
2360 }
2361
2362 return EFI_SUCCESS;
2363 }
2364
2365
2366 /**
2367 Cancel the user's receive/transmit request.
2368
2369 @param[in] IpInstance The IP4 child
2370 @param[in] Token The token to cancel. If NULL, all token will be
2371 cancelled.
2372
2373 @retval EFI_SUCCESS The token is cancelled
2374 @retval EFI_NOT_FOUND The token isn't found on either the
2375 transmit/receive queue
2376 @retval EFI_DEVICE_ERROR Not all token is cancelled when Token is NULL.
2377
2378 **/
2379 EFI_STATUS
2380 Ip4Cancel (
2381 IN IP4_PROTOCOL *IpInstance,
2382 IN EFI_IP4_COMPLETION_TOKEN *Token OPTIONAL
2383 )
2384 {
2385 EFI_STATUS Status;
2386
2387 //
2388 // First check the transmitted packet. Ip4CancelTxTokens returns
2389 // EFI_ABORTED to mean that the token has been cancelled when
2390 // token != NULL. So, return EFI_SUCCESS for this condition.
2391 //
2392 Status = NetMapIterate (&IpInstance->TxTokens, Ip4CancelTxTokens, Token);
2393
2394 if (EFI_ERROR (Status)) {
2395 if ((Token != NULL) && (Status == EFI_ABORTED)) {
2396 return EFI_SUCCESS;
2397 }
2398
2399 return Status;
2400 }
2401
2402 //
2403 // Check the receive queue. Ip4CancelRxTokens also returns EFI_ABORT
2404 // for Token!=NULL and it is cancelled.
2405 //
2406 Status = NetMapIterate (&IpInstance->RxTokens, Ip4CancelRxTokens, Token);
2407 //
2408 // Dispatch the DPCs queued by the NotifyFunction of the canceled rx token's
2409 // events.
2410 //
2411 DispatchDpc ();
2412 if (EFI_ERROR (Status)) {
2413 if ((Token != NULL) && (Status == EFI_ABORTED)) {
2414 return EFI_SUCCESS;
2415 }
2416
2417 return Status;
2418 }
2419
2420 //
2421 // OK, if the Token is found when Token != NULL, the NetMapIterate
2422 // will return EFI_ABORTED, which has been interrupted as EFI_SUCCESS.
2423 //
2424 if (Token != NULL) {
2425 return EFI_NOT_FOUND;
2426 }
2427
2428 //
2429 // If Token == NULL, cancel all the tokens. return error if no
2430 // all of them are cancelled.
2431 //
2432 if (!NetMapIsEmpty (&IpInstance->TxTokens) ||
2433 !NetMapIsEmpty (&IpInstance->RxTokens)) {
2434
2435 return EFI_DEVICE_ERROR;
2436 }
2437
2438 return EFI_SUCCESS;
2439 }
2440
2441
2442 /**
2443 Abort an asynchronous transmit or receive request.
2444
2445 The Cancel() function is used to abort a pending transmit or receive request.
2446 If the token is in the transmit or receive request queues, after calling this
2447 function, Token->Status will be set to EFI_ABORTED and then Token->Event will
2448 be signaled. If the token is not in one of the queues, which usually means the
2449 asynchronous operation has completed, this function will not signal the token
2450 and EFI_NOT_FOUND is returned.
2451
2452 @param[in] This Pointer to the EFI_IP4_PROTOCOL instance.
2453 @param[in] Token Pointer to a token that has been issued by
2454 EFI_IP4_PROTOCOL.Transmit() or
2455 EFI_IP4_PROTOCOL.Receive(). If NULL, all pending
2456 tokens are aborted. Type EFI_IP4_COMPLETION_TOKEN is
2457 defined in EFI_IP4_PROTOCOL.Transmit().
2458
2459 @retval EFI_SUCCESS The asynchronous I/O request was aborted and
2460 Token.->Event was signaled. When Token is NULL, all
2461 pending requests were aborted and their events were signaled.
2462 @retval EFI_INVALID_PARAMETER This is NULL.
2463 @retval EFI_NOT_STARTED This instance has not been started.
2464 @retval EFI_NO_MAPPING When using the default address, configuration (DHCP, BOOTP,
2465 RARP, etc.) is not finished yet.
2466 @retval EFI_NOT_FOUND When Token is not NULL, the asynchronous I/O request was
2467 not found in the transmit or receive queue. It has either completed
2468 or was not issued by Transmit() and Receive().
2469
2470 **/
2471 EFI_STATUS
2472 EFIAPI
2473 EfiIp4Cancel (
2474 IN EFI_IP4_PROTOCOL *This,
2475 IN EFI_IP4_COMPLETION_TOKEN *Token OPTIONAL
2476 )
2477 {
2478 IP4_PROTOCOL *IpInstance;
2479 EFI_STATUS Status;
2480 EFI_TPL OldTpl;
2481
2482 if (This == NULL) {
2483 return EFI_INVALID_PARAMETER;
2484 }
2485
2486 IpInstance = IP4_INSTANCE_FROM_PROTOCOL (This);
2487
2488 OldTpl = gBS->RaiseTPL (TPL_CALLBACK);
2489
2490 if (IpInstance->State != IP4_STATE_CONFIGED) {
2491 Status = EFI_NOT_STARTED;
2492 goto ON_EXIT;
2493 }
2494
2495 if (IpInstance->ConfigData.UseDefaultAddress && IP4_NO_MAPPING (IpInstance)) {
2496 Status = EFI_NO_MAPPING;
2497 goto ON_EXIT;
2498 }
2499
2500 Status = Ip4Cancel (IpInstance, Token);
2501
2502 ON_EXIT:
2503 gBS->RestoreTPL (OldTpl);
2504 return Status;
2505 }
2506
2507
2508 /**
2509 Polls for incoming data packets and processes outgoing data packets.
2510
2511 The Poll() function polls for incoming data packets and processes outgoing data
2512 packets. Network drivers and applications can call the EFI_IP4_PROTOCOL.Poll()
2513 function to increase the rate that data packets are moved between the communications
2514 device and the transmit and receive queues.
2515
2516 In some systems the periodic timer event may not poll the underlying communications
2517 device fast enough to transmit and/or receive all data packets without missing
2518 incoming packets or dropping outgoing packets. Drivers and applications that are
2519 experiencing packet loss should try calling the EFI_IP4_PROTOCOL.Poll() function
2520 more often.
2521
2522 @param[in] This Pointer to the EFI_IP4_PROTOCOL instance.
2523
2524 @retval EFI_SUCCESS Incoming or outgoing data was processed.
2525 @retval EFI_NOT_STARTED This EFI IPv4 Protocol instance has not been started.
2526 @retval EFI_NO_MAPPING When using the default address, configuration (DHCP, BOOTP,
2527 RARP, etc.) is not finished yet.
2528 @retval EFI_INVALID_PARAMETER This is NULL.
2529 @retval EFI_DEVICE_ERROR An unexpected system or network error occurred.
2530 @retval EFI_NOT_READY No incoming or outgoing data is processed.
2531 @retval EFI_TIMEOUT Data was dropped out of the transmit and/or receive queue.
2532 Consider increasing the polling rate.
2533
2534 **/
2535 EFI_STATUS
2536 EFIAPI
2537 EfiIp4Poll (
2538 IN EFI_IP4_PROTOCOL *This
2539 )
2540 {
2541 IP4_PROTOCOL *IpInstance;
2542 EFI_MANAGED_NETWORK_PROTOCOL *Mnp;
2543
2544 if (This == NULL) {
2545 return EFI_INVALID_PARAMETER;
2546 }
2547
2548 IpInstance = IP4_INSTANCE_FROM_PROTOCOL (This);
2549
2550 if (IpInstance->State == IP4_STATE_UNCONFIGED) {
2551 return EFI_NOT_STARTED;
2552 }
2553
2554 Mnp = IpInstance->Service->Mnp;
2555
2556 //
2557 // Don't lock the Poll function to enable the deliver of
2558 // the packet polled up.
2559 //
2560 return Mnp->Poll (Mnp);
2561 }
2562
2563 /**
2564 Decrease the life of the transmitted packets. If it is
2565 decreased to zero, cancel the packet. This function is
2566 called by Ip4PacketTimerTicking which time out both the
2567 received-but-not-delivered and transmitted-but-not-recycle
2568 packets.
2569
2570 @param[in] Map The IP4 child's transmit map.
2571 @param[in] Item Current transmitted packet
2572 @param[in] Context Not used.
2573
2574 @retval EFI_SUCCESS Always returns EFI_SUCCESS
2575
2576 **/
2577 EFI_STATUS
2578 EFIAPI
2579 Ip4SentPacketTicking (
2580 IN NET_MAP *Map,
2581 IN NET_MAP_ITEM *Item,
2582 IN VOID *Context
2583 )
2584 {
2585 IP4_TXTOKEN_WRAP *Wrap;
2586
2587 Wrap = (IP4_TXTOKEN_WRAP *) Item->Value;
2588 ASSERT (Wrap != NULL);
2589
2590 if ((Wrap->Life > 0) && (--Wrap->Life == 0)) {
2591 Ip4CancelPacket (Wrap->IpInstance->Interface, Wrap->Packet, EFI_ABORTED);
2592 }
2593
2594 return EFI_SUCCESS;
2595 }
2596
2597
2598 /**
2599 The heart beat timer of IP4 service instance. It times out
2600 all of its IP4 children's received-but-not-delivered and
2601 transmitted-but-not-recycle packets, and provides time input
2602 for its IGMP protocol.
2603
2604 @param[in] Event The IP4 service instance's heart beat timer.
2605 @param[in] Context The IP4 service instance.
2606
2607 **/
2608 VOID
2609 EFIAPI
2610 Ip4TimerTicking (
2611 IN EFI_EVENT Event,
2612 IN VOID *Context
2613 )
2614 {
2615 IP4_SERVICE *IpSb;
2616
2617 IpSb = (IP4_SERVICE *) Context;
2618 NET_CHECK_SIGNATURE (IpSb, IP4_SERVICE_SIGNATURE);
2619
2620 Ip4PacketTimerTicking (IpSb);
2621 Ip4IgmpTicking (IpSb);
2622 }