]> git.proxmox.com Git - mirror_edk2.git/blame - MdeModulePkg/Include/Library/IpIoLib.h
Update the copyright notice format
[mirror_edk2.git] / MdeModulePkg / Include / Library / IpIoLib.h
CommitLineData
97b38d4e 1/** @file\r
fb115c61 2 This library is only intended to be used by UEFI network stack modules.\r
3 It provides the combined IpIo layer on the EFI IP4 Protocol and EFI IP6 protocol.\r
97b38d4e 4\r
cd5ebaa0 5Copyright (c) 2005 - 2010, Intel Corporation. All rights reserved.<BR>\r
64a80549 6This program and the accompanying materials are licensed and made available under \r
7the terms and conditions of the BSD License that accompanies this distribution. \r
8The full text of the license may be found at\r
9http://opensource.org/licenses/bsd-license.php. \r
97b38d4e 10\r
64a80549 11THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, \r
97b38d4e 12WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r
13\r
14**/\r
15\r
16#ifndef _IP_IO_H_\r
17#define _IP_IO_H_\r
18\r
19#include <Protocol/Ip4.h>\r
fb115c61 20#include <Protocol/Ip6.h>\r
cdfdbb97 21\r
97b38d4e 22#include <Library/NetLib.h>\r
23\r
24//\r
e9b67286 25// type and code define for ICMP protocol error \r
97b38d4e 26// from IP\r
27//\r
28#define ICMP_TYPE_UNREACH 3\r
cdfdbb97 29#define ICMP_TYPE_TIMXCEED 11\r
97b38d4e 30#define ICMP_TYPE_PARAMPROB 12\r
31#define ICMP_TYPE_SOURCEQUENCH 4\r
32\r
33#define ICMP_CODE_UNREACH_NET 0\r
34#define ICMP_CODE_UNREACH_HOST 1\r
35#define ICMP_CODE_UNREACH_PROTOCOL 2\r
36#define ICMP_CODE_UNREACH_PORT 3\r
37#define ICMP_CODE_UNREACH_NEEDFRAG 4\r
38#define ICMP_CODE_UNREACH_SRCFAIL 5\r
39#define ICMP_CODE_UNREACH_NET_UNKNOWN 6\r
40#define ICMP_CODE_UNREACH_HOST_UNKNOWN 7\r
41#define ICMP_CODE_UNREACH_ISOLATED 8\r
42#define ICMP_CODE_UNREACH_NET_PROHIB 9\r
43#define ICMP_CODE_UNREACH_HOST_PROHIB 10\r
44#define ICMP_CODE_UNREACH_TOSNET 11\r
45#define ICMP_CODE_UNREACH_TOSHOST 12\r
46\r
cdfdbb97 47/**\r
e9b67286 48 Get the IP header length from the struct EFI_IP4_HEADER. HeaderLength is\r
cdfdbb97 49 Internet header length in 32-bit words, so HeaderLength<<2 is the real\r
50 length of IP header.\r
51 \r
64a80549 52 @param[out] HdrPtr A pointer to EFI_IP4_HEADER.\r
cdfdbb97 53 \r
64a80549 54 @return The IP header length.\r
cdfdbb97 55**/\r
56#define EFI_IP4_HEADER_LEN(HdrPtr) ((HdrPtr)->HeaderLength << 2)\r
57\r
58/**\r
59 To types of ICMP error which consist of ICMP header, IP header and original \r
60 datagram's data, get length from sum of ICMP header length, IP header length \r
61 and first 64 bits of datagram's data length.\r
62 \r
64a80549 63 @param[in] IpHdr A pointer to EFI_IP4_HEADER.\r
cdfdbb97 64 \r
64a80549 65 @return The ICMP error length.\r
cdfdbb97 66**/\r
67#define ICMP_ERRLEN(IpHdr) \\r
68 (sizeof(IP4_ICMP_HEAD) + EFI_IP4_HEADER_LEN(IpHdr) + 8)\r
69\r
70/**\r
71 Get the packet header from NET_BUF.\r
72 \r
64a80549 73 @param[out] Buf A pointer to NET_BUF.\r
74 @param[in] Type Header type.\r
cdfdbb97 75 \r
64a80549 76 @return The pointer to packet header.\r
cdfdbb97 77**/\r
78#define NET_PROTO_HDR(Buf, Type) ((Type *) ((Buf)->BlockOp[0].Head))\r
79\r
80 \r
fb115c61 81extern EFI_IP4_CONFIG_DATA mIp4IoDefaultIpConfigData;\r
82extern EFI_IP6_CONFIG_DATA mIp6IoDefaultIpConfigData;\r
83\r
cdfdbb97 84\r
e29a2e7e 85///\r
86/// This error will be delivered to the\r
87/// listening transportation layer protocol\r
88/// that consumes IpIO.\r
89///\r
b45b45b2 90\r
91#define ICMP_ERR_UNREACH_NET 0\r
92#define ICMP_ERR_UNREACH_HOST 1\r
93#define ICMP_ERR_UNREACH_PROTOCOL 2\r
94#define ICMP_ERR_UNREACH_PORT 3\r
95#define ICMP_ERR_MSGSIZE 4\r
96#define ICMP_ERR_UNREACH_SRCFAIL 5\r
97#define ICMP_ERR_TIMXCEED_INTRANS 6\r
98#define ICMP_ERR_TIMXCEED_REASS 7\r
99#define ICMP_ERR_QUENCH 8\r
100#define ICMP_ERR_PARAMPROB 9\r
101\r
102#define ICMP6_ERR_UNREACH_NET 0\r
103#define ICMP6_ERR_UNREACH_HOST 1\r
104#define ICMP6_ERR_UNREACH_PROTOCOL 2\r
105#define ICMP6_ERR_UNREACH_PORT 3\r
106#define ICMP6_ERR_PACKAGE_TOOBIG 4\r
107#define ICMP6_ERR_TIMXCEED_HOPLIMIT 5\r
108#define ICMP6_ERR_TIMXCEED_REASS 6\r
109#define ICMP6_ERR_PARAMPROB_HEADER 7\r
110#define ICMP6_ERR_PARAMPROB_NEXHEADER 8\r
111#define ICMP6_ERR_PARAMPROB_IPV6OPTION 9\r
fb115c61 112\r
e29a2e7e 113///\r
e9b67286 114/// The helper struct for IpIoGetIcmpErrStatus(). It is for internal use only.\r
e29a2e7e 115///\r
cdfdbb97 116typedef struct {\r
fb115c61 117 BOOLEAN IsHard;\r
118 BOOLEAN Notify;\r
97b38d4e 119} ICMP_ERROR_INFO;\r
120\r
fb115c61 121typedef union {\r
122 EFI_IP4_COMPLETION_TOKEN Ip4Token;\r
123 EFI_IP6_COMPLETION_TOKEN Ip6Token;\r
124} IP_IO_IP_COMPLETION_TOKEN;\r
125\r
126typedef union {\r
127 EFI_IP4_TRANSMIT_DATA Ip4TxData;\r
128 EFI_IP6_TRANSMIT_DATA Ip6TxData;\r
129} IP_IO_IP_TX_DATA;\r
130\r
131typedef union {\r
132 EFI_IP4_RECEIVE_DATA Ip4RxData;\r
133 EFI_IP6_RECEIVE_DATA Ip6RxData;\r
134} IP_IO_IP_RX_DATA;\r
135\r
136typedef union {\r
137 EFI_IP4_OVERRIDE_DATA Ip4OverrideData;\r
138 EFI_IP6_OVERRIDE_DATA Ip6OverrideData;\r
139} IP_IO_OVERRIDE;\r
140\r
141typedef union {\r
142 EFI_IP4_CONFIG_DATA Ip4CfgData;\r
143 EFI_IP6_CONFIG_DATA Ip6CfgData;\r
144} IP_IO_IP_CONFIG_DATA;\r
145\r
b45b45b2 146typedef union {\r
147 EFI_IP4_HEADER *Ip4Hdr;\r
148 EFI_IP6_HEADER *Ip6Hdr;\r
149} IP_IO_IP_HEADER;\r
150\r
151typedef union {\r
152 IP4_ADDR SubnetMask;\r
153 UINT8 PrefixLength;\r
154} IP_IO_IP_MASK;\r
155\r
e29a2e7e 156///\r
157/// The IP session for an IP receive packet.\r
158///\r
97b38d4e 159typedef struct _EFI_NET_SESSION_DATA {\r
64a80549 160 EFI_IP_ADDRESS Source; ///< Source IP of the received packet.\r
161 EFI_IP_ADDRESS Dest; ///< Destination IP of the received packet.\r
162 IP_IO_IP_HEADER IpHdr; ///< IP header of the received packet.\r
a09ee46d 163 UINT32 IpHdrLen; ///< IP header length of the received packet. \r
164 ///< For IPv6, it includes the IP6 header \r
165 ///< length and extension header length. For\r
166 ///< IPv4, it includes the IP4 header length\r
167 ///< and options length.\r
64a80549 168 UINT8 IpVersion; ///< The IP version of the received packet.\r
97b38d4e 169} EFI_NET_SESSION_DATA;\r
170\r
e29a2e7e 171/**\r
172 The prototype is called back when an IP packet is received.\r
173 \r
64a80549 174 @param[in] Status The result of the receive request.\r
175 @param[in] IcmpErr Valid when Status is EFI_ICMP_ERROR.\r
176 @param[in] NetSession The IP session for the received packet.\r
177 @param[in] Pkt The packet received.\r
e9b67286 178 @param[in] Context The data provided by the user for the received packet when\r
cdfdbb97 179 the callback is registered in IP_IO_OPEN_DATA::RcvdContext.\r
e29a2e7e 180 \r
181**/\r
97b38d4e 182typedef\r
183VOID\r
e798cd87 184(EFIAPI *PKT_RCVD_NOTIFY) (\r
e29a2e7e 185 IN EFI_STATUS Status, \r
b45b45b2 186 IN UINT8 IcmpErr,\r
e29a2e7e 187 IN EFI_NET_SESSION_DATA *NetSession,\r
188 IN NET_BUF *Pkt,\r
189 IN VOID *Context\r
97b38d4e 190 );\r
191\r
e29a2e7e 192/**\r
193 The prototype is called back when an IP packet is sent.\r
194 \r
64a80549 195 @param[in] Status Result of the IP packet being sent.\r
cdfdbb97 196 @param[in] Context The data provided by user for the received packet when\r
197 the callback is registered in IP_IO_OPEN_DATA::SndContext.\r
64a80549 198 @param[in] Sender A pointer to EFI_IP4_PROTOCOL or EFI_IP6_PROTOCOL.\r
199 @param[in] NotifyData The Context data specified when calling IpIoSend()\r
e29a2e7e 200 \r
201**/\r
97b38d4e 202typedef\r
203VOID\r
e798cd87 204(EFIAPI *PKT_SENT_NOTIFY) (\r
e29a2e7e 205 IN EFI_STATUS Status,\r
206 IN VOID *Context,\r
207 IN VOID *Sender,\r
208 IN VOID *NotifyData\r
97b38d4e 209 );\r
210\r
e29a2e7e 211///\r
fb115c61 212/// This data structure wraps Ip4/Ip6 instances. The IpIo Library uses it for all\r
213/// Ip4/Ip6 operations.\r
e29a2e7e 214///\r
97b38d4e 215typedef struct _IP_IO {\r
e29a2e7e 216 ///\r
217 /// The node used to link this IpIo to the active IpIo list.\r
218 ///\r
97b38d4e 219 LIST_ENTRY Entry;\r
220\r
e29a2e7e 221 ///\r
222 /// The list used to maintain the IP instance for different sending purpose.\r
223 ///\r
97b38d4e 224 LIST_ENTRY IpList;\r
e29a2e7e 225 \r
97b38d4e 226 EFI_HANDLE Controller;\r
227 EFI_HANDLE Image;\r
228 EFI_HANDLE ChildHandle;\r
e29a2e7e 229 //\r
230 // The IP instance consumed by this IP_IO\r
231 //\r
fb115c61 232 VOID *Ip;\r
97b38d4e 233 BOOLEAN IsConfigured;\r
234\r
e29a2e7e 235 ///\r
64a80549 236 /// Some ip configuration data can be changed.\r
e29a2e7e 237 ///\r
97b38d4e 238 UINT8 Protocol;\r
239\r
e29a2e7e 240 ///\r
64a80549 241 /// Token and event used to get data from IP.\r
e29a2e7e 242 ///\r
fb115c61 243 IP_IO_IP_COMPLETION_TOKEN RcvToken; \r
97b38d4e 244\r
e29a2e7e 245 ///\r
64a80549 246 /// List entry used to link the token passed to IP_IO.\r
e29a2e7e 247 ///\r
97b38d4e 248 LIST_ENTRY PendingSndList;\r
249\r
250 //\r
251 // User interface used to get notify from IP_IO\r
252 //\r
64a80549 253 VOID *RcvdContext; ///< See IP_IO_OPEN_DATA::RcvdContext.\r
254 VOID *SndContext; ///< See IP_IO_OPEN_DATA::SndContext.\r
255 PKT_RCVD_NOTIFY PktRcvdNotify; ///< See IP_IO_OPEN_DATA::PktRcvdNotify.\r
256 PKT_SENT_NOTIFY PktSentNotify; ///< See IP_IO_OPEN_DATA::PktSentNotify.\r
b45b45b2 257 UINT8 IpVersion;\r
97b38d4e 258} IP_IO;\r
259\r
e29a2e7e 260///\r
e9b67286 261/// The struct is for the user to pass IP configuration and callbacks to IP_IO.\r
e29a2e7e 262/// It is used by IpIoOpen().\r
263///\r
97b38d4e 264typedef struct _IP_IO_OPEN_DATA {\r
64a80549 265 IP_IO_IP_CONFIG_DATA IpConfigData; ///< Configuration of the IP instance.\r
266 VOID *RcvdContext; ///< Context data used by receive callback.\r
267 VOID *SndContext; ///< Context data used by send callback.\r
268 PKT_RCVD_NOTIFY PktRcvdNotify; ///< Receive callback.\r
269 PKT_SENT_NOTIFY PktSentNotify; ///< Send callback.\r
97b38d4e 270} IP_IO_OPEN_DATA;\r
271\r
e29a2e7e 272///\r
273/// Internal struct book-keeping send request of IP_IO.\r
274///\r
275/// An IP_IO_SEND_ENTRY will be created each time a send request is issued to\r
276/// IP_IO via IpIoSend().\r
277///\r
97b38d4e 278typedef struct _IP_IO_SEND_ENTRY {\r
279 LIST_ENTRY Entry;\r
280 IP_IO *IpIo;\r
281 VOID *Context;\r
282 VOID *NotifyData;\r
fb115c61 283 VOID *Ip;\r
97b38d4e 284 NET_BUF *Pkt;\r
fb115c61 285 IP_IO_IP_COMPLETION_TOKEN SndToken;\r
97b38d4e 286} IP_IO_SEND_ENTRY;\r
287\r
e29a2e7e 288///\r
289/// The IP_IO_IP_INFO is used in IpIoSend() to override the default IP instance\r
290/// in IP_IO.\r
291///\r
97b38d4e 292typedef struct _IP_IO_IP_INFO {\r
fb115c61 293 EFI_IP_ADDRESS Addr;\r
b45b45b2 294 IP_IO_IP_MASK PreMask;\r
97b38d4e 295 LIST_ENTRY Entry;\r
296 EFI_HANDLE ChildHandle;\r
fb115c61 297 VOID *Ip;\r
298 IP_IO_IP_COMPLETION_TOKEN DummyRcvToken;\r
97b38d4e 299 INTN RefCnt;\r
b45b45b2 300 UINT8 IpVersion;\r
97b38d4e 301} IP_IO_IP_INFO;\r
302\r
303/**\r
304 Create a new IP_IO instance.\r
e29a2e7e 305 \r
fb115c61 306 This function uses IP4/IP6 service binding protocol in Controller to create\r
307 an IP4/IP6 child (aka IP4/IP6 instance).\r
97b38d4e 308\r
cdfdbb97 309 @param[in] Image The image handle of the driver or application that\r
e29a2e7e 310 consumes IP_IO.\r
fb115c61 311 @param[in] Controller The controller handle that has IP4 or IP6 service\r
312 binding protocol installed.\r
313 @param[in] IpVersion The version of the IP protocol to use, either\r
314 IPv4 or IPv6. \r
97b38d4e 315\r
64a80549 316 @return The pointer to a newly created IP_IO instance, or NULL if failed.\r
97b38d4e 317\r
318**/\r
319IP_IO *\r
320EFIAPI\r
321IpIoCreate (\r
322 IN EFI_HANDLE Image,\r
fb115c61 323 IN EFI_HANDLE Controller,\r
b45b45b2 324 IN UINT8 IpVersion\r
97b38d4e 325 );\r
326\r
327/**\r
328 Destroy an IP_IO instance.\r
e29a2e7e 329 \r
330 This function is paired with IpIoCreate(). The IP_IO will be closed first.\r
331 Resource will be freed afterwards. See IpIoClose().\r
97b38d4e 332\r
64a80549 333 @param[in, out] IpIo The pointer to the IP_IO instance that needs to be\r
e29a2e7e 334 destroyed.\r
97b38d4e 335\r
64a80549 336 @retval EFI_SUCCESS The IP_IO instance was destroyed successfully.\r
337 @retval Others An error condition occurred.\r
97b38d4e 338\r
339**/\r
340EFI_STATUS\r
341EFIAPI\r
342IpIoDestroy (\r
cdfdbb97 343 IN OUT IP_IO *IpIo\r
97b38d4e 344 );\r
345\r
346/**\r
347 Stop an IP_IO instance.\r
e29a2e7e 348 \r
e9b67286 349 This function is paired with IpIoOpen(). The IP_IO will be unconfigured, and all\r
350 pending send/receive tokens will be canceled.\r
97b38d4e 351\r
64a80549 352 @param[in, out] IpIo The pointer to the IP_IO instance that needs to stop.\r
97b38d4e 353\r
cdfdbb97 354 @retval EFI_SUCCESS The IP_IO instance stopped successfully.\r
64a80549 355 @retval Others Anrror condition occurred.\r
97b38d4e 356\r
357**/\r
358EFI_STATUS\r
359EFIAPI\r
360IpIoStop (\r
cdfdbb97 361 IN OUT IP_IO *IpIo\r
97b38d4e 362 );\r
363\r
364/**\r
365 Open an IP_IO instance for use.\r
e29a2e7e 366 \r
367 This function is called after IpIoCreate(). It is used for configuring the IP\r
368 instance and register the callbacks and their context data for sending and\r
369 receiving IP packets.\r
97b38d4e 370\r
64a80549 371 @param[in, out] IpIo The pointer to an IP_IO instance that needs\r
cdfdbb97 372 to open.\r
373 @param[in] OpenData The configuration data and callbacks for\r
374 the IP_IO instance.\r
97b38d4e 375\r
cdfdbb97 376 @retval EFI_SUCCESS The IP_IO instance opened with OpenData\r
377 successfully.\r
64a80549 378 @retval EFI_ACCESS_DENIED The IP_IO instance is configured; avoid \r
379 reopening it.\r
380 @retval Others An error condition occurred.\r
97b38d4e 381\r
382**/\r
383EFI_STATUS\r
e29a2e7e 384EFIAPI\r
97b38d4e 385IpIoOpen (\r
cdfdbb97 386 IN OUT IP_IO *IpIo,\r
387 IN IP_IO_OPEN_DATA *OpenData\r
97b38d4e 388 );\r
389\r
390/**\r
391 Send out an IP packet.\r
e29a2e7e 392 \r
393 This function is called after IpIoOpen(). The data to be sent are wrapped in\r
e9b67286 394 Pkt. The IP instance wrapped in IpIo is used for sending by default, but can be\r
395 overriden by Sender. Other sending configurations, such as source address and gateway\r
396 address, are specified in OverrideData.\r
97b38d4e 397\r
64a80549 398 @param[in, out] IpIo The pointer to an IP_IO instance used for sending IP\r
cdfdbb97 399 packet.\r
64a80549 400 @param[in, out] Pkt The pointer to the IP packet to be sent.\r
e9b67286 401 @param[in] Sender Optional. The IP protocol instance used for sending.\r
64a80549 402 @param[in] Context The optional context data.\r
403 @param[in] NotifyData The optional notify data.\r
cdfdbb97 404 @param[in] Dest The destination IP address to send this packet to.\r
405 @param[in] OverrideData The data to override some configuration of the IP\r
406 instance used for sending.\r
97b38d4e 407\r
64a80549 408 @retval EFI_SUCCESS The operation completed successfully.\r
cdfdbb97 409 @retval EFI_NOT_STARTED The IpIo is not configured.\r
64a80549 410 @retval EFI_OUT_OF_RESOURCES Failed due to resource limitations.\r
97b38d4e 411\r
412**/\r
413EFI_STATUS\r
414EFIAPI\r
415IpIoSend (\r
cdfdbb97 416 IN OUT IP_IO *IpIo,\r
417 IN OUT NET_BUF *Pkt,\r
418 IN IP_IO_IP_INFO *Sender OPTIONAL,\r
419 IN VOID *Context OPTIONAL,\r
420 IN VOID *NotifyData OPTIONAL,\r
fb115c61 421 IN EFI_IP_ADDRESS *Dest,\r
cdfdbb97 422 IN IP_IO_OVERRIDE *OverrideData OPTIONAL\r
97b38d4e 423 );\r
424\r
425/**\r
64a80549 426 Cancel the IP transmit token that wraps this Packet.\r
97b38d4e 427\r
64a80549 428 @param[in] IpIo The pointer to the IP_IO instance.\r
429 @param[in] Packet The pointer to the packet of NET_BUF to cancel.\r
97b38d4e 430\r
431**/\r
432VOID\r
433EFIAPI\r
434IpIoCancelTxToken (\r
435 IN IP_IO *IpIo,\r
436 IN VOID *Packet\r
437 );\r
438\r
439/**\r
440 Add a new IP instance for sending data.\r
e29a2e7e 441 \r
442 The function is used to add the IP_IO to the IP_IO sending list. The caller\r
443 can later use IpIoFindSender() to get the IP_IO and call IpIoSend() to send\r
444 data.\r
97b38d4e 445\r
64a80549 446 @param[in, out] IpIo The pointer to an IP_IO instance to add a new IP\r
e9b67286 447 instance for sending purposes.\r
97b38d4e 448\r
64a80549 449 @return The pointer to the created IP_IO_IP_INFO structure; NULL if failed.\r
97b38d4e 450\r
451**/\r
452IP_IO_IP_INFO *\r
453EFIAPI\r
454IpIoAddIp (\r
cdfdbb97 455 IN OUT IP_IO *IpIo\r
97b38d4e 456 );\r
457\r
458/**\r
fb115c61 459 Configure the IP instance of this IpInfo and start the receiving if IpConfigData\r
97b38d4e 460 is not NULL.\r
461\r
64a80549 462 @param[in, out] IpInfo The pointer to the IP_IO_IP_INFO instance.\r
fb115c61 463 @param[in, out] IpConfigData The IP4 or IP6 configure data used to configure \r
464 the IP instance. If NULL, the IP instance is reset.\r
465 If UseDefaultAddress is set to TRUE, and the configure\r
cdfdbb97 466 operation succeeds, the default address information\r
fb115c61 467 is written back in this IpConfigData.\r
97b38d4e 468\r
64a80549 469 @retval EFI_SUCCESS The IP instance of this IpInfo was configured successfully,\r
e9b67286 470 or there is no need to reconfigure it.\r
64a80549 471 @retval Others The configuration failed.\r
97b38d4e 472\r
473**/\r
474EFI_STATUS\r
475EFIAPI\r
476IpIoConfigIp (\r
cdfdbb97 477 IN OUT IP_IO_IP_INFO *IpInfo,\r
fb115c61 478 IN OUT VOID *IpConfigData OPTIONAL\r
97b38d4e 479 );\r
480\r
481/**\r
482 Destroy an IP instance maintained in IpIo->IpList for\r
483 sending purpose.\r
e29a2e7e 484 \r
485 This function pairs with IpIoAddIp(). The IpInfo is previously created by\r
486 IpIoAddIp(). The IP_IO_IP_INFO::RefCnt is decremented and the IP instance\r
487 will be dstroyed if the RefCnt is zero.\r
97b38d4e 488\r
64a80549 489 @param[in] IpIo The pointer to the IP_IO instance.\r
490 @param[in] IpInfo The pointer to the IpInfo to be removed.\r
97b38d4e 491\r
97b38d4e 492**/\r
493VOID\r
494EFIAPI\r
495IpIoRemoveIp (\r
496 IN IP_IO *IpIo,\r
497 IN IP_IO_IP_INFO *IpInfo\r
498 );\r
499\r
500/**\r
501 Find the first IP protocol maintained in IpIo whose local\r
e9b67286 502 address is the same as Src.\r
e29a2e7e 503 \r
504 This function is called when the caller needs the IpIo to send data to the\r
505 specified Src. The IpIo was added previously by IpIoAddIp().\r
97b38d4e 506\r
64a80549 507 @param[in, out] IpIo The pointer to the pointer of the IP_IO instance.\r
fb115c61 508 @param[in] IpVersion The version of the IP protocol to use, either\r
509 IPv4 or IPv6.\r
cdfdbb97 510 @param[in] Src The local IP address.\r
97b38d4e 511\r
64a80549 512 @return The pointer to the IP protocol can be used for sending purpose and its local\r
e29a2e7e 513 address is the same with Src.\r
97b38d4e 514\r
515**/\r
516IP_IO_IP_INFO *\r
517EFIAPI\r
518IpIoFindSender (\r
fb115c61 519 IN OUT IP_IO **IpIo,\r
b45b45b2 520 IN UINT8 IpVersion,\r
fb115c61 521 IN EFI_IP_ADDRESS *Src\r
97b38d4e 522 );\r
523\r
524/**\r
e29a2e7e 525 Get the ICMP error map information.\r
526 \r
527 The ErrorStatus will be returned. The IsHard and Notify are optional. If they\r
528 are not NULL, this routine will fill them.\r
97b38d4e 529\r
3a1ab4bc 530 @param[in] IcmpError IcmpError Type.\r
fb115c61 531 @param[in] IpVersion The version of the IP protocol to use,\r
3b1464d5 532 either IPv4 or IPv6. \r
533 @param[out] IsHard If TRUE, indicates that it is a hard error.\r
534 @param[out] Notify If TRUE, SockError needs to be notified.\r
97b38d4e 535\r
64a80549 536 @return The ICMP Error Status, such as EFI_NETWORK_UNREACHABLE.\r
97b38d4e 537\r
538**/\r
539EFI_STATUS\r
540EFIAPI\r
541IpIoGetIcmpErrStatus (\r
b45b45b2 542 IN UINT8 IcmpError,\r
543 IN UINT8 IpVersion,\r
e29a2e7e 544 OUT BOOLEAN *IsHard OPTIONAL,\r
545 OUT BOOLEAN *Notify OPTIONAL\r
97b38d4e 546 );\r
547\r
fb115c61 548/**\r
549 Refresh the remote peer's Neighbor Cache entries.\r
550\r
551 This function is called when the caller needs the IpIo to refresh the existing\r
552 IPv6 neighbor cache entries since the neighbor is considered reachable by the \r
553 node has recently received a confirmation that packets sent recently to the \r
554 neighbor were received by its IP layer. \r
555\r
64a80549 556 @param[in] IpIo The pointer to an IP_IO instance\r
fb115c61 557 @param[in] Neighbor The IP address of the neighbor\r
64a80549 558 @param[in] Timeout The time in 100-ns units that this entry will\r
fb115c61 559 remain in the neighbor cache. A value of \r
560 zero means that the entry is permanent. \r
561 A value of non-zero means that the entry is \r
562 dynamic and will be deleted after Timeout.\r
563\r
64a80549 564 @retval EFI_SUCCESS The operation completed successfully.\r
fb115c61 565 @retval EFI_NOT_STARTED The IpIo is not configured.\r
64a80549 566 @retval EFI_INVALID_PARAMETER The Neighbor Address is invalid.\r
fb115c61 567 @retval EFI_NOT_FOUND The neighbor cache entry is not in the \r
568 neighbor table. \r
64a80549 569 @retval EFI_OUT_OF_RESOURCES Failed due to resource limitations.\r
fb115c61 570\r
571**/\r
572EFI_STATUS\r
573IpIoRefreshNeighbor (\r
574 IN IP_IO *IpIo,\r
575 IN EFI_IP_ADDRESS *Neighbor,\r
576 IN UINT32 Timeout \r
577 );\r
578\r
97b38d4e 579#endif\r
fb115c61 580\r