X-Git-Url: https://git.proxmox.com/?p=mirror_edk2.git;a=blobdiff_plain;f=MdeModulePkg%2FUniversal%2FNetwork%2FIp4Dxe%2FIp4Common.c;h=b582ccf13f66836768ed6e7e57865ef6af269e3e;hp=89a371400b872894b092f6f2f983a9da334f243a;hb=29788f178e48fa5ffe7d3262d73c9548e9285d2d;hpb=5405e9a66b5ecf9f8a7ba571ead43cbee45161ae diff --git a/MdeModulePkg/Universal/Network/Ip4Dxe/Ip4Common.c b/MdeModulePkg/Universal/Network/Ip4Dxe/Ip4Common.c index 89a371400b..b582ccf13f 100644 --- a/MdeModulePkg/Universal/Network/Ip4Dxe/Ip4Common.c +++ b/MdeModulePkg/Universal/Network/Ip4Dxe/Ip4Common.c @@ -1,7 +1,7 @@ /** @file -Copyright (c) 2005 - 2006, Intel Corporation -All rights reserved. This program and the accompanying materials +Copyright (c) 2005 - 2017, Intel Corporation. All rights reserved.
+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 http://opensource.org/licenses/bsd-license.php @@ -9,14 +9,6 @@ http://opensource.org/licenses/bsd-license.php THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. - -Module Name: - - Ip4Common.c - -Abstract: - - **/ #include "Ip4Impl.h" @@ -26,8 +18,8 @@ Abstract: Return the cast type (Unicast/Boradcast) specific to an interface. All the addresses are host byte ordered. - @param IpAddr The IP address to classify in host byte order - @param IpIf The interface that IpAddr received from + @param[in] IpAddr The IP address to classify in host byte order + @param[in] IpIf The interface that IpAddr received from @return The cast type of this IP address specific to the interface. @retval IP4_LOCAL_HOST The IpAddr equals to the interface's address @@ -63,11 +55,11 @@ Ip4GetNetCast ( This isn't the same as link layer cast type. For example, DHCP server may send local broadcast to the local unicast MAC. - @param IpSb The IP4 service binding instance that received the - packet - @param Dst The destination address in the packet (host byte - order) - @param Src The source address in the packet (host byte order) + @param[in] IpSb The IP4 service binding instance that received the + packet + @param[in] Dst The destination address in the packet (host byte + order) + @param[in] Src The source address in the packet (host byte order) @return The cast type for the Dst, it will return on the first non-promiscuous cast type to a configured interface. If the packet doesn't match any of @@ -135,8 +127,8 @@ Ip4GetHostCast ( /** Find an interface whose configured IP address is Ip. - @param IpSb The IP4 service binding instance - @param Ip The Ip address (host byte order) to find + @param[in] IpSb The IP4 service binding instance + @param[in] Ip The Ip address (host byte order) to find @return The IP4_INTERFACE point if found, otherwise NULL @@ -165,8 +157,8 @@ Ip4FindInterface ( /** Find an interface that Ip is on that connected network. - @param IpSb The IP4 service binding instance - @param Ip The Ip address (host byte order) to find + @param[in] IpSb The IP4 service binding instance + @param[in] Ip The Ip address (host byte order) to find @return The IP4_INTERFACE point if found, otherwise NULL @@ -195,9 +187,9 @@ Ip4FindNet ( /** Find an interface of the service with the same Ip/Netmask pair. - @param IpSb Ip4 service binding instance - @param Ip The Ip adress to find (host byte order) - @param Netmask The network to find (host byte order) + @param[in] IpSb Ip4 service binding instance + @param[in] Ip The Ip adress to find (host byte order) + @param[in] Netmask The network to find (host byte order) @return The IP4_INTERFACE point if found, otherwise NULL @@ -229,9 +221,9 @@ Ip4FindStationAddress ( Mnp's McastIpToMac to find the MAC address in stead of hard code the NIC to be Ethernet. - @param Mnp The Mnp instance to get the MAC address. - @param Multicast The multicast IP address to translate. - @param Mac The buffer to hold the translated address. + @param[in] Mnp The Mnp instance to get the MAC address. + @param[in] Multicast The multicast IP address to translate. + @param[out] Mac The buffer to hold the translated address. @retval EFI_SUCCESS if the multicast IP is successfully translated to a multicast MAC address. @@ -257,7 +249,7 @@ Ip4GetMulticastMac ( In spite of its name, it can also be used to convert from host to network byte order. - @param Head The IP head to convert + @param[in] Head The IP head to convert @return Point to the converted IP head @@ -278,150 +270,43 @@ Ip4NtohHead ( /** - Set the Ip4 variable data. - - Save the list of all of the IPv4 addresses and subnet masks that are currently - being used to volatile variable storage. + Validate that Ip/Netmask pair is OK to be used as station + address. Only continuous netmasks are supported. and check + that StationAddress is a unicast address on the newtwork. - @param IpSb Ip4 service binding instance + @param[in] Ip The IP address to validate. + @param[in] Netmask The netmaks of the IP. - @retval EFI_SUCCESS Successfully set variable. - @retval EFI_OUT_OF_RESOURCES There are not enough resources to set the variable. - @retval other Set variable failed. + @retval TRUE The Ip/Netmask pair is valid. + @retval FALSE The Ip/Netmask pair is invalid. **/ -EFI_STATUS -Ip4SetVariableData ( - IN IP4_SERVICE *IpSb +BOOLEAN +Ip4StationAddressValid ( + IN IP4_ADDR Ip, + IN IP4_ADDR Netmask ) { - UINT32 NumConfiguredInstance; - LIST_ENTRY *Entry; - UINTN VariableDataSize; - EFI_IP4_VARIABLE_DATA *Ip4VariableData; - EFI_IP4_ADDRESS_PAIR *Ip4AddressPair; - IP4_PROTOCOL *IpInstance; - CHAR16 *NewMacString; - EFI_STATUS Status; - - NumConfiguredInstance = 0; - // - // Go through the children list to count the configured children. + // Only support the station address with 0.0.0.0/0 to enable DHCP client. // - NET_LIST_FOR_EACH (Entry, &IpSb->Children) { - IpInstance = NET_LIST_USER_STRUCT_S (Entry, IP4_PROTOCOL, Link, IP4_PROTOCOL_SIGNATURE); - - if (IpInstance->State == IP4_STATE_CONFIGED) { - NumConfiguredInstance++; - } + if (Netmask == IP4_ALLZERO_ADDRESS) { + return (BOOLEAN) (Ip == IP4_ALLZERO_ADDRESS); } // - // Calculate the size of the Ip4VariableData. As there may be no IP child, - // we should add extra buffer for the address paris only if the number of configured - // children is more than 1. + // Only support the continuous net masks // - VariableDataSize = sizeof (EFI_IP4_VARIABLE_DATA); - - if (NumConfiguredInstance > 1) { - VariableDataSize += sizeof (EFI_IP4_ADDRESS_PAIR) * (NumConfiguredInstance - 1); - } - - Ip4VariableData = AllocatePool (VariableDataSize); - if (Ip4VariableData == NULL) { - return EFI_OUT_OF_RESOURCES; - } - - Ip4VariableData->DriverHandle = IpSb->Image; - Ip4VariableData->AddressCount = NumConfiguredInstance; - - Ip4AddressPair = &Ip4VariableData->AddressPairs[0]; - - // - // Go through the children list to fill the configured children's address pairs. - // - NET_LIST_FOR_EACH (Entry, &IpSb->Children) { - IpInstance = NET_LIST_USER_STRUCT_S (Entry, IP4_PROTOCOL, Link, IP4_PROTOCOL_SIGNATURE); - - if (IpInstance->State == IP4_STATE_CONFIGED) { - Ip4AddressPair->InstanceHandle = IpInstance->Handle; - EFI_IP4 (Ip4AddressPair->Ip4Address) = NTOHL (IpInstance->Interface->Ip); - EFI_IP4 (Ip4AddressPair->SubnetMask) = NTOHL (IpInstance->Interface->SubnetMask); - - Ip4AddressPair++; - } + if (NetGetMaskLength (Netmask) == (IP4_MASK_MAX + 1)) { + return FALSE; } // - // Get the mac string. + // Station address can't be class D or class E address // - Status = NetLibGetMacString (IpSb->Controller, IpSb->Image, &NewMacString); - if (EFI_ERROR (Status)) { - goto ON_ERROR; + if (NetGetIpClass (Ip) > IP4_ADDR_CLASSC) { + return FALSE; } - if (IpSb->MacString != NULL) { - // - // The variable is set already, we're going to update it. - // - if (StrCmp (IpSb->MacString, NewMacString) != 0) { - // - // The mac address is changed, delete the previous variable first. - // - gRT->SetVariable ( - IpSb->MacString, - &gEfiIp4ServiceBindingProtocolGuid, - EFI_VARIABLE_BOOTSERVICE_ACCESS, - 0, - NULL - ); - } - - gBS->FreePool (IpSb->MacString); - } - - IpSb->MacString = NewMacString; - - Status = gRT->SetVariable ( - IpSb->MacString, - &gEfiIp4ServiceBindingProtocolGuid, - EFI_VARIABLE_BOOTSERVICE_ACCESS, - VariableDataSize, - (VOID *) Ip4VariableData - ); - -ON_ERROR: - - gBS->FreePool (Ip4VariableData); - - return Status; -} - - -/** - Clear the variable and free the resource. - - @param IpSb Ip4 service binding instance - - @return None. - -**/ -VOID -Ip4ClearVariableData ( - IN IP4_SERVICE *IpSb - ) -{ - ASSERT (IpSb->MacString != NULL); - - gRT->SetVariable ( - IpSb->MacString, - &gEfiIp4ServiceBindingProtocolGuid, - EFI_VARIABLE_BOOTSERVICE_ACCESS, - 0, - NULL - ); - - gBS->FreePool (IpSb->MacString); - IpSb->MacString = NULL; + return NetIp4IsUnicast (Ip, Netmask); }