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