OSDN Git Service

Reconcile with jb-dev - do not merge
[android-x86/external-wpa_supplicant_8.git] / wpa_supplicant / p2p_supplicant.c
index d8b2e16..5f1329e 100644 (file)
@@ -2,14 +2,8 @@
  * wpa_supplicant - P2P
  * Copyright (c) 2009-2010, Atheros Communications
  *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License version 2 as
- * published by the Free Software Foundation.
- *
- * Alternatively, this software may be distributed under the terms of BSD
- * license.
- *
- * See README and COPYING for more details.
+ * This software may be distributed under the terms of the BSD license.
+ * See README for more details.
  */
 
 #include "includes.h"
@@ -22,6 +16,7 @@
 #include "wps/wps_i.h"
 #include "p2p/p2p.h"
 #include "ap/hostapd.h"
+#include "ap/ap_config.h"
 #include "ap/p2p_hostapd.h"
 #include "eapol_supp/eapol_supp_sm.h"
 #include "rsn_supp/wpa.h"
 #include "ap.h"
 #include "config_ssid.h"
 #include "config.h"
-#include "mlme.h"
 #include "notify.h"
 #include "scan.h"
 #include "bss.h"
+#include "offchannel.h"
 #include "wps_supplicant.h"
 #include "p2p_supplicant.h"
 
  */
 #define P2P_MAX_JOIN_SCAN_ATTEMPTS 10
 
+#ifndef P2P_MAX_CLIENT_IDLE
+/*
+ * How many seconds to try to reconnect to the GO when connection in P2P client
+ * role has been lost.
+ */
+#ifdef ANDROID_P2P
+#define P2P_MAX_CLIENT_IDLE 20
+#else
+#define P2P_MAX_CLIENT_IDLE 10
+#endif /* ANDROID_P2P */
+#endif /* P2P_MAX_CLIENT_IDLE */
 
