mirror of https://github.com/acidanthera/audk.git
NetworkPkg/IScsiDxe: simplify "ISCSI_CHAP_AUTH_DATA.InChallenge" size
The ISCSI_CHAP_AUTH_MAX_LEN macro is defined with value 1024. The usage of this macro currently involves a semantic (not functional) bug, which we're going to fix in a subsequent patch, eliminating ISCSI_CHAP_AUTH_MAX_LEN altogether. For now, remove the macro's usage from all "ISCSI_CHAP_AUTH_DATA.InChallenge" contexts. This is doable without duplicating open-coded constants. No changes in functionality. Cc: Jiaxin Wu <jiaxin.wu@intel.com> Cc: Maciej Rabeda <maciej.rabeda@linux.intel.com> Cc: Philippe Mathieu-Daudé <philmd@redhat.com> Cc: Siyuan Fu <siyuan.fu@intel.com> Ref: https://bugzilla.tianocore.org/show_bug.cgi?id=3356 Signed-off-by: Laszlo Ersek <lersek@redhat.com> Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com> Reviewed-by: Maciej Rabeda <maciej.rabeda@linux.intel.com> Message-Id: <20210608121259.32451-3-lersek@redhat.com>
This commit is contained in:
parent
83761337ec
commit
29cab43bb7
|
@ -289,7 +289,7 @@ IScsiCHAPOnRspReceived (
|
||||||
}
|
}
|
||||||
|
|
||||||
AuthData->InIdentifier = (UINT32) Result;
|
AuthData->InIdentifier = (UINT32) Result;
|
||||||
AuthData->InChallengeLength = ISCSI_CHAP_AUTH_MAX_LEN;
|
AuthData->InChallengeLength = (UINT32) sizeof (AuthData->InChallenge);
|
||||||
IScsiHexToBin (
|
IScsiHexToBin (
|
||||||
(UINT8 *) AuthData->InChallenge,
|
(UINT8 *) AuthData->InChallenge,
|
||||||
&AuthData->InChallengeLength,
|
&AuthData->InChallengeLength,
|
||||||
|
|
|
@ -49,7 +49,7 @@ typedef struct _ISCSI_CHAP_AUTH_CONFIG_NVDATA {
|
||||||
typedef struct _ISCSI_CHAP_AUTH_DATA {
|
typedef struct _ISCSI_CHAP_AUTH_DATA {
|
||||||
ISCSI_CHAP_AUTH_CONFIG_NVDATA *AuthConfig;
|
ISCSI_CHAP_AUTH_CONFIG_NVDATA *AuthConfig;
|
||||||
UINT32 InIdentifier;
|
UINT32 InIdentifier;
|
||||||
UINT8 InChallenge[ISCSI_CHAP_AUTH_MAX_LEN];
|
UINT8 InChallenge[1024];
|
||||||
UINT32 InChallengeLength;
|
UINT32 InChallengeLength;
|
||||||
//
|
//
|
||||||
// Calculated CHAP Response (CHAP_R) value.
|
// Calculated CHAP Response (CHAP_R) value.
|
||||||
|
|
Loading…
Reference in New Issue