|
@@ -501,6 +501,8 @@ static int wpas_p2p_group_delete(struct wpa_supplicant *wpa_s,
|
|
|
wpa_s->p2p_in_provisioning = 0;
|
|
|
}
|
|
|
|
|
|
+ wpa_s->p2p_in_invitation = 0;
|
|
|
+
|
|
|
/*
|
|
|
* Make sure wait for the first client does not remain active after the
|
|
|
* group has been removed.
|
|
@@ -3070,7 +3072,7 @@ static void wpas_invitation_received(void *ctx, const u8 *sa, const u8 *bssid,
|
|
|
if (s) {
|
|
|
int go = s->mode == WPAS_MODE_P2P_GO;
|
|
|
wpas_p2p_group_add_persistent(
|
|
|
- wpa_s, s, go, 0, go ? op_freq : 0, 0, 0, NULL,
|
|
|
+ wpa_s, s, go, 0, op_freq, 0, 0, NULL,
|
|
|
go ? P2P_MAX_INITIAL_CONN_WAIT_GO_REINVOKE : 0);
|
|
|
} else if (bssid) {
|
|
|
wpa_s->user_initiated_pd = 0;
|
|
@@ -3177,10 +3179,12 @@ static void wpas_remove_persistent_client(struct wpa_supplicant *wpa_s,
|
|
|
|
|
|
static void wpas_invitation_result(void *ctx, int status, const u8 *bssid,
|
|
|
const struct p2p_channels *channels,
|
|
|
- const u8 *peer, int neg_freq)
|
|
|
+ const u8 *peer, int neg_freq,
|
|
|
+ int peer_oper_freq)
|
|
|
{
|
|
|
struct wpa_supplicant *wpa_s = ctx;
|
|
|
struct wpa_ssid *ssid;
|
|
|
+ int freq;
|
|
|
|
|
|
if (bssid) {
|
|
|
wpa_msg_global(wpa_s, MSG_INFO, P2P_EVENT_INVITATION_RESULT
|
|
@@ -3236,10 +3240,21 @@ static void wpas_invitation_result(void *ctx, int status, const u8 *bssid,
|
|
|
"starting persistent group");
|
|
|
os_sleep(0, 50000);
|
|
|
|
|
|
+ if (neg_freq > 0 && ssid->mode == WPAS_MODE_P2P_GO &&
|
|
|
+ freq_included(channels, neg_freq))
|
|
|
+ freq = neg_freq;
|
|
|
+ else if (peer_oper_freq > 0 && ssid->mode != WPAS_MODE_P2P_GO &&
|
|
|
+ freq_included(channels, peer_oper_freq))
|
|
|
+ freq = peer_oper_freq;
|
|
|
+ else
|
|
|
+ freq = 0;
|
|
|
+
|
|
|
+ wpa_printf(MSG_DEBUG, "P2P: Persistent group invitation success - op_freq=%d MHz SSID=%s",
|
|
|
+ freq, wpa_ssid_txt(ssid->ssid, ssid->ssid_len));
|
|
|
wpas_p2p_group_add_persistent(wpa_s, ssid,
|
|
|
ssid->mode == WPAS_MODE_P2P_GO,
|
|
|
wpa_s->p2p_persistent_go_freq,
|
|
|
- neg_freq,
|
|
|
+ freq,
|
|
|
wpa_s->p2p_go_ht40, wpa_s->p2p_go_vht,
|
|
|
channels,
|
|
|
ssid->mode == WPAS_MODE_P2P_GO ?
|
|
@@ -5150,7 +5165,8 @@ int wpas_p2p_group_add(struct wpa_supplicant *wpa_s, int persistent_group,
|
|
|
|
|
|
|
|
|
static int wpas_start_p2p_client(struct wpa_supplicant *wpa_s,
|
|
|
- struct wpa_ssid *params, int addr_allocated)
|
|
|
+ struct wpa_ssid *params, int addr_allocated,
|
|
|
+ int freq)
|
|
|
{
|
|
|
struct wpa_ssid *ssid;
|
|
|
|
|
@@ -5187,6 +5203,8 @@ static int wpas_start_p2p_client(struct wpa_supplicant *wpa_s,
|
|
|
ssid->passphrase = os_strdup(params->passphrase);
|
|
|
|
|
|
wpa_s->show_group_started = 1;
|
|
|
+ wpa_s->p2p_in_invitation = 1;
|
|
|
+ wpa_s->p2p_invite_go_freq = freq;
|
|
|
|
|
|
wpa_supplicant_select_network(wpa_s, ssid);
|
|
|
|
|
@@ -5221,12 +5239,6 @@ int wpas_p2p_group_add_persistent(struct wpa_supplicant *wpa_s,
|
|
|
|
|
|
wpa_s->p2p_fallback_to_go_neg = 0;
|
|
|
|
|
|
- if (ssid->mode == WPAS_MODE_INFRA)
|
|
|
- return wpas_start_p2p_client(wpa_s, ssid, addr_allocated);
|
|
|
-
|
|
|
- if (ssid->mode != WPAS_MODE_P2P_GO)
|
|
|
- return -1;
|
|
|
-
|
|
|
if (force_freq > 0) {
|
|
|
freq = wpas_p2p_select_go_freq(wpa_s, force_freq);
|
|
|
if (freq < 0)
|
|
@@ -5237,6 +5249,12 @@ int wpas_p2p_group_add_persistent(struct wpa_supplicant *wpa_s,
|
|
|
freq = 0;
|
|
|
}
|
|
|
|
|
|
+ if (ssid->mode == WPAS_MODE_INFRA)
|
|
|
+ return wpas_start_p2p_client(wpa_s, ssid, addr_allocated, freq);
|
|
|
+
|
|
|
+ if (ssid->mode != WPAS_MODE_P2P_GO)
|
|
|
+ return -1;
|
|
|
+
|
|
|
if (wpas_p2p_init_go_params(wpa_s, ¶ms, freq, ht40, vht, channels))
|
|
|
return -1;
|
|
|
|