+#ifdef ANDROID_P2P
+static int wpas_global_scan_in_progress(struct wpa_supplicant *wpa_s);
+#endif
 static void wpas_p2p_long_listen_timeout(void *eloop_ctx, void *timeout_ctx);
 static struct wpa_supplicant *
 wpas_p2p_get_group_iface(struct wpa_supplicant *wpa_s, int addr_allocated,
@@ -53,11 +62,29 @@ static int wpas_p2p_join_start(struct wpa_supplicant *wpa_s);
 static void wpas_p2p_join_scan(void *eloop_ctx, void *timeout_ctx);
 static int wpas_p2p_join(struct wpa_supplicant *wpa_s, const u8 *iface_addr,
                         const u8 *dev_addr, enum p2p_wps_method wps_method);
+static void wpas_p2p_pd_before_join_timeout(void *eloop_ctx,
+                                           void *timeout_ctx);
 static int wpas_p2p_create_iface(struct wpa_supplicant *wpa_s);
 static void wpas_p2p_cross_connect_setup(struct wpa_supplicant *wpa_s);
 static void wpas_p2p_group_idle_timeout(void *eloop_ctx, void *timeout_ctx);
 static void wpas_p2p_set_group_idle_timeout(struct wpa_supplicant *wpa_s);
 
+#ifdef ANDROID_P2P
+static int wpas_global_scan_in_progress(struct wpa_supplicant *wpa_s)
+{
+       struct wpa_supplicant *iface = NULL;
+
+       for (iface = wpa_s->global->ifaces; iface; iface = iface->next) {
+               if(iface->scanning  || iface->wpa_state == WPA_SCANNING) {
+                       wpa_printf(MSG_DEBUG, "P2P: Scan in progress on %s,"
+                       "defer P2P SEARCH", iface->ifname);
+                       return 1;
+               }
+       }
+
+       return 0;
+}
+#endif
 
 static void wpas_p2p_scan_res_handler(struct wpa_supplicant *wpa_s,
                                      struct wpa_scan_results *scan_res)
@@ -85,13 +112,15 @@ static void wpas_p2p_scan_res_handler(struct wpa_supplicant *wpa_s,
 
 static int wpas_p2p_scan(void *ctx, enum p2p_scan_type type, int freq,
                         unsigned int num_req_dev_types,
-                        const u8 *req_dev_types)
+                        const u8 *req_dev_types, const u8 *dev_id)
 {
        struct wpa_supplicant *wpa_s = ctx;
        struct wpa_driver_scan_params params;
        int ret;
        struct wpabuf *wps_ie, *ies;
        int social_channels[] = { 2412, 2437, 2462, 0, 0 };
+       size_t ielen;
+       int was_in_p2p_scan;
 
        if (wpa_s->global->p2p_disabled || wpa_s->global->p2p == NULL)
                return -1;
@@ -110,7 +139,8 @@ static int wpas_p2p_scan(void *ctx, enum p2p_scan_type type, int freq,
        if (wps_ie == NULL)
                return -1;
 
-       ies = wpabuf_alloc(wpabuf_len(wps_ie) + 100);
+       ielen = p2p_scan_ie_buf_len(wpa_s->global->p2p);
+       ies = wpabuf_alloc(wpabuf_len(wps_ie) + ielen);
        if (ies == NULL) {
                wpabuf_free(wps_ie);
                return -1;
@@ -118,8 +148,9 @@ static int wpas_p2p_scan(void *ctx, enum p2p_scan_type type, int freq,
        wpabuf_put_buf(ies, wps_ie);
        wpabuf_free(wps_ie);
 
-       p2p_scan_ie(wpa_s->global->p2p, ies);
+       p2p_scan_ie(wpa_s->global->p2p, ies, dev_id);
 
+       params.p2p_probe = 1;
        params.extra_ies = wpabuf_head(ies);
        params.extra_ies_len = wpabuf_len(ies);
 
@@ -140,37 +171,26 @@ static int wpas_p2p_scan(void *ctx, enum p2p_scan_type type, int freq,
                break;
        }
 
+       was_in_p2p_scan = wpa_s->scan_res_handler == wpas_p2p_scan_res_handler;
        wpa_s->scan_res_handler = wpas_p2p_scan_res_handler;
-       if (wpa_s->drv_flags & WPA_DRIVER_FLAGS_USER_SPACE_MLME)
-               ret = ieee80211_sta_req_scan(wpa_s, &params);
-       else
-               ret = wpa_drv_scan(wpa_s, &params);
+       ret = wpa_drv_scan(wpa_s, &params);
 
        wpabuf_free(ies);
 
-       return ret;
-}
-
-
-#ifdef CONFIG_CLIENT_MLME
-static void p2p_rx_action_mlme(void *ctx, const u8 *buf, size_t len, int freq)
-{
-       struct wpa_supplicant *wpa_s = ctx;
-       const struct ieee80211_mgmt *mgmt;
-       size_t hdr_len;
+       if (ret) {
+               wpa_s->scan_res_handler = NULL;
+#ifdef ANDROID_P2P
+               if (wpa_s->scanning || was_in_p2p_scan || wpas_global_scan_in_progress(wpa_s)) {
+#else
+               if (wpa_s->scanning || was_in_p2p_scan) {
+#endif
+                       wpa_s->p2p_cb_on_scan_complete = 1;
+                       ret = 1;
+               }
+       }
 
-       if (wpa_s->global->p2p == NULL || wpa_s->global->p2p_disabled)
-               return;
-       mgmt = (const struct ieee80211_mgmt *) buf;
-       hdr_len = (const u8 *) &mgmt->u.action.u.vs_public_action.action - buf;
-       if (hdr_len > len)
-               return;
-       p2p_rx_action(wpa_s->global->p2p, mgmt->da, mgmt->sa, mgmt->bssid,
-                     mgmt->u.action.category,
-                     &mgmt->u.action.u.vs_public_action.action,
-                     len - hdr_len, freq);
+       return ret;
 }
-#endif /* CONFIG_CLIENT_MLME */
 
 
 static enum wpa_driver_if_type wpas_p2p_if_type(int p2p_group_interface)
@@ -263,6 +283,11 @@ static void wpas_p2p_group_delete(struct wpa_supplicant *wpa_s)
        case P2P_GROUP_REMOVAL_UNAVAILABLE:
                reason = " reason=UNAVAILABLE";
                break;
+#ifdef ANDROID_P2P
+       case P2P_GROUP_REMOVAL_FREQ_CONFLICT:
+               reason = " reason=FREQ_CONFLICT";
+               break;
+#endif
        default:
                reason = "";
                break;
@@ -311,6 +336,7 @@ static void wpas_p2p_group_delete(struct wpa_supplicant *wpa_s)
                 */
                wpa_config_remove_network(wpa_s->conf, id);
                wpa_supplicant_clear_status(wpa_s);
+               wpa_supplicant_cancel_sched_scan(wpa_s);
        } else {
                wpa_printf(MSG_DEBUG, "P2P: Temporary group network not "
                           "found");
@@ -467,6 +493,52 @@ static int wpas_p2p_store_persistent_group(struct wpa_supplicant *wpa_s,
 }
 
 
+static void wpas_p2p_add_persistent_group_client(struct wpa_supplicant *wpa_s,
+                                                const u8 *addr)
+{
+       struct wpa_ssid *ssid, *s;
+       u8 *n;
+       size_t i;
+
+       ssid = wpa_s->current_ssid;
+       if (ssid == NULL || ssid->mode != WPAS_MODE_P2P_GO ||
+           !ssid->p2p_persistent_group)
+               return;
+
+       for (s = wpa_s->parent->conf->ssid; s; s = s->next) {
+               if (s->disabled != 2 || s->mode != WPAS_MODE_P2P_GO)
+                       continue;
+
+               if (s->ssid_len == ssid->ssid_len &&
+                   os_memcmp(s->ssid, ssid->ssid, s->ssid_len) == 0)
+                       break;
+       }
+
+       if (s == NULL)
+               return;
+
+       for (i = 0; s->p2p_client_list && i < s->num_p2p_clients; i++) {
+               if (os_memcmp(s->p2p_client_list + i * ETH_ALEN, addr,
+                             ETH_ALEN) == 0)
+                       return; /* already in list */
+       }
+
+       n = os_realloc(s->p2p_client_list,
+                      (s->num_p2p_clients + 1) * ETH_ALEN);
+       if (n == NULL)
+               return;
+       os_memcpy(n + s->num_p2p_clients * ETH_ALEN, addr, ETH_ALEN);
+       s->p2p_client_list = n;
+       s->num_p2p_clients++;
+
+#ifndef CONFIG_NO_CONFIG_WRITE
+       if (wpa_s->parent->conf->update_config &&
+           wpa_config_write(wpa_s->parent->confname, wpa_s->parent->conf))
+               wpa_printf(MSG_DEBUG, "P2P: Failed to update configuration");
+#endif /* CONFIG_NO_CONFIG_WRITE */
+}
+
+
 static void wpas_group_formation_completed(struct wpa_supplicant *wpa_s,
                                           int success)
 {
@@ -509,15 +581,8 @@ static void wpas_group_formation_completed(struct wpa_supplicant *wpa_s,
                client = ssid->mode == WPAS_MODE_INFRA;
                if (ssid->mode == WPAS_MODE_P2P_GO) {
                        persistent = ssid->p2p_persistent_group;
-#ifndef ANDROID_BRCM_P2P_PATCH
-                       os_memcpy(go_dev_addr, wpa_s->parent->own_addr,
-                                 ETH_ALEN);
-#else
-                       /* P2P_ADDR: Use p2p_dev_addr instead of own mac addr */
                        os_memcpy(go_dev_addr, wpa_s->global->p2p_dev_addr,
                                  ETH_ALEN);
-
-#endif
                } else
                        persistent = wpas_p2p_persistent_group(wpa_s,
                                                               go_dev_addr,
@@ -564,165 +629,50 @@ static void wpas_group_formation_completed(struct wpa_supplicant *wpa_s,
        if (persistent)
                network_id = wpas_p2p_store_persistent_group(wpa_s->parent,
                                                             ssid, go_dev_addr);
-       if (network_id < 0)
+       if (network_id < 0 && ssid)
                network_id = ssid->id;
        if (!client)
                wpas_notify_p2p_group_started(wpa_s, ssid, network_id, 0);
 }
 
 
-static struct wpa_supplicant *
-wpas_get_tx_interface(struct wpa_supplicant *wpa_s, const u8 *src)
-{
-       struct wpa_supplicant *iface;
-
-       if (os_memcmp(src, wpa_s->own_addr, ETH_ALEN) == 0)
-               return wpa_s;
-
-       /*
-        * Try to find a group interface that matches with the source address.
-        */
-       iface = wpa_s->global->ifaces;
-       while (iface) {
-               if (os_memcmp(wpa_s->pending_action_src,
-                             iface->own_addr, ETH_ALEN) == 0)
-                       break;
-               iface = iface->next;
-       }
-       if (iface) {
-               wpa_printf(MSG_DEBUG, "P2P: Use group interface %s "
-                          "instead of interface %s for Action TX",
-                          iface->ifname, wpa_s->ifname);
-               return iface;
-       }
-
-       return wpa_s;
-}
-
-
-static void wpas_send_action_cb(void *eloop_ctx, void *timeout_ctx)
+static void wpas_p2p_send_action_tx_status(struct wpa_supplicant *wpa_s,
+                                          unsigned int freq,
+                                          const u8 *dst, const u8 *src,
+                                          const u8 *bssid,
+                                          const u8 *data, size_t data_len,
+                                          enum offchannel_send_action_result
+                                          result)
 {
-       struct wpa_supplicant *wpa_s = eloop_ctx;
-       struct wpa_supplicant *iface;
-       int res;
-       int without_roc;
-
-       without_roc = wpa_s->pending_action_without_roc;
-       wpa_s->pending_action_without_roc = 0;
-       wpa_printf(MSG_DEBUG, "P2P: Send Action callback (without_roc=%d "
-                  "pending_action_tx=%p)",
-                  without_roc, wpa_s->pending_action_tx);
-
-       if (wpa_s->pending_action_tx == NULL)
-               return;
-
-       /*
-        * This call is likely going to be on the P2P device instance if the
-        * driver uses a separate interface for that purpose. However, some
-        * Action frames are actually sent within a P2P Group and when that is
-        * the case, we need to follow power saving (e.g., GO buffering the
-        * frame for a client in PS mode or a client following the advertised
-        * NoA from its GO). To make that easier for the driver, select the
-        * correct group interface here.
-        */
-       iface = wpas_get_tx_interface(wpa_s, wpa_s->pending_action_src);
-
-       if (wpa_s->off_channel_freq != wpa_s->pending_action_freq &&
-           wpa_s->pending_action_freq != 0 &&
-           wpa_s->pending_action_freq != iface->assoc_freq) {
-               wpa_printf(MSG_DEBUG, "P2P: Pending Action frame TX "
-                          "waiting for another freq=%u (off_channel_freq=%u "
-                          "assoc_freq=%u)",
-                          wpa_s->pending_action_freq,
-                          wpa_s->off_channel_freq,
-                          iface->assoc_freq);
-               if (without_roc && wpa_s->off_channel_freq == 0) {
-                       /*
-                        * We may get here if wpas_send_action() found us to be
-                        * on the correct channel, but remain-on-channel cancel
-                        * event was received before getting here.
-                        */
-                       wpa_printf(MSG_DEBUG, "P2P: Schedule "
-                                  "remain-on-channel to send Action frame");
-                       if (wpa_drv_remain_on_channel(
-                                   wpa_s, wpa_s->pending_action_freq, 200) <
-                           0) {
-                               wpa_printf(MSG_DEBUG, "P2P: Failed to request "
-                                          "driver to remain on channel (%u "
-                                          "MHz) for Action Frame TX",
-                                          wpa_s->pending_action_freq);
-                       } else {
-                               wpa_s->off_channel_freq = 0;
-                               wpa_s->roc_waiting_drv_freq =
-                                       wpa_s->pending_action_freq;
-                       }
-               }
-               return;
-       }
-
-       wpa_printf(MSG_DEBUG, "P2P: Sending pending Action frame to "
-                  MACSTR " using interface %s",
-                  MAC2STR(wpa_s->pending_action_dst), iface->ifname);
-       res = wpa_drv_send_action(iface, wpa_s->pending_action_freq, 0,
-                                 wpa_s->pending_action_dst,
-                                 wpa_s->pending_action_src,
-                                 wpa_s->pending_action_bssid,
-                                 wpabuf_head(wpa_s->pending_action_tx),
-                                 wpabuf_len(wpa_s->pending_action_tx));
-       if (res) {
-               wpa_printf(MSG_DEBUG, "P2P: Failed to send the pending "
-                          "Action frame");
-               /*
-                * Use fake TX status event to allow P2P state machine to
-                * continue.
-                */
-               wpas_send_action_tx_status(
-                       wpa_s, wpa_s->pending_action_dst,
-                       wpabuf_head(wpa_s->pending_action_tx),
-                       wpabuf_len(wpa_s->pending_action_tx),
-                       P2P_SEND_ACTION_FAILED);
-       }
-}
-
+       enum p2p_send_action_result res = P2P_SEND_ACTION_SUCCESS;
 
-void wpas_send_action_tx_status(struct wpa_supplicant *wpa_s, const u8 *dst,
-                               const u8 *data, size_t data_len,
-                               enum p2p_send_action_result result)
-{
        if (wpa_s->global->p2p == NULL || wpa_s->global->p2p_disabled)
                return;
        if (wpa_s->drv_flags & WPA_DRIVER_FLAGS_P2P_MGMT)
                return;
 
-       if (wpa_s->pending_action_tx == NULL) {
-               wpa_printf(MSG_DEBUG, "P2P: Ignore Action TX status - no "
-                          "pending operation");
-               return;
-       }
-
-       if (os_memcmp(dst, wpa_s->pending_action_dst, ETH_ALEN) != 0) {
-               wpa_printf(MSG_DEBUG, "P2P: Ignore Action TX status - unknown "
-                          "destination address");
-               return;
+       switch (result) {
+       case OFFCHANNEL_SEND_ACTION_SUCCESS:
+               res = P2P_SEND_ACTION_SUCCESS;
+               break;
+       case OFFCHANNEL_SEND_ACTION_NO_ACK:
+               res = P2P_SEND_ACTION_NO_ACK;
+               break;
+       case OFFCHANNEL_SEND_ACTION_FAILED:
+               res = P2P_SEND_ACTION_FAILED;
+               break;
        }
 
-       wpabuf_free(wpa_s->pending_action_tx);
-       wpa_s->pending_action_tx = NULL;
-
-       p2p_send_action_cb(wpa_s->global->p2p, wpa_s->pending_action_freq,
-                          wpa_s->pending_action_dst,
-                          wpa_s->pending_action_src,
-                          wpa_s->pending_action_bssid,
-                          result);
+       p2p_send_action_cb(wpa_s->global->p2p, freq, dst, src, bssid, res);
 
-       if (wpa_s->pending_pd_before_join &&
-           (os_memcmp(wpa_s->pending_action_dst, wpa_s->pending_join_dev_addr,
-                      ETH_ALEN) == 0 ||
-            os_memcmp(wpa_s->pending_action_dst,
-                      wpa_s->pending_join_iface_addr, ETH_ALEN) == 0)) {
+       if (result != OFFCHANNEL_SEND_ACTION_SUCCESS &&
+           wpa_s->pending_pd_before_join &&
+           (os_memcmp(dst, wpa_s->pending_join_dev_addr, ETH_ALEN) == 0 ||
+            os_memcmp(dst, wpa_s->pending_join_iface_addr, ETH_ALEN) == 0)) {
                wpa_s->pending_pd_before_join = 0;
                wpa_printf(MSG_DEBUG, "P2P: Starting pending "
-                          "join-existing-group operation");
+                          "join-existing-group operation (no ACK for PD "
+                          "Req)");
                wpas_p2p_join_start(wpa_s);
        }
 }
@@ -733,104 +683,16 @@ static int wpas_send_action(void *ctx, unsigned int freq, const u8 *dst,
                            size_t len, unsigned int wait_time)
 {
        struct wpa_supplicant *wpa_s = ctx;
-
-       wpa_printf(MSG_DEBUG, "P2P: Send action frame: freq=%d dst=" MACSTR
-                  " src=" MACSTR " bssid=" MACSTR " len=%d",
-                  freq, MAC2STR(dst), MAC2STR(src), MAC2STR(bssid),
-                  (int) len);
-
-       if (wpa_s->pending_action_tx) {
-               wpa_printf(MSG_DEBUG, "P2P: Dropped pending Action frame TX "
-                          "to " MACSTR, MAC2STR(wpa_s->pending_action_dst));
-               wpabuf_free(wpa_s->pending_action_tx);
-       }
-       wpa_s->pending_action_tx = wpabuf_alloc(len);
-       if (wpa_s->pending_action_tx == NULL) {
-               wpa_printf(MSG_DEBUG, "P2P: Failed to allocate Action frame "
-                          "TX buffer (len=%llu)", (unsigned long long) len);
-               return -1;
-       }
-       wpabuf_put_data(wpa_s->pending_action_tx, buf, len);
-       os_memcpy(wpa_s->pending_action_src, src, ETH_ALEN);
-       os_memcpy(wpa_s->pending_action_dst, dst, ETH_ALEN);
-       os_memcpy(wpa_s->pending_action_bssid, bssid, ETH_ALEN);
-       wpa_s->pending_action_freq = freq;
-
-       if (freq != 0 && wpa_s->drv_flags & WPA_DRIVER_FLAGS_OFFCHANNEL_TX) {
-               struct wpa_supplicant *iface;
-
-               iface = wpas_get_tx_interface(wpa_s, wpa_s->pending_action_src);
-               wpa_s->action_tx_wait_time = wait_time;
-
-               return wpa_drv_send_action(iface, wpa_s->pending_action_freq,
-                                       wait_time, wpa_s->pending_action_dst,
-                                       wpa_s->pending_action_src,
-                                       wpa_s->pending_action_bssid,
-                                       wpabuf_head(wpa_s->pending_action_tx),
-                                       wpabuf_len(wpa_s->pending_action_tx));
-       }
-
-       if (freq) {
-               struct wpa_supplicant *tx_iface;
-               tx_iface = wpas_get_tx_interface(wpa_s, src);
-               if (tx_iface->assoc_freq == freq) {
-                       wpa_printf(MSG_DEBUG, "P2P: Already on requested "
-                                  "channel (TX interface operating channel)");
-                       freq = 0;
-               }
-       }
-
-       if (wpa_s->off_channel_freq == freq || freq == 0) {
-               wpa_printf(MSG_DEBUG, "P2P: Already on requested channel; "
-                          "send Action frame immediately");
-               /* TODO: Would there ever be need to extend the current
-                * duration on the channel? */
-               wpa_s->pending_action_without_roc = 1;
-               eloop_cancel_timeout(wpas_send_action_cb, wpa_s, NULL);
-               eloop_register_timeout(0, 0, wpas_send_action_cb, wpa_s, NULL);
-               return 0;
-       }
-       wpa_s->pending_action_without_roc = 0;
-
-       if (wpa_s->roc_waiting_drv_freq == freq) {
-               wpa_printf(MSG_DEBUG, "P2P: Already waiting for driver to get "
-                          "to frequency %u MHz; continue waiting to send the "
-                          "Action frame", freq);
-               return 0;
-       }
-
-       wpa_printf(MSG_DEBUG, "P2P: Schedule Action frame to be transmitted "
-                  "once the driver gets to the requested channel");
-       if (wait_time > wpa_s->max_remain_on_chan)
-               wait_time = wpa_s->max_remain_on_chan;
-       if (wpa_drv_remain_on_channel(wpa_s, freq, wait_time) < 0) {
-               wpa_printf(MSG_DEBUG, "P2P: Failed to request driver "
-                          "to remain on channel (%u MHz) for Action "
-                          "Frame TX", freq);
-               return -1;
-       }
-       wpa_s->off_channel_freq = 0;
-       wpa_s->roc_waiting_drv_freq = freq;
-
-       return 0;
+       return offchannel_send_action(wpa_s, freq, dst, src, bssid, buf, len,
+                                     wait_time,
+                                     wpas_p2p_send_action_tx_status, 1);
 }
 
 
 static void wpas_send_action_done(void *ctx)
 {
        struct wpa_supplicant *wpa_s = ctx;
-       wpa_printf(MSG_DEBUG, "P2P: Action frame sequence done notification");
-       wpabuf_free(wpa_s->pending_action_tx);
-       wpa_s->pending_action_tx = NULL;
-       if (wpa_s->drv_flags & WPA_DRIVER_FLAGS_OFFCHANNEL_TX) {
-               if (wpa_s->action_tx_wait_time)
-                       wpa_drv_send_action_cancel_wait(wpa_s);
-               wpa_s->off_channel_freq = 0;
-       } else if (wpa_s->off_channel_freq || wpa_s->roc_waiting_drv_freq) {
-               wpa_drv_cancel_remain_on_channel(wpa_s);
-               wpa_s->off_channel_freq = 0;
-               wpa_s->roc_waiting_drv_freq = 0;
-       }
+       offchannel_send_action_done(wpa_s);
 }
 
 
@@ -887,22 +749,13 @@ static void p2p_go_configured(void *ctx, void *data)
                        wpa_ssid_txt(ssid->ssid, ssid->ssid_len),
                        ssid->frequency,
                        params->passphrase ? params->passphrase : "",
-#ifndef ANDROID_BRCM_P2P_PATCH
-                       MAC2STR(wpa_s->parent->own_addr),
-#else
-                       /* P2P_ADDR: use p2p_dev_addr instead of own addr */
                        MAC2STR(wpa_s->global->p2p_dev_addr),
-#endif
                        params->persistent_group ? " [PERSISTENT]" : "");
+
                if (params->persistent_group)
                        network_id = wpas_p2p_store_persistent_group(
                                wpa_s->parent, ssid,
-#ifndef ANDROID_BRCM_P2P_PATCH
-                               wpa_s->parent->own_addr);
-#else
-                               /* P2P_ADDR: Use p2p device address */
                                wpa_s->global->p2p_dev_addr);
-#endif
                if (network_id < 0)
                        network_id = ssid->id;
                wpas_notify_p2p_group_started(wpa_s, ssid, network_id, 0);
@@ -920,7 +773,7 @@ static void p2p_go_configured(void *ctx, void *data)
        }
        if (params->wps_method == WPS_PBC)
                wpa_supplicant_ap_wps_pbc(wpa_s, params->peer_interface_addr,
-                                         NULL);
+                                         params->peer_device_addr);
        else if (wpa_s->p2p_pin[0])
                wpa_supplicant_ap_wps_pin(wpa_s, params->peer_interface_addr,
                                          wpa_s->p2p_pin, NULL, 0);
@@ -942,6 +795,8 @@ static void wpas_start_wps_go(struct wpa_supplicant *wpa_s,
        if (ssid == NULL)
                return;
 
+       wpa_s->show_group_started = 0;
+
        wpa_config_set_network_defaults(ssid);
        ssid->temporary = 1;
        ssid->p2p_group = 1;
@@ -995,6 +850,7 @@ static void wpas_p2p_clone_config(struct wpa_supplicant *dst,
 
        d->p2p_group_idle = s->p2p_group_idle;
        d->p2p_intra_bss = s->p2p_intra_bss;
+       d->persistent_reconnect = s->persistent_reconnect;
 }
 
 
@@ -1017,16 +873,7 @@ static int wpas_p2p_add_group_interface(struct wpa_supplicant *wpa_s,
 
        os_snprintf(ifname, sizeof(ifname), "p2p-%s-%d", wpa_s->ifname,
                    wpa_s->p2p_group_idx);
-
-#ifdef ANDROID_BRCM_P2P_PATCH
-       /**
-        * Monitor interface name is derived from p2p interface name
-        * We need to reset p2p interface name early to take care of extra character in monitor interface name
-        */
-       if (os_strlen(ifname) + os_strlen(WPA_MONITOR_IFNAME_PREFIX)  >= IFNAMSIZ &&
-#else
-       if (os_strlen(ifname) >= IFNAMSIZ  &&
-#endif
+       if (os_strlen(ifname) >= IFNAMSIZ &&
            os_strlen(wpa_s->ifname) < IFNAMSIZ) {
                /* Try to avoid going over the IFNAMSIZ length limit */
                os_snprintf(ifname, sizeof(ifname), "p2p-%d",
@@ -1147,13 +994,13 @@ void wpas_go_neg_completed(void *ctx, struct p2p_go_neg_results *res)
        if (res->status) {
                wpa_msg(wpa_s, MSG_INFO, P2P_EVENT_GO_NEG_FAILURE "status=%d",
                        res->status);
-               wpas_notify_p2p_go_neg_completed(wpa_s, res->status);
+               wpas_notify_p2p_go_neg_completed(wpa_s, res);
                wpas_p2p_remove_pending_group_interface(wpa_s);
                return;
        }
 
        wpa_msg(wpa_s, MSG_INFO, P2P_EVENT_GO_NEG_SUCCESS);
-       wpas_notify_p2p_go_neg_completed(wpa_s, P2P_SC_SUCCESS);
+       wpas_notify_p2p_go_neg_completed(wpa_s, res);
 
        if (wpa_s->create_p2p_iface) {
                struct wpa_supplicant *group_wpa_s =
@@ -1209,6 +1056,7 @@ void wpas_dev_found(void *ctx, const u8 *addr,
                    const struct p2p_peer_info *info,
                    int new_device)
 {
+#ifndef CONFIG_NO_STDOUT_DEBUG
        struct wpa_supplicant *wpa_s = ctx;
        char devtype[WPS_DEV_TYPE_BUFSIZE];
 
@@ -1221,6 +1069,7 @@ void wpas_dev_found(void *ctx, const u8 *addr,
                                     sizeof(devtype)),
                info->device_name, info->config_methods,
                info->dev_capab, info->group_capab);
+#endif /* CONFIG_NO_STDOUT_DEBUG */
 
        wpas_notify_p2p_device_found(ctx, info->p2p_device_addr, new_device);
 }
@@ -1229,10 +1078,10 @@ void wpas_dev_found(void *ctx, const u8 *addr,
 static void wpas_dev_lost(void *ctx, const u8 *dev_addr)
 {
        struct wpa_supplicant *wpa_s = ctx;
-#ifdef ANDROID_BRCM_P2P_PATCH
+
        wpa_msg(wpa_s, MSG_INFO, P2P_EVENT_DEVICE_LOST
                "p2p_dev_addr=" MACSTR, MAC2STR(dev_addr));
-#endif
+
        wpas_notify_p2p_device_lost(wpa_s, dev_addr);
 }
 
@@ -1284,7 +1133,7 @@ static void wpas_stop_listen(void *ctx)
 static int wpas_send_probe_resp(void *ctx, const struct wpabuf *buf)
 {
        struct wpa_supplicant *wpa_s = ctx;
-       return wpa_drv_send_mlme(wpa_s, wpabuf_head(buf), wpabuf_len(buf));
+       return wpa_drv_send_mlme(wpa_s, wpabuf_head(buf), wpabuf_len(buf), 1);
 }
 
 
@@ -1579,8 +1428,11 @@ void wpas_sd_request(void *ctx, int freq, const u8 *sa, u8 dialog_token,
                os_free(buf);
        }
 
-       if (wpa_s->p2p_sd_over_ctrl_iface)
+       if (wpa_s->p2p_sd_over_ctrl_iface) {
+               wpas_notify_p2p_sd_request(wpa_s, freq, sa, dialog_token,
+                                          update_indic, tlvs, tlvs_len);
                return; /* to be processed by an external program */
+       }
 
        resp = wpabuf_alloc(10000);
        if (resp == NULL)
@@ -1727,26 +1579,26 @@ void wpas_sd_response(void *ctx, const u8 *sa, u16 update_indic,
 }
 
 
-void * wpas_p2p_sd_request(struct wpa_supplicant *wpa_s, const u8 *dst,
-                          const struct wpabuf *tlvs)
+u64 wpas_p2p_sd_request(struct wpa_supplicant *wpa_s, const u8 *dst,
+                       const struct wpabuf *tlvs)
 {
        if (wpa_s->drv_flags & WPA_DRIVER_FLAGS_P2P_MGMT)
-               return (void *) wpa_drv_p2p_sd_request(wpa_s, dst, tlvs);
+               return wpa_drv_p2p_sd_request(wpa_s, dst, tlvs);
        if (wpa_s->global->p2p_disabled || wpa_s->global->p2p == NULL)
-               return NULL;
-       return p2p_sd_request(wpa_s->global->p2p, dst, tlvs);
+               return 0;
+       return (uintptr_t) p2p_sd_request(wpa_s->global->p2p, dst, tlvs);
 }
 
 
-void * wpas_p2p_sd_request_upnp(struct wpa_supplicant *wpa_s, const u8 *dst,
-                               u8 version, const char *query)
+u64 wpas_p2p_sd_request_upnp(struct wpa_supplicant *wpa_s, const u8 *dst,
+                            u8 version, const char *query)
 {
        struct wpabuf *tlvs;
-       void *ret;
+       u64 ret;
 
        tlvs = wpabuf_alloc(2 + 1 + 1 + 1 + os_strlen(query));
        if (tlvs == NULL)
-               return NULL;
+               return 0;
        wpabuf_put_le16(tlvs, 1 + 1 + 1 + os_strlen(query));
        wpabuf_put_u8(tlvs, P2P_SERV_UPNP); /* Service Protocol Type */
        wpabuf_put_u8(tlvs, 1); /* Service Transaction ID */
@@ -1758,13 +1610,14 @@ void * wpas_p2p_sd_request_upnp(struct wpa_supplicant *wpa_s, const u8 *dst,
 }
 
 
-int wpas_p2p_sd_cancel_request(struct wpa_supplicant *wpa_s, void *req)
+int wpas_p2p_sd_cancel_request(struct wpa_supplicant *wpa_s, u64 req)
 {
        if (wpa_s->drv_flags & WPA_DRIVER_FLAGS_P2P_MGMT)
-               return wpa_drv_p2p_sd_cancel_request(wpa_s, (u64) req);
+               return wpa_drv_p2p_sd_cancel_request(wpa_s, req);
        if (wpa_s->global->p2p_disabled || wpa_s->global->p2p == NULL)
                return -1;
-       return p2p_sd_cancel_request(wpa_s->global->p2p, req);
+       return p2p_sd_cancel_request(wpa_s->global->p2p,
+                                    (void *) (uintptr_t) req);
 }
 
 
@@ -1925,13 +1778,28 @@ static void wpas_prov_disc_local_keypad(struct wpa_supplicant *wpa_s,
 void wpas_prov_disc_req(void *ctx, const u8 *peer, u16 config_methods,
                        const u8 *dev_addr, const u8 *pri_dev_type,
                        const char *dev_name, u16 supp_config_methods,
-                       u8 dev_capab, u8 group_capab)
+                       u8 dev_capab, u8 group_capab, const u8 *group_id,
+                       size_t group_id_len)
 {
        struct wpa_supplicant *wpa_s = ctx;
        char devtype[WPS_DEV_TYPE_BUFSIZE];
-       char params[200];
+       char params[300];
        u8 empty_dev_type[8];
        unsigned int generated_pin = 0;
+       struct wpa_supplicant *group = NULL;
+
+       if (group_id) {
+               for (group = wpa_s->global->ifaces; group; group = group->next)
+               {
+                       struct wpa_ssid *s = group->current_ssid;
+                       if (s != NULL &&
+                           s->mode == WPAS_MODE_P2P_GO &&
+                           group_id_len - ETH_ALEN == s->ssid_len &&
+                           os_memcmp(group_id + ETH_ALEN, s->ssid,
+                                     s->ssid_len) == 0)
+                               break;
+               }
+       }
 
        if (pri_dev_type == NULL) {
                os_memset(empty_dev_type, 0, sizeof(empty_dev_type));
@@ -1939,11 +1807,13 @@ void wpas_prov_disc_req(void *ctx, const u8 *peer, u16 config_methods,
        }
        os_snprintf(params, sizeof(params), " p2p_dev_addr=" MACSTR
                    " pri_dev_type=%s name='%s' config_methods=0x%x "
-                   "dev_capab=0x%x group_capab=0x%x",
+                   "dev_capab=0x%x group_capab=0x%x%s%s",
                    MAC2STR(dev_addr),
                    wps_dev_type_bin2str(pri_dev_type, devtype,
                                         sizeof(devtype)),
-                   dev_name, supp_config_methods, dev_capab, group_capab);
+                   dev_name, supp_config_methods, dev_capab, group_capab,
+                   group ? " group=" : "",
+                   group ? group->ifname : "");
        params[sizeof(params) - 1] = '\0';
 
        if (config_methods & WPS_CONFIG_DISPLAY) {
@@ -1967,6 +1837,16 @@ void wpas_prov_disc_resp(void *ctx, const u8 *peer, u16 config_methods)
        struct wpa_supplicant *wpa_s = ctx;
        unsigned int generated_pin = 0;
 
+       if (wpa_s->pending_pd_before_join &&
+           (os_memcmp(peer, wpa_s->pending_join_dev_addr, ETH_ALEN) == 0 ||
+            os_memcmp(peer, wpa_s->pending_join_iface_addr, ETH_ALEN) == 0)) {
+               wpa_s->pending_pd_before_join = 0;
+               wpa_printf(MSG_DEBUG, "P2P: Starting pending "
+                          "join-existing-group operation");
+               wpas_p2p_join_start(wpa_s);
+               return;
+       }
+
        if (config_methods & WPS_CONFIG_DISPLAY)
                wpas_prov_disc_local_keypad(wpa_s, peer, "");
        else if (config_methods & WPS_CONFIG_KEYPAD) {
@@ -1979,20 +1859,11 @@ void wpas_prov_disc_resp(void *ctx, const u8 *peer, u16 config_methods)
        wpas_notify_p2p_provision_discovery(wpa_s, peer, 0 /* response */,
                                            P2P_PROV_DISC_SUCCESS,
                                            config_methods, generated_pin);
-
-       if (wpa_s->pending_pd_before_join &&
-           (os_memcmp(peer, wpa_s->pending_join_dev_addr, ETH_ALEN) == 0 ||
-            os_memcmp(peer, wpa_s->pending_join_iface_addr, ETH_ALEN) == 0)) {
-               wpa_s->pending_pd_before_join = 0;
-               wpa_printf(MSG_DEBUG, "P2P: Starting pending "
-                          "join-existing-group operation");
-               wpas_p2p_join_start(wpa_s);
-       }
 }
 
 
-void wpas_prov_disc_fail(void *ctx, const u8 *peer,
-                        enum p2p_prov_disc_status status)
+static void wpas_prov_disc_fail(void *ctx, const u8 *peer,
+                               enum p2p_prov_disc_status status)
 {
        struct wpa_supplicant *wpa_s = ctx;
 
@@ -2281,8 +2152,7 @@ struct p2p_oper_class_map {
 static int wpas_p2p_setup_channels(struct wpa_supplicant *wpa_s,
                                   struct p2p_channels *chan)
 {
-       struct hostapd_hw_modes *modes, *mode;
-       u16 num_modes, flags;
+       struct hostapd_hw_modes *mode;
        int cla, op;
        struct p2p_oper_class_map op_class[] = {
                { HOSTAPD_MODE_IEEE80211G, 81, 1, 13, 1, BW20 },
@@ -2300,8 +2170,7 @@ static int wpas_p2p_setup_channels(struct wpa_supplicant *wpa_s,
                { -1, 0, 0, 0, 0, BW20 }
        };
 
-       modes = wpa_drv_get_hw_feature_data(wpa_s, &num_modes, &flags);
-       if (modes == NULL) {
+       if (wpa_s->hw.modes == NULL) {
                wpa_printf(MSG_DEBUG, "P2P: Driver did not support fetching "
                           "of all supported channels; assume dualband "
                           "support");
@@ -2315,7 +2184,7 @@ static int wpas_p2p_setup_channels(struct wpa_supplicant *wpa_s,
                u8 ch;
                struct p2p_reg_class *reg = NULL;
 
-               mode = get_mode(modes, num_modes, o->mode);
+               mode = get_mode(wpa_s->hw.modes, wpa_s->hw.num_modes, o->mode);
                if (mode == NULL)
                        continue;
                for (ch = o->min_chan; ch <= o->max_chan; ch += o->inc) {
@@ -2348,8 +2217,6 @@ static int wpas_p2p_setup_channels(struct wpa_supplicant *wpa_s,
 
        chan->reg_classes = cla;
 
-       ieee80211_sta_free_hw_features(modes, num_modes);
-
        return 0;
 }
 
@@ -2370,6 +2237,27 @@ static int wpas_get_noa(void *ctx, const u8 *interface_addr, u8 *buf,
 }
 
 
+static int wpas_go_connected(void *ctx, const u8 *dev_addr)
+{
+       struct wpa_supplicant *wpa_s = ctx;
+
+       for (wpa_s = wpa_s->global->ifaces; wpa_s; wpa_s = wpa_s->next) {
+               struct wpa_ssid *ssid = wpa_s->current_ssid;
+               if (ssid == NULL)
+                       continue;
+               if (ssid->mode != WPAS_MODE_INFRA)
+                       continue;
+               if (wpa_s->wpa_state != WPA_COMPLETED &&
+                   wpa_s->wpa_state != WPA_GROUP_HANDSHAKE)
+                       continue;
+               if (os_memcmp(wpa_s->go_dev_addr, dev_addr, ETH_ALEN) == 0)
+                       return 1;
+       }
+
+       return 0;
+}
+
+
 /**
  * wpas_p2p_init - Initialize P2P module for %wpa_supplicant
  * @global: Pointer to global data from wpa_supplicant_init()
@@ -2381,25 +2269,10 @@ int wpas_p2p_init(struct wpa_global *global, struct wpa_supplicant *wpa_s)
        struct p2p_config p2p;
        unsigned int r;
        int i;
-#ifdef ANDROID_BRCM_P2P_PATCH
-       char buf[200];
-#endif
 
        if (!(wpa_s->drv_flags & WPA_DRIVER_FLAGS_P2P_CAPABLE))
                return 0;
 
-#ifdef CONFIG_CLIENT_MLME
-       if (!(wpa_s->drv_flags & WPA_DRIVER_FLAGS_P2P_MGMT)) {
-               wpa_s->mlme.public_action_cb = p2p_rx_action_mlme;
-               wpa_s->mlme.public_action_cb_ctx = wpa_s;
-       }
-#endif /* CONFIG_CLIENT_MLME */
-
-       if (wpa_drv_disable_11b_rates(wpa_s, 1) < 0) {
-               wpa_printf(MSG_DEBUG, "P2P: Failed to disable 11b rates");
-               /* Continue anyway; this is not really a fatal error */
-       }
-
        if (global->p2p)
                return 0;
 
@@ -2444,21 +2317,10 @@ int wpas_p2p_init(struct wpa_global *global, struct wpa_supplicant *wpa_s)
        p2p.invitation_received = wpas_invitation_received;
        p2p.invitation_result = wpas_invitation_result;
        p2p.get_noa = wpas_get_noa;
+       p2p.go_connected = wpas_go_connected;
 
-#ifdef ANDROID_BRCM_P2P_PATCH
-       /* P2P_ADDR: Using p2p_dev_addr to hold the actual p2p device address incase if
-        * we are not using the primary interface for p2p operations.
-        */
-       wpa_drv_driver_cmd(wpa_s,  "P2P_DEV_ADDR", buf, sizeof(buf));   
-       os_memcpy(p2p.p2p_dev_addr, buf, ETH_ALEN);
-       os_memcpy(wpa_s->global->p2p_dev_addr, buf, ETH_ALEN);
-       os_memcpy(p2p.dev_addr, buf, ETH_ALEN);
-       wpa_printf(MSG_DEBUG, "P2P: Device address ("MACSTR")", MAC2STR(p2p.p2p_dev_addr));
-#else
        os_memcpy(wpa_s->global->p2p_dev_addr, wpa_s->own_addr, ETH_ALEN);
-#endif
-
-       os_memcpy(p2p.dev_addr, wpa_s->own_addr, ETH_ALEN);
+       os_memcpy(p2p.dev_addr, wpa_s->global->p2p_dev_addr, ETH_ALEN);
        p2p.dev_name = wpa_s->conf->device_name;
        p2p.manufacturer = wpa_s->conf->manufacturer;
        p2p.model_name = wpa_s->conf->model_name;
@@ -2564,13 +2426,19 @@ void wpas_p2p_deinit(struct wpa_supplicant *wpa_s)
 {
        if (wpa_s->driver && wpa_s->drv_priv)
                wpa_drv_probe_req_report(wpa_s, 0);
+
+       if (wpa_s->go_params) {
+               /* Clear any stored provisioning info */
+               p2p_clear_provisioning_info(
+                       wpa_s->global->p2p,
+                       wpa_s->go_params->peer_interface_addr);
+       }
+
        os_free(wpa_s->go_params);
        wpa_s->go_params = NULL;
-       wpabuf_free(wpa_s->pending_action_tx);
-       wpa_s->pending_action_tx = NULL;
-       eloop_cancel_timeout(wpas_send_action_cb, wpa_s, NULL);
        eloop_cancel_timeout(wpas_p2p_group_formation_timeout, wpa_s, NULL);
        eloop_cancel_timeout(wpas_p2p_join_scan, wpa_s, NULL);
+       eloop_cancel_timeout(wpas_p2p_pd_before_join_timeout, wpa_s, NULL);
        wpa_s->p2p_long_listen = 0;
        eloop_cancel_timeout(wpas_p2p_long_listen_timeout, wpa_s, NULL);
        eloop_cancel_timeout(wpas_p2p_group_idle_timeout, wpa_s, NULL);
@@ -2656,6 +2524,9 @@ static int wpas_p2p_start_go_neg(struct wpa_supplicant *wpa_s,
                                 int go_intent, const u8 *own_interface_addr,
                                 unsigned int force_freq, int persistent_group)
 {
+       if (persistent_group && wpa_s->conf->persistent_reconnect)
+               persistent_group = 2;
+
        if (wpa_s->drv_flags & WPA_DRIVER_FLAGS_P2P_MGMT) {
                return wpa_drv_p2p_connect(wpa_s, peer_addr, wps_method,
                                           go_intent, own_interface_addr,
@@ -2674,6 +2545,9 @@ static int wpas_p2p_auth_go_neg(struct wpa_supplicant *wpa_s,
                                int go_intent, const u8 *own_interface_addr,
                                unsigned int force_freq, int persistent_group)
 {
+       if (persistent_group && wpa_s->conf->persistent_reconnect)
+               persistent_group = 2;
+
        if (wpa_s->drv_flags & WPA_DRIVER_FLAGS_P2P_MGMT)
                return -1;
 
@@ -2699,13 +2573,30 @@ static void wpas_p2p_check_join_scan_limit(struct wpa_supplicant *wpa_s)
 }
 
 
+static void wpas_p2p_pd_before_join_timeout(void *eloop_ctx, void *timeout_ctx)
+{
+       struct wpa_supplicant *wpa_s = eloop_ctx;
+       if (!wpa_s->pending_pd_before_join)
+               return;
+       /*
+        * Provision Discovery Response may have been lost - try to connect
+        * anyway since we do not need any information from this PD.
+        */
+       wpa_printf(MSG_DEBUG, "P2P: PD timeout for join-existing-group - "
+                  "try to connect anyway");
+       wpas_p2p_join_start(wpa_s);
+}
+
+
 static void wpas_p2p_scan_res_join(struct wpa_supplicant *wpa_s,
                                   struct wpa_scan_results *scan_res)
 {
        struct wpa_bss *bss;
        int freq;
        u8 iface_addr[ETH_ALEN];
-
+#ifdef ANDROID_P2P     
+       int shared_freq = 0;
+#endif
        eloop_cancel_timeout(wpas_p2p_join_scan, wpa_s, NULL);
 
        if (wpa_s->global->p2p_disabled)
@@ -2740,6 +2631,16 @@ static void wpas_p2p_scan_res_join(struct wpa_supplicant *wpa_s,
                wpa_printf(MSG_DEBUG, "P2P: Target GO operating frequency "
                           "from P2P peer table: %d MHz", freq);
        }
+
+#ifdef ANDROID_P2P
+       if (!(wpa_s->drv_flags & WPA_DRIVER_FLAGS_MULTI_CHANNEL_CONCURRENT) && 
+               ((shared_freq = wpa_drv_shared_freq(wpa_s)) > 0) && (shared_freq != freq)) {
+               wpa_msg(wpa_s->parent, MSG_INFO,
+                                       P2P_EVENT_GROUP_FORMATION_FAILURE "reason=FREQ_CONFLICT");
+               return;
+       }
+#endif
+
        bss = wpa_bss_get_bssid(wpa_s, wpa_s->pending_join_iface_addr);
        if (bss) {
                freq = bss->freq;
@@ -2756,7 +2657,6 @@ static void wpas_p2p_scan_res_join(struct wpa_supplicant *wpa_s,
                wpa_s->pending_pd_before_join = 1;
 
                switch (wpa_s->pending_join_wps_method) {
-               case WPS_PIN_LABEL:
                case WPS_PIN_DISPLAY:
                        method = WPS_CONFIG_KEYPAD;
                        break;
@@ -2771,9 +2671,24 @@ static void wpas_p2p_scan_res_join(struct wpa_supplicant *wpa_s,
                        break;
                }
 
+               if ((p2p_get_provisioning_info(wpa_s->global->p2p,
+                                              wpa_s->pending_join_dev_addr) ==
+                    method)) {
+                       /*
+                        * We have already performed provision discovery for
+                        * joining the group. Proceed directly to join
+                        * operation without duplicated provision discovery. */
+                       wpa_printf(MSG_DEBUG, "P2P: Provision discovery "
+                                  "with " MACSTR " already done - proceed to "
+                                  "join",
+                                  MAC2STR(wpa_s->pending_join_dev_addr));
+                       wpa_s->pending_pd_before_join = 0;
+                       goto start;
+               }
+
                if (p2p_prov_disc_req(wpa_s->global->p2p,
-                                     wpa_s->pending_join_dev_addr, method, 1)
-                   < 0) {
+                                     wpa_s->pending_join_dev_addr, method, 1,
+                                     freq) < 0) {
                        wpa_printf(MSG_DEBUG, "P2P: Failed to send Provision "
                                   "Discovery Request before joining an "
                                   "existing group");
@@ -2783,8 +2698,15 @@ static void wpas_p2p_scan_res_join(struct wpa_supplicant *wpa_s,
 
                /*
                 * Actual join operation will be started from the Action frame
-                * TX status callback.
+                * TX status callback (if no ACK is received) or when the
+                * Provision Discovery Response is received. Use a short
+                * timeout as a backup mechanism should the Provision Discovery
+                * Response be lost for any reason.
                 */
+               eloop_cancel_timeout(wpas_p2p_pd_before_join_timeout, wpa_s,
+                                    NULL);
+               eloop_register_timeout(2, 0, wpas_p2p_pd_before_join_timeout,
+                                      wpa_s, NULL);
                return;
        }
 
@@ -2806,6 +2728,7 @@ static void wpas_p2p_join_scan(void *eloop_ctx, void *timeout_ctx)
        int ret;
        struct wpa_driver_scan_params params;
        struct wpabuf *wps_ie, *ies;
+       size_t ielen;
 
        os_memset(&params, 0, sizeof(params));
 
@@ -2822,7 +2745,8 @@ static void wpas_p2p_join_scan(void *eloop_ctx, void *timeout_ctx)
                return;
        }
 
-       ies = wpabuf_alloc(wpabuf_len(wps_ie) + 100);
+       ielen = p2p_scan_ie_buf_len(wpa_s->global->p2p);
+       ies = wpabuf_alloc(wpabuf_len(wps_ie) + ielen);
        if (ies == NULL) {
                wpabuf_free(wps_ie);
                wpas_p2p_scan_res_join(wpa_s, NULL);
@@ -2831,8 +2755,9 @@ static void wpas_p2p_join_scan(void *eloop_ctx, void *timeout_ctx)
        wpabuf_put_buf(ies, wps_ie);
        wpabuf_free(wps_ie);
 
-       p2p_scan_ie(wpa_s->global->p2p, ies);
+       p2p_scan_ie(wpa_s->global->p2p, ies, NULL);
 
+       params.p2p_probe = 1;
        params.extra_ies = wpabuf_head(ies);
        params.extra_ies_len = wpabuf_len(ies);
 
@@ -2841,10 +2766,7 @@ static void wpas_p2p_join_scan(void *eloop_ctx, void *timeout_ctx)
         * the new scan results become available.
         */
        wpa_s->scan_res_handler = wpas_p2p_scan_res_join;
-       if (wpa_s->drv_flags & WPA_DRIVER_FLAGS_USER_SPACE_MLME)
-               ret = ieee80211_sta_req_scan(wpa_s, &params);
-       else
-               ret = wpa_drv_scan(wpa_s, &params);
+       ret = wpa_drv_scan(wpa_s, &params);
 
        wpabuf_free(ies);
 
@@ -2883,6 +2805,7 @@ static int wpas_p2p_join_start(struct wpa_supplicant *wpa_s)
        struct wpa_supplicant *group;
        struct p2p_go_neg_results res;
 
+       eloop_cancel_timeout(wpas_p2p_pd_before_join_timeout, wpa_s, NULL);
        group = wpas_p2p_get_group_iface(wpa_s, 0, 0);
        if (group == NULL)
                return -1;
@@ -2898,6 +2821,13 @@ static int wpas_p2p_join_start(struct wpa_supplicant *wpa_s)
        os_memcpy(res.peer_interface_addr, wpa_s->pending_join_iface_addr,
                  ETH_ALEN);
        res.wps_method = wpa_s->pending_join_wps_method;
+       if (wpa_s->off_channel_freq || wpa_s->roc_waiting_drv_freq) {
+               wpa_printf(MSG_DEBUG, "P2P: Cancel remain-on-channel prior to "
+                          "starting client");
+               wpa_drv_cancel_remain_on_channel(wpa_s);
+               wpa_s->off_channel_freq = 0;
+               wpa_s->roc_waiting_drv_freq = 0;
+       }
        wpas_start_wps_enrollee(group, &res);
 
        /*
@@ -2938,6 +2868,7 @@ int wpas_p2p_connect(struct wpa_supplicant *wpa_s, const u8 *peer_addr,
        u8 bssid[ETH_ALEN];
        int ret = 0;
        enum wpa_driver_if_type iftype;
+       const u8 *if_addr;
 
        if (wpa_s->global->p2p_disabled || wpa_s->global->p2p == NULL)
                return -1;
@@ -3033,46 +2964,34 @@ int wpas_p2p_connect(struct wpa_supplicant *wpa_s, const u8 *peer_addr,
 
        wpa_s->create_p2p_iface = wpas_p2p_create_iface(wpa_s);
 
-       if (!wpa_s->create_p2p_iface) {
-               if (auth) {
-                       if (wpas_p2p_auth_go_neg(wpa_s, peer_addr, wps_method,
-                                                go_intent, wpa_s->own_addr,
-                                                force_freq, persistent_group)
-                           < 0)
-                               return -1;
-                       return ret;
-               }
-               if (wpas_p2p_start_go_neg(wpa_s, peer_addr, wps_method,
-                                         go_intent, wpa_s->own_addr,
-                                         force_freq, persistent_group) < 0)
+       if (wpa_s->create_p2p_iface) {
+               /* Prepare to add a new interface for the group */
+               iftype = WPA_IF_P2P_GROUP;
+               if (go_intent == 15)
+                       iftype = WPA_IF_P2P_GO;
+               if (wpas_p2p_add_group_interface(wpa_s, iftype) < 0) {
+                       wpa_printf(MSG_ERROR, "P2P: Failed to allocate a new "
+                                  "interface for the group");
                        return -1;
-               return ret;
-       }
+               }
 
-       /* Prepare to add a new interface for the group */
-       iftype = WPA_IF_P2P_GROUP;
-       if (join)
-               iftype = WPA_IF_P2P_CLIENT;
-       else if (go_intent == 15)
-               iftype = WPA_IF_P2P_GO;
-       if (wpas_p2p_add_group_interface(wpa_s, iftype) < 0) {
-               wpa_printf(MSG_ERROR, "P2P: Failed to allocate a new "
-                          "interface for the group");
-               return -1;
-       }
+               if_addr = wpa_s->pending_interface_addr;
+       } else
+               if_addr = wpa_s->own_addr;
 
        if (auth) {
                if (wpas_p2p_auth_go_neg(wpa_s, peer_addr, wps_method,
-                                        go_intent,
-                                        wpa_s->pending_interface_addr,
+                                        go_intent, if_addr,
                                         force_freq, persistent_group) < 0)
                        return -1;
                return ret;
        }
-       if (wpas_p2p_start_go_neg(wpa_s, peer_addr, wps_method, go_intent,
-                                 wpa_s->pending_interface_addr,
-                                 force_freq, persistent_group) < 0) {
-               wpas_p2p_remove_pending_group_interface(wpa_s);
+
+       if (wpas_p2p_start_go_neg(wpa_s, peer_addr, wps_method,
+                                 go_intent, if_addr, force_freq,
+                                 persistent_group) < 0) {
+               if (wpa_s->create_p2p_iface)
+                       wpas_p2p_remove_pending_group_interface(wpa_s);
                return -1;
        }
        return ret;
@@ -3093,9 +3012,6 @@ void wpas_p2p_remain_on_channel_cb(struct wpa_supplicant *wpa_s,
 {
        if (wpa_s->global->p2p_disabled || wpa_s->global->p2p == NULL)
                return;
-       wpa_s->roc_waiting_drv_freq = 0;
-       wpa_s->off_channel_freq = freq;
-       wpas_send_action_cb(wpa_s, NULL);
        if (wpa_s->off_channel_freq == wpa_s->pending_listen_freq) {
                p2p_listen_cb(wpa_s->global->p2p, wpa_s->pending_listen_freq,
                              wpa_s->pending_listen_duration);
@@ -3133,7 +3049,6 @@ void wpas_p2p_cancel_remain_on_channel_cb(struct wpa_supplicant *wpa_s,
        wpa_printf(MSG_DEBUG, "P2P: Cancel remain-on-channel callback "
                   "(p2p_long_listen=%d ms pending_action_tx=%p)",
                   wpa_s->p2p_long_listen, wpa_s->pending_action_tx);
-       wpa_s->off_channel_freq = 0;
        if (wpa_s->global->p2p_disabled || wpa_s->global->p2p == NULL)
                return;
        if (p2p_listen_end(wpa_s->global->p2p, freq) > 0)
@@ -3186,9 +3101,9 @@ int wpas_p2p_group_remove(struct wpa_supplicant *wpa_s, const char *ifname)
 }
 
 
-static void wpas_p2p_init_go_params(struct wpa_supplicant *wpa_s,
-                                   struct p2p_go_neg_results *params,
-                                   int freq)
+static int wpas_p2p_init_go_params(struct wpa_supplicant *wpa_s,
+                                  struct p2p_go_neg_results *params,
+                                  int freq)
 {
        u8 bssid[ETH_ALEN];
        int res;
@@ -3249,7 +3164,16 @@ static void wpas_p2p_init_go_params(struct wpa_supplicant *wpa_s,
                wpa_printf(MSG_DEBUG, "P2P: Force GO on the channel we are "
                           "already using on a shared interface");
                params->freq = res;
+       } else if (res > 0 && freq != res &&
+                  !(wpa_s->drv_flags &
+                    WPA_DRIVER_FLAGS_MULTI_CHANNEL_CONCURRENT)) {
+               wpa_printf(MSG_DEBUG, "P2P: Cannot start P2P group on %u MHz "
+                          "while connected on another channel (%u MHz)",
+                          freq, res);
+               return -1;
        }
+
+       return 0;
 }
 
 
@@ -3294,6 +3218,10 @@ int wpas_p2p_group_add(struct wpa_supplicant *wpa_s, int persistent_group,
        if (wpa_s->global->p2p_disabled || wpa_s->global->p2p == NULL)
                return -1;
 
+       /* Make sure we are not running find during connection establishment */
+       wpa_printf(MSG_DEBUG, "P2P: Stop any on-going P2P FIND");
+       wpas_p2p_stop_find(wpa_s);
+
        if (freq == 2) {
                wpa_printf(MSG_DEBUG, "P2P: Request to start GO on 2.4 GHz "
                           "band");
@@ -3340,7 +3268,8 @@ int wpas_p2p_group_add(struct wpa_supplicant *wpa_s, int persistent_group,
                return -1;
        }
 
-       wpas_p2p_init_go_params(wpa_s, &params, freq);
+       if (wpas_p2p_init_go_params(wpa_s, &params, freq))
+               return -1;
        p2p_go_params(wpa_s->global->p2p, &params);
        params.persistent_group = persistent_group;
 
@@ -3423,7 +3352,8 @@ int wpas_p2p_group_add_persistent(struct wpa_supplicant *wpa_s,
        if (ssid->mode != WPAS_MODE_P2P_GO)
                return -1;
 
-       wpas_p2p_init_go_params(wpa_s, &params, freq);
+       if (wpas_p2p_init_go_params(wpa_s, &params, freq))
+               return -1;
 
        params.role_go = 1;
        if (ssid->passphrase == NULL ||
@@ -3454,6 +3384,11 @@ static void wpas_p2p_ie_update(void *ctx, struct wpabuf *beacon_ies,
        struct wpa_supplicant *wpa_s = ctx;
        if (wpa_s->ap_iface) {
                struct hostapd_data *hapd = wpa_s->ap_iface->bss[0];
+               if (!(hapd->conf->p2p & P2P_GROUP_OWNER)) {
+                       wpabuf_free(beacon_ies);
+                       wpabuf_free(proberesp_ies);
+                       return;
+               }
                if (beacon_ies) {
                        wpabuf_free(hapd->p2p_beacon_ie);
                        hapd->p2p_beacon_ie = beacon_ies;
@@ -3474,8 +3409,10 @@ static void wpas_p2p_idle_update(void *ctx, int idle)
        if (!wpa_s->ap_iface)
                return;
        wpa_printf(MSG_DEBUG, "P2P: GO - group %sidle", idle ? "" : "not ");
-       if (idle)
+       if (idle) {
+               wpa_printf(MSG_DEBUG,"Calling set group idle time out from idle_update");
                wpas_p2p_set_group_idle_timeout(wpa_s);
+       }
        else
                eloop_cancel_timeout(wpas_p2p_group_idle_timeout, wpa_s, NULL);
 }
@@ -3497,7 +3434,10 @@ struct p2p_group * wpas_p2p_group_init(struct wpa_supplicant *wpa_s,
        if (cfg == NULL)
                return NULL;
 
-       cfg->persistent_group = persistent_group;
+       if (persistent_group && wpa_s->conf->persistent_reconnect)
+               cfg->persistent_group = 2;
+       else if (persistent_group)
+               cfg->persistent_group = 1;
        os_memcpy(cfg->interface_addr, wpa_s->own_addr, ETH_ALEN);
        if (wpa_s->max_stations &&
            wpa_s->max_stations < wpa_s->conf->max_num_sta)
@@ -3527,6 +3467,9 @@ void wpas_p2p_wps_success(struct wpa_supplicant *wpa_s, const u8 *peer_addr,
                return;
        }
 
+       /* Clear any stored provisioning info */
+       p2p_clear_provisioning_info(wpa_s->global->p2p, peer_addr);
+
        eloop_cancel_timeout(wpas_p2p_group_formation_timeout, wpa_s->parent,
                             NULL);
        if (wpa_s->global->p2p)
@@ -3545,35 +3488,44 @@ void wpas_p2p_wps_failed(struct wpa_supplicant *wpa_s,
                           "provisioning not in progress");
                return;
        }
+
+       if (wpa_s->go_params) {
+               p2p_clear_provisioning_info(
+                       wpa_s->global->p2p,
+                       wpa_s->go_params->peer_interface_addr);
+       }
+
        wpas_notify_p2p_wps_failed(wpa_s, fail);
 }
 
 
 int wpas_p2p_prov_disc(struct wpa_supplicant *wpa_s, const u8 *peer_addr,
-                      const char *config_method)
+                      const char *config_method, int join)
 {
        u16 config_methods;
 
-       if (os_strcmp(config_method, "display") == 0)
+       if (os_strncmp(config_method, "display", 7) == 0)
                config_methods = WPS_CONFIG_DISPLAY;
-       else if (os_strcmp(config_method, "keypad") == 0)
+       else if (os_strncmp(config_method, "keypad", 6) == 0)
                config_methods = WPS_CONFIG_KEYPAD;
-       else if (os_strcmp(config_method, "pbc") == 0 ||
-                os_strcmp(config_method, "pushbutton") == 0)
+       else if (os_strncmp(config_method, "pbc", 3) == 0 ||
+                os_strncmp(config_method, "pushbutton", 10) == 0)
                config_methods = WPS_CONFIG_PUSHBUTTON;
-       else
+       else {
+               wpa_printf(MSG_DEBUG, "P2P: Unknown config method");
                return -1;
+       }
 
        if (wpa_s->drv_flags & WPA_DRIVER_FLAGS_P2P_MGMT) {
                return wpa_drv_p2p_prov_disc_req(wpa_s, peer_addr,
-                                                config_methods);
+                                                config_methods, join);
        }
 
        if (wpa_s->global->p2p == NULL || wpa_s->global->p2p_disabled)
                return -1;
 
        return p2p_prov_disc_req(wpa_s->global->p2p, peer_addr,
-                                config_methods, 0);
+                                config_methods, join, 0);
 }
 
 
@@ -3598,7 +3550,8 @@ static void wpas_p2p_clear_pending_action_tx(struct wpa_supplicant *wpa_s)
 
 int wpas_p2p_find(struct wpa_supplicant *wpa_s, unsigned int timeout,
                  enum p2p_discovery_type type,
-                 unsigned int num_req_dev_types, const u8 *req_dev_types)
+                 unsigned int num_req_dev_types, const u8 *req_dev_types,
+                 const u8 *dev_id)
 {
        wpas_p2p_clear_pending_action_tx(wpa_s);
        wpa_s->p2p_long_listen = 0;
@@ -3609,8 +3562,10 @@ int wpas_p2p_find(struct wpa_supplicant *wpa_s, unsigned int timeout,
        if (wpa_s->global->p2p_disabled || wpa_s->global->p2p == NULL)
                return -1;
 
+       wpa_supplicant_cancel_sched_scan(wpa_s);
+
        return p2p_find(wpa_s->global->p2p, timeout, type,
-                       num_req_dev_types, req_dev_types);
+                       num_req_dev_types, req_dev_types, dev_id);
 }
 
 
@@ -3620,6 +3575,7 @@ void wpas_p2p_stop_find(struct wpa_supplicant *wpa_s)
        wpa_s->p2p_long_listen = 0;
        eloop_cancel_timeout(wpas_p2p_long_listen_timeout, wpa_s, NULL);
        eloop_cancel_timeout(wpas_p2p_join_scan, wpa_s, NULL);
+       wpa_s->p2p_cb_on_scan_complete = 0;
 
        if (wpa_s->drv_flags & WPA_DRIVER_FLAGS_P2P_MGMT) {
                wpa_drv_p2p_stop_find(wpa_s);
@@ -3647,6 +3603,7 @@ int wpas_p2p_listen(struct wpa_supplicant *wpa_s, unsigned int timeout)
        if (wpa_s->global->p2p_disabled || wpa_s->global->p2p == NULL)
                return -1;
 
+       wpa_supplicant_cancel_sched_scan(wpa_s);
        wpas_p2p_clear_pending_action_tx(wpa_s);
 
        if (timeout == 0) {
@@ -3660,6 +3617,14 @@ int wpas_p2p_listen(struct wpa_supplicant *wpa_s, unsigned int timeout)
        eloop_cancel_timeout(wpas_p2p_long_listen_timeout, wpa_s, NULL);
        wpa_s->p2p_long_listen = 0;
 
+       /*
+        * Stop previous find/listen operation to avoid trying to request a new
+        * remain-on-channel operation while the driver is still running the
+        * previous one.
+        */
+       if (wpa_s->global->p2p)
+               p2p_stop_find(wpa_s->global->p2p);
+
        res = wpas_p2p_listen_start(wpa_s, timeout * 1000);
        if (res == 0 && timeout * 1000 > wpa_s->max_remain_on_chan) {
                wpa_s->p2p_long_listen = timeout * 1000;
@@ -3686,9 +3651,6 @@ int wpas_p2p_assoc_req_ie(struct wpa_supplicant *wpa_s, struct wpa_bss *bss,
                return -1;
 
        p2p_ie = wpa_bss_get_vendor_ie_multi(bss, P2P_IE_VENDOR_TYPE);
-#ifdef ANDROID_BRCM_P2P_PATCH
-       if (p2p_ie == NULL) return -1;
-#endif
        ret = p2p_assoc_req_ie(wpa_s->global->p2p, bss->bssid, buf, len,
                               p2p_group, p2p_ie);
        wpabuf_free(p2p_ie);
@@ -3698,6 +3660,7 @@ int wpas_p2p_assoc_req_ie(struct wpa_supplicant *wpa_s, struct wpa_bss *bss,
 
 
 int wpas_p2p_probe_req_rx(struct wpa_supplicant *wpa_s, const u8 *addr,
+                         const u8 *dst, const u8 *bssid,
                          const u8 *ie, size_t ie_len)
 {
        if (wpa_s->global->p2p_disabled)
@@ -3705,7 +3668,8 @@ int wpas_p2p_probe_req_rx(struct wpa_supplicant *wpa_s, const u8 *addr,
        if (wpa_s->global->p2p == NULL)
                return 0;
 
-       return p2p_probe_req_rx(wpa_s->global->p2p, addr, ie, ie_len);
+       return p2p_probe_req_rx(wpa_s->global->p2p, addr, dst, bssid,
+                               ie, ie_len);
 }
 
 
@@ -3730,7 +3694,7 @@ void wpas_p2p_scan_ie(struct wpa_supplicant *wpa_s, struct wpabuf *ies)
        if (wpa_s->global->p2p == NULL)
                return;
 
-       p2p_scan_ie(wpa_s->global->p2p, ies);
+       p2p_scan_ie(wpa_s->global->p2p, ies, NULL);
 }
 
 
@@ -3738,6 +3702,11 @@ void wpas_p2p_group_deinit(struct wpa_supplicant *wpa_s)
 {
        p2p_group_deinit(wpa_s->p2p_group);
        wpa_s->p2p_group = NULL;
+
+       wpa_s->ap_configured_cb = NULL;
+       wpa_s->ap_configured_cb_ctx = NULL;
+       wpa_s->ap_configured_cb_data = NULL;
+       wpa_s->connect_without_scan = NULL;
 }
 
 
@@ -3761,9 +3730,6 @@ int wpas_p2p_invite(struct wpa_supplicant *wpa_s, const u8 *peer_addr,
 {
        enum p2p_invite_role role;
        u8 *bssid = NULL;
-#ifdef ANDROID_BRCM_P2P_PATCH
-       int go;
-#endif
 
        if (ssid->mode == WPAS_MODE_P2P_GO) {
                role = P2P_INVITE_ROLE_GO;
@@ -3772,19 +3738,6 @@ int wpas_p2p_invite(struct wpa_supplicant *wpa_s, const u8 *peer_addr,
                                   "address in invitation command");
                        return -1;
                }
-
-#ifdef ANDROID_BRCM_P2P_PATCH
-       wpa_printf(MSG_DEBUG, "P2P: Check to see if already runnig persistent wpa_s %p grp ssid %s ssid_len %d", wpa_s, ssid->ssid, ssid->ssid_len);
-       if(wpas_get_p2p_group(wpa_s, ssid->ssid, ssid->ssid_len, &go)) {
-               wpa_printf(MSG_DEBUG, "P2P: We are already running persistent group");
-               if (go)
-                       bssid = wpa_s->own_addr;
-               else
-                       wpa_printf(MSG_DEBUG, "P2P: We are running persistent group but go is not set");
-       } else {
-               wpa_printf(MSG_DEBUG, "P2P: We are NOT already running persistent group");
-#endif
-
                if (wpas_p2p_create_iface(wpa_s)) {
                        if (wpas_p2p_add_group_interface(wpa_s,
                                                         WPA_IF_P2P_GO) < 0) {
@@ -3796,9 +3749,6 @@ int wpas_p2p_invite(struct wpa_supplicant *wpa_s, const u8 *peer_addr,
                        bssid = wpa_s->pending_interface_addr;
                } else
                        bssid = wpa_s->own_addr;
-#ifdef ANDROID_BRCM_P2P_PATCH
-       }
-#endif
        } else {
                role = P2P_INVITE_ROLE_CLIENT;
                peer_addr = ssid->bssid;
@@ -3826,6 +3776,7 @@ int wpas_p2p_invite_group(struct wpa_supplicant *wpa_s, const char *ifname,
        enum p2p_invite_role role;
        u8 *bssid = NULL;
        struct wpa_ssid *ssid;
+       int persistent;
 
        for (wpa_s = global->ifaces; wpa_s; wpa_s = wpa_s->next) {
                if (os_strcmp(wpa_s->ifname, ifname) == 0)
@@ -3843,11 +3794,15 @@ int wpas_p2p_invite_group(struct wpa_supplicant *wpa_s, const char *ifname,
                return -1;
        }
 
+       persistent = ssid->p2p_persistent_group &&
+               wpas_p2p_get_persistent(wpa_s->parent, peer_addr,
+                                       ssid->ssid, ssid->ssid_len);
+
        if (ssid->mode == WPAS_MODE_P2P_GO) {
                role = P2P_INVITE_ROLE_ACTIVE_GO;
                bssid = wpa_s->own_addr;
                if (go_dev_addr == NULL)
-                       go_dev_addr = wpa_s->parent->own_addr;
+                       go_dev_addr = wpa_s->global->p2p_dev_addr;
        } else {
                role = P2P_INVITE_ROLE_CLIENT;
                if (wpa_s->wpa_state < WPA_ASSOCIATED) {
@@ -3865,14 +3820,14 @@ int wpas_p2p_invite_group(struct wpa_supplicant *wpa_s, const char *ifname,
        if (wpa_s->drv_flags & WPA_DRIVER_FLAGS_P2P_MGMT)
                return wpa_drv_p2p_invite(wpa_s, peer_addr, role, bssid,
                                          ssid->ssid, ssid->ssid_len,
-                                         go_dev_addr, 0);
+                                         go_dev_addr, persistent);
 
        if (wpa_s->global->p2p_disabled || wpa_s->global->p2p == NULL)
                return -1;
 
        return p2p_invite(wpa_s->global->p2p, peer_addr, role, bssid,
                          ssid->ssid, ssid->ssid_len, wpa_s->assoc_freq,
-                         go_dev_addr, 0);
+                         go_dev_addr, persistent);
 }
 
 
@@ -3883,6 +3838,7 @@ void wpas_p2p_completed(struct wpa_supplicant *wpa_s)
        u8 go_dev_addr[ETH_ALEN];
        int network_id = -1;
        int persistent;
+       int freq;
 
        if (!wpa_s->show_group_started || !ssid)
                return;
@@ -3900,28 +3856,22 @@ void wpas_p2p_completed(struct wpa_supplicant *wpa_s)
        if (wpa_s->global->p2p_group_formation == wpa_s)
                wpa_s->global->p2p_group_formation = NULL;
 
+       freq = wpa_s->current_bss ? wpa_s->current_bss->freq :
+               (int) wpa_s->assoc_freq;
        if (ssid->passphrase == NULL && ssid->psk_set) {
                char psk[65];
                wpa_snprintf_hex(psk, sizeof(psk), ssid->psk, 32);
                wpa_msg(wpa_s->parent, MSG_INFO, P2P_EVENT_GROUP_STARTED
                        "%s client ssid=\"%s\" freq=%d psk=%s go_dev_addr="
                        MACSTR "%s",
-               #ifdef ANDROID_BRCM_P2P_PATCH
-                       wpa_s->ifname, ssid_txt, wpa_s->current_bss->freq, psk,
-               #else
-                       wpa_s->ifname, ssid_txt, ssid->frequency, psk,
-               #endif
+                       wpa_s->ifname, ssid_txt, freq, psk,
                        MAC2STR(go_dev_addr),
                        persistent ? " [PERSISTENT]" : "");
        } else {
                wpa_msg(wpa_s->parent, MSG_INFO, P2P_EVENT_GROUP_STARTED
                        "%s client ssid=\"%s\" freq=%d passphrase=\"%s\" "
                        "go_dev_addr=" MACSTR "%s",
-               #ifdef ANDROID_BRCM_P2P_PATCH
-                       wpa_s->ifname, ssid_txt, wpa_s->current_bss->freq,
-               #else
-                       wpa_s->ifname, ssid_txt, ssid->frequency,
-               #endif
+                       wpa_s->ifname, ssid_txt, freq,
                        ssid->passphrase ? ssid->passphrase : "",
                        MAC2STR(go_dev_addr),
                        persistent ? " [PERSISTENT]" : "");
@@ -3968,18 +3918,26 @@ int wpas_p2p_ext_listen(struct wpa_supplicant *wpa_s, unsigned int period,
 }
 
 
+static int wpas_p2p_is_client(struct wpa_supplicant *wpa_s)
+{
+       return wpa_s->current_ssid != NULL &&
+               wpa_s->current_ssid->p2p_group &&
+               wpa_s->current_ssid->mode == WPAS_MODE_INFRA;
+}
+
+
 static void wpas_p2p_group_idle_timeout(void *eloop_ctx, void *timeout_ctx)
 {
        struct wpa_supplicant *wpa_s = eloop_ctx;
 
-       if (wpa_s->conf->p2p_group_idle == 0) {
+       if (wpa_s->conf->p2p_group_idle == 0 && !wpas_p2p_is_client(wpa_s)) {
                wpa_printf(MSG_DEBUG, "P2P: Ignore group idle timeout - "
                           "disabled");
                return;
        }
 
-       wpa_printf(MSG_DEBUG, "P2P: Group idle timeout reached - terminate "
-                  "group");
+       wpa_printf(MSG_DEBUG, "P2P: Group idle timeout reached - terminate %d"
+                  "group",wpa_s->conf->p2p_group_idle);
        wpa_s->removal_reason = P2P_GROUP_REMOVAL_IDLE_TIMEOUT;
        wpas_p2p_group_delete(wpa_s);
 }
@@ -3987,17 +3945,24 @@ static void wpas_p2p_group_idle_timeout(void *eloop_ctx, void *timeout_ctx)
 
 static void wpas_p2p_set_group_idle_timeout(struct wpa_supplicant *wpa_s)
 {
+       unsigned int timeout;
+
        eloop_cancel_timeout(wpas_p2p_group_idle_timeout, wpa_s, NULL);
-       if (wpa_s->conf->p2p_group_idle == 0)
+       if (wpa_s->current_ssid == NULL || !wpa_s->current_ssid->p2p_group)
                return;
 
-       if (wpa_s->current_ssid == NULL || !wpa_s->current_ssid->p2p_group)
+       timeout = wpa_s->conf->p2p_group_idle;
+       if (wpa_s->current_ssid->mode == WPAS_MODE_INFRA &&
+           (timeout == 0 || timeout > P2P_MAX_CLIENT_IDLE))
+           timeout = P2P_MAX_CLIENT_IDLE;
+
+       if (timeout == 0)
                return;
 
        wpa_printf(MSG_DEBUG, "P2P: Set P2P group idle timeout to %u seconds",
-                  wpa_s->conf->p2p_group_idle);
-       eloop_register_timeout(wpa_s->conf->p2p_group_idle, 0,
-                              wpas_p2p_group_idle_timeout, wpa_s, NULL);
+                  timeout);
+       eloop_register_timeout(timeout, 0, wpas_p2p_group_idle_timeout,
+                              wpa_s, NULL);
 }
 
 
@@ -4012,23 +3977,6 @@ void wpas_p2p_deauth_notif(struct wpa_supplicant *wpa_s, const u8 *bssid,
        p2p_deauth_notif(wpa_s->global->p2p, bssid, reason_code, ie, ie_len);
 }
 
-#ifdef ANDROID_BRCM_P2P_PATCH
-void wpas_p2p_group_remove_notif(struct wpa_supplicant *wpa_s, u16 reason_code)
-{
-       if(wpa_s->global->p2p_disabled)
-               return;
-
-       /* If we are running a P2P Client and we received a Deauth/Disassoc from the Go, then remove 
-          the virutal interface on which the client is running. */
-       if((wpa_s != wpa_s->parent) && (wpa_s->p2p_group_interface == P2P_GROUP_INTERFACE_CLIENT) && (wpa_s->key_mgmt != WPA_KEY_MGMT_WPS)) {
-
-               wpa_printf(MSG_DEBUG, "P2P: [EVENT_DEAUTH] Removing P2P_CLIENT virtual intf.");
-               wpa_supplicant_cancel_scan(wpa_s);
-               wpa_s->removal_reason = P2P_GROUP_REMOVAL_UNAVAILABLE;
-               wpas_p2p_group_delete(wpa_s);
-       }
-}
-#endif
 
 void wpas_p2p_disassoc_notif(struct wpa_supplicant *wpa_s, const u8 *bssid,
                             u16 reason_code, const u8 *ie, size_t ie_len)
@@ -4260,8 +4208,13 @@ void wpas_p2p_notif_connected(struct wpa_supplicant *wpa_s)
 void wpas_p2p_notif_disconnected(struct wpa_supplicant *wpa_s)
 {
        wpas_p2p_disable_cross_connect(wpa_s);
-       if (!wpa_s->ap_iface)
+       if (!wpa_s->ap_iface &&
+           !eloop_is_timeout_registered(wpas_p2p_group_idle_timeout,
+                                        wpa_s, NULL))
+       {
+               wpa_printf(MSG_DEBUG,"Calling set grouple idle_timeout from notif_disconnected");
                wpas_p2p_set_group_idle_timeout(wpa_s);
+       }
 }
 
 
@@ -4451,3 +4404,114 @@ int wpas_p2p_disconnect(struct wpa_supplicant *wpa_s)
 
        return 0;
 }
+
+
+int wpas_p2p_in_progress(struct wpa_supplicant *wpa_s)
+{
+       if (wpa_s->global->p2p_disabled || wpa_s->global->p2p == NULL)
+               return 0;
+
+       return p2p_in_progress(wpa_s->global->p2p);
+}
+
+
+void wpas_p2p_network_removed(struct wpa_supplicant *wpa_s,
+                             struct wpa_ssid *ssid)
+
+{
+       if (wpa_s->p2p_in_provisioning && ssid->p2p_group &&
+           eloop_cancel_timeout(wpas_p2p_group_formation_timeout,
+                                wpa_s->parent, NULL) > 0) {
+               wpa_printf(MSG_DEBUG, "P2P: Canceled group formation due to "
+                          "P2P group network getting removed");
+#ifdef ANDROID_P2P
+               /* Give time for any Pending WPS Frame exchange */
+               eloop_register_timeout(5, 0, wpas_p2p_group_formation_timeout,
+                       wpa_s->parent, NULL);
+#else
+               wpas_p2p_group_formation_timeout(wpa_s->parent, NULL);
+#endif
+       }
+}
+
+
+struct wpa_ssid * wpas_p2p_get_persistent(struct wpa_supplicant *wpa_s,
+                                         const u8 *addr, const u8 *ssid,
+                                         size_t ssid_len)
+{
+       struct wpa_ssid *s;
+       size_t i;
+
+       for (s = wpa_s->conf->ssid; s; s = s->next) {
+               if (s->disabled != 2)
+                       continue;
+               if (ssid &&
+                   (ssid_len != s->ssid_len ||
+                    os_memcmp(ssid, s->ssid, ssid_len) != 0))
+                       continue;
+               if (os_memcmp(s->bssid, addr, ETH_ALEN) == 0)
+                       return s; /* peer is GO in the persistent group */
+               if (s->mode != WPAS_MODE_P2P_GO || s->p2p_client_list == NULL)
+                       continue;
+               for (i = 0; i < s->num_p2p_clients; i++) {
+                       if (os_memcmp(s->p2p_client_list + i * ETH_ALEN,
+                                     addr, ETH_ALEN) == 0)
+                               return s; /* peer is P2P client in persistent
+                                          * group */
+               }
+       }
+
+       return NULL;
+}
+
+
+void wpas_p2p_notify_ap_sta_authorized(struct wpa_supplicant *wpa_s,
+                                      const u8 *addr)
+{
+       if (addr == NULL)
+               return;
+       wpas_p2p_add_persistent_group_client(wpa_s, addr);
+}
+
+#ifdef ANDROID_P2P
+int wpas_p2p_handle_frequency_conflicts(struct wpa_supplicant *wpa_s, int freq)
+{
+       struct wpa_supplicant *iface = NULL;
+       struct p2p_data *p2p = wpa_s->global->p2p;
+
+       for (iface = wpa_s->global->ifaces; iface; iface = iface->next) {
+               if((iface->p2p_group_interface) && (iface->current_ssid) &&
+                       (iface->current_ssid->frequency != freq)) {
+
+                       if (iface->p2p_group_interface == P2P_GROUP_INTERFACE_GO) {
+                                       /* Try to see whether we can move the GO. If it
+                                        * is not possible, remove the GO interface
+                                        */
+                                       if(wpa_drv_switch_channel(iface, freq) == 0) {
+                                                       wpa_printf(MSG_ERROR, "P2P: GO Moved to freq(%d)", freq);
+                                                       iface->current_ssid->frequency = freq;
+                                                       continue;
+                                       }
+                       }
+
+                       /* If GO cannot be moved or if the conflicting interface is a
+                        * P2P Client, remove the interface depending up on the connection
+                        * priority */
+                       if(!wpas_is_p2p_prioritized(wpa_s)) {
+                               /* STA connection has priority over existing 
+                                * P2P connection. So remove the interface */
+                               wpa_printf(MSG_DEBUG, "P2P: Removing P2P connection due to Single channel"
+                                               "concurrent mode frequency conflict");
+                               iface->removal_reason = P2P_GROUP_REMOVAL_FREQ_CONFLICT;
+                               wpas_p2p_group_delete(iface);
+                       } else {
+                               /* Existing connection has the priority. Disable the newly
+                 * selected network and let the application know about it.
+                                */
+                               return -1;
+                       }
+               }
+       }
+       return 0;
+}
+#endif