mirror of
https://git.kernel.org/pub/scm/network/wireless/iwd.git
synced 2024-11-18 01:59:31 +01:00
mpdu: Validate association response mpdu subtype
We do not currently validate the IEs that are following until the end of the frame.
This commit is contained in:
parent
5c9f1db01f
commit
8353ac445d
@ -118,6 +118,9 @@ static bool validate_mgmt_mpdu(const struct mpdu *mpdu, int len, int *offset)
|
||||
case MPDU_MANAGEMENT_SUBTYPE_ASSOCIATION_REQUEST:
|
||||
return validate_on_ies_start_position_mgmt_mpdu(mpdu, len,
|
||||
offset, 9);
|
||||
case MPDU_MANAGEMENT_SUBTYPE_ASSOCIATION_RESPONSE:
|
||||
return validate_on_ies_start_position_mgmt_mpdu(mpdu, len,
|
||||
offset, 9);
|
||||
case MPDU_MANAGEMENT_SUBTYPE_ATIM:
|
||||
return validate_atim_mgmt_mpdu(mpdu, len, offset);
|
||||
case MPDU_MANAGEMENT_SUBTYPE_DISASSOCIATION:
|
||||
|
20
src/mpdu.h
20
src/mpdu.h
@ -32,11 +32,12 @@ enum mpdu_type {
|
||||
|
||||
/* 802.11, Table 8-1 "Valid type and subtype combinations" */
|
||||
enum mpdu_management_subtype {
|
||||
MPDU_MANAGEMENT_SUBTYPE_ASSOCIATION_REQUEST = 0x0,
|
||||
MPDU_MANAGEMENT_SUBTYPE_ATIM = 0x9,
|
||||
MPDU_MANAGEMENT_SUBTYPE_DISASSOCIATION = 0xA,
|
||||
MPDU_MANAGEMENT_SUBTYPE_AUTHENTICATION = 0xB,
|
||||
MPDU_MANAGEMENT_SUBTYPE_DEAUTHENTICATION = 0xC,
|
||||
MPDU_MANAGEMENT_SUBTYPE_ASSOCIATION_REQUEST = 0x0,
|
||||
MPDU_MANAGEMENT_SUBTYPE_ASSOCIATION_RESPONSE = 0x1,
|
||||
MPDU_MANAGEMENT_SUBTYPE_ATIM = 0x9,
|
||||
MPDU_MANAGEMENT_SUBTYPE_DISASSOCIATION = 0xA,
|
||||
MPDU_MANAGEMENT_SUBTYPE_AUTHENTICATION = 0xB,
|
||||
MPDU_MANAGEMENT_SUBTYPE_DEAUTHENTICATION = 0xC,
|
||||
};
|
||||
|
||||
/* 802.11, Section 8.4.1.1 Authentication Algorithm Number field */
|
||||
@ -146,6 +147,14 @@ struct mpdu_association_request {
|
||||
uint8_t ies[0];
|
||||
} __attribute__ ((packed));
|
||||
|
||||
/* 802.11, Section 8.3.3.6 */
|
||||
struct mpdu_association_response {
|
||||
struct mpdu_field_capability capability;
|
||||
__le16 status_code;
|
||||
__le16 aid;
|
||||
uint8_t ies[0];
|
||||
} __attribute__ ((packed));
|
||||
|
||||
/* 802.11, Section 8.3.3.4 */
|
||||
struct mpdu_disassociation {
|
||||
__le16 reason_code;
|
||||
@ -179,6 +188,7 @@ struct mpdu {
|
||||
struct mpdu_mgmt_header mgmt_hdr;
|
||||
union {
|
||||
struct mpdu_association_request assoc_req;
|
||||
struct mpdu_association_response assoc_resp;
|
||||
struct mpdu_disassociation disassoc;
|
||||
struct mpdu_authentication auth;
|
||||
struct mpdu_deauthentication deauth;
|
||||
|
Loading…
Reference in New Issue
Block a user