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