]> git.ipfire.org Git - thirdparty/hostap.git/commit
P2P: Fix fast IP address allocation for invitation of a persistent group
authormtk30479 <tzu-meng.wang@mediatek.com>
Wed, 24 Jan 2024 03:51:43 +0000 (11:51 +0800)
committerJouni Malinen <j@w1.fi>
Tue, 7 May 2024 21:32:46 +0000 (00:32 +0300)
commited56dfc339374add462ef1679a9ba2cd08fa6d27
tree4b39b0862616e488b12500df133c1aa80375e0a4
parent0ae087994cafbdc31c0d076540b171f7326ae141
P2P: Fix fast IP address allocation for invitation of a persistent group

Allocate static IPv4 address in EAPOL frames during 4-way handshake
instead of DHCP when using P2P invitation. wpa_s->current_bss needs to
be set for the P2P specific IP address assignment mechanism to be used
in wpa_supplicant_rsn_supp_set_config(). This worked for the initial P2P
connection, but not for some cases reinvoking a persistent group.

Since there is only one AP (P2P GO) in the P2P client case, the
conditions added in commit 4d3be9cdd143 ("Postpone updating of
wpa_s->current_bss till association event") are not needed and the
easiest approach for this is to allow current_bss to be set for
p2p_in_invitation cases. If the GO P2P Interface Address (BSSID) could
be determined for all the related cases, this could be addressed a bit
more cleanly by setting the go_bssid argument for
wpas_start_p2p_client(), but that can be left as a possible future step.

Signed-off-by: tzu-meng wang <tzu-meng.wang@mediatek.com>
wpa_supplicant/wpa_supplicant.c