]> git.ipfire.org Git - thirdparty/hostap.git/blobdiff - src/ap/dpp_hostapd.c
Check pbkdf2_sha1() result when generating PSK from PSK file
[thirdparty/hostap.git] / src / ap / dpp_hostapd.c
index 81c3989277c10968f8a4ff5622d0b125741e7134..8e22c8ba60c323d3ded303e8c1ba799425c4d64a 100644 (file)
@@ -1,6 +1,7 @@
 /*
  * hostapd / DPP integration
  * Copyright (c) 2017, Qualcomm Atheros, Inc.
+ * Copyright (c) 2018-2020, The Linux Foundation
  *
  * This software may be distributed under the terms of the BSD license.
  * See README for more details.
 #include "hostapd.h"
 #include "ap_drv_ops.h"
 #include "gas_query_ap.h"
+#include "gas_serv.h"
 #include "wpa_auth.h"
 #include "dpp_hostapd.h"
 
 
+static void hostapd_dpp_reply_wait_timeout(void *eloop_ctx, void *timeout_ctx);
 static void hostapd_dpp_auth_success(struct hostapd_data *hapd, int initiator);
+static void hostapd_dpp_init_timeout(void *eloop_ctx, void *timeout_ctx);
+static int hostapd_dpp_auth_init_next(struct hostapd_data *hapd);
 
 static const u8 broadcast[ETH_ALEN] = { 0xff, 0xff, 0xff, 0xff, 0xff, 0xff };
 
 
-static struct dpp_configurator *
-hostapd_dpp_configurator_get_id(struct hostapd_data *hapd, unsigned int id)
-{
-       struct dpp_configurator *conf;
-
-       dl_list_for_each(conf, &hapd->iface->interfaces->dpp_configurator,
-                        struct dpp_configurator, list) {
-               if (conf->id == id)
-                       return conf;
-       }
-       return NULL;
-}
-
-
-static unsigned int hapd_dpp_next_id(struct hostapd_data *hapd)
-{
-       struct dpp_bootstrap_info *bi;
-       unsigned int max_id = 0;
-
-       dl_list_for_each(bi, &hapd->iface->interfaces->dpp_bootstrap,
-                        struct dpp_bootstrap_info, list) {
-               if (bi->id > max_id)
-                       max_id = bi->id;
-       }
-       return max_id + 1;
-}
-
-
 /**
  * hostapd_dpp_qr_code - Parse and add DPP bootstrapping info from a QR Code
  * @hapd: Pointer to hostapd_data
@@ -64,13 +41,10 @@ int hostapd_dpp_qr_code(struct hostapd_data *hapd, const char *cmd)
        struct dpp_bootstrap_info *bi;
        struct dpp_authentication *auth = hapd->dpp_auth;
 
-       bi = dpp_parse_qr_code(cmd);
+       bi = dpp_add_qr_code(hapd->iface->interfaces->dpp, cmd);
        if (!bi)
                return -1;
 
-       bi->id = hapd_dpp_next_id(hapd);
-       dl_list_add(&hapd->iface->interfaces->dpp_bootstrap, &bi->list);
-
        if (auth && auth->response_pending &&
            dpp_notify_new_qr_code(auth, bi) == 1) {
                wpa_printf(MSG_DEBUG,
@@ -89,198 +63,151 @@ int hostapd_dpp_qr_code(struct hostapd_data *hapd, const char *cmd)
 }
 
 
-static char * get_param(const char *cmd, const char *param)
+/**
+ * hostapd_dpp_nfc_uri - Parse and add DPP bootstrapping info from NFC Tag (URI)
+ * @hapd: Pointer to hostapd_data
+ * @cmd: DPP URI read from a NFC Tag (URI NDEF message)
+ * Returns: Identifier of the stored info or -1 on failure
+ */
+int hostapd_dpp_nfc_uri(struct hostapd_data *hapd, const char *cmd)
 {
-       const char *pos, *end;
-       char *val;
-       size_t len;
+       struct dpp_bootstrap_info *bi;
 
-       pos = os_strstr(cmd, param);
-       if (!pos)
-               return NULL;
+       bi = dpp_add_nfc_uri(hapd->iface->interfaces->dpp, cmd);
+       if (!bi)
+               return -1;
 
-       pos += os_strlen(param);
-       end = os_strchr(pos, ' ');
-       if (end)
-               len = end - pos;
-       else
-               len = os_strlen(pos);
-       val = os_malloc(len + 1);
-       if (!val)
-               return NULL;
-       os_memcpy(val, pos, len);
-       val[len] = '\0';
-       return val;
+       return bi->id;
 }
 
 
