]> git.proxmox.com Git - mirror_edk2.git/blame - MdePkg/Include/Protocol/Tcp6.h
modified to removed references to WinNt in the comments for serial drivers
[mirror_edk2.git] / MdePkg / Include / Protocol / Tcp6.h
CommitLineData
bdb140d7 1/** @file\r
2 EFI TCPv6(Transmission Control Protocol version 6) Protocol Definition\r
3 The EFI TCPv6 Service Binding Protocol is used to locate EFI TCPv6 Protocol drivers to create\r
4 and destroy child of the driver to communicate with other host using TCP protocol.\r
5 The EFI TCPv6 Protocol provides services to send and receive data stream.\r
6\r
7 Copyright (c) 2008 - 2009, Intel Corporation\r
8 All rights reserved. This program and the accompanying materials\r
9 are licensed and made available under the terms and conditions of the BSD License\r
10 which accompanies this distribution. The full text of the license may be found at\r
11 http://opensource.org/licenses/bsd-license.php\r
12\r
13 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r
14 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r
15\r
16**/\r
17\r
18#ifndef __EFI_TCP6_PROTOCOL_H__\r
19#define __EFI_TCP6_PROTOCOL_H__\r
20\r
21#include <Protocol/Snp.h>\r
22#include <Protocol/ManagedNetwork.h>\r
23#include <Protocol/Ip6.h>\r
24\r
25#define EFI_TCP6_SERVICE_BINDING_PROTOCOL_GUID \\r
26 { \\r
27 0xec20eb79, 0x6c1a, 0x4664, {0x9a, 0x0d, 0xd2, 0xe4, 0xcc, 0x16, 0xd6, 0x64 } \\r
28 }\r
29\r
30#define EFI_TCP6_PROTOCOL_GUID \\r
31 { \\r
32 0x46e44855, 0xbd60, 0x4ab7, {0xab, 0x0d, 0xa6, 0x79, 0xb9, 0x44, 0x7d, 0x77 } \\r
33 }\r
34\r
35\r
36typedef struct _EFI_TCP6_PROTOCOL EFI_TCP6_PROTOCOL;\r
37\r
38\r
39///\r
40/// EFI_TCP6_SERVICE_POINT\r
41///\r
42typedef struct {\r
43 ///\r
44 /// The EFI TCPv6 Protocol instance handle that is using this \r
45 /// address/port pair.\r
46 ///\r
47 EFI_HANDLE InstanceHandle;\r
48 /// \r
49 /// The local IPv6 address to which this TCP instance is bound. Set \r
50 /// to 0::/128, if this TCP instance is configured to listen on all \r
51 /// available source addresses.\r
52 /// \r
53 EFI_IPv6_ADDRESS LocalAddress;\r
54 /// \r
55 /// The local port number in host byte order.\r
56 /// \r
57 UINT16 LocalPort;\r
58 /// \r
59 /// The remote IPv6 address. It may be 0::/128 if this TCP instance is \r
60 /// not connected to any remote host. \r
61 /// \r
62 EFI_IPv6_ADDRESS RemoteAddress;\r
63 /// \r
64 /// The remote port number in host byte order. It may be zero if this \r
65 /// TCP instance is not connected to any remote host.\r
66 /// \r
67 UINT16 RemotePort;\r
68} EFI_TCP6_SERVICE_POINT;\r
69\r
70/// \r
71/// EFI_TCP6_VARIABLE_DATA\r
72///\r
73typedef struct {\r
74 EFI_HANDLE DriverHandle; ///< The handle of the driver that creates this entry.\r
75 UINT32 ServiceCount; ///< The number of address/port pairs following this data structure.\r
76 EFI_TCP6_SERVICE_POINT Services[1]; ///< List of address/port pairs that are currently in use.\r
77} EFI_TCP6_VARIABLE_DATA;\r
78\r
79///\r
80/// EFI_TCP6_ACCESS_POINT\r
81///\r
82typedef struct {\r
83 /// \r
84 /// The local IP address assigned to this TCP instance. The EFI \r
85 /// TCPv6 driver will only deliver incoming packets whose \r
86 /// destination addresses exactly match the IP address. Set to zero to \r
87 /// let the underlying IPv6 driver choose a source address. If not zero \r
88 /// it must be one of the configured IP addresses in the underlying \r
89 /// IPv6 driver.\r
90 /// \r
91 EFI_IPv6_ADDRESS StationAddress;\r
92 /// \r
93 /// The local port number to which this EFI TCPv6 Protocol instance \r
94 /// is bound. If the instance doesn't care the local port number, set \r
95 /// StationPort to zero to use an ephemeral port.\r
96 /// \r
97 UINT16 StationPort;\r
98 /// \r
99 /// The remote IP address to which this EFI TCPv6 Protocol instance \r
100 /// is connected. If ActiveFlag is FALSE (i.e. a passive TCPv6 \r
101 /// instance), the instance only accepts connections from the \r
102 /// RemoteAddress. If ActiveFlag is TRUE the instance will \r
103 /// connect to the RemoteAddress, i.e., outgoing segments will be \r
104 /// sent to this address and only segments from this address will be \r
105 /// delivered to the application. When ActiveFlag is FALSE, it \r
106 /// can be set to zero and means that incoming connection requests \r
107 /// from any address will be accepted.\r
108 /// \r
109 EFI_IPv6_ADDRESS RemoteAddress;\r
110 /// \r
111 /// The remote port to which this EFI TCPv6 Protocol instance \r
112 /// connects or from which connection request will be accepted by \r
113 /// this EFI TCPv6 Protocol instance. If ActiveFlag is FALSE it \r
114 /// can be zero and means that incoming connection request from \r
115 /// any port will be accepted. Its value can not be zero when \r
116 /// ActiveFlag is TRUE.\r
117 /// \r
118 UINT16 RemotePort;\r
119 /// \r
120 /// Set it to TRUE to initiate an active open. Set it to FALSE to \r
121 /// initiate a passive open to act as a server.\r
122 /// \r
123 BOOLEAN ActiveFlag;\r
124} EFI_TCP6_ACCESS_POINT;\r
125\r
126///\r
127/// EFI_TCP6_OPTION\r
128///\r
129typedef struct {\r
130 /// \r
131 /// The size of the TCP receive buffer.\r
132 /// \r
133 UINT32 ReceiveBufferSize;\r
134 /// \r
135 /// The size of the TCP send buffer.\r
136 /// \r
137 UINT32 SendBufferSize;\r
138 /// \r
139 /// The length of incoming connect request queue for a passive \r
140 /// instance. When set to zero, the value is implementation specific.\r
141 /// \r
142 UINT32 MaxSynBackLog;\r
143 /// \r
144 /// The maximum seconds a TCP instance will wait for before a TCP \r
145 /// connection established. When set to zero, the value is \r
146 /// implementation specific.\r
147 /// \r
148 UINT32 ConnectionTimeout;\r
149 ///\r
150 ///The number of times TCP will attempt to retransmit a packet on \r
151 ///an established connection. When set to zero, the value is \r
152 ///implementation specific.\r
153 ///\r
154 UINT32 DataRetries;\r
155 /// \r
156 /// How many seconds to wait in the FIN_WAIT_2 states for a final \r
157 /// FIN flag before the TCP instance is closed. This timeout is in \r
158 /// effective only if the application has called Close() to \r
159 /// disconnect the connection completely. It is also called \r
160 /// FIN_WAIT_2 timer in other implementations. When set to zero, \r
161 /// it should be disabled because the FIN_WAIT_2 timer itself is \r
162 /// against the standard. The default value is 60.\r
163 /// \r
164 UINT32 FinTimeout;\r
165 /// \r
166 /// How many seconds to wait in TIME_WAIT state before the TCP \r
167 /// instance is closed. The timer is disabled completely to provide a \r
168 /// method to close the TCP connection quickly if it is set to zero. It \r
169 /// is against the related RFC documents.\r
170 /// \r
171 UINT32 TimeWaitTimeout;\r
172 /// \r
173 /// The maximum number of TCP keep-alive probes to send before \r
174 /// giving up and resetting the connection if no response from the \r
175 /// other end. Set to zero to disable keep-alive probe.\r
176 /// \r
177 UINT32 KeepAliveProbes;\r
178 /// \r
179 /// The number of seconds a connection needs to be idle before TCP \r
180 /// sends out periodical keep-alive probes. When set to zero, the \r
181 /// value is implementation specific. It should be ignored if keep-\r
182 /// alive probe is disabled.\r
183 /// \r
184 UINT32 KeepAliveTime;\r
185 /// \r
186 /// The number of seconds between TCP keep-alive probes after the \r
187 /// periodical keep-alive probe if no response. When set to zero, the \r
188 /// value is implementation specific. It should be ignored if keep-\r
189 /// alive probe is disabled.\r
190 /// \r
191 UINT32 KeepAliveInterval;\r
192 /// \r
193 /// Set it to TRUE to enable the Nagle algorithm as defined in \r
194 /// RFC896. Set it to FALSE to disable it.\r
195 /// \r
196 BOOLEAN EnableNagle;\r
197 /// \r
198 /// Set it to TRUE to enable TCP timestamps option as defined in \r
199 /// RFC1323. Set to FALSE to disable it.\r
200 /// \r
201 BOOLEAN EnableTimeStamp;\r
202 /// \r
203 /// Set it to TRUE to enable TCP window scale option as defined in \r
204 /// RFC1323. Set it to FALSE to disable it. \r
205 /// \r
206 BOOLEAN EnableWindowScaling;\r
207 /// \r
208 /// Set it to TRUE to enable selective acknowledge mechanism \r
209 /// described in RFC 2018. Set it to FALSE to disable it. \r
210 /// Implementation that supports SACK can optionally support \r
211 /// DSAK as defined in RFC 2883.\r
212 /// \r
213 BOOLEAN EnableSelectiveAck;\r
214 /// \r
215 /// Set it to TRUE to enable path MTU discovery as defined in \r
216 /// RFC 1191. Set to FALSE to disable it.\r
217 /// \r
218 BOOLEAN EnablePathMtuDiscovery;\r
219} EFI_TCP6_OPTION;\r
220\r
221///\r
222/// EFI_TCP6_CONFIG_DATA\r
223///\r
224typedef struct {\r
225 ///\r
226 /// TrafficClass field in transmitted IPv6 packets.\r
227 ///\r
228 UINT8 TrafficClass;\r
229 ///\r
230 /// HopLimit field in transmitted IPv6 packets.\r
231 ///\r
232 UINT8 HopLimit;\r
233 ///\r
234 /// Used to specify TCP communication end settings for a TCP instance. \r
235 ///\r
236 EFI_TCP6_ACCESS_POINT AccessPoint;\r
237 ///\r
238 /// Used to configure the advance TCP option for a connection. If set \r
239 /// to NULL, implementation specific options for TCP connection will be used.\r
240 ///\r
241 EFI_TCP6_OPTION *ControlOption;\r
242} EFI_TCP6_CONFIG_DATA;\r
243\r
244///\r
245/// EFI_TCP6_CONNECTION_STATE\r
246///\r
247typedef enum {\r
248 Tcp6StateClosed = 0,\r
249 Tcp6StateListen = 1,\r
250 Tcp6StateSynSent = 2,\r
251 Tcp6StateSynReceived = 3,\r
252 Tcp6StateEstablished = 4,\r
253 Tcp6StateFinWait1 = 5,\r
254 Tcp6StateFinWait2 = 6,\r
255 Tcp6StateClosing = 7,\r
256 Tcp6StateTimeWait = 8,\r
257 Tcp6StateCloseWait = 9,\r
258 Tcp6StateLastAck = 10\r
259} EFI_TCP6_CONNECTION_STATE;\r
260\r
261///\r
262/// EFI_TCP6_COMPLETION_TOKEN\r
263/// is used as a common header for various asynchronous tokens. \r
264///\r
265typedef struct {\r
266 ///\r
267 /// The Event to signal after request is finished and Status field is \r
268 /// updated by the EFI TCPv6 Protocol driver. \r
269 /// \r
270 EFI_EVENT Event;\r
271 ///\r
272 /// The result of the completed operation. \r
273 ///\r
274 EFI_STATUS Status;\r
275} EFI_TCP6_COMPLETION_TOKEN;\r
276\r
277///\r
278/// EFI_TCP6_CONNECTION_TOKEN\r
279/// will be set if the active open succeeds or an unexpected\r
280/// error happens.\r
281///\r
282typedef struct {\r
283 ///\r
284 /// The Status in the CompletionToken will be set to one of \r
285 /// the following values if the active open succeeds or an unexpected \r
286 /// error happens:\r
287 /// EFI_SUCCESS: The active open succeeds and the instance's \r
288 /// state is Tcp6StateEstablished.\r
289 /// EFI_CONNECTION_RESET: The connect fails because the connection is reset\r
290 /// either by instance itself or the communication peer.\r
291 /// EFI_ABORTED: The active open is aborted.\r
292 /// EFI_TIMEOUT: The connection establishment timer expires and \r
293 /// no more specific information is available.\r
294 /// EFI_NETWORK_UNREACHABLE: The active open fails because \r
295 /// an ICMP network unreachable error is received. \r
296 /// EFI_HOST_UNREACHABLE: The active open fails because an \r
297 /// ICMP host unreachable error is received. \r
298 /// EFI_PROTOCOL_UNREACHABLE: The active open fails \r
299 /// because an ICMP protocol unreachable error is received.\r
300 /// EFI_PORT_UNREACHABLE: The connection establishment \r
301 /// timer times out and an ICMP port unreachable error is received.\r
302 /// EFI_ICMP_ERROR: The connection establishment timer times \r
303 /// out and some other ICMP error is received.\r
304 /// EFI_DEVICE_ERROR: An unexpected system or network error occurred.\r
305 /// EFI_SECURITY_VIOLATION: The active open was failed because of IPSec policy check.\r
306 /// \r
307 EFI_TCP6_COMPLETION_TOKEN CompletionToken;\r
308} EFI_TCP6_CONNECTION_TOKEN;\r
309\r
310///\r
311/// EFI_TCP6_LISTEN_TOKEN\r
312/// returns when list operation finishes.\r
313///\r
314typedef struct {\r
315 ///\r
316 /// The Status in CompletionToken will be set to the \r
317 /// following value if accept finishes:\r
318 /// EFI_SUCCESS: A remote peer has successfully established a \r
319 /// connection to this instance. A new TCP instance has also been \r
320 /// created for the connection.\r
321 /// EFI_CONNECTION_RESET: The accept fails because the connection is reset either\r
322 /// by instance itself or communication peer.\r
323 /// EFI_ABORTED: The accept request has been aborted.\r
324 /// EFI_SECURITY_VIOLATION: The accept operation was failed because of IPSec policy check.\r
325 ///\r
326 EFI_TCP6_COMPLETION_TOKEN CompletionToken;\r
327 EFI_HANDLE NewChildHandle;\r
328} EFI_TCP6_LISTEN_TOKEN;\r
329\r
330///\r
331/// EFI_TCP6_FRAGMENT_DATA\r
332/// allows multiple receive or transmit buffers to be specified. The \r
333/// purpose of this structure is to provide scattered read and write.\r
334///\r
335typedef struct {\r
336 UINT32 FragmentLength; ///< Length of data buffer in the fragment.\r
337 VOID *FragmentBuffer; ///< Pointer to the data buffer in the fragment.\r
338} EFI_TCP6_FRAGMENT_DATA;\r
339\r
340///\r
341/// EFI_TCP6_RECEIVE_DATA\r
342/// When TCPv6 driver wants to deliver received data to the application, \r
343/// it will pick up the first queued receiving token, update its\r
344/// Token->Packet.RxData then signal the Token->CompletionToken.Event.\r
345///\r
346typedef struct {\r
347 ///\r
348 /// Whether the data is urgent. When this flag is set, the instance is in \r
349 /// urgent mode. \r
350 ///\r
351 BOOLEAN UrgentFlag;\r
352 /// \r
353 /// When calling Receive() function, it is the byte counts of all \r
354 /// Fragmentbuffer in FragmentTable allocated by user. \r
355 /// When the token is signaled by TCPv6 driver it is the length of \r
356 /// received data in the fragments.\r
357 /// \r
358 UINT32 DataLength;\r
359 /// \r
360 /// Number of fragments.\r
361 /// \r
362 UINT32 FragmentCount;\r
363 /// \r
364 /// An array of fragment descriptors.\r
365 /// \r
366 EFI_TCP6_FRAGMENT_DATA FragmentTable[1];\r
367} EFI_TCP6_RECEIVE_DATA;\r
368\r
369///\r
370/// EFI_TCP6_TRANSMIT_DATA\r
371/// The EFI TCPv6 Protocol user must fill this data structure before sending a packet.\r
372/// The packet may contain multiple buffers in non-continuous memory locations. \r
373///\r
374typedef struct {\r
375 /// \r
376 /// Push If TRUE, data must be transmitted promptly, and the PUSH bit in \r
377 /// the last TCP segment created will be set. If FALSE, data \r
378 /// transmission may be delayed to combine with data from \r
379 /// subsequent Transmit()s for efficiency.\r
380 /// \r
381 BOOLEAN Push;\r
382 /// \r
383 /// The data in the fragment table are urgent and urgent point is in \r
384 /// effect if TRUE. Otherwise those data are NOT considered urgent.\r
385 /// \r
386 BOOLEAN Urgent;\r
387 ///\r
388 /// Length of the data in the fragments. \r
389 ///\r
390 UINT32 DataLength;\r
391 ///\r
392 /// Number of fragments.\r
393 /// \r
394 UINT32 FragmentCount;\r
395 ///\r
396 /// An array of fragment descriptors.\r
397 ///\r
398 EFI_TCP6_FRAGMENT_DATA FragmentTable[1];\r
399} EFI_TCP6_TRANSMIT_DATA;\r
400\r
401///\r
402/// EFI_TCP6_IO_TOKEN\r
403/// returns When transmission finishes or meets any unexpected error. \r
404///\r
405typedef struct {\r
406 /// \r
407 /// When transmission finishes or meets any unexpected error it will \r
408 /// be set to one of the following values:\r
409 /// EFI_SUCCESS: The receiving or transmission operation \r
410 /// completes successfully.\r
411 /// EFI_CONNECTION_RESET: The receiving or transmission operation fails\r
412 /// because this connection is reset either by instance \r
413 /// itself or the communication peer.\r
414 /// EFI_ABORTED: The receiving or transmission is aborted.\r
415 /// EFI_TIMEOUT: The transmission timer expires and no more \r
416 /// specific information is available.\r
417 /// EFI_NETWORK_UNREACHABLE: The transmission fails \r
418 /// because an ICMP network unreachable error is received. \r
419 /// EFI_HOST_UNREACHABLE: The transmission fails because an \r
420 /// ICMP host unreachable error is received. \r
421 /// EFI_PROTOCOL_UNREACHABLE: The transmission fails \r
422 /// because an ICMP protocol unreachable error is received. \r
423 /// EFI_PORT_UNREACHABLE: The transmission fails and an \r
424 /// ICMP port unreachable error is received. \r
425 /// EFI_ICMP_ERROR: The transmission fails and some other \r
426 /// ICMP error is received. \r
427 /// EFI_DEVICE_ERROR: An unexpected system or network error occurs.\r
428 /// EFI_SECURITY_VIOLATION: The receiving or transmission \r
429 /// operation was failed because of IPSec policy check\r
430 ///\r
431 EFI_TCP6_COMPLETION_TOKEN CompletionToken;\r
432 union {\r
433 ///\r
434 /// When this token is used for receiving, RxData is a pointer to \r
435 /// EFI_TCP6_RECEIVE_DATA.\r
436 ///\r
437 EFI_TCP6_RECEIVE_DATA *RxData;\r
438 /// \r
439 /// When this token is used for transmitting, TxData is a pointer to \r
440 /// EFI_TCP6_TRANSMIT_DATA.\r
441 ///\r
442 EFI_TCP6_TRANSMIT_DATA *TxData;\r
443 } Packet;\r
444} EFI_TCP6_IO_TOKEN;\r
445\r
446///\r
447/// EFI_TCP6_CLOSE_TOKEN\r
448/// returns when close operation finishes.\r
449///\r
450typedef struct {\r
451 ///\r
452 /// When close finishes or meets any unexpected error it will be set \r
453 /// to one of the following values:\r
454 /// EFI_SUCCESS: The close operation completes successfully.\r
455 /// EFI_ABORTED: User called configure with NULL without close stopping.\r
456 /// EFI_SECURITY_VIOLATION: The close operation was failed because of IPSec policy check.\r
457 /// \r
458 EFI_TCP6_COMPLETION_TOKEN CompletionToken;\r
459 /// \r
460 /// Abort the TCP connection on close instead of the standard TCP \r
461 /// close process when it is set to TRUE. This option can be used to \r
462 /// satisfy a fast disconnect.\r
463 /// \r
464 BOOLEAN AbortOnClose;\r
465} EFI_TCP6_CLOSE_TOKEN;\r
466\r
467/**\r
468 Get the current operational status.\r
469 \r
470 The GetModeData() function copies the current operational settings of this EFI TCPv6\r
471 Protocol instance into user-supplied buffers. This function can also be used to retrieve\r
472 the operational setting of underlying drivers such as IPv6, MNP, or SNP.\r
473\r
474 @param[in] This Pointer to the EFI_TCP6_PROTOCOL instance.\r
475 @param[out] Tcp6State The buffer in which the current TCP state is returned.\r
476 @param[out] Tcp6ConfigData The buffer in which the current TCP configuration is returned. \r
477 @param[out] Ip6ModeData The buffer in which the current IPv6 configuration data used by \r
478 the TCP instance is returned. \r
479 @param[out] MnpConfigData The buffer in which the current MNP configuration data used \r
480 indirectly by the TCP instance is returned.\r
481 @param[out] SnpModeData The buffer in which the current SNP mode data used indirectly by \r
482 the TCP instance is returned.\r
483\r
484 @retval EFI_SUCCESS The mode data was read.\r
485 @retval EFI_NOT_STARTED No configuration data is available because this instance hasn't\r
486 been started.\r
487 @retval EFI_INVALID_PARAMETER This is NULL.\r
488\r
489**/\r
490typedef\r
491EFI_STATUS\r
492(EFIAPI *EFI_TCP6_GET_MODE_DATA) (\r
493 IN EFI_TCP6_PROTOCOL *This,\r
494 OUT EFI_TCP6_CONNECTION_STATE *Tcp6State OPTIONAL,\r
495 OUT EFI_TCP6_CONFIG_DATA *Tcp6ConfigData OPTIONAL,\r
496 OUT EFI_IP6_MODE_DATA *Ip6ModeData OPTIONAL,\r
497 OUT EFI_MANAGED_NETWORK_CONFIG_DATA *MnpConfigData OPTIONAL,\r
498 OUT EFI_SIMPLE_NETWORK_MODE *SnpModeData OPTIONAL\r
499 );\r
500\r
501/**\r
502 Initialize or brutally reset the operational parameters for this EFI TCPv6 instance.\r
503\r
504 The Configure() function does the following:\r
505 - Initialize this TCP instance, i.e., initialize the communication end settings and\r
506 specify active open or passive open for an instance.\r
507 - Reset this TCP instance brutally, i.e., cancel all pending asynchronous tokens, flush \r
508 transmission and receiving buffer directly without informing the communication peer.\r
509\r
510 No other TCPv6 Protocol operation except Poll() can be executed by this instance until\r
511 it is configured properly. For an active TCP instance, after a proper configuration it\r
512 may call Connect() to initiates the three-way handshake. For a passive TCP instance, \r
513 its state will transit to Tcp6StateListen after configuration, and Accept() may be \r
514 called to listen the incoming TCP connection requests. If Tcp6ConfigData is set to NULL,\r
515 the instance is reset. Resetting process will be done brutally, the state machine will\r
516 be set to Tcp6StateClosed directly, the receive queue and transmit queue will be flushed,\r
517 and no traffic is allowed through this instance. \r
518\r
519 @param[in] This Pointer to the EFI_TCP6_PROTOCOL instance.\r
520 @param[in] Tcp6ConfigData Pointer to the configure data to configure the instance.\r
521 If Tcp6ConfigData is set to NULL, the instance is reset.\r
522\r
523 @retval EFI_SUCCESS The operational settings are set, changed, or reset\r
524 successfully.\r
525 @retval EFI_NO_MAPPING The underlying IPv6 driver was responsible for choosing a source \r
526 address for this instance, but no source address was available for \r
527 use.\r
528 @retval EFI_INVALID_PARAMETER One or more of the following conditions are TRUE:\r
529 - This is NULL.\r
530 - Tcp6ConfigData->AccessPoint.StationAddress is neither zero nor \r
531 one of the configured IP addresses in the underlying IPv6 driver.\r
532 - Tcp6ConfigData->AccessPoint.RemoteAddress isn't a valid unicast \r
533 IPv6 address.\r
534 - Tcp6ConfigData->AccessPoint.RemoteAddress is zero or \r
535 Tcp6ConfigData->AccessPoint.RemotePort is zero when \r
536 Tcp6ConfigData->AccessPoint.ActiveFlag is TRUE.\r
537 - A same access point has been configured in other TCP \r
538 instance properly.\r
539 @retval EFI_ACCESS_DENIED Configuring TCP instance when it is configured without\r
540 calling Configure() with NULL to reset it.\r
541 @retval EFI_UNSUPPORTED One or more of the control options are not supported in\r
542 the implementation.\r
543 @retval EFI_OUT_OF_RESOURCES Could not allocate enough system resources when\r
544 executing Configure().\r
545 @retval EFI_DEVICE_ERROR An unexpected network or system error occurred.\r
546\r
547**/\r
548typedef\r
549EFI_STATUS\r
550(EFIAPI *EFI_TCP6_CONFIGURE) (\r
551 IN EFI_TCP6_PROTOCOL *This,\r
552 IN EFI_TCP6_CONFIG_DATA *Tcp6ConfigData OPTIONAL\r
553 );\r
554\r
555/**\r
556 Initiate a nonblocking TCP connection request for an active TCP instance.\r
557\r
558 The Connect() function will initiate an active open to the remote peer configured\r
559 in current TCP instance if it is configured active. If the connection succeeds or\r
560 fails due to any error, the ConnectionToken->CompletionToken.Event will be signaled\r
561 and ConnectionToken->CompletionToken.Status will be updated accordingly. This \r
562 function can only be called for the TCP instance in Tcp6StateClosed state. The \r
563 instance will transfer into Tcp6StateSynSent if the function returns EFI_SUCCESS. \r
564 If TCP three-way handshake succeeds, its state will become Tcp6StateEstablished,\r
565 otherwise, the state will return to Tcp6StateClosed.\r
566\r
567 @param[in] This Pointer to the EFI_TCP6_PROTOCOL instance.\r
568 @param[in] ConnectionToken Pointer to the connection token to return when the TCP three\r
569 way handshake finishes.\r
570\r
571 @retval EFI_SUCCESS The connection request is successfully initiated and the state of \r
572 this TCP instance has been changed to Tcp6StateSynSent.\r
573 @retval EFI_NOT_STARTED This EFI TCPv6 Protocol instance has not been configured.\r
574 @retval EFI_ACCESS_DENIED One or more of the following conditions are TRUE:\r
575 - This instance is not configured as an active one.\r
576 - This instance is not in Tcp6StateClosed state.\r
577 @retval EFI_INVALID_PARAMETER One or more of the following are TRUE:\r
578 - This is NULL.\r
579 - ConnectionToken is NULL.\r
580 - ConnectionToken->CompletionToken.Event is NULL.\r
581 @retval EFI_OUT_OF_RESOURCES The driver can't allocate enough resource to initiate the active open.\r
582 @retval EFI_DEVICE_ERROR An unexpected system or network error occurred.\r
583\r
584**/\r
585typedef\r
586EFI_STATUS\r
587(EFIAPI *EFI_TCP6_CONNECT) (\r
588 IN EFI_TCP6_PROTOCOL *This,\r
589 IN EFI_TCP6_CONNECTION_TOKEN *ConnectionToken\r
590 );\r
591\r
592/**\r
593 Listen on the passive instance to accept an incoming connection request. This is a \r
594 nonblocking operation.\r
595 \r
596 The Accept() function initiates an asynchronous accept request to wait for an incoming \r
597 connection on the passive TCP instance. If a remote peer successfully establishes a \r
598 connection with this instance, a new TCP instance will be created and its handle will\r
599 be returned in ListenToken->NewChildHandle. The newly created instance is configured\r
600 by inheriting the passive instance's configuration and is ready for use upon return.\r
601 The new instance is in the Tcp6StateEstablished state.\r
602\r
603 The ListenToken->CompletionToken.Event will be signaled when a new connection is \r
604 accepted, user aborts the listen or connection is reset. \r
605\r
606 This function only can be called when current TCP instance is in Tcp6StateListen state. \r
607\r
608 @param[in] This Pointer to the EFI_TCP6_PROTOCOL instance.\r
609 @param[in] ListenToken Pointer to the listen token to return when operation finishes.\r
610 \r
611 \r
612 @retval EFI_SUCCESS The listen token has been queued successfully.\r
613 @retval EFI_NOT_STARTED This EFI TCPv6 Protocol instance has not been configured.\r
614 @retval EFI_ACCESS_DENIED One or more of the following are TRUE:\r
615 - This instance is not a passive instance.\r
616 - This instance is not in Tcp6StateListen state.\r
617 - The same listen token has already existed in the listen\r
618 token queue of this TCP instance.\r
619 @retval EFI_INVALID_PARAMETER One or more of the following are TRUE:\r
620 - This is NULL.\r
621 - ListenToken is NULL.\r
622 - ListentToken->CompletionToken.Event is NULL.\r
623 @retval EFI_OUT_OF_RESOURCES Could not allocate enough resource to finish the operation.\r
624 @retval EFI_DEVICE_ERROR Any unexpected and not belonged to above category error.\r
625\r
626**/\r
627typedef\r
628EFI_STATUS\r
629(EFIAPI *EFI_TCP6_ACCEPT) (\r
630 IN EFI_TCP6_PROTOCOL *This,\r
631 IN EFI_TCP6_LISTEN_TOKEN *ListenToken\r
632 );\r
633\r
634/**\r
635 Queues outgoing data into the transmit queue.\r
636\r
637 The Transmit() function queues a sending request to this TCP instance along with the\r
638 user data. The status of the token is updated and the event in the token will be \r
639 signaled once the data is sent out or some error occurs.\r
640\r
641 @param[in] This Pointer to the EFI_TCP6_PROTOCOL instance.\r
642 @param[in] Token Pointer to the completion token to queue to the transmit queue.\r
643\r
644 @retval EFI_SUCCESS The data has been queued for transmission.\r
645 @retval EFI_NOT_STARTED This EFI TCPv6 Protocol instance has not been configured.\r
646 @retval EFI_NO_MAPPING The underlying IPv6 driver was responsible for choosing a \r
647 source address for this instance, but no source address was \r
648 available for use.\r
649 @retval EFI_INVALID_PARAMETER One or more of the following are TRUE:\r
650 - This is NULL.\r
651 - Token is NULL.\r
652 - Token->CompletionToken.Event is NULL.\r
653 - Token->Packet.TxData is NULL.\r
654 - Token->Packet.FragmentCount is zero.\r
655 - Token->Packet.DataLength is not equal to the sum of fragment lengths.\r
656 @retval EFI_ACCESS_DENIED One or more of the following conditions are TRUE:\r
657 - A transmit completion token with the same Token-> \r
658 CompletionToken.Event was already in the \r
659 transmission queue.\r
660 - The current instance is in Tcp6StateClosed state.\r
661 - The current instance is a passive one and it is in \r
662 Tcp6StateListen state.\r
663 - User has called Close() to disconnect this connection.\r
664 @retval EFI_NOT_READY The completion token could not be queued because the\r
665 transmit queue is full.\r
666 @retval EFI_OUT_OF_RESOURCES Could not queue the transmit data because of resource\r
667 shortage.\r
668 @retval EFI_NETWORK_UNREACHABLE There is no route to the destination network or address.\r
669\r
670**/\r
671typedef\r
672EFI_STATUS\r
673(EFIAPI *EFI_TCP6_TRANSMIT) (\r
674 IN EFI_TCP6_PROTOCOL *This,\r
675 IN EFI_TCP6_IO_TOKEN *Token\r
676 );\r
677\r
678/**\r
679 Places an asynchronous receive request into the receiving queue.\r
680\r
681 The Receive() function places a completion token into the receive packet queue. This \r
682 function is always asynchronous. The caller must allocate the Token->CompletionToken.Event\r
683 and the FragmentBuffer used to receive data. The caller also must fill the DataLength which \r
684 represents the whole length of all FragmentBuffer. When the receive operation completes, the \r
685 EFI TCPv6 Protocol driver updates the Token->CompletionToken.Status and Token->Packet.RxData\r
686 fields and the Token->CompletionToken.Event is signaled. If got data the data and its length\r
687 will be copied into the FragmentTable, at the same time the full length of received data will\r
688 be recorded in the DataLength fields. Providing a proper notification function and context\r
689 for the event will enable the user to receive the notification and receiving status. That \r
690 notification function is guaranteed to not be re-entered.\r
691\r
692 @param[in] This Pointer to the EFI_TCP6_PROTOCOL instance.\r
693 @param[in] Token Pointer to a token that is associated with the receive data\r
694 descriptor.\r
695\r
696 @retval EFI_SUCCESS The receive completion token was cached.\r
697 @retval EFI_NOT_STARTED This EFI TCPv6 Protocol instance has not been configured.\r
698 @retval EFI_NO_MAPPING The underlying IPv6 driver was responsible for choosing a source \r
699 address for this instance, but no source address was available for use.\r
700 @retval EFI_INVALID_PARAMETER One or more of the following conditions is TRUE:\r
701 - This is NULL.\r
702 - Token is NULL.\r
703 - Token->CompletionToken.Event is NULL.\r
704 - Token->Packet.RxData is NULL.\r
705 - Token->Packet.RxData->DataLength is 0.\r
706 - The Token->Packet.RxData->DataLength is not the \r
707 sum of all FragmentBuffer length in FragmentTable.\r
708 @retval EFI_OUT_OF_RESOURCES The receive completion token could not be queued due to a lack of\r
709 system resources (usually memory).\r
710 @retval EFI_DEVICE_ERROR An unexpected system or network error occurred. \r
711 The EFI TCPv6 Protocol instance has been reset to startup defaults.\r
712 @retval EFI_ACCESS_DENIED One or more of the following conditions is TRUE:\r
713 - A receive completion token with the same Token->CompletionToken.Event\r
714 was already in the receive queue.\r
715 - The current instance is in Tcp6StateClosed state.\r
716 - The current instance is a passive one and it is in \r
717 Tcp6StateListen state.\r
718 - User has called Close() to disconnect this connection.\r
719 @retval EFI_CONNECTION_FIN The communication peer has closed the connection and there is no \r
720 any buffered data in the receive buffer of this instance\r
721 @retval EFI_NOT_READY The receive request could not be queued because the receive queue is full.\r
722\r
723**/\r
724typedef\r
725EFI_STATUS\r
726(EFIAPI *EFI_TCP6_RECEIVE) (\r
727 IN EFI_TCP6_PROTOCOL *This,\r
728 IN EFI_TCP6_IO_TOKEN *Token\r
729 );\r
730\r
731/**\r
732 Disconnecting a TCP connection gracefully or reset a TCP connection. This function is a\r
733 nonblocking operation.\r
734\r
735 Initiate an asynchronous close token to TCP driver. After Close() is called, any buffered \r
736 transmission data will be sent by TCP driver and the current instance will have a graceful close \r
737 working flow described as RFC 793 if AbortOnClose is set to FALSE, otherwise, a rest packet \r
738 will be sent by TCP driver to fast disconnect this connection. When the close operation completes \r
739 successfully the TCP instance is in Tcp6StateClosed state, all pending asynchronous \r
740 operations are signaled and any buffers used for TCP network traffic are flushed.\r
741\r
742 @param[in] This Pointer to the EFI_TCP6_PROTOCOL instance.\r
743 @param[in] CloseToken Pointer to the close token to return when operation finishes.\r
744 \r
745 @retval EFI_SUCCESS The Close() is called successfully.\r
746 @retval EFI_NOT_STARTED This EFI TCPv6 Protocol instance has not been configured.\r
747 @retval EFI_ACCESS_DENIED One or more of the following are TRUE:\r
748 - CloseToken or CloseToken->CompletionToken.Event is already in use.\r
749 - Previous Close() call on this instance has not finished.\r
750 @retval EFI_INVALID_PARAMETER One or more of the following are TRUE:\r
751 - This is NULL.\r
752 - CloseToken is NULL.\r
753 - CloseToken->CompletionToken.Event is NULL.\r
754 @retval EFI_OUT_OF_RESOURCES Could not allocate enough resource to finish the operation.\r
755 @retval EFI_DEVICE_ERROR Any unexpected and not belonged to above category error.\r
756\r
757**/\r
758typedef\r
759EFI_STATUS\r
760(EFIAPI *EFI_TCP6_CLOSE) (\r
761 IN EFI_TCP6_PROTOCOL *This,\r
762 IN EFI_TCP6_CLOSE_TOKEN *CloseToken\r
763 );\r
764\r
765/**\r
766 Abort an asynchronous connection, listen, transmission or receive request.\r
767\r
768 The Cancel() function aborts a pending connection, listen, transmit or \r
769 receive request.\r
770\r
771 If Token is not NULL and the token is in the connection, listen, transmission\r
772 or receive queue when it is being cancelled, its Token->Status will be set \r
773 to EFI_ABORTED and then Token->Event will be signaled.\r
774\r
775 If the token is not in one of the queues, which usually means that the \r
776 asynchronous operation has completed, EFI_NOT_FOUND is returned.\r
777\r
778 If Token is NULL all asynchronous token issued by Connect(), Accept(),\r
779 Transmit() and Receive() will be aborted.\r
780\r
781 @param[in] This Pointer to the EFI_TCP6_PROTOCOL instance.\r
782 @param[in] Token Pointer to a token that has been issued by\r
783 EFI_TCP6_PROTOCOL.Connect(),\r
784 EFI_TCP6_PROTOCOL.Accept(),\r
785 EFI_TCP6_PROTOCOL.Transmit() or\r
786 EFI_TCP6_PROTOCOL.Receive(). If NULL, all pending\r
787 tokens issued by above four functions will be aborted. Type\r
788 EFI_TCP6_COMPLETION_TOKEN is defined in\r
789 EFI_TCP_PROTOCOL.Connect().\r
790\r
791 @retval EFI_SUCCESS The asynchronous I/O request is aborted and Token->Event \r
792 is signaled. \r
793 @retval EFI_INVALID_PARAMETER This is NULL.\r
794 @retval EFI_NOT_STARTED This instance hasn't been configured.\r
795 @retval EFI_NOT_FOUND The asynchronous I/O request isn't found in the transmission or \r
796 receive queue. It has either completed or wasn't issued by \r
797 Transmit() and Receive().\r
798\r
799**/\r
800typedef\r
801EFI_STATUS\r
802(EFIAPI *EFI_TCP6_CANCEL) (\r
803 IN EFI_TCP6_PROTOCOL *This,\r
804 IN EFI_TCP6_COMPLETION_TOKEN *Token OPTIONAL\r
805 );\r
806\r
807/**\r
808 Poll to receive incoming data and transmit outgoing segments.\r
809\r
810 The Poll() function increases the rate that data is moved between the network\r
811 and application and can be called when the TCP instance is created successfully.\r
812 Its use is optional.\r
813\r
814 @param[in] This Pointer to the EFI_TCP6_PROTOCOL instance.\r
815\r
816 @retval EFI_SUCCESS Incoming or outgoing data was processed.\r
817 @retval EFI_INVALID_PARAMETER This is NULL.\r
818 @retval EFI_DEVICE_ERROR An unexpected system or network error occurred.\r
819 @retval EFI_NOT_READY No incoming or outgoing data is processed.\r
820 @retval EFI_TIMEOUT Data was dropped out of the transmission or receive queue.\r
821 Consider increasing the polling rate.\r
822\r
823**/\r
824typedef\r
825EFI_STATUS\r
826(EFIAPI *EFI_TCP6_POLL) (\r
827 IN EFI_TCP6_PROTOCOL *This\r
828 );\r
829\r
830///\r
831/// EFI_TCP6_PROTOCOL \r
832/// defines the EFI TCPv6 Protocol child to be used by any network drivers or\r
833/// applications to send or receive data stream. It can either listen on a \r
834/// specified port as a service or actively connect to remote peer as a client.\r
835/// Each instance has its own independent settings. \r
836///\r
837typedef struct _EFI_TCP6_PROTOCOL {\r
838 EFI_TCP6_GET_MODE_DATA GetModeData;\r
839 EFI_TCP6_CONFIGURE Configure;\r
840 EFI_TCP6_CONNECT Connect;\r
841 EFI_TCP6_ACCEPT Accept;\r
842 EFI_TCP6_TRANSMIT Transmit;\r
843 EFI_TCP6_RECEIVE Receive;\r
844 EFI_TCP6_CLOSE Close;\r
845 EFI_TCP6_CANCEL Cancel;\r
846 EFI_TCP6_POLL Poll;\r
847} EFI_TCP6_PROTOCOL;\r
848\r
849extern EFI_GUID gEfiTcp6ServiceBindingProtocolGuid;\r
850extern EFI_GUID gEfiTcp6ProtocolGuid;\r
851\r
852#endif\r
853\r