mirror of
https://git.kernel.org/pub/scm/network/wireless/iwd.git
synced 2024-12-22 13:02:44 +01:00
eapol: zero entire buffer when creating frame
Since l_malloc is used the frame contents are not zero'ed automatically
which could result in random bytes being present in the frame which were
expected to be zero. This poses a problem when calculating the MIC as the
crypto operations are done on the entire frame with the expectation of
the MIC being zero.
Fixes: 83212f9b23
("eapol: change eapol_create_common to support FILS")
This commit is contained in:
parent
d78950e039
commit
6f7743426b
@ -706,7 +706,7 @@ static struct eapol_key *eapol_create_common(
|
||||
struct eapol_key *out_frame = l_malloc(to_alloc + extra_len +
|
||||
extra_key_len);
|
||||
|
||||
memset(out_frame, 0, to_alloc + extra_len);
|
||||
memset(out_frame, 0, to_alloc + extra_len + extra_key_len);
|
||||
|
||||
out_frame->header.protocol_version = protocol;
|
||||
out_frame->header.packet_type = 0x3;
|
||||
|
Loading…
Reference in New Issue
Block a user