-int hostapd_dpp_bootstrap_gen(struct hostapd_data *hapd, const char *cmd)
+int hostapd_dpp_nfc_handover_req(struct hostapd_data *hapd, const char *cmd)
 {
-       char *chan = NULL, *mac = NULL, *info = NULL, *pk = NULL, *curve = NULL;
-       char *key = NULL;
-       u8 *privkey = NULL;
-       size_t privkey_len = 0;
-       size_t len;
-       int ret = -1;
-       struct dpp_bootstrap_info *bi;
-
-       bi = os_zalloc(sizeof(*bi));
-       if (!bi)
-               goto fail;
-
-       if (os_strstr(cmd, "type=qrcode"))
-               bi->type = DPP_BOOTSTRAP_QR_CODE;
-       else if (os_strstr(cmd, "type=pkex"))
-               bi->type = DPP_BOOTSTRAP_PKEX;
-       else
-               goto fail;
+       const char *pos;
+       struct dpp_bootstrap_info *peer_bi, *own_bi;
 
-       chan = get_param(cmd, " chan=");
-       mac = get_param(cmd, " mac=");
-       info = get_param(cmd, " info=");
-       curve = get_param(cmd, " curve=");
-       key = get_param(cmd, " key=");
+       pos = os_strstr(cmd, " own=");
+       if (!pos)
+               return -1;
+       pos += 5;
+       own_bi = dpp_bootstrap_get_id(hapd->iface->interfaces->dpp, atoi(pos));
+       if (!own_bi)
+               return -1;
 
-       if (key) {
-               privkey_len = os_strlen(key) / 2;
-               privkey = os_malloc(privkey_len);
-               if (!privkey ||
-                   hexstr2bin(key, privkey, privkey_len) < 0)
-                       goto fail;
+       pos = os_strstr(cmd, " uri=");
+       if (!pos)
+               return -1;
+       pos += 5;
+       peer_bi = dpp_add_nfc_uri(hapd->iface->interfaces->dpp, pos);
+       if (!peer_bi) {
+               wpa_printf(MSG_INFO,
+                          "DPP: Failed to parse URI from NFC Handover Request");
+               return -1;
        }
 
-       pk = dpp_keygen(bi, curve, privkey, privkey_len);
-       if (!pk)
-               goto fail;
+       if (dpp_nfc_update_bi(own_bi, peer_bi) < 0)
+               return -1;
 
-       len = 4; /* "DPP:" */
-       if (chan) {
-               if (dpp_parse_uri_chan_list(bi, chan) < 0)
-                       goto fail;
-               len += 3 + os_strlen(chan); /* C:...; */
-       }
-       if (mac) {
-               if (dpp_parse_uri_mac(bi, mac) < 0)
-                       goto fail;
-               len += 3 + os_strlen(mac); /* M:...; */
-       }
-       if (info) {
-               if (dpp_parse_uri_info(bi, info) < 0)
-                       goto fail;
-               len += 3 + os_strlen(info); /* I:...; */
-       }
-       len += 4 + os_strlen(pk);
-       bi->uri = os_malloc(len + 1);
-       if (!bi->uri)
-               goto fail;
-       os_snprintf(bi->uri, len + 1, "DPP:%s%s%s%s%s%s%s%s%sK:%s;;",
-                   chan ? "C:" : "", chan ? chan : "", chan ? ";" : "",
-                   mac ? "M:" : "", mac ? mac : "", mac ? ";" : "",
-                   info ? "I:" : "", info ? info : "", info ? ";" : "",
-                   pk);
-       bi->id = hapd_dpp_next_id(hapd);
-       dl_list_add(&hapd->iface->interfaces->dpp_bootstrap, &bi->list);
-       ret = bi->id;
-       bi = NULL;
-fail:
-       os_free(curve);
-       os_free(pk);
-       os_free(chan);
-       os_free(mac);
-       os_free(info);
-       str_clear_free(key);
-       bin_clear_free(privkey, privkey_len);
-       dpp_bootstrap_info_free(bi);
-       return ret;
+       return peer_bi->id;
 }
 
 
-static struct dpp_bootstrap_info *
-dpp_bootstrap_get_id(struct hostapd_data *hapd, unsigned int id)
+int hostapd_dpp_nfc_handover_sel(struct hostapd_data *hapd, const char *cmd)
 {
-       struct dpp_bootstrap_info *bi;
-
-       dl_list_for_each(bi, &hapd->iface->interfaces->dpp_bootstrap,
-                        struct dpp_bootstrap_info, list) {
-               if (bi->id == id)
-                       return bi;
-       }
-       return NULL;
-}
+       const char *pos;
+       struct dpp_bootstrap_info *peer_bi, *own_bi;
 
+       pos = os_strstr(cmd, " own=");
+       if (!pos)
+               return -1;
+       pos += 5;
+       own_bi = dpp_bootstrap_get_id(hapd->iface->interfaces->dpp, atoi(pos));
+       if (!own_bi)
+               return -1;
 
-static int dpp_bootstrap_del(struct hapd_interfaces *ifaces, unsigned int id)
-{
-       struct dpp_bootstrap_info *bi, *tmp;
-       int found = 0;
+       pos = os_strstr(cmd, " uri=");
+       if (!pos)
+               return -1;
+       pos += 5;
+       peer_bi = dpp_add_nfc_uri(hapd->iface->interfaces->dpp, pos);
+       if (!peer_bi) {
+               wpa_printf(MSG_INFO,
+                          "DPP: Failed to parse URI from NFC Handover Select");
+               return -1;
+       }
 
-       dl_list_for_each_safe(bi, tmp, &ifaces->dpp_bootstrap,
-                             struct dpp_bootstrap_info, list) {
-               if (id && bi->id != id)
-                       continue;
-               found = 1;
-               dl_list_del(&bi->list);
-               dpp_bootstrap_info_free(bi);
+       if (peer_bi->curve != own_bi->curve) {
+               wpa_printf(MSG_INFO,
+                          "DPP: Peer (NFC Handover Selector) used different curve");
+               return -1;
        }
 
-       if (id == 0)
-               return 0; /* flush succeeds regardless of entries found */
-       return found ? 0 : -1;
+       return peer_bi->id;
 }
 
 
-int hostapd_dpp_bootstrap_remove(struct hostapd_data *hapd, const char *id)
+static void hostapd_dpp_auth_resp_retry_timeout(void *eloop_ctx,
+                                               void *timeout_ctx)
 {
-       unsigned int id_val;
+       struct hostapd_data *hapd = eloop_ctx;
+       struct dpp_authentication *auth = hapd->dpp_auth;
 
-       if (os_strcmp(id, "*") == 0) {
-               id_val = 0;
-       } else {
-               id_val = atoi(id);
-               if (id_val == 0)
-                       return -1;
-       }
+       if (!auth || !auth->resp_msg)
+               return;
 
-       return dpp_bootstrap_del(hapd->iface->interfaces, id_val);
+       wpa_printf(MSG_DEBUG,
+                  "DPP: Retry Authentication Response after timeout");
+       wpa_msg(hapd->msg_ctx, MSG_INFO, DPP_EVENT_TX "dst=" MACSTR
+               " freq=%u type=%d",
+               MAC2STR(auth->peer_mac_addr), auth->curr_freq,
+               DPP_PA_AUTHENTICATION_RESP);
+       hostapd_drv_send_action(hapd, auth->curr_freq, 500, auth->peer_mac_addr,
+                               wpabuf_head(auth->resp_msg),
+                               wpabuf_len(auth->resp_msg));
 }
 
 
-const char * hostapd_dpp_bootstrap_get_uri(struct hostapd_data *hapd,
-                                          unsigned int id)
+static void hostapd_dpp_auth_resp_retry(struct hostapd_data *hapd)
 {
-       struct dpp_bootstrap_info *bi;
-
-       bi = dpp_bootstrap_get_id(hapd, id);
-       if (!bi)
-               return NULL;
-       return bi->uri;
-}
+       struct dpp_authentication *auth = hapd->dpp_auth;
+       unsigned int wait_time, max_tries;
 
+       if (!auth || !auth->resp_msg)
+               return;
 
-int hostapd_dpp_bootstrap_info(struct hostapd_data *hapd, int id,
-                              char *reply, int reply_size)
-{
-       struct dpp_bootstrap_info *bi;
+       if (hapd->dpp_resp_max_tries)
+               max_tries = hapd->dpp_resp_max_tries;
+       else
+               max_tries = 5;
+       auth->auth_resp_tries++;
+       if (auth->auth_resp_tries >= max_tries) {
+               wpa_printf(MSG_INFO,
+                          "DPP: No confirm received from initiator - stopping exchange");
+               hostapd_drv_send_action_cancel_wait(hapd);
+               dpp_auth_deinit(hapd->dpp_auth);
+               hapd->dpp_auth = NULL;
+               return;
+       }
 
-       bi = dpp_bootstrap_get_id(hapd, id);
-       if (!bi)
-               return -1;
-       return os_snprintf(reply, reply_size, "type=%s\n"
-                          "mac_addr=" MACSTR "\n"
-                          "info=%s\n"
-                          "num_freq=%u\n"
-                          "curve=%s\n",
-                          dpp_bootstrap_type_txt(bi->type),
-                          MAC2STR(bi->mac_addr),
-                          bi->info ? bi->info : "",
-                          bi->num_freq,
-                          bi->curve->name);
+       if (hapd->dpp_resp_retry_time)
+               wait_time = hapd->dpp_resp_retry_time;
+       else
+               wait_time = 1000;
+       wpa_printf(MSG_DEBUG,
+                  "DPP: Schedule retransmission of Authentication Response frame in %u ms",
+               wait_time);
+       eloop_cancel_timeout(hostapd_dpp_auth_resp_retry_timeout, hapd, NULL);
+       eloop_register_timeout(wait_time / 1000,
+                              (wait_time % 1000) * 1000,
+                              hostapd_dpp_auth_resp_retry_timeout, hapd, NULL);
 }
 
 
 void hostapd_dpp_tx_status(struct hostapd_data *hapd, const u8 *dst,
                           const u8 *data, size_t data_len, int ok)
 {
+       struct dpp_authentication *auth = hapd->dpp_auth;
+
        wpa_printf(MSG_DEBUG, "DPP: TX status: dst=" MACSTR " ok=%d",
                   MAC2STR(dst), ok);
        wpa_msg(hapd->msg_ctx, MSG_INFO, DPP_EVENT_TX_STATUS "dst=" MACSTR
@@ -292,18 +219,146 @@ void hostapd_dpp_tx_status(struct hostapd_data *hapd, const u8 *dst,
                return;
        }
 
+#ifdef CONFIG_DPP2
+       if (auth->connect_on_tx_status) {
+               wpa_printf(MSG_DEBUG,
+                          "DPP: Complete exchange on configuration result");
+               dpp_auth_deinit(hapd->dpp_auth);
+               hapd->dpp_auth = NULL;
+               return;
+       }
+#endif /* CONFIG_DPP2 */
+
        if (hapd->dpp_auth->remove_on_tx_status) {
                wpa_printf(MSG_DEBUG,
                           "DPP: Terminate authentication exchange due to an earlier error");
+               eloop_cancel_timeout(hostapd_dpp_init_timeout, hapd, NULL);
+               eloop_cancel_timeout(hostapd_dpp_reply_wait_timeout,
+                                    hapd, NULL);
+               eloop_cancel_timeout(hostapd_dpp_auth_resp_retry_timeout, hapd,
+                                    NULL);
+               hostapd_drv_send_action_cancel_wait(hapd);
                dpp_auth_deinit(hapd->dpp_auth);
                hapd->dpp_auth = NULL;
                return;
        }
 
-       if (hapd->dpp_auth_ok_on_ack) {
-               hapd->dpp_auth_ok_on_ack = 0;
+       if (hapd->dpp_auth_ok_on_ack)
                hostapd_dpp_auth_success(hapd, 1);
+
+       if (!is_broadcast_ether_addr(dst) && !ok) {
+               wpa_printf(MSG_DEBUG,
+                          "DPP: Unicast DPP Action frame was not ACKed");
+               if (auth->waiting_auth_resp) {
+                       /* In case of DPP Authentication Request frame, move to
+                        * the next channel immediately. */
+                       hostapd_drv_send_action_cancel_wait(hapd);
+                       hostapd_dpp_auth_init_next(hapd);
+                       return;
+               }
+               if (auth->waiting_auth_conf) {
+                       hostapd_dpp_auth_resp_retry(hapd);
+                       return;
+               }
+       }
+
+       if (!is_broadcast_ether_addr(dst) && auth->waiting_auth_resp && ok) {
+               /* Allow timeout handling to stop iteration if no response is
+                * received from a peer that has ACKed a request. */
+               auth->auth_req_ack = 1;
+       }
+
+       if (!hapd->dpp_auth_ok_on_ack && hapd->dpp_auth->neg_freq > 0 &&
+           hapd->dpp_auth->curr_freq != hapd->dpp_auth->neg_freq) {
+               wpa_printf(MSG_DEBUG,
+                          "DPP: Move from curr_freq %u MHz to neg_freq %u MHz for response",
+                          hapd->dpp_auth->curr_freq,
+                          hapd->dpp_auth->neg_freq);
+               hostapd_drv_send_action_cancel_wait(hapd);
+
+               if (hapd->dpp_auth->neg_freq !=
+                   (unsigned int) hapd->iface->freq && hapd->iface->freq > 0) {
+                       /* TODO: Listen operation on non-operating channel */
+                       wpa_printf(MSG_INFO,
+                                  "DPP: Listen operation on non-operating channel (%d MHz) is not yet supported (operating channel: %d MHz)",
+                                  hapd->dpp_auth->neg_freq, hapd->iface->freq);
+               }
+       }
+
+       if (hapd->dpp_auth_ok_on_ack)
+               hapd->dpp_auth_ok_on_ack = 0;
+}
+
+
+static void hostapd_dpp_reply_wait_timeout(void *eloop_ctx, void *timeout_ctx)
+{
+       struct hostapd_data *hapd = eloop_ctx;
+       struct dpp_authentication *auth = hapd->dpp_auth;
+       unsigned int freq;
+       struct os_reltime now, diff;
+       unsigned int wait_time, diff_ms;
+
+       if (!auth || !auth->waiting_auth_resp)
+               return;
+
+       wait_time = hapd->dpp_resp_wait_time ?
+               hapd->dpp_resp_wait_time : 2000;
+       os_get_reltime(&now);
+       os_reltime_sub(&now, &hapd->dpp_last_init, &diff);
+       diff_ms = diff.sec * 1000 + diff.usec / 1000;
+       wpa_printf(MSG_DEBUG,
+                  "DPP: Reply wait timeout - wait_time=%u diff_ms=%u",
+                  wait_time, diff_ms);
+
+       if (auth->auth_req_ack && diff_ms >= wait_time) {
+               /* Peer ACK'ed Authentication Request frame, but did not reply
+                * with Authentication Response frame within two seconds. */
+               wpa_printf(MSG_INFO,
+                          "DPP: No response received from responder - stopping initiation attempt");
+               wpa_msg(hapd->msg_ctx, MSG_INFO, DPP_EVENT_AUTH_INIT_FAILED);
+               hostapd_drv_send_action_cancel_wait(hapd);
+               hostapd_dpp_listen_stop(hapd);
+               dpp_auth_deinit(auth);
+               hapd->dpp_auth = NULL;
+               return;
        }
+
+       if (diff_ms >= wait_time) {
+               /* Authentication Request frame was not ACK'ed and no reply
+                * was receiving within two seconds. */
+               wpa_printf(MSG_DEBUG,
+                          "DPP: Continue Initiator channel iteration");
+               hostapd_drv_send_action_cancel_wait(hapd);
+               hostapd_dpp_listen_stop(hapd);
+               hostapd_dpp_auth_init_next(hapd);
+               return;
+       }
+
+       /* Driver did not support 2000 ms long wait_time with TX command, so
+        * schedule listen operation to continue waiting for the response.
+        *
+        * DPP listen operations continue until stopped, so simply schedule a
+        * new call to this function at the point when the two second reply
+        * wait has expired. */
+       wait_time -= diff_ms;
+
+       freq = auth->curr_freq;
+       if (auth->neg_freq > 0)
+               freq = auth->neg_freq;
+       wpa_printf(MSG_DEBUG,
+                  "DPP: Continue reply wait on channel %u MHz for %u ms",
+                  freq, wait_time);
+       hapd->dpp_in_response_listen = 1;
+
+       if (freq != (unsigned int) hapd->iface->freq && hapd->iface->freq > 0) {
+               /* TODO: Listen operation on non-operating channel */
+               wpa_printf(MSG_INFO,
+                          "DPP: Listen operation on non-operating channel (%d MHz) is not yet supported (operating channel: %d MHz)",
+                          freq, hapd->iface->freq);
+       }
+
+       eloop_register_timeout(wait_time / 1000, (wait_time % 1000) * 1000,
+                              hostapd_dpp_reply_wait_timeout, hapd, NULL);
 }
 
 
@@ -325,146 +380,101 @@ static void hostapd_dpp_set_testing_options(struct hostapd_data *hapd,
 }
 
 
-static void hostapd_dpp_set_configurator(struct hostapd_data *hapd,
-                                        struct dpp_authentication *auth,
-                                        const char *cmd)
+static void hostapd_dpp_init_timeout(void *eloop_ctx, void *timeout_ctx)
 {
-       const char *pos, *end;
-       struct dpp_configuration *conf_sta = NULL, *conf_ap = NULL;
-       struct dpp_configurator *conf = NULL;
-       u8 ssid[32] = { "test" };
-       size_t ssid_len = 4;
-       char pass[64] = { };
-       size_t pass_len = 0;
-       u8 psk[PMK_LEN];
-       int psk_set = 0;
-
-       if (!cmd)
-               return;
+       struct hostapd_data *hapd = eloop_ctx;
 
-       wpa_printf(MSG_DEBUG, "DPP: Set configurator parameters: %s", cmd);
-       pos = os_strstr(cmd, " ssid=");
-       if (pos) {
-               pos += 6;
-               end = os_strchr(pos, ' ');
-               ssid_len = end ? (size_t) (end - pos) : os_strlen(pos);
-               ssid_len /= 2;
-               if (ssid_len > sizeof(ssid) ||
-                   hexstr2bin(pos, ssid, ssid_len) < 0)
-                       goto fail;
-       }
-
-       pos = os_strstr(cmd, " pass=");
-       if (pos) {
-               pos += 6;
-               end = os_strchr(pos, ' ');
-               pass_len = end ? (size_t) (end - pos) : os_strlen(pos);
-               pass_len /= 2;
-               if (pass_len > sizeof(pass) - 1 || pass_len < 8 ||
-                   hexstr2bin(pos, (u8 *) pass, pass_len) < 0)
-                       goto fail;
-       }
+       if (!hapd->dpp_auth)
+               return;
+       wpa_printf(MSG_DEBUG, "DPP: Retry initiation after timeout");
+       hostapd_dpp_auth_init_next(hapd);
+}
 
-       pos = os_strstr(cmd, " psk=");
-       if (pos) {
-               pos += 5;
-               if (hexstr2bin(pos, psk, PMK_LEN) < 0)
-                       goto fail;
-               psk_set = 1;
-       }
 
-       if (os_strstr(cmd, " conf=sta-")) {
-               conf_sta = os_zalloc(sizeof(struct dpp_configuration));
-               if (!conf_sta)
-                       goto fail;
-               os_memcpy(conf_sta->ssid, ssid, ssid_len);
-               conf_sta->ssid_len = ssid_len;
-               if (os_strstr(cmd, " conf=sta-psk") ||
-                   os_strstr(cmd, " conf=sta-sae") ||
-                   os_strstr(cmd, " conf=sta-psk-sae")) {
-                       if (os_strstr(cmd, " conf=sta-psk-sae"))
-                               conf_sta->akm = DPP_AKM_PSK_SAE;
-                       else if (os_strstr(cmd, " conf=sta-sae"))
-                               conf_sta->akm = DPP_AKM_SAE;
-                       else
-                               conf_sta->akm = DPP_AKM_PSK;
-                       if (psk_set) {
-                               os_memcpy(conf_sta->psk, psk, PMK_LEN);
-                       } else {
-                               conf_sta->passphrase = os_strdup(pass);
-                               if (!conf_sta->passphrase)
-                                       goto fail;
-                       }
-               } else if (os_strstr(cmd, " conf=sta-dpp")) {
-                       conf_sta->akm = DPP_AKM_DPP;
-               } else {
-                       goto fail;
-               }
-       }
-
-       if (os_strstr(cmd, " conf=ap-")) {
-               conf_ap = os_zalloc(sizeof(struct dpp_configuration));
-               if (!conf_ap)
-                       goto fail;
-               os_memcpy(conf_ap->ssid, ssid, ssid_len);
-               conf_ap->ssid_len = ssid_len;
-               if (os_strstr(cmd, " conf=ap-psk") ||
-                   os_strstr(cmd, " conf=ap-sae") ||
-                   os_strstr(cmd, " conf=ap-psk-sae")) {
-                       if (os_strstr(cmd, " conf=ap-psk-sae"))
-                               conf_ap->akm = DPP_AKM_PSK_SAE;
-                       else if (os_strstr(cmd, " conf=ap-sae"))
-                               conf_ap->akm = DPP_AKM_SAE;
-                       else
-                               conf_ap->akm = DPP_AKM_PSK;
-                       if (psk_set) {
-                               os_memcpy(conf_ap->psk, psk, PMK_LEN);
-                       } else {
-                               conf_ap->passphrase = os_strdup(pass);
-                               if (!conf_ap->passphrase)
-                                       goto fail;
-                       }
-               } else if (os_strstr(cmd, " conf=ap-dpp")) {
-                       conf_ap->akm = DPP_AKM_DPP;
-               } else {
-                       goto fail;
-               }
-       }
+static int hostapd_dpp_auth_init_next(struct hostapd_data *hapd)
+{
+       struct dpp_authentication *auth = hapd->dpp_auth;
+       const u8 *dst;
+       unsigned int wait_time, max_wait_time, freq, max_tries, used;
+       struct os_reltime now, diff;
 
-       pos = os_strstr(cmd, " expiry=");
-       if (pos) {
-               long int val;
+       if (!auth)
+               return -1;
 
-               pos += 8;
-               val = strtol(pos, NULL, 0);
-               if (val <= 0)
-                       goto fail;
-               if (conf_sta)
-                       conf_sta->netaccesskey_expiry = val;
-               if (conf_ap)
-                       conf_ap->netaccesskey_expiry = val;
-       }
+       if (auth->freq_idx == 0)
+               os_get_reltime(&hapd->dpp_init_iter_start);
 
-       pos = os_strstr(cmd, " configurator=");
-       if (pos) {
-               auth->configurator = 1;
-               pos += 14;
-               conf = hostapd_dpp_configurator_get_id(hapd, atoi(pos));
-               if (!conf) {
+       if (auth->freq_idx >= auth->num_freq) {
+               auth->num_freq_iters++;
+               if (hapd->dpp_init_max_tries)
+                       max_tries = hapd->dpp_init_max_tries;
+               else
+                       max_tries = 5;
+               if (auth->num_freq_iters >= max_tries || auth->auth_req_ack) {
                        wpa_printf(MSG_INFO,
-                                  "DPP: Could not find the specified configurator");
-                       goto fail;
+                                  "DPP: No response received from responder - stopping initiation attempt");
+                       wpa_msg(hapd->msg_ctx, MSG_INFO,
+                               DPP_EVENT_AUTH_INIT_FAILED);
+                       eloop_cancel_timeout(hostapd_dpp_reply_wait_timeout,
+                                            hapd, NULL);
+                       hostapd_drv_send_action_cancel_wait(hapd);
+                       dpp_auth_deinit(hapd->dpp_auth);
+                       hapd->dpp_auth = NULL;
+                       return -1;
                }
+               auth->freq_idx = 0;
+               eloop_cancel_timeout(hostapd_dpp_init_timeout, hapd, NULL);
+               if (hapd->dpp_init_retry_time)
+                       wait_time = hapd->dpp_init_retry_time;
+               else
+                       wait_time = 10000;
+               os_get_reltime(&now);
+               os_reltime_sub(&now, &hapd->dpp_init_iter_start, &diff);
+               used = diff.sec * 1000 + diff.usec / 1000;
+               if (used > wait_time)
+                       wait_time = 0;
+               else
+                       wait_time -= used;
+               wpa_printf(MSG_DEBUG, "DPP: Next init attempt in %u ms",
+                          wait_time);
+               eloop_register_timeout(wait_time / 1000,
+                                      (wait_time % 1000) * 1000,
+                                      hostapd_dpp_init_timeout, hapd,
+                                      NULL);
+               return 0;
+       }
+       freq = auth->freq[auth->freq_idx++];
+       auth->curr_freq = freq;
+
+       if (is_zero_ether_addr(auth->peer_bi->mac_addr))
+               dst = broadcast;
+       else
+               dst = auth->peer_bi->mac_addr;
+       hapd->dpp_auth_ok_on_ack = 0;
+       eloop_cancel_timeout(hostapd_dpp_reply_wait_timeout, hapd, NULL);
+       wait_time = 2000; /* TODO: hapd->max_remain_on_chan; */
+       max_wait_time = hapd->dpp_resp_wait_time ?
+               hapd->dpp_resp_wait_time : 2000;
+       if (wait_time > max_wait_time)
+               wait_time = max_wait_time;
+       wait_time += 10; /* give the driver some extra time to complete */
+       eloop_register_timeout(wait_time / 1000, (wait_time % 1000) * 1000,
+                              hostapd_dpp_reply_wait_timeout, hapd, NULL);
+       wait_time -= 10;
+       if (auth->neg_freq > 0 && freq != auth->neg_freq) {
+               wpa_printf(MSG_DEBUG,
+                          "DPP: Initiate on %u MHz and move to neg_freq %u MHz for response",
+                          freq, auth->neg_freq);
        }
-       auth->conf_sta = conf_sta;
-       auth->conf_ap = conf_ap;
-       auth->conf = conf;
-       return;
-
-fail:
-       wpa_printf(MSG_DEBUG, "DPP: Failed to set configurator parameters");
-       dpp_configuration_free(conf_sta);
-       dpp_configuration_free(conf_ap);
+       wpa_msg(hapd->msg_ctx, MSG_INFO, DPP_EVENT_TX "dst=" MACSTR
+               " freq=%u type=%d",
+               MAC2STR(dst), freq, DPP_PA_AUTHENTICATION_REQ);
+       auth->auth_req_ack = 0;
+       os_get_reltime(&hapd->dpp_last_init);
+       return hostapd_drv_send_action(hapd, freq, wait_time,
+                                      dst,
+                                      wpabuf_head(hapd->dpp_auth->req_msg),
+                                      wpabuf_len(hapd->dpp_auth->req_msg));
 }
 
 
@@ -472,16 +482,14 @@ int hostapd_dpp_auth_init(struct hostapd_data *hapd, const char *cmd)
 {
        const char *pos;
        struct dpp_bootstrap_info *peer_bi, *own_bi = NULL;
-       const u8 *dst;
-       int res;
        u8 allowed_roles = DPP_CAPAB_CONFIGURATOR;
-       struct dpp_configuration *conf_sta = NULL, *conf_ap = NULL;
+       unsigned int neg_freq = 0;
 
        pos = os_strstr(cmd, " peer=");
        if (!pos)
                return -1;
        pos += 6;
-       peer_bi = dpp_bootstrap_get_id(hapd, atoi(pos));
+       peer_bi = dpp_bootstrap_get_id(hapd->iface->interfaces->dpp, atoi(pos));
        if (!peer_bi) {
                wpa_printf(MSG_INFO,
                           "DPP: Could not find bootstrapping info for the identified peer");
@@ -491,7 +499,8 @@ int hostapd_dpp_auth_init(struct hostapd_data *hapd, const char *cmd)
        pos = os_strstr(cmd, " own=");
        if (pos) {
                pos += 5;
-               own_bi = dpp_bootstrap_get_id(hapd, atoi(pos));
+               own_bi = dpp_bootstrap_get_id(hapd->iface->interfaces->dpp,
+                                             atoi(pos));
                if (!own_bi) {
                        wpa_printf(MSG_INFO,
                                   "DPP: Could not find bootstrapping info for the identified local entry");
@@ -520,41 +529,42 @@ int hostapd_dpp_auth_init(struct hostapd_data *hapd, const char *cmd)
                        goto fail;
        }
 
-       if (hapd->dpp_auth)
+       pos = os_strstr(cmd, " neg_freq=");
+       if (pos)
+               neg_freq = atoi(pos + 10);
+
+       if (hapd->dpp_auth) {
+               eloop_cancel_timeout(hostapd_dpp_init_timeout, hapd, NULL);
+               eloop_cancel_timeout(hostapd_dpp_reply_wait_timeout,
+                                    hapd, NULL);
+               eloop_cancel_timeout(hostapd_dpp_auth_resp_retry_timeout, hapd,
+                                    NULL);
+               hostapd_drv_send_action_cancel_wait(hapd);
                dpp_auth_deinit(hapd->dpp_auth);
-       /* TODO: hw_modes */
+       }
+
        hapd->dpp_auth = dpp_auth_init(hapd->msg_ctx, peer_bi, own_bi,
-                                      allowed_roles, 0, NULL, 0);
+                                      allowed_roles, neg_freq,
+                                      hapd->iface->hw_features,
+                                      hapd->iface->num_hw_features);
        if (!hapd->dpp_auth)
                goto fail;
        hostapd_dpp_set_testing_options(hapd, hapd->dpp_auth);
-       hostapd_dpp_set_configurator(hapd, hapd->dpp_auth, cmd);
+       if (dpp_set_configurator(hapd->iface->interfaces->dpp, hapd->msg_ctx,
+                                hapd->dpp_auth, cmd) < 0) {
+               dpp_auth_deinit(hapd->dpp_auth);
+               hapd->dpp_auth = NULL;
+               goto fail;
+       }
 
-       /* TODO: Support iteration over all frequencies and filtering of
-        * frequencies based on locally enabled channels that allow initiation
-        * of transmission. */
+       hapd->dpp_auth->neg_freq = neg_freq;
 
-       if (is_zero_ether_addr(peer_bi->mac_addr)) {
-               dst = broadcast;
-       } else {
-               dst = peer_bi->mac_addr;
+       if (!is_zero_ether_addr(peer_bi->mac_addr))
                os_memcpy(hapd->dpp_auth->peer_mac_addr, peer_bi->mac_addr,
                          ETH_ALEN);
-       }
-       hapd->dpp_auth_ok_on_ack = 0;
 
-       wpa_msg(hapd->msg_ctx, MSG_INFO, DPP_EVENT_TX "dst=" MACSTR
-               " freq=%u type=%d",
-               MAC2STR(dst), hapd->dpp_auth->curr_freq,
-               DPP_PA_AUTHENTICATION_REQ);
-       res = hostapd_drv_send_action(hapd, hapd->dpp_auth->curr_freq, 0,
-                                     dst, wpabuf_head(hapd->dpp_auth->req_msg),
-                                     wpabuf_len(hapd->dpp_auth->req_msg));
-
-       return res;
+       return hostapd_dpp_auth_init_next(hapd);
 fail:
-       dpp_configuration_free(conf_sta);
-       dpp_configuration_free(conf_ap);
        return -1;
 }
 
@@ -600,7 +610,10 @@ static void hostapd_dpp_rx_auth_req(struct hostapd_data *hapd, const u8 *src,
 {
        const u8 *r_bootstrap, *i_bootstrap;
        u16 r_bootstrap_len, i_bootstrap_len;
-       struct dpp_bootstrap_info *bi, *own_bi = NULL, *peer_bi = NULL;
+       struct dpp_bootstrap_info *own_bi = NULL, *peer_bi = NULL;
+
+       if (!hapd->iface->interfaces->dpp)
+               return;
 
        wpa_printf(MSG_DEBUG, "DPP: Authentication Request from " MACSTR,
                   MAC2STR(src));
@@ -627,28 +640,16 @@ static void hostapd_dpp_rx_auth_req(struct hostapd_data *hapd, const u8 *src,
 
        /* Try to find own and peer bootstrapping key matches based on the
         * received hash values */
-       dl_list_for_each(bi, &hapd->iface->interfaces->dpp_bootstrap,
-                        struct dpp_bootstrap_info, list) {
-               if (!own_bi && bi->own &&
-                   os_memcmp(bi->pubkey_hash, r_bootstrap,
-                             SHA256_MAC_LEN) == 0) {
-                       wpa_printf(MSG_DEBUG,
-                                  "DPP: Found matching own bootstrapping information");
-                       own_bi = bi;
-               }
-
-               if (!peer_bi && !bi->own &&
-                   os_memcmp(bi->pubkey_hash, i_bootstrap,
-                             SHA256_MAC_LEN) == 0) {
-                       wpa_printf(MSG_DEBUG,
-                                  "DPP: Found matching peer bootstrapping information");
-                       peer_bi = bi;
-               }
-
-               if (own_bi && peer_bi)
-                       break;
+       dpp_bootstrap_find_pair(hapd->iface->interfaces->dpp, i_bootstrap,
+                               r_bootstrap, &own_bi, &peer_bi);
+#ifdef CONFIG_DPP2
+       if (!own_bi) {
+               if (dpp_relay_rx_action(hapd->iface->interfaces->dpp,
+                                       src, hdr, buf, len, freq, i_bootstrap,
+                                       r_bootstrap) == 0)
+                       return;
        }
-
+#endif /* CONFIG_DPP2 */
        if (!own_bi) {
                wpa_msg(hapd->msg_ctx, MSG_INFO, DPP_EVENT_FAIL
                        "No matching own bootstrapping key found - ignore message");
@@ -670,8 +671,13 @@ static void hostapd_dpp_rx_auth_req(struct hostapd_data *hapd, const u8 *src,
                return;
        }
        hostapd_dpp_set_testing_options(hapd, hapd->dpp_auth);
-       hostapd_dpp_set_configurator(hapd, hapd->dpp_auth,
-                                    hapd->dpp_configurator_params);
+       if (dpp_set_configurator(hapd->iface->interfaces->dpp, hapd->msg_ctx,
+                                hapd->dpp_auth,
+                                hapd->dpp_configurator_params) < 0) {
+               dpp_auth_deinit(hapd->dpp_auth);
+               hapd->dpp_auth = NULL;
+               return;
+       }
        os_memcpy(hapd->dpp_auth->peer_mac_addr, src, ETH_ALEN);
 
        wpa_msg(hapd->msg_ctx, MSG_INFO, DPP_EVENT_TX "dst=" MACSTR
@@ -685,47 +691,48 @@ static void hostapd_dpp_rx_auth_req(struct hostapd_data *hapd, const u8 *src,
 
 
 static void hostapd_dpp_handle_config_obj(struct hostapd_data *hapd,
-                                         struct dpp_authentication *auth)
+                                         struct dpp_authentication *auth,
+                                         struct dpp_config_obj *conf)
 {
        wpa_msg(hapd->msg_ctx, MSG_INFO, DPP_EVENT_CONF_RECEIVED);
        wpa_msg(hapd->msg_ctx, MSG_INFO, DPP_EVENT_CONFOBJ_AKM "%s",
-               dpp_akm_str(auth->akm));
-       if (auth->ssid_len)
+               dpp_akm_str(conf->akm));
+       if (conf->ssid_len)
                wpa_msg(hapd->msg_ctx, MSG_INFO, DPP_EVENT_CONFOBJ_SSID "%s",
-                       wpa_ssid_txt(auth->ssid, auth->ssid_len));
-       if (auth->connector) {
+                       wpa_ssid_txt(conf->ssid, conf->ssid_len));
+       if (conf->connector) {
                /* TODO: Save the Connector and consider using a command
                 * to fetch the value instead of sending an event with
                 * it. The Connector could end up being larger than what
                 * most clients are ready to receive as an event
                 * message. */
                wpa_msg(hapd->msg_ctx, MSG_INFO, DPP_EVENT_CONNECTOR "%s",
-                       auth->connector);
-       } else if (auth->passphrase[0]) {
+                       conf->connector);
+       } else if (conf->passphrase[0]) {
                char hex[64 * 2 + 1];
 
                wpa_snprintf_hex(hex, sizeof(hex),
-                                (const u8 *) auth->passphrase,
-                                os_strlen(auth->passphrase));
+                                (const u8 *) conf->passphrase,
+                                os_strlen(conf->passphrase));
                wpa_msg(hapd->msg_ctx, MSG_INFO, DPP_EVENT_CONFOBJ_PASS "%s",
                        hex);
-       } else if (auth->psk_set) {
+       } else if (conf->psk_set) {
                char hex[PMK_LEN * 2 + 1];
 
-               wpa_snprintf_hex(hex, sizeof(hex), auth->psk, PMK_LEN);
+               wpa_snprintf_hex(hex, sizeof(hex), conf->psk, PMK_LEN);
                wpa_msg(hapd->msg_ctx, MSG_INFO, DPP_EVENT_CONFOBJ_PSK "%s",
                        hex);
        }
-       if (auth->c_sign_key) {
+       if (conf->c_sign_key) {
                char *hex;
                size_t hexlen;
 
-               hexlen = 2 * wpabuf_len(auth->c_sign_key) + 1;
+               hexlen = 2 * wpabuf_len(conf->c_sign_key) + 1;
                hex = os_malloc(hexlen);
                if (hex) {
                        wpa_snprintf_hex(hex, hexlen,
-                                        wpabuf_head(auth->c_sign_key),
-                                        wpabuf_len(auth->c_sign_key));
+                                        wpabuf_head(conf->c_sign_key),
+                                        wpabuf_len(conf->c_sign_key));
                        wpa_msg(hapd->msg_ctx, MSG_INFO,
                                DPP_EVENT_C_SIGN_KEY "%s", hex);
                        os_free(hex);
@@ -755,6 +762,33 @@ static void hostapd_dpp_handle_config_obj(struct hostapd_data *hapd,
 }
 
 
+static int hostapd_dpp_handle_key_pkg(struct hostapd_data *hapd,
+                                     struct dpp_asymmetric_key *key)
+{
+#ifdef CONFIG_DPP2
+       int res;
+
+       if (!key)
+               return 0;
+
+       wpa_printf(MSG_DEBUG, "DPP: Received Configurator backup");
+       wpa_msg(hapd->msg_ctx, MSG_INFO, DPP_EVENT_CONF_RECEIVED);
+
+       while (key) {
+               res = dpp_configurator_from_backup(
+                       hapd->iface->interfaces->dpp, key);
+               if (res < 0)
+                       return -1;
+               wpa_msg(hapd->msg_ctx, MSG_INFO, DPP_EVENT_CONFIGURATOR_ID "%d",
+                       res);
+               key = key->next;
+       }
+#endif /* CONFIG_DPP2 */
+
+       return 0;
+}
+
+
 static void hostapd_dpp_gas_resp_cb(void *ctx, const u8 *addr, u8 dialog_token,
                                    enum gas_query_ap_result result,
                                    const struct wpabuf *adv_proto,
@@ -763,6 +797,7 @@ static void hostapd_dpp_gas_resp_cb(void *ctx, const u8 *addr, u8 dialog_token,
        struct hostapd_data *hapd = ctx;
        const u8 *pos;
        struct dpp_authentication *auth = hapd->dpp_auth;
+       enum dpp_status_error status = DPP_STATUS_CONFIG_REJECTED;
 
        if (!auth || !auth->auth_success) {
                wpa_printf(MSG_DEBUG, "DPP: No matching exchange in progress");
@@ -797,13 +832,45 @@ static void hostapd_dpp_gas_resp_cb(void *ctx, const u8 *addr, u8 dialog_token,
                goto fail;
        }
 
-       hostapd_dpp_handle_config_obj(hapd, auth);
-       dpp_auth_deinit(hapd->dpp_auth);
-       hapd->dpp_auth = NULL;
-       return;
+       hostapd_dpp_handle_config_obj(hapd, auth, &auth->conf_obj[0]);
+       if (hostapd_dpp_handle_key_pkg(hapd, auth->conf_key_pkg) < 0)
+               goto fail;
 
+       status = DPP_STATUS_OK;
+#ifdef CONFIG_TESTING_OPTIONS
+       if (dpp_test == DPP_TEST_REJECT_CONFIG) {
+               wpa_printf(MSG_INFO, "DPP: TESTING - Reject Config Object");
+               status = DPP_STATUS_CONFIG_REJECTED;
+       }
+#endif /* CONFIG_TESTING_OPTIONS */
 fail:
-       wpa_msg(hapd->msg_ctx, MSG_INFO, DPP_EVENT_CONF_FAILED);
+       if (status != DPP_STATUS_OK)
+               wpa_msg(hapd->msg_ctx, MSG_INFO, DPP_EVENT_CONF_FAILED);
+#ifdef CONFIG_DPP2
+       if (auth->peer_version >= 2 &&
+           auth->conf_resp_status == DPP_STATUS_OK) {
+               struct wpabuf *msg;
+
+               wpa_printf(MSG_DEBUG, "DPP: Send DPP Configuration Result");
+               msg = dpp_build_conf_result(auth, status);
+               if (!msg)
+                       goto fail2;
+
+               wpa_msg(hapd->msg_ctx, MSG_INFO,
+                       DPP_EVENT_TX "dst=" MACSTR " freq=%u type=%d",
+                       MAC2STR(addr), auth->curr_freq,
+                       DPP_PA_CONFIGURATION_RESULT);
+               hostapd_drv_send_action(hapd, auth->curr_freq, 0,
+                                       addr, wpabuf_head(msg),
+                                       wpabuf_len(msg));
+               wpabuf_free(msg);
+
+               /* This exchange will be terminated in the TX status handler */
+               auth->connect_on_tx_status = 1;
+               return;
+       }
+fail2:
+#endif /* CONFIG_DPP2 */
        dpp_auth_deinit(hapd->dpp_auth);
        hapd->dpp_auth = NULL;
 }
@@ -812,46 +879,18 @@ fail:
 static void hostapd_dpp_start_gas_client(struct hostapd_data *hapd)
 {
        struct dpp_authentication *auth = hapd->dpp_auth;
-       struct wpabuf *buf, *conf_req;
-       char json[100];
+       struct wpabuf *buf;
        int res;
-       int netrole_ap = 1;
 
-       os_snprintf(json, sizeof(json),
-                   "{\"name\":\"Test\","
-                   "\"wi-fi_tech\":\"infra\","
-                   "\"netRole\":\"%s\"}",
-                   netrole_ap ? "ap" : "sta");
-       wpa_printf(MSG_DEBUG, "DPP: GAS Config Attributes: %s", json);
-
-       conf_req = dpp_build_conf_req(auth, json);
-       if (!conf_req) {
+       buf = dpp_build_conf_req_helper(auth, hapd->conf->dpp_name,
+                                       DPP_NETROLE_AP,
+                                       hapd->conf->dpp_mud_url, NULL);
+       if (!buf) {
                wpa_printf(MSG_DEBUG,
                           "DPP: No configuration request data available");
                return;
        }
 
-       buf = gas_build_initial_req(0, 10 + 2 + wpabuf_len(conf_req));
-       if (!buf) {
-               wpabuf_free(conf_req);
-               return;
-       }
-
-       /* Advertisement Protocol IE */
-       wpabuf_put_u8(buf, WLAN_EID_ADV_PROTO);
-       wpabuf_put_u8(buf, 8); /* Length */
-       wpabuf_put_u8(buf, 0x7f);
-       wpabuf_put_u8(buf, WLAN_EID_VENDOR_SPECIFIC);
-       wpabuf_put_u8(buf, 5);
-       wpabuf_put_be24(buf, OUI_WFA);
-       wpabuf_put_u8(buf, DPP_OUI_TYPE);
-       wpabuf_put_u8(buf, 0x01);
-
-       /* GAS Query */
-       wpabuf_put_le16(buf, wpabuf_len(conf_req));
-       wpabuf_put_buf(buf, conf_req);
-       wpabuf_free(conf_req);
-
        wpa_printf(MSG_DEBUG, "DPP: GAS request to " MACSTR " (freq %u MHz)",
                   MAC2STR(auth->peer_mac_addr), auth->curr_freq);
 
@@ -873,6 +912,17 @@ static void hostapd_dpp_auth_success(struct hostapd_data *hapd, int initiator)
        wpa_printf(MSG_DEBUG, "DPP: Authentication succeeded");
        wpa_msg(hapd->msg_ctx, MSG_INFO, DPP_EVENT_AUTH_SUCCESS "init=%d",
                initiator);
+#ifdef CONFIG_TESTING_OPTIONS
+       if (dpp_test == DPP_TEST_STOP_AT_AUTH_CONF) {
+               wpa_printf(MSG_INFO,
+                          "DPP: TESTING - stop at Authentication Confirm");
+               if (hapd->dpp_auth->configurator) {
+                       /* Prevent GAS response */
+                       hapd->dpp_auth->auth_success = 0;
+               }
+               return;
+       }
+#endif /* CONFIG_TESTING_OPTIONS */
 
        if (!hapd->dpp_auth->configurator)
                hostapd_dpp_start_gas_client(hapd);
@@ -880,7 +930,8 @@ static void hostapd_dpp_auth_success(struct hostapd_data *hapd, int initiator)
 
 
 static void hostapd_dpp_rx_auth_resp(struct hostapd_data *hapd, const u8 *src,
-                                    const u8 *hdr, const u8 *buf, size_t len)
+                                    const u8 *hdr, const u8 *buf, size_t len,
+                                    unsigned int freq)
 {
        struct dpp_authentication *auth = hapd->dpp_auth;
        struct wpabuf *msg;
@@ -901,6 +952,15 @@ static void hostapd_dpp_rx_auth_resp(struct hostapd_data *hapd, const u8 *src,
                return;
        }
 
+       eloop_cancel_timeout(hostapd_dpp_reply_wait_timeout, hapd, NULL);
+
+       if (auth->curr_freq != freq && auth->neg_freq == freq) {
+               wpa_printf(MSG_DEBUG,
+                          "DPP: Responder accepted request for different negotiation channel");
+               auth->curr_freq = freq;
+       }
+
+       eloop_cancel_timeout(hostapd_dpp_init_timeout, hapd, NULL);
        msg = dpp_auth_resp_rx(auth, hdr, buf, len);
        if (!msg) {
                if (auth->auth_resp_status == DPP_STATUS_RESPONSE_PENDING) {
@@ -951,6 +1011,130 @@ static void hostapd_dpp_rx_auth_conf(struct hostapd_data *hapd, const u8 *src,
 }
 
 
+#ifdef CONFIG_DPP2
+
+static void hostapd_dpp_config_result_wait_timeout(void *eloop_ctx,
+                                                  void *timeout_ctx)
+{
+       struct hostapd_data *hapd = eloop_ctx;
+       struct dpp_authentication *auth = hapd->dpp_auth;
+
+       if (!auth || !auth->waiting_conf_result)
+               return;
+
+       wpa_printf(MSG_DEBUG,
+                  "DPP: Timeout while waiting for Configuration Result");
+       wpa_msg(hapd->msg_ctx, MSG_INFO, DPP_EVENT_CONF_FAILED);
+       dpp_auth_deinit(auth);
+       hapd->dpp_auth = NULL;
+}
+
+
+static void hostapd_dpp_conn_status_result_wait_timeout(void *eloop_ctx,
+                                                       void *timeout_ctx)
+{
+       struct hostapd_data *hapd = eloop_ctx;
+       struct dpp_authentication *auth = hapd->dpp_auth;
+
+       if (!auth || !auth->waiting_conf_result)
+               return;
+
+       wpa_printf(MSG_DEBUG,
+                  "DPP: Timeout while waiting for Connection Status Result");
+       wpa_msg(hapd->msg_ctx, MSG_INFO,
+               DPP_EVENT_CONN_STATUS_RESULT "timeout");
+       dpp_auth_deinit(auth);
+       hapd->dpp_auth = NULL;
+}
+
+
+static void hostapd_dpp_rx_conf_result(struct hostapd_data *hapd, const u8 *src,
+                                      const u8 *hdr, const u8 *buf, size_t len)
+{
+       struct dpp_authentication *auth = hapd->dpp_auth;
+       enum dpp_status_error status;
+
+       wpa_printf(MSG_DEBUG, "DPP: Configuration Result from " MACSTR,
+                  MAC2STR(src));
+
+       if (!auth || !auth->waiting_conf_result) {
+               wpa_printf(MSG_DEBUG,
+                          "DPP: No DPP Configuration waiting for result - drop");
+               return;
+       }
+
+       if (os_memcmp(src, auth->peer_mac_addr, ETH_ALEN) != 0) {
+               wpa_printf(MSG_DEBUG, "DPP: MAC address mismatch (expected "
+                          MACSTR ") - drop", MAC2STR(auth->peer_mac_addr));
+               return;
+       }
+
+       status = dpp_conf_result_rx(auth, hdr, buf, len);
+
+       if (status == DPP_STATUS_OK && auth->send_conn_status) {
+               wpa_msg(hapd->msg_ctx, MSG_INFO,
+                       DPP_EVENT_CONF_SENT "wait_conn_status=1");
+               wpa_printf(MSG_DEBUG, "DPP: Wait for Connection Status Result");
+               eloop_cancel_timeout(hostapd_dpp_config_result_wait_timeout,
+                                    hapd, NULL);
+               eloop_cancel_timeout(
+                       hostapd_dpp_conn_status_result_wait_timeout,
+                       hapd, NULL);
+               eloop_register_timeout(
+                       16, 0, hostapd_dpp_conn_status_result_wait_timeout,
+                       hapd, NULL);
+               return;
+       }
+       hostapd_drv_send_action_cancel_wait(hapd);
+       hostapd_dpp_listen_stop(hapd);
+       if (status == DPP_STATUS_OK)
+               wpa_msg(hapd->msg_ctx, MSG_INFO, DPP_EVENT_CONF_SENT);
+       else
+               wpa_msg(hapd->msg_ctx, MSG_INFO, DPP_EVENT_CONF_FAILED);
+       dpp_auth_deinit(auth);
+       hapd->dpp_auth = NULL;
+       eloop_cancel_timeout(hostapd_dpp_config_result_wait_timeout, hapd,
+                            NULL);
+}
+
+
+static void hostapd_dpp_rx_conn_status_result(struct hostapd_data *hapd,
+                                             const u8 *src, const u8 *hdr,
+                                             const u8 *buf, size_t len)
+{
+       struct dpp_authentication *auth = hapd->dpp_auth;
+       enum dpp_status_error status;
+       u8 ssid[SSID_MAX_LEN];
+       size_t ssid_len = 0;
+       char *channel_list = NULL;
+
+       wpa_printf(MSG_DEBUG, "DPP: Connection Status Result");
+
+       if (!auth || !auth->waiting_conn_status_result) {
+               wpa_printf(MSG_DEBUG,
+                          "DPP: No DPP Configuration waiting for connection status result - drop");
+               return;
+       }
+
+       status = dpp_conn_status_result_rx(auth, hdr, buf, len,
+                                          ssid, &ssid_len, &channel_list);
+       wpa_msg(hapd->msg_ctx, MSG_INFO, DPP_EVENT_CONN_STATUS_RESULT
+               "result=%d ssid=%s channel_list=%s",
+               status, wpa_ssid_txt(ssid, ssid_len),
+               channel_list ? channel_list : "N/A");
+       os_free(channel_list);
+       hostapd_drv_send_action_cancel_wait(hapd);
+       hostapd_dpp_listen_stop(hapd);
+       dpp_auth_deinit(auth);
+       hapd->dpp_auth = NULL;
+       eloop_cancel_timeout(hostapd_dpp_conn_status_result_wait_timeout,
+                            hapd, NULL);
+}
+
+
+#endif /* CONFIG_DPP2 */
+
+
 static void hostapd_dpp_send_peer_disc_resp(struct hostapd_data *hapd,
                                            const u8 *src, unsigned int freq,
                                            u8 trans_id,
@@ -1266,24 +1450,10 @@ hostapd_dpp_rx_pkex_commit_reveal_req(struct hostapd_data *hapd, const u8 *src,
                                wpabuf_head(msg), wpabuf_len(msg));
        wpabuf_free(msg);
 
-       bi = os_zalloc(sizeof(*bi));
+       bi = dpp_pkex_finish(hapd->iface->interfaces->dpp, pkex, src, freq);
        if (!bi)
                return;
-       bi->id = hapd_dpp_next_id(hapd);
-       bi->type = DPP_BOOTSTRAP_PKEX;
-       os_memcpy(bi->mac_addr, src, ETH_ALEN);
-       bi->num_freq = 1;
-       bi->freq[0] = freq;
-       bi->curve = pkex->own_bi->curve;
-       bi->pubkey = pkex->peer_bootstrap_key;
-       pkex->peer_bootstrap_key = NULL;
-       dpp_pkex_free(pkex);
        hapd->dpp_pkex = NULL;
-       if (dpp_bootstrap_key_hash(bi) < 0) {
-               dpp_bootstrap_info_free(bi);
-               return;
-       }
-       dl_list_add(&hapd->iface->interfaces->dpp_bootstrap, &bi->list);
 }
 
 
@@ -1293,7 +1463,7 @@ hostapd_dpp_rx_pkex_commit_reveal_resp(struct hostapd_data *hapd, const u8 *src,
                                       unsigned int freq)
 {
        int res;
-       struct dpp_bootstrap_info *bi, *own_bi;
+       struct dpp_bootstrap_info *bi;
        struct dpp_pkex *pkex = hapd->dpp_pkex;
        char cmd[500];
 
@@ -1311,26 +1481,10 @@ hostapd_dpp_rx_pkex_commit_reveal_resp(struct hostapd_data *hapd, const u8 *src,
                return;
        }
 
-       own_bi = pkex->own_bi;
-
-       bi = os_zalloc(sizeof(*bi));
+       bi = dpp_pkex_finish(hapd->iface->interfaces->dpp, pkex, src, freq);
        if (!bi)
                return;
-       bi->id = hapd_dpp_next_id(hapd);
-       bi->type = DPP_BOOTSTRAP_PKEX;
-       os_memcpy(bi->mac_addr, src, ETH_ALEN);
-       bi->num_freq = 1;
-       bi->freq[0] = freq;
-       bi->curve = own_bi->curve;
-       bi->pubkey = pkex->peer_bootstrap_key;
-       pkex->peer_bootstrap_key = NULL;
-       dpp_pkex_free(pkex);
        hapd->dpp_pkex = NULL;
-       if (dpp_bootstrap_key_hash(bi) < 0) {
-               dpp_bootstrap_info_free(bi);
-               return;
-       }
-       dl_list_add(&hapd->iface->interfaces->dpp_bootstrap, &bi->list);
 
        os_snprintf(cmd, sizeof(cmd), " peer=%u %s",
                    bi->id,
@@ -1387,12 +1541,18 @@ void hostapd_dpp_rx_action(struct hostapd_data *hapd, const u8 *src,
        wpa_msg(hapd->msg_ctx, MSG_INFO, DPP_EVENT_RX "src=" MACSTR
                " freq=%u type=%d", MAC2STR(src), freq, type);
 
+#ifdef CONFIG_DPP2
+       if (dpp_relay_rx_action(hapd->iface->interfaces->dpp,
+                               src, hdr, buf, len, freq, NULL, NULL) == 0)
+               return;
+#endif /* CONFIG_DPP2 */
+
        switch (type) {
        case DPP_PA_AUTHENTICATION_REQ:
                hostapd_dpp_rx_auth_req(hapd, src, hdr, buf, len, freq);
                break;
        case DPP_PA_AUTHENTICATION_RESP:
-               hostapd_dpp_rx_auth_resp(hapd, src, hdr, buf, len);
+               hostapd_dpp_rx_auth_resp(hapd, src, hdr, buf, len, freq);
                break;
        case DPP_PA_AUTHENTICATION_CONF:
                hostapd_dpp_rx_auth_conf(hapd, src, hdr, buf, len);
@@ -1414,6 +1574,14 @@ void hostapd_dpp_rx_action(struct hostapd_data *hapd, const u8 *src,
                hostapd_dpp_rx_pkex_commit_reveal_resp(hapd, src, hdr, buf, len,
                                                       freq);
                break;
+#ifdef CONFIG_DPP2
+       case DPP_PA_CONFIGURATION_RESULT:
+               hostapd_dpp_rx_conf_result(hapd, src, hdr, buf, len);
+               break;
+       case DPP_PA_CONNECTION_STATUS_RESULT:
+               hostapd_dpp_rx_conn_status_result(hapd, src, hdr, buf, len);
+               break;
+#endif /* CONFIG_DPP2 */
        default:
                wpa_printf(MSG_DEBUG,
                           "DPP: Ignored unsupported frame subtype %d", type);
@@ -1435,7 +1603,8 @@ void hostapd_dpp_rx_action(struct hostapd_data *hapd, const u8 *src,
 
 struct wpabuf *
 hostapd_dpp_gas_req_handler(struct hostapd_data *hapd, const u8 *sa,
-                           const u8 *query, size_t query_len)
+                           const u8 *query, size_t query_len,
+                           const u8 *data, size_t data_len)
 {
        struct dpp_authentication *auth = hapd->dpp_auth;
        struct wpabuf *resp;
@@ -1443,12 +1612,21 @@ hostapd_dpp_gas_req_handler(struct hostapd_data *hapd, const u8 *sa,
        wpa_printf(MSG_DEBUG, "DPP: GAS request from " MACSTR, MAC2STR(sa));
        if (!auth || !auth->auth_success ||
            os_memcmp(sa, auth->peer_mac_addr, ETH_ALEN) != 0) {
+#ifdef CONFIG_DPP2
+               if (dpp_relay_rx_gas_req(hapd->iface->interfaces->dpp, sa, data,
+                                    data_len) == 0) {
+                       /* Response will be forwarded once received over TCP */
+                       return NULL;
+               }
+#endif /* CONFIG_DPP2 */
                wpa_printf(MSG_DEBUG, "DPP: No matching exchange in progress");
                return NULL;
        }
        wpa_hexdump(MSG_DEBUG,
                    "DPP: Received Configuration Request (GAS Query Request)",
                    query, query_len);
+       wpa_msg(hapd->msg_ctx, MSG_INFO, DPP_EVENT_CONF_REQ_RX "src=" MACSTR,
+               MAC2STR(sa));
        resp = dpp_conf_req_rx(auth, query, query_len);
        if (!resp)
                wpa_msg(hapd->msg_ctx, MSG_INFO, DPP_EVENT_CONF_FAILED);
@@ -1458,9 +1636,30 @@ hostapd_dpp_gas_req_handler(struct hostapd_data *hapd, const u8 *sa,
 
 void hostapd_dpp_gas_status_handler(struct hostapd_data *hapd, int ok)
 {
-       if (!hapd->dpp_auth)
+       struct dpp_authentication *auth = hapd->dpp_auth;
+
+       if (!auth)
                return;
 
+       wpa_printf(MSG_DEBUG, "DPP: Configuration exchange completed (ok=%d)",
+                  ok);
+       eloop_cancel_timeout(hostapd_dpp_reply_wait_timeout, hapd, NULL);
+       eloop_cancel_timeout(hostapd_dpp_auth_resp_retry_timeout, hapd, NULL);
+#ifdef CONFIG_DPP2
+       if (ok && auth->peer_version >= 2 &&
+           auth->conf_resp_status == DPP_STATUS_OK) {
+               wpa_printf(MSG_DEBUG, "DPP: Wait for Configuration Result");
+               auth->waiting_conf_result = 1;
+               eloop_cancel_timeout(hostapd_dpp_config_result_wait_timeout,
+                                    hapd, NULL);
+               eloop_register_timeout(2, 0,
+                                      hostapd_dpp_config_result_wait_timeout,
+                                      hapd, NULL);
+               return;
+       }
+#endif /* CONFIG_DPP2 */
+       hostapd_drv_send_action_cancel_wait(hapd);
+
        if (ok)
                wpa_msg(hapd->msg_ctx, MSG_INFO, DPP_EVENT_CONF_SENT);
        else
@@ -1470,93 +1669,6 @@ void hostapd_dpp_gas_status_handler(struct hostapd_data *hapd, int ok)
 }
 
 
-static unsigned int hostapd_dpp_next_configurator_id(struct hostapd_data *hapd)
-{
-       struct dpp_configurator *conf;
-       unsigned int max_id = 0;
-
-       dl_list_for_each(conf, &hapd->iface->interfaces->dpp_configurator,
-                        struct dpp_configurator, list) {
-               if (conf->id > max_id)
-                       max_id = conf->id;
-       }
-       return max_id + 1;
-}
-
-
-int hostapd_dpp_configurator_add(struct hostapd_data *hapd, const char *cmd)
-{
-       char *curve = NULL;
-       char *key = NULL;
-       u8 *privkey = NULL;
-       size_t privkey_len = 0;
-       int ret = -1;
-       struct dpp_configurator *conf = NULL;
-
-       curve = get_param(cmd, " curve=");
-       key = get_param(cmd, " key=");
-
-       if (key) {
-               privkey_len = os_strlen(key) / 2;
-               privkey = os_malloc(privkey_len);
-               if (!privkey ||
-                   hexstr2bin(key, privkey, privkey_len) < 0)
-                       goto fail;
-       }
-
-       conf = dpp_keygen_configurator(curve, privkey, privkey_len);
-       if (!conf)
-               goto fail;
-
-       conf->id = hostapd_dpp_next_configurator_id(hapd);
-       dl_list_add(&hapd->iface->interfaces->dpp_configurator, &conf->list);
-       ret = conf->id;
-       conf = NULL;
-fail:
-       os_free(curve);
-       str_clear_free(key);
-       bin_clear_free(privkey, privkey_len);
-       dpp_configurator_free(conf);
-       return ret;
-}
-
-
-static int dpp_configurator_del(struct hapd_interfaces *ifaces, unsigned int id)
-{
-       struct dpp_configurator *conf, *tmp;
-       int found = 0;
-
-       dl_list_for_each_safe(conf, tmp, &ifaces->dpp_configurator,
-                             struct dpp_configurator, list) {
-               if (id && conf->id != id)
-                       continue;
-               found = 1;
-               dl_list_del(&conf->list);
-               dpp_configurator_free(conf);
-       }
-
-       if (id == 0)
-               return 0; /* flush succeeds regardless of entries found */
-       return found ? 0 : -1;
-}
-
-
-int hostapd_dpp_configurator_remove(struct hostapd_data *hapd, const char *id)
-{
-       unsigned int id_val;
-
-       if (os_strcmp(id, "*") == 0) {
-               id_val = 0;
-       } else {
-               id_val = atoi(id);
-               if (id_val == 0)
-                       return -1;
-       }
-
-       return dpp_configurator_del(hapd->iface->interfaces, id_val);
-}
-
-
 int hostapd_dpp_configurator_sign(struct hostapd_data *hapd, const char *cmd)
 {
        struct dpp_authentication *auth;
@@ -1568,10 +1680,11 @@ int hostapd_dpp_configurator_sign(struct hostapd_data *hapd, const char *cmd)
                return -1;
 
        curve = get_param(cmd, " curve=");
-       hostapd_dpp_set_configurator(hapd, auth, cmd);
-
-       if (dpp_configurator_own_config(auth, curve, 1) == 0) {
-               hostapd_dpp_handle_config_obj(hapd, auth);
+       hostapd_dpp_set_testing_options(hapd, auth);
+       if (dpp_set_configurator(hapd->iface->interfaces->dpp, hapd->msg_ctx,
+                                auth, cmd) == 0 &&
+           dpp_configurator_own_config(auth, curve, 1) == 0) {
+               hostapd_dpp_handle_config_obj(hapd, auth, &auth->conf_obj[0]);
                ret = 0;
        }
 
@@ -1591,7 +1704,7 @@ int hostapd_dpp_pkex_add(struct hostapd_data *hapd, const char *cmd)
        if (!pos)
                return -1;
        pos += 5;
-       own_bi = dpp_bootstrap_get_id(hapd, atoi(pos));
+       own_bi = dpp_bootstrap_get_id(hapd->iface->interfaces->dpp, atoi(pos));
        if (!own_bi) {
                wpa_printf(MSG_DEBUG,
                           "DPP: Identified bootstrap info not found");
@@ -1692,6 +1805,64 @@ void hostapd_dpp_stop(struct hostapd_data *hapd)
 {
        dpp_auth_deinit(hapd->dpp_auth);
        hapd->dpp_auth = NULL;
+       dpp_pkex_free(hapd->dpp_pkex);
+       hapd->dpp_pkex = NULL;
+}
+
+
+#ifdef CONFIG_DPP2
+
+static void hostapd_dpp_relay_tx(void *ctx, const u8 *addr, unsigned int freq,
+                                const u8 *msg, size_t len)
+{
+       struct hostapd_data *hapd = ctx;
+       u8 *buf;
+
+       wpa_printf(MSG_DEBUG, "DPP: Send action frame dst=" MACSTR " freq=%u",
+                  MAC2STR(addr), freq);
+       buf = os_malloc(2 + len);
+       if (!buf)
+               return;
+       buf[0] = WLAN_ACTION_PUBLIC;
+       buf[1] = WLAN_PA_VENDOR_SPECIFIC;
+       os_memcpy(buf + 2, msg, len);
+       hostapd_drv_send_action(hapd, freq, 0, addr, buf, 2 + len);
+       os_free(buf);
+}
+
+
+static void hostapd_dpp_relay_gas_resp_tx(void *ctx, const u8 *addr,
+                                         u8 dialog_token, int prot,
+                                         struct wpabuf *buf)
+{
+       struct hostapd_data *hapd = ctx;
+
+       gas_serv_req_dpp_processing(hapd, addr, dialog_token, prot, buf);
+}
+
+#endif /* CONFIG_DPP2 */
+
+
+static int hostapd_dpp_add_controllers(struct hostapd_data *hapd)
+{
+#ifdef CONFIG_DPP2
+       struct dpp_controller_conf *ctrl;
+       struct dpp_relay_config config;
+
+       os_memset(&config, 0, sizeof(config));
+       config.cb_ctx = hapd;
+       config.tx = hostapd_dpp_relay_tx;
+       config.gas_resp_tx = hostapd_dpp_relay_gas_resp_tx;
+       for (ctrl = hapd->conf->dpp_controller; ctrl; ctrl = ctrl->next) {
+               config.ipaddr = &ctrl->ipaddr;
+               config.pkhash = ctrl->pkhash;
+               if (dpp_relay_add_controller(hapd->iface->interfaces->dpp,
+                                            &config) < 0)
+                       return -1;
+       }
+#endif /* CONFIG_DPP2 */
+
+       return 0;
 }
 
 
@@ -1699,7 +1870,7 @@ int hostapd_dpp_init(struct hostapd_data *hapd)
 {
        hapd->dpp_allowed_roles = DPP_CAPAB_CONFIGURATOR | DPP_CAPAB_ENROLLEE;
        hapd->dpp_init_done = 1;
-       return 0;
+       return hostapd_dpp_add_controllers(hapd);
 }
 
 
@@ -1716,6 +1887,15 @@ void hostapd_dpp_deinit(struct hostapd_data *hapd)
 #endif /* CONFIG_TESTING_OPTIONS */
        if (!hapd->dpp_init_done)
                return;
+       eloop_cancel_timeout(hostapd_dpp_reply_wait_timeout, hapd, NULL);
+       eloop_cancel_timeout(hostapd_dpp_init_timeout, hapd, NULL);
+       eloop_cancel_timeout(hostapd_dpp_auth_resp_retry_timeout, hapd, NULL);
+#ifdef CONFIG_DPP2
+       eloop_cancel_timeout(hostapd_dpp_config_result_wait_timeout, hapd,
+                            NULL);
+       eloop_cancel_timeout(hostapd_dpp_conn_status_result_wait_timeout, hapd,
+                            NULL);
+#endif /* CONFIG_DPP2 */
        dpp_auth_deinit(hapd->dpp_auth);
        hapd->dpp_auth = NULL;
        hostapd_dpp_pkex_remove(hapd, "*");
@@ -1723,20 +1903,3 @@ void hostapd_dpp_deinit(struct hostapd_data *hapd)
        os_free(hapd->dpp_configurator_params);
        hapd->dpp_configurator_params = NULL;
 }
-
-
-void hostapd_dpp_init_global(struct hapd_interfaces *ifaces)
-{
-       dl_list_init(&ifaces->dpp_bootstrap);
-       dl_list_init(&ifaces->dpp_configurator);
-       ifaces->dpp_init_done = 1;
-}
-
-
-void hostapd_dpp_deinit_global(struct hapd_interfaces *ifaces)
-{
-       if (!ifaces->dpp_init_done)
-               return;
-       dpp_bootstrap_del(ifaces, 0);
-       dpp_configurator_del(ifaces, 0);
-}