X-Git-Url: https://git.proxmox.com/?a=blobdiff_plain;f=MdeModulePkg%2FUniversal%2FNetwork%2FIp4Dxe%2FIp4Common.c;h=b582ccf13f66836768ed6e7e57865ef6af269e3e;hb=3028d73e5a4073841fdfc94b1e984c92e8e8fa7a;hp=561be165d835834f2498b353afe67a1eefd3c37f;hpb=e48e37fce2611df7a52aff271835ff72ee396d9b;p=mirror_edk2.git diff --git a/MdeModulePkg/Universal/Network/Ip4Dxe/Ip4Common.c b/MdeModulePkg/Universal/Network/Ip4Dxe/Ip4Common.c index 561be165d8..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,31 +9,24 @@ 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" /** - Return the cast type (Unicast/Boradcast) specific to a + 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 @retval IP4_SUBNET_BROADCAST The IpAddr is a directed subnet boradcast to the interface @retval IP4_NET_BROADCAST The IpAddr is a network broadcast to the interface + @retval 0 Otherwise. **/ INTN @@ -62,15 +55,15 @@ 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 - @return cast type to a configured interface. If the packet doesn't match any of - @return the interface, multicast address and local broadcast address are checked. + cast type to a configured interface. If the packet doesn't match any of + the interface, multicast address and local broadcast address are checked. **/ INTN @@ -119,11 +112,11 @@ Ip4GetHostCast ( if (Dst == IP4_ALLONE_ADDRESS) { IpIf = Ip4FindNet (IpSb, Src); - if (IpIf && !IP4_IS_BROADCAST (Ip4GetNetCast (Src, IpIf))) { + if (IpIf != NULL && !IP4_IS_BROADCAST (Ip4GetNetCast (Src, IpIf))) { return IP4_LOCAL_BROADCAST; } - } else if (IP4_IS_MULTICAST (Dst) && Ip4FindGroup (&IpSb->IgmpCtrl, Dst)) { + } else if (IP4_IS_MULTICAST (Dst) && Ip4FindGroup (&IpSb->IgmpCtrl, Dst) != NULL) { return IP4_MULTICAST; } @@ -132,10 +125,10 @@ Ip4GetHostCast ( /** - Find an interface whose configured IP address is Ip + 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 @@ -164,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 @@ -194,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 @@ -228,12 +221,13 @@ 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. - @return Returns EFI_SUCCESS if the multicast IP is successfully - @return translated to a multicast MAC address. Otherwise some error. + @retval EFI_SUCCESS if the multicast IP is successfully translated to a + multicast MAC address. + @retval other Otherwise some error. **/ EFI_STATUS @@ -255,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 @@ -276,146 +270,43 @@ Ip4NtohHead ( /** - Set the Ip4 variable data. + 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_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); }