]> git.proxmox.com Git - mirror_edk2.git/blame - MdeModulePkg/Include/Library/NetLib.h
MdePkg: Add definitions for the SPI protocols introduced in PI 1.6.
[mirror_edk2.git] / MdeModulePkg / Include / Library / NetLib.h
CommitLineData
97b38d4e 1/** @file\r
1204fe83 2 This library is only intended to be used by UEFI network stack modules.\r
e9b67286 3 It provides basic functions for the UEFI network stack.\r
97b38d4e 4\r
9f5ca5ef 5Copyright (c) 2005 - 2017, Intel Corporation. All rights reserved.<BR>\r
cd5ebaa0 6This program and the accompanying materials\r
97b38d4e 7are licensed and made available under the terms and conditions of the BSD License\r
64a80549 8which accompanies this distribution. The full text of the license may be found at<BR>\r
97b38d4e 9http://opensource.org/licenses/bsd-license.php\r
10\r
11THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r
12WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r
13\r
14**/\r
15\r
16#ifndef _NET_LIB_H_\r
17#define _NET_LIB_H_\r
18\r
fb115c61 19#include <Protocol/Ip6.h>\r
20\r
1204fe83 21#include <Library/BaseLib.h>\r
7b126c2e 22#include <Library/BaseMemoryLib.h>\r
1204fe83 23\r
97b38d4e 24typedef UINT32 IP4_ADDR;\r
25typedef UINT32 TCP_SEQNO;\r
26typedef UINT16 TCP_PORTNO;\r
27\r
b45b45b2 28\r
29#define NET_ETHER_ADDR_LEN 6\r
30#define NET_IFTYPE_ETHERNET 0x01\r
31\r
779ae357 32#define NET_VLAN_TAG_LEN 4\r
33#define ETHER_TYPE_VLAN 0x8100\r
34\r
b45b45b2 35#define EFI_IP_PROTO_UDP 0x11\r
36#define EFI_IP_PROTO_TCP 0x06\r
37#define EFI_IP_PROTO_ICMP 0x01\r
f6b7393c 38#define IP4_PROTO_IGMP 0x02\r
39#define IP6_ICMP 58\r
dba6e9a9
JW
40#define DNS_MAX_NAME_SIZE 255\r
41#define DNS_MAX_MESSAGE_SIZE 512\r
b45b45b2 42\r
43//\r
44// The address classification\r
45//\r
3289dcba
FS
46#define IP4_ADDR_CLASSA 1 // Deprecated\r
47#define IP4_ADDR_CLASSB 2 // Deprecated\r
48#define IP4_ADDR_CLASSC 3 // Deprecated\r
b45b45b2 49#define IP4_ADDR_CLASSD 4\r
50#define IP4_ADDR_CLASSE 5\r
51\r
52#define IP4_MASK_NUM 33\r
f6b7393c 53#define IP6_PREFIX_NUM 129\r
b45b45b2 54\r
364f4efa
ZL
55#define IP4_MASK_MAX 32 \r
56#define IP6_PREFIX_MAX 128\r
57\r
b45b45b2 58#define IP6_HOP_BY_HOP 0\r
59#define IP6_DESTINATION 60\r
25400c63 60#define IP6_ROUTING 43\r
b45b45b2 61#define IP6_FRAGMENT 44\r
62#define IP6_AH 51\r
63#define IP6_ESP 50\r
64#define IP6_NO_NEXT_HEADER 59\r
65\r
a1503a32 66#define IP_VERSION_4 4\r
67#define IP_VERSION_6 6\r
fb115c61 68\r
501793fa
RN
69#define IP6_PREFIX_LENGTH 64\r
70\r
a57cdf33
JW
71//\r
72// DNS QTYPE values\r
73//\r
74#define DNS_TYPE_A 1\r
75#define DNS_TYPE_NS 2\r
76#define DNS_TYPE_CNAME 5\r
77#define DNS_TYPE_SOA 6\r
78#define DNS_TYPE_WKS 11\r
79#define DNS_TYPE_PTR 12\r
80#define DNS_TYPE_HINFO 13\r
81#define DNS_TYPE_MINFO 14\r
82#define DNS_TYPE_MX 15\r
83#define DNS_TYPE_TXT 16\r
84#define DNS_TYPE_AAAA 28\r
85#define DNS_TYPE_SRV_RR 33\r
86#define DNS_TYPE_AXFR 252\r
87#define DNS_TYPE_MAILB 253\r
88#define DNS_TYPE_ANY 255\r
89\r
90//\r
91// DNS QCLASS values\r
92//\r
93#define DNS_CLASS_INET 1\r
94#define DNS_CLASS_CH 3\r
95#define DNS_CLASS_HS 4\r
96#define DNS_CLASS_ANY 255\r
97\r
97b38d4e 98#pragma pack(1)\r
99\r
100//\r
101// Ethernet head definition\r
102//\r
103typedef struct {\r
104 UINT8 DstMac [NET_ETHER_ADDR_LEN];\r
105 UINT8 SrcMac [NET_ETHER_ADDR_LEN];\r
106 UINT16 EtherType;\r
107} ETHER_HEAD;\r
108\r
779ae357 109//\r
110// 802.1Q VLAN Tag Control Information\r
111//\r
112typedef union {\r
113 struct {\r
114 UINT16 Vid : 12; // Unique VLAN identifier (0 to 4094)\r
115 UINT16 Cfi : 1; // Canonical Format Indicator\r
116 UINT16 Priority : 3; // 802.1Q priority level (0 to 7)\r
117 } Bits;\r
118 UINT16 Uint16;\r
119} VLAN_TCI;\r
120\r
121#define VLAN_TCI_CFI_CANONICAL_MAC 0\r
122#define VLAN_TCI_CFI_NON_CANONICAL_MAC 1\r
97b38d4e 123\r
124//\r
125// The EFI_IP4_HEADER is hard to use because the source and\r
126// destination address are defined as EFI_IPv4_ADDRESS, which\r
127// is a structure. Two structures can't be compared or masked\r
128// directly. This is why there is an internal representation.\r
129//\r
130typedef struct {\r
131 UINT8 HeadLen : 4;\r
132 UINT8 Ver : 4;\r
133 UINT8 Tos;\r
134 UINT16 TotalLen;\r
135 UINT16 Id;\r
136 UINT16 Fragment;\r
137 UINT8 Ttl;\r
138 UINT8 Protocol;\r
139 UINT16 Checksum;\r
140 IP4_ADDR Src;\r
141 IP4_ADDR Dst;\r
142} IP4_HEAD;\r
143\r
144\r
145//\r
e9b67286 146// ICMP head definition. Each ICMP message is categorized as either an error\r
97b38d4e 147// message or query message. Two message types have their own head format.\r
148//\r
149typedef struct {\r
150 UINT8 Type;\r
151 UINT8 Code;\r
152 UINT16 Checksum;\r
153} IP4_ICMP_HEAD;\r
154\r
155typedef struct {\r
156 IP4_ICMP_HEAD Head;\r
157 UINT32 Fourth; // 4th filed of the head, it depends on Type.\r
158 IP4_HEAD IpHead;\r
159} IP4_ICMP_ERROR_HEAD;\r
160\r
161typedef struct {\r
162 IP4_ICMP_HEAD Head;\r
163 UINT16 Id;\r
164 UINT16 Seq;\r
165} IP4_ICMP_QUERY_HEAD;\r
166\r
fb115c61 167typedef struct {\r
168 UINT8 Type;\r
169 UINT8 Code;\r
170 UINT16 Checksum;\r
171} IP6_ICMP_HEAD;\r
172\r
173typedef struct {\r
174 IP6_ICMP_HEAD Head;\r
175 UINT32 Fourth;\r
176 EFI_IP6_HEADER IpHead;\r
177} IP6_ICMP_ERROR_HEAD;\r
178\r
179typedef struct {\r
180 IP6_ICMP_HEAD Head;\r
181 UINT32 Fourth;\r
182} IP6_ICMP_INFORMATION_HEAD;\r
97b38d4e 183\r
184//\r
185// UDP header definition\r
186//\r
187typedef struct {\r
188 UINT16 SrcPort;\r
189 UINT16 DstPort;\r
190 UINT16 Length;\r
191 UINT16 Checksum;\r
fb115c61 192} EFI_UDP_HEADER;\r
97b38d4e 193\r
194//\r
195// TCP header definition\r
196//\r
197typedef struct {\r
198 TCP_PORTNO SrcPort;\r
199 TCP_PORTNO DstPort;\r
200 TCP_SEQNO Seq;\r
201 TCP_SEQNO Ack;\r
202 UINT8 Res : 4;\r
203 UINT8 HeadLen : 4;\r
204 UINT8 Flag;\r
205 UINT16 Wnd;\r
206 UINT16 Checksum;\r
207 UINT16 Urg;\r
208} TCP_HEAD;\r
209\r
210#pragma pack()\r
211\r
212#define NET_MAC_EQUAL(pMac1, pMac2, Len) \\r
213 (CompareMem ((pMac1), (pMac2), Len) == 0)\r
214\r
215#define NET_MAC_IS_MULTICAST(Mac, BMac, Len) \\r
216 (((*((UINT8 *) Mac) & 0x01) == 0x01) && (!NET_MAC_EQUAL (Mac, BMac, Len)))\r
217\r
1204fe83 218#define NTOHL(x) SwapBytes32 (x)\r
97b38d4e 219\r
220#define HTONL(x) NTOHL(x)\r
221\r
1204fe83 222#define NTOHS(x) SwapBytes16 (x)\r
97b38d4e 223\r
f6b7393c 224#define HTONS(x) NTOHS(x)\r
225#define NTOHLL(x) SwapBytes64 (x)\r
226#define HTONLL(x) NTOHLL(x)\r
227#define NTOHLLL(x) Ip6Swap128 (x)\r
228#define HTONLLL(x) NTOHLLL(x)\r
97b38d4e 229\r
230//\r
231// Test the IP's attribute, All the IPs are in host byte order.\r
232//\r
233#define IP4_IS_MULTICAST(Ip) (((Ip) & 0xF0000000) == 0xE0000000)\r
3289dcba 234#define IP4_IS_UNSPECIFIED(Ip) ((Ip) == 0)\r
97b38d4e 235#define IP4_IS_LOCAL_BROADCAST(Ip) ((Ip) == 0xFFFFFFFF)\r
236#define IP4_NET_EQUAL(Ip1, Ip2, NetMask) (((Ip1) & (NetMask)) == ((Ip2) & (NetMask)))\r
364f4efa 237#define IP4_IS_VALID_NETMASK(Ip) (NetGetMaskLength (Ip) != (IP4_MASK_MAX + 1))\r
97b38d4e 238\r
3a15fd52 239#define IP6_IS_MULTICAST(Ip6) (((Ip6)->Addr[0]) == 0xFF)\r
240\r
97b38d4e 241//\r
242// Convert the EFI_IP4_ADDRESS to plain UINT32 IP4 address.\r
243//\r
244#define EFI_IP4(EfiIpAddr) (*(IP4_ADDR *) ((EfiIpAddr).Addr))\r
245#define EFI_NTOHL(EfiIp) (NTOHL (EFI_IP4 ((EfiIp))))\r
246#define EFI_IP4_EQUAL(Ip1, Ip2) (CompareMem ((Ip1), (Ip2), sizeof (EFI_IPv4_ADDRESS)) == 0)\r
247\r
fb115c61 248#define EFI_IP6_EQUAL(Ip1, Ip2) (CompareMem ((Ip1), (Ip2), sizeof (EFI_IPv6_ADDRESS)) == 0)\r
249\r
42372879 250#define IP4_COPY_ADDRESS(Dest, Src) (CopyMem ((Dest), (Src), sizeof (EFI_IPv4_ADDRESS)))\r
f6b7393c 251#define IP6_COPY_ADDRESS(Dest, Src) (CopyMem ((Dest), (Src), sizeof (EFI_IPv6_ADDRESS)))\r
252#define IP6_COPY_LINK_ADDRESS(Mac1, Mac2) (CopyMem ((Mac1), (Mac2), sizeof (EFI_MAC_ADDRESS)))\r
253\r
254//\r
1204fe83 255// The debug level definition. This value is also used as the\r
86ac8fb2 256// syslog's severity level. Don't change it.\r
f6b7393c 257//\r
258#define NETDEBUG_LEVEL_TRACE 5\r
259#define NETDEBUG_LEVEL_WARNING 4\r
260#define NETDEBUG_LEVEL_ERROR 3\r
261\r
262//\r
1204fe83 263// Network debug message is sent out as syslog packet.\r
f6b7393c 264//\r
1204fe83 265#define NET_SYSLOG_FACILITY 16 // Syslog local facility local use\r
266#define NET_SYSLOG_PACKET_LEN 512\r
267#define NET_SYSLOG_TX_TIMEOUT (500 * 1000 * 10) // 500ms\r
268#define NET_DEBUG_MSG_LEN 470 // 512 - (ether+ip4+udp4 head length)\r
f6b7393c 269\r
270//\r
1204fe83 271// The debug output expects the ASCII format string, Use %a to print ASCII\r
272// string, and %s to print UNICODE string. PrintArg must be enclosed in ().\r
f6b7393c 273// For example: NET_DEBUG_TRACE ("Tcp", ("State transit to %a\n", Name));\r
274//\r
275#define NET_DEBUG_TRACE(Module, PrintArg) \\r
276 NetDebugOutput ( \\r
277 NETDEBUG_LEVEL_TRACE, \\r
278 Module, \\r
279 __FILE__, \\r
280 __LINE__, \\r
281 NetDebugASPrint PrintArg \\r
282 )\r
283\r
284#define NET_DEBUG_WARNING(Module, PrintArg) \\r
285 NetDebugOutput ( \\r
286 NETDEBUG_LEVEL_WARNING, \\r
287 Module, \\r
288 __FILE__, \\r
289 __LINE__, \\r
290 NetDebugASPrint PrintArg \\r
291 )\r
292\r
293#define NET_DEBUG_ERROR(Module, PrintArg) \\r
294 NetDebugOutput ( \\r
295 NETDEBUG_LEVEL_ERROR, \\r
296 Module, \\r
297 __FILE__, \\r
298 __LINE__, \\r
299 NetDebugASPrint PrintArg \\r
300 )\r
301\r
302/**\r
1204fe83 303 Allocate a buffer, then format the message to it. This is a\r
304 help function for the NET_DEBUG_XXX macros. The PrintArg of\r
305 these macros treats the variable length print parameters as a\r
f6b7393c 306 single parameter, and pass it to the NetDebugASPrint. For\r
307 example, NET_DEBUG_TRACE ("Tcp", ("State transit to %a\n", Name))\r
1204fe83 308 if extracted to:\r
309\r
f6b7393c 310 NetDebugOutput (\r
1204fe83 311 NETDEBUG_LEVEL_TRACE,\r
312 "Tcp",\r
f6b7393c 313 __FILE__,\r
314 __LINE__,\r
1204fe83 315 NetDebugASPrint ("State transit to %a\n", Name)\r
316 )\r
317\r
f6b7393c 318 @param Format The ASCII format string.\r
1204fe83 319 @param ... The variable length parameter whose format is determined\r
f6b7393c 320 by the Format string.\r
321\r
322 @return The buffer containing the formatted message,\r
64a80549 323 or NULL if memory allocation failed.\r
f6b7393c 324\r
325**/\r
326CHAR8 *\r
e798cd87 327EFIAPI\r
f6b7393c 328NetDebugASPrint (\r
329 IN CHAR8 *Format,\r
330 ...\r
331 );\r
332\r
333/**\r
334 Builds an UDP4 syslog packet and send it using SNP.\r
335\r
336 This function will locate a instance of SNP then send the message through it.\r
337 Because it isn't open the SNP BY_DRIVER, apply caution when using it.\r
338\r
86ac8fb2
GL
339 @param Level The severity level of the message.\r
340 @param Module The Module that generates the log.\r
f6b7393c 341 @param File The file that contains the log.\r
342 @param Line The exact line that contains the log.\r
343 @param Message The user message to log.\r
344\r
345 @retval EFI_INVALID_PARAMETER Any input parameter is invalid.\r
346 @retval EFI_OUT_OF_RESOURCES Failed to allocate memory for the packet\r
1204fe83 347 @retval EFI_SUCCESS The log is discard because that it is more verbose\r
f6b7393c 348 than the mNetDebugLevelMax. Or, it has been sent out.\r
1204fe83 349**/\r
f6b7393c 350EFI_STATUS\r
e798cd87 351EFIAPI\r
f6b7393c 352NetDebugOutput (\r
1204fe83 353 IN UINT32 Level,\r
f6b7393c 354 IN UINT8 *Module,\r
355 IN UINT8 *File,\r
356 IN UINT32 Line,\r
357 IN UINT8 *Message\r
358 );\r
359\r
fb115c61 360\r
97b38d4e 361/**\r
1204fe83 362 Return the length of the mask.\r
363\r
e9b67286 364 Return the length of the mask. Valid values are 0 to 32.\r
3a1ab4bc 365 If the mask is invalid, return the invalid length 33, which is IP4_MASK_NUM.\r
97b38d4e 366 NetMask is in the host byte order.\r
367\r
ae213b7d 368 @param[in] NetMask The netmask to get the length from.\r
97b38d4e 369\r
e9b67286 370 @return The length of the netmask, or IP4_MASK_NUM (33) if the mask is invalid.\r
1204fe83 371\r
97b38d4e 372**/\r
373INTN\r
374EFIAPI\r
375NetGetMaskLength (\r
ae213b7d 376 IN IP4_ADDR NetMask\r
97b38d4e 377 );\r
378\r
379/**\r
3a1ab4bc 380 Return the class of the IP address, such as class A, B, C.\r
97b38d4e 381 Addr is in host byte order.\r
1204fe83 382\r
3289dcba
FS
383 [ATTENTION]\r
384 Classful addressing (IP class A/B/C) has been deprecated according to RFC4632.\r
385 Caller of this function could only check the returned value against\r
386 IP4_ADDR_CLASSD (multicast) or IP4_ADDR_CLASSE (reserved) now.\r
387\r
3a1ab4bc 388 The address of class A starts with 0.\r
389 If the address belong to class A, return IP4_ADDR_CLASSA.\r
1204fe83 390 The address of class B starts with 10.\r
3a1ab4bc 391 If the address belong to class B, return IP4_ADDR_CLASSB.\r
1204fe83 392 The address of class C starts with 110.\r
3a1ab4bc 393 If the address belong to class C, return IP4_ADDR_CLASSC.\r
1204fe83 394 The address of class D starts with 1110.\r
3a1ab4bc 395 If the address belong to class D, return IP4_ADDR_CLASSD.\r
396 The address of class E starts with 1111.\r
397 If the address belong to class E, return IP4_ADDR_CLASSE.\r
97b38d4e 398\r
1204fe83 399\r
ae213b7d 400 @param[in] Addr The address to get the class from.\r
97b38d4e 401\r
ae213b7d 402 @return IP address class, such as IP4_ADDR_CLASSA.\r
97b38d4e 403\r
404**/\r
405INTN\r
406EFIAPI\r
407NetGetIpClass (\r
408 IN IP4_ADDR Addr\r
409 );\r
410\r
411/**\r
412 Check whether the IP is a valid unicast address according to\r
3289dcba 413 the netmask. \r
1204fe83 414\r
3289dcba
FS
415 ASSERT if NetMask is zero.\r
416 \r
417 If all bits of the host address of IP are 0 or 1, IP is also not a valid unicast address.\r
97b38d4e 418\r
ae213b7d 419 @param[in] Ip The IP to check against.\r
420 @param[in] NetMask The mask of the IP.\r
97b38d4e 421\r
3289dcba 422 @return TRUE if IP is a valid unicast address on the network, otherwise FALSE.\r
97b38d4e 423\r
424**/\r
425BOOLEAN\r
ae213b7d 426EFIAPI\r
f6b7393c 427NetIp4IsUnicast (\r
97b38d4e 428 IN IP4_ADDR Ip,\r
429 IN IP4_ADDR NetMask\r
430 );\r
431\r
fb115c61 432/**\r
433 Check whether the incoming IPv6 address is a valid unicast address.\r
434\r
435 If the address is a multicast address has binary 0xFF at the start, it is not\r
436 a valid unicast address. If the address is unspecified ::, it is not a valid\r
437 unicast address to be assigned to any node. If the address is loopback address\r
438 ::1, it is also not a valid unicast address to be assigned to any physical\r
1204fe83 439 interface.\r
fb115c61 440\r
441 @param[in] Ip6 The IPv6 address to check against.\r
442\r
443 @return TRUE if Ip6 is a valid unicast address on the network, otherwise FALSE.\r
444\r
1204fe83 445**/\r
fb115c61 446BOOLEAN\r
e798cd87 447EFIAPI\r
f6b7393c 448NetIp6IsValidUnicast (\r
449 IN EFI_IPv6_ADDRESS *Ip6\r
450 );\r
451\r
452\r
453/**\r
454 Check whether the incoming Ipv6 address is the unspecified address or not.\r
455\r
456 @param[in] Ip6 - Ip6 address, in network order.\r
457\r
64a80549 458 @retval TRUE - Yes, incoming Ipv6 address is the unspecified address.\r
459 @retval FALSE - The incoming Ipv6 address is not the unspecified address\r
1204fe83 460\r
f6b7393c 461**/\r
462BOOLEAN\r
e798cd87 463EFIAPI\r
f6b7393c 464NetIp6IsUnspecifiedAddr (\r
fb115c61 465 IN EFI_IPv6_ADDRESS *Ip6\r
466 );\r
467\r
f6b7393c 468/**\r
469 Check whether the incoming Ipv6 address is a link-local address.\r
470\r
471 @param[in] Ip6 - Ip6 address, in network order.\r
472\r
64a80549 473 @retval TRUE - The incoming Ipv6 address is a link-local address.\r
474 @retval FALSE - The incoming Ipv6 address is not a link-local address.\r
1204fe83 475\r
f6b7393c 476**/\r
477BOOLEAN\r
e798cd87 478EFIAPI\r
f6b7393c 479NetIp6IsLinkLocalAddr (\r
480 IN EFI_IPv6_ADDRESS *Ip6\r
481 );\r
482\r
483/**\r
484 Check whether the Ipv6 address1 and address2 are on the connected network.\r
485\r
486 @param[in] Ip1 - Ip6 address1, in network order.\r
487 @param[in] Ip2 - Ip6 address2, in network order.\r
488 @param[in] PrefixLength - The prefix length of the checking net.\r
489\r
64a80549 490 @retval TRUE - Yes, the Ipv6 address1 and address2 are connected.\r
491 @retval FALSE - No the Ipv6 address1 and address2 are not connected.\r
1204fe83 492\r
f6b7393c 493**/\r
494BOOLEAN\r
e798cd87 495EFIAPI\r
f6b7393c 496NetIp6IsNetEqual (\r
497 EFI_IPv6_ADDRESS *Ip1,\r
498 EFI_IPv6_ADDRESS *Ip2,\r
499 UINT8 PrefixLength\r
500 );\r
501\r
b45b45b2 502/**\r
64a80549 503 Switches the endianess of an IPv6 address.\r
b45b45b2 504\r
505 This function swaps the bytes in a 128-bit IPv6 address to switch the value\r
506 from little endian to big endian or vice versa. The byte swapped value is\r
507 returned.\r
508\r
64a80549 509 @param Ip6 Points to an IPv6 address.\r
b45b45b2 510\r
511 @return The byte swapped IPv6 address.\r
512\r
513**/\r
514EFI_IPv6_ADDRESS *\r
e798cd87 515EFIAPI\r
b45b45b2 516Ip6Swap128 (\r
517 EFI_IPv6_ADDRESS *Ip6\r
518 );\r
519\r
8d7e5af1 520extern IP4_ADDR gIp4AllMasks[IP4_MASK_NUM];\r
97b38d4e 521\r
522\r
523extern EFI_IPv4_ADDRESS mZeroIp4Addr;\r
524\r
525#define NET_IS_DIGIT(Ch) (('0' <= (Ch)) && ((Ch) <= '9'))\r
418373a1 526#define NET_IS_HEX(Ch) ((('0' <= (Ch)) && ((Ch) <= '9')) || (('A' <= (Ch)) && ((Ch) <= 'F')) || (('a' <= (Ch)) && ((Ch) <= 'f')))\r
97b38d4e 527#define NET_ROUNDUP(size, unit) (((size) + (unit) - 1) & (~((unit) - 1)))\r
528#define NET_IS_LOWER_CASE_CHAR(Ch) (('a' <= (Ch)) && ((Ch) <= 'z'))\r
529#define NET_IS_UPPER_CASE_CHAR(Ch) (('A' <= (Ch)) && ((Ch) <= 'Z'))\r
530\r
531#define TICKS_PER_MS 10000U\r
532#define TICKS_PER_SECOND 10000000U\r
533\r
534#define NET_RANDOM(Seed) ((UINT32) ((UINT32) (Seed) * 1103515245UL + 12345) % 4294967295UL)\r
535\r
536/**\r
3a1ab4bc 537 Extract a UINT32 from a byte stream.\r
1204fe83 538\r
539 This function copies a UINT32 from a byte stream, and then converts it from Network\r
3a1ab4bc 540 byte order to host byte order. Use this function to avoid alignment error.\r
97b38d4e 541\r
ae213b7d 542 @param[in] Buf The buffer to extract the UINT32.\r
97b38d4e 543\r
544 @return The UINT32 extracted.\r
545\r
546**/\r
547UINT32\r
548EFIAPI\r
549NetGetUint32 (\r
550 IN UINT8 *Buf\r
551 );\r
552\r
553/**\r
1204fe83 554 Puts a UINT32 into the byte stream in network byte order.\r
555\r
64a80549 556 Converts a UINT32 from host byte order to network byte order, then copies it to the\r
3a1ab4bc 557 byte stream.\r
97b38d4e 558\r
64a80549 559 @param[in, out] Buf The buffer in which to put the UINT32.\r
3b1464d5 560 @param[in] Data The data to be converted and put into the byte stream.\r
1204fe83 561\r
97b38d4e 562**/\r
563VOID\r
564EFIAPI\r
565NetPutUint32 (\r
ae213b7d 566 IN OUT UINT8 *Buf,\r
567 IN UINT32 Data\r
97b38d4e 568 );\r
569\r
570/**\r
2bd25290 571 Initialize a random seed using current time and monotonic count.\r
1204fe83 572\r
2bd25290
FS
573 Get current time and monotonic count first. Then initialize a random seed \r
574 based on some basic mathematics operation on the hour, day, minute, second,\r
575 nanosecond and year of the current time and the monotonic count value.\r
1204fe83 576\r
2bd25290 577 @return The random seed initialized with current time.\r
97b38d4e 578\r
579**/\r
580UINT32\r
581EFIAPI\r
582NetRandomInitSeed (\r
583 VOID\r
584 );\r
585\r
586\r
587#define NET_LIST_USER_STRUCT(Entry, Type, Field) \\r
50d7ebad 588 BASE_CR(Entry, Type, Field)\r
97b38d4e 589\r
590#define NET_LIST_USER_STRUCT_S(Entry, Type, Field, Sig) \\r
591 CR(Entry, Type, Field, Sig)\r
592\r
593//\r
e9b67286 594// Iterate through the double linked list. It is NOT delete safe\r
97b38d4e 595//\r
596#define NET_LIST_FOR_EACH(Entry, ListHead) \\r
597 for(Entry = (ListHead)->ForwardLink; Entry != (ListHead); Entry = Entry->ForwardLink)\r
598\r
599//\r
e9b67286 600// Iterate through the double linked list. This is delete-safe.\r
97b38d4e 601// Don't touch NextEntry. Also, don't use this macro if list\r
602// entries other than the Entry may be deleted when processing\r
603// the current Entry.\r
604//\r
605#define NET_LIST_FOR_EACH_SAFE(Entry, NextEntry, ListHead) \\r
606 for(Entry = (ListHead)->ForwardLink, NextEntry = Entry->ForwardLink; \\r
607 Entry != (ListHead); \\r
608 Entry = NextEntry, NextEntry = Entry->ForwardLink \\r
609 )\r
610\r
611//\r
e9b67286 612// Make sure the list isn't empty before getting the first/last record.\r
97b38d4e 613//\r
614#define NET_LIST_HEAD(ListHead, Type, Field) \\r
615 NET_LIST_USER_STRUCT((ListHead)->ForwardLink, Type, Field)\r
616\r
617#define NET_LIST_TAIL(ListHead, Type, Field) \\r
618 NET_LIST_USER_STRUCT((ListHead)->BackLink, Type, Field)\r
619\r
620\r
621/**\r
3a1ab4bc 622 Remove the first node entry on the list, and return the removed node entry.\r
1204fe83 623\r
e9b67286 624 Removes the first node entry from a doubly linked list. It is up to the caller of\r
625 this function to release the memory used by the first node, if that is required. On\r
1204fe83 626 exit, the removed node is returned.\r
3a1ab4bc 627\r
628 If Head is NULL, then ASSERT().\r
629 If Head was not initialized, then ASSERT().\r
630 If PcdMaximumLinkedListLength is not zero, and the number of nodes in the\r
631 linked list including the head node is greater than or equal to PcdMaximumLinkedListLength,\r
1204fe83 632 then ASSERT().\r
97b38d4e 633\r
ae213b7d 634 @param[in, out] Head The list header.\r
97b38d4e 635\r
3a1ab4bc 636 @return The first node entry that is removed from the list, NULL if the list is empty.\r
97b38d4e 637\r
638**/\r
639LIST_ENTRY *\r
640EFIAPI\r
641NetListRemoveHead (\r
ae213b7d 642 IN OUT LIST_ENTRY *Head\r
97b38d4e 643 );\r
644\r
645/**\r
e9b67286 646 Remove the last node entry on the list and return the removed node entry.\r
3a1ab4bc 647\r
648 Removes the last node entry from a doubly linked list. It is up to the caller of\r
e9b67286 649 this function to release the memory used by the first node, if that is required. On\r
1204fe83 650 exit, the removed node is returned.\r
97b38d4e 651\r
3a1ab4bc 652 If Head is NULL, then ASSERT().\r
653 If Head was not initialized, then ASSERT().\r
654 If PcdMaximumLinkedListLength is not zero, and the number of nodes in the\r
655 linked list including the head node is greater than or equal to PcdMaximumLinkedListLength,\r
1204fe83 656 then ASSERT().\r
657\r
ae213b7d 658 @param[in, out] Head The list head.\r
97b38d4e 659\r
3a1ab4bc 660 @return The last node entry that is removed from the list, NULL if the list is empty.\r
97b38d4e 661\r
662**/\r
663LIST_ENTRY *\r
664EFIAPI\r
665NetListRemoveTail (\r
ae213b7d 666 IN OUT LIST_ENTRY *Head\r
97b38d4e 667 );\r
668\r
669/**\r
3a1ab4bc 670 Insert a new node entry after a designated node entry of a doubly linked list.\r
1204fe83 671\r
e9b67286 672 Inserts a new node entry designated by NewEntry after the node entry designated by PrevEntry\r
3a1ab4bc 673 of the doubly linked list.\r
1204fe83 674\r
675 @param[in, out] PrevEntry The entry after which to insert.\r
ae213b7d 676 @param[in, out] NewEntry The new entry to insert.\r
97b38d4e 677\r
678**/\r
679VOID\r
680EFIAPI\r
681NetListInsertAfter (\r
ae213b7d 682 IN OUT LIST_ENTRY *PrevEntry,\r
683 IN OUT LIST_ENTRY *NewEntry\r
97b38d4e 684 );\r
685\r
686/**\r
3a1ab4bc 687 Insert a new node entry before a designated node entry of a doubly linked list.\r
1204fe83 688\r
e9b67286 689 Inserts a new node entry designated by NewEntry before the node entry designated by PostEntry\r
3a1ab4bc 690 of the doubly linked list.\r
1204fe83 691\r
ae213b7d 692 @param[in, out] PostEntry The entry to insert before.\r
693 @param[in, out] NewEntry The new entry to insert.\r
97b38d4e 694\r
695**/\r
696VOID\r
697EFIAPI\r
698NetListInsertBefore (\r
ae213b7d 699 IN OUT LIST_ENTRY *PostEntry,\r
700 IN OUT LIST_ENTRY *NewEntry\r
97b38d4e 701 );\r
702\r
216f7970 703/**\r
704 Callback function which provided by user to remove one node in NetDestroyLinkList process.\r
705 \r
706 @param[in] Entry The entry to be removed.\r
707 @param[in] Context Pointer to the callback context corresponds to the Context in NetDestroyLinkList.\r
708\r
709 @retval EFI_SUCCESS The entry has been removed successfully.\r
710 @retval Others Fail to remove the entry.\r
711\r
712**/\r
713typedef\r
714EFI_STATUS\r
715(EFIAPI *NET_DESTROY_LINK_LIST_CALLBACK) (\r
716 IN LIST_ENTRY *Entry,\r
717 IN VOID *Context OPTIONAL\r
1f7eb561 718 );\r
216f7970 719\r
720/**\r
721 Safe destroy nodes in a linked list, and return the length of the list after all possible operations finished.\r
722\r
723 Destroy network children list by list traversals is not safe due to graph dependencies between nodes.\r
724 This function performs a safe traversal to destroy these nodes by checking to see if the node being destroyed\r
725 has been removed from the list or not.\r
726 If it has been removed, then restart the traversal from the head.\r
727 If it hasn't been removed, then continue with the next node directly.\r
728 This function will end the iterate and return the CallBack's last return value if error happens,\r
729 or retrun EFI_SUCCESS if 2 complete passes are made with no changes in the number of children in the list. \r
730\r
731 @param[in] List The head of the list.\r
732 @param[in] CallBack Pointer to the callback function to destroy one node in the list.\r
733 @param[in] Context Pointer to the callback function's context: corresponds to the\r
734 parameter Context in NET_DESTROY_LINK_LIST_CALLBACK.\r
735 @param[out] ListLength The length of the link list if the function returns successfully.\r
736\r
737 @retval EFI_SUCCESS Two complete passes are made with no changes in the number of children.\r
738 @retval EFI_INVALID_PARAMETER The input parameter is invalid.\r
739 @retval Others Return the CallBack's last return value.\r
740\r
741**/\r
742EFI_STATUS\r
743EFIAPI\r
744NetDestroyLinkList (\r
745 IN LIST_ENTRY *List,\r
746 IN NET_DESTROY_LINK_LIST_CALLBACK CallBack,\r
747 IN VOID *Context, OPTIONAL\r
748 OUT UINTN *ListLength OPTIONAL\r
1f7eb561 749 );\r
216f7970 750\r
751/**\r
752 This function checks the input Handle to see if it's one of these handles in ChildHandleBuffer.\r
753\r
754 @param[in] Handle Handle to be checked.\r
755 @param[in] NumberOfChildren Number of Handles in ChildHandleBuffer.\r
756 @param[in] ChildHandleBuffer An array of child handles to be freed. May be NULL\r
757 if NumberOfChildren is 0.\r
758\r
86ac8fb2 759 @retval TRUE Found the input Handle in ChildHandleBuffer.\r
216f7970 760 @retval FALSE Can't find the input Handle in ChildHandleBuffer.\r
761\r
762**/\r
763BOOLEAN\r
1f7eb561 764EFIAPI\r
216f7970 765NetIsInHandleBuffer (\r
766 IN EFI_HANDLE Handle,\r
767 IN UINTN NumberOfChildren,\r
768 IN EFI_HANDLE *ChildHandleBuffer OPTIONAL\r
1f7eb561 769 );\r
97b38d4e 770\r
771//\r
772// Object container: EFI network stack spec defines various kinds of\r
773// tokens. The drivers can share code to manage those objects.\r
774//\r
775typedef struct {\r
776 LIST_ENTRY Link;\r
777 VOID *Key;\r
778 VOID *Value;\r
779} NET_MAP_ITEM;\r
780\r
781typedef struct {\r
782 LIST_ENTRY Used;\r
783 LIST_ENTRY Recycled;\r
784 UINTN Count;\r
785} NET_MAP;\r
786\r
787#define NET_MAP_INCREAMENT 64\r
788\r
789/**\r
790 Initialize the netmap. Netmap is a reposity to keep the <Key, Value> pairs.\r
1204fe83 791\r
792 Initialize the forward and backward links of two head nodes donated by Map->Used\r
3a1ab4bc 793 and Map->Recycled of two doubly linked lists.\r
794 Initializes the count of the <Key, Value> pairs in the netmap to zero.\r
1204fe83 795\r
3a1ab4bc 796 If Map is NULL, then ASSERT().\r
797 If the address of Map->Used is NULL, then ASSERT().\r
798 If the address of Map->Recycled is NULl, then ASSERT().\r
1204fe83 799\r
ae213b7d 800 @param[in, out] Map The netmap to initialize.\r
97b38d4e 801\r
802**/\r
803VOID\r
804EFIAPI\r
805NetMapInit (\r
ae213b7d 806 IN OUT NET_MAP *Map\r
97b38d4e 807 );\r
808\r
809/**\r
810 To clean up the netmap, that is, release allocated memories.\r
1204fe83 811\r
e9b67286 812 Removes all nodes of the Used doubly linked list and frees memory of all related netmap items.\r
3a1ab4bc 813 Removes all nodes of the Recycled doubly linked list and free memory of all related netmap items.\r
e9b67286 814 The number of the <Key, Value> pairs in the netmap is set to zero.\r
1204fe83 815\r
3a1ab4bc 816 If Map is NULL, then ASSERT().\r
1204fe83 817\r
ae213b7d 818 @param[in, out] Map The netmap to clean up.\r
97b38d4e 819\r
820**/\r
821VOID\r
822EFIAPI\r
823NetMapClean (\r
ae213b7d 824 IN OUT NET_MAP *Map\r
97b38d4e 825 );\r
826\r
827/**\r
3a1ab4bc 828 Test whether the netmap is empty and return true if it is.\r
1204fe83 829\r
3a1ab4bc 830 If the number of the <Key, Value> pairs in the netmap is zero, return TRUE.\r
1204fe83 831\r
3a1ab4bc 832 If Map is NULL, then ASSERT().\r
1204fe83 833\r
834\r
ae213b7d 835 @param[in] Map The net map to test.\r
97b38d4e 836\r
837 @return TRUE if the netmap is empty, otherwise FALSE.\r
838\r
839**/\r
840BOOLEAN\r
841EFIAPI\r
842NetMapIsEmpty (\r
843 IN NET_MAP *Map\r
844 );\r
845\r
846/**\r
847 Return the number of the <Key, Value> pairs in the netmap.\r
848\r
ae213b7d 849 @param[in] Map The netmap to get the entry number.\r
97b38d4e 850\r
851 @return The entry number in the netmap.\r
852\r
853**/\r
854UINTN\r
855EFIAPI\r
856NetMapGetCount (\r
857 IN NET_MAP *Map\r
858 );\r
859\r
860/**\r
861 Allocate an item to save the <Key, Value> pair to the head of the netmap.\r
1204fe83 862\r
3a1ab4bc 863 Allocate an item to save the <Key, Value> pair and add corresponding node entry\r
1204fe83 864 to the beginning of the Used doubly linked list. The number of the <Key, Value>\r
3a1ab4bc 865 pairs in the netmap increase by 1.\r
97b38d4e 866\r
3a1ab4bc 867 If Map is NULL, then ASSERT().\r
1204fe83 868\r
ae213b7d 869 @param[in, out] Map The netmap to insert into.\r
870 @param[in] Key The user's key.\r
871 @param[in] Value The user's value for the key.\r
97b38d4e 872\r
ae213b7d 873 @retval EFI_OUT_OF_RESOURCES Failed to allocate the memory for the item.\r
874 @retval EFI_SUCCESS The item is inserted to the head.\r
97b38d4e 875\r
876**/\r
877EFI_STATUS\r
878EFIAPI\r
879NetMapInsertHead (\r
ae213b7d 880 IN OUT NET_MAP *Map,\r
97b38d4e 881 IN VOID *Key,\r
882 IN VOID *Value OPTIONAL\r
883 );\r
884\r
885/**\r
886 Allocate an item to save the <Key, Value> pair to the tail of the netmap.\r
887\r
3a1ab4bc 888 Allocate an item to save the <Key, Value> pair and add corresponding node entry\r
1204fe83 889 to the tail of the Used doubly linked list. The number of the <Key, Value>\r
3a1ab4bc 890 pairs in the netmap increase by 1.\r
891\r
892 If Map is NULL, then ASSERT().\r
1204fe83 893\r
ae213b7d 894 @param[in, out] Map The netmap to insert into.\r
895 @param[in] Key The user's key.\r
896 @param[in] Value The user's value for the key.\r
97b38d4e 897\r
ae213b7d 898 @retval EFI_OUT_OF_RESOURCES Failed to allocate the memory for the item.\r
899 @retval EFI_SUCCESS The item is inserted to the tail.\r
97b38d4e 900\r
901**/\r
902EFI_STATUS\r
903EFIAPI\r
904NetMapInsertTail (\r
ae213b7d 905 IN OUT NET_MAP *Map,\r
97b38d4e 906 IN VOID *Key,\r
907 IN VOID *Value OPTIONAL\r
908 );\r
909\r
910/**\r
e9b67286 911 Finds the key in the netmap and returns the point to the item containing the Key.\r
1204fe83 912\r
913 Iterate the Used doubly linked list of the netmap to get every item. Compare the key of every\r
3a1ab4bc 914 item with the key to search. It returns the point to the item contains the Key if found.\r
97b38d4e 915\r
3a1ab4bc 916 If Map is NULL, then ASSERT().\r
1204fe83 917\r
ae213b7d 918 @param[in] Map The netmap to search within.\r
919 @param[in] Key The key to search.\r
97b38d4e 920\r
921 @return The point to the item contains the Key, or NULL if Key isn't in the map.\r
922\r
923**/\r
ae213b7d 924NET_MAP_ITEM *\r
97b38d4e 925EFIAPI\r
926NetMapFindKey (\r
927 IN NET_MAP *Map,\r
928 IN VOID *Key\r
929 );\r
930\r
931/**\r
3a1ab4bc 932 Remove the node entry of the item from the netmap and return the key of the removed item.\r
1204fe83 933\r
934 Remove the node entry of the item from the Used doubly linked list of the netmap.\r
935 The number of the <Key, Value> pairs in the netmap decrease by 1. Then add the node\r
3a1ab4bc 936 entry of the item to the Recycled doubly linked list of the netmap. If Value is not NULL,\r
937 Value will point to the value of the item. It returns the key of the removed item.\r
1204fe83 938\r
3a1ab4bc 939 If Map is NULL, then ASSERT().\r
940 If Item is NULL, then ASSERT().\r
941 if item in not in the netmap, then ASSERT().\r
1204fe83 942\r
ae213b7d 943 @param[in, out] Map The netmap to remove the item from.\r
944 @param[in, out] Item The item to remove.\r
945 @param[out] Value The variable to receive the value if not NULL.\r
97b38d4e 946\r
ae213b7d 947 @return The key of the removed item.\r
97b38d4e 948\r
949**/\r
950VOID *\r
951EFIAPI\r
952NetMapRemoveItem (\r
ae213b7d 953 IN OUT NET_MAP *Map,\r
954 IN OUT NET_MAP_ITEM *Item,\r
955 OUT VOID **Value OPTIONAL\r
97b38d4e 956 );\r
957\r
958/**\r
3a1ab4bc 959 Remove the first node entry on the netmap and return the key of the removed item.\r
97b38d4e 960\r
1204fe83 961 Remove the first node entry from the Used doubly linked list of the netmap.\r
962 The number of the <Key, Value> pairs in the netmap decrease by 1. Then add the node\r
3a1ab4bc 963 entry to the Recycled doubly linked list of the netmap. If parameter Value is not NULL,\r
964 parameter Value will point to the value of the item. It returns the key of the removed item.\r
1204fe83 965\r
3a1ab4bc 966 If Map is NULL, then ASSERT().\r
967 If the Used doubly linked list is empty, then ASSERT().\r
1204fe83 968\r
ae213b7d 969 @param[in, out] Map The netmap to remove the head from.\r
970 @param[out] Value The variable to receive the value if not NULL.\r
97b38d4e 971\r
ae213b7d 972 @return The key of the item removed.\r
97b38d4e 973\r
974**/\r
975VOID *\r
976EFIAPI\r
977NetMapRemoveHead (\r
ae213b7d 978 IN OUT NET_MAP *Map,\r
979 OUT VOID **Value OPTIONAL\r
97b38d4e 980 );\r
981\r
982/**\r
3a1ab4bc 983 Remove the last node entry on the netmap and return the key of the removed item.\r
97b38d4e 984\r
1204fe83 985 Remove the last node entry from the Used doubly linked list of the netmap.\r
986 The number of the <Key, Value> pairs in the netmap decrease by 1. Then add the node\r
3a1ab4bc 987 entry to the Recycled doubly linked list of the netmap. If parameter Value is not NULL,\r
988 parameter Value will point to the value of the item. It returns the key of the removed item.\r
1204fe83 989\r
3a1ab4bc 990 If Map is NULL, then ASSERT().\r
991 If the Used doubly linked list is empty, then ASSERT().\r
1204fe83 992\r
ae213b7d 993 @param[in, out] Map The netmap to remove the tail from.\r
994 @param[out] Value The variable to receive the value if not NULL.\r
97b38d4e 995\r
ae213b7d 996 @return The key of the item removed.\r
97b38d4e 997\r
998**/\r
999VOID *\r
1000EFIAPI\r
1001NetMapRemoveTail (\r
ae213b7d 1002 IN OUT NET_MAP *Map,\r
1003 OUT VOID **Value OPTIONAL\r
97b38d4e 1004 );\r
1005\r
1006typedef\r
1007EFI_STATUS\r
e798cd87 1008(EFIAPI *NET_MAP_CALLBACK) (\r
97b38d4e 1009 IN NET_MAP *Map,\r
1010 IN NET_MAP_ITEM *Item,\r
1011 IN VOID *Arg\r
1012 );\r
1013\r
1014/**\r
3a1ab4bc 1015 Iterate through the netmap and call CallBack for each item.\r
1204fe83 1016\r
86ac8fb2 1017 It will continue the traverse if CallBack returns EFI_SUCCESS, otherwise, break\r
1204fe83 1018 from the loop. It returns the CallBack's last return value. This function is\r
3a1ab4bc 1019 delete safe for the current item.\r
97b38d4e 1020\r
3a1ab4bc 1021 If Map is NULL, then ASSERT().\r
1022 If CallBack is NULL, then ASSERT().\r
1204fe83 1023\r
ae213b7d 1024 @param[in] Map The Map to iterate through.\r
1025 @param[in] CallBack The callback function to call for each item.\r
1026 @param[in] Arg The opaque parameter to the callback.\r
97b38d4e 1027\r
64a80549 1028 @retval EFI_SUCCESS There is no item in the netmap, or CallBack for each item\r
1029 returns EFI_SUCCESS.\r
ae213b7d 1030 @retval Others It returns the CallBack's last return value.\r
97b38d4e 1031\r
1032**/\r
1033EFI_STATUS\r
1034EFIAPI\r
1035NetMapIterate (\r
1036 IN NET_MAP *Map,\r
1037 IN NET_MAP_CALLBACK CallBack,\r
f6b7393c 1038 IN VOID *Arg OPTIONAL\r
97b38d4e 1039 );\r
1040\r
1041\r
1042//\r
1043// Helper functions to implement driver binding and service binding protocols.\r
1044//\r
1045/**\r
1046 Create a child of the service that is identified by ServiceBindingGuid.\r
1204fe83 1047\r
3a1ab4bc 1048 Get the ServiceBinding Protocol first, then use it to create a child.\r
97b38d4e 1049\r
3a1ab4bc 1050 If ServiceBindingGuid is NULL, then ASSERT().\r
1051 If ChildHandle is NULL, then ASSERT().\r
1204fe83 1052\r
ae213b7d 1053 @param[in] Controller The controller which has the service installed.\r
1054 @param[in] Image The image handle used to open service.\r
1055 @param[in] ServiceBindingGuid The service's Guid.\r
e9b67286 1056 @param[in, out] ChildHandle The handle to receive the created child.\r
97b38d4e 1057\r
e9b67286 1058 @retval EFI_SUCCESS The child was successfully created.\r
97b38d4e 1059 @retval Others Failed to create the child.\r
1060\r
1061**/\r
1062EFI_STATUS\r
1063EFIAPI\r
1064NetLibCreateServiceChild (\r
ae213b7d 1065 IN EFI_HANDLE Controller,\r
1066 IN EFI_HANDLE Image,\r
97b38d4e 1067 IN EFI_GUID *ServiceBindingGuid,\r
ae213b7d 1068 IN OUT EFI_HANDLE *ChildHandle\r
97b38d4e 1069 );\r
1070\r
1071/**\r
e9b67286 1072 Destroy a child of the service that is identified by ServiceBindingGuid.\r
1204fe83 1073\r
3a1ab4bc 1074 Get the ServiceBinding Protocol first, then use it to destroy a child.\r
1204fe83 1075\r
3a1ab4bc 1076 If ServiceBindingGuid is NULL, then ASSERT().\r
1204fe83 1077\r
ae213b7d 1078 @param[in] Controller The controller which has the service installed.\r
1079 @param[in] Image The image handle used to open service.\r
1080 @param[in] ServiceBindingGuid The service's Guid.\r
e9b67286 1081 @param[in] ChildHandle The child to destroy.\r
97b38d4e 1082\r
64a80549 1083 @retval EFI_SUCCESS The child was destroyed.\r
e9b67286 1084 @retval Others Failed to destroy the child.\r
97b38d4e 1085\r
1086**/\r
1087EFI_STATUS\r
1088EFIAPI\r
1089NetLibDestroyServiceChild (\r
ae213b7d 1090 IN EFI_HANDLE Controller,\r
1091 IN EFI_HANDLE Image,\r
97b38d4e 1092 IN EFI_GUID *ServiceBindingGuid,\r
1093 IN EFI_HANDLE ChildHandle\r
1094 );\r
1095\r
1096/**\r
779ae357 1097 Get handle with Simple Network Protocol installed on it.\r
1098\r
1099 There should be MNP Service Binding Protocol installed on the input ServiceHandle.\r
1100 If Simple Network Protocol is already installed on the ServiceHandle, the\r
1101 ServiceHandle will be returned. If SNP is not installed on the ServiceHandle,\r
1102 try to find its parent handle with SNP installed.\r
1103\r
1104 @param[in] ServiceHandle The handle where network service binding protocols are\r
1105 installed on.\r
1106 @param[out] Snp The pointer to store the address of the SNP instance.\r
1107 This is an optional parameter that may be NULL.\r
1108\r
1109 @return The SNP handle, or NULL if not found.\r
1110\r
1111**/\r
1112EFI_HANDLE\r
1113EFIAPI\r
1114NetLibGetSnpHandle (\r
1115 IN EFI_HANDLE ServiceHandle,\r
1116 OUT EFI_SIMPLE_NETWORK_PROTOCOL **Snp OPTIONAL\r
1117 );\r
1118\r
1119/**\r
1120 Retrieve VLAN ID of a VLAN device handle.\r
1121\r
1122 Search VLAN device path node in Device Path of specified ServiceHandle and\r
1123 return its VLAN ID. If no VLAN device path node found, then this ServiceHandle\r
1124 is not a VLAN device handle, and 0 will be returned.\r
1125\r
1126 @param[in] ServiceHandle The handle where network service binding protocols are\r
1127 installed on.\r
1128\r
1129 @return VLAN ID of the device handle, or 0 if not a VLAN device.\r
97b38d4e 1130\r
779ae357 1131**/\r
1132UINT16\r
1133EFIAPI\r
1134NetLibGetVlanId (\r
1135 IN EFI_HANDLE ServiceHandle\r
1136 );\r
1137\r
1138/**\r
1139 Find VLAN device handle with specified VLAN ID.\r
1140\r
1141 The VLAN child device handle is created by VLAN Config Protocol on ControllerHandle.\r
1142 This function will append VLAN device path node to the parent device path,\r
1143 and then use LocateDevicePath() to find the correct VLAN device handle.\r
1144\r
e2851998 1145 @param[in] ControllerHandle The handle where network service binding protocols are\r
779ae357 1146 installed on.\r
e2851998 1147 @param[in] VlanId The configured VLAN ID for the VLAN device.\r
779ae357 1148\r
1149 @return The VLAN device handle, or NULL if not found.\r
1150\r
1151**/\r
1152EFI_HANDLE\r
1153EFIAPI\r
1154NetLibGetVlanHandle (\r
1155 IN EFI_HANDLE ControllerHandle,\r
1156 IN UINT16 VlanId\r
1157 );\r
1158\r
1159/**\r
1160 Get MAC address associated with the network service handle.\r
1161\r
1162 There should be MNP Service Binding Protocol installed on the input ServiceHandle.\r
1163 If SNP is installed on the ServiceHandle or its parent handle, MAC address will\r
1164 be retrieved from SNP. If no SNP found, try to get SNP mode data use MNP.\r
1165\r
1166 @param[in] ServiceHandle The handle where network service binding protocols are\r
1167 installed on.\r
1168 @param[out] MacAddress The pointer to store the returned MAC address.\r
1169 @param[out] AddressSize The length of returned MAC address.\r
1170\r
64a80549 1171 @retval EFI_SUCCESS MAC address was returned successfully.\r
779ae357 1172 @retval Others Failed to get SNP mode data.\r
1173\r
1174**/\r
1175EFI_STATUS\r
1176EFIAPI\r
1177NetLibGetMacAddress (\r
1178 IN EFI_HANDLE ServiceHandle,\r
1179 OUT EFI_MAC_ADDRESS *MacAddress,\r
1180 OUT UINTN *AddressSize\r
1181 );\r
1182\r
1183/**\r
1184 Convert MAC address of the NIC associated with specified Service Binding Handle\r
1185 to a unicode string. Callers are responsible for freeing the string storage.\r
3a1ab4bc 1186\r
779ae357 1187 Locate simple network protocol associated with the Service Binding Handle and\r
1188 get the mac address from SNP. Then convert the mac address into a unicode\r
1189 string. It takes 2 unicode characters to represent a 1 byte binary buffer.\r
1190 Plus one unicode character for the null-terminator.\r
3a1ab4bc 1191\r
779ae357 1192 @param[in] ServiceHandle The handle where network service binding protocol is\r
64a80549 1193 installed.\r
779ae357 1194 @param[in] ImageHandle The image handle used to act as the agent handle to\r
b00ed21a 1195 get the simple network protocol. This parameter is\r
1196 optional and may be NULL.\r
ae213b7d 1197 @param[out] MacString The pointer to store the address of the string\r
1198 representation of the mac address.\r
1204fe83 1199\r
64a80549 1200 @retval EFI_SUCCESS Converted the mac address a unicode string successfully.\r
1201 @retval EFI_OUT_OF_RESOURCES There are not enough memory resources.\r
ae213b7d 1202 @retval Others Failed to open the simple network protocol.\r
97b38d4e 1203\r
1204**/\r
1205EFI_STATUS\r
1206EFIAPI\r
1207NetLibGetMacString (\r
779ae357 1208 IN EFI_HANDLE ServiceHandle,\r
b00ed21a 1209 IN EFI_HANDLE ImageHandle, OPTIONAL\r
ae213b7d 1210 OUT CHAR16 **MacString\r
97b38d4e 1211 );\r
1212\r
dd29f3ed 1213/**\r
1214 Detect media status for specified network device.\r
1215\r
1216 The underlying UNDI driver may or may not support reporting media status from\r
1217 GET_STATUS command (PXE_STATFLAGS_GET_STATUS_NO_MEDIA_SUPPORTED). This routine\r
3b1464d5 1218 will try to invoke Snp->GetStatus() to get the media status. If media is already\r
1219 present, it returns directly. If media is not present, it will stop SNP and then\r
1220 restart SNP to get the latest media status. This provides an opportunity to get \r
64a80549 1221 the correct media status for old UNDI driver, which doesn't support reporting \r
1222 media status from GET_STATUS command.\r
1223 Note: there are two limitations for the current algorithm:\r
1224 1) For UNDI with this capability, when the cable is not attached, there will\r
1225 be an redundant Stop/Start() process.\r
3b1464d5 1226 2) for UNDI without this capability, in case that network cable is attached when\r
1227 Snp->Initialize() is invoked while network cable is unattached later,\r
1228 NetLibDetectMedia() will report MediaPresent as TRUE, causing upper layer\r
1229 apps to wait for timeout time.\r
dd29f3ed 1230\r
1231 @param[in] ServiceHandle The handle where network service binding protocols are\r
64a80549 1232 installed.\r
dd29f3ed 1233 @param[out] MediaPresent The pointer to store the media status.\r
1234\r
1235 @retval EFI_SUCCESS Media detection success.\r
64a80549 1236 @retval EFI_INVALID_PARAMETER ServiceHandle is not a valid network device handle.\r
1237 @retval EFI_UNSUPPORTED The network device does not support media detection.\r
1238 @retval EFI_DEVICE_ERROR SNP is in an unknown state.\r
dd29f3ed 1239\r
1240**/\r
1241EFI_STATUS\r
1242EFIAPI\r
1243NetLibDetectMedia (\r
1244 IN EFI_HANDLE ServiceHandle,\r
1245 OUT BOOLEAN *MediaPresent\r
1246 );\r
1247\r
97b38d4e 1248/**\r
1249 Create an IPv4 device path node.\r
1204fe83 1250\r
3a1ab4bc 1251 The header type of IPv4 device path node is MESSAGING_DEVICE_PATH.\r
1252 The header subtype of IPv4 device path node is MSG_IPv4_DP.\r
1253 The length of the IPv4 device path node in bytes is 19.\r
64a80549 1254 Get other information from parameters to make up the whole IPv4 device path node.\r
97b38d4e 1255\r
64a80549 1256 @param[in, out] Node The pointer to the IPv4 device path node.\r
f6b7393c 1257 @param[in] Controller The controller handle.\r
ae213b7d 1258 @param[in] LocalIp The local IPv4 address.\r
1259 @param[in] LocalPort The local port.\r
1260 @param[in] RemoteIp The remote IPv4 address.\r
1261 @param[in] RemotePort The remote port.\r
1262 @param[in] Protocol The protocol type in the IP header.\r
1263 @param[in] UseDefaultAddress Whether this instance is using default address or not.\r
97b38d4e 1264\r
97b38d4e 1265**/\r
1266VOID\r
1267EFIAPI\r
1268NetLibCreateIPv4DPathNode (\r
1269 IN OUT IPv4_DEVICE_PATH *Node,\r
1270 IN EFI_HANDLE Controller,\r
1271 IN IP4_ADDR LocalIp,\r
1272 IN UINT16 LocalPort,\r
1273 IN IP4_ADDR RemoteIp,\r
1274 IN UINT16 RemotePort,\r
1275 IN UINT16 Protocol,\r
1276 IN BOOLEAN UseDefaultAddress\r
1277 );\r
1278\r
f6b7393c 1279/**\r
1280 Create an IPv6 device path node.\r
1204fe83 1281\r
f6b7393c 1282 The header type of IPv6 device path node is MESSAGING_DEVICE_PATH.\r
1283 The header subtype of IPv6 device path node is MSG_IPv6_DP.\r
1284 The length of the IPv6 device path node in bytes is 43.\r
64a80549 1285 Get other information from parameters to make up the whole IPv6 device path node.\r
f6b7393c 1286\r
64a80549 1287 @param[in, out] Node The pointer to the IPv6 device path node.\r
f6b7393c 1288 @param[in] Controller The controller handle.\r
1289 @param[in] LocalIp The local IPv6 address.\r
1290 @param[in] LocalPort The local port.\r
1291 @param[in] RemoteIp The remote IPv6 address.\r
1292 @param[in] RemotePort The remote port.\r
1293 @param[in] Protocol The protocol type in the IP header.\r
1294\r
1295**/\r
1296VOID\r
1297EFIAPI\r
1298NetLibCreateIPv6DPathNode (\r
1299 IN OUT IPv6_DEVICE_PATH *Node,\r
1300 IN EFI_HANDLE Controller,\r
1301 IN EFI_IPv6_ADDRESS *LocalIp,\r
1302 IN UINT16 LocalPort,\r
1303 IN EFI_IPv6_ADDRESS *RemoteIp,\r
1304 IN UINT16 RemotePort,\r
1305 IN UINT16 Protocol\r
1306 );\r
1307\r
1308\r
97b38d4e 1309/**\r
1310 Find the UNDI/SNP handle from controller and protocol GUID.\r
1204fe83 1311\r
e9b67286 1312 For example, IP will open an MNP child to transmit/receive\r
1313 packets. When MNP is stopped, IP should also be stopped. IP\r
64a80549 1314 needs to find its own private data that is related the IP's\r
1315 service binding instance that is installed on the UNDI/SNP handle.\r
1316 The controller is then either an MNP or an ARP child handle. Note that\r
86ac8fb2 1317 IP opens these handles using BY_DRIVER. Use that information to get the\r
97b38d4e 1318 UNDI/SNP handle.\r
1319\r
64a80549 1320 @param[in] Controller The protocol handle to check.\r
ae213b7d 1321 @param[in] ProtocolGuid The protocol that is related with the handle.\r
97b38d4e 1322\r
ae213b7d 1323 @return The UNDI/SNP handle or NULL for errors.\r
97b38d4e 1324\r
1325**/\r
1326EFI_HANDLE\r
1327EFIAPI\r
1328NetLibGetNicHandle (\r
1329 IN EFI_HANDLE Controller,\r
1330 IN EFI_GUID *ProtocolGuid\r
1331 );\r
1332\r
97b38d4e 1333/**\r
1334 This is the default unload handle for all the network drivers.\r
1335\r
3a1ab4bc 1336 Disconnect the driver specified by ImageHandle from all the devices in the handle database.\r
1337 Uninstall all the protocols installed in the driver entry point.\r
1204fe83 1338\r
ae213b7d 1339 @param[in] ImageHandle The drivers' driver image.\r
97b38d4e 1340\r
1341 @retval EFI_SUCCESS The image is unloaded.\r
1342 @retval Others Failed to unload the image.\r
1343\r
1344**/\r
1345EFI_STATUS\r
1346EFIAPI\r
1347NetLibDefaultUnload (\r
1348 IN EFI_HANDLE ImageHandle\r
1349 );\r
1350\r
e4ef0031 1351/**\r
1352 Convert one Null-terminated ASCII string (decimal dotted) to EFI_IPv4_ADDRESS.\r
1353\r
1354 @param[in] String The pointer to the Ascii string.\r
1355 @param[out] Ip4Address The pointer to the converted IPv4 address.\r
1356\r
64a80549 1357 @retval EFI_SUCCESS Converted to an IPv4 address successfully.\r
86ac8fb2 1358 @retval EFI_INVALID_PARAMETER The string is malformatted, or Ip4Address is NULL.\r
e4ef0031 1359\r
1360**/\r
1361EFI_STATUS\r
e798cd87 1362EFIAPI\r
e4ef0031 1363NetLibAsciiStrToIp4 (\r
1364 IN CONST CHAR8 *String,\r
1365 OUT EFI_IPv4_ADDRESS *Ip4Address\r
1366 );\r
1367\r
1368/**\r
1369 Convert one Null-terminated ASCII string to EFI_IPv6_ADDRESS. The format of the\r
86ac8fb2 1370 string is defined in RFC 4291 - Text Representation of Addresses.\r
e4ef0031 1371\r
1372 @param[in] String The pointer to the Ascii string.\r
1373 @param[out] Ip6Address The pointer to the converted IPv6 address.\r
1374\r
64a80549 1375 @retval EFI_SUCCESS Converted to an IPv6 address successfully.\r
86ac8fb2 1376 @retval EFI_INVALID_PARAMETER The string is malformatted, or Ip6Address is NULL.\r
e4ef0031 1377\r
1378**/\r
1379EFI_STATUS\r
e798cd87 1380EFIAPI\r
e4ef0031 1381NetLibAsciiStrToIp6 (\r
1382 IN CONST CHAR8 *String,\r
1383 OUT EFI_IPv6_ADDRESS *Ip6Address\r
1384 );\r
1385\r
1386/**\r
1387 Convert one Null-terminated Unicode string (decimal dotted) to EFI_IPv4_ADDRESS.\r
1388\r
1389 @param[in] String The pointer to the Ascii string.\r
1390 @param[out] Ip4Address The pointer to the converted IPv4 address.\r
1391\r
64a80549 1392 @retval EFI_SUCCESS Converted to an IPv4 address successfully.\r
86ac8fb2 1393 @retval EFI_INVALID_PARAMETER The string is mal-formatted or Ip4Address is NULL.\r
e4ef0031 1394\r
1395**/\r
1396EFI_STATUS\r
e798cd87 1397EFIAPI\r
e4ef0031 1398NetLibStrToIp4 (\r
1399 IN CONST CHAR16 *String,\r
1400 OUT EFI_IPv4_ADDRESS *Ip4Address\r
1401 );\r
1402\r
1403/**\r
1404 Convert one Null-terminated Unicode string to EFI_IPv6_ADDRESS. The format of\r
86ac8fb2 1405 the string is defined in RFC 4291 - Text Representation of Addresses.\r
e4ef0031 1406\r
1407 @param[in] String The pointer to the Ascii string.\r
1408 @param[out] Ip6Address The pointer to the converted IPv6 address.\r
1409\r
64a80549 1410 @retval EFI_SUCCESS Converted to an IPv6 address successfully.\r
86ac8fb2 1411 @retval EFI_INVALID_PARAMETER The string is malformatted or Ip6Address is NULL.\r
e4ef0031 1412\r
1413**/\r
1414EFI_STATUS\r
e798cd87 1415EFIAPI\r
e4ef0031 1416NetLibStrToIp6 (\r
1417 IN CONST CHAR16 *String,\r
1418 OUT EFI_IPv6_ADDRESS *Ip6Address\r
1419 );\r
1420\r
1421/**\r
1422 Convert one Null-terminated Unicode string to EFI_IPv6_ADDRESS and prefix length.\r
86ac8fb2 1423 The format of the string is defined in RFC 4291 - Text Representation of Addresses\r
e4ef0031 1424 Prefixes: ipv6-address/prefix-length.\r
1425\r
1426 @param[in] String The pointer to the Ascii string.\r
1427 @param[out] Ip6Address The pointer to the converted IPv6 address.\r
1428 @param[out] PrefixLength The pointer to the converted prefix length.\r
1429\r
64a80549 1430 @retval EFI_SUCCESS Converted to an IPv6 address successfully.\r
86ac8fb2 1431 @retval EFI_INVALID_PARAMETER The string is malformatted, or Ip6Address is NULL.\r
e4ef0031 1432\r
1433**/\r
1434EFI_STATUS\r
e798cd87 1435EFIAPI\r
e4ef0031 1436NetLibStrToIp6andPrefix (\r
1437 IN CONST CHAR16 *String,\r
1438 OUT EFI_IPv6_ADDRESS *Ip6Address,\r
1439 OUT UINT8 *PrefixLength\r
1440 );\r
b45b45b2 1441\r
216f7970 1442/**\r
1443\r
1444 Convert one EFI_IPv6_ADDRESS to Null-terminated Unicode string.\r
1445 The text representation of address is defined in RFC 4291.\r
1446 \r
1447 @param[in] Ip6Address The pointer to the IPv6 address.\r
1448 @param[out] String The buffer to return the converted string.\r
1449 @param[in] StringSize The length in bytes of the input String.\r
1450 \r
1451 @retval EFI_SUCCESS Convert to string successfully.\r
1452 @retval EFI_INVALID_PARAMETER The input parameter is invalid.\r
1453 @retval EFI_BUFFER_TOO_SMALL The BufferSize is too small for the result. BufferSize has been \r
1454 updated with the size needed to complete the request.\r
1455**/\r
1456EFI_STATUS\r
1457EFIAPI\r
1458NetLibIp6ToStr (\r
1459 IN EFI_IPv6_ADDRESS *Ip6Address,\r
1460 OUT CHAR16 *String,\r
1461 IN UINTN StringSize\r
1462 );\r
1463\r
b45b45b2 1464//\r
e4ef0031 1465// Various signatures\r
b45b45b2 1466//\r
1467#define NET_BUF_SIGNATURE SIGNATURE_32 ('n', 'b', 'u', 'f')\r
1468#define NET_VECTOR_SIGNATURE SIGNATURE_32 ('n', 'v', 'e', 'c')\r
1469#define NET_QUE_SIGNATURE SIGNATURE_32 ('n', 'b', 'q', 'u')\r
97b38d4e 1470\r
1471\r
b45b45b2 1472#define NET_PROTO_DATA 64 // Opaque buffer for protocols\r
1473#define NET_BUF_HEAD 1 // Trim or allocate space from head\r
1474#define NET_BUF_TAIL 0 // Trim or allocate space from tail\r
1475#define NET_VECTOR_OWN_FIRST 0x01 // We allocated the 1st block in the vector\r
97b38d4e 1476\r
1477#define NET_CHECK_SIGNATURE(PData, SIGNATURE) \\r
1478 ASSERT (((PData) != NULL) && ((PData)->Signature == (SIGNATURE)))\r
1479\r
97b38d4e 1480//\r
1481// Single memory block in the vector.\r
1482//\r
1483typedef struct {\r
1484 UINT32 Len; // The block's length\r
1485 UINT8 *Bulk; // The block's Data\r
1486} NET_BLOCK;\r
1487\r
e798cd87 1488typedef VOID (EFIAPI *NET_VECTOR_EXT_FREE) (VOID *Arg);\r
97b38d4e 1489\r
1490//\r
1491//NET_VECTOR contains several blocks to hold all packet's\r
1492//fragments and other house-keeping stuff for sharing. It\r
1493//doesn't specify the where actual packet fragment begins.\r
1494//\r
1495typedef struct {\r
1496 UINT32 Signature;\r
1497 INTN RefCnt; // Reference count to share NET_VECTOR.\r
1498 NET_VECTOR_EXT_FREE Free; // external function to free NET_VECTOR\r
86ac8fb2 1499 VOID *Arg; // opaque argument to Free\r
97b38d4e 1500 UINT32 Flag; // Flags, NET_VECTOR_OWN_FIRST\r
86ac8fb2 1501 UINT32 Len; // Total length of the associated BLOCKs\r
97b38d4e 1502\r
1503 UINT32 BlockNum;\r
1504 NET_BLOCK Block[1];\r
1505} NET_VECTOR;\r
1506\r
1507//\r
e9b67286 1508//NET_BLOCK_OP operates on the NET_BLOCK. It specifies\r
1509//where the actual fragment begins and ends\r
97b38d4e 1510//\r
1511typedef struct {\r
1512 UINT8 *BlockHead; // Block's head, or the smallest valid Head\r
1513 UINT8 *BlockTail; // Block's tail. BlockTail-BlockHead=block length\r
1514 UINT8 *Head; // 1st byte of the data in the block\r
1515 UINT8 *Tail; // Tail of the data in the block, Tail-Head=Size\r
1516 UINT32 Size; // The size of the data\r
1517} NET_BLOCK_OP;\r
1518\r
f6b7393c 1519typedef union {\r
1520 IP4_HEAD *Ip4;\r
1521 EFI_IP6_HEADER *Ip6;\r
1522} NET_IP_HEAD;\r
97b38d4e 1523\r
1524//\r
1525//NET_BUF is the buffer manage structure used by the\r
e9b67286 1526//network stack. Every network packet may be fragmented. The Vector points to\r
1527//memory blocks used by each fragment, and BlockOp\r
97b38d4e 1528//specifies where each fragment begins and ends.\r
1529//\r
e9b67286 1530//It also contains an opaque area for the protocol to store\r
1531//per-packet information. Protocol must be careful not\r
97b38d4e 1532//to overwrite the members after that.\r
1533//\r
1534typedef struct {\r
f6b7393c 1535 UINT32 Signature;\r
1536 INTN RefCnt;\r
1537 LIST_ENTRY List; // The List this NET_BUF is on\r
97b38d4e 1538\r
f6b7393c 1539 NET_IP_HEAD Ip; // Network layer header, for fast access\r
1540 TCP_HEAD *Tcp; // Transport layer header, for fast access\r
1541 EFI_UDP_HEADER *Udp; // User Datagram Protocol header\r
1542 UINT8 ProtoData [NET_PROTO_DATA]; //Protocol specific data\r
97b38d4e 1543\r
f6b7393c 1544 NET_VECTOR *Vector; // The vector containing the packet\r
97b38d4e 1545\r
f6b7393c 1546 UINT32 BlockOpNum; // Total number of BlockOp in the buffer\r
1547 UINT32 TotalSize; // Total size of the actual packet\r
1548 NET_BLOCK_OP BlockOp[1]; // Specify the position of actual packet\r
97b38d4e 1549} NET_BUF;\r
1550\r
97b38d4e 1551//\r
e9b67286 1552//A queue of NET_BUFs. It is a thin extension of\r
97b38d4e 1553//NET_BUF functions.\r
1554//\r
1555typedef struct {\r
1556 UINT32 Signature;\r
1557 INTN RefCnt;\r
1558 LIST_ENTRY List; // The List this buffer queue is on\r
1559\r
1560 LIST_ENTRY BufList; // list of queued buffers\r
1561 UINT32 BufSize; // total length of DATA in the buffers\r
1562 UINT32 BufNum; // total number of buffers on the chain\r
1563} NET_BUF_QUEUE;\r
1564\r
1565//\r
1566// Pseudo header for TCP and UDP checksum\r
1567//\r
1568#pragma pack(1)\r
1569typedef struct {\r
1570 IP4_ADDR SrcIp;\r
1571 IP4_ADDR DstIp;\r
1572 UINT8 Reserved;\r
1573 UINT8 Protocol;\r
1574 UINT16 Len;\r
1575} NET_PSEUDO_HDR;\r
f6b7393c 1576\r
1577typedef struct {\r
1578 EFI_IPv6_ADDRESS SrcIp;\r
1579 EFI_IPv6_ADDRESS DstIp;\r
1580 UINT32 Len;\r
1581 UINT32 Reserved:24;\r
1582 UINT32 NextHeader:8;\r
1583} NET_IP6_PSEUDO_HDR;\r
97b38d4e 1584#pragma pack()\r
1585\r
1586//\r
1587// The fragment entry table used in network interfaces. This is\r
1588// the same as NET_BLOCK now. Use two different to distinguish\r
1589// the two in case that NET_BLOCK be enhanced later.\r
1590//\r
1591typedef struct {\r
1592 UINT32 Len;\r
1593 UINT8 *Bulk;\r
1594} NET_FRAGMENT;\r
1595\r
1596#define NET_GET_REF(PData) ((PData)->RefCnt++)\r
1597#define NET_PUT_REF(PData) ((PData)->RefCnt--)\r
50d7ebad 1598#define NETBUF_FROM_PROTODATA(Info) BASE_CR((Info), NET_BUF, ProtoData)\r
97b38d4e 1599\r
1600#define NET_BUF_SHARED(Buf) \\r
1601 (((Buf)->RefCnt > 1) || ((Buf)->Vector->RefCnt > 1))\r
1602\r
1603#define NET_VECTOR_SIZE(BlockNum) \\r
1604 (sizeof (NET_VECTOR) + ((BlockNum) - 1) * sizeof (NET_BLOCK))\r
1605\r
1606#define NET_BUF_SIZE(BlockOpNum) \\r
1607 (sizeof (NET_BUF) + ((BlockOpNum) - 1) * sizeof (NET_BLOCK_OP))\r
1608\r
1609#define NET_HEADSPACE(BlockOp) \\r
809e2bbf 1610 ((UINTN)((BlockOp)->Head) - (UINTN)((BlockOp)->BlockHead))\r
97b38d4e 1611\r
1612#define NET_TAILSPACE(BlockOp) \\r
809e2bbf 1613 ((UINTN)((BlockOp)->BlockTail) - (UINTN)((BlockOp)->Tail))\r
97b38d4e 1614\r
1615/**\r
1616 Allocate a single block NET_BUF. Upon allocation, all the\r
1617 free space is in the tail room.\r
1618\r
ae213b7d 1619 @param[in] Len The length of the block.\r
97b38d4e 1620\r
64a80549 1621 @return The pointer to the allocated NET_BUF, or NULL if the\r
1622 allocation failed due to resource limitations.\r
97b38d4e 1623\r
1624**/\r
1625NET_BUF *\r
1626EFIAPI\r
1627NetbufAlloc (\r
1628 IN UINT32 Len\r
1629 );\r
1630\r
1631/**\r
7557df4d 1632 Free the net buffer and its associated NET_VECTOR.\r
1204fe83 1633\r
7557df4d 1634 Decrease the reference count of the net buffer by one. Free the associated net\r
1204fe83 1635 vector and itself if the reference count of the net buffer is decreased to 0.\r
1636 The net vector free operation decreases the reference count of the net\r
e9b67286 1637 vector by one, and performs the resource free operation when the reference count\r
1204fe83 1638 of the net vector is 0.\r
1639\r
64a80549 1640 @param[in] Nbuf The pointer to the NET_BUF to be freed.\r
97b38d4e 1641\r
1642**/\r
1643VOID\r
1644EFIAPI\r
1645NetbufFree (\r
1646 IN NET_BUF *Nbuf\r
1647 );\r
1648\r
1649/**\r
1204fe83 1650 Get the index of NET_BLOCK_OP that contains the byte at Offset in the net\r
1651 buffer.\r
1652\r
1653 For example, this function can be used to retrieve the IP header in the packet. It\r
1654 also can be used to get the fragment that contains the byte used\r
1655 mainly by the library implementation itself.\r
97b38d4e 1656\r
64a80549 1657 @param[in] Nbuf The pointer to the net buffer.\r
7557df4d 1658 @param[in] Offset The offset of the byte.\r
1204fe83 1659 @param[out] Index Index of the NET_BLOCK_OP that contains the byte at\r
7557df4d 1660 Offset.\r
97b38d4e 1661\r
64a80549 1662 @return The pointer to the Offset'th byte of data in the net buffer, or NULL\r
7557df4d 1663 if there is no such data in the net buffer.\r
97b38d4e 1664\r
1665**/\r
1666UINT8 *\r
1667EFIAPI\r
1668NetbufGetByte (\r
1669 IN NET_BUF *Nbuf,\r
1670 IN UINT32 Offset,\r
ae213b7d 1671 OUT UINT32 *Index OPTIONAL\r
97b38d4e 1672 );\r
1673\r
1674/**\r
1204fe83 1675 Create a copy of the net buffer that shares the associated net vector.\r
1676\r
1677 The reference count of the newly created net buffer is set to 1. The reference\r
1678 count of the associated net vector is increased by one.\r
97b38d4e 1679\r
64a80549 1680 @param[in] Nbuf The pointer to the net buffer to be cloned.\r
97b38d4e 1681\r
64a80549 1682 @return The pointer to the cloned net buffer, or NULL if the\r
1683 allocation failed due to resource limitations.\r
97b38d4e 1684\r
1685**/\r
7557df4d 1686NET_BUF *\r
97b38d4e 1687EFIAPI\r
1688NetbufClone (\r
1689 IN NET_BUF *Nbuf\r
1690 );\r
1691\r
1692/**\r
7557df4d 1693 Create a duplicated copy of the net buffer with data copied and HeadSpace\r
1694 bytes of head space reserved.\r
1204fe83 1695\r
7557df4d 1696 The duplicated net buffer will allocate its own memory to hold the data of the\r
1697 source net buffer.\r
1204fe83 1698\r
64a80549 1699 @param[in] Nbuf The pointer to the net buffer to be duplicated from.\r
1700 @param[in, out] Duplicate The pointer to the net buffer to duplicate to. If\r
1701 NULL, a new net buffer is allocated.\r
1702 @param[in] HeadSpace The length of the head space to reserve.\r
7557df4d 1703\r
64a80549 1704 @return The pointer to the duplicated net buffer, or NULL if\r
1705 the allocation failed due to resource limitations.\r
97b38d4e 1706\r
1707**/\r
1708NET_BUF *\r
1709EFIAPI\r
1710NetbufDuplicate (\r
1711 IN NET_BUF *Nbuf,\r
ae213b7d 1712 IN OUT NET_BUF *Duplicate OPTIONAL,\r
97b38d4e 1713 IN UINT32 HeadSpace\r
1714 );\r
1715\r
1716/**\r
1204fe83 1717 Create a NET_BUF structure which contains Len byte data of Nbuf starting from\r
1718 Offset.\r
1719\r
1720 A new NET_BUF structure will be created but the associated data in NET_VECTOR\r
64a80549 1721 is shared. This function exists to perform IP packet fragmentation.\r
7557df4d 1722\r
64a80549 1723 @param[in] Nbuf The pointer to the net buffer to be extracted.\r
1204fe83 1724 @param[in] Offset Starting point of the data to be included in the new\r
7557df4d 1725 net buffer.\r
64a80549 1726 @param[in] Len The bytes of data to be included in the new net buffer.\r
1727 @param[in] HeadSpace The bytes of the head space to reserve for the protocol header.\r
7557df4d 1728\r
64a80549 1729 @return The pointer to the cloned net buffer, or NULL if the\r
1730 allocation failed due to resource limitations.\r
97b38d4e 1731\r
1732**/\r
1733NET_BUF *\r
1734EFIAPI\r
1735NetbufGetFragment (\r
1736 IN NET_BUF *Nbuf,\r
1737 IN UINT32 Offset,\r
1738 IN UINT32 Len,\r
1739 IN UINT32 HeadSpace\r
1740 );\r
1741\r
1742/**\r
7557df4d 1743 Reserve some space in the header room of the net buffer.\r
1744\r
1204fe83 1745 Upon allocation, all the space is in the tail room of the buffer. Call this\r
64a80549 1746 function to move space to the header room. This function is quite limited\r
1204fe83 1747 in that it can only reserve space from the first block of an empty NET_BUF not\r
64a80549 1748 built from the external. However, it should be enough for the network stack.\r
97b38d4e 1749\r
64a80549 1750 @param[in, out] Nbuf The pointer to the net buffer.\r
7557df4d 1751 @param[in] Len The length of buffer to be reserved from the header.\r
97b38d4e 1752\r
1753**/\r
1754VOID\r
1755EFIAPI\r
1756NetbufReserve (\r
ae213b7d 1757 IN OUT NET_BUF *Nbuf,\r
97b38d4e 1758 IN UINT32 Len\r
1759 );\r
1760\r
1761/**\r
1204fe83 1762 Allocate Len bytes of space from the header or tail of the buffer.\r
97b38d4e 1763\r
64a80549 1764 @param[in, out] Nbuf The pointer to the net buffer.\r
7557df4d 1765 @param[in] Len The length of the buffer to be allocated.\r
64a80549 1766 @param[in] FromHead The flag to indicate whether to reserve the data\r
7557df4d 1767 from head (TRUE) or tail (FALSE).\r
97b38d4e 1768\r
64a80549 1769 @return The pointer to the first byte of the allocated buffer,\r
1770 or NULL, if there is no sufficient space.\r
97b38d4e 1771\r
1772**/\r
7557df4d 1773UINT8*\r
97b38d4e 1774EFIAPI\r
1775NetbufAllocSpace (\r
ae213b7d 1776 IN OUT NET_BUF *Nbuf,\r
97b38d4e 1777 IN UINT32 Len,\r
1778 IN BOOLEAN FromHead\r
1779 );\r
1780\r
1781/**\r
64a80549 1782 Trim Len bytes from the header or the tail of the net buffer.\r
97b38d4e 1783\r
64a80549 1784 @param[in, out] Nbuf The pointer to the net buffer.\r
7557df4d 1785 @param[in] Len The length of the data to be trimmed.\r
64a80549 1786 @param[in] FromHead The flag to indicate whether trim data is from the \r
1787 head (TRUE) or the tail (FALSE).\r
97b38d4e 1788\r
64a80549 1789 @return The length of the actual trimmed data, which may be less\r
e9b67286 1790 than Len if the TotalSize of Nbuf is less than Len.\r
97b38d4e 1791\r
1792**/\r
1793UINT32\r
1794EFIAPI\r
1795NetbufTrim (\r
ae213b7d 1796 IN OUT NET_BUF *Nbuf,\r
97b38d4e 1797 IN UINT32 Len,\r
1798 IN BOOLEAN FromHead\r
1799 );\r
1800\r
1801/**\r
1204fe83 1802 Copy Len bytes of data from the specific offset of the net buffer to the\r
7557df4d 1803 destination memory.\r
1204fe83 1804\r
e9b67286 1805 The Len bytes of data may cross several fragments of the net buffer.\r
1204fe83 1806\r
64a80549 1807 @param[in] Nbuf The pointer to the net buffer.\r
7557df4d 1808 @param[in] Offset The sequence number of the first byte to copy.\r
64a80549 1809 @param[in] Len The length of the data to copy.\r
7557df4d 1810 @param[in] Dest The destination of the data to copy to.\r
1811\r
1812 @return The length of the actual copied data, or 0 if the offset\r
361468ed 1813 specified exceeds the total size of net buffer.\r
97b38d4e 1814\r
1815**/\r
1816UINT32\r
1817EFIAPI\r
1818NetbufCopy (\r
1819 IN NET_BUF *Nbuf,\r
1820 IN UINT32 Offset,\r
1821 IN UINT32 Len,\r
1822 IN UINT8 *Dest\r
1823 );\r
1824\r
1825/**\r
1204fe83 1826 Build a NET_BUF from external blocks.\r
1827\r
e9b67286 1828 A new NET_BUF structure will be created from external blocks. An additional block\r
7557df4d 1829 of memory will be allocated to hold reserved HeadSpace bytes of header room\r
e9b67286 1830 and existing HeadLen bytes of header, but the external blocks are shared by the\r
7557df4d 1831 net buffer to avoid data copying.\r
97b38d4e 1832\r
64a80549 1833 @param[in] ExtFragment The pointer to the data block.\r
7557df4d 1834 @param[in] ExtNum The number of the data blocks.\r
ae213b7d 1835 @param[in] HeadSpace The head space to be reserved.\r
e9b67286 1836 @param[in] HeadLen The length of the protocol header. The function\r
1837 pulls this amount of data into a linear block.\r
64a80549 1838 @param[in] ExtFree The pointer to the caller-provided free function.\r
ae213b7d 1839 @param[in] Arg The argument passed to ExtFree when ExtFree is\r
1840 called.\r
97b38d4e 1841\r
64a80549 1842 @return The pointer to the net buffer built from the data blocks,\r
7557df4d 1843 or NULL if the allocation failed due to resource\r
1844 limit.\r
97b38d4e 1845\r
1846**/\r
1847NET_BUF *\r
1848EFIAPI\r
1849NetbufFromExt (\r
1850 IN NET_FRAGMENT *ExtFragment,\r
1851 IN UINT32 ExtNum,\r
1852 IN UINT32 HeadSpace,\r
1853 IN UINT32 HeadLen,\r
1854 IN NET_VECTOR_EXT_FREE ExtFree,\r
1855 IN VOID *Arg OPTIONAL\r
1856 );\r
1857\r
1858/**\r
7557df4d 1859 Build a fragment table to contain the fragments in the net buffer. This is the\r
1204fe83 1860 opposite operation of the NetbufFromExt.\r
1861\r
64a80549 1862 @param[in] Nbuf Points to the net buffer.\r
1863 @param[in, out] ExtFragment The pointer to the data block.\r
7557df4d 1864 @param[in, out] ExtNum The number of the data blocks.\r
97b38d4e 1865\r
1204fe83 1866 @retval EFI_BUFFER_TOO_SMALL The number of non-empty blocks is bigger than\r
7557df4d 1867 ExtNum.\r
64a80549 1868 @retval EFI_SUCCESS The fragment table was built successfully.\r
97b38d4e 1869\r
1870**/\r
1871EFI_STATUS\r
1872EFIAPI\r
1873NetbufBuildExt (\r
1874 IN NET_BUF *Nbuf,\r
ae213b7d 1875 IN OUT NET_FRAGMENT *ExtFragment,\r
1876 IN OUT UINT32 *ExtNum\r
97b38d4e 1877 );\r
1878\r
1879/**\r
7557df4d 1880 Build a net buffer from a list of net buffers.\r
1204fe83 1881\r
64a80549 1882 All the fragments will be collected from the list of NEW_BUF, and then a new\r
1204fe83 1883 net buffer will be created through NetbufFromExt.\r
1884\r
7557df4d 1885 @param[in] BufList A List of the net buffer.\r
1886 @param[in] HeadSpace The head space to be reserved.\r
e9b67286 1887 @param[in] HeaderLen The length of the protocol header. The function\r
1888 pulls this amount of data into a linear block.\r
64a80549 1889 @param[in] ExtFree The pointer to the caller provided free function.\r
7557df4d 1890 @param[in] Arg The argument passed to ExtFree when ExtFree is called.\r
1891\r
64a80549 1892 @return The pointer to the net buffer built from the list of net\r
7557df4d 1893 buffers.\r
97b38d4e 1894\r
1895**/\r
1896NET_BUF *\r
1897EFIAPI\r
1898NetbufFromBufList (\r
1899 IN LIST_ENTRY *BufList,\r
1900 IN UINT32 HeadSpace,\r
1901 IN UINT32 HeaderLen,\r
1902 IN NET_VECTOR_EXT_FREE ExtFree,\r
ae213b7d 1903 IN VOID *Arg OPTIONAL\r
97b38d4e 1904 );\r
1905\r
1906/**\r
1907 Free a list of net buffers.\r
1908\r
64a80549 1909 @param[in, out] Head The pointer to the head of linked net buffers.\r
97b38d4e 1910\r
1911**/\r
1912VOID\r
1913EFIAPI\r
1914NetbufFreeList (\r
ae213b7d 1915 IN OUT LIST_ENTRY *Head\r
97b38d4e 1916 );\r
1917\r
1918/**\r
1919 Initiate the net buffer queue.\r
1920\r
64a80549 1921 @param[in, out] NbufQue The pointer to the net buffer queue to be initialized.\r
97b38d4e 1922\r
1923**/\r
1924VOID\r
1925EFIAPI\r
1926NetbufQueInit (\r
ae213b7d 1927 IN OUT NET_BUF_QUEUE *NbufQue\r
97b38d4e 1928 );\r
1929\r
1930/**\r
7557df4d 1931 Allocate and initialize a net buffer queue.\r
97b38d4e 1932\r
64a80549 1933 @return The pointer to the allocated net buffer queue, or NULL if the\r
7557df4d 1934 allocation failed due to resource limit.\r
97b38d4e 1935\r
1936**/\r
1937NET_BUF_QUEUE *\r
1938EFIAPI\r
1939NetbufQueAlloc (\r
1940 VOID\r
1941 );\r
1942\r
1943/**\r
1204fe83 1944 Free a net buffer queue.\r
1945\r
7557df4d 1946 Decrease the reference count of the net buffer queue by one. The real resource\r
1204fe83 1947 free operation isn't performed until the reference count of the net buffer\r
7557df4d 1948 queue is decreased to 0.\r
97b38d4e 1949\r
64a80549 1950 @param[in] NbufQue The pointer to the net buffer queue to be freed.\r
97b38d4e 1951\r
1952**/\r
1953VOID\r
1954EFIAPI\r
1955NetbufQueFree (\r
1956 IN NET_BUF_QUEUE *NbufQue\r
1957 );\r
1958\r
1959/**\r
7557df4d 1960 Remove a net buffer from the head in the specific queue and return it.\r
97b38d4e 1961\r
64a80549 1962 @param[in, out] NbufQue The pointer to the net buffer queue.\r
97b38d4e 1963\r
64a80549 1964 @return The pointer to the net buffer removed from the specific queue,\r
7557df4d 1965 or NULL if there is no net buffer in the specific queue.\r
97b38d4e 1966\r
1967**/\r
1968NET_BUF *\r
1969EFIAPI\r
1970NetbufQueRemove (\r
ae213b7d 1971 IN OUT NET_BUF_QUEUE *NbufQue\r
97b38d4e 1972 );\r
1973\r
1974/**\r
7557df4d 1975 Append a net buffer to the net buffer queue.\r
97b38d4e 1976\r
64a80549 1977 @param[in, out] NbufQue The pointer to the net buffer queue.\r
1978 @param[in, out] Nbuf The pointer to the net buffer to be appended.\r
97b38d4e 1979\r
1980**/\r
1981VOID\r
1982EFIAPI\r
1983NetbufQueAppend (\r
ae213b7d 1984 IN OUT NET_BUF_QUEUE *NbufQue,\r
1985 IN OUT NET_BUF *Nbuf\r
97b38d4e 1986 );\r
1987\r
1988/**\r
7557df4d 1989 Copy Len bytes of data from the net buffer queue at the specific offset to the\r
1990 destination memory.\r
1204fe83 1991\r
64a80549 1992 The copying operation is the same as NetbufCopy, but applies to the net buffer\r
7557df4d 1993 queue instead of the net buffer.\r
1204fe83 1994\r
64a80549 1995 @param[in] NbufQue The pointer to the net buffer queue.\r
7557df4d 1996 @param[in] Offset The sequence number of the first byte to copy.\r
64a80549 1997 @param[in] Len The length of the data to copy.\r
7557df4d 1998 @param[out] Dest The destination of the data to copy to.\r
1999\r
1204fe83 2000 @return The length of the actual copied data, or 0 if the offset\r
7557df4d 2001 specified exceeds the total size of net buffer queue.\r
97b38d4e 2002\r
2003**/\r
2004UINT32\r
2005EFIAPI\r
2006NetbufQueCopy (\r
2007 IN NET_BUF_QUEUE *NbufQue,\r
2008 IN UINT32 Offset,\r
2009 IN UINT32 Len,\r
ae213b7d 2010 OUT UINT8 *Dest\r
97b38d4e 2011 );\r
2012\r
2013/**\r
3b1464d5 2014 Trim Len bytes of data from the buffer queue and free any net buffer\r
2015 that is completely trimmed.\r
1204fe83 2016\r
7557df4d 2017 The trimming operation is the same as NetbufTrim but applies to the net buffer\r
2018 queue instead of the net buffer.\r
97b38d4e 2019\r
64a80549 2020 @param[in, out] NbufQue The pointer to the net buffer queue.\r
2021 @param[in] Len The length of the data to trim.\r
97b38d4e 2022\r
7557df4d 2023 @return The actual length of the data trimmed.\r
97b38d4e 2024\r
2025**/\r
2026UINT32\r
2027EFIAPI\r
2028NetbufQueTrim (\r
ae213b7d 2029 IN OUT NET_BUF_QUEUE *NbufQue,\r
97b38d4e 2030 IN UINT32 Len\r
2031 );\r
2032\r
2033\r
2034/**\r
2035 Flush the net buffer queue.\r
2036\r
64a80549 2037 @param[in, out] NbufQue The pointer to the queue to be flushed.\r
97b38d4e 2038\r
2039**/\r
2040VOID\r
2041EFIAPI\r
2042NetbufQueFlush (\r
ae213b7d 2043 IN OUT NET_BUF_QUEUE *NbufQue\r
97b38d4e 2044 );\r
2045\r
2046/**\r
7557df4d 2047 Compute the checksum for a bulk of data.\r
97b38d4e 2048\r
64a80549 2049 @param[in] Bulk The pointer to the data.\r
2050 @param[in] Len The length of the data, in bytes.\r
97b38d4e 2051\r
ae213b7d 2052 @return The computed checksum.\r
97b38d4e 2053\r
2054**/\r
2055UINT16\r
2056EFIAPI\r
2057NetblockChecksum (\r
2058 IN UINT8 *Bulk,\r
2059 IN UINT32 Len\r
2060 );\r
2061\r
2062/**\r
2063 Add two checksums.\r
2064\r
ae213b7d 2065 @param[in] Checksum1 The first checksum to be added.\r
2066 @param[in] Checksum2 The second checksum to be added.\r
97b38d4e 2067\r
ae213b7d 2068 @return The new checksum.\r
97b38d4e 2069\r
2070**/\r
2071UINT16\r
2072EFIAPI\r
2073NetAddChecksum (\r
2074 IN UINT16 Checksum1,\r
2075 IN UINT16 Checksum2\r
2076 );\r
2077\r
2078/**\r
2079 Compute the checksum for a NET_BUF.\r
2080\r
64a80549 2081 @param[in] Nbuf The pointer to the net buffer.\r
97b38d4e 2082\r
ae213b7d 2083 @return The computed checksum.\r
97b38d4e 2084\r
2085**/\r
2086UINT16\r
2087EFIAPI\r
2088NetbufChecksum (\r
2089 IN NET_BUF *Nbuf\r
2090 );\r
2091\r
2092/**\r
1204fe83 2093 Compute the checksum for TCP/UDP pseudo header.\r
2094\r
7557df4d 2095 Src and Dst are in network byte order, and Len is in host byte order.\r
97b38d4e 2096\r
ae213b7d 2097 @param[in] Src The source address of the packet.\r
2098 @param[in] Dst The destination address of the packet.\r
2099 @param[in] Proto The protocol type of the packet.\r
2100 @param[in] Len The length of the packet.\r
97b38d4e 2101\r
ae213b7d 2102 @return The computed checksum.\r
97b38d4e 2103\r
2104**/\r
2105UINT16\r
2106EFIAPI\r
2107NetPseudoHeadChecksum (\r
2108 IN IP4_ADDR Src,\r
2109 IN IP4_ADDR Dst,\r
2110 IN UINT8 Proto,\r
2111 IN UINT16 Len\r
2112 );\r
2113\r
f6b7393c 2114/**\r
64a80549 2115 Compute the checksum for the TCP6/UDP6 pseudo header.\r
1204fe83 2116\r
f6b7393c 2117 Src and Dst are in network byte order, and Len is in host byte order.\r
2118\r
2119 @param[in] Src The source address of the packet.\r
2120 @param[in] Dst The destination address of the packet.\r
2121 @param[in] NextHeader The protocol type of the packet.\r
2122 @param[in] Len The length of the packet.\r
2123\r
2124 @return The computed checksum.\r
2125\r
2126**/\r
2127UINT16\r
e798cd87 2128EFIAPI\r
f6b7393c 2129NetIp6PseudoHeadChecksum (\r
2130 IN EFI_IPv6_ADDRESS *Src,\r
2131 IN EFI_IPv6_ADDRESS *Dst,\r
2132 IN UINT8 NextHeader,\r
2133 IN UINT32 Len\r
2134 );\r
705f53a9 2135\r
2136/**\r
2137 The function frees the net buffer which allocated by the IP protocol. It releases \r
2138 only the net buffer and doesn't call the external free function. \r
2139\r
2140 This function should be called after finishing the process of mIpSec->ProcessExt() \r
2141 for outbound traffic. The (EFI_IPSEC2_PROTOCOL)->ProcessExt() allocates a new \r
2142 buffer for the ESP, so there needs a function to free the old net buffer.\r
2143\r
2144 @param[in] Nbuf The network buffer to be freed.\r
2145\r
2146**/\r
2147VOID\r
2148NetIpSecNetbufFree (\r
2149 NET_BUF *Nbuf\r
2150 );\r
57b301b5 2151\r
2152/**\r
2153 This function obtains the system guid from the smbios table.\r
2154\r
2155 @param[out] SystemGuid The pointer of the returned system guid.\r
2156\r
2157 @retval EFI_SUCCESS Successfully obtained the system guid.\r
2158 @retval EFI_NOT_FOUND Did not find the SMBIOS table.\r
2159\r
2160**/\r
2161EFI_STATUS\r
2162EFIAPI\r
2163NetLibGetSystemGuid (\r
2164 OUT EFI_GUID *SystemGuid\r
2165 );\r
2166\r
dba6e9a9
JW
2167/**\r
2168 Create Dns QName according the queried domain name. \r
2169 QName is a domain name represented as a sequence of labels, \r
2170 where each label consists of a length octet followed by that \r
2171 number of octets. The QName terminates with the zero \r
2172 length octet for the null label of the root. Caller should \r
2173 take responsibility to free the buffer in returned pointer.\r
2174\r
2175 @param DomainName The pointer to the queried domain name string. \r
2176\r
2177 @retval NULL Failed to fill QName.\r
2178 @return QName filled successfully.\r
2179 \r
2180**/ \r
2181CHAR8 *\r
2182EFIAPI\r
2183NetLibCreateDnsQName (\r
2184 IN CHAR16 *DomainName\r
2185 );\r
2186\r
97b38d4e 2187#endif\r