GAS: Limit maximum comeback delay value
Limit the GAS comeback delay to 60000 TUs, i.e., about 60 seconds. This is mostly to silence static analyzers that complain about unbounded value from external sources even though this is clearly bounded by being a 16-bit value. Signed-off-by: Jouni Malinen <j@w1.fi>
This commit is contained in:
parent
fe1dc9ba77
commit
6e8518749f
2 changed files with 8 additions and 0 deletions
|
@ -29,6 +29,8 @@
|
|||
#define GAS_QUERY_WAIT_TIME_INITIAL 1000
|
||||
#define GAS_QUERY_WAIT_TIME_COMEBACK 150
|
||||
|
||||
#define GAS_QUERY_MAX_COMEBACK_DELAY 60000
|
||||
|
||||
/**
|
||||
* struct gas_query_pending - Pending GAS query
|
||||
*/
|
||||
|
@ -545,6 +547,8 @@ int gas_query_ap_rx(struct gas_query_ap *gas, const u8 *sa, u8 categ,
|
|||
if (pos + 2 > data + len)
|
||||
return 0;
|
||||
comeback_delay = WPA_GET_LE16(pos);
|
||||
if (comeback_delay > GAS_QUERY_MAX_COMEBACK_DELAY)
|
||||
comeback_delay = GAS_QUERY_MAX_COMEBACK_DELAY;
|
||||
pos += 2;
|
||||
|
||||
/* Advertisement Protocol element */
|
||||
|
|
|
@ -30,6 +30,8 @@
|
|||
#define GAS_QUERY_WAIT_TIME_INITIAL 1000
|
||||
#define GAS_QUERY_WAIT_TIME_COMEBACK 150
|
||||
|
||||
#define GAS_QUERY_MAX_COMEBACK_DELAY 60000
|
||||
|
||||
/**
|
||||
* struct gas_query_pending - Pending GAS query
|
||||
*/
|
||||
|
@ -589,6 +591,8 @@ int gas_query_rx(struct gas_query *gas, const u8 *da, const u8 *sa,
|
|||
if (pos + 2 > data + len)
|
||||
return 0;
|
||||
comeback_delay = WPA_GET_LE16(pos);
|
||||
if (comeback_delay > GAS_QUERY_MAX_COMEBACK_DELAY)
|
||||
comeback_delay = GAS_QUERY_MAX_COMEBACK_DELAY;
|
||||
pos += 2;
|
||||
|
||||
/* Advertisement Protocol element */
|
||||
|
|
Loading…
Reference in a new issue