summaryrefslogtreecommitdiffstats
path: root/NetworkPkg/DnsDxe/DnsImpl.c
diff options
context:
space:
mode:
Diffstat (limited to 'NetworkPkg/DnsDxe/DnsImpl.c')
-rw-r--r--NetworkPkg/DnsDxe/DnsImpl.c352
1 files changed, 176 insertions, 176 deletions
diff --git a/NetworkPkg/DnsDxe/DnsImpl.c b/NetworkPkg/DnsDxe/DnsImpl.c
index 7057bfbbec..89ea755cb2 100644
--- a/NetworkPkg/DnsDxe/DnsImpl.c
+++ b/NetworkPkg/DnsDxe/DnsImpl.c
@@ -1,7 +1,7 @@
/** @file
DnsDxe support functions implementation.
-
-Copyright (c) 2016 - 2017, Intel Corporation. All rights reserved.<BR>
+
+Copyright (c) 2016 - 2018, Intel Corporation. All rights reserved.<BR>
This program and the accompanying materials
are licensed and made available under the terms and conditions of the BSD License
which accompanies this distribution. The full text of the license may be found at
@@ -45,7 +45,7 @@ Dns4RemoveTokenEntry (
return EFI_SUCCESS;
}
-
+
return EFI_NOT_FOUND;
}
@@ -57,7 +57,7 @@ Dns4RemoveTokenEntry (
@retval EFI_SUCCESS Remove TokenEntry from TokenMap sucessfully.
@retval EFI_NOT_FOUND TokenEntry is not found in TokenMap.
-
+
**/
EFI_STATUS
Dns6RemoveTokenEntry (
@@ -80,7 +80,7 @@ Dns6RemoveTokenEntry (
return EFI_SUCCESS;
}
-
+
return EFI_NOT_FOUND;
}
@@ -219,24 +219,24 @@ EFI_STATUS
EFIAPI
GetDns4TokenEntry (
IN NET_MAP *TokensMap,
- IN EFI_DNS4_COMPLETION_TOKEN *Token,
+ IN EFI_DNS4_COMPLETION_TOKEN *Token,
OUT DNS4_TOKEN_ENTRY **TokenEntry
)
{
LIST_ENTRY *Entry;
-
+
NET_MAP_ITEM *Item;
-
+
NET_LIST_FOR_EACH (Entry, &TokensMap->Used) {
Item = NET_LIST_USER_STRUCT (Entry, NET_MAP_ITEM, Link);
- *TokenEntry = (DNS4_TOKEN_ENTRY *) (Item->Key);
+ *TokenEntry = (DNS4_TOKEN_ENTRY *) (Item->Key);
if ((*TokenEntry)->Token == Token) {
return EFI_SUCCESS;
}
}
-
+
*TokenEntry = NULL;
-
+
return EFI_NOT_FOUND;
}
@@ -255,24 +255,24 @@ EFI_STATUS
EFIAPI
GetDns6TokenEntry (
IN NET_MAP *TokensMap,
- IN EFI_DNS6_COMPLETION_TOKEN *Token,
+ IN EFI_DNS6_COMPLETION_TOKEN *Token,
OUT DNS6_TOKEN_ENTRY **TokenEntry
)
{
LIST_ENTRY *Entry;
-
+
NET_MAP_ITEM *Item;
-
+
NET_LIST_FOR_EACH (Entry, &TokensMap->Used) {
Item = NET_LIST_USER_STRUCT (Entry, NET_MAP_ITEM, Link);
- *TokenEntry = (DNS6_TOKEN_ENTRY *) (Item->Key);
+ *TokenEntry = (DNS6_TOKEN_ENTRY *) (Item->Key);
if ((*TokenEntry)->Token == Token) {
return EFI_SUCCESS;
}
}
-
+
*TokenEntry =NULL;
-
+
return EFI_NOT_FOUND;
}
@@ -325,7 +325,7 @@ Dns4InstanceCancelToken (
}
ASSERT ((TokenEntry != NULL) || (0 == NetMapGetCount (&Instance->Dns4TxTokens)));
-
+
if (NetMapIsEmpty (&Instance->Dns4TxTokens)) {
Instance->UdpIo->Protocol.Udp4->Cancel (Instance->UdpIo->Protocol.Udp4, &Instance->UdpIo->RecvRequest->Token.Udp4);
}
@@ -382,7 +382,7 @@ Dns6InstanceCancelToken (
}
ASSERT ((TokenEntry != NULL) || (0 == NetMapGetCount (&Instance->Dns6TxTokens)));
-
+
if (NetMapIsEmpty (&Instance->Dns6TxTokens)) {
Instance->UdpIo->Protocol.Udp6->Cancel (Instance->UdpIo->Protocol.Udp6, &Instance->UdpIo->RecvRequest->Token.Udp6);
}
@@ -526,9 +526,9 @@ DnsDummyExtFree (
/**
Poll the UDP to get the IP4 default address, which may be retrieved
- by DHCP.
-
- The default time out value is 5 seconds. If IP has retrieved the default address,
+ by DHCP.
+
+ The default time out value is 5 seconds. If IP has retrieved the default address,
the UDP is reconfigured.
@param Instance The DNS instance
@@ -657,10 +657,10 @@ Dns6GetMapping (
/**
Configure the UDP.
-
+
@param Instance The DNS session
@param UdpIo The UDP_IO instance
-
+
@retval EFI_SUCCESS The UDP is successfully configured for the
session.
@@ -699,13 +699,13 @@ Dns4ConfigUdp (
if ((Status == EFI_NO_MAPPING) && Dns4GetMapping (Instance, UdpIo, &UdpConfig)) {
return EFI_SUCCESS;
}
-
+
return Status;
}
/**
Configure the UDP.
-
+
@param Instance The DNS session
@param UdpIo The UDP_IO instance
@@ -742,24 +742,24 @@ Dns6ConfigUdp (
if ((Status == EFI_NO_MAPPING) && Dns6GetMapping (Instance, UdpIo, &UdpConfig)) {
return EFI_SUCCESS;
}
-
+
return Status;
}
/**
Update Dns4 cache to shared list of caches of all DNSv4 instances.
-
+
@param Dns4CacheList All Dns4 cache list.
- @param DeleteFlag If FALSE, this function is to add one entry to the DNS Cache.
- If TRUE, this function will delete matching DNS Cache entry.
- @param Override If TRUE, the matching DNS cache entry will be overwritten with the supplied parameter.
+ @param DeleteFlag If FALSE, this function is to add one entry to the DNS Cache.
+ If TRUE, this function will delete matching DNS Cache entry.
+ @param Override If TRUE, the matching DNS cache entry will be overwritten with the supplied parameter.
If FALSE, EFI_ACCESS_DENIED will be returned if the entry to be added is already exists.
@param DnsCacheEntry Entry Pointer to DNS Cache entry.
@retval EFI_SUCCESS Update Dns4 cache successfully.
- @retval Others Failed to update Dns4 cache.
-
-**/
+ @retval Others Failed to update Dns4 cache.
+
+**/
EFI_STATUS
EFIAPI
UpdateDns4Cache (
@@ -769,14 +769,14 @@ UpdateDns4Cache (
IN EFI_DNS4_CACHE_ENTRY DnsCacheEntry
)
{
- DNS4_CACHE *NewDnsCache;
+ DNS4_CACHE *NewDnsCache;
DNS4_CACHE *Item;
LIST_ENTRY *Entry;
LIST_ENTRY *Next;
NewDnsCache = NULL;
Item = NULL;
-
+
//
// Search the database for the matching EFI_DNS_CACHE_ENTRY
//
@@ -796,14 +796,14 @@ UpdateDns4Cache (
FreePool (Item->DnsCache.HostName);
FreePool (Item->DnsCache.IpAddress);
FreePool (Item);
-
+
return EFI_SUCCESS;
} else if (Override) {
//
// Update this one
//
Item->DnsCache.Timeout = DnsCacheEntry.Timeout;
-
+
return EFI_SUCCESS;
}else {
return EFI_ACCESS_DENIED;
@@ -815,18 +815,18 @@ UpdateDns4Cache (
// Add new one
//
NewDnsCache = AllocatePool (sizeof (DNS4_CACHE));
- if (NewDnsCache == NULL) {
+ if (NewDnsCache == NULL) {
return EFI_OUT_OF_RESOURCES;
}
-
+
InitializeListHead (&NewDnsCache->AllCacheLink);
-
+
NewDnsCache->DnsCache.HostName = AllocatePool (StrSize (DnsCacheEntry.HostName));
- if (NewDnsCache->DnsCache.HostName == NULL) {
+ if (NewDnsCache->DnsCache.HostName == NULL) {
FreePool (NewDnsCache);
return EFI_OUT_OF_RESOURCES;
}
-
+
CopyMem (NewDnsCache->DnsCache.HostName, DnsCacheEntry.HostName, StrSize (DnsCacheEntry.HostName));
NewDnsCache->DnsCache.IpAddress = AllocatePool (sizeof (EFI_IPv4_ADDRESS));
@@ -839,25 +839,25 @@ UpdateDns4Cache (
CopyMem (NewDnsCache->DnsCache.IpAddress, DnsCacheEntry.IpAddress, sizeof (EFI_IPv4_ADDRESS));
NewDnsCache->DnsCache.Timeout = DnsCacheEntry.Timeout;
-
+
InsertTailList (Dns4CacheList, &NewDnsCache->AllCacheLink);
-
+
return EFI_SUCCESS;
}
/**
- Update Dns6 cache to shared list of caches of all DNSv6 instances.
+ Update Dns6 cache to shared list of caches of all DNSv6 instances.
@param Dns6CacheList All Dns6 cache list.
- @param DeleteFlag If FALSE, this function is to add one entry to the DNS Cache.
- If TRUE, this function will delete matching DNS Cache entry.
- @param Override If TRUE, the matching DNS cache entry will be overwritten with the supplied parameter.
+ @param DeleteFlag If FALSE, this function is to add one entry to the DNS Cache.
+ If TRUE, this function will delete matching DNS Cache entry.
+ @param Override If TRUE, the matching DNS cache entry will be overwritten with the supplied parameter.
If FALSE, EFI_ACCESS_DENIED will be returned if the entry to be added is already exists.
@param DnsCacheEntry Entry Pointer to DNS Cache entry.
-
+
@retval EFI_SUCCESS Update Dns6 cache successfully.
@retval Others Failed to update Dns6 cache.
-**/
+**/
EFI_STATUS
EFIAPI
UpdateDns6Cache (
@@ -867,14 +867,14 @@ UpdateDns6Cache (
IN EFI_DNS6_CACHE_ENTRY DnsCacheEntry
)
{
- DNS6_CACHE *NewDnsCache;
+ DNS6_CACHE *NewDnsCache;
DNS6_CACHE *Item;
LIST_ENTRY *Entry;
LIST_ENTRY *Next;
NewDnsCache = NULL;
Item = NULL;
-
+
//
// Search the database for the matching EFI_DNS_CACHE_ENTRY
//
@@ -890,18 +890,18 @@ UpdateDns6Cache (
// Delete matching DNS Cache entry
//
RemoveEntryList (&Item->AllCacheLink);
-
+
FreePool (Item->DnsCache.HostName);
FreePool (Item->DnsCache.IpAddress);
FreePool (Item);
-
+
return EFI_SUCCESS;
} else if (Override) {
//
// Update this one
//
Item->DnsCache.Timeout = DnsCacheEntry.Timeout;
-
+
return EFI_SUCCESS;
}else {
return EFI_ACCESS_DENIED;
@@ -913,18 +913,18 @@ UpdateDns6Cache (
// Add new one
//
NewDnsCache = AllocatePool (sizeof (DNS6_CACHE));
- if (NewDnsCache == NULL) {
+ if (NewDnsCache == NULL) {
return EFI_OUT_OF_RESOURCES;
}
-
+
InitializeListHead (&NewDnsCache->AllCacheLink);
-
+
NewDnsCache->DnsCache.HostName = AllocatePool (StrSize (DnsCacheEntry.HostName));
- if (NewDnsCache->DnsCache.HostName == NULL) {
+ if (NewDnsCache->DnsCache.HostName == NULL) {
FreePool (NewDnsCache);
return EFI_OUT_OF_RESOURCES;
}
-
+
CopyMem (NewDnsCache->DnsCache.HostName, DnsCacheEntry.HostName, StrSize (DnsCacheEntry.HostName));
NewDnsCache->DnsCache.IpAddress = AllocatePool (sizeof (EFI_IPv6_ADDRESS));
@@ -933,26 +933,26 @@ UpdateDns6Cache (
FreePool (NewDnsCache);
return EFI_OUT_OF_RESOURCES;
}
-
+
CopyMem (NewDnsCache->DnsCache.IpAddress, DnsCacheEntry.IpAddress, sizeof (EFI_IPv6_ADDRESS));
NewDnsCache->DnsCache.Timeout = DnsCacheEntry.Timeout;
-
+
InsertTailList (Dns6CacheList, &NewDnsCache->AllCacheLink);
-
+
return EFI_SUCCESS;
}
/**
- Add Dns4 ServerIp to common list of addresses of all configured DNSv4 server.
+ Add Dns4 ServerIp to common list of addresses of all configured DNSv4 server.
- @param Dns4ServerList Common list of addresses of all configured DNSv4 server.
- @param ServerIp DNS server Ip.
+ @param Dns4ServerList Common list of addresses of all configured DNSv4 server.
+ @param ServerIp DNS server Ip.
@retval EFI_SUCCESS Add Dns4 ServerIp to common list successfully.
@retval Others Failed to add Dns4 ServerIp to common list.
-
-**/
+
+**/
EFI_STATUS
EFIAPI
AddDns4ServerIp (
@@ -960,14 +960,14 @@ AddDns4ServerIp (
IN EFI_IPv4_ADDRESS ServerIp
)
{
- DNS4_SERVER_IP *NewServerIp;
+ DNS4_SERVER_IP *NewServerIp;
DNS4_SERVER_IP *Item;
LIST_ENTRY *Entry;
LIST_ENTRY *Next;
NewServerIp = NULL;
Item = NULL;
-
+
//
// Search the database for the matching ServerIp
//
@@ -976,7 +976,7 @@ AddDns4ServerIp (
if (CompareMem (&Item->Dns4ServerIp, &ServerIp, sizeof (EFI_IPv4_ADDRESS)) == 0) {
//
// Already done.
- //
+ //
return EFI_SUCCESS;
}
}
@@ -985,29 +985,29 @@ AddDns4ServerIp (
// Add new one
//
NewServerIp = AllocatePool (sizeof (DNS4_SERVER_IP));
- if (NewServerIp == NULL) {
+ if (NewServerIp == NULL) {
return EFI_OUT_OF_RESOURCES;
}
-
+
InitializeListHead (&NewServerIp->AllServerLink);
-
+
CopyMem (&NewServerIp->Dns4ServerIp, &ServerIp, sizeof (EFI_IPv4_ADDRESS));
-
+
InsertTailList (Dns4ServerList, &NewServerIp->AllServerLink);
-
+
return EFI_SUCCESS;
}
/**
- Add Dns6 ServerIp to common list of addresses of all configured DNSv6 server.
+ Add Dns6 ServerIp to common list of addresses of all configured DNSv6 server.
- @param Dns6ServerList Common list of addresses of all configured DNSv6 server.
- @param ServerIp DNS server Ip.
+ @param Dns6ServerList Common list of addresses of all configured DNSv6 server.
+ @param ServerIp DNS server Ip.
@retval EFI_SUCCESS Add Dns6 ServerIp to common list successfully.
@retval Others Failed to add Dns6 ServerIp to common list.
-
-**/
+
+**/
EFI_STATUS
EFIAPI
AddDns6ServerIp (
@@ -1015,14 +1015,14 @@ AddDns6ServerIp (
IN EFI_IPv6_ADDRESS ServerIp
)
{
- DNS6_SERVER_IP *NewServerIp;
+ DNS6_SERVER_IP *NewServerIp;
DNS6_SERVER_IP *Item;
LIST_ENTRY *Entry;
LIST_ENTRY *Next;
NewServerIp = NULL;
Item = NULL;
-
+
//
// Search the database for the matching ServerIp
//
@@ -1031,7 +1031,7 @@ AddDns6ServerIp (
if (CompareMem (&Item->Dns6ServerIp, &ServerIp, sizeof (EFI_IPv6_ADDRESS)) == 0) {
//
// Already done.
- //
+ //
return EFI_SUCCESS;
}
}
@@ -1040,32 +1040,32 @@ AddDns6ServerIp (
// Add new one
//
NewServerIp = AllocatePool (sizeof (DNS6_SERVER_IP));
- if (NewServerIp == NULL) {
+ if (NewServerIp == NULL) {
return EFI_OUT_OF_RESOURCES;
}
-
+
InitializeListHead (&NewServerIp->AllServerLink);
-
+
CopyMem (&NewServerIp->Dns6ServerIp, &ServerIp, sizeof (EFI_IPv6_ADDRESS));
-
+
InsertTailList (Dns6ServerList, &NewServerIp->AllServerLink);
-
+
return EFI_SUCCESS;
}
/**
Find out whether the response is valid or invalid.
- @param TokensMap All DNS transmittal Tokens entry.
- @param Identification Identification for queried packet.
+ @param TokensMap All DNS transmittal Tokens entry.
+ @param Identification Identification for queried packet.
@param Type Type for queried packet.
@param Class Class for queried packet.
@param Item Return corresponding Token entry.
@retval TRUE The response is valid.
@retval FALSE The response is invalid.
-
-**/
+
+**/
BOOLEAN
IsValidDnsResponse (
IN NET_MAP *TokensMap,
@@ -1087,7 +1087,7 @@ IsValidDnsResponse (
*Item = NET_LIST_USER_STRUCT (Entry, NET_MAP_ITEM, Link);
Packet = (NET_BUF *) ((*Item)->Value);
if (Packet == NULL){
-
+
continue;
} else {
TxString = NetbufGetByte (Packet, 0, NULL);
@@ -1095,17 +1095,17 @@ IsValidDnsResponse (
DnsHeader = (DNS_HEADER *) TxString;
QueryName = (CHAR8 *) (TxString + sizeof (*DnsHeader));
QuerySection = (DNS_QUERY_SECTION *) (QueryName + AsciiStrLen (QueryName) + 1);
-
+
if (NTOHS (DnsHeader->Identification) == Identification &&
- NTOHS (QuerySection->Type) == Type &&
+ NTOHS (QuerySection->Type) == Type &&
NTOHS (QuerySection->Class) == Class) {
return TRUE;
}
- }
+ }
}
-
+
*Item = NULL;
-
+
return FALSE;
}
@@ -1114,12 +1114,12 @@ IsValidDnsResponse (
@param Instance The DNS instance
@param RxString Received buffer.
- @param Completed Flag to indicate that Dns response is valid.
-
+ @param Completed Flag to indicate that Dns response is valid.
+
@retval EFI_SUCCESS Parse Dns Response successfully.
@retval Others Failed to parse Dns Response.
-
-**/
+
+**/
EFI_STATUS
ParseDnsResponse (
IN OUT DNS_INSTANCE *Instance,
@@ -1128,10 +1128,10 @@ ParseDnsResponse (
)
{
DNS_HEADER *DnsHeader;
-
+
CHAR8 *QueryName;
DNS_QUERY_SECTION *QuerySection;
-
+
CHAR8 *AnswerName;
DNS_ANSWER_SECTION *AnswerSection;
UINT8 *AnswerData;
@@ -1139,12 +1139,12 @@ ParseDnsResponse (
NET_MAP_ITEM *Item;
DNS4_TOKEN_ENTRY *Dns4TokenEntry;
DNS6_TOKEN_ENTRY *Dns6TokenEntry;
-
+
UINT32 IpCount;
UINT32 RRCount;
UINT32 AnswerSectionNum;
UINT32 CNameTtl;
-
+
EFI_IPv4_ADDRESS *HostAddr4;
EFI_IPv6_ADDRESS *HostAddr6;
@@ -1157,33 +1157,33 @@ ParseDnsResponse (
EFI_STATUS Status;
EFI_TPL OldTpl;
-
+
Item = NULL;
Dns4TokenEntry = NULL;
Dns6TokenEntry = NULL;
-
+
IpCount = 0;
RRCount = 0;
AnswerSectionNum = 0;
CNameTtl = 0;
-
+
HostAddr4 = NULL;
HostAddr6 = NULL;
-
+
Dns4CacheEntry = NULL;
Dns6CacheEntry = NULL;
-
+
Dns4RR = NULL;
Dns6RR = NULL;
*Completed = TRUE;
Status = EFI_SUCCESS;
-
+
//
// Get header
//
DnsHeader = (DNS_HEADER *) RxString;
-
+
DnsHeader->Identification = NTOHS (DnsHeader->Identification);
DnsHeader->Flags.Uint16 = NTOHS (DnsHeader->Flags.Uint16);
DnsHeader->QuestionsNum = NTOHS (DnsHeader->QuestionsNum);
@@ -1215,8 +1215,8 @@ ParseDnsResponse (
//
if (Instance->Service->IpVersion == IP_VERSION_4) {
if (!IsValidDnsResponse (
- &Instance->Dns4TxTokens,
- DnsHeader->Identification,
+ &Instance->Dns4TxTokens,
+ DnsHeader->Identification,
QuerySection->Type,
QuerySection->Class,
&Item
@@ -1229,8 +1229,8 @@ ParseDnsResponse (
Dns4TokenEntry = (DNS4_TOKEN_ENTRY *) (Item->Key);
} else {
if (!IsValidDnsResponse (
- &Instance->Dns6TxTokens,
- DnsHeader->Identification,
+ &Instance->Dns6TxTokens,
+ DnsHeader->Identification,
QuerySection->Type,
QuerySection->Class,
&Item
@@ -1242,7 +1242,7 @@ ParseDnsResponse (
ASSERT (Item != NULL);
Dns6TokenEntry = (DNS6_TOKEN_ENTRY *) (Item->Key);
}
-
+
//
// Continue Check Some Errors.
//
@@ -1252,14 +1252,14 @@ ParseDnsResponse (
// The domain name referenced in the query does not exist.
//
if (DnsHeader->Flags.Bits.RCode == DNS_FLAGS_RCODE_NAME_ERROR) {
- Status = EFI_NOT_FOUND;
+ Status = EFI_NOT_FOUND;
} else {
Status = EFI_DEVICE_ERROR;
}
-
+
goto ON_COMPLETE;
}
-
+
//
// Do some buffer allocations.
//
@@ -1352,7 +1352,7 @@ ParseDnsResponse (
Status = EFI_UNSUPPORTED;
goto ON_EXIT;
}
-
+
//
// Get Answer section.
//
@@ -1388,7 +1388,7 @@ ParseDnsResponse (
goto ON_EXIT;
}
CopyMem (Dns4RR[RRCount].RData, AnswerData, Dns4RR[RRCount].DataLength);
-
+
RRCount ++;
Status = EFI_SUCCESS;
} else if (Instance->Service->IpVersion == IP_VERSION_6 && Dns6TokenEntry->GeneralLookUp) {
@@ -1414,12 +1414,12 @@ ParseDnsResponse (
goto ON_EXIT;
}
CopyMem (Dns6RR[RRCount].RData, AnswerData, Dns6RR[RRCount].DataLength);
-
+
RRCount ++;
Status = EFI_SUCCESS;
} else {
//
- // It's not the GeneralLookUp querying.
+ // It's not the GeneralLookUp querying.
// Check the Query type, parse the response packet.
//
switch (AnswerSection->Type) {
@@ -1433,12 +1433,12 @@ ParseDnsResponse (
Status = EFI_ABORTED;
goto ON_EXIT;
}
-
+
HostAddr4 = Dns4TokenEntry->Token->RspData.H2AData->IpList;
AnswerData = (UINT8 *) AnswerSection + sizeof (*AnswerSection);
CopyMem (&HostAddr4[IpCount], AnswerData, sizeof (EFI_IPv4_ADDRESS));
- //
+ //
// Allocate new CacheEntry pool to update DNS cache dynamically.
//
Dns4CacheEntry = AllocateZeroPool (sizeof (EFI_DNS4_CACHE_ENTRY));
@@ -1464,15 +1464,15 @@ ParseDnsResponse (
} else {
Dns4CacheEntry->Timeout = MAX (CNameTtl, AnswerSection->Ttl);
}
-
+
UpdateDns4Cache (&mDriverData->Dns4CacheList, FALSE, TRUE, *Dns4CacheEntry);
- //
+ //
// Free allocated CacheEntry pool.
//
FreePool (Dns4CacheEntry->HostName);
Dns4CacheEntry->HostName = NULL;
-
+
FreePool (Dns4CacheEntry->IpAddress);
Dns4CacheEntry->IpAddress = NULL;
@@ -1492,12 +1492,12 @@ ParseDnsResponse (
Status = EFI_ABORTED;
goto ON_EXIT;
}
-
+
HostAddr6 = Dns6TokenEntry->Token->RspData.H2AData->IpList;
AnswerData = (UINT8 *) AnswerSection + sizeof (*AnswerSection);
CopyMem (&HostAddr6[IpCount], AnswerData, sizeof (EFI_IPv6_ADDRESS));
- //
+ //
// Allocate new CacheEntry pool to update DNS cache dynamically.
//
Dns6CacheEntry = AllocateZeroPool (sizeof (EFI_DNS6_CACHE_ENTRY));
@@ -1523,28 +1523,28 @@ ParseDnsResponse (
} else {
Dns6CacheEntry->Timeout = MAX (CNameTtl, AnswerSection->Ttl);
}
-
+
UpdateDns6Cache (&mDriverData->Dns6CacheList, FALSE, TRUE, *Dns6CacheEntry);
- //
+ //
// Free allocated CacheEntry pool.
//
FreePool (Dns6CacheEntry->HostName);
Dns6CacheEntry->HostName = NULL;
-
+
FreePool (Dns6CacheEntry->IpAddress);
Dns6CacheEntry->IpAddress = NULL;
FreePool (Dns6CacheEntry);
Dns6CacheEntry = NULL;
-
+
IpCount ++;
Status = EFI_SUCCESS;
break;
case DNS_TYPE_CNAME:
//
- // According RFC 1034 - 3.6.2, if the query name is an alias, the name server will include the CNAME
- // record in the response and restart the query at the domain name specified in the data field of the
+ // According RFC 1034 - 3.6.2, if the query name is an alias, the name server will include the CNAME
+ // record in the response and restart the query at the domain name specified in the data field of the
// CNAME record. So, just record the TTL value of the CNAME, then skip to parse the next record.
//
CNameTtl = AnswerSection->Ttl;
@@ -1554,7 +1554,7 @@ ParseDnsResponse (
goto ON_EXIT;
}
}
-
+
//
// Find next one
//
@@ -1564,7 +1564,7 @@ ParseDnsResponse (
if (Instance->Service->IpVersion == IP_VERSION_4) {
ASSERT (Dns4TokenEntry != NULL);
-
+
if (Dns4TokenEntry->GeneralLookUp) {
Dns4TokenEntry->Token->RspData.GLookupData->RRCount = RRCount;
} else {
@@ -1589,7 +1589,7 @@ ParseDnsResponse (
}
}
}
-
+
ON_COMPLETE:
//
// Parsing is complete, free the sending packet and signal Event here.
@@ -1597,7 +1597,7 @@ ON_COMPLETE:
if (Item != NULL && Item->Value != NULL) {
NetbufFree ((NET_BUF *) (Item->Value));
}
-
+
if (Instance->Service->IpVersion == IP_VERSION_4) {
ASSERT (Dns4TokenEntry != NULL);
Dns4RemoveTokenEntry (&Instance->Dns4TxTokens, Dns4TokenEntry);
@@ -1635,10 +1635,10 @@ ON_EXIT:
FreePool (Dns4TokenEntry->Token->RspData.GLookupData->RRList[RRCount].RData);
}
}
-
+
FreePool (Dns4TokenEntry->Token->RspData.GLookupData->RRList);
}
-
+
FreePool (Dns4TokenEntry->Token->RspData.GLookupData);
}
} else {
@@ -1646,7 +1646,7 @@ ON_EXIT:
if (Dns4TokenEntry->Token->RspData.H2AData->IpList != NULL) {
FreePool (Dns4TokenEntry->Token->RspData.H2AData->IpList);
}
-
+
FreePool (Dns4TokenEntry->Token->RspData.H2AData);
}
}
@@ -1666,10 +1666,10 @@ ON_EXIT:
FreePool (Dns6TokenEntry->Token->RspData.GLookupData->RRList[RRCount].RData);
}
}
-
+
FreePool (Dns6TokenEntry->Token->RspData.GLookupData->RRList);
}
-
+
FreePool (Dns6TokenEntry->Token->RspData.GLookupData);
}
} else {
@@ -1677,7 +1677,7 @@ ON_EXIT:
if (Dns6TokenEntry->Token->RspData.H2AData->IpList != NULL) {
FreePool (Dns6TokenEntry->Token->RspData.H2AData->IpList);
}
-
+
FreePool (Dns6TokenEntry->Token->RspData.H2AData);
}
}
@@ -1705,9 +1705,9 @@ ON_EXIT:
}
FreePool (Dns6CacheEntry);
- }
+ }
}
-
+
gBS->RestoreTPL (OldTpl);
return Status;
}
@@ -1720,7 +1720,7 @@ ON_EXIT:
@param IoStatus The status of the UDP receive
@param Context The opaque parameter to the function.
-**/
+**/
VOID
EFIAPI
DnsOnPacketReceived (
@@ -1735,7 +1735,7 @@ DnsOnPacketReceived (
UINT8 *RcvString;
BOOLEAN Completed;
-
+
Instance = (DNS_INSTANCE *) Context;
NET_CHECK_SIGNATURE (Instance, DNS_INSTANCE_SIGNATURE);
@@ -1751,10 +1751,10 @@ DnsOnPacketReceived (
if (Packet->TotalSize <= sizeof (DNS_HEADER)) {
goto ON_EXIT;
}
-
+
RcvString = NetbufGetByte (Packet, 0, NULL);
ASSERT (RcvString != NULL);
-
+
//
// Parse Dns Response
//
@@ -1820,7 +1820,7 @@ DnsOnPacketSent (
}
}
}
-
+
NetbufFree (Packet);
}
@@ -1851,14 +1851,14 @@ DoDnsQuery (
return Status;
}
}
-
+
//
// Transmit the DNS packet.
//
NET_GET_REF (Packet);
Status = UdpIoSendDatagram (Instance->UdpIo, Packet, NULL, NULL, DnsOnPacketSent, Instance);
-
+
return Status;
}
@@ -1866,9 +1866,9 @@ DoDnsQuery (
Construct the Packet according query section.
@param Instance The DNS instance
- @param QueryName Queried Name
- @param Type Queried Type
- @param Class Queried Class
+ @param QueryName Queried Name
+ @param Type Queried Type
+ @param Class Queried Class
@param Packet The packet for query
@retval EFI_SUCCESS The packet is constructed.
@@ -1900,7 +1900,7 @@ ConstructDNSQuery (
//
// Fill header
//
- DnsHeader = (DNS_HEADER *) Frag.Bulk;
+ DnsHeader = (DNS_HEADER *) Frag.Bulk;
DnsHeader->Identification = (UINT16)NET_RANDOM (NetRandomInitSeed());
DnsHeader->Flags.Uint16 = 0x0000;
DnsHeader->Flags.Bits.RD = 1;
@@ -1927,7 +1927,7 @@ ConstructDNSQuery (
Frag.Len = (UINT32) (Frag.Len + AsciiStrLen (QueryName));
*(Frag.Bulk + Frag.Len) = 0;
Frag.Len ++;
-
+
//
// Rest query section
//
@@ -1946,7 +1946,7 @@ ConstructDNSQuery (
FreePool (Frag.Bulk);
return EFI_OUT_OF_RESOURCES;
}
-
+
//
// Store the UdpIo in ProtoData.
//
@@ -1959,7 +1959,7 @@ ConstructDNSQuery (
Retransmit the packet.
@param Instance The DNS instance
- @param Packet Retransmit the packet
+ @param Packet Retransmit the packet
@retval EFI_SUCCESS The packet is retransmitted.
@retval Others Failed to retransmit.
@@ -1972,7 +1972,7 @@ DnsRetransmit (
)
{
EFI_STATUS Status;
-
+
UINT8 *Buffer;
ASSERT (Packet != NULL);
@@ -2064,7 +2064,7 @@ DnsOnTimerRetransmit (
Dns4TokenEntry->Token->Status = EFI_TIMEOUT;
gBS->SignalEvent (Dns4TokenEntry->Token->Event);
DispatchDpc ();
-
+
//
// Free the sending packet.
//
@@ -2075,7 +2075,7 @@ DnsOnTimerRetransmit (
EntryNetMap = Instance->Dns4TxTokens.Used.ForwardLink;
}
}
- }
+ }
}else {
//
// Iterate through all the children of the DNS service instance. Time
@@ -2083,7 +2083,7 @@ DnsOnTimerRetransmit (
//
NET_LIST_FOR_EACH_SAFE (Entry, Next, &Service->Dns6ChildrenList) {
Instance = NET_LIST_USER_STRUCT (Entry, DNS_INSTANCE, Link);
-
+
EntryNetMap = Instance->Dns6TxTokens.Used.ForwardLink;
while (EntryNetMap != &Instance->Dns6TxTokens.Used) {
ItemNetMap = NET_LIST_USER_STRUCT (EntryNetMap, NET_MAP_ITEM, Link);
@@ -2108,7 +2108,7 @@ DnsOnTimerRetransmit (
Dns6TokenEntry->Token->Status = EFI_TIMEOUT;
gBS->SignalEvent (Dns6TokenEntry->Token->Event);
DispatchDpc ();
-
+
//
// Free the sending packet.
//
@@ -2117,10 +2117,10 @@ DnsOnTimerRetransmit (
}
EntryNetMap = Instance->Dns6TxTokens.Used.ForwardLink;
- }
+ }
}
}
- }
+ }
}
/**
@@ -2152,7 +2152,7 @@ DnsOnTimerUpdate (
Item4 = NET_LIST_USER_STRUCT (Entry, DNS4_CACHE, AllCacheLink);
Item4->DnsCache.Timeout--;
}
-
+
Entry = mDriverData->Dns4CacheList.ForwardLink;
while (Entry != &mDriverData->Dns4CacheList) {
Item4 = NET_LIST_USER_STRUCT (Entry, DNS4_CACHE, AllCacheLink);
@@ -2166,7 +2166,7 @@ DnsOnTimerUpdate (
Entry = Entry->ForwardLink;
}
}
-
+
//
// Iterate through all the DNS6 cache list.
//
@@ -2174,7 +2174,7 @@ DnsOnTimerUpdate (
Item6 = NET_LIST_USER_STRUCT (Entry, DNS6_CACHE, AllCacheLink);
Item6->DnsCache.Timeout--;
}
-
+
Entry = mDriverData->Dns6CacheList.ForwardLink;
while (Entry != &mDriverData->Dns6CacheList) {
Item6 = NET_LIST_USER_STRUCT (Entry, DNS6_CACHE, AllCacheLink);