2008-04-17 10:28:51 +02:00
|
|
|
/** @file
|
2009-01-13 09:44:22 +01:00
|
|
|
Miscellaneous routines for iSCSI driver.
|
2007-12-24 03:20:21 +01:00
|
|
|
|
2011-09-18 14:21:01 +02:00
|
|
|
Copyright (c) 2004 - 2011, Intel Corporation. All rights reserved.<BR>
|
2010-04-24 11:33:45 +02:00
|
|
|
This program and the accompanying materials
|
2008-01-22 09:07:35 +01:00
|
|
|
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
|
|
|
|
|
|
|
|
THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
|
|
|
|
WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
2007-12-24 03:20:21 +01:00
|
|
|
|
2008-04-17 10:28:51 +02:00
|
|
|
**/
|
2007-12-24 03:20:21 +01:00
|
|
|
|
|
|
|
#include "IScsiImpl.h"
|
|
|
|
|
Remove NibbleToHexChar() function from BaseLib
Move IsHexDigit, BufToHexString, HexStringToBuf from BaseLib to MdeModulePkg IfrSupportLib. The reason is:
1) IsHexDigit function provides the logic to check Hex Digit and convert it to Decimal value, which is required by IScsi LUN and HII user input. But this logic is not provided by any functions in MdeLib. So, it can't be deleted. It is moved to IfrSupportLib.
2) BufToHexString function converts a array of buffers to hex string. If the buffer length is less than sizeof (UINT64), it can be directly replaced by UnicodeValueToString(). But HII modules may use BufToHexString to convert the buffers whose length > sizeof (UINT64). For example:
.\MdeModulePkg\Universal\HiiDatabaseDxe\ConfigRouting.c line 201, 1148
.\Universal\SetupBrowserDxe\Setup.c line line 1457, 1503
Like this case, it is not easy to use UnicodeValueToString to replace BufToHexString. So, BufToHexString is still kept. Because such usages are in HII modules, this function is moved to IfrSupportLib.
3) HexStringToBuf is moved to IfrSupportLib. The reason is similar to BufToHexString.
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@6782 6f19259b-4bc3-4df7-8a09-765794883524
2008-12-01 03:32:12 +01:00
|
|
|
GLOBAL_REMOVE_IF_UNREFERENCED CONST CHAR8 IScsiHexString[] = "0123456789ABCDEFabcdef";
|
2007-12-24 03:20:21 +01:00
|
|
|
|
2008-04-17 10:28:51 +02:00
|
|
|
/**
|
|
|
|
Removes (trims) specified leading and trailing characters from a string.
|
|
|
|
|
2008-12-10 04:58:26 +01:00
|
|
|
@param[in, out] Str Pointer to the null-terminated string to be trimmed. On return,
|
2008-12-12 08:03:44 +01:00
|
|
|
Str will hold the trimmed string.
|
2008-04-17 10:28:51 +02:00
|
|
|
|
2008-12-10 04:58:26 +01:00
|
|
|
@param[in] CharC Character will be trimmed from str.
|
2008-04-17 10:28:51 +02:00
|
|
|
**/
|
2007-12-24 03:20:21 +01:00
|
|
|
VOID
|
|
|
|
StrTrim (
|
2008-12-10 04:58:26 +01:00
|
|
|
IN OUT CHAR16 *Str,
|
2007-12-24 03:20:21 +01:00
|
|
|
IN CHAR16 CharC
|
|
|
|
)
|
|
|
|
{
|
2008-12-10 04:58:26 +01:00
|
|
|
CHAR16 *Pointer1;
|
|
|
|
CHAR16 *Pointer2;
|
2007-12-24 03:20:21 +01:00
|
|
|
|
2008-12-10 04:58:26 +01:00
|
|
|
if (*Str == 0) {
|
2007-12-24 03:20:21 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
//
|
|
|
|
// Trim off the leading and trailing characters c
|
|
|
|
//
|
2008-12-10 04:58:26 +01:00
|
|
|
for (Pointer1 = Str; (*Pointer1 != 0) && (*Pointer1 == CharC); Pointer1++) {
|
2007-12-24 03:20:21 +01:00
|
|
|
;
|
|
|
|
}
|
|
|
|
|
2008-12-10 04:58:26 +01:00
|
|
|
Pointer2 = Str;
|
|
|
|
if (Pointer2 == Pointer1) {
|
|
|
|
while (*Pointer1 != 0) {
|
|
|
|
Pointer2++;
|
|
|
|
Pointer1++;
|
2007-12-24 03:20:21 +01:00
|
|
|
}
|
|
|
|
} else {
|
2008-12-10 04:58:26 +01:00
|
|
|
while (*Pointer1 != 0) {
|
|
|
|
*Pointer2 = *Pointer1;
|
|
|
|
Pointer1++;
|
|
|
|
Pointer2++;
|
2007-12-24 03:20:21 +01:00
|
|
|
}
|
2008-12-10 04:58:26 +01:00
|
|
|
*Pointer2 = 0;
|
2007-12-24 03:20:21 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-12-10 04:58:26 +01:00
|
|
|
for (Pointer1 = Str + StrLen(Str) - 1; Pointer1 >= Str && *Pointer1 == CharC; Pointer1--) {
|
2007-12-24 03:20:21 +01:00
|
|
|
;
|
|
|
|
}
|
2008-12-10 04:58:26 +01:00
|
|
|
if (Pointer1 != Str + StrLen(Str) - 1) {
|
|
|
|
*(Pointer1 + 1) = 0;
|
2007-12-24 03:20:21 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-04-17 10:28:51 +02:00
|
|
|
/**
|
2007-12-24 03:20:21 +01:00
|
|
|
Calculate the prefix length of the IPv4 subnet mask.
|
|
|
|
|
2008-12-10 04:58:26 +01:00
|
|
|
@param[in] SubnetMask The IPv4 subnet mask.
|
2007-12-24 03:20:21 +01:00
|
|
|
|
2008-12-10 04:58:26 +01:00
|
|
|
@return The prefix length of the subnet mask.
|
2008-12-12 08:03:44 +01:00
|
|
|
@retval 0 Other errors as indicated.
|
2008-04-17 10:28:51 +02:00
|
|
|
**/
|
|
|
|
UINT8
|
|
|
|
IScsiGetSubnetMaskPrefixLength (
|
|
|
|
IN EFI_IPv4_ADDRESS *SubnetMask
|
|
|
|
)
|
2007-12-24 03:20:21 +01:00
|
|
|
{
|
|
|
|
UINT8 Len;
|
|
|
|
UINT32 ReverseMask;
|
|
|
|
|
|
|
|
//
|
|
|
|
// The SubnetMask is in network byte order.
|
|
|
|
//
|
|
|
|
ReverseMask = (SubnetMask->Addr[0] << 24) | (SubnetMask->Addr[1] << 16) | (SubnetMask->Addr[2] << 8) | (SubnetMask->Addr[3]);
|
|
|
|
|
|
|
|
//
|
|
|
|
// Reverse it.
|
|
|
|
//
|
|
|
|
ReverseMask = ~ReverseMask;
|
|
|
|
|
2009-02-24 08:57:25 +01:00
|
|
|
if ((ReverseMask & (ReverseMask + 1)) != 0) {
|
2007-12-24 03:20:21 +01:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
Len = 0;
|
|
|
|
|
|
|
|
while (ReverseMask != 0) {
|
|
|
|
ReverseMask = ReverseMask >> 1;
|
|
|
|
Len++;
|
|
|
|
}
|
|
|
|
|
2008-01-22 08:14:48 +01:00
|
|
|
return (UINT8) (32 - Len);
|
2007-12-24 03:20:21 +01:00
|
|
|
}
|
|
|
|
|
2008-04-17 10:28:51 +02:00
|
|
|
/**
|
2007-12-24 03:20:21 +01:00
|
|
|
Convert the hexadecimal encoded LUN string into the 64-bit LUN.
|
|
|
|
|
2008-12-10 04:58:26 +01:00
|
|
|
@param[in] Str The hexadecimal encoded LUN string.
|
|
|
|
@param[out] Lun Storage to return the 64-bit LUN.
|
2007-12-24 03:20:21 +01:00
|
|
|
|
2008-04-17 10:28:51 +02:00
|
|
|
@retval EFI_SUCCESS The 64-bit LUN is stored in Lun.
|
|
|
|
@retval EFI_INVALID_PARAMETER The string is malformatted.
|
|
|
|
**/
|
|
|
|
EFI_STATUS
|
|
|
|
IScsiAsciiStrToLun (
|
|
|
|
IN CHAR8 *Str,
|
|
|
|
OUT UINT8 *Lun
|
|
|
|
)
|
2007-12-24 03:20:21 +01:00
|
|
|
{
|
2009-04-08 02:56:51 +02:00
|
|
|
UINTN Index, IndexValue, IndexNum, SizeStr;
|
|
|
|
CHAR8 TemStr[2];
|
|
|
|
UINT8 TemValue;
|
2009-11-04 09:18:34 +01:00
|
|
|
UINT16 Value[4];
|
2009-04-08 02:56:51 +02:00
|
|
|
|
2008-02-14 10:40:22 +01:00
|
|
|
ZeroMem (Lun, 8);
|
2009-04-08 02:56:51 +02:00
|
|
|
ZeroMem (TemStr, 2);
|
|
|
|
ZeroMem ((UINT8 *) Value, sizeof (Value));
|
|
|
|
SizeStr = AsciiStrLen (Str);
|
|
|
|
IndexValue = 0;
|
|
|
|
IndexNum = 0;
|
|
|
|
|
|
|
|
for (Index = 0; Index < SizeStr; Index ++) {
|
|
|
|
TemStr[0] = Str[Index];
|
|
|
|
TemValue = (UINT8) AsciiStrHexToUint64 (TemStr);
|
|
|
|
if (TemValue == 0 && TemStr[0] != '0') {
|
|
|
|
if ((TemStr[0] != '-') || (IndexNum == 0)) {
|
|
|
|
//
|
|
|
|
// Invalid Lun Char
|
|
|
|
//
|
|
|
|
return EFI_INVALID_PARAMETER;
|
2007-12-24 03:20:21 +01:00
|
|
|
}
|
|
|
|
}
|
2009-04-08 02:56:51 +02:00
|
|
|
|
|
|
|
if ((TemValue == 0) && (TemStr[0] == '-')) {
|
|
|
|
//
|
|
|
|
// Next Lun value
|
|
|
|
//
|
|
|
|
if (++IndexValue >= 4) {
|
|
|
|
//
|
|
|
|
// Max 4 Lun value
|
|
|
|
//
|
|
|
|
return EFI_INVALID_PARAMETER;
|
|
|
|
}
|
|
|
|
//
|
|
|
|
// Restart str index for the next lun value
|
|
|
|
//
|
|
|
|
IndexNum = 0;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (++IndexNum > 4) {
|
|
|
|
//
|
|
|
|
// Each Lun Str can't exceed size 4, because it will be as UINT16 value
|
|
|
|
//
|
2007-12-24 03:20:21 +01:00
|
|
|
return EFI_INVALID_PARAMETER;
|
|
|
|
}
|
2009-04-08 02:56:51 +02:00
|
|
|
|
|
|
|
//
|
|
|
|
// Combine UINT16 value
|
|
|
|
//
|
|
|
|
Value[IndexValue] = (UINT16) ((Value[IndexValue] << 4) + TemValue);
|
2007-12-24 03:20:21 +01:00
|
|
|
}
|
2009-04-08 02:56:51 +02:00
|
|
|
|
|
|
|
for (Index = 0; Index <= IndexValue; Index ++) {
|
|
|
|
*((UINT16 *) &Lun[Index * 2]) = HTONS (Value[Index]);
|
|
|
|
}
|
|
|
|
|
2007-12-24 03:20:21 +01:00
|
|
|
return EFI_SUCCESS;
|
|
|
|
}
|
|
|
|
|
2008-04-17 10:28:51 +02:00
|
|
|
/**
|
2007-12-24 03:20:21 +01:00
|
|
|
Convert the 64-bit LUN into the hexadecimal encoded LUN string.
|
|
|
|
|
2008-12-10 04:58:26 +01:00
|
|
|
@param[in] Lun The 64-bit LUN.
|
|
|
|
@param[out] Str The storage to return the hexadecimal encoded LUN string.
|
2008-04-17 10:28:51 +02:00
|
|
|
**/
|
|
|
|
VOID
|
|
|
|
IScsiLunToUnicodeStr (
|
|
|
|
IN UINT8 *Lun,
|
|
|
|
OUT CHAR16 *Str
|
|
|
|
)
|
2007-12-24 03:20:21 +01:00
|
|
|
{
|
|
|
|
UINTN Index;
|
|
|
|
CHAR16 *TempStr;
|
|
|
|
|
|
|
|
TempStr = Str;
|
|
|
|
|
|
|
|
for (Index = 0; Index < 4; Index++) {
|
|
|
|
|
|
|
|
if ((Lun[2 * Index] | Lun[2 * Index + 1]) == 0) {
|
|
|
|
StrCpy (TempStr, L"0-");
|
|
|
|
} else {
|
|
|
|
TempStr[0] = (CHAR16) IScsiHexString[Lun[2 * Index] >> 4];
|
Remove NibbleToHexChar() function from BaseLib
Move IsHexDigit, BufToHexString, HexStringToBuf from BaseLib to MdeModulePkg IfrSupportLib. The reason is:
1) IsHexDigit function provides the logic to check Hex Digit and convert it to Decimal value, which is required by IScsi LUN and HII user input. But this logic is not provided by any functions in MdeLib. So, it can't be deleted. It is moved to IfrSupportLib.
2) BufToHexString function converts a array of buffers to hex string. If the buffer length is less than sizeof (UINT64), it can be directly replaced by UnicodeValueToString(). But HII modules may use BufToHexString to convert the buffers whose length > sizeof (UINT64). For example:
.\MdeModulePkg\Universal\HiiDatabaseDxe\ConfigRouting.c line 201, 1148
.\Universal\SetupBrowserDxe\Setup.c line line 1457, 1503
Like this case, it is not easy to use UnicodeValueToString to replace BufToHexString. So, BufToHexString is still kept. Because such usages are in HII modules, this function is moved to IfrSupportLib.
3) HexStringToBuf is moved to IfrSupportLib. The reason is similar to BufToHexString.
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@6782 6f19259b-4bc3-4df7-8a09-765794883524
2008-12-01 03:32:12 +01:00
|
|
|
TempStr[1] = (CHAR16) IScsiHexString[Lun[2 * Index] & 0x0F];
|
2007-12-24 03:20:21 +01:00
|
|
|
TempStr[2] = (CHAR16) IScsiHexString[Lun[2 * Index + 1] >> 4];
|
Remove NibbleToHexChar() function from BaseLib
Move IsHexDigit, BufToHexString, HexStringToBuf from BaseLib to MdeModulePkg IfrSupportLib. The reason is:
1) IsHexDigit function provides the logic to check Hex Digit and convert it to Decimal value, which is required by IScsi LUN and HII user input. But this logic is not provided by any functions in MdeLib. So, it can't be deleted. It is moved to IfrSupportLib.
2) BufToHexString function converts a array of buffers to hex string. If the buffer length is less than sizeof (UINT64), it can be directly replaced by UnicodeValueToString(). But HII modules may use BufToHexString to convert the buffers whose length > sizeof (UINT64). For example:
.\MdeModulePkg\Universal\HiiDatabaseDxe\ConfigRouting.c line 201, 1148
.\Universal\SetupBrowserDxe\Setup.c line line 1457, 1503
Like this case, it is not easy to use UnicodeValueToString to replace BufToHexString. So, BufToHexString is still kept. Because such usages are in HII modules, this function is moved to IfrSupportLib.
3) HexStringToBuf is moved to IfrSupportLib. The reason is similar to BufToHexString.
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@6782 6f19259b-4bc3-4df7-8a09-765794883524
2008-12-01 03:32:12 +01:00
|
|
|
TempStr[3] = (CHAR16) IScsiHexString[Lun[2 * Index + 1] & 0x0F];
|
2007-12-24 03:20:21 +01:00
|
|
|
TempStr[4] = L'-';
|
|
|
|
TempStr[5] = 0;
|
|
|
|
|
|
|
|
StrTrim (TempStr, L'0');
|
|
|
|
}
|
|
|
|
|
|
|
|
TempStr += StrLen (TempStr);
|
|
|
|
}
|
|
|
|
|
|
|
|
Str[StrLen (Str) - 1] = 0;
|
|
|
|
|
|
|
|
for (Index = StrLen (Str) - 1; Index > 1; Index = Index - 2) {
|
|
|
|
if ((Str[Index] == L'0') && (Str[Index - 1] == L'-')) {
|
|
|
|
Str[Index - 1] = 0;
|
|
|
|
} else {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-04-17 10:28:51 +02:00
|
|
|
/**
|
2007-12-24 03:20:21 +01:00
|
|
|
Convert the ASCII string into a UNICODE string.
|
|
|
|
|
2008-12-10 04:58:26 +01:00
|
|
|
@param[in] Source The ASCII string.
|
|
|
|
@param[out] Destination The storage to return the UNICODE string.
|
2007-12-24 03:20:21 +01:00
|
|
|
|
2008-12-10 04:58:26 +01:00
|
|
|
@return CHAR16 * Pointer to the UNICODE string.
|
2008-04-17 10:28:51 +02:00
|
|
|
**/
|
|
|
|
CHAR16 *
|
|
|
|
IScsiAsciiStrToUnicodeStr (
|
|
|
|
IN CHAR8 *Source,
|
|
|
|
OUT CHAR16 *Destination
|
|
|
|
)
|
2007-12-24 03:20:21 +01:00
|
|
|
{
|
|
|
|
ASSERT (Destination != NULL);
|
|
|
|
ASSERT (Source != NULL);
|
|
|
|
|
|
|
|
while (*Source != '\0') {
|
|
|
|
*(Destination++) = (CHAR16) *(Source++);
|
|
|
|
}
|
|
|
|
|
|
|
|
*Destination = '\0';
|
|
|
|
|
|
|
|
return Destination;
|
|
|
|
}
|
|
|
|
|
2008-04-17 10:28:51 +02:00
|
|
|
/**
|
2007-12-24 03:20:21 +01:00
|
|
|
Convert the UNICODE string into an ASCII string.
|
|
|
|
|
2008-12-10 04:58:26 +01:00
|
|
|
@param[in] Source The UNICODE string.
|
|
|
|
@param[out] Destination The storage to return the ASCII string.
|
2007-12-24 03:20:21 +01:00
|
|
|
|
2008-12-10 04:58:26 +01:00
|
|
|
@return CHAR8 * Pointer to the ASCII string.
|
|
|
|
**/
|
2008-04-17 10:28:51 +02:00
|
|
|
CHAR8 *
|
|
|
|
IScsiUnicodeStrToAsciiStr (
|
|
|
|
IN CHAR16 *Source,
|
|
|
|
OUT CHAR8 *Destination
|
|
|
|
)
|
2007-12-24 03:20:21 +01:00
|
|
|
{
|
|
|
|
ASSERT (Destination != NULL);
|
|
|
|
ASSERT (Source != NULL);
|
|
|
|
|
|
|
|
while (*Source != '\0') {
|
|
|
|
//
|
|
|
|
// If any Unicode characters in Source contain
|
|
|
|
// non-zero value in the upper 8 bits, then ASSERT().
|
|
|
|
//
|
|
|
|
ASSERT (*Source < 0x100);
|
|
|
|
*(Destination++) = (CHAR8) *(Source++);
|
|
|
|
}
|
|
|
|
|
|
|
|
*Destination = '\0';
|
|
|
|
|
|
|
|
return Destination;
|
|
|
|
}
|
|
|
|
|
2008-04-17 10:28:51 +02:00
|
|
|
/**
|
2007-12-24 03:20:21 +01:00
|
|
|
Convert the decimal dotted IPv4 address into the binary IPv4 address.
|
|
|
|
|
2008-12-10 04:58:26 +01:00
|
|
|
@param[in] Str The UNICODE string.
|
|
|
|
@param[out] Ip The storage to return the ASCII string.
|
2007-12-24 03:20:21 +01:00
|
|
|
|
2008-04-17 10:28:51 +02:00
|
|
|
@retval EFI_SUCCESS The binary IP address is returned in Ip.
|
|
|
|
@retval EFI_INVALID_PARAMETER The IP string is malformatted.
|
|
|
|
**/
|
|
|
|
EFI_STATUS
|
|
|
|
IScsiAsciiStrToIp (
|
|
|
|
IN CHAR8 *Str,
|
|
|
|
OUT EFI_IPv4_ADDRESS *Ip
|
|
|
|
)
|
2007-12-24 03:20:21 +01:00
|
|
|
{
|
|
|
|
UINTN Index;
|
|
|
|
UINTN Number;
|
|
|
|
|
|
|
|
Index = 0;
|
|
|
|
|
2008-12-14 13:25:48 +01:00
|
|
|
while (*Str != 0) {
|
2007-12-24 03:20:21 +01:00
|
|
|
|
|
|
|
if (Index > 3) {
|
|
|
|
return EFI_INVALID_PARAMETER;
|
|
|
|
}
|
|
|
|
|
|
|
|
Number = 0;
|
|
|
|
while (NET_IS_DIGIT (*Str)) {
|
|
|
|
Number = Number * 10 + (*Str - '0');
|
|
|
|
Str++;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (Number > 0xFF) {
|
|
|
|
return EFI_INVALID_PARAMETER;
|
|
|
|
}
|
|
|
|
|
|
|
|
Ip->Addr[Index] = (UINT8) Number;
|
|
|
|
|
|
|
|
if ((*Str != '\0') && (*Str != '.')) {
|
|
|
|
//
|
|
|
|
// The current character should be either the NULL terminator or
|
|
|
|
// the dot delimiter.
|
|
|
|
//
|
|
|
|
return EFI_INVALID_PARAMETER;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (*Str == '.') {
|
|
|
|
//
|
|
|
|
// Skip the delimiter.
|
|
|
|
//
|
|
|
|
Str++;
|
|
|
|
}
|
|
|
|
|
|
|
|
Index++;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (Index != 4) {
|
|
|
|
return EFI_INVALID_PARAMETER;
|
|
|
|
}
|
|
|
|
|
|
|
|
return EFI_SUCCESS;
|
|
|
|
}
|
|
|
|
|
2008-04-17 10:28:51 +02:00
|
|
|
/**
|
2007-12-24 03:20:21 +01:00
|
|
|
Convert the mac address into a hexadecimal encoded "-" seperated string.
|
|
|
|
|
2009-12-30 14:47:55 +01:00
|
|
|
@param[in] Mac The mac address.
|
|
|
|
@param[in] Len Length in bytes of the mac address.
|
|
|
|
@param[in] VlanId VLAN ID of the network device.
|
|
|
|
@param[out] Str The storage to return the mac string.
|
2008-04-17 10:28:51 +02:00
|
|
|
**/
|
|
|
|
VOID
|
|
|
|
IScsiMacAddrToStr (
|
|
|
|
IN EFI_MAC_ADDRESS *Mac,
|
|
|
|
IN UINT32 Len,
|
2009-12-30 14:47:55 +01:00
|
|
|
IN UINT16 VlanId,
|
2008-04-17 10:28:51 +02:00
|
|
|
OUT CHAR16 *Str
|
|
|
|
)
|
2007-12-24 03:20:21 +01:00
|
|
|
{
|
|
|
|
UINT32 Index;
|
2009-12-30 14:47:55 +01:00
|
|
|
CHAR16 *String;
|
2007-12-24 03:20:21 +01:00
|
|
|
|
|
|
|
for (Index = 0; Index < Len; Index++) {
|
Remove NibbleToHexChar() function from BaseLib
Move IsHexDigit, BufToHexString, HexStringToBuf from BaseLib to MdeModulePkg IfrSupportLib. The reason is:
1) IsHexDigit function provides the logic to check Hex Digit and convert it to Decimal value, which is required by IScsi LUN and HII user input. But this logic is not provided by any functions in MdeLib. So, it can't be deleted. It is moved to IfrSupportLib.
2) BufToHexString function converts a array of buffers to hex string. If the buffer length is less than sizeof (UINT64), it can be directly replaced by UnicodeValueToString(). But HII modules may use BufToHexString to convert the buffers whose length > sizeof (UINT64). For example:
.\MdeModulePkg\Universal\HiiDatabaseDxe\ConfigRouting.c line 201, 1148
.\Universal\SetupBrowserDxe\Setup.c line line 1457, 1503
Like this case, it is not easy to use UnicodeValueToString to replace BufToHexString. So, BufToHexString is still kept. Because such usages are in HII modules, this function is moved to IfrSupportLib.
3) HexStringToBuf is moved to IfrSupportLib. The reason is similar to BufToHexString.
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@6782 6f19259b-4bc3-4df7-8a09-765794883524
2008-12-01 03:32:12 +01:00
|
|
|
Str[3 * Index] = (CHAR16) IScsiHexString[(Mac->Addr[Index] >> 4) & 0x0F];
|
|
|
|
Str[3 * Index + 1] = (CHAR16) IScsiHexString[Mac->Addr[Index] & 0x0F];
|
2007-12-24 03:20:21 +01:00
|
|
|
Str[3 * Index + 2] = L'-';
|
|
|
|
}
|
|
|
|
|
2009-12-30 14:47:55 +01:00
|
|
|
String = &Str[3 * Index - 1] ;
|
|
|
|
if (VlanId != 0) {
|
|
|
|
String += UnicodeSPrint (String, 6 * sizeof (CHAR16), L"\\%04x", (UINTN) VlanId);
|
|
|
|
}
|
|
|
|
|
|
|
|
*String = L'\0';
|
2007-12-24 03:20:21 +01:00
|
|
|
}
|
|
|
|
|
2008-04-17 10:28:51 +02:00
|
|
|
/**
|
|
|
|
Convert the binary encoded buffer into a hexadecimal encoded string.
|
2007-12-24 03:20:21 +01:00
|
|
|
|
2008-12-10 04:58:26 +01:00
|
|
|
@param[in] BinBuffer The buffer containing the binary data.
|
|
|
|
@param[in] BinLength Length of the binary buffer.
|
|
|
|
@param[in, out] HexStr Pointer to the string.
|
|
|
|
@param[in, out] HexLength The length of the string.
|
2007-12-24 03:20:21 +01:00
|
|
|
|
2008-04-17 10:28:51 +02:00
|
|
|
@retval EFI_SUCCESS The binary data is converted to the hexadecimal string
|
|
|
|
and the length of the string is updated.
|
|
|
|
@retval EFI_BUFFER_TOO_SMALL The string is too small.
|
2008-12-10 04:58:26 +01:00
|
|
|
@retval EFI_INVALID_PARAMETER The IP string is malformatted.
|
2008-04-17 10:28:51 +02:00
|
|
|
**/
|
|
|
|
EFI_STATUS
|
|
|
|
IScsiBinToHex (
|
|
|
|
IN UINT8 *BinBuffer,
|
|
|
|
IN UINT32 BinLength,
|
|
|
|
IN OUT CHAR8 *HexStr,
|
|
|
|
IN OUT UINT32 *HexLength
|
|
|
|
)
|
2007-12-24 03:20:21 +01:00
|
|
|
{
|
|
|
|
UINTN Index;
|
|
|
|
|
|
|
|
if ((HexStr == NULL) || (BinBuffer == NULL) || (BinLength == 0)) {
|
|
|
|
return EFI_INVALID_PARAMETER;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (((*HexLength) - 3) < BinLength * 2) {
|
|
|
|
*HexLength = BinLength * 2 + 3;
|
|
|
|
return EFI_BUFFER_TOO_SMALL;
|
|
|
|
}
|
|
|
|
|
|
|
|
*HexLength = BinLength * 2 + 3;
|
|
|
|
//
|
|
|
|
// Prefix for Hex String
|
|
|
|
//
|
|
|
|
HexStr[0] = '0';
|
|
|
|
HexStr[1] = 'x';
|
|
|
|
|
|
|
|
for (Index = 0; Index < BinLength; Index++) {
|
|
|
|
HexStr[Index * 2 + 2] = IScsiHexString[BinBuffer[Index] >> 4];
|
Remove NibbleToHexChar() function from BaseLib
Move IsHexDigit, BufToHexString, HexStringToBuf from BaseLib to MdeModulePkg IfrSupportLib. The reason is:
1) IsHexDigit function provides the logic to check Hex Digit and convert it to Decimal value, which is required by IScsi LUN and HII user input. But this logic is not provided by any functions in MdeLib. So, it can't be deleted. It is moved to IfrSupportLib.
2) BufToHexString function converts a array of buffers to hex string. If the buffer length is less than sizeof (UINT64), it can be directly replaced by UnicodeValueToString(). But HII modules may use BufToHexString to convert the buffers whose length > sizeof (UINT64). For example:
.\MdeModulePkg\Universal\HiiDatabaseDxe\ConfigRouting.c line 201, 1148
.\Universal\SetupBrowserDxe\Setup.c line line 1457, 1503
Like this case, it is not easy to use UnicodeValueToString to replace BufToHexString. So, BufToHexString is still kept. Because such usages are in HII modules, this function is moved to IfrSupportLib.
3) HexStringToBuf is moved to IfrSupportLib. The reason is similar to BufToHexString.
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@6782 6f19259b-4bc3-4df7-8a09-765794883524
2008-12-01 03:32:12 +01:00
|
|
|
HexStr[Index * 2 + 3] = IScsiHexString[BinBuffer[Index] & 0x0F];
|
2007-12-24 03:20:21 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
HexStr[Index * 2 + 2] = '\0';
|
|
|
|
|
|
|
|
return EFI_SUCCESS;
|
|
|
|
}
|
|
|
|
|
2008-04-17 10:28:51 +02:00
|
|
|
/**
|
2007-12-24 03:20:21 +01:00
|
|
|
Convert the hexadecimal string into a binary encoded buffer.
|
|
|
|
|
2008-12-10 04:58:26 +01:00
|
|
|
@param[in, out] BinBuffer The binary buffer.
|
|
|
|
@param[in, out] BinLength Length of the binary buffer.
|
|
|
|
@param[in] HexStr The hexadecimal string.
|
2007-12-24 03:20:21 +01:00
|
|
|
|
2008-04-17 10:28:51 +02:00
|
|
|
@retval EFI_SUCCESS The hexadecimal string is converted into a binary
|
|
|
|
encoded buffer.
|
2008-12-12 08:03:44 +01:00
|
|
|
@retval EFI_BUFFER_TOO_SMALL The binary buffer is too small to hold the converted data.
|
2008-04-17 10:28:51 +02:00
|
|
|
**/
|
|
|
|
EFI_STATUS
|
|
|
|
IScsiHexToBin (
|
|
|
|
IN OUT UINT8 *BinBuffer,
|
|
|
|
IN OUT UINT32 *BinLength,
|
|
|
|
IN CHAR8 *HexStr
|
|
|
|
)
|
2007-12-24 03:20:21 +01:00
|
|
|
{
|
|
|
|
UINTN Index;
|
2009-04-08 02:56:51 +02:00
|
|
|
UINTN Length;
|
2007-12-24 03:20:21 +01:00
|
|
|
UINT8 Digit;
|
2009-04-08 02:56:51 +02:00
|
|
|
CHAR8 TemStr[2];
|
|
|
|
|
|
|
|
ZeroMem (TemStr, sizeof (TemStr));
|
2008-03-11 20:33:19 +01:00
|
|
|
|
2007-12-24 03:20:21 +01:00
|
|
|
//
|
|
|
|
// Find out how many hex characters the string has.
|
|
|
|
//
|
2009-04-08 02:56:51 +02:00
|
|
|
if ((HexStr[0] == '0') && ((HexStr[1] == 'x') || (HexStr[1] == 'X'))) {
|
|
|
|
HexStr += 2;
|
2007-12-24 03:20:21 +01:00
|
|
|
}
|
2009-04-08 02:56:51 +02:00
|
|
|
|
|
|
|
Length = AsciiStrLen (HexStr);
|
2007-12-24 03:20:21 +01:00
|
|
|
|
2009-04-08 02:56:51 +02:00
|
|
|
for (Index = 0; Index < Length; Index ++) {
|
|
|
|
TemStr[0] = HexStr[Index];
|
|
|
|
Digit = (UINT8) AsciiStrHexToUint64 (TemStr);
|
|
|
|
if (Digit == 0 && TemStr[0] != '0') {
|
|
|
|
//
|
|
|
|
// Invalid Lun Char
|
|
|
|
//
|
|
|
|
break;
|
|
|
|
}
|
2007-12-24 03:20:21 +01:00
|
|
|
if ((Index & 1) == 0) {
|
2009-04-08 02:56:51 +02:00
|
|
|
BinBuffer [Index/2] = Digit;
|
2007-12-24 03:20:21 +01:00
|
|
|
} else {
|
2009-04-08 02:56:51 +02:00
|
|
|
BinBuffer [Index/2] = (UINT8) ((BinBuffer [Index/2] << 4) + Digit);
|
2007-12-24 03:20:21 +01:00
|
|
|
}
|
|
|
|
}
|
2009-04-08 02:56:51 +02:00
|
|
|
|
|
|
|
*BinLength = (UINT32) ((Index + 1)/2);
|
2007-12-24 03:20:21 +01:00
|
|
|
|
|
|
|
return EFI_SUCCESS;
|
|
|
|
}
|
|
|
|
|
2008-04-17 10:28:51 +02:00
|
|
|
/**
|
2007-12-24 03:20:21 +01:00
|
|
|
Generate random numbers.
|
|
|
|
|
2008-12-10 04:58:26 +01:00
|
|
|
@param[in, out] Rand The buffer to contain random numbers.
|
|
|
|
@param[in] RandLength The length of the Rand buffer.
|
2008-04-17 10:28:51 +02:00
|
|
|
**/
|
|
|
|
VOID
|
|
|
|
IScsiGenRandom (
|
|
|
|
IN OUT UINT8 *Rand,
|
|
|
|
IN UINTN RandLength
|
|
|
|
)
|
2007-12-24 03:20:21 +01:00
|
|
|
{
|
|
|
|
UINT32 Random;
|
|
|
|
|
|
|
|
while (RandLength > 0) {
|
|
|
|
Random = NET_RANDOM (NetRandomInitSeed ());
|
|
|
|
*Rand++ = (UINT8) (Random);
|
|
|
|
RandLength--;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-04-17 10:28:51 +02:00
|
|
|
/**
|
2007-12-24 03:20:21 +01:00
|
|
|
Create the iSCSI driver data..
|
|
|
|
|
2008-12-10 04:58:26 +01:00
|
|
|
@param[in] Image The handle of the driver image.
|
|
|
|
@param[in] Controller The handle of the controller.
|
2007-12-24 03:20:21 +01:00
|
|
|
|
2008-12-10 04:58:26 +01:00
|
|
|
@return The iSCSI driver data created.
|
2008-12-12 08:03:44 +01:00
|
|
|
@retval NULL Other errors as indicated.
|
2008-04-17 10:28:51 +02:00
|
|
|
**/
|
|
|
|
ISCSI_DRIVER_DATA *
|
|
|
|
IScsiCreateDriverData (
|
|
|
|
IN EFI_HANDLE Image,
|
|
|
|
IN EFI_HANDLE Controller
|
|
|
|
)
|
2007-12-24 03:20:21 +01:00
|
|
|
{
|
|
|
|
ISCSI_DRIVER_DATA *Private;
|
|
|
|
EFI_STATUS Status;
|
|
|
|
|
2008-02-14 10:40:22 +01:00
|
|
|
Private = AllocateZeroPool (sizeof (ISCSI_DRIVER_DATA));
|
2007-12-24 03:20:21 +01:00
|
|
|
if (Private == NULL) {
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
Private->Signature = ISCSI_DRIVER_DATA_SIGNATURE;
|
|
|
|
Private->Image = Image;
|
|
|
|
Private->Controller = Controller;
|
|
|
|
|
|
|
|
//
|
|
|
|
// Create an event to be signal when the BS to RT transition is triggerd so
|
|
|
|
// as to abort the iSCSI session.
|
|
|
|
//
|
2009-02-03 12:09:53 +01:00
|
|
|
Status = gBS->CreateEventEx (
|
|
|
|
EVT_NOTIFY_SIGNAL,
|
2007-12-24 03:20:21 +01:00
|
|
|
TPL_CALLBACK,
|
|
|
|
IScsiOnExitBootService,
|
|
|
|
Private,
|
2009-02-03 12:09:53 +01:00
|
|
|
&gEfiEventExitBootServicesGuid,
|
2007-12-24 03:20:21 +01:00
|
|
|
&Private->ExitBootServiceEvent
|
|
|
|
);
|
|
|
|
if (EFI_ERROR (Status)) {
|
2009-11-13 07:13:59 +01:00
|
|
|
FreePool (Private);
|
2007-12-24 03:20:21 +01:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2008-02-14 10:40:22 +01:00
|
|
|
CopyMem(&Private->IScsiExtScsiPassThru, &gIScsiExtScsiPassThruProtocolTemplate, sizeof(EFI_EXT_SCSI_PASS_THRU_PROTOCOL));
|
2007-12-24 03:20:21 +01:00
|
|
|
|
|
|
|
//
|
|
|
|
// 0 is designated to the TargetId, so use another value for the AdapterId.
|
|
|
|
//
|
|
|
|
Private->ExtScsiPassThruMode.AdapterId = 2;
|
|
|
|
Private->ExtScsiPassThruMode.Attributes = EFI_EXT_SCSI_PASS_THRU_ATTRIBUTES_PHYSICAL | EFI_EXT_SCSI_PASS_THRU_ATTRIBUTES_LOGICAL;
|
|
|
|
Private->ExtScsiPassThruMode.IoAlign = 4;
|
|
|
|
Private->IScsiExtScsiPassThru.Mode = &Private->ExtScsiPassThruMode;
|
|
|
|
|
|
|
|
//
|
|
|
|
// Install the Ext SCSI PASS THRU protocol.
|
|
|
|
//
|
|
|
|
Status = gBS->InstallProtocolInterface (
|
|
|
|
&Private->ExtScsiPassThruHandle,
|
|
|
|
&gEfiExtScsiPassThruProtocolGuid,
|
|
|
|
EFI_NATIVE_INTERFACE,
|
|
|
|
&Private->IScsiExtScsiPassThru
|
|
|
|
);
|
|
|
|
if (EFI_ERROR (Status)) {
|
|
|
|
gBS->CloseEvent (Private->ExitBootServiceEvent);
|
2009-11-13 07:13:59 +01:00
|
|
|
FreePool (Private);
|
2007-12-24 03:20:21 +01:00
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
IScsiSessionInit (&Private->Session, FALSE);
|
|
|
|
|
|
|
|
return Private;
|
|
|
|
}
|
|
|
|
|
2008-04-17 10:28:51 +02:00
|
|
|
/**
|
2007-12-24 03:20:21 +01:00
|
|
|
Clean the iSCSI driver data.
|
|
|
|
|
2008-12-10 04:58:26 +01:00
|
|
|
@param[in] Private The iSCSI driver data.
|
2008-04-17 10:28:51 +02:00
|
|
|
**/
|
|
|
|
VOID
|
|
|
|
IScsiCleanDriverData (
|
|
|
|
IN ISCSI_DRIVER_DATA *Private
|
|
|
|
)
|
2007-12-24 03:20:21 +01:00
|
|
|
{
|
|
|
|
if (Private->DevicePath != NULL) {
|
|
|
|
gBS->UninstallProtocolInterface (
|
|
|
|
Private->ExtScsiPassThruHandle,
|
|
|
|
&gEfiDevicePathProtocolGuid,
|
|
|
|
Private->DevicePath
|
|
|
|
);
|
|
|
|
|
2009-11-13 07:13:59 +01:00
|
|
|
FreePool (Private->DevicePath);
|
2007-12-24 03:20:21 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
if (Private->ExtScsiPassThruHandle != NULL) {
|
|
|
|
gBS->UninstallProtocolInterface (
|
|
|
|
Private->ExtScsiPassThruHandle,
|
|
|
|
&gEfiExtScsiPassThruProtocolGuid,
|
|
|
|
&Private->IScsiExtScsiPassThru
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
gBS->CloseEvent (Private->ExitBootServiceEvent);
|
|
|
|
|
2009-11-13 07:13:59 +01:00
|
|
|
FreePool (Private);
|
2007-12-24 03:20:21 +01:00
|
|
|
}
|
|
|
|
|
2008-04-17 10:28:51 +02:00
|
|
|
/**
|
2007-12-24 03:20:21 +01:00
|
|
|
Get the various configuration data of this iSCSI instance.
|
|
|
|
|
2008-12-10 04:58:26 +01:00
|
|
|
@param[in] Private The iSCSI driver data.
|
2007-12-24 03:20:21 +01:00
|
|
|
|
2008-04-17 10:28:51 +02:00
|
|
|
@retval EFI_SUCCESS The configuration of this instance is got.
|
2008-12-10 04:58:26 +01:00
|
|
|
@retval EFI_ABORTED The operation was aborted.
|
2008-12-12 08:03:44 +01:00
|
|
|
@retval Others Other errors as indicated.
|
2008-04-17 10:28:51 +02:00
|
|
|
**/
|
|
|
|
EFI_STATUS
|
|
|
|
IScsiGetConfigData (
|
|
|
|
IN ISCSI_DRIVER_DATA *Private
|
|
|
|
)
|
2007-12-24 03:20:21 +01:00
|
|
|
{
|
|
|
|
EFI_STATUS Status;
|
|
|
|
ISCSI_SESSION *Session;
|
|
|
|
UINTN BufferSize;
|
2009-12-30 14:47:55 +01:00
|
|
|
EFI_MAC_ADDRESS MacAddress;
|
|
|
|
UINTN HwAddressSize;
|
|
|
|
UINT16 VlanId;
|
|
|
|
CHAR16 MacString[70];
|
2007-12-24 03:20:21 +01:00
|
|
|
|
|
|
|
//
|
|
|
|
// get the iSCSI Initiator Name
|
|
|
|
//
|
|
|
|
Session = &Private->Session;
|
|
|
|
Session->InitiatorNameLength = ISCSI_NAME_MAX_SIZE;
|
|
|
|
Status = gIScsiInitiatorName.Get (
|
|
|
|
&gIScsiInitiatorName,
|
|
|
|
&Session->InitiatorNameLength,
|
|
|
|
Session->InitiatorName
|
|
|
|
);
|
|
|
|
if (EFI_ERROR (Status)) {
|
|
|
|
return Status;
|
|
|
|
}
|
|
|
|
|
|
|
|
//
|
|
|
|
// Get the mac string, it's the name of various variable
|
|
|
|
//
|
2009-12-30 14:47:55 +01:00
|
|
|
Status = NetLibGetMacAddress (Private->Controller, &MacAddress, &HwAddressSize);
|
|
|
|
ASSERT (Status == EFI_SUCCESS);
|
|
|
|
VlanId = NetLibGetVlanId (Private->Controller);
|
|
|
|
IScsiMacAddrToStr (&MacAddress, (UINT32) HwAddressSize, VlanId, MacString);
|
2007-12-24 03:20:21 +01:00
|
|
|
|
|
|
|
//
|
|
|
|
// Get the normal configuration.
|
|
|
|
//
|
|
|
|
BufferSize = sizeof (Session->ConfigData.NvData);
|
|
|
|
Status = gRT->GetVariable (
|
|
|
|
MacString,
|
|
|
|
&gEfiIScsiInitiatorNameProtocolGuid,
|
|
|
|
NULL,
|
|
|
|
&BufferSize,
|
|
|
|
&Session->ConfigData.NvData
|
|
|
|
);
|
|
|
|
if (EFI_ERROR (Status)) {
|
|
|
|
return Status;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!Session->ConfigData.NvData.Enabled) {
|
|
|
|
return EFI_ABORTED;
|
|
|
|
}
|
|
|
|
//
|
|
|
|
// Get the CHAP Auth information.
|
|
|
|
//
|
|
|
|
BufferSize = sizeof (Session->AuthData.AuthConfig);
|
|
|
|
Status = gRT->GetVariable (
|
|
|
|
MacString,
|
2011-09-18 14:21:01 +02:00
|
|
|
&gIScsiCHAPAuthInfoGuid,
|
2007-12-24 03:20:21 +01:00
|
|
|
NULL,
|
|
|
|
&BufferSize,
|
|
|
|
&Session->AuthData.AuthConfig
|
|
|
|
);
|
|
|
|
|
|
|
|
if (!EFI_ERROR (Status) && Session->ConfigData.NvData.InitiatorInfoFromDhcp) {
|
|
|
|
//
|
|
|
|
// Start dhcp.
|
|
|
|
//
|
|
|
|
Status = IScsiDoDhcp (Private->Image, Private->Controller, &Session->ConfigData);
|
|
|
|
}
|
|
|
|
|
|
|
|
return Status;
|
|
|
|
}
|
|
|
|
|
2008-04-17 10:28:51 +02:00
|
|
|
/**
|
2007-12-24 03:20:21 +01:00
|
|
|
Get the device path of the iSCSI tcp connection and update it.
|
|
|
|
|
2008-12-10 04:58:26 +01:00
|
|
|
@param[in] Private The iSCSI driver data.
|
2007-12-24 03:20:21 +01:00
|
|
|
|
2008-12-10 04:58:26 +01:00
|
|
|
@return The updated device path.
|
2008-12-12 08:03:44 +01:00
|
|
|
@retval NULL Other errors as indicated.
|
2008-04-17 10:28:51 +02:00
|
|
|
**/
|
|
|
|
EFI_DEVICE_PATH_PROTOCOL *
|
|
|
|
IScsiGetTcpConnDevicePath (
|
|
|
|
IN ISCSI_DRIVER_DATA *Private
|
|
|
|
)
|
2007-12-24 03:20:21 +01:00
|
|
|
{
|
|
|
|
ISCSI_SESSION *Session;
|
|
|
|
ISCSI_CONNECTION *Conn;
|
|
|
|
TCP4_IO *Tcp4Io;
|
|
|
|
EFI_DEVICE_PATH_PROTOCOL *DevicePath;
|
|
|
|
EFI_STATUS Status;
|
|
|
|
EFI_DEV_PATH *DPathNode;
|
|
|
|
|
|
|
|
Session = &Private->Session;
|
|
|
|
if (Session->State != SESSION_STATE_LOGGED_IN) {
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
Conn = NET_LIST_USER_STRUCT_S (
|
|
|
|
Session->Conns.ForwardLink,
|
|
|
|
ISCSI_CONNECTION,
|
|
|
|
Link,
|
|
|
|
ISCSI_CONNECTION_SIGNATURE
|
|
|
|
);
|
|
|
|
Tcp4Io = &Conn->Tcp4Io;
|
|
|
|
|
|
|
|
Status = gBS->HandleProtocol (
|
|
|
|
Tcp4Io->Handle,
|
|
|
|
&gEfiDevicePathProtocolGuid,
|
2008-01-22 08:14:48 +01:00
|
|
|
(VOID **)&DevicePath
|
2007-12-24 03:20:21 +01:00
|
|
|
);
|
|
|
|
if (EFI_ERROR (Status)) {
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
//
|
|
|
|
// Duplicate it.
|
|
|
|
//
|
|
|
|
DevicePath = DuplicateDevicePath (DevicePath);
|
2009-06-29 11:19:25 +02:00
|
|
|
if (DevicePath == NULL) {
|
|
|
|
return NULL;
|
|
|
|
}
|
2007-12-24 03:20:21 +01:00
|
|
|
|
|
|
|
DPathNode = (EFI_DEV_PATH *) DevicePath;
|
|
|
|
|
|
|
|
while (!IsDevicePathEnd (&DPathNode->DevPath)) {
|
|
|
|
if ((DevicePathType (&DPathNode->DevPath) == MESSAGING_DEVICE_PATH) &&
|
|
|
|
(DevicePathSubType (&DPathNode->DevPath) == MSG_IPv4_DP)
|
|
|
|
) {
|
|
|
|
|
|
|
|
DPathNode->Ipv4.LocalPort = 0;
|
2011-10-26 11:29:46 +02:00
|
|
|
DPathNode->Ipv4.StaticIpAddress =
|
|
|
|
(BOOLEAN) (!Session->ConfigData.NvData.InitiatorInfoFromDhcp);
|
|
|
|
|
|
|
|
IP4_COPY_ADDRESS (
|
|
|
|
&DPathNode->Ipv4.GatewayIpAddress,
|
|
|
|
&Session->ConfigData.NvData.Gateway
|
|
|
|
);
|
|
|
|
|
|
|
|
IP4_COPY_ADDRESS (
|
|
|
|
&DPathNode->Ipv4.SubnetMask,
|
|
|
|
&Session->ConfigData.NvData.SubnetMask
|
|
|
|
);
|
|
|
|
|
2007-12-24 03:20:21 +01:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
DPathNode = (EFI_DEV_PATH *) NextDevicePathNode (&DPathNode->DevPath);
|
|
|
|
}
|
|
|
|
|
|
|
|
return DevicePath;
|
|
|
|
}
|
|
|
|
|
2008-04-17 10:28:51 +02:00
|
|
|
/**
|
|
|
|
Abort the session when the transition from BS to RT is initiated.
|
|
|
|
|
2008-12-10 04:58:26 +01:00
|
|
|
@param[in] Event The event signaled.
|
|
|
|
@param[in] Context The iSCSI driver data.
|
2008-04-17 10:28:51 +02:00
|
|
|
**/
|
2007-12-24 03:20:21 +01:00
|
|
|
VOID
|
|
|
|
EFIAPI
|
|
|
|
IScsiOnExitBootService (
|
|
|
|
IN EFI_EVENT Event,
|
|
|
|
IN VOID *Context
|
|
|
|
)
|
|
|
|
{
|
|
|
|
ISCSI_DRIVER_DATA *Private;
|
|
|
|
|
|
|
|
Private = (ISCSI_DRIVER_DATA *) Context;
|
|
|
|
gBS->CloseEvent (Private->ExitBootServiceEvent);
|
|
|
|
|
|
|
|
IScsiSessionAbort (&Private->Session);
|
|
|
|
}
|