D-Bus: Add ConfigFile parameter into the interface properties
[mech_eap.git] / wpa_supplicant / dbus / dbus_new.c
index 0dd9502..27b3012 100644 (file)
@@ -24,6 +24,7 @@
 #include "dbus_common_i.h"
 #include "dbus_new_handlers_p2p.h"
 #include "p2p/p2p.h"
+#include "../p2p_supplicant.h"
 
 #ifdef CONFIG_AP /* until needed by something else */
 
@@ -74,8 +75,7 @@ static DBusHandlerResult noc_filter(DBusConnection *conn,
                        return DBUS_HANDLER_RESULT_NOT_YET_HANDLED;
                }
 
-               for (wpa_s = priv->global->ifaces; wpa_s; wpa_s = wpa_s->next)
-               {
+               for (wpa_s = priv->global->ifaces; wpa_s; wpa_s = wpa_s->next) {
                        if (wpa_s->preq_notify_peer != NULL &&
                            os_strcmp(name, wpa_s->preq_notify_peer) == 0 &&
                            (new_owner == NULL || os_strlen(new_owner) == 0)) {
@@ -137,7 +137,7 @@ static void wpas_dbus_signal_interface(struct wpa_supplicant *wpa_s,
        iface = wpa_s->global->dbus;
 
        /* Do nothing if the control interface is not turned on */
-       if (iface == NULL)
+       if (iface == NULL || !wpa_s->dbus_new_path)
                return;
 
        msg = dbus_message_new_signal(WPAS_DBUS_NEW_PATH,
@@ -147,22 +147,14 @@ static void wpas_dbus_signal_interface(struct wpa_supplicant *wpa_s,
 
        dbus_message_iter_init_append(msg, &iter);
        if (!dbus_message_iter_append_basic(&iter, DBUS_TYPE_OBJECT_PATH,
-                                           &wpa_s->dbus_new_path))
-               goto err;
-
-       if (properties) {
-               if (!wpa_dbus_get_object_properties(
-                           iface, wpa_s->dbus_new_path,
-                           WPAS_DBUS_NEW_IFACE_INTERFACE, &iter))
-                       goto err;
-       }
-
-       dbus_connection_send(iface->con, msg, NULL);
-       dbus_message_unref(msg);
-       return;
-
-err:
-       wpa_printf(MSG_ERROR, "dbus: Failed to construct signal");
+                                           &wpa_s->dbus_new_path) ||
+           (properties &&
+            !wpa_dbus_get_object_properties(
+                    iface, wpa_s->dbus_new_path,
+                    WPAS_DBUS_NEW_IFACE_INTERFACE, &iter)))
+               wpa_printf(MSG_ERROR, "dbus: Failed to construct signal");
+       else
+               dbus_connection_send(iface->con, msg, NULL);
        dbus_message_unref(msg);
 }
 
@@ -208,7 +200,7 @@ void wpas_dbus_signal_scan_done(struct wpa_supplicant *wpa_s, int success)
        iface = wpa_s->global->dbus;
 
        /* Do nothing if the control interface is not turned on */
-       if (iface == NULL)
+       if (iface == NULL || !wpa_s->dbus_new_path)
                return;
 
        msg = dbus_message_new_signal(wpa_s->dbus_new_path,
@@ -228,7 +220,7 @@ void wpas_dbus_signal_scan_done(struct wpa_supplicant *wpa_s, int success)
 
 
 /**
- * wpas_dbus_signal_blob - Send a BSS related event signal
+ * wpas_dbus_signal_bss - Send a BSS related event signal
  * @wpa_s: %wpa_supplicant network interface data
  * @bss_obj_path: BSS object path
  * @sig_name: signal name - BSSAdded or BSSRemoved
@@ -247,7 +239,7 @@ static void wpas_dbus_signal_bss(struct wpa_supplicant *wpa_s,
        iface = wpa_s->global->dbus;
 
        /* Do nothing if the control interface is not turned on */
-       if (iface == NULL)
+       if (iface == NULL || !wpa_s->dbus_new_path)
                return;
 
        msg = dbus_message_new_signal(wpa_s->dbus_new_path,
@@ -258,22 +250,14 @@ static void wpas_dbus_signal_bss(struct wpa_supplicant *wpa_s,
 
        dbus_message_iter_init_append(msg, &iter);
        if (!dbus_message_iter_append_basic(&iter, DBUS_TYPE_OBJECT_PATH,
-                                           &bss_obj_path))
-               goto err;
-
-       if (properties) {
-               if (!wpa_dbus_get_object_properties(iface, bss_obj_path,
-                                                   WPAS_DBUS_NEW_IFACE_BSS,
-                                                   &iter))
-                       goto err;
-       }
-
-       dbus_connection_send(iface->con, msg, NULL);
-       dbus_message_unref(msg);
-       return;
-
-err:
-       wpa_printf(MSG_ERROR, "dbus: Failed to construct signal");
+                                           &bss_obj_path) ||
+           (properties &&
+            !wpa_dbus_get_object_properties(iface, bss_obj_path,
+                                            WPAS_DBUS_NEW_IFACE_BSS,
+                                            &iter)))
+               wpa_printf(MSG_ERROR, "dbus: Failed to construct signal");
+       else
+               dbus_connection_send(iface->con, msg, NULL);
        dbus_message_unref(msg);
 }
 
@@ -323,7 +307,7 @@ static void wpas_dbus_signal_blob(struct wpa_supplicant *wpa_s,
        iface = wpa_s->global->dbus;
 
        /* Do nothing if the control interface is not turned on */
-       if (iface == NULL)
+       if (iface == NULL || !wpa_s->dbus_new_path)
                return;
 
        msg = dbus_message_new_signal(wpa_s->dbus_new_path,
@@ -390,7 +374,7 @@ static void wpas_dbus_signal_network(struct wpa_supplicant *wpa_s,
        iface = wpa_s->global->dbus;
 
        /* Do nothing if the control interface is not turned on */
-       if (iface == NULL)
+       if (iface == NULL || !wpa_s->dbus_new_path)
                return;
 
        os_snprintf(net_obj_path, WPAS_DBUS_OBJECT_PATH_MAX,
@@ -406,23 +390,14 @@ static void wpas_dbus_signal_network(struct wpa_supplicant *wpa_s,
        dbus_message_iter_init_append(msg, &iter);
        path = net_obj_path;
        if (!dbus_message_iter_append_basic(&iter, DBUS_TYPE_OBJECT_PATH,
-                                           &path))
-               goto err;
-
-       if (properties) {
-               if (!wpa_dbus_get_object_properties(
-                           iface, net_obj_path, WPAS_DBUS_NEW_IFACE_NETWORK,
-                           &iter))
-                       goto err;
-       }
-
-       dbus_connection_send(iface->con, msg, NULL);
-
-       dbus_message_unref(msg);
-       return;
-
-err:
-       wpa_printf(MSG_ERROR, "dbus: Failed to construct signal");
+                                           &path) ||
+           (properties &&
+            !wpa_dbus_get_object_properties(
+                    iface, net_obj_path, WPAS_DBUS_NEW_IFACE_NETWORK,
+                    &iter)))
+               wpa_printf(MSG_ERROR, "dbus: Failed to construct signal");
+       else
+               dbus_connection_send(iface->con, msg, NULL);
        dbus_message_unref(msg);
 }
 
@@ -492,7 +467,7 @@ void wpas_dbus_signal_network_request(struct wpa_supplicant *wpa_s,
        iface = wpa_s->global->dbus;
 
        /* Do nothing if the control interface is not turned on */
-       if (iface == NULL)
+       if (iface == NULL || !wpa_s->dbus_new_path)
                return;
 
        field = wpa_supplicant_ctrl_req_to_string(rtype, default_txt, &txt);
@@ -512,19 +487,12 @@ void wpas_dbus_signal_network_request(struct wpa_supplicant *wpa_s,
 
        dbus_message_iter_init_append(msg, &iter);
        if (!dbus_message_iter_append_basic(&iter, DBUS_TYPE_OBJECT_PATH,
-                                           &net_ptr))
-               goto err;
-       if (!dbus_message_iter_append_basic(&iter, DBUS_TYPE_STRING, &field))
-               goto err;
-       if (!dbus_message_iter_append_basic(&iter, DBUS_TYPE_STRING, &txt))
-               goto err;
-
-       dbus_connection_send(iface->con, msg, NULL);
-       dbus_message_unref(msg);
-       return;
-
-err:
-       wpa_printf(MSG_ERROR, "dbus: Failed to construct signal");
+                                           &net_ptr) ||
+           !dbus_message_iter_append_basic(&iter, DBUS_TYPE_STRING, &field) ||
+           !dbus_message_iter_append_basic(&iter, DBUS_TYPE_STRING, &txt))
+               wpa_printf(MSG_ERROR, "dbus: Failed to construct signal");
+       else
+               dbus_connection_send(iface->con, msg, NULL);
        dbus_message_unref(msg);
 }
 
@@ -542,6 +510,9 @@ void wpas_dbus_signal_network_enabled_changed(struct wpa_supplicant *wpa_s,
 {
 
        char path[WPAS_DBUS_OBJECT_PATH_MAX];
+
+       if (!wpa_s->dbus_new_path)
+               return;
        os_snprintf(path, WPAS_DBUS_OBJECT_PATH_MAX,
                    "%s/" WPAS_DBUS_NEW_NETWORKS_PART "/%d",
                    wpa_s->dbus_new_path, ssid->id);
@@ -554,6 +525,44 @@ void wpas_dbus_signal_network_enabled_changed(struct wpa_supplicant *wpa_s,
 #ifdef CONFIG_WPS
 
 /**
+ * wpas_dbus_signal_wps_event_pbc_overlap - Signals PBC overlap WPS event
+ * @wpa_s: %wpa_supplicant network interface data
+ *
+ * Sends Event dbus signal with name "pbc-overlap" and empty dict as arguments
+ */
+void wpas_dbus_signal_wps_event_pbc_overlap(struct wpa_supplicant *wpa_s)
+{
+
+       DBusMessage *msg;
+       DBusMessageIter iter, dict_iter;
+       struct wpas_dbus_priv *iface;
+       char *key = "pbc-overlap";
+
+       iface = wpa_s->global->dbus;
+
+       /* Do nothing if the control interface is not turned on */
+       if (iface == NULL || !wpa_s->dbus_new_path)
+               return;
+
+       msg = dbus_message_new_signal(wpa_s->dbus_new_path,
+                                     WPAS_DBUS_NEW_IFACE_WPS, "Event");
+       if (msg == NULL)
+               return;
+
+       dbus_message_iter_init_append(msg, &iter);
+
+       if (!dbus_message_iter_append_basic(&iter, DBUS_TYPE_STRING, &key) ||
+           !wpa_dbus_dict_open_write(&iter, &dict_iter) ||
+           !wpa_dbus_dict_close_write(&iter, &dict_iter))
+               wpa_printf(MSG_ERROR, "dbus: Failed to construct signal");
+       else
+               dbus_connection_send(iface->con, msg, NULL);
+
+       dbus_message_unref(msg);
+}
+
+
+/**
  * wpas_dbus_signal_wps_event_success - Signals Success WPS event
  * @wpa_s: %wpa_supplicant network interface data
  *
@@ -570,7 +579,7 @@ void wpas_dbus_signal_wps_event_success(struct wpa_supplicant *wpa_s)
        iface = wpa_s->global->dbus;
 
        /* Do nothing if the control interface is not turned on */
-       if (iface == NULL)
+       if (iface == NULL || !wpa_s->dbus_new_path)
                return;
 
        msg = dbus_message_new_signal(wpa_s->dbus_new_path,
@@ -594,6 +603,7 @@ void wpas_dbus_signal_wps_event_success(struct wpa_supplicant *wpa_s)
 /**
  * wpas_dbus_signal_wps_event_fail - Signals Fail WPS event
  * @wpa_s: %wpa_supplicant network interface data
+ * @fail: WPS failure information
  *
  * Sends Event dbus signal with name "fail" and dictionary containing
  * "msg field with fail message number (int32) as arguments
@@ -610,7 +620,7 @@ void wpas_dbus_signal_wps_event_fail(struct wpa_supplicant *wpa_s,
        iface = wpa_s->global->dbus;
 
        /* Do nothing if the control interface is not turned on */
-       if (iface == NULL)
+       if (iface == NULL || !wpa_s->dbus_new_path)
                return;
 
        msg = dbus_message_new_signal(wpa_s->dbus_new_path,
@@ -623,6 +633,10 @@ void wpas_dbus_signal_wps_event_fail(struct wpa_supplicant *wpa_s,
        if (!dbus_message_iter_append_basic(&iter, DBUS_TYPE_STRING, &key) ||
            !wpa_dbus_dict_open_write(&iter, &dict_iter) ||
            !wpa_dbus_dict_append_int32(&dict_iter, "msg", fail->msg) ||
+           !wpa_dbus_dict_append_int32(&dict_iter, "config_error",
+                                       fail->config_error) ||
+           !wpa_dbus_dict_append_int32(&dict_iter, "error_indication",
+                                       fail->error_indication) ||
            !wpa_dbus_dict_close_write(&iter, &dict_iter))
                wpa_printf(MSG_ERROR, "dbus: Failed to construct signal");
        else
@@ -635,6 +649,7 @@ void wpas_dbus_signal_wps_event_fail(struct wpa_supplicant *wpa_s,
 /**
  * wpas_dbus_signal_wps_event_m2d - Signals M2D WPS event
  * @wpa_s: %wpa_supplicant network interface data
+ * @m2d: M2D event data information
  *
  * Sends Event dbus signal with name "m2d" and dictionary containing
  * fields of wps_event_m2d structure.
@@ -651,7 +666,7 @@ void wpas_dbus_signal_wps_event_m2d(struct wpa_supplicant *wpa_s,
        iface = wpa_s->global->dbus;
 
        /* Do nothing if the control interface is not turned on */
-       if (iface == NULL)
+       if (iface == NULL || !wpa_s->dbus_new_path)
                return;
 
        msg = dbus_message_new_signal(wpa_s->dbus_new_path,
@@ -700,6 +715,7 @@ void wpas_dbus_signal_wps_event_m2d(struct wpa_supplicant *wpa_s,
 /**
  * wpas_dbus_signal_wps_cred - Signals new credentials
  * @wpa_s: %wpa_supplicant network interface data
+ * @cred: WPS Credential information
  *
  * Sends signal with credentials in directory argument
  */
@@ -717,7 +733,7 @@ void wpas_dbus_signal_wps_cred(struct wpa_supplicant *wpa_s,
        iface = wpa_s->global->dbus;
 
        /* Do nothing if the control interface is not turned on */
-       if (iface == NULL)
+       if (iface == NULL || !wpa_s->dbus_new_path)
                return;
 
        msg = dbus_message_new_signal(wpa_s->dbus_new_path,
@@ -748,15 +764,11 @@ void wpas_dbus_signal_wps_cred(struct wpa_supplicant *wpa_s,
        if (cred->encr_type & WPS_ENCR_AES)
                encr_type[et_num++] = "aes";
 
-       if (wpa_s->current_ssid) {
-               if (!wpa_dbus_dict_append_byte_array(
-                           &dict_iter, "BSSID",
-                           (const char *) wpa_s->current_ssid->bssid,
-                           ETH_ALEN))
-                       goto nomem;
-       }
-
-       if (!wpa_dbus_dict_append_byte_array(&dict_iter, "SSID",
+       if ((wpa_s->current_ssid &&
+            !wpa_dbus_dict_append_byte_array(
+                    &dict_iter, "BSSID",
+                    (const char *) wpa_s->current_ssid->bssid, ETH_ALEN)) ||
+           !wpa_dbus_dict_append_byte_array(&dict_iter, "SSID",
                                             (const char *) cred->ssid,
                                             cred->ssid_len) ||
            !wpa_dbus_dict_append_string_array(&dict_iter, "AuthType",
@@ -783,6 +795,8 @@ nomem:
 
 void wpas_dbus_signal_certification(struct wpa_supplicant *wpa_s,
                                    int depth, const char *subject,
+                                   const char *altsubject[],
+                                   int num_altsubject,
                                    const char *cert_hash,
                                    const struct wpabuf *cert)
 {
@@ -793,7 +807,7 @@ void wpas_dbus_signal_certification(struct wpa_supplicant *wpa_s,
        iface = wpa_s->global->dbus;
 
        /* Do nothing if the control interface is not turned on */
-       if (iface == NULL)
+       if (iface == NULL || !wpa_s->dbus_new_path)
                return;
 
        msg = dbus_message_new_signal(wpa_s->dbus_new_path,
@@ -803,29 +817,23 @@ void wpas_dbus_signal_certification(struct wpa_supplicant *wpa_s,
                return;
 
        dbus_message_iter_init_append(msg, &iter);
-       if (!wpa_dbus_dict_open_write(&iter, &dict_iter))
-               goto nomem;
-
-       if (!wpa_dbus_dict_append_uint32(&dict_iter, "depth", depth) ||
-           !wpa_dbus_dict_append_string(&dict_iter, "subject", subject))
-               goto nomem;
-
-       if (cert_hash &&
-           !wpa_dbus_dict_append_string(&dict_iter, "cert_hash", cert_hash))
-               goto nomem;
-
-       if (cert &&
-           !wpa_dbus_dict_append_byte_array(&dict_iter, "cert",
-                                            wpabuf_head(cert),
-                                            wpabuf_len(cert)))
-               goto nomem;
-
-       if (!wpa_dbus_dict_close_write(&iter, &dict_iter))
-               goto nomem;
-
-       dbus_connection_send(iface->con, msg, NULL);
-
-nomem:
+       if (!wpa_dbus_dict_open_write(&iter, &dict_iter) ||
+           !wpa_dbus_dict_append_uint32(&dict_iter, "depth", depth) ||
+           !wpa_dbus_dict_append_string(&dict_iter, "subject", subject) ||
+           (altsubject && num_altsubject &&
+            !wpa_dbus_dict_append_string_array(&dict_iter, "altsubject",
+                                               altsubject, num_altsubject)) ||
+           (cert_hash &&
+            !wpa_dbus_dict_append_string(&dict_iter, "cert_hash",
+                                         cert_hash)) ||
+           (cert &&
+            !wpa_dbus_dict_append_byte_array(&dict_iter, "cert",
+                                             wpabuf_head(cert),
+                                             wpabuf_len(cert))) ||
+           !wpa_dbus_dict_close_write(&iter, &dict_iter))
+               wpa_printf(MSG_ERROR, "dbus: Failed to construct signal");
+       else
+               dbus_connection_send(iface->con, msg, NULL);
        dbus_message_unref(msg);
 }
 
@@ -840,7 +848,7 @@ void wpas_dbus_signal_eap_status(struct wpa_supplicant *wpa_s,
        iface = wpa_s->global->dbus;
 
        /* Do nothing if the control interface is not turned on */
-       if (iface == NULL)
+       if (iface == NULL || !wpa_s->dbus_new_path)
                return;
 
        msg = dbus_message_new_signal(wpa_s->dbus_new_path,
@@ -851,15 +859,12 @@ void wpas_dbus_signal_eap_status(struct wpa_supplicant *wpa_s,
 
        dbus_message_iter_init_append(msg, &iter);
 
-       if (!dbus_message_iter_append_basic(&iter, DBUS_TYPE_STRING, &status)
-           ||
+       if (!dbus_message_iter_append_basic(&iter, DBUS_TYPE_STRING, &status) ||
            !dbus_message_iter_append_basic(&iter, DBUS_TYPE_STRING,
                                            &parameter))
-               goto nomem;
-
-       dbus_connection_send(iface->con, msg, NULL);
-
-nomem:
+               wpa_printf(MSG_ERROR, "dbus: Failed to construct signal");
+       else
+               dbus_connection_send(iface->con, msg, NULL);
        dbus_message_unref(msg);
 }
 
@@ -886,7 +891,7 @@ static void wpas_dbus_signal_sta(struct wpa_supplicant *wpa_s,
        iface = wpa_s->global->dbus;
 
        /* Do nothing if the control interface is not turned on */
-       if (iface == NULL)
+       if (iface == NULL || !wpa_s->dbus_new_path)
                return;
 
        msg = dbus_message_new_signal(wpa_s->dbus_new_path,
@@ -945,37 +950,41 @@ void wpas_dbus_signal_sta_deauthorized(struct wpa_supplicant *wpa_s,
 void wpas_dbus_signal_p2p_group_removed(struct wpa_supplicant *wpa_s,
                                        const char *role)
 {
-
        DBusMessage *msg;
-       DBusMessageIter iter;
+       DBusMessageIter iter, dict_iter;
        struct wpas_dbus_priv *iface = wpa_s->global->dbus;
-       char *ifname = wpa_s->ifname;
+       struct wpa_supplicant *parent;
 
        /* Do nothing if the control interface is not turned on */
        if (iface == NULL)
                return;
 
-       msg = dbus_message_new_signal(wpa_s->dbus_new_path,
+       parent = wpa_s->parent;
+       if (parent->p2p_mgmt)
+               parent = parent->parent;
+
+       if (!wpa_s->dbus_groupobj_path || !wpa_s->dbus_new_path ||
+           !parent->dbus_new_path)
+               return;
+
+       msg = dbus_message_new_signal(parent->dbus_new_path,
                                      WPAS_DBUS_NEW_IFACE_P2PDEVICE,
                                      "GroupFinished");
        if (msg == NULL)
                return;
 
        dbus_message_iter_init_append(msg, &iter);
-
-       if (!dbus_message_iter_append_basic(&iter, DBUS_TYPE_STRING, &ifname)) {
-               wpa_printf(MSG_ERROR, "dbus: Failed to construct GroupFinished"
-                                     "signal -not enough memory for ifname ");
-               goto err;
-       }
-
-       if (!dbus_message_iter_append_basic(&iter, DBUS_TYPE_STRING, &role))
-               wpa_printf(MSG_ERROR, "dbus: Failed to construct GroupFinished"
-                                     "signal -not enough memory for role ");
+       if (!wpa_dbus_dict_open_write(&iter, &dict_iter) ||
+           !wpa_dbus_dict_append_object_path(&dict_iter,
+                                             "interface_object",
+                                             wpa_s->dbus_new_path) ||
+           !wpa_dbus_dict_append_string(&dict_iter, "role", role) ||
+           !wpa_dbus_dict_append_object_path(&dict_iter, "group_object",
+                                             wpa_s->dbus_groupobj_path) ||
+           !wpa_dbus_dict_close_write(&iter, &dict_iter))
+               wpa_printf(MSG_ERROR, "dbus: Failed to construct signal");
        else
                dbus_connection_send(iface->con, msg, NULL);
-
-err:
        dbus_message_unref(msg);
 }
 
@@ -1021,6 +1030,11 @@ void wpas_dbus_signal_p2p_provision_discovery(struct wpa_supplicant *wpa_s,
        if (iface == NULL)
                return;
 
+       if (wpa_s->p2p_mgmt)
+               wpa_s = wpa_s->parent;
+       if (!wpa_s->dbus_new_path)
+               return;
+
        if (request || !status) {
                if (config_methods & WPS_CONFIG_DISPLAY)
                        _signal = request ?
@@ -1035,9 +1049,10 @@ void wpas_dbus_signal_p2p_provision_discovery(struct wpa_supplicant *wpa_s,
                                   "ProvisionDiscoveryPBCResponse";
                else
                        return; /* Unknown or un-supported method */
-       } else if (!request && status)
+       } else {
                /* Explicit check for failure response */
                _signal = "ProvisionDiscoveryFailure";
+       }
 
        add_pin = ((request && (config_methods & WPS_CONFIG_DISPLAY)) ||
                   (!request && !status &&
@@ -1092,8 +1107,19 @@ error:
 }
 
 
+/**
+ * wpas_dbus_signal_p2p_go_neg_req - Signal P2P GO Negotiation Request RX
+ * @wpa_s: %wpa_supplicant network interface data
+ * @src: Source address of the message triggering this notification
+ * @dev_passwd_id: WPS Device Password Id
+ * @go_intent: Peer's GO Intent value
+ *
+ * Sends signal to notify that a peer P2P Device is requesting group owner
+ * negotiation with us.
+ */
 void wpas_dbus_signal_p2p_go_neg_req(struct wpa_supplicant *wpa_s,
-                                    const u8 *src, u16 dev_passwd_id)
+                                    const u8 *src, u16 dev_passwd_id,
+                                    u8 go_intent)
 {
        DBusMessage *msg;
        DBusMessageIter iter;
@@ -1106,6 +1132,11 @@ void wpas_dbus_signal_p2p_go_neg_req(struct wpa_supplicant *wpa_s,
        if (iface == NULL)
                return;
 
+       if (wpa_s->p2p_mgmt)
+               wpa_s = wpa_s->parent;
+       if (!wpa_s->dbus_new_path)
+               return;
+
        os_snprintf(peer_obj_path, WPAS_DBUS_OBJECT_PATH_MAX,
                    "%s/" WPAS_DBUS_NEW_P2P_PEERS_PART "/" COMPACT_MACSTR,
                    wpa_s->dbus_new_path, MAC2STR(src));
@@ -1122,7 +1153,9 @@ void wpas_dbus_signal_p2p_go_neg_req(struct wpa_supplicant *wpa_s,
        if (!dbus_message_iter_append_basic(&iter, DBUS_TYPE_OBJECT_PATH,
                                            &path) ||
            !dbus_message_iter_append_basic(&iter, DBUS_TYPE_UINT16,
-                                           &dev_passwd_id))
+                                           &dev_passwd_id) ||
+           !dbus_message_iter_append_basic(&iter, DBUS_TYPE_BYTE,
+                                           &go_intent))
                wpa_printf(MSG_ERROR, "dbus: Failed to construct signal");
        else
                dbus_connection_send(iface->con, msg, NULL);
@@ -1137,7 +1170,8 @@ static int wpas_dbus_get_group_obj_path(struct wpa_supplicant *wpa_s,
 {
        char group_name[3];
 
-       if (os_memcmp(ssid->ssid, P2P_WILDCARD_SSID, P2P_WILDCARD_SSID_LEN))
+       if (!wpa_s->dbus_new_path ||
+           os_memcmp(ssid->ssid, P2P_WILDCARD_SSID, P2P_WILDCARD_SSID_LEN))
                return -1;
 
        os_memcpy(group_name, ssid->ssid + P2P_WILDCARD_SSID_LEN, 2);
@@ -1151,78 +1185,136 @@ static int wpas_dbus_get_group_obj_path(struct wpa_supplicant *wpa_s,
 }
 
 
+struct group_changed_data {
+       struct wpa_supplicant *wpa_s;
+       struct p2p_peer_info *info;
+};
+
+
+static int match_group_where_peer_is_client(struct p2p_group *group,
+                                           void *user_data)
+{
+       struct group_changed_data *data = user_data;
+       const struct p2p_group_config *cfg;
+       struct wpa_supplicant *wpa_s_go;
+
+       if (!p2p_group_is_client_connected(group, data->info->p2p_device_addr))
+               return 1;
+
+       cfg = p2p_group_get_config(group);
+
+       wpa_s_go = wpas_get_p2p_go_iface(data->wpa_s, cfg->ssid,
+                                        cfg->ssid_len);
+       if (wpa_s_go != NULL && wpa_s_go == data->wpa_s) {
+               wpas_dbus_signal_peer_groups_changed(
+                       data->wpa_s->p2pdev, data->info->p2p_device_addr);
+               return 0;
+       }
+
+       return 1;
+}
+
+
+static void signal_peer_groups_changed(struct p2p_peer_info *info,
+                                      void *user_data)
+{
+       struct group_changed_data *data = user_data;
+       struct wpa_supplicant *wpa_s_go;
+
+       wpa_s_go = wpas_get_p2p_client_iface(data->wpa_s,
+                                            info->p2p_device_addr);
+       if (wpa_s_go != NULL && wpa_s_go == data->wpa_s) {
+               wpas_dbus_signal_peer_groups_changed(data->wpa_s->p2pdev,
+                                                    info->p2p_device_addr);
+               return;
+       }
+
+       data->info = info;
+       p2p_loop_on_all_groups(data->wpa_s->global->p2p,
+                              match_group_where_peer_is_client, data);
+       data->info = NULL;
+}
+
+
+static void peer_groups_changed(struct wpa_supplicant *wpa_s)
+{
+       struct group_changed_data data;
+
+       os_memset(&data, 0, sizeof(data));
+       data.wpa_s = wpa_s;
+
+       p2p_loop_on_known_peers(wpa_s->global->p2p,
+                               signal_peer_groups_changed, &data);
+}
+
+
 /**
  * wpas_dbus_signal_p2p_group_started - Signals P2P group has
  * started. Emitted when a group is successfully started
  * irrespective of the role (client/GO) of the current device
  *
  * @wpa_s: %wpa_supplicant network interface data
- * @ssid: SSID object
  * @client: this device is P2P client
- * @network_id: network id of the group started, use instead of ssid->id
- *     to account for persistent groups
+ * @persistent: 0 - non persistent group, 1 - persistent group
  */
 void wpas_dbus_signal_p2p_group_started(struct wpa_supplicant *wpa_s,
-                                       const struct wpa_ssid *ssid,
-                                       int client, int network_id)
+                                       int client, int persistent)
 {
        DBusMessage *msg;
        DBusMessageIter iter, dict_iter;
        struct wpas_dbus_priv *iface;
-       char group_obj_path[WPAS_DBUS_OBJECT_PATH_MAX];
+       struct wpa_supplicant *parent;
 
-       iface = wpa_s->parent->global->dbus;
+       parent = wpa_s->parent;
+       if (parent->p2p_mgmt)
+               parent = parent->parent;
+
+       iface = parent->global->dbus;
 
        /* Do nothing if the control interface is not turned on */
-       if (iface == NULL)
+       if (iface == NULL || !parent->dbus_new_path || !wpa_s->dbus_new_path)
                return;
 
-       if (wpas_dbus_get_group_obj_path(wpa_s, ssid, group_obj_path) < 0)
+       if (wpa_s->dbus_groupobj_path == NULL)
                return;
 
        /* New interface has been created for this group */
-       msg = dbus_message_new_signal(wpa_s->parent->dbus_new_path,
+       msg = dbus_message_new_signal(parent->dbus_new_path,
                                      WPAS_DBUS_NEW_IFACE_P2PDEVICE,
                                      "GroupStarted");
-
        if (msg == NULL)
                return;
 
        dbus_message_iter_init_append(msg, &iter);
-       if (!wpa_dbus_dict_open_write(&iter, &dict_iter))
-               goto nomem;
-
        /*
         * In case the device supports creating a separate interface the
         * DBus client will need to know the object path for the interface
         * object this group was created on, so include it here.
         */
-       if (!wpa_dbus_dict_append_object_path(&dict_iter,
-                                       "interface_object",
-                                       wpa_s->dbus_new_path))
-               goto nomem;
-
-       if (!wpa_dbus_dict_append_string(&dict_iter, "role",
-                                        client ? "client" : "GO"))
-               goto nomem;
-
-       if (!wpa_dbus_dict_append_object_path(&dict_iter, "group_object",
-                                            group_obj_path) ||
-          !wpa_dbus_dict_close_write(&iter, &dict_iter))
-               goto nomem;
-
-       dbus_connection_send(iface->con, msg, NULL);
-
-nomem:
+       if (!wpa_dbus_dict_open_write(&iter, &dict_iter) ||
+           !wpa_dbus_dict_append_object_path(&dict_iter,
+                                             "interface_object",
+                                             wpa_s->dbus_new_path) ||
+           !wpa_dbus_dict_append_string(&dict_iter, "role",
+                                        client ? "client" : "GO") ||
+           !wpa_dbus_dict_append_bool(&dict_iter, "persistent", persistent) ||
+           !wpa_dbus_dict_append_object_path(&dict_iter, "group_object",
+                                             wpa_s->dbus_groupobj_path) ||
+           !wpa_dbus_dict_close_write(&iter, &dict_iter)) {
+               wpa_printf(MSG_ERROR, "dbus: Failed to construct signal");
+       } else {
+               dbus_connection_send(iface->con, msg, NULL);
+               if (client)
+                       peer_groups_changed(wpa_s);
+       }
        dbus_message_unref(msg);
 }
 
 
 /**
- *
- * Method to emit GONegotiation Success or Failure signals based
- * on status.
- * @status: Status of the GO neg request. 0 for success, other for errors.
+ * wpas_dbus_signal_p2p_go_neg_resp - Emit GONegotiation Success/Failure signal
+ * @wpa_s: %wpa_supplicant network interface data
+ * @res: Result of the GO Neg Request
  */
 void wpas_dbus_signal_p2p_go_neg_resp(struct wpa_supplicant *wpa_s,
                                      struct p2p_go_neg_results *res)
@@ -1238,9 +1330,12 @@ void wpas_dbus_signal_p2p_go_neg_resp(struct wpa_supplicant *wpa_s,
 
        iface = wpa_s->global->dbus;
 
+       if (wpa_s->p2p_mgmt)
+               wpa_s = wpa_s->parent;
+
        os_memset(freqs, 0, sizeof(freqs));
        /* Do nothing if the control interface is not turned on */
-       if (iface == NULL)
+       if (iface == NULL || !wpa_s->dbus_new_path)
                return;
 
        os_snprintf(peer_obj_path, WPAS_DBUS_OBJECT_PATH_MAX,
@@ -1256,9 +1351,8 @@ void wpas_dbus_signal_p2p_go_neg_resp(struct wpa_supplicant *wpa_s,
                return;
 
        dbus_message_iter_init_append(msg, &iter);
-       if (!wpa_dbus_dict_open_write(&iter, &dict_iter))
-               goto err;
-       if (!wpa_dbus_dict_append_object_path(&dict_iter, "peer_object",
+       if (!wpa_dbus_dict_open_write(&iter, &dict_iter) ||
+           !wpa_dbus_dict_append_object_path(&dict_iter, "peer_object",
                                              path) ||
            !wpa_dbus_dict_append_int32(&dict_iter, "status", res->status))
                goto err;
@@ -1267,15 +1361,10 @@ void wpas_dbus_signal_p2p_go_neg_resp(struct wpa_supplicant *wpa_s,
                int i = 0;
                int freq_list_num = 0;
 
-               if (res->role_go) {
-                       if (!wpa_dbus_dict_append_byte_array(
-                                   &dict_iter, "passphrase",
-                                   (const char *) res->passphrase,
-                                   sizeof(res->passphrase)))
-                               goto err;
-               }
-
-               if (!wpa_dbus_dict_append_string(&dict_iter, "role_go",
+               if ((res->role_go &&
+                    !wpa_dbus_dict_append_string(&dict_iter, "passphrase",
+                                                 res->passphrase)) ||
+                   !wpa_dbus_dict_append_string(&dict_iter, "role_go",
                                                 res->role_go ? "GO" :
                                                 "client") ||
                    !wpa_dbus_dict_append_int32(&dict_iter, "frequency",
@@ -1310,22 +1399,16 @@ void wpas_dbus_signal_p2p_go_neg_resp(struct wpa_supplicant *wpa_s,
                                               DBUS_TYPE_INT32_AS_STRING,
                                               &iter_dict_entry,
                                               &iter_dict_val,
-                                              &iter_dict_array))
-                       goto err;
-
-               if (!dbus_message_iter_append_fixed_array(&iter_dict_array,
+                                              &iter_dict_array) ||
+                   !dbus_message_iter_append_fixed_array(&iter_dict_array,
                                                          DBUS_TYPE_INT32,
                                                          &f_array,
-                                                         freq_list_num))
-                       goto err;
-
-               if (!wpa_dbus_dict_end_array(&dict_iter,
+                                                         freq_list_num) ||
+                   !wpa_dbus_dict_end_array(&dict_iter,
                                             &iter_dict_entry,
                                             &iter_dict_val,
-                                            &iter_dict_array))
-                       goto err;
-
-               if (!wpa_dbus_dict_append_int32(&dict_iter, "persistent_group",
+                                            &iter_dict_array) ||
+                   !wpa_dbus_dict_append_int32(&dict_iter, "persistent_group",
                                                res->persistent_group) ||
                    !wpa_dbus_dict_append_uint32(&dict_iter,
                                                 "peer_config_timeout",
@@ -1343,12 +1426,10 @@ err:
 
 
 /**
- *
- * Method to emit Invitation Result signal based on status and
- * bssid
- * @status: Status of the Invite request. 0 for success, other
- * for errors
- * @bssid : Basic Service Set Identifier
+ * wpas_dbus_signal_p2p_invitation_result - Emit InvitationResult signal
+ * @wpa_s: %wpa_supplicant network interface data
+ * @status: Status of invitation process
+ * @bssid: Basic Service Set Identifier
  */
 void wpas_dbus_signal_p2p_invitation_result(struct wpa_supplicant *wpa_s,
                                            int status, const u8 *bssid)
@@ -1364,6 +1445,11 @@ void wpas_dbus_signal_p2p_invitation_result(struct wpa_supplicant *wpa_s,
        if (iface == NULL)
                return;
 
+       if (wpa_s->p2p_mgmt)
+               wpa_s = wpa_s->parent;
+       if (!wpa_s->dbus_new_path)
+               return;
+
        msg = dbus_message_new_signal(wpa_s->dbus_new_path,
                                      WPAS_DBUS_NEW_IFACE_P2PDEVICE,
                                      "InvitationResult");
@@ -1372,23 +1458,16 @@ void wpas_dbus_signal_p2p_invitation_result(struct wpa_supplicant *wpa_s,
                return;
 
        dbus_message_iter_init_append(msg, &iter);
-       if (!wpa_dbus_dict_open_write(&iter, &dict_iter))
-               goto nomem;
-
-       if (!wpa_dbus_dict_append_int32(&dict_iter, "status", status))
-               goto nomem;
-       if (bssid) {
-               if (!wpa_dbus_dict_append_byte_array(&dict_iter, "BSSID",
-                                                    (const char *) bssid,
-                                                    ETH_ALEN))
-                       goto nomem;
-       }
-       if (!wpa_dbus_dict_close_write(&iter, &dict_iter))
-               goto nomem;
-
-       dbus_connection_send(iface->con, msg, NULL);
-
-nomem:
+       if (!wpa_dbus_dict_open_write(&iter, &dict_iter) ||
+           !wpa_dbus_dict_append_int32(&dict_iter, "status", status) ||
+           (bssid &&
+            !wpa_dbus_dict_append_byte_array(&dict_iter, "BSSID",
+                                             (const char *) bssid,
+                                             ETH_ALEN)) ||
+           !wpa_dbus_dict_close_write(&iter, &dict_iter))
+               wpa_printf(MSG_ERROR, "dbus: Failed to construct signal");
+       else
+               dbus_connection_send(iface->con, msg, NULL);
        dbus_message_unref(msg);
 }
 
@@ -1400,15 +1479,16 @@ nomem:
  * constructed using p2p i/f addr used for connecting.
  *
  * @wpa_s: %wpa_supplicant network interface data
- * @member_addr: addr (p2p i/f) of the peer joining the group
+ * @peer_addr: P2P Device Address of the peer joining the group
  */
 void wpas_dbus_signal_p2p_peer_joined(struct wpa_supplicant *wpa_s,
-                                     const u8 *member)
+                                     const u8 *peer_addr)
 {
        struct wpas_dbus_priv *iface;
        DBusMessage *msg;
        DBusMessageIter iter;
-       char groupmember_obj_path[WPAS_DBUS_OBJECT_PATH_MAX], *path;
+       char peer_obj_path[WPAS_DBUS_OBJECT_PATH_MAX], *path;
+       struct wpa_supplicant *parent;
 
        iface = wpa_s->global->dbus;
 
@@ -1419,10 +1499,16 @@ void wpas_dbus_signal_p2p_peer_joined(struct wpa_supplicant *wpa_s,
        if (!wpa_s->dbus_groupobj_path)
                return;
 
-       os_snprintf(groupmember_obj_path, WPAS_DBUS_OBJECT_PATH_MAX,
-                       "%s/"  WPAS_DBUS_NEW_P2P_GROUPMEMBERS_PART "/"
+       parent = wpa_s->parent;
+       if (parent->p2p_mgmt)
+               parent = parent->parent;
+       if (!parent->dbus_new_path)
+               return;
+
+       os_snprintf(peer_obj_path, WPAS_DBUS_OBJECT_PATH_MAX,
+                       "%s/" WPAS_DBUS_NEW_P2P_PEERS_PART "/"
                        COMPACT_MACSTR,
-                       wpa_s->dbus_groupobj_path, MAC2STR(member));
+                       parent->dbus_new_path, MAC2STR(peer_addr));
 
        msg = dbus_message_new_signal(wpa_s->dbus_groupobj_path,
                                      WPAS_DBUS_NEW_IFACE_P2P_GROUP,
@@ -1431,18 +1517,14 @@ void wpas_dbus_signal_p2p_peer_joined(struct wpa_supplicant *wpa_s,
                return;
 
        dbus_message_iter_init_append(msg, &iter);
-       path = groupmember_obj_path;
+       path = peer_obj_path;
        if (!dbus_message_iter_append_basic(&iter, DBUS_TYPE_OBJECT_PATH,
-                                           &path))
-               goto err;
-
-       dbus_connection_send(iface->con, msg, NULL);
-
-       dbus_message_unref(msg);
-       return;
-
-err:
-       wpa_printf(MSG_ERROR, "dbus: Failed to construct signal");
+                                           &path)) {
+               wpa_printf(MSG_ERROR, "dbus: Failed to construct signal");
+       } else {
+               dbus_connection_send(iface->con, msg, NULL);
+               wpas_dbus_signal_peer_groups_changed(parent, peer_addr);
+       }
        dbus_message_unref(msg);
 }
 
@@ -1451,18 +1533,19 @@ err:
  *
  * Method to emit a signal for a peer disconnecting the group.
  * The signal will carry path to the group member object
- * constructed using p2p i/f addr used for connecting.
+ * constructed using the P2P Device Address of the peer.
  *
  * @wpa_s: %wpa_supplicant network interface data
- * @member_addr: addr (p2p i/f) of the peer joining the group
+ * @peer_addr: P2P Device Address of the peer joining the group
  */
 void wpas_dbus_signal_p2p_peer_disconnected(struct wpa_supplicant *wpa_s,
-                                     const u8 *member)
+                                           const u8 *peer_addr)
 {
        struct wpas_dbus_priv *iface;
        DBusMessage *msg;
        DBusMessageIter iter;
-       char groupmember_obj_path[WPAS_DBUS_OBJECT_PATH_MAX], *path;
+       char peer_obj_path[WPAS_DBUS_OBJECT_PATH_MAX], *path;
+       struct wpa_supplicant *parent;
 
        iface = wpa_s->global->dbus;
 
@@ -1473,10 +1556,16 @@ void wpas_dbus_signal_p2p_peer_disconnected(struct wpa_supplicant *wpa_s,
        if (!wpa_s->dbus_groupobj_path)
                return;
 
-       os_snprintf(groupmember_obj_path, WPAS_DBUS_OBJECT_PATH_MAX,
-                       "%s/"  WPAS_DBUS_NEW_P2P_GROUPMEMBERS_PART "/"
+       parent = wpa_s->parent;
+       if (parent->p2p_mgmt)
+               parent = parent->parent;
+       if (!parent->dbus_new_path)
+               return;
+
+       os_snprintf(peer_obj_path, WPAS_DBUS_OBJECT_PATH_MAX,
+                       "%s/" WPAS_DBUS_NEW_P2P_PEERS_PART "/"
                        COMPACT_MACSTR,
-                       wpa_s->dbus_groupobj_path, MAC2STR(member));
+                       parent->dbus_new_path, MAC2STR(peer_addr));
 
        msg = dbus_message_new_signal(wpa_s->dbus_groupobj_path,
                                      WPAS_DBUS_NEW_IFACE_P2P_GROUP,
@@ -1485,19 +1574,15 @@ void wpas_dbus_signal_p2p_peer_disconnected(struct wpa_supplicant *wpa_s,
                return;
 
        dbus_message_iter_init_append(msg, &iter);
-       path = groupmember_obj_path;
+       path = peer_obj_path;
        if (!dbus_message_iter_append_basic(&iter, DBUS_TYPE_OBJECT_PATH,
-                                           &path))
-               goto err;
-
-       dbus_connection_send(iface->con, msg, NULL);
-
-       dbus_message_unref(msg);
-       return;
-
-err:
-       wpa_printf(MSG_ERROR, "dbus: Failed to construct PeerDisconnected "
-                             "signal");
+                                           &path)) {
+               wpa_printf(MSG_ERROR,
+                          "dbus: Failed to construct PeerDisconnected signal");
+       } else {
+               dbus_connection_send(iface->con, msg, NULL);
+               wpas_dbus_signal_peer_groups_changed(parent, peer_addr);
+       }
        dbus_message_unref(msg);
 }
 
@@ -1524,22 +1609,28 @@ void wpas_dbus_signal_p2p_sd_request(struct wpa_supplicant *wpa_s,
        DBusMessageIter iter, dict_iter;
        struct wpas_dbus_priv *iface;
        char peer_obj_path[WPAS_DBUS_OBJECT_PATH_MAX], *path;
+
        iface = wpa_s->global->dbus;
 
        /* Do nothing if the control interface is not turned on */
        if (iface == NULL)
                return;
 
+       if (wpa_s->p2p_mgmt)
+               wpa_s = wpa_s->parent;
+       if (!wpa_s->dbus_new_path)
+               return;
+
+       /* Check if this is a known peer */
+       if (!p2p_peer_known(wpa_s->global->p2p, sa))
+               return;
+
        msg = dbus_message_new_signal(wpa_s->dbus_new_path,
                                      WPAS_DBUS_NEW_IFACE_P2PDEVICE,
                                      "ServiceDiscoveryRequest");
        if (msg == NULL)
                return;
 
-       /* Check if this is a known peer */
-       if (!p2p_peer_known(wpa_s->global->p2p, sa))
-               goto error;
-
        os_snprintf(peer_obj_path, WPAS_DBUS_OBJECT_PATH_MAX,
                    "%s/" WPAS_DBUS_NEW_P2P_PEERS_PART "/"
                    COMPACT_MACSTR, wpa_s->dbus_new_path, MAC2STR(sa));
@@ -1547,11 +1638,8 @@ void wpas_dbus_signal_p2p_sd_request(struct wpa_supplicant *wpa_s,
        path = peer_obj_path;
 
        dbus_message_iter_init_append(msg, &iter);
-       if (!wpa_dbus_dict_open_write(&iter, &dict_iter))
-               goto error;
-
-
-       if (!wpa_dbus_dict_append_object_path(&dict_iter, "peer_object",
+       if (!wpa_dbus_dict_open_write(&iter, &dict_iter) ||
+           !wpa_dbus_dict_append_object_path(&dict_iter, "peer_object",
                                              path) ||
            !wpa_dbus_dict_append_int32(&dict_iter, "frequency", freq) ||
            !wpa_dbus_dict_append_int32(&dict_iter, "dialog_token",
@@ -1562,13 +1650,9 @@ void wpas_dbus_signal_p2p_sd_request(struct wpa_supplicant *wpa_s,
                                             (const char *) tlvs,
                                             tlvs_len) ||
            !wpa_dbus_dict_close_write(&iter, &dict_iter))
-               goto error;
-
-       dbus_connection_send(iface->con, msg, NULL);
-       dbus_message_unref(msg);
-       return;
-error:
-       wpa_printf(MSG_ERROR, "dbus: Failed to construct signal");
+               wpa_printf(MSG_ERROR, "dbus: Failed to construct signal");
+       else
+               dbus_connection_send(iface->con, msg, NULL);
        dbus_message_unref(msg);
 }
 
@@ -1593,21 +1677,27 @@ void wpas_dbus_signal_p2p_sd_response(struct wpa_supplicant *wpa_s,
        DBusMessageIter iter, dict_iter;
        struct wpas_dbus_priv *iface;
        char peer_obj_path[WPAS_DBUS_OBJECT_PATH_MAX], *path;
+
        iface = wpa_s->global->dbus;
 
        /* Do nothing if the control interface is not turned on */
        if (iface == NULL)
                return;
 
-       msg = dbus_message_new_signal(wpa_s->dbus_new_path,
-                                     WPAS_DBUS_NEW_IFACE_P2PDEVICE,
-                               "ServiceDiscoveryResponse");
-       if (msg == NULL)
+       if (wpa_s->p2p_mgmt)
+               wpa_s = wpa_s->parent;
+       if (!wpa_s->dbus_new_path)
                return;
 
        /* Check if this is a known peer */
        if (!p2p_peer_known(wpa_s->global->p2p, sa))
-               goto error;
+               return;
+
+       msg = dbus_message_new_signal(wpa_s->dbus_new_path,
+                                     WPAS_DBUS_NEW_IFACE_P2PDEVICE,
+                                     "ServiceDiscoveryResponse");
+       if (msg == NULL)
+               return;
 
        os_snprintf(peer_obj_path, WPAS_DBUS_OBJECT_PATH_MAX,
                    "%s/" WPAS_DBUS_NEW_P2P_PEERS_PART "/"
@@ -1616,10 +1706,8 @@ void wpas_dbus_signal_p2p_sd_response(struct wpa_supplicant *wpa_s,
        path = peer_obj_path;
 
        dbus_message_iter_init_append(msg, &iter);
-       if (!wpa_dbus_dict_open_write(&iter, &dict_iter))
-               goto error;
-
-       if (!wpa_dbus_dict_append_object_path(&dict_iter, "peer_object",
+       if (!wpa_dbus_dict_open_write(&iter, &dict_iter) ||
+           !wpa_dbus_dict_append_object_path(&dict_iter, "peer_object",
                                              path) ||
            !wpa_dbus_dict_append_uint16(&dict_iter, "update_indicator",
                                         update_indic) ||
@@ -1627,17 +1715,13 @@ void wpas_dbus_signal_p2p_sd_response(struct wpa_supplicant *wpa_s,
                                             (const char *) tlvs,
                                             tlvs_len) ||
            !wpa_dbus_dict_close_write(&iter, &dict_iter))
-               goto error;
-
-
-       dbus_connection_send(iface->con, msg, NULL);
-       dbus_message_unref(msg);
-       return;
-error:
-       wpa_printf(MSG_ERROR, "dbus: Failed to construct signal");
+               wpa_printf(MSG_ERROR, "dbus: Failed to construct signal");
+       else
+               dbus_connection_send(iface->con, msg, NULL);
        dbus_message_unref(msg);
 }
 
+
 /**
  * wpas_dbus_signal_persistent_group - Send a persistent group related
  *     event signal
@@ -1663,6 +1747,11 @@ static void wpas_dbus_signal_persistent_group(struct wpa_supplicant *wpa_s,
        if (iface == NULL)
                return;
 
+       if (wpa_s->p2p_mgmt)
+               wpa_s = wpa_s->parent;
+       if (!wpa_s->dbus_new_path)
+               return;
+
        os_snprintf(pgrp_obj_path, WPAS_DBUS_OBJECT_PATH_MAX,
                    "%s/" WPAS_DBUS_NEW_PERSISTENT_GROUPS_PART "/%u",
                    wpa_s->dbus_new_path, id);
@@ -1676,24 +1765,16 @@ static void wpas_dbus_signal_persistent_group(struct wpa_supplicant *wpa_s,
        dbus_message_iter_init_append(msg, &iter);
        path = pgrp_obj_path;
        if (!dbus_message_iter_append_basic(&iter, DBUS_TYPE_OBJECT_PATH,
-                                           &path))
-               goto err;
-
-       if (properties) {
-               if (!wpa_dbus_get_object_properties(
-                           iface, pgrp_obj_path,
-                           WPAS_DBUS_NEW_IFACE_PERSISTENT_GROUP, &iter))
-                       goto err;
-       }
-
-       dbus_connection_send(iface->con, msg, NULL);
+                                           &path) ||
+           (properties &&
+            !wpa_dbus_get_object_properties(
+                    iface, pgrp_obj_path,
+                    WPAS_DBUS_NEW_IFACE_PERSISTENT_GROUP, &iter)))
+               wpa_printf(MSG_ERROR, "dbus: Failed to construct signal");
+       else
+               dbus_connection_send(iface->con, msg, NULL);
 
        dbus_message_unref(msg);
-       return;
-
-err:
-       wpa_printf(MSG_ERROR, "dbus: Failed to construct signal");
-       dbus_message_unref(msg);
 }
 
 
@@ -1732,6 +1813,7 @@ static void wpas_dbus_signal_persistent_group_removed(
 /**
  * wpas_dbus_signal_p2p_wps_failed - Signals WpsFailed event
  * @wpa_s: %wpa_supplicant network interface data
+ * @fail: WPS failure information
  *
  * Sends Event dbus signal with name "fail" and dictionary containing
  * "msg" field with fail message number (int32) as arguments
@@ -1751,6 +1833,11 @@ void wpas_dbus_signal_p2p_wps_failed(struct wpa_supplicant *wpa_s,
        if (iface == NULL)
                return;
 
+       if (wpa_s->p2p_mgmt)
+               wpa_s = wpa_s->parent;
+
+       if (!wpa_s->dbus_new_path)
+               return;
        msg = dbus_message_new_signal(wpa_s->dbus_new_path,
                                      WPAS_DBUS_NEW_IFACE_P2PDEVICE,
                                      "WpsFailed");
@@ -1772,7 +1859,100 @@ void wpas_dbus_signal_p2p_wps_failed(struct wpa_supplicant *wpa_s,
        dbus_message_unref(msg);
 }
 
-#endif /*CONFIG_P2P*/
+
+/**
+ * wpas_dbus_signal_p2p_group_formation_failure - Signals GroupFormationFailure event
+ * @wpa_s: %wpa_supplicant network interface data
+ * @reason: indicates the reason code for group formation failure
+ *
+ * Sends Event dbus signal and string reason code when available.
+ */
+void wpas_dbus_signal_p2p_group_formation_failure(struct wpa_supplicant *wpa_s,
+                                                 const char *reason)
+{
+       DBusMessage *msg;
+       struct wpas_dbus_priv *iface;
+
+       iface = wpa_s->global->dbus;
+
+       /* Do nothing if the control interface is not turned on */
+       if (iface == NULL)
+               return;
+
+       msg = dbus_message_new_signal(wpa_s->dbus_new_path,
+                                     WPAS_DBUS_NEW_IFACE_P2PDEVICE,
+                                     "GroupFormationFailure");
+       if (msg == NULL)
+               return;
+
+       if (dbus_message_append_args(msg, DBUS_TYPE_STRING, &reason,
+                                    DBUS_TYPE_INVALID))
+               dbus_connection_send(iface->con, msg, NULL);
+       else
+               wpa_printf(MSG_ERROR, "dbus: Failed to construct signal");
+
+       dbus_message_unref(msg);
+}
+
+
+/**
+ * wpas_dbus_signal_p2p_invitation_received - Emit InvitationReceived signal
+ * @wpa_s: %wpa_supplicant network interface data
+ * @sa: Source address of the Invitation Request
+ * @dev_add: GO Device Address
+ * @bssid: P2P Group BSSID or %NULL if not received
+ * @id: Persistent group id or %0 if not persistent group
+ * @op_freq: Operating frequency for the group
+ */
+
+void wpas_dbus_signal_p2p_invitation_received(struct wpa_supplicant *wpa_s,
+                                             const u8 *sa, const u8 *dev_addr,
+                                             const u8 *bssid, int id,
+                                             int op_freq)
+{
+       DBusMessage *msg;
+       DBusMessageIter iter, dict_iter;
+       struct wpas_dbus_priv *iface;
+
+       iface = wpa_s->global->dbus;
+
+       /* Do nothing if the control interface is not turned on */
+       if (iface == NULL)
+               return;
+
+       msg = dbus_message_new_signal(wpa_s->dbus_new_path,
+                                     WPAS_DBUS_NEW_IFACE_P2PDEVICE,
+                                     "InvitationReceived");
+       if (msg == NULL)
+               return;
+
+       dbus_message_iter_init_append(msg, &iter);
+       if (!wpa_dbus_dict_open_write(&iter, &dict_iter) ||
+           (sa &&
+            !wpa_dbus_dict_append_byte_array(&dict_iter, "sa",
+                                             (const char *) sa, ETH_ALEN)) ||
+           (dev_addr &&
+            !wpa_dbus_dict_append_byte_array(&dict_iter, "go_dev_addr",
+                                             (const char *) dev_addr,
+                                             ETH_ALEN)) ||
+           (bssid &&
+            !wpa_dbus_dict_append_byte_array(&dict_iter, "bssid",
+                                             (const char *) bssid,
+                                             ETH_ALEN)) ||
+           (id &&
+            !wpa_dbus_dict_append_int32(&dict_iter, "persistent_id", id)) ||
+           !wpa_dbus_dict_append_int32(&dict_iter, "op_freq", op_freq) ||
+           !wpa_dbus_dict_close_write(&iter, &dict_iter)) {
+               dbus_message_unref(msg);
+               return;
+       }
+
+       dbus_connection_send(iface->con, msg, NULL);
+       dbus_message_unref(msg);
+}
+
+
+#endif /* CONFIG_P2P */
 
 
 /**
@@ -1819,6 +1999,10 @@ void wpas_dbus_signal_prop_changed(struct wpa_supplicant *wpa_s,
                prop = "DisconnectReason";
                flush = TRUE;
                break;
+       case WPAS_DBUS_PROP_ASSOC_STATUS_CODE:
+               prop = "AssocStatusCode";
+               flush = TRUE;
+               break;
        default:
                wpa_printf(MSG_ERROR, "dbus: %s: Unknown Property value %d",
                           __func__, property);
@@ -1851,6 +2035,9 @@ void wpas_dbus_bss_signal_prop_changed(struct wpa_supplicant *wpa_s,
        char path[WPAS_DBUS_OBJECT_PATH_MAX];
        char *prop;
 
+       if (!wpa_s->dbus_new_path)
+               return;
+
        switch (property) {
        case WPAS_DBUS_BSS_PROP_SIGNAL:
                prop = "Signal";
@@ -1879,6 +2066,9 @@ void wpas_dbus_bss_signal_prop_changed(struct wpa_supplicant *wpa_s,
        case WPAS_DBUS_BSS_PROP_IES:
                prop = "IEs";
                break;
+       case WPAS_DBUS_BSS_PROP_AGE:
+               prop = "Age";
+               break;
        default:
                wpa_printf(MSG_ERROR, "dbus: %s: Unknown Property value %d",
                           __func__, property);
@@ -1963,7 +2153,7 @@ static void wpas_dbus_register(struct wpa_dbus_object_desc *obj_desc,
 
 static const struct wpa_dbus_method_desc wpas_dbus_global_methods[] = {
        { "CreateInterface", WPAS_DBUS_NEW_INTERFACE,
-         (WPADBusMethodHandler) &wpas_dbus_handler_create_interface,
+         (WPADBusMethodHandler) wpas_dbus_handler_create_interface,
          {
                  { "args", "a{sv}", ARG_IN },
                  { "path", "o", ARG_OUT },
@@ -1971,49 +2161,68 @@ static const struct wpa_dbus_method_desc wpas_dbus_global_methods[] = {
          }
        },
        { "RemoveInterface", WPAS_DBUS_NEW_INTERFACE,
-         (WPADBusMethodHandler) &wpas_dbus_handler_remove_interface,
+         (WPADBusMethodHandler) wpas_dbus_handler_remove_interface,
          {
                  { "path", "o", ARG_IN },
                  END_ARGS
          }
        },
        { "GetInterface", WPAS_DBUS_NEW_INTERFACE,
-         (WPADBusMethodHandler) &wpas_dbus_handler_get_interface,
+         (WPADBusMethodHandler) wpas_dbus_handler_get_interface,
          {
                  { "ifname", "s", ARG_IN },
                  { "path", "o", ARG_OUT },
                  END_ARGS
          }
        },
+       { "ExpectDisconnect", WPAS_DBUS_NEW_INTERFACE,
+         (WPADBusMethodHandler) wpas_dbus_handler_expect_disconnect,
+         {
+               END_ARGS
+         }
+       },
        { NULL, NULL, NULL, { END_ARGS } }
 };
 
 static const struct wpa_dbus_property_desc wpas_dbus_global_properties[] = {
        { "DebugLevel", WPAS_DBUS_NEW_INTERFACE, "s",
          wpas_dbus_getter_debug_level,
-         wpas_dbus_setter_debug_level
+         wpas_dbus_setter_debug_level,
+         NULL
        },
        { "DebugTimestamp", WPAS_DBUS_NEW_INTERFACE, "b",
          wpas_dbus_getter_debug_timestamp,
-         wpas_dbus_setter_debug_timestamp
+         wpas_dbus_setter_debug_timestamp,
+         NULL
        },
        { "DebugShowKeys", WPAS_DBUS_NEW_INTERFACE, "b",
          wpas_dbus_getter_debug_show_keys,
-         wpas_dbus_setter_debug_show_keys
+         wpas_dbus_setter_debug_show_keys,
+         NULL
        },
        { "Interfaces", WPAS_DBUS_NEW_INTERFACE, "ao",
          wpas_dbus_getter_interfaces,
+         NULL,
          NULL
        },
        { "EapMethods", WPAS_DBUS_NEW_INTERFACE, "as",
          wpas_dbus_getter_eap_methods,
+         NULL,
          NULL
        },
        { "Capabilities", WPAS_DBUS_NEW_INTERFACE, "as",
          wpas_dbus_getter_global_capabilities,
+         NULL,
+         NULL
+       },
+#ifdef CONFIG_WIFI_DISPLAY
+       { "WFDIEs", WPAS_DBUS_NEW_INTERFACE, "ay",
+         wpas_dbus_getter_global_wfd_ies,
+         wpas_dbus_setter_global_wfd_ies,
          NULL
        },
-       { NULL, NULL, NULL, NULL, NULL }
+#endif /* CONFIG_WIFI_DISPLAY */
+       { NULL, NULL, NULL, NULL, NULL, NULL }
 };
 
 static const struct wpa_dbus_signal_desc wpas_dbus_global_signals[] = {
@@ -2030,14 +2239,6 @@ static const struct wpa_dbus_signal_desc wpas_dbus_global_signals[] = {
                  END_ARGS
          }
        },
-       { "NetworkRequest", WPAS_DBUS_NEW_IFACE_INTERFACE,
-         {
-                 { "path", "o", ARG_OUT },
-                 { "field", "s", ARG_OUT },
-                 { "text", "s", ARG_OUT },
-                 END_ARGS
-         }
-       },
        /* Deprecated: use org.freedesktop.DBus.Properties.PropertiesChanged */
        { "PropertiesChanged", WPAS_DBUS_NEW_INTERFACE,
          {
@@ -2049,12 +2250,50 @@ static const struct wpa_dbus_signal_desc wpas_dbus_global_signals[] = {
 };
 
 
+static char * uscore_to_dbus(const char *uscore)
+{
+       const char *p = uscore;
+       char *str, *s;
+       dbus_bool_t last_was_uscore = TRUE;
+
+       s = str = os_zalloc(os_strlen(uscore) + 1);
+       if (!str)
+               return NULL;
+       while (p && *p) {
+               if (*p == '_') {
+                       last_was_uscore = TRUE;
+               } else {
+                       *s++ = last_was_uscore ? toupper(*p) : *p;
+                       last_was_uscore = FALSE;
+               }
+               p++;
+       }
+
+       return str;
+}
+
+
+static int wpa_dbus_ctrl_iface_props_init(struct wpas_dbus_priv *priv);
+
+
+static void wpa_dbus_ctrl_iface_props_deinit(struct wpas_dbus_priv *priv)
+{
+       int idx = priv->globals_start;
+
+       /* Free all allocated property values */
+       while (priv->all_interface_properties[idx].dbus_property)
+               os_free((char *)
+                       priv->all_interface_properties[idx++].dbus_property);
+       os_free((char *) priv->all_interface_properties);
+}
+
+
 /**
  * wpas_dbus_ctrl_iface_init - Initialize dbus control interface
  * @global: Pointer to global data from wpa_supplicant_init()
  * Returns: 0 on success or -1 on failure
  *
- * Initialize the dbus control interface for wpa_supplicantand and start
+ * Initialize the dbus control interface for wpa_supplicant and start
  * receiving commands from external programs over the bus.
  */
 int wpas_dbus_ctrl_iface_init(struct wpas_dbus_priv *priv)
@@ -2062,11 +2301,18 @@ int wpas_dbus_ctrl_iface_init(struct wpas_dbus_priv *priv)
        struct wpa_dbus_object_desc *obj_desc;
        int ret;
 
+       ret = wpa_dbus_ctrl_iface_props_init(priv);
+       if (ret < 0) {
+               wpa_printf(MSG_ERROR,
+                          "dbus: Not enough memory to init interface properties");
+               return -1;
+       }
+
        obj_desc = os_zalloc(sizeof(struct wpa_dbus_object_desc));
        if (!obj_desc) {
-               wpa_printf(MSG_ERROR, "Not enough memory "
-                          "to create object description");
-               return -1;
+               wpa_printf(MSG_ERROR,
+                          "Not enough memory to create object description");
+               goto error;
        }
 
        wpas_dbus_register(obj_desc, priv->global, NULL,
@@ -2079,31 +2325,36 @@ int wpas_dbus_ctrl_iface_init(struct wpas_dbus_priv *priv)
        ret = wpa_dbus_ctrl_iface_init(priv, WPAS_DBUS_NEW_PATH,
                                       WPAS_DBUS_NEW_SERVICE,
                                       obj_desc);
-       if (ret < 0)
+       if (ret < 0) {
                free_dbus_object_desc(obj_desc);
-       else
-               priv->dbus_new_initialized = 1;
+               goto error;
+       }
 
-       return ret;
+       priv->dbus_new_initialized = 1;
+       return 0;
+
+error:
+       wpa_dbus_ctrl_iface_props_deinit(priv);
+       return -1;
 }
 
 
 /**
  * wpas_dbus_ctrl_iface_deinit - Deinitialize dbus ctrl interface for
  * wpa_supplicant
- * @iface: Pointer to dbus private data from wpas_dbus_init()
+ * @priv: Pointer to dbus private data from wpas_dbus_init()
  *
  * Deinitialize the dbus control interface that was initialized with
  * wpas_dbus_ctrl_iface_init().
  */
-void wpas_dbus_ctrl_iface_deinit(struct wpas_dbus_priv *iface)
+void wpas_dbus_ctrl_iface_deinit(struct wpas_dbus_priv *priv)
 {
-       if (!iface->dbus_new_initialized)
+       if (!priv->dbus_new_initialized)
                return;
        wpa_printf(MSG_DEBUG, "dbus: Unregister D-Bus object '%s'",
                   WPAS_DBUS_NEW_PATH);
-       dbus_connection_unregister_object_path(iface->con,
-                                              WPAS_DBUS_NEW_PATH);
+       dbus_connection_unregister_object_path(priv->con, WPAS_DBUS_NEW_PATH);
+       wpa_dbus_ctrl_iface_props_deinit(priv);
 }
 
 
@@ -2116,13 +2367,15 @@ static void wpa_dbus_free(void *ptr)
 static const struct wpa_dbus_property_desc wpas_dbus_network_properties[] = {
        { "Properties", WPAS_DBUS_NEW_IFACE_NETWORK, "a{sv}",
          wpas_dbus_getter_network_properties,
-         wpas_dbus_setter_network_properties
+         wpas_dbus_setter_network_properties,
+         NULL
        },
        { "Enabled", WPAS_DBUS_NEW_IFACE_NETWORK, "b",
          wpas_dbus_getter_enabled,
-         wpas_dbus_setter_enabled
+         wpas_dbus_setter_enabled,
+         NULL
        },
-       { NULL, NULL, NULL, NULL, NULL }
+       { NULL, NULL, NULL, NULL, NULL, NULL }
 };
 
 
@@ -2165,7 +2418,7 @@ int wpas_dbus_register_network(struct wpa_supplicant *wpa_s,
 #endif /* CONFIG_P2P */
 
        /* Do nothing if the control interface is not turned on */
-       if (wpa_s == NULL || wpa_s->global == NULL)
+       if (wpa_s == NULL || wpa_s->global == NULL || !wpa_s->dbus_new_path)
                return 0;
        ctrl_iface = wpa_s->global->dbus;
        if (ctrl_iface == NULL)
@@ -2179,16 +2432,16 @@ int wpas_dbus_register_network(struct wpa_supplicant *wpa_s,
                   net_obj_path);
        obj_desc = os_zalloc(sizeof(struct wpa_dbus_object_desc));
        if (!obj_desc) {
-               wpa_printf(MSG_ERROR, "Not enough memory "
-                          "to create object description");
+               wpa_printf(MSG_ERROR,
+                          "Not enough memory to create object description");
                goto err;
        }
 
        /* allocate memory for handlers arguments */
        arg = os_zalloc(sizeof(struct network_handler_args));
        if (!arg) {
-               wpa_printf(MSG_ERROR, "Not enough memory "
-                          "to create arguments for method");
+               wpa_printf(MSG_ERROR,
+                          "Not enough memory to create arguments for method");
                goto err;
        }
 
@@ -2261,49 +2514,65 @@ int wpas_dbus_unregister_network(struct wpa_supplicant *wpa_s, int nid)
 static const struct wpa_dbus_property_desc wpas_dbus_bss_properties[] = {
        { "SSID", WPAS_DBUS_NEW_IFACE_BSS, "ay",
          wpas_dbus_getter_bss_ssid,
+         NULL,
          NULL
        },
        { "BSSID", WPAS_DBUS_NEW_IFACE_BSS, "ay",
          wpas_dbus_getter_bss_bssid,
+         NULL,
          NULL
        },
        { "Privacy", WPAS_DBUS_NEW_IFACE_BSS, "b",
          wpas_dbus_getter_bss_privacy,
+         NULL,
          NULL
        },
        { "Mode", WPAS_DBUS_NEW_IFACE_BSS, "s",
          wpas_dbus_getter_bss_mode,
+         NULL,
          NULL
        },
        { "Signal", WPAS_DBUS_NEW_IFACE_BSS, "n",
          wpas_dbus_getter_bss_signal,
+         NULL,
          NULL
        },
        { "Frequency", WPAS_DBUS_NEW_IFACE_BSS, "q",
          wpas_dbus_getter_bss_frequency,
+         NULL,
          NULL
        },
        { "Rates", WPAS_DBUS_NEW_IFACE_BSS, "au",
          wpas_dbus_getter_bss_rates,
+         NULL,
          NULL
        },
        { "WPA", WPAS_DBUS_NEW_IFACE_BSS, "a{sv}",
          wpas_dbus_getter_bss_wpa,
+         NULL,
          NULL
        },
        { "RSN", WPAS_DBUS_NEW_IFACE_BSS, "a{sv}",
          wpas_dbus_getter_bss_rsn,
+         NULL,
          NULL
        },
        { "WPS", WPAS_DBUS_NEW_IFACE_BSS, "a{sv}",
          wpas_dbus_getter_bss_wps,
+         NULL,
          NULL
        },
        { "IEs", WPAS_DBUS_NEW_IFACE_BSS, "ay",
          wpas_dbus_getter_bss_ies,
+         NULL,
+         NULL
+       },
+       { "Age", WPAS_DBUS_NEW_IFACE_BSS, "u",
+         wpas_dbus_getter_bss_age,
+         NULL,
          NULL
        },
-       { NULL, NULL, NULL, NULL, NULL }
+       { NULL, NULL, NULL, NULL, NULL, NULL }
 };
 
 
@@ -2335,7 +2604,7 @@ int wpas_dbus_unregister_bss(struct wpa_supplicant *wpa_s,
        char bss_obj_path[WPAS_DBUS_OBJECT_PATH_MAX];
 
        /* Do nothing if the control interface is not turned on */
-       if (wpa_s == NULL || wpa_s->global == NULL)
+       if (wpa_s == NULL || wpa_s->global == NULL || !wpa_s->dbus_new_path)
                return 0;
        ctrl_iface = wpa_s->global->dbus;
        if (ctrl_iface == NULL)
@@ -2378,7 +2647,7 @@ int wpas_dbus_register_bss(struct wpa_supplicant *wpa_s,
        struct bss_handler_args *arg;
 
        /* Do nothing if the control interface is not turned on */
-       if (wpa_s == NULL || wpa_s->global == NULL)
+       if (wpa_s == NULL || wpa_s->global == NULL || !wpa_s->dbus_new_path)
                return 0;
        ctrl_iface = wpa_s->global->dbus;
        if (ctrl_iface == NULL)
@@ -2390,15 +2659,15 @@ int wpas_dbus_register_bss(struct wpa_supplicant *wpa_s,
 
        obj_desc = os_zalloc(sizeof(struct wpa_dbus_object_desc));
        if (!obj_desc) {
-               wpa_printf(MSG_ERROR, "Not enough memory "
-                          "to create object description");
+               wpa_printf(MSG_ERROR,
+                          "Not enough memory to create object description");
                goto err;
        }
 
        arg = os_zalloc(sizeof(struct bss_handler_args));
        if (!arg) {
-               wpa_printf(MSG_ERROR, "Not enough memory "
-                          "to create arguments for handler");
+               wpa_printf(MSG_ERROR,
+                          "Not enough memory to create arguments for handler");
                goto err;
        }
        arg->wpa_s = wpa_s;
@@ -2431,20 +2700,27 @@ err:
 
 static const struct wpa_dbus_method_desc wpas_dbus_interface_methods[] = {
        { "Scan", WPAS_DBUS_NEW_IFACE_INTERFACE,
-         (WPADBusMethodHandler) &wpas_dbus_handler_scan,
+         (WPADBusMethodHandler) wpas_dbus_handler_scan,
          {
                  { "args", "a{sv}", ARG_IN },
                  END_ARGS
          }
        },
+       { "SignalPoll", WPAS_DBUS_NEW_IFACE_INTERFACE,
+         (WPADBusMethodHandler) wpas_dbus_handler_signal_poll,
+         {
+                 { "args", "a{sv}", ARG_OUT },
+                 END_ARGS
+         }
+       },
        { "Disconnect", WPAS_DBUS_NEW_IFACE_INTERFACE,
-         (WPADBusMethodHandler) &wpas_dbus_handler_disconnect,
+         (WPADBusMethodHandler) wpas_dbus_handler_disconnect,
          {
                  END_ARGS
          }
        },
        { "AddNetwork", WPAS_DBUS_NEW_IFACE_INTERFACE,
-         (WPADBusMethodHandler) &wpas_dbus_handler_add_network,
+         (WPADBusMethodHandler) wpas_dbus_handler_add_network,
          {
                  { "args", "a{sv}", ARG_IN },
                  { "path", "o", ARG_OUT },
@@ -2452,39 +2728,45 @@ static const struct wpa_dbus_method_desc wpas_dbus_interface_methods[] = {
          }
        },
        { "Reassociate", WPAS_DBUS_NEW_IFACE_INTERFACE,
-         (WPADBusMethodHandler) &wpas_dbus_handler_reassociate,
+         (WPADBusMethodHandler) wpas_dbus_handler_reassociate,
          {
                  END_ARGS
          }
        },
        { "Reattach", WPAS_DBUS_NEW_IFACE_INTERFACE,
-         (WPADBusMethodHandler) &wpas_dbus_handler_reattach,
+         (WPADBusMethodHandler) wpas_dbus_handler_reattach,
+         {
+                 END_ARGS
+         }
+       },
+       { "Reconnect", WPAS_DBUS_NEW_IFACE_INTERFACE,
+         (WPADBusMethodHandler) wpas_dbus_handler_reconnect,
          {
                  END_ARGS
          }
        },
        { "RemoveNetwork", WPAS_DBUS_NEW_IFACE_INTERFACE,
-         (WPADBusMethodHandler) &wpas_dbus_handler_remove_network,
+         (WPADBusMethodHandler) wpas_dbus_handler_remove_network,
          {
                  { "path", "o", ARG_IN },
                  END_ARGS
          }
        },
        { "RemoveAllNetworks", WPAS_DBUS_NEW_IFACE_INTERFACE,
-         (WPADBusMethodHandler) &wpas_dbus_handler_remove_all_networks,
+         (WPADBusMethodHandler) wpas_dbus_handler_remove_all_networks,
          {
                  END_ARGS
          }
        },
        { "SelectNetwork", WPAS_DBUS_NEW_IFACE_INTERFACE,
-         (WPADBusMethodHandler) &wpas_dbus_handler_select_network,
+         (WPADBusMethodHandler) wpas_dbus_handler_select_network,
          {
                  { "path", "o", ARG_IN },
                  END_ARGS
          }
        },
        { "NetworkReply", WPAS_DBUS_NEW_IFACE_INTERFACE,
-         (WPADBusMethodHandler) &wpas_dbus_handler_network_reply,
+         (WPADBusMethodHandler) wpas_dbus_handler_network_reply,
          {
                  { "path", "o", ARG_IN },
                  { "field", "s", ARG_IN },
@@ -2494,7 +2776,7 @@ static const struct wpa_dbus_method_desc wpas_dbus_interface_methods[] = {
        },
 #ifndef CONFIG_NO_CONFIG_BLOBS
        { "AddBlob", WPAS_DBUS_NEW_IFACE_INTERFACE,
-         (WPADBusMethodHandler) &wpas_dbus_handler_add_blob,
+         (WPADBusMethodHandler) wpas_dbus_handler_add_blob,
          {
                  { "name", "s", ARG_IN },
                  { "data", "ay", ARG_IN },
@@ -2502,7 +2784,7 @@ static const struct wpa_dbus_method_desc wpas_dbus_interface_methods[] = {
          }
        },
        { "GetBlob", WPAS_DBUS_NEW_IFACE_INTERFACE,
-         (WPADBusMethodHandler) &wpas_dbus_handler_get_blob,
+         (WPADBusMethodHandler) wpas_dbus_handler_get_blob,
          {
                  { "name", "s", ARG_IN },
                  { "data", "ay", ARG_OUT },
@@ -2510,7 +2792,7 @@ static const struct wpa_dbus_method_desc wpas_dbus_interface_methods[] = {
          }
        },
        { "RemoveBlob", WPAS_DBUS_NEW_IFACE_INTERFACE,
-         (WPADBusMethodHandler) &wpas_dbus_handler_remove_blob,
+         (WPADBusMethodHandler) wpas_dbus_handler_remove_blob,
          {
                  { "name", "s", ARG_IN },
                  END_ARGS
@@ -2519,7 +2801,7 @@ static const struct wpa_dbus_method_desc wpas_dbus_interface_methods[] = {
 #endif /* CONFIG_NO_CONFIG_BLOBS */
        { "SetPKCS11EngineAndModulePath", WPAS_DBUS_NEW_IFACE_INTERFACE,
          (WPADBusMethodHandler)
-         &wpas_dbus_handler_set_pkcs11_engine_and_module_path,
+         wpas_dbus_handler_set_pkcs11_engine_and_module_path,
          {
                  { "pkcs11_engine_path", "s", ARG_IN },
                  { "pkcs11_module_path", "s", ARG_IN },
@@ -2528,51 +2810,57 @@ static const struct wpa_dbus_method_desc wpas_dbus_interface_methods[] = {
        },
 #ifdef CONFIG_WPS
        { "Start", WPAS_DBUS_NEW_IFACE_WPS,
-         (WPADBusMethodHandler) &wpas_dbus_handler_wps_start,
+         (WPADBusMethodHandler) wpas_dbus_handler_wps_start,
          {
                  { "args", "a{sv}", ARG_IN },
                  { "output", "a{sv}", ARG_OUT },
                  END_ARGS
          }
        },
+       { "Cancel", WPAS_DBUS_NEW_IFACE_WPS,
+         (WPADBusMethodHandler) wpas_dbus_handler_wps_cancel,
+         {
+                 END_ARGS
+         }
+       },
 #endif /* CONFIG_WPS */
 #ifdef CONFIG_P2P
        { "Find", WPAS_DBUS_NEW_IFACE_P2PDEVICE,
-         (WPADBusMethodHandler)wpas_dbus_handler_p2p_find,
+         (WPADBusMethodHandler) wpas_dbus_handler_p2p_find,
          {
                  { "args", "a{sv}", ARG_IN },
                  END_ARGS
          }
        },
        { "StopFind", WPAS_DBUS_NEW_IFACE_P2PDEVICE,
-         (WPADBusMethodHandler)wpas_dbus_handler_p2p_stop_find,
+         (WPADBusMethodHandler) wpas_dbus_handler_p2p_stop_find,
          {
                  END_ARGS
          }
        },
        { "Listen", WPAS_DBUS_NEW_IFACE_P2PDEVICE,
-         (WPADBusMethodHandler)wpas_dbus_handler_p2p_listen,
+         (WPADBusMethodHandler) wpas_dbus_handler_p2p_listen,
          {
                  { "timeout", "i", ARG_IN },
                  END_ARGS
          }
        },
        { "ExtendedListen", WPAS_DBUS_NEW_IFACE_P2PDEVICE,
-         (WPADBusMethodHandler)wpas_dbus_handler_p2p_extendedlisten,
+         (WPADBusMethodHandler) wpas_dbus_handler_p2p_extendedlisten,
          {
                  { "args", "a{sv}", ARG_IN },
                  END_ARGS
          }
        },
        { "PresenceRequest", WPAS_DBUS_NEW_IFACE_P2PDEVICE,
-         (WPADBusMethodHandler)wpas_dbus_handler_p2p_presence_request,
+         (WPADBusMethodHandler) wpas_dbus_handler_p2p_presence_request,
          {
                  { "args", "a{sv}", ARG_IN },
                  END_ARGS
          }
        },
        { "ProvisionDiscoveryRequest", WPAS_DBUS_NEW_IFACE_P2PDEVICE,
-         (WPADBusMethodHandler)wpas_dbus_handler_p2p_prov_disc_req,
+         (WPADBusMethodHandler) wpas_dbus_handler_p2p_prov_disc_req,
          {
                  { "peer", "o", ARG_IN },
                  { "config_method", "s", ARG_IN },
@@ -2580,7 +2868,7 @@ static const struct wpa_dbus_method_desc wpas_dbus_interface_methods[] = {
          }
        },
        { "Connect", WPAS_DBUS_NEW_IFACE_P2PDEVICE,
-         (WPADBusMethodHandler)wpas_dbus_handler_p2p_connect,
+         (WPADBusMethodHandler) wpas_dbus_handler_p2p_connect,
          {
                  { "args", "a{sv}", ARG_IN },
                  { "generated_pin", "s", ARG_OUT },
@@ -2588,60 +2876,73 @@ static const struct wpa_dbus_method_desc wpas_dbus_interface_methods[] = {
          }
        },
        { "GroupAdd", WPAS_DBUS_NEW_IFACE_P2PDEVICE,
-         (WPADBusMethodHandler)wpas_dbus_handler_p2p_group_add,
+         (WPADBusMethodHandler) wpas_dbus_handler_p2p_group_add,
          {
                  { "args", "a{sv}", ARG_IN },
                  END_ARGS
          }
        },
+       { "Cancel", WPAS_DBUS_NEW_IFACE_P2PDEVICE,
+         (WPADBusMethodHandler) wpas_dbus_handler_p2p_cancel,
+         {
+                 END_ARGS
+         }
+       },
        { "Invite", WPAS_DBUS_NEW_IFACE_P2PDEVICE,
-         (WPADBusMethodHandler)wpas_dbus_handler_p2p_invite,
+         (WPADBusMethodHandler) wpas_dbus_handler_p2p_invite,
          {
                  { "args", "a{sv}", ARG_IN },
                  END_ARGS
          }
        },
        { "Disconnect", WPAS_DBUS_NEW_IFACE_P2PDEVICE,
-         (WPADBusMethodHandler)wpas_dbus_handler_p2p_disconnect,
+         (WPADBusMethodHandler) wpas_dbus_handler_p2p_disconnect,
          {
                  END_ARGS
          }
        },
        { "RejectPeer", WPAS_DBUS_NEW_IFACE_P2PDEVICE,
-         (WPADBusMethodHandler)wpas_dbus_handler_p2p_rejectpeer,
+         (WPADBusMethodHandler) wpas_dbus_handler_p2p_rejectpeer,
          {
                  { "peer", "o", ARG_IN },
                  END_ARGS
          }
        },
+       { "RemoveClient", WPAS_DBUS_NEW_IFACE_P2PDEVICE,
+         (WPADBusMethodHandler) wpas_dbus_handler_p2p_remove_client,
+         {
+                 { "args", "a{sv}", ARG_IN },
+                 END_ARGS
+         }
+       },
        { "Flush", WPAS_DBUS_NEW_IFACE_P2PDEVICE,
-         (WPADBusMethodHandler)wpas_dbus_handler_p2p_flush,
+         (WPADBusMethodHandler) wpas_dbus_handler_p2p_flush,
          {
                  END_ARGS
          }
        },
        { "AddService", WPAS_DBUS_NEW_IFACE_P2PDEVICE,
-         (WPADBusMethodHandler)wpas_dbus_handler_p2p_add_service,
+         (WPADBusMethodHandler) wpas_dbus_handler_p2p_add_service,
          {
                  { "args", "a{sv}", ARG_IN },
                  END_ARGS
          }
        },
        { "DeleteService", WPAS_DBUS_NEW_IFACE_P2PDEVICE,
-         (WPADBusMethodHandler)wpas_dbus_handler_p2p_delete_service,
+         (WPADBusMethodHandler) wpas_dbus_handler_p2p_delete_service,
          {
                  { "args", "a{sv}", ARG_IN },
                  END_ARGS
          }
        },
        { "FlushService", WPAS_DBUS_NEW_IFACE_P2PDEVICE,
-         (WPADBusMethodHandler)wpas_dbus_handler_p2p_flush_service,
+         (WPADBusMethodHandler) wpas_dbus_handler_p2p_flush_service,
          {
                  END_ARGS
          }
        },
        { "ServiceDiscoveryRequest", WPAS_DBUS_NEW_IFACE_P2PDEVICE,
-         (WPADBusMethodHandler)wpas_dbus_handler_p2p_service_sd_req,
+         (WPADBusMethodHandler) wpas_dbus_handler_p2p_service_sd_req,
          {
                  { "args", "a{sv}", ARG_IN },
                  { "ref", "t", ARG_OUT },
@@ -2649,27 +2950,27 @@ static const struct wpa_dbus_method_desc wpas_dbus_interface_methods[] = {
          }
        },
        { "ServiceDiscoveryResponse", WPAS_DBUS_NEW_IFACE_P2PDEVICE,
-         (WPADBusMethodHandler)wpas_dbus_handler_p2p_service_sd_res,
+         (WPADBusMethodHandler) wpas_dbus_handler_p2p_service_sd_res,
          {
                  { "args", "a{sv}", ARG_IN },
                  END_ARGS
          }
        },
        { "ServiceDiscoveryCancelRequest", WPAS_DBUS_NEW_IFACE_P2PDEVICE,
-         (WPADBusMethodHandler)wpas_dbus_handler_p2p_service_sd_cancel_req,
+         (WPADBusMethodHandler) wpas_dbus_handler_p2p_service_sd_cancel_req,
          {
                  { "args", "t", ARG_IN },
                  END_ARGS
          }
        },
        { "ServiceUpdate", WPAS_DBUS_NEW_IFACE_P2PDEVICE,
-         (WPADBusMethodHandler)wpas_dbus_handler_p2p_service_update,
+         (WPADBusMethodHandler) wpas_dbus_handler_p2p_service_update,
          {
                  END_ARGS
          }
        },
        { "ServiceDiscoveryExternal", WPAS_DBUS_NEW_IFACE_P2PDEVICE,
-         (WPADBusMethodHandler)wpas_dbus_handler_p2p_serv_disc_external,
+         (WPADBusMethodHandler) wpas_dbus_handler_p2p_serv_disc_external,
          {
                  { "arg", "i", ARG_IN },
                  END_ARGS
@@ -2699,7 +3000,7 @@ static const struct wpa_dbus_method_desc wpas_dbus_interface_methods[] = {
        },
 #endif /* CONFIG_P2P */
        { "FlushBSS", WPAS_DBUS_NEW_IFACE_INTERFACE,
-         (WPADBusMethodHandler) &wpas_dbus_handler_flush_bss,
+         (WPADBusMethodHandler) wpas_dbus_handler_flush_bss,
          {
                  { "age", "u", ARG_IN },
                  END_ARGS
@@ -2720,20 +3021,20 @@ static const struct wpa_dbus_method_desc wpas_dbus_interface_methods[] = {
        },
 #endif /* CONFIG_AP */
        { "EAPLogoff", WPAS_DBUS_NEW_IFACE_INTERFACE,
-         (WPADBusMethodHandler) &wpas_dbus_handler_eap_logoff,
+         (WPADBusMethodHandler) wpas_dbus_handler_eap_logoff,
          {
                  END_ARGS
          }
        },
        { "EAPLogon", WPAS_DBUS_NEW_IFACE_INTERFACE,
-         (WPADBusMethodHandler) &wpas_dbus_handler_eap_logon,
+         (WPADBusMethodHandler) wpas_dbus_handler_eap_logon,
          {
                  END_ARGS
          }
        },
 #ifdef CONFIG_AUTOSCAN
        { "AutoScan", WPAS_DBUS_NEW_IFACE_INTERFACE,
-         (WPADBusMethodHandler) &wpas_dbus_handler_autoscan,
+         (WPADBusMethodHandler) wpas_dbus_handler_autoscan,
          {
                  { "arg", "s", ARG_IN },
                  END_ARGS
@@ -2771,127 +3072,202 @@ static const struct wpa_dbus_method_desc wpas_dbus_interface_methods[] = {
          }
        },
 #endif /* CONFIG_TDLS */
+       { "VendorElemAdd", WPAS_DBUS_NEW_IFACE_INTERFACE,
+         (WPADBusMethodHandler) wpas_dbus_handler_vendor_elem_add,
+         {
+                 { "frame_id", "i", ARG_IN },
+                 { "ielems", "ay", ARG_IN },
+                 END_ARGS
+         }
+       },
+       { "VendorElemGet", WPAS_DBUS_NEW_IFACE_INTERFACE,
+         (WPADBusMethodHandler) wpas_dbus_handler_vendor_elem_get,
+         {
+                 { "frame_id", "i", ARG_IN },
+                 { "ielems", "ay", ARG_OUT },
+                 END_ARGS
+         }
+       },
+       { "VendorElemRem", WPAS_DBUS_NEW_IFACE_INTERFACE,
+         (WPADBusMethodHandler) wpas_dbus_handler_vendor_elem_remove,
+         {
+                 { "frame_id", "i", ARG_IN },
+                 { "ielems", "ay", ARG_IN },
+                 END_ARGS
+         }
+       },
+#ifndef CONFIG_NO_CONFIG_WRITE
+       { "SaveConfig", WPAS_DBUS_NEW_IFACE_INTERFACE,
+         (WPADBusMethodHandler) wpas_dbus_handler_save_config,
+         {
+                 END_ARGS
+         }
+       },
+#endif /* CONFIG_NO_CONFIG_WRITE */
        { NULL, NULL, NULL, { END_ARGS } }
 };
 
 static const struct wpa_dbus_property_desc wpas_dbus_interface_properties[] = {
        { "Capabilities", WPAS_DBUS_NEW_IFACE_INTERFACE, "a{sv}",
          wpas_dbus_getter_capabilities,
+         NULL,
          NULL
        },
        { "State", WPAS_DBUS_NEW_IFACE_INTERFACE, "s",
          wpas_dbus_getter_state,
+         NULL,
          NULL
        },
        { "Scanning", WPAS_DBUS_NEW_IFACE_INTERFACE, "b",
          wpas_dbus_getter_scanning,
+         NULL,
          NULL
        },
        { "ApScan", WPAS_DBUS_NEW_IFACE_INTERFACE, "u",
          wpas_dbus_getter_ap_scan,
-         wpas_dbus_setter_ap_scan
+         wpas_dbus_setter_ap_scan,
+         NULL
        },
        { "BSSExpireAge", WPAS_DBUS_NEW_IFACE_INTERFACE, "u",
          wpas_dbus_getter_bss_expire_age,
-         wpas_dbus_setter_bss_expire_age
+         wpas_dbus_setter_bss_expire_age,
+         NULL
        },
        { "BSSExpireCount", WPAS_DBUS_NEW_IFACE_INTERFACE, "u",
          wpas_dbus_getter_bss_expire_count,
-         wpas_dbus_setter_bss_expire_count
+         wpas_dbus_setter_bss_expire_count,
+         NULL
        },
        { "Country", WPAS_DBUS_NEW_IFACE_INTERFACE, "s",
          wpas_dbus_getter_country,
-         wpas_dbus_setter_country
+         wpas_dbus_setter_country,
+         NULL
        },
        { "Ifname", WPAS_DBUS_NEW_IFACE_INTERFACE, "s",
          wpas_dbus_getter_ifname,
+         NULL,
          NULL
        },
        { "Driver", WPAS_DBUS_NEW_IFACE_INTERFACE, "s",
          wpas_dbus_getter_driver,
+         NULL,
          NULL
        },
        { "BridgeIfname", WPAS_DBUS_NEW_IFACE_INTERFACE, "s",
          wpas_dbus_getter_bridge_ifname,
+         NULL,
+         NULL
+       },
+       { "ConfigFile", WPAS_DBUS_NEW_IFACE_INTERFACE, "s",
+         wpas_dbus_getter_config_file,
+         NULL,
          NULL
        },
        { "CurrentBSS", WPAS_DBUS_NEW_IFACE_INTERFACE, "o",
          wpas_dbus_getter_current_bss,
+         NULL,
          NULL
        },
        { "CurrentNetwork", WPAS_DBUS_NEW_IFACE_INTERFACE, "o",
          wpas_dbus_getter_current_network,
+         NULL,
          NULL
        },
        { "CurrentAuthMode", WPAS_DBUS_NEW_IFACE_INTERFACE, "s",
          wpas_dbus_getter_current_auth_mode,
+         NULL,
          NULL
        },
        { "Blobs", WPAS_DBUS_NEW_IFACE_INTERFACE, "a{say}",
          wpas_dbus_getter_blobs,
+         NULL,
          NULL
        },
        { "BSSs", WPAS_DBUS_NEW_IFACE_INTERFACE, "ao",
          wpas_dbus_getter_bsss,
+         NULL,
          NULL
        },
        { "Networks", WPAS_DBUS_NEW_IFACE_INTERFACE, "ao",
          wpas_dbus_getter_networks,
+         NULL,
          NULL
        },
        { "FastReauth", WPAS_DBUS_NEW_IFACE_INTERFACE, "b",
          wpas_dbus_getter_fast_reauth,
-         wpas_dbus_setter_fast_reauth
+         wpas_dbus_setter_fast_reauth,
+         NULL
        },
        { "ScanInterval", WPAS_DBUS_NEW_IFACE_INTERFACE, "i",
          wpas_dbus_getter_scan_interval,
-         wpas_dbus_setter_scan_interval
+         wpas_dbus_setter_scan_interval,
+         NULL
        },
        { "PKCS11EnginePath", WPAS_DBUS_NEW_IFACE_INTERFACE, "s",
          wpas_dbus_getter_pkcs11_engine_path,
+         NULL,
          NULL
        },
        { "PKCS11ModulePath", WPAS_DBUS_NEW_IFACE_INTERFACE, "s",
          wpas_dbus_getter_pkcs11_module_path,
+         NULL,
          NULL
        },
 #ifdef CONFIG_WPS
        { "ProcessCredentials", WPAS_DBUS_NEW_IFACE_WPS, "b",
          wpas_dbus_getter_process_credentials,
-         wpas_dbus_setter_process_credentials
+         wpas_dbus_setter_process_credentials,
+         NULL
+       },
+       { "ConfigMethods", WPAS_DBUS_NEW_IFACE_WPS, "s",
+         wpas_dbus_getter_config_methods,
+         wpas_dbus_setter_config_methods,
+         NULL
        },
 #endif /* CONFIG_WPS */
 #ifdef CONFIG_P2P
        { "P2PDeviceConfig", WPAS_DBUS_NEW_IFACE_P2PDEVICE, "a{sv}",
          wpas_dbus_getter_p2p_device_config,
-         wpas_dbus_setter_p2p_device_config
+         wpas_dbus_setter_p2p_device_config,
+         NULL
        },
        { "Peers", WPAS_DBUS_NEW_IFACE_P2PDEVICE, "ao",
          wpas_dbus_getter_p2p_peers,
+         NULL,
          NULL
        },
        { "Role", WPAS_DBUS_NEW_IFACE_P2PDEVICE, "s",
          wpas_dbus_getter_p2p_role,
+         NULL,
          NULL
        },
        { "Group", WPAS_DBUS_NEW_IFACE_P2PDEVICE, "o",
          wpas_dbus_getter_p2p_group,
+         NULL,
          NULL
        },
        { "PeerGO", WPAS_DBUS_NEW_IFACE_P2PDEVICE, "o",
          wpas_dbus_getter_p2p_peergo,
+         NULL,
          NULL
        },
        { "PersistentGroups", WPAS_DBUS_NEW_IFACE_P2PDEVICE, "ao",
          wpas_dbus_getter_persistent_groups,
+         NULL,
          NULL
        },
 #endif /* CONFIG_P2P */
        { "DisconnectReason", WPAS_DBUS_NEW_IFACE_INTERFACE, "i",
          wpas_dbus_getter_disconnect_reason,
+         NULL,
+         NULL
+       },
+       { "AssocStatusCode", WPAS_DBUS_NEW_IFACE_INTERFACE, "i",
+         wpas_dbus_getter_assoc_status_code,
+         NULL,
          NULL
        },
-       { NULL, NULL, NULL, NULL, NULL }
+       { NULL, NULL, NULL, NULL, NULL, NULL }
 };
 
 static const struct wpa_dbus_signal_desc wpas_dbus_interface_signals[] = {
@@ -2975,15 +3351,16 @@ static const struct wpa_dbus_signal_desc wpas_dbus_interface_signals[] = {
        },
 #endif /* CONFIG_WPS */
 #ifdef CONFIG_P2P
-       { "P2PStateChanged", WPAS_DBUS_NEW_IFACE_P2PDEVICE,
+       { "DeviceFound", WPAS_DBUS_NEW_IFACE_P2PDEVICE,
          {
-                 { "states", "a{ss}", ARG_OUT },
+                 { "path", "o", ARG_OUT },
                  END_ARGS
          }
        },
-       { "DeviceFound", WPAS_DBUS_NEW_IFACE_P2PDEVICE,
+       { "DeviceFoundProperties", WPAS_DBUS_NEW_IFACE_P2PDEVICE,
          {
                  { "path", "o", ARG_OUT },
+                 { "properties", "a{sv}", ARG_OUT },
                  END_ARGS
          }
        },
@@ -2993,6 +3370,11 @@ static const struct wpa_dbus_signal_desc wpas_dbus_interface_signals[] = {
                  END_ARGS
          }
        },
+       { "FindStopped", WPAS_DBUS_NEW_IFACE_P2PDEVICE,
+         {
+                 END_ARGS
+         }
+       },
        { "ProvisionDiscoveryRequestDisplayPin", WPAS_DBUS_NEW_IFACE_P2PDEVICE,
          {
                  { "peer_object", "o", ARG_OUT },
@@ -3044,6 +3426,12 @@ static const struct wpa_dbus_signal_desc wpas_dbus_interface_signals[] = {
                  END_ARGS
          }
        },
+       { "GroupFormationFailure", WPAS_DBUS_NEW_IFACE_P2PDEVICE,
+         {
+                 { "reason", "s", ARG_OUT },
+                 END_ARGS
+         }
+       },
        { "GONegotiationSuccess", WPAS_DBUS_NEW_IFACE_P2PDEVICE,
          {
                  { "properties", "a{sv}", ARG_OUT },
@@ -3059,7 +3447,8 @@ static const struct wpa_dbus_signal_desc wpas_dbus_interface_signals[] = {
        { "GONegotiationRequest", WPAS_DBUS_NEW_IFACE_P2PDEVICE,
          {
                  { "path", "o", ARG_OUT },
-                 { "dev_passwd_id", "i", ARG_OUT },
+                 { "dev_passwd_id", "q", ARG_OUT },
+                 { "device_go_intent", "y", ARG_OUT },
                  END_ARGS
          }
        },
@@ -3071,8 +3460,7 @@ static const struct wpa_dbus_signal_desc wpas_dbus_interface_signals[] = {
        },
        { "GroupFinished", WPAS_DBUS_NEW_IFACE_P2PDEVICE,
          {
-                 { "ifname", "s", ARG_OUT },
-                 { "role", "s", ARG_OUT },
+                 { "properties", "a{sv}", ARG_OUT },
                  END_ARGS
          }
        },
@@ -3108,6 +3496,12 @@ static const struct wpa_dbus_signal_desc wpas_dbus_interface_signals[] = {
                  END_ARGS
          }
        },
+       { "InvitationReceived", WPAS_DBUS_NEW_IFACE_P2PDEVICE,
+         {
+                 { "properties", "a{sv}", ARG_OUT },
+                 END_ARGS
+         }
+       },
 #endif /* CONFIG_P2P */
 #ifdef CONFIG_AP
        { "ProbeRequest", WPAS_DBUS_NEW_IFACE_INTERFACE,
@@ -3142,13 +3536,96 @@ static const struct wpa_dbus_signal_desc wpas_dbus_interface_signals[] = {
                  END_ARGS
          }
        },
+       { "NetworkRequest", WPAS_DBUS_NEW_IFACE_INTERFACE,
+         {
+                 { "path", "o", ARG_OUT },
+                 { "field", "s", ARG_OUT },
+                 { "text", "s", ARG_OUT },
+                 END_ARGS
+         }
+       },
        { NULL, NULL, { END_ARGS } }
 };
 
 
-int wpas_dbus_register_interface(struct wpa_supplicant *wpa_s)
+static int wpa_dbus_ctrl_iface_props_init(struct wpas_dbus_priv *priv)
 {
+       size_t all_size;
+       unsigned int i, j, count, num_const, num_globals;
+       const char *global_name;
+       static const char * const ignored_globals[] = {
+               "bss_expiration_age", "bss_expiration_scan_count",
+               "ap_scan", "country", "fast_reauth",
+               "pkcs11_engine_path", "pkcs11_module_path"
+       };
+
+       /* wpas_dbus_interface_properties terminates with a NULL element */
+       num_const = ARRAY_SIZE(wpas_dbus_interface_properties) - 1;
+
+       num_globals = wpa_config_get_num_global_field_names();
+       priv->globals_start = num_const;
+
+       /* allocate enough for all properties + terminating NULL element */
+       all_size = (num_globals + num_const + 1) *
+               sizeof(wpas_dbus_interface_properties[0]);
+       priv->all_interface_properties = os_zalloc(all_size);
+       if (!priv->all_interface_properties) {
+               wpa_printf(MSG_ERROR,
+                          "dbus: Not enough memory for interface properties");
+               return -1;
+       }
+
+       /* Copy constant interface properties to the start of the array */
+       os_memcpy(priv->all_interface_properties,
+                 wpas_dbus_interface_properties,
+                 sizeof(wpas_dbus_interface_properties));
+
+       /* Dynamically construct interface global properties */
+       for (i = 0, count = num_const; i < num_globals; i++) {
+               struct wpa_dbus_property_desc *desc;
+               int no_var = 0;
+
+               /* ignore globals that are actually just methods */
+               global_name = wpa_config_get_global_field_name(i, &no_var);
+               if (no_var)
+                       continue;
+               /* Ignore fields already explicitly exposed */
+               for (j = 0; j < ARRAY_SIZE(ignored_globals); j++) {
+                       if (os_strcmp(global_name, ignored_globals[j]) == 0)
+                               break;
+               }
+               if (j < ARRAY_SIZE(ignored_globals))
+                       continue;
+
+               desc = &priv->all_interface_properties[count++];
+               desc->dbus_property = uscore_to_dbus(global_name);
+               if (!desc->dbus_property) {
+                       wpa_printf(MSG_ERROR,
+                                  "dbus: Not enough memory for D-Bus property name");
+                       goto error;
+               }
+               desc->dbus_interface = WPAS_DBUS_NEW_IFACE_INTERFACE;
+               desc->type = "s";
+               desc->getter = wpas_dbus_getter_iface_global;
+               desc->setter = wpas_dbus_setter_iface_global;
+               desc->data = global_name;
+       }
+
+       return 0;
+
+error:
+       wpa_dbus_ctrl_iface_props_deinit(priv);
+       return -1;
+}
 
+
+/**
+ * wpas_dbus_register_interface - Register an interface with D-Bus
+ * @wpa_s: wpa_supplicant interface structure
+ * Returns: 0 on success, -1 on failure
+ */
+int wpas_dbus_register_interface(struct wpa_supplicant *wpa_s)
+{
        struct wpa_dbus_object_desc *obj_desc = NULL;
        struct wpas_dbus_priv *ctrl_iface = wpa_s->global->dbus;
        int next;
@@ -3168,13 +3645,13 @@ int wpas_dbus_register_interface(struct wpa_supplicant *wpa_s)
 
        obj_desc = os_zalloc(sizeof(struct wpa_dbus_object_desc));
        if (!obj_desc) {
-               wpa_printf(MSG_ERROR, "Not enough memory "
-                          "to create object description");
+               wpa_printf(MSG_ERROR,
+                          "Not enough memory to create object description");
                goto err;
        }
 
        wpas_dbus_register(obj_desc, wpa_s, NULL, wpas_dbus_interface_methods,
-                          wpas_dbus_interface_properties,
+                          ctrl_iface->all_interface_properties,
                           wpas_dbus_interface_signals);
 
        wpa_printf(MSG_DEBUG, "dbus: Register interface object '%s'",
@@ -3196,6 +3673,11 @@ err:
 }
 
 
+/**
+ * wpas_dbus_unregister_interface - Unregister the interface from D-Bus
+ * @wpa_s: wpa_supplicant interface structure
+ * Returns: 0 on success, -1 on failure
+ */
 int wpas_dbus_unregister_interface(struct wpa_supplicant *wpa_s)
 {
        struct wpas_dbus_priv *ctrl_iface;
@@ -3204,7 +3686,7 @@ int wpas_dbus_unregister_interface(struct wpa_supplicant *wpa_s)
        if (wpa_s == NULL || wpa_s->global == NULL)
                return 0;
        ctrl_iface = wpa_s->global->dbus;
-       if (ctrl_iface == NULL)
+       if (ctrl_iface == NULL || wpa_s->dbus_new_path == NULL)
                return 0;
 
        wpa_printf(MSG_DEBUG, "dbus: Unregister interface object '%s'",
@@ -3235,49 +3717,90 @@ int wpas_dbus_unregister_interface(struct wpa_supplicant *wpa_s)
 static const struct wpa_dbus_property_desc wpas_dbus_p2p_peer_properties[] = {
        { "DeviceName", WPAS_DBUS_NEW_IFACE_P2P_PEER, "s",
          wpas_dbus_getter_p2p_peer_device_name,
+         NULL,
+         NULL
+       },
+       { "Manufacturer", WPAS_DBUS_NEW_IFACE_P2P_PEER, "s",
+         wpas_dbus_getter_p2p_peer_manufacturer,
+         NULL,
+         NULL
+       },
+       { "ModelName", WPAS_DBUS_NEW_IFACE_P2P_PEER, "s",
+         wpas_dbus_getter_p2p_peer_modelname,
+         NULL,
+         NULL
+       },
+       { "ModelNumber", WPAS_DBUS_NEW_IFACE_P2P_PEER, "s",
+         wpas_dbus_getter_p2p_peer_modelnumber,
+         NULL,
+         NULL
+       },
+       { "SerialNumber", WPAS_DBUS_NEW_IFACE_P2P_PEER, "s",
+         wpas_dbus_getter_p2p_peer_serialnumber,
+         NULL,
          NULL
        },
        { "PrimaryDeviceType", WPAS_DBUS_NEW_IFACE_P2P_PEER, "ay",
          wpas_dbus_getter_p2p_peer_primary_device_type,
+         NULL,
          NULL
        },
        { "config_method", WPAS_DBUS_NEW_IFACE_P2P_PEER, "q",
          wpas_dbus_getter_p2p_peer_config_method,
+         NULL,
          NULL
        },
        { "level", WPAS_DBUS_NEW_IFACE_P2P_PEER, "i",
          wpas_dbus_getter_p2p_peer_level,
+         NULL,
          NULL
        },
        { "devicecapability", WPAS_DBUS_NEW_IFACE_P2P_PEER, "y",
          wpas_dbus_getter_p2p_peer_device_capability,
+         NULL,
          NULL
        },
        { "groupcapability", WPAS_DBUS_NEW_IFACE_P2P_PEER, "y",
          wpas_dbus_getter_p2p_peer_group_capability,
+         NULL,
          NULL
        },
        { "SecondaryDeviceTypes", WPAS_DBUS_NEW_IFACE_P2P_PEER, "aay",
          wpas_dbus_getter_p2p_peer_secondary_device_types,
+         NULL,
          NULL
        },
        { "VendorExtension", WPAS_DBUS_NEW_IFACE_P2P_PEER, "aay",
          wpas_dbus_getter_p2p_peer_vendor_extension,
+         NULL,
          NULL
        },
        { "IEs", WPAS_DBUS_NEW_IFACE_P2P_PEER, "ay",
          wpas_dbus_getter_p2p_peer_ies,
+         NULL,
          NULL
        },
        { "DeviceAddress", WPAS_DBUS_NEW_IFACE_P2P_PEER, "ay",
          wpas_dbus_getter_p2p_peer_device_address,
+         NULL,
+         NULL
+       },
+       { "Groups", WPAS_DBUS_NEW_IFACE_P2P_PEER, "ao",
+         wpas_dbus_getter_p2p_peer_groups,
+         NULL,
          NULL
        },
-       { NULL, NULL, NULL, NULL, NULL }
+       { NULL, NULL, NULL, NULL, NULL, NULL }
 };
 
 static const struct wpa_dbus_signal_desc wpas_dbus_p2p_peer_signals[] = {
-
+       /* Deprecated: use org.freedesktop.DBus.Properties.PropertiesChanged */
+       { "PropertiesChanged", WPAS_DBUS_NEW_IFACE_P2P_PEER,
+         {
+                 { "properties", "a{sv}", ARG_OUT },
+                 END_ARGS
+         }
+       },
        { NULL, NULL, { END_ARGS } }
 };
 
@@ -3289,22 +3812,26 @@ static const struct wpa_dbus_signal_desc wpas_dbus_p2p_peer_signals[] = {
  *     In case of peer objects, it would be emitted by either
  *     the "interface object" or by "peer objects"
  * @sig_name: signal name - DeviceFound
+ * @properties: Whether to add a second argument with object properties
  *
- * Notify listeners about event related with newly found p2p peer device
+ * Notify listeners about event related with p2p peer device
  */
 static void wpas_dbus_signal_peer(struct wpa_supplicant *wpa_s,
                                  const u8 *dev_addr, const char *interface,
-                                 const char *sig_name)
+                                 const char *sig_name, int properties)
 {
        struct wpas_dbus_priv *iface;
        DBusMessage *msg;
        DBusMessageIter iter;
        char peer_obj_path[WPAS_DBUS_OBJECT_PATH_MAX], *path;
 
+       if (wpa_s->p2p_mgmt)
+               wpa_s = wpa_s->parent;
+
        iface = wpa_s->global->dbus;
 
        /* Do nothing if the control interface is not turned on */
-       if (iface == NULL)
+       if (iface == NULL || !wpa_s->dbus_new_path)
                return;
 
        os_snprintf(peer_obj_path, WPAS_DBUS_OBJECT_PATH_MAX,
@@ -3319,16 +3846,14 @@ static void wpas_dbus_signal_peer(struct wpa_supplicant *wpa_s,
        dbus_message_iter_init_append(msg, &iter);
        path = peer_obj_path;
        if (!dbus_message_iter_append_basic(&iter, DBUS_TYPE_OBJECT_PATH,
-                                           &path))
-               goto err;
-
-       dbus_connection_send(iface->con, msg, NULL);
-
-       dbus_message_unref(msg);
-       return;
+                                           &path) ||
+           (properties && !wpa_dbus_get_object_properties(
+                   iface, peer_obj_path, WPAS_DBUS_NEW_IFACE_P2P_PEER,
+                   &iter)))
+               wpa_printf(MSG_ERROR, "dbus: Failed to construct signal");
+       else
+               dbus_connection_send(iface->con, msg, NULL);
 
-err:
-       wpa_printf(MSG_ERROR, "dbus: Failed to construct signal");
        dbus_message_unref(msg);
 }
 
@@ -3336,7 +3861,7 @@ err:
 /**
  * wpas_dbus_signal_peer_found - Send a peer found signal
  * @wpa_s: %wpa_supplicant network interface data
- * @dev: peer device object
+ * @dev_addr: Peer P2P Device Address
  *
  * Notify listeners about find a p2p peer device found
  */
@@ -3345,13 +3870,17 @@ void wpas_dbus_signal_peer_device_found(struct wpa_supplicant *wpa_s,
 {
        wpas_dbus_signal_peer(wpa_s, dev_addr,
                              WPAS_DBUS_NEW_IFACE_P2PDEVICE,
-                             "DeviceFound");
+                             "DeviceFound", FALSE);
+
+       wpas_dbus_signal_peer(wpa_s, dev_addr,
+                             WPAS_DBUS_NEW_IFACE_P2PDEVICE,
+                             "DeviceFoundProperties", TRUE);
 }
 
 /**
  * wpas_dbus_signal_peer_lost - Send a peer lost signal
  * @wpa_s: %wpa_supplicant network interface data
- * @dev: peer device object
+ * @dev_addr: Peer P2P Device Address
  *
  * Notify listeners about lost a p2p peer device
  */
@@ -3360,13 +3889,13 @@ void wpas_dbus_signal_peer_device_lost(struct wpa_supplicant *wpa_s,
 {
        wpas_dbus_signal_peer(wpa_s, dev_addr,
                              WPAS_DBUS_NEW_IFACE_P2PDEVICE,
-                             "DeviceLost");
+                             "DeviceLost", FALSE);
 }
 
 /**
  * wpas_dbus_register_peer - Register a discovered peer object with dbus
  * @wpa_s: wpa_supplicant interface structure
- * @ssid: network configuration data
+ * @dev_addr: P2P Device Address of the peer
  * Returns: 0 on success, -1 on failure
  *
  * Registers network representing object with dbus
@@ -3386,6 +3915,10 @@ int wpas_dbus_register_peer(struct wpa_supplicant *wpa_s, const u8 *dev_addr)
        if (ctrl_iface == NULL)
                return 0;
 
+       wpa_s = wpa_s->parent->parent;
+       if (!wpa_s->dbus_new_path)
+               return 0;
+
        os_snprintf(peer_obj_path, WPAS_DBUS_OBJECT_PATH_MAX,
                    "%s/" WPAS_DBUS_NEW_P2P_PEERS_PART "/" COMPACT_MACSTR,
                    wpa_s->dbus_new_path, MAC2STR(dev_addr));
@@ -3394,16 +3927,16 @@ int wpas_dbus_register_peer(struct wpa_supplicant *wpa_s, const u8 *dev_addr)
                   peer_obj_path);
        obj_desc = os_zalloc(sizeof(struct wpa_dbus_object_desc));
        if (!obj_desc) {
-               wpa_printf(MSG_ERROR, "Not enough memory "
-                          "to create object description");
+               wpa_printf(MSG_ERROR,
+                          "Not enough memory to create object description");
                goto err;
        }
 
        /* allocate memory for handlers arguments */
        arg = os_zalloc(sizeof(struct peer_handler_args));
        if (!arg) {
-               wpa_printf(MSG_ERROR, "Not enough memory "
-                          "to create arguments for method");
+               wpa_printf(MSG_ERROR,
+                          "Not enough memory to create arguments for method");
                goto err;
        }
 
@@ -3442,9 +3975,13 @@ int wpas_dbus_unregister_peer(struct wpa_supplicant *wpa_s,
        int ret;
 
        /* Do nothing if the control interface is not turned on */
-       if (wpa_s == NULL || wpa_s->global == NULL ||
-           wpa_s->dbus_new_path == NULL)
+       if (wpa_s == NULL || wpa_s->global == NULL)
+               return 0;
+
+       wpa_s = wpa_s->parent->parent;
+       if (!wpa_s->dbus_new_path)
                return 0;
+
        ctrl_iface = wpa_s->global->dbus;
        if (ctrl_iface == NULL)
                return 0;
@@ -3461,44 +3998,108 @@ int wpas_dbus_unregister_peer(struct wpa_supplicant *wpa_s,
 }
 
 
+/**
+ * wpas_dbus_signal_p2p_find_stopped - Send P2P Find stopped signal
+ * @wpa_s: %wpa_supplicant network interface data
+ *
+ * Notify listeners about P2P Find stopped
+ */
+void wpas_dbus_signal_p2p_find_stopped(struct wpa_supplicant *wpa_s)
+{
+       struct wpas_dbus_priv *iface;
+       DBusMessage *msg;
+
+       iface = wpa_s->global->dbus;
+
+       /* Do nothing if the control interface is not turned on */
+       if (iface == NULL || !wpa_s->dbus_new_path)
+               return;
+
+       msg = dbus_message_new_signal(wpa_s->dbus_new_path,
+                                     WPAS_DBUS_NEW_IFACE_P2PDEVICE,
+                                     "FindStopped");
+       if (msg == NULL)
+               return;
+
+       dbus_connection_send(iface->con, msg, NULL);
+
+       dbus_message_unref(msg);
+}
+
+
+/**
+ * wpas_dbus_signal_peer_groups_changed - Send peer group change property signal
+ * @wpa_s: %wpa_supplicant network interface data
+ * @dev_addr: P2P Device Address
+ *
+ * Notify listeners about peer Groups property changes.
+ */
+void wpas_dbus_signal_peer_groups_changed(struct wpa_supplicant *wpa_s,
+                                         const u8 *dev_addr)
+{
+       char peer_obj_path[WPAS_DBUS_OBJECT_PATH_MAX];
+
+       if (wpa_s->p2p_mgmt)
+               wpa_s = wpa_s->parent;
+
+       if (!wpa_s->dbus_new_path)
+               return;
+       os_snprintf(peer_obj_path, WPAS_DBUS_OBJECT_PATH_MAX,
+                   "%s/" WPAS_DBUS_NEW_P2P_PEERS_PART "/" COMPACT_MACSTR,
+                   wpa_s->dbus_new_path, MAC2STR(dev_addr));
+
+       wpa_dbus_mark_property_changed(wpa_s->global->dbus, peer_obj_path,
+                                      WPAS_DBUS_NEW_IFACE_P2P_PEER, "Groups");
+}
+
+
 static const struct wpa_dbus_property_desc wpas_dbus_p2p_group_properties[] = {
        { "Members", WPAS_DBUS_NEW_IFACE_P2P_GROUP, "ao",
          wpas_dbus_getter_p2p_group_members,
+         NULL,
          NULL
        },
        { "Group", WPAS_DBUS_NEW_IFACE_P2P_GROUP, "o",
          wpas_dbus_getter_p2p_group,
+         NULL,
          NULL
        },
        { "Role", WPAS_DBUS_NEW_IFACE_P2P_GROUP, "s",
          wpas_dbus_getter_p2p_role,
+         NULL,
          NULL
        },
        { "SSID", WPAS_DBUS_NEW_IFACE_P2P_GROUP, "ay",
          wpas_dbus_getter_p2p_group_ssid,
+         NULL,
          NULL
        },
        { "BSSID", WPAS_DBUS_NEW_IFACE_P2P_GROUP, "ay",
          wpas_dbus_getter_p2p_group_bssid,
+         NULL,
          NULL
        },
        { "Frequency", WPAS_DBUS_NEW_IFACE_P2P_GROUP, "q",
          wpas_dbus_getter_p2p_group_frequency,
+         NULL,
          NULL
        },
        { "Passphrase", WPAS_DBUS_NEW_IFACE_P2P_GROUP, "s",
          wpas_dbus_getter_p2p_group_passphrase,
+         NULL,
          NULL
        },
        { "PSK", WPAS_DBUS_NEW_IFACE_P2P_GROUP, "ay",
          wpas_dbus_getter_p2p_group_psk,
+         NULL,
          NULL
        },
        { "WPSVendorExtensions", WPAS_DBUS_NEW_IFACE_P2P_GROUP, "aay",
          wpas_dbus_getter_p2p_group_vendor_ext,
-         wpas_dbus_setter_p2p_group_vendor_ext
+         wpas_dbus_setter_p2p_group_vendor_ext,
+         NULL
        },
-       { NULL, NULL, NULL, NULL, NULL }
+       { NULL, NULL, NULL, NULL, NULL, NULL }
 };
 
 static const struct wpa_dbus_signal_desc wpas_dbus_p2p_group_signals[] = {
@@ -3557,8 +4158,8 @@ void wpas_dbus_register_p2p_group(struct wpa_supplicant *wpa_s,
                   group_obj_path);
        obj_desc = os_zalloc(sizeof(struct wpa_dbus_object_desc));
        if (!obj_desc) {
-               wpa_printf(MSG_ERROR, "Not enough memory "
-                          "to create object description");
+               wpa_printf(MSG_ERROR,
+                          "Not enough memory to create object description");
                goto err;
        }
 
@@ -3595,6 +4196,9 @@ void wpas_dbus_unregister_p2p_group(struct wpa_supplicant *wpa_s,
        if (wpa_s == NULL || wpa_s->global == NULL)
                return;
 
+       if (wpa_s->p2p_mgmt)
+               wpa_s = wpa_s->parent;
+
        ctrl_iface = wpa_s->global->dbus;
        if (ctrl_iface == NULL)
                return;
@@ -3606,6 +4210,8 @@ void wpas_dbus_unregister_p2p_group(struct wpa_supplicant *wpa_s,
                return;
        }
 
+       peer_groups_changed(wpa_s);
+
        wpa_printf(MSG_DEBUG, "dbus: Unregister group object '%s'",
                   wpa_s->dbus_groupobj_path);
 
@@ -3617,115 +4223,13 @@ void wpas_dbus_unregister_p2p_group(struct wpa_supplicant *wpa_s,
 }
 
 static const struct wpa_dbus_property_desc
-wpas_dbus_p2p_groupmember_properties[] = {
-       { NULL, NULL, NULL, NULL, NULL }
-};
-
-/**
- * wpas_dbus_register_p2p_groupmember - Register a p2p groupmember
- * object with dbus
- * @wpa_s: wpa_supplicant interface structure
- * @p2p_if_addr: i/f addr of the device joining this group
- *
- * Registers p2p groupmember representing object with dbus
- */
-void wpas_dbus_register_p2p_groupmember(struct wpa_supplicant *wpa_s,
-                                       const u8 *p2p_if_addr)
-{
-       struct wpas_dbus_priv *ctrl_iface;
-       struct wpa_dbus_object_desc *obj_desc = NULL;
-       struct groupmember_handler_args *arg;
-       char groupmember_obj_path[WPAS_DBUS_OBJECT_PATH_MAX];
-
-       /* Do nothing if the control interface is not turned on */
-       if (wpa_s == NULL || wpa_s->global == NULL)
-               return;
-
-       ctrl_iface = wpa_s->global->dbus;
-       if (ctrl_iface == NULL)
-               return;
-
-       if (!wpa_s->dbus_groupobj_path)
-               return;
-
-       os_snprintf(groupmember_obj_path, WPAS_DBUS_OBJECT_PATH_MAX,
-               "%s/" WPAS_DBUS_NEW_P2P_GROUPMEMBERS_PART "/" COMPACT_MACSTR,
-               wpa_s->dbus_groupobj_path, MAC2STR(p2p_if_addr));
-
-       obj_desc = os_zalloc(sizeof(struct wpa_dbus_object_desc));
-       if (!obj_desc) {
-               wpa_printf(MSG_ERROR, "Not enough memory "
-                          "to create object description");
-               goto err;
-       }
-
-       /* allocate memory for handlers arguments */
-       arg = os_zalloc(sizeof(struct groupmember_handler_args));
-       if (!arg) {
-               wpa_printf(MSG_ERROR, "Not enough memory "
-                          "to create arguments for method");
-               goto err;
-       }
-
-       arg->wpa_s = wpa_s;
-       os_memcpy(arg->member_addr, p2p_if_addr, ETH_ALEN);
-
-       wpas_dbus_register(obj_desc, arg, wpa_dbus_free, NULL,
-                          wpas_dbus_p2p_groupmember_properties, NULL);
-
-       if (wpa_dbus_register_object_per_iface(ctrl_iface, groupmember_obj_path,
-                                              wpa_s->ifname, obj_desc))
-               goto err;
-
-       wpa_printf(MSG_INFO,
-                  "dbus: Registered group member object '%s' successfully",
-                  groupmember_obj_path);
-       return;
-
-err:
-       free_dbus_object_desc(obj_desc);
-}
-
-/**
- * wpas_dbus_unregister_p2p_groupmember - Unregister a p2p groupmember
- * object with dbus
- * @wpa_s: wpa_supplicant interface structure
- * @p2p_if_addr: i/f addr of the device joining this group
- *
- * Unregisters p2p groupmember representing object with dbus
- */
-void wpas_dbus_unregister_p2p_groupmember(struct wpa_supplicant *wpa_s,
-                                         const u8 *p2p_if_addr)
-{
-       struct wpas_dbus_priv *ctrl_iface;
-       char groupmember_obj_path[WPAS_DBUS_OBJECT_PATH_MAX];
-
-       /* Do nothing if the control interface is not turned on */
-       if (wpa_s == NULL || wpa_s->global == NULL)
-               return;
-
-       ctrl_iface = wpa_s->global->dbus;
-       if (ctrl_iface == NULL)
-               return;
-
-       if (!wpa_s->dbus_groupobj_path)
-               return;
-
-       os_snprintf(groupmember_obj_path, WPAS_DBUS_OBJECT_PATH_MAX,
-               "%s/" WPAS_DBUS_NEW_P2P_GROUPMEMBERS_PART "/" COMPACT_MACSTR,
-               wpa_s->dbus_groupobj_path, MAC2STR(p2p_if_addr));
-
-       wpa_dbus_unregister_object_per_iface(ctrl_iface, groupmember_obj_path);
-}
-
-
-static const struct wpa_dbus_property_desc
        wpas_dbus_persistent_group_properties[] = {
        { "Properties", WPAS_DBUS_NEW_IFACE_PERSISTENT_GROUP, "a{sv}",
          wpas_dbus_getter_persistent_group_properties,
-         wpas_dbus_setter_persistent_group_properties
+         wpas_dbus_setter_persistent_group_properties,
+         NULL
        },
-       { NULL, NULL, NULL, NULL, NULL }
+       { NULL, NULL, NULL, NULL, NULL, NULL }
 };
 
 /* No signals intended for persistent group objects */
@@ -3751,11 +4255,17 @@ int wpas_dbus_register_persistent_group(struct wpa_supplicant *wpa_s,
        /* Do nothing if the control interface is not turned on */
        if (wpa_s == NULL || wpa_s->global == NULL)
                return 0;
+       wpa_s = wpa_s->parent->parent;
+       if (!wpa_s->dbus_new_path)
+               return 0;
 
        /* Make sure ssid is a persistent group */
        if (ssid->disabled != 2 && !ssid->p2p_persistent_group)
                return -1; /* should we return w/o complaining? */
 
+       if (wpa_s->p2p_mgmt)
+               wpa_s = wpa_s->parent;
+
        ctrl_iface = wpa_s->global->dbus;
        if (ctrl_iface == NULL)
                return 0;
@@ -3772,8 +4282,8 @@ int wpas_dbus_register_persistent_group(struct wpa_supplicant *wpa_s,
                   pgrp_obj_path);
        obj_desc = os_zalloc(sizeof(struct wpa_dbus_object_desc));
        if (!obj_desc) {
-               wpa_printf(MSG_ERROR, "dbus: Not enough memory to create "
-                          "object description");
+               wpa_printf(MSG_ERROR,
+                          "dbus: Not enough memory to create object description");
                goto err;
        }
 
@@ -3784,8 +4294,8 @@ int wpas_dbus_register_persistent_group(struct wpa_supplicant *wpa_s,
        /* allocate memory for handlers arguments */
        arg = os_zalloc(sizeof(struct network_handler_args));
        if (!arg) {
-               wpa_printf(MSG_ERROR, "dbus: Not enough memory to create "
-                          "arguments for method");
+               wpa_printf(MSG_ERROR,
+                          "dbus: Not enough memory to create arguments for method");
                goto err;
        }
 
@@ -3832,11 +4342,13 @@ int wpas_dbus_unregister_persistent_group(struct wpa_supplicant *wpa_s,
        int ret;
 
        /* Do nothing if the control interface is not turned on */
-       if (wpa_s == NULL || wpa_s->global == NULL ||
-           wpa_s->dbus_new_path == NULL)
+       if (wpa_s == NULL || wpa_s->global == NULL)
                return 0;
+
+       wpa_s = wpa_s->parent->parent;
+
        ctrl_iface = wpa_s->global->dbus;
-       if (ctrl_iface == NULL)
+       if (ctrl_iface == NULL || !wpa_s->dbus_new_path)
                return 0;
 
        os_snprintf(pgrp_obj_path, WPAS_DBUS_OBJECT_PATH_MAX,