mirror of
https://github.com/vanhoefm/fragattacks.git
synced 2024-11-25 08:48:31 -05:00
P2P: Update peer listen channel from Probe Request frames
In case a Probe Request frame is received from a known peer P2P Device, update the listen channel based on the P2P attributes in the Probe Request frame. This can be useful for cases where the peer P2P Device changed its listen channel, and the local P2P device is about to start a GO Negotiation or invitation signaling with the peer. Signed-off-by: Ilan Peer <ilan.peer@intel.com>
This commit is contained in:
parent
a805731086
commit
12c1fdf19a
@ -2035,8 +2035,23 @@ static void p2p_add_dev_from_probe_req(struct p2p_data *p2p, const u8 *addr,
|
|||||||
|
|
||||||
dev = p2p_get_device(p2p, addr);
|
dev = p2p_get_device(p2p, addr);
|
||||||
if (dev) {
|
if (dev) {
|
||||||
if (dev->country[0] == 0 && msg.listen_channel)
|
if (msg.listen_channel) {
|
||||||
os_memcpy(dev->country, msg.listen_channel, 3);
|
int freq;
|
||||||
|
|
||||||
|
if (dev->country[0] == 0)
|
||||||
|
os_memcpy(dev->country, msg.listen_channel, 3);
|
||||||
|
|
||||||
|
freq = p2p_channel_to_freq(msg.listen_channel[3],
|
||||||
|
msg.listen_channel[4]);
|
||||||
|
|
||||||
|
if (freq > 0 && dev->listen_freq != freq) {
|
||||||
|
p2p_dbg(p2p,
|
||||||
|
"Updated peer " MACSTR " Listen channel (Probe Request): %d -> %d MHz",
|
||||||
|
MAC2STR(addr), dev->listen_freq, freq);
|
||||||
|
dev->listen_freq = freq;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
os_get_reltime(&dev->last_seen);
|
os_get_reltime(&dev->last_seen);
|
||||||
p2p_parse_free(&msg);
|
p2p_parse_free(&msg);
|
||||||
return; /* already known */
|
return; /* already known */
|
||||||
|
Loading…
Reference in New Issue
Block a user