]> git.proxmox.com Git - mirror_edk2.git/blame - MdePkg/Include/Protocol/Ip6.h
Clarify the UEFI/EFI specification version in file header comments.
[mirror_edk2.git] / MdePkg / Include / Protocol / Ip6.h
CommitLineData
bdb140d7 1/** @file\r
bdb140d7 2 This file defines the EFI IPv6 (Internet Protocol version 6)\r
3 Protocol interface. It is split into the following three main\r
4 sections:\r
5 - EFI IPv6 Service Binding Protocol\r
6 - EFI IPv6 Variable\r
7 - EFI IPv6 Protocol\r
8 The EFI IPv6 Protocol provides basic network IPv6 packet I/O services,\r
9 which includes support for Neighbor Discovery Protocol (ND), Multicast\r
10 Listener Discovery Protocol (MLD), and a subset of the Internet Control\r
11 Message Protocol (ICMPv6).\r
12 \r
13 Copyright (c) 2008 - 2009, Intel Corporation \r
14 All rights reserved. This program and the accompanying materials \r
15 are licensed and made available under the terms and conditions of the BSD License \r
16 which accompanies this distribution. The full text of the license may be found at \r
17 http://opensource.org/licenses/bsd-license.php \r
18\r
19 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, \r
5899caf0 20 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. \r
21\r
22 @par Revision Reference: \r
23 This Protocol is introduced in UEFI Specification 2.2 \r
bdb140d7 24\r
25**/\r
26\r
27#ifndef __EFI_IP6_PROTOCOL_H__\r
28#define __EFI_IP6_PROTOCOL_H__\r
29\r
30#include <Protocol/ManagedNetwork.h>\r
31\r
32\r
33#define EFI_IP6_SERVICE_BINDING_PROTOCOL_GUID \\r
34 { \\r
35 0xec835dd3, 0xfe0f, 0x617b, {0xa6, 0x21, 0xb3, 0x50, 0xc3, 0xe1, 0x33, 0x88 } \\r
36 }\r
37\r
38#define EFI_IP6_PROTOCOL_GUID \\r
39 { \\r
40 0x2c8759d5, 0x5c2d, 0x66ef, {0x92, 0x5f, 0xb6, 0x6c, 0x10, 0x19, 0x57, 0xe2 } \\r
41 }\r
42\r
43typedef struct _EFI_IP6_PROTOCOL EFI_IP6_PROTOCOL;\r
44\r
45///\r
46/// ICMPv6 type definitions for error messages\r
47///\r
48///@{\r
49#define ICMP_V6_DEST_UNREACHABLE 0x1\r
50#define ICMP_V6_PACKET_TOO_BIG 0x2\r
51#define ICMP_V6_TIME_EXCEEDED 0x3\r
52#define ICMP_V6_PARAMETER_PROBLEM 0x4\r
53///@}\r
54\r
55///\r
56/// ICMPv6 type definition for informational messages\r
57///\r
58///@{\r
59#define ICMP_V6_ECHO_REQUEST 0x80\r
60#define ICMP_V6_ECHO_REPLY 0x81\r
61#define ICMP_V6_LISTENER_QUERY 0x82\r
62#define ICMP_V6_LISTENER_REPORT 0x83\r
63#define ICMP_V6_LISTENER_DONE 0x84\r
64#define ICMP_V6_ROUTER_SOLICIT 0x85\r
65#define ICMP_V6_ROUTER_ADVERTISE 0x86\r
66#define ICMP_V6_NEIGHBOR_SOLICIT 0x87\r
67#define ICMP_V6_NEIGHBOR_ADVERTISE 0x88\r
68#define ICMP_V6_REDIRECT 0x89\r
69#define ICMP_V6_LISTENER_REPORT_2 0x8F\r
70///@}\r
71\r
72///\r
73/// ICMPv6 code definitions for ICMP_V6_DEST_UNREACHABLE\r
74///\r
75///@{\r
76#define ICMP_V6_NO_ROUTE_TO_DEST 0x0\r
77#define ICMP_V6_COMM_PROHIBITED 0x1\r
78#define ICMP_V6_BEYOND_SCOPE 0x2\r
79#define ICMP_V6_ADDR_UNREACHABLE 0x3 \r
80#define ICMP_V6_PORT_UNREACHABLE 0x4\r
81#define ICMP_V6_SOURCE_ADDR_FAILED 0x5\r
82#define ICMP_V6_ROUTE_REJECTED 0x6\r
83///@}\r
84 \r
85///\r
86/// ICMPv6 code definitions for ICMP_V6_TIME_EXCEEDED\r
87///\r
88///@{\r
89#define ICMP_V6_TIMEOUT_HOP_LIMIT 0x0\r
90#define ICMP_V6_TIMEOUT_REASSEMBLE 0x1\r
91///@}\r
92 \r
93///\r
94/// ICMPv6 code definitions for ICMP_V6_PARAMETER_PROBLEM\r
95///\r
96///@{\r
97#define ICMP_V6_ERRONEOUS_HEADER 0x0\r
98#define ICMP_V6_UNRECOGNIZE_NEXT_HDR 0x1\r
99#define ICMP_V6_UNRECOGNIZE_OPTION 0x2\r
100///@}\r
101\r
102///\r
103/// EFI_IP6_CONFIG_DATA\r
104/// is used to report and change IPv6 session parameters.\r
105///\r
106typedef struct {\r
107 /// \r
108 /// For the IPv6 packet to send and receive, this is the default value \r
109 /// of the 'Next Header' field in the last IPv6 extension header or in \r
110 /// the IPv6 header if there are no extension headers. Ignored when \r
111 /// AcceptPromiscuous is TRUE.\r
112 /// \r
113 UINT8 DefaultProtocol;\r
114 /// \r
115 /// Set to TRUE to receive all IPv6 packets that get through the \r
116 /// receive filters. \r
117 /// Set to FALSE to receive only the DefaultProtocol IPv6 \r
118 /// packets that get through the receive filters. Ignored when \r
119 /// AcceptPromiscuous is TRUE.\r
120 /// \r
121 BOOLEAN AcceptAnyProtocol;\r
122 /// \r
123 /// Set to TRUE to receive ICMP error report packets. Ignored when \r
124 /// AcceptPromiscuous or AcceptAnyProtocol is TRUE.\r
125 /// \r
126 BOOLEAN AcceptIcmpErrors;\r
127 /// \r
128 /// Set to TRUE to receive all IPv6 packets that are sent to any \r
129 /// hardware address or any protocol address. Set to FALSE to stop \r
130 /// receiving all promiscuous IPv6 packets.\r
131 /// \r
132 BOOLEAN AcceptPromiscuous;\r
133 /// \r
134 /// The destination address of the packets that will be transmitted. \r
135 /// Ignored if it is unspecified.\r
136 /// \r
137 EFI_IPv6_ADDRESS DestinationAddress;\r
138 /// \r
139 /// The station IPv6 address that will be assigned to this EFI IPv6 \r
140 /// Protocol instance. This field can be set and changed only when \r
141 /// the EFI IPv6 driver is transitioning from the stopped to the started \r
142 /// states. If the StationAddress is specified, the EFI IPv6 Protocol \r
143 /// driver will deliver only incoming IPv6 packets whose destination \r
144 /// matches this IPv6 address exactly. The StationAddress is required \r
145 /// to be one of currently configured IPv6 addresses. An address \r
146 /// containing all zeroes is also accepted as a special case. Under this \r
147 /// situation, the IPv6 driver is responsible for binding a source \r
148 /// address to this EFI IPv6 protocol instance according to the source \r
149 /// address selection algorithm. Only incoming packets destined to \r
150 /// the selected address will be delivered to the user. And the \r
151 /// selected station address can be retrieved through later \r
152 /// GetModeData() call. If no address is available for selecting, \r
153 /// EFI_NO_MAPPING will be returned, and the station address will \r
154 /// only be successfully bound to this EFI IPv6 protocol instance \r
155 /// after IP6ModeData.IsConfigured changed to TRUE.\r
156 /// \r
157 EFI_IPv6_ADDRESS StationAddress; \r
158 /// \r
159 /// TrafficClass field in transmitted IPv6 packets. Default value \r
160 /// is zero.\r
161 /// \r
162 UINT8 TrafficClass;\r
163 /// \r
164 /// HopLimit field in transmitted IPv6 packets. \r
165 /// \r
166 UINT8 HopLimit;\r
167 /// \r
168 /// FlowLabel field in transmitted IPv6 packets. Default value is \r
169 /// zero.\r
170 /// \r
171 UINT32 FlowLabel;\r
172 /// \r
173 /// The timer timeout value (number of microseconds) for the \r
174 /// receive timeout event to be associated with each assembled \r
175 /// packet. Zero means do not drop assembled packets.\r
176 /// \r
177 UINT32 ReceiveTimeout;\r
178 /// \r
179 /// The timer timeout value (number of microseconds) for the \r
180 /// transmit timeout event to be associated with each outgoing \r
181 /// packet. Zero means do not drop outgoing packets.\r
182 /// \r
183 UINT32 TransmitTimeout;\r
184} EFI_IP6_CONFIG_DATA;\r
185\r
186///\r
187/// EFI_IP6_ADDRESS_INFO\r
188///\r
189typedef struct {\r
190 EFI_IPv6_ADDRESS Address; ///< The IPv6 address.\r
191 UINT8 PrefixLength; ///< The length of the prefix associated with the Address. \r
192} EFI_IP6_ADDRESS_INFO;\r
193\r
194///\r
195/// EFI_IP6_ROUTE_TABLE\r
196/// is the entry structure that is used in routing tables\r
197/// \r
198typedef struct {\r
199 ///\r
200 /// The IPv6 address of the gateway to be used as the next hop for \r
201 /// packets to this prefix. If the IPv6 address is all zeros, then the \r
202 /// prefix is on-link.\r
203 ///\r
204 EFI_IPv6_ADDRESS Gateway; \r
205 ///\r
206 /// The destination prefix to be routed.\r
207 ///\r
208 EFI_IPv6_ADDRESS Destination; \r
209 ///\r
210 /// The length of the prefix associated with the Destination.\r
211 ///\r
212 UINT8 PrefixLength;\r
213} EFI_IP6_ROUTE_TABLE;\r
214\r
215///\r
216/// EFI_IP6_NEIGHBOR_STATE\r
217///\r
218typedef enum {\r
219 ///\r
220 /// Address resolution is being performed on this entry. Specially, \r
221 /// Neighbor Solicitation has been sent to the solicited-node \r
222 /// multicast address of the target, but corresponding Neighbor \r
223 /// Advertisement has not been received.\r
224 ///\r
225 EfiNeighborInComplete, \r
226 ///\r
227 /// Positive confirmation was received that the forward path to the \r
228 /// neighbor was functioning properly.\r
229 ///\r
230 EfiNeighborReachable,\r
231 ///\r
232 ///Reachable Time has elapsed since the last positive confirmation \r
233 ///was received. In this state, the forward path to the neighbor was \r
234 ///functioning properly.\r
235 ///\r
236 EfiNeighborStale,\r
237 ///\r
238 /// This state is an optimization that gives upper-layer protocols \r
239 /// additional time to provide reachability confirmation.\r
240 ///\r
241 EfiNeighborDelay,\r
242 ///\r
243 /// A reachability confirmation is actively sought by retransmitting \r
244 /// Neighbor Solicitations every RetransTimer milliseconds until a \r
245 /// reachability confirmation is received.\r
246 ///\r
247 EfiNeighborProbe\r
248} EFI_IP6_NEIGHBOR_STATE;\r
249\r
250///\r
251/// EFI_IP6_NEIGHBOR_CACHE\r
252/// is the entry structure that is used in neighbor cache. It records a set \r
253/// of entries about individual neighbors to which traffic has been sent recently. \r
254///\r
255typedef struct {\r
256 EFI_IPv6_ADDRESS Neighbor; ///< The on-link unicast/anycast IP address of the neighbor.\r
257 EFI_MAC_ADDRESS LinkAddress; ///< Link-layer address of the neighbor. \r
258 EFI_IP6_NEIGHBOR_STATE State; ///< State of this neighbor cache entry. \r
259} EFI_IP6_NEIGHBOR_CACHE;\r
260\r
261///\r
262/// EFI_IP6_ICMP_TYPE\r
263/// is used to describe those ICMP messages that are supported by this EFI \r
264/// IPv6 Protocol driver.\r
265///\r
266typedef struct {\r
267 UINT8 Type; ///< The type of ICMP message.\r
268 UINT8 Code; ///< The code of the ICMP message.\r
269} EFI_IP6_ICMP_TYPE; \r
270\r
271///\r
272/// EFI_IP6_MODE_DATA\r
273///\r
274typedef struct { \r
275 ///\r
276 /// Set to TRUE after this EFI IPv6 Protocol instance is started. \r
277 /// All other fields in this structure are undefined until this field is TRUE. \r
278 /// Set to FALSE when the EFI IPv6 Protocol instance is stopped.\r
279 /// \r
280 BOOLEAN IsStarted;\r
281 ///\r
282 /// The maximum packet size, in bytes, of the packet which the upper layer driver could feed.\r
283 ///\r
284 UINT32 MaxPacketSize;\r
285 /// \r
286 /// Current configuration settings. Undefined until IsStarted is TRUE.\r
287 ///\r
288 EFI_IP6_CONFIG_DATA ConfigData;\r
289 /// \r
290 /// Set to TRUE when the EFI IPv6 Protocol instance is configured. \r
291 /// The instance is configured when it has a station address and \r
292 /// corresponding prefix length. \r
293 /// Set to FALSE when the EFI IPv6 Protocol instance is not configured.\r
294 ///\r
295 BOOLEAN IsConfigured;\r
296 /// \r
297 /// Number of configured IPv6 addresses on this interface. \r
298 ///\r
299 UINT32 AddressCount;\r
300 /// \r
301 /// List of currently configured IPv6 addresses and corresponding \r
302 /// prefix lengths assigned to this interface. It is caller's \r
303 /// responsibility to free this buffer.\r
304 /// \r
305 EFI_IP6_ADDRESS_INFO *AddressList;\r
306 /// \r
307 /// Number of joined multicast groups. Undefined until \r
308 /// IsConfigured is TRUE.\r
309 ///\r
310 UINT32 GroupCount;\r
311 /// \r
312 /// List of joined multicast group addresses. It is caller's \r
313 /// responsibility to free this buffer. Undefined until \r
314 /// IsConfigured is TRUE.\r
315 ///\r
316 EFI_IPv6_ADDRESS *GroupTable;\r
317 /// \r
318 /// Number of entries in the routing table. Undefined until \r
319 /// IsConfigured is TRUE.\r
320 ///\r
321 UINT32 RouteCount;\r
322 /// \r
323 /// Routing table entries. It is caller's responsibility to free this buffer.\r
324 ///\r
325 EFI_IP6_ROUTE_TABLE *RouteTable;\r
326 ///\r
327 /// Number of entries in the neighbor cache. Undefined until \r
328 /// IsConfigured is TRUE.\r
329 ///\r
330 UINT32 NeighborCount;\r
331 /// \r
332 /// Neighbor cache entries. It is caller's responsibility to free this \r
333 /// buffer. Undefined until IsConfigured is TRUE. \r
334 ///\r
335 EFI_IP6_NEIGHBOR_CACHE *NeighborCache; \r
336 /// \r
337 /// Number of entries in the prefix table. Undefined until \r
338 /// IsConfigured is TRUE.\r
339 ///\r
340 UINT32 PrefixCount;\r
341 /// \r
342 /// On-link Prefix table entries. It is caller's responsibility to free this \r
343 /// buffer. Undefined until IsConfigured is TRUE. \r
344 ///\r
345 EFI_IP6_ADDRESS_INFO *PrefixTable;\r
346 /// \r
347 /// Number of entries in the supported ICMP types list.\r
348 ///\r
349 UINT32 IcmpTypeCount;\r
350 /// \r
351 /// Array of ICMP types and codes that are supported by this EFI \r
352 /// IPv6 Protocol driver. It is caller's responsibility to free this \r
353 /// buffer.\r
354 ///\r
355 EFI_IP6_ICMP_TYPE *IcmpTypeList;\r
356} EFI_IP6_MODE_DATA;\r
357\r
358///\r
359/// EFI_IP6_HEADER\r
360/// The fields in the IPv6 header structure are defined in the Internet\r
361/// Protocol version6 specification.\r
362///\r
363#pragma pack(1)\r
364typedef struct _EFI_IP6_HEADER {\r
365 UINT8 TrafficClassH:4;\r
366 UINT8 Version:4;\r
367 UINT8 FlowLabelH:4;\r
368 UINT8 TrafficClassL:4; \r
369 UINT16 FlowLabelL;\r
370 UINT16 PayloadLength;\r
371 UINT8 NextHeader;\r
372 UINT8 HopLimit;\r
373 EFI_IPv6_ADDRESS SourceAddress;\r
374 EFI_IPv6_ADDRESS DestinationAddress;\r
375} EFI_IP6_HEADER;\r
9591f383 376#pragma pack()\r
bdb140d7 377\r
378///\r
379/// EFI_IP6_FRAGMENT_DATA\r
380/// describes the location and length of the IPv6 packet \r
381/// fragment to transmit or that has been received.\r
382///\r
383typedef struct _EFI_IP6_FRAGMENT_DATA {\r
384 UINT32 FragmentLength; ///< Length of fragment data. This field may not be set to zero.\r
385 VOID *FragmentBuffer; ///< Pointer to fragment data. This field may not be set to NULL.\r
386} EFI_IP6_FRAGMENT_DATA;\r
387\r
388///\r
389/// EFI_IP6_RECEIVE_DATA\r
390///\r
391typedef struct _EFI_IP6_RECEIVE_DATA {\r
392 /// \r
393 /// Time when the EFI IPv6 Protocol driver accepted the packet. \r
394 /// Ignored if it is zero.\r
395 /// \r
396 EFI_TIME TimeStamp;\r
397 /// \r
398 /// After this event is signaled, the receive data structure is released \r
399 /// and must not be referenced.\r
400 /// \r
401 EFI_EVENT RecycleSignal;\r
402 ///\r
403 ///Length of the IPv6 packet headers, including both the IPv6 \r
404 ///header and any extension headers. \r
405 ///\r
406 UINT32 HeaderLength;\r
407 /// \r
408 /// Pointer to the IPv6 packet header. If the IPv6 packet was \r
409 /// fragmented, this argument is a pointer to the header in the first \r
410 /// fragment. \r
411 /// \r
412 EFI_IP6_HEADER *Header;\r
413 /// \r
414 /// Sum of the lengths of IPv6 packet buffers in FragmentTable. May \r
415 /// be zero.\r
416 /// \r
417 UINT32 DataLength;\r
418 /// \r
419 /// Number of IPv6 payload fragments. May be zero.\r
420 /// \r
421 UINT32 FragmentCount;\r
422 /// \r
423 /// Array of payload fragment lengths and buffer pointers.\r
424 /// \r
425 EFI_IP6_FRAGMENT_DATA FragmentTable[1];\r
426} EFI_IP6_RECEIVE_DATA;\r
427\r
428///\r
429/// EFI_IP6_OVERRIDE_DATA\r
430/// The information and flags in the override data structure will override \r
431/// default parameters or settings for one Transmit() function call. \r
432///\r
433typedef struct _EFI_IP6_OVERRIDE_DATA {\r
434 UINT8 Protocol; ///< Protocol type override.\r
435 UINT8 HopLimit; ///< Hop-Limit override.\r
436 UINT32 FlowLabel; ///< Flow-Label override.\r
437} EFI_IP6_OVERRIDE_DATA;\r
438 \r
439///\r
440/// EFI_IP6_TRANSMIT_DATA \r
441///\r
442typedef struct _EFI_IP6_TRANSMIT_DATA { \r
443 /// \r
444 /// The destination IPv6 address. If it is unspecified, \r
445 /// ConfigData.DestinationAddress will be used instead.\r
446 /// \r
447 EFI_IPv6_ADDRESS DestinationAddress;\r
448 /// \r
449 /// If not NULL, the IPv6 transmission control override data.\r
450 /// \r
451 EFI_IP6_OVERRIDE_DATA *OverrideData;\r
452 /// \r
453 /// Total length in byte of the IPv6 extension headers specified in \r
454 /// ExtHdrs.\r
455 /// \r
456 UINT32 ExtHdrsLength;\r
457 /// \r
458 /// Pointer to the IPv6 extension headers. The IP layer will append \r
459 /// the required extension headers if they are not specified by \r
460 /// ExtHdrs. Ignored if ExtHdrsLength is zero.\r
461 /// \r
462 VOID *ExtHdrs;\r
463 /// \r
464 /// The protocol of first extension header in ExtHdrs. Ignored if \r
465 /// ExtHdrsLength is zero.\r
466 /// \r
467 UINT8 NextHeader;\r
468 /// \r
469 /// Total length in bytes of the FragmentTable data to transmit.\r
470 /// \r
471 UINT32 DataLength;\r
472 /// \r
473 /// Number of entries in the fragment data table.\r
474 /// \r
475 UINT32 FragmentCount;\r
476 /// \r
477 /// Start of the fragment data table.\r
478 /// \r
479 EFI_IP6_FRAGMENT_DATA FragmentTable[1];\r
480} EFI_IP6_TRANSMIT_DATA;\r
481\r
482///\r
483/// EFI_IP6_COMPLETION_TOKEN\r
484/// structures are used for both transmit and receive operations.\r
485///\r
486typedef struct {\r
487 ///\r
488 /// This Event will be signaled after the Status field is updated by \r
489 /// the EFI IPv6 Protocol driver. The type of Event must be EFI_NOTIFY_SIGNAL.\r
490 ///\r
491 EFI_EVENT Event;\r
492 ///\r
493 /// Will be set to one of the following values:\r
494 /// - EFI_SUCCESS: The receive or transmit completed \r
495 /// successfully.\r
496 /// - EFI_ABORTED: The receive or transmit was aborted\r
497 /// - EFI_TIMEOUT: The transmit timeout expired.\r
498 /// - EFI_ICMP_ERROR: An ICMP error packet was received.\r
499 /// - EFI_DEVICE_ERROR: An unexpected system or network \r
500 /// error occurred.\r
501 /// - EFI_SECURITY_VIOLATION: The transmit or receive was \r
502 /// failed because of an IPsec policy check.\r
503 ///\r
504 EFI_STATUS Status;\r
505 union {\r
506 ///\r
507 /// When the Token is used for receiving, RxData is a pointer to the EFI_IP6_RECEIVE_DATA.\r
508 ///\r
509 EFI_IP6_RECEIVE_DATA *RxData;\r
510 ///\r
511 /// When the Token is used for transmitting, TxData is a pointer to the EFI_IP6_TRANSMIT_DATA.\r
512 ///\r
513 EFI_IP6_TRANSMIT_DATA *TxData;\r
514 } Packet;\r
515} EFI_IP6_COMPLETION_TOKEN;\r
516\r
517/**\r
518 Gets the current operational settings for this instance of the EFI IPv6 Protocol driver.\r
519 \r
520 The GetModeData() function returns the current operational mode data for this driver instance. \r
521 The data fields in EFI_IP6_MODE_DATA are read only. This function is used optionally to \r
522 retrieve the operational mode data of underlying networks or drivers..\r
523\r
524 @param[in] This Pointer to the EFI_IP6_PROTOCOL instance.\r
525 @param[out] Ip6ModeData Pointer to the EFI IPv6 Protocol mode data structure.\r
526 @param[out] MnpConfigData Pointer to the managed network configuration data structure.\r
527 @param[out] SnpModeData Pointer to the simple network mode data structure.\r
528 \r
529 @retval EFI_SUCCESS The operation completed successfully.\r
530 @retval EFI_INVALID_PARAMETER This is NULL.\r
531 @retval EFI_OUT_OF_RESOURCES The required mode data could not be allocated.\r
532\r
533**/\r
534typedef \r
535EFI_STATUS\r
5e6f3ee2 536(EFIAPI *EFI_IP6_GET_MODE_DATA)(\r
bdb140d7 537 IN EFI_IP6_PROTOCOL *This,\r
538 OUT EFI_IP6_MODE_DATA *Ip6ModeData OPTIONAL,\r
539 OUT EFI_MANAGED_NETWORK_CONFIG_DATA *MnpConfigData OPTIONAL,\r
540 OUT EFI_SIMPLE_NETWORK_MODE *SnpModeData OPTIONAL\r
541 );\r
542\r
543/**\r
544 Assigns an IPv6 address and subnet mask to this EFI IPv6 Protocol driver instance.\r
545 \r
546 The Configure() function is used to set, change, or reset the operational parameters and filter \r
547 settings for this EFI IPv6 Protocol instance. Until these parameters have been set, no network traffic \r
548 can be sent or received by this instance. Once the parameters have been reset (by calling this \r
549 function with Ip6ConfigData set to NULL), no more traffic can be sent or received until these \r
550 parameters have been set again. Each EFI IPv6 Protocol instance can be started and stopped \r
551 independently of each other by enabling or disabling their receive filter settings with the \r
552 Configure() function.\r
553 \r
554 If Ip6ConfigData.StationAddress is a valid non-zero IPv6 unicast address, it is required \r
555 to be one of the currently configured IPv6 addresses list in the EFI IPv6 drivers, or else \r
556 EFI_INVALID_PARAMETER will be returned. If Ip6ConfigData.StationAddress is \r
557 unspecified, the IPv6 driver will bind a source address according to the source address selection \r
558 algorithm. Clients could frequently call GetModeData() to check get currently configured IPv6 \r
559 address list in the EFI IPv6 driver. If both Ip6ConfigData.StationAddress and \r
560 Ip6ConfigData.Destination are unspecified, when transmitting the packet afterwards, the \r
561 source address filled in each outgoing IPv6 packet is decided based on the destination of this packet. .\r
562 \r
563 If operational parameters are reset or changed, any pending transmit and receive requests will be \r
564 cancelled. Their completion token status will be set to EFI_ABORTED and their events will be \r
565 signaled.\r
566\r
567 @param[in] This Pointer to the EFI_IP6_PROTOCOL instance.\r
568 @param[in] Ip6ConfigData Pointer to the EFI IPv6 Protocol configuration data structure.\r
569 \r
570 @retval EFI_SUCCESS The driver instance was successfully opened.\r
571 @retval EFI_INVALID_PARAMETER One or more of the following conditions is TRUE:\r
572 - This is NULL.\r
573 - Ip6ConfigData.StationAddress is neither zero nor \r
574 a unicast IPv6 address.\r
575 - Ip6ConfigData.StationAddress is neither zero nor \r
576 one of the configured IP addresses in the EFI IPv6 driver.\r
577 - Ip6ConfigData.DefaultProtocol is illegal. \r
578 @retval EFI_OUT_OF_RESOURCES The EFI IPv6 Protocol driver instance data could not be allocated.\r
579 @retval EFI_NO_MAPPING The IPv6 driver was responsible for choosing a source address for \r
580 this instance, but no source address was available for use. \r
581 @retval EFI_ALREADY_STARTED The interface is already open and must be stopped before the IPv6 \r
582 address or prefix length can be changed.\r
583 @retval EFI_DEVICE_ERROR An unexpected system or network error occurred. The EFI IPv6 \r
584 Protocol driver instance is not opened.\r
585 @retval EFI_UNSUPPORTED Default protocol specified through \r
586 Ip6ConfigData.DefaulProtocol isn't supported.\r
587\r
588**/\r
589typedef \r
590EFI_STATUS\r
5e6f3ee2 591(EFIAPI *EFI_IP6_CONFIGURE)(\r
bdb140d7 592 IN EFI_IP6_PROTOCOL *This,\r
593 IN EFI_IP6_CONFIG_DATA *Ip6ConfigData OPTIONAL\r
594 );\r
595\r
596/**\r
597 Joins and leaves multicast groups.\r
598 \r
599 The Groups() function is used to join and leave multicast group sessions. Joining a group will \r
600 enable reception of matching multicast packets. Leaving a group will disable reception of matching \r
601 multicast packets. Source-Specific Multicast isn't required to be supported.\r
602 \r
603 If JoinFlag is FALSE and GroupAddress is NULL, all joined groups will be left.\r
604\r
605 @param[in] This Pointer to the EFI_IP6_PROTOCOL instance.\r
606 @param[in] JoinFlag Set to TRUE to join the multicast group session and FALSE to leave.\r
607 @param[in] GroupAddress Pointer to the IPv6 multicast address.\r
608 \r
609 @retval EFI_SUCCESS The operation completed successfully.\r
610 @retval EFI_INVALID_PARAMETER One or more of the following is TRUE:\r
611 - This is NULL.\r
612 - JoinFlag is TRUE and GroupAddress is NULL.\r
613 - GroupAddress is not NULL and *GroupAddress is\r
614 not a multicast IPv6 address. \r
615 - GroupAddress is not NULL and *GroupAddress is in the \r
616 range of SSM destination address.\r
617 @retval EFI_NOT_STARTED This instance has not been started.\r
618 @retval EFI_OUT_OF_RESOURCES System resources could not be allocated.\r
619 @retval EFI_UNSUPPORTED This EFI IPv6 Protocol implementation does not support multicast groups.\r
620 @retval EFI_ALREADY_STARTED The group address is already in the group table (when\r
621 JoinFlag is TRUE).\r
622 @retval EFI_NOT_FOUND The group address is not in the group table (when JoinFlag is FALSE).\r
623 @retval EFI_DEVICE_ERROR An unexpected system or network error occurred.\r
624\r
625**/\r
626typedef \r
627EFI_STATUS\r
5e6f3ee2 628(EFIAPI *EFI_IP6_GROUPS)(\r
bdb140d7 629 IN EFI_IP6_PROTOCOL *This,\r
630 IN BOOLEAN JoinFlag,\r
631 IN EFI_IPv6_ADDRESS *GroupAddress OPTIONAL\r
632 );\r
633\r
634/**\r
635 Adds and deletes routing table entries.\r
636\r
637 The Routes() function adds a route to or deletes a route from the routing table.\r
638 \r
639 Routes are determined by comparing the leftmost PrefixLength bits of Destination with \r
640 the destination IPv6 address arithmetically. The gateway address must be on the same subnet as the\r
641 configured station address.\r
642 \r
643 The default route is added with Destination and PrefixLegth both set to all zeros. The \r
644 default route matches all destination IPv6 addresses that do not match any other routes.\r
645\r
646 All EFI IPv6 Protocol instances share a routing table.\r
647 \r
648 @param[in] This Pointer to the EFI_IP6_PROTOCOL instance.\r
649 @param[in] DeleteRoute Set to TRUE to delete this route from the routing table. Set to \r
650 FALSE to add this route to the routing table. Destination, \r
651 PrefixLength and Gateway are used as the key to each \r
652 route entry.\r
653 @param[in] Destination The address prefix of the subnet that needs to be routed.\r
654 @param[in] PrefixLength The prefix length of Destination. Ignored if Destination \r
655 is NULL.\r
656 @param[in] GatewayAddress The unicast gateway IPv6 address for this route.\r
657\r
658 @retval EFI_SUCCESS The operation completed successfully.\r
659 @retval EFI_NOT_STARTED The driver instance has not been started.\r
660 @retval EFI_INVALID_PARAMETER One or more of the following conditions is TRUE:\r
661 - This is NULL.\r
662 - When DeleteRoute is TRUE, both Destination and \r
663 GatewayAddress are NULL.\r
664 - When DeleteRoute is FALSE, either Destination or \r
665 GatewayAddress is NULL.\r
666 - *GatewayAddress is not a valid unicast IPv6 address.\r
667 - *GatewayAddress is one of the local configured IPv6 \r
668 addresses.\r
669 @retval EFI_OUT_OF_RESOURCES Could not add the entry to the routing table.\r
670 @retval EFI_NOT_FOUND This route is not in the routing table (when DeleteRoute is TRUE).\r
671 @retval EFI_ACCESS_DENIED The route is already defined in the routing table (when\r
672 DeleteRoute is FALSE).\r
673 \r
674**/\r
675typedef \r
676EFI_STATUS\r
5e6f3ee2 677(EFIAPI *EFI_IP6_ROUTES)(\r
bdb140d7 678 IN EFI_IP6_PROTOCOL *This,\r
679 IN BOOLEAN DeleteRoute,\r
5e6f3ee2 680 IN EFI_IPv6_ADDRESS *Destination OPTIONAL,\r
bdb140d7 681 IN UINT8 PrefixLength,\r
682 IN EFI_IPv6_ADDRESS *GatewayAddress OPTIONAL \r
683 );\r
684\r
685/**\r
686 Add or delete Neighbor cache entries.\r
687\r
688 The Neighbors() function is used to add, update, or delete an entry from neighbor cache. \r
689 IPv6 neighbor cache entries are typically inserted and updated by the network protocol driver as \r
690 network traffic is processed. Most neighbor cache entries will time out and be deleted if the network \r
691 traffic stops. Neighbor cache entries that were inserted by Neighbors() may be static (will not \r
692 timeout) or dynamic (will time out).\r
693 \r
694 The implementation should follow the neighbor cache timeout mechanism which is defined in \r
695 RFC4861. The default neighbor cache timeout value should be tuned for the expected network \r
696 environment\r
697\r
698 @param[in] This Pointer to the EFI_IP6_PROTOCOL instance.\r
699 @param[in] DeleteFlag Set to TRUE to delete the specified cache entry, set to FALSE to \r
700 add (or update, if it already exists and Override is TRUE) the \r
701 specified cache entry. TargetIp6Address is used as the key \r
702 to find the requested cache entry.\r
703 @param[in] TargetIp6Address Pointer to Target IPv6 address.\r
704 @param[in] TargetLinkAddress Pointer to link-layer address of the target. Ignored if NULL. \r
705 @param[in] Timeout Time in 100-ns units that this entry will remain in the neighbor \r
706 cache, it will be deleted after Timeout. A value of zero means that \r
707 the entry is permanent. A non-zero value means that the entry is \r
708 dynamic. \r
709 @param[in] Override If TRUE, the cached link-layer address of the matching entry will \r
710 be overridden and updated; if FALSE, EFI_ACCESS_DENIED \r
711 will be returned if a corresponding cache entry already existed.\r
712\r
713 @retval EFI_SUCCESS The data has been queued for transmission.\r
714 @retval EFI_NOT_STARTED This instance has not been started.\r
715 @retval EFI_INVALID_PARAMETER One or more of the following conditions is TRUE:\r
716 - This is NULL.\r
717 - TargetIpAddress is NULL.\r
718 - *TargetLinkAddress is invalid when not NULL.\r
719 - *TargetIpAddress is not a valid unicast IPv6 address.\r
720 - *TargetIpAddress is one of the local configured IPv6 \r
721 addresses.\r
722 @retval EFI_OUT_OF_RESOURCES Could not add the entry to the neighbor cache.\r
723 @retval EFI_NOT_FOUND This entry is not in the neighbor cache (when DeleteFlag is \r
724 TRUE or when DeleteFlag is FALSE while \r
725 TargetLinkAddress is NULL.).\r
726 @retval EFI_ACCESS_DENIED The to-be-added entry is already defined in the neighbor cache, \r
727 and that entry is tagged as un-overridden (when DeleteFlag \r
728 is FALSE).\r
729\r
730**/\r
731typedef \r
732EFI_STATUS\r
5e6f3ee2 733(EFIAPI *EFI_IP6_NEIGHBORS)(\r
bdb140d7 734 IN EFI_IP6_PROTOCOL *This,\r
735 IN BOOLEAN DeleteFlag,\r
736 IN EFI_IPv6_ADDRESS *TargetIp6Address,\r
737 IN EFI_MAC_ADDRESS *TargetLinkAddress,\r
738 IN UINT32 Timeout,\r
739 IN BOOLEAN Override\r
740 );\r
741\r
742/**\r
743 Places outgoing data packets into the transmit queue.\r
744\r
745 The Transmit() function places a sending request in the transmit queue of this\r
746 EFI IPv6 Protocol instance. Whenever the packet in the token is sent out or some\r
747 errors occur, the event in the token will be signaled and the status is updated.\r
748\r
749 @param[in] This Pointer to the EFI_IP6_PROTOCOL instance.\r
750 @param[in] Token Pointer to the transmit token.\r
751\r
752 @retval EFI_SUCCESS The data has been queued for transmission.\r
753 @retval EFI_NOT_STARTED This instance has not been started.\r
754 @retval EFI_NO_MAPPING The IPv6 driver was responsible for choosing a source address for \r
755 this transmission, but no source address was available for use.\r
756 @retval EFI_INVALID_PARAMETER One or more of the following is TRUE:\r
757 - This is NULL.\r
758 - Token is NULL.\r
759 - Token.Event is NULL.\r
760 - Token.Packet.TxData is NULL.\r
761 - Token.Packet.ExtHdrsLength is not zero and Token.Packet.ExtHdrs is NULL.\r
762 - Token.Packet.FragmentCount is zero.\r
763 - One or more of the Token.Packet.TxData.FragmentTable[].FragmentLength fields is zero.\r
764 - One or more of the Token.Packet.TxData.FragmentTable[].FragmentBuffer fields is NULL.\r
765 - Token.Packet.TxData.DataLength is zero or not equal to the sum of fragment lengths.\r
766 - Token.Packet.TxData.DestinationAddress is non-zero when DestinationAddress is configured as \r
767 non-zero when doing Configure() for this EFI IPv6 protocol instance.\r
768 - Token.Packet.TxData.DestinationAddress is unspecified when DestinationAddress is unspecified \r
769 when doing Configure() for this EFI IPv6 protocol instance.\r
770 @retval EFI_ACCESS_DENIED The transmit completion token with the same Token.Event\r
771 was already in the transmit queue.\r
772 @retval EFI_NOT_READY The completion token could not be queued because the transmit\r
773 queue is full. \r
774 @retval EFI_NOT_FOUND Not route is found to destination address.\r
775 @retval EFI_OUT_OF_RESOURCES Could not queue the transmit data.\r
776 @retval EFI_BUFFER_TOO_SMALL Token.Packet.TxData.TotalDataLength is too\r
777 short to transmit.\r
778 @retval EFI_BAD_BUFFER_SIZE If Token.Packet.TxData.DataLength is beyond the \r
779 maximum that which can be described through the Fragment Offset\r
780 field in Fragment header when performing fragmentation.\r
781 @retval EFI_DEVICE_ERROR An unexpected system or network error occurred.\r
782\r
783**/\r
784typedef \r
785EFI_STATUS\r
5e6f3ee2 786(EFIAPI *EFI_IP6_TRANSMIT)(\r
bdb140d7 787 IN EFI_IP6_PROTOCOL *This,\r
788 IN EFI_IP6_COMPLETION_TOKEN *Token\r
789 );\r
790\r
791/**\r
792 Places a receiving request into the receiving queue.\r
793 \r
794 The Receive() function places a completion token into the receive packet queue.\r
795 This function is always asynchronous.\r
796 \r
797 The Token.Event field in the completion token must be filled in by the caller\r
798 and cannot be NULL. When the receive operation completes, the EFI IPv6 Protocol\r
799 driver updates the Token.Status and Token.Packet.RxData fields and the Token.Event\r
800 is signaled.\r
801\r
802 @param[in] This Pointer to the EFI_IP6_PROTOCOL instance.\r
803 @param]in] Token Pointer to a token that is associated with the receive data descriptor.\r
804 \r
805 @retval EFI_SUCCESS The receive completion token was cached.\r
806 @retval EFI_NOT_STARTED This EFI IPv6 Protocol instance has not been started.\r
807 @retval EFI_NO_MAPPING When IP6 driver responsible for binding source address to this instance, \r
808 while no source address is available for use.\r
809 @retval EFI_INVALID_PARAMETER One or more of the following conditions is TRUE:\r
810 - This is NULL.\r
811 - Token is NULL.\r
812 - Token.Event is NULL.\r
813 @retval EFI_OUT_OF_RESOURCES The receive completion token could not be queued due to a lack of system\r
814 resources (usually memory).\r
815 @retval EFI_DEVICE_ERROR An unexpected system or network error occurred.\r
816 The EFI IPv6 Protocol instance has been reset to startup defaults.\r
817 @retval EFI_ACCESS_DENIED The receive completion token with the same Token.Event was already\r
818 in the receive queue.\r
819 @retval EFI_NOT_READY The receive request could not be queued because the receive queue is full.\r
820 \r
821**/ \r
822typedef \r
823EFI_STATUS \r
5e6f3ee2 824(EFIAPI *EFI_IP6_RECEIVE)( \r
bdb140d7 825 IN EFI_IP6_PROTOCOL *This,\r
826 IN EFI_IP6_COMPLETION_TOKEN *Token\r
827 );\r
828\r
829/**\r
830 Abort an asynchronous transmit or receive request.\r
831 \r
832 The Cancel() function is used to abort a pending transmit or receive request.\r
833 If the token is in the transmit or receive request queues, after calling this\r
834 function, Token->Status will be set to EFI_ABORTED and then Token->Event will\r
835 be signaled. If the token is not in one of the queues, which usually means the\r
836 asynchronous operation has completed, this function will not signal the token\r
837 and EFI_NOT_FOUND is returned.\r
838\r
839 @param[in] This Pointer to the EFI_IP6_PROTOCOL instance.\r
840 @param[in] Token Pointer to a token that has been issued by\r
841 EFI_IP6_PROTOCOL.Transmit() or\r
842 EFI_IP6_PROTOCOL.Receive(). If NULL, all pending\r
843 tokens are aborted. Type EFI_IP6_COMPLETION_TOKEN is\r
844 defined in EFI_IP6_PROTOCOL.Transmit().\r
845 \r
846 @retval EFI_SUCCESS The asynchronous I/O request was aborted and\r
847 Token->Event was signaled. When Token is NULL, all\r
848 pending requests were aborted and their events were signaled.\r
849 @retval EFI_INVALID_PARAMETER This is NULL.\r
850 @retval EFI_NOT_STARTED This instance has not been started.\r
851 @retval EFI_NOT_FOUND When Token is not NULL, the asynchronous I/O request was\r
852 not found in the transmit or receive queue. It has either completed\r
853 or was not issued by Transmit() and Receive().\r
854 @retval EFI_DEVICE_ERROR An unexpected system or network error occurred.\r
855 \r
856**/ \r
857typedef \r
858EFI_STATUS \r
859(EFIAPI *EFI_IP6_CANCEL)( \r
860 IN EFI_IP6_PROTOCOL *This,\r
861 IN EFI_IP6_COMPLETION_TOKEN *Token OPTIONAL\r
862 );\r
863\r
864/**\r
865 Polls for incoming data packets and processes outgoing data packets.\r
866 \r
867 The Poll() function polls for incoming data packets and processes outgoing data\r
868 packets. Network drivers and applications can call the EFI_IP6_PROTOCOL.Poll()\r
869 function to increase the rate that data packets are moved between the communications\r
870 device and the transmit and receive queues.\r
871 \r
872 In some systems the periodic timer event may not poll the underlying communications\r
873 device fast enough to transmit and/or receive all data packets without missing\r
874 incoming packets or dropping outgoing packets. Drivers and applications that are\r
875 experiencing packet loss should try calling the EFI_IP6_PROTOCOL.Poll() function\r
876 more often.\r
877\r
878 @param[in] This Pointer to the EFI_IP6_PROTOCOL instance.\r
879\r
880 @retval EFI_SUCCESS Incoming or outgoing data was processed.\r
881 @retval EFI_NOT_STARTED This EFI IPv6 Protocol instance has not been started.\r
882 @retval EFI_INVALID_PARAMETER This is NULL.\r
883 @retval EFI_DEVICE_ERROR An unexpected system or network error occurred.\r
884 @retval EFI_NOT_READY No incoming or outgoing data is processed.\r
885 @retval EFI_TIMEOUT Data was dropped out of the transmit and/or receive queue.\r
886 Consider increasing the polling rate.\r
887\r
888**/\r
889typedef \r
890EFI_STATUS\r
5e6f3ee2 891(EFIAPI *EFI_IP6_POLL)(\r
bdb140d7 892 IN EFI_IP6_PROTOCOL *This\r
893 );\r
894\r
895///\r
896/// The EFI IPv6 Protocol implements a simple packet-oriented interface that can be\r
897/// used by drivers, daemons, and applications to transmit and receive network packets.\r
898///\r
5e6f3ee2 899struct _EFI_IP6_PROTOCOL {\r
bdb140d7 900 EFI_IP6_GET_MODE_DATA GetModeData;\r
901 EFI_IP6_CONFIGURE Configure;\r
902 EFI_IP6_GROUPS Groups;\r
903 EFI_IP6_ROUTES Routes;\r
904 EFI_IP6_NEIGHBORS Neighbors;\r
905 EFI_IP6_TRANSMIT Transmit;\r
906 EFI_IP6_RECEIVE Receive;\r
907 EFI_IP6_CANCEL Cancel;\r
908 EFI_IP6_POLL Poll;\r
5e6f3ee2 909};\r
bdb140d7 910\r
911extern EFI_GUID gEfiIp6ServiceBindingProtocolGuid;\r
912extern EFI_GUID gEfiIp6ProtocolGuid;\r
913\r
914#endif\r