]> git.ipfire.org Git - thirdparty/hostap.git/blobdiff - src/common/dpp.c
DPP2: Presence Announcement processing in Controller
[thirdparty/hostap.git] / src / common / dpp.c
index 17ef2168b914f4d3436b2b280ed7aec7c7f61055..09f5184291da0dc16621022b8204b22d5955c5f5 100644 (file)
@@ -1,12 +1,14 @@
 /*
  * DPP functionality shared between hostapd and wpa_supplicant
  * 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 "utils/includes.h"
+#include <fcntl.h>
 #include <openssl/opensslv.h>
 #include <openssl/err.h>
 #include <openssl/asn1.h>
 #include "utils/common.h"
 #include "utils/base64.h"
 #include "utils/json.h"
+#include "utils/ip_addr.h"
+#include "utils/eloop.h"
 #include "common/ieee802_11_common.h"
 #include "common/ieee802_11_defs.h"
 #include "common/wpa_ctrl.h"
+#include "common/gas.h"
 #include "crypto/crypto.h"
 #include "crypto/random.h"
 #include "crypto/aes.h"
 #include "crypto/aes_siv.h"
 #include "crypto/sha384.h"
 #include "crypto/sha512.h"
+#include "tls/asn1.h"
 #include "drivers/driver.h"
 #include "dpp.h"
 
 
+static const char * dpp_netrole_str(enum dpp_netrole netrole);
+
 #ifdef CONFIG_TESTING_OPTIONS
 enum dpp_test_behavior dpp_test = DPP_TEST_DISABLED;
 u8 dpp_pkex_own_mac_override[ETH_ALEN] = { 0, 0, 0, 0, 0, 0 };
@@ -43,7 +51,9 @@ static int dpp_test_gen_invalid_key(struct wpabuf *msg,
                                    const struct dpp_curve_params *curve);
 #endif /* CONFIG_TESTING_OPTIONS */
 
-#if OPENSSL_VERSION_NUMBER < 0x10100000L
+#if OPENSSL_VERSION_NUMBER < 0x10100000L || \
+       (defined(LIBRESSL_VERSION_NUMBER) && \
+        LIBRESSL_VERSION_NUMBER < 0x20700000L)
 /* Compatibility wrappers for older versions. */
 
 static int ECDSA_SIG_set0(ECDSA_SIG *sig, BIGNUM *r, BIGNUM *s)
@@ -66,6 +76,65 @@ static void ECDSA_SIG_get0(const ECDSA_SIG *sig, const BIGNUM **pr,
 #endif
 
 
+struct dpp_connection {
+       struct dl_list list;
+       struct dpp_controller *ctrl;
+       struct dpp_relay_controller *relay;
+       struct dpp_global *global;
+       struct dpp_authentication *auth;
+       int sock;
+       u8 mac_addr[ETH_ALEN];
+       unsigned int freq;
+       u8 msg_len[4];
+       size_t msg_len_octets;
+       struct wpabuf *msg;
+       struct wpabuf *msg_out;
+       size_t msg_out_pos;
+       unsigned int read_eloop:1;
+       unsigned int write_eloop:1;
+       unsigned int on_tcp_tx_complete_gas_done:1;
+       unsigned int on_tcp_tx_complete_remove:1;
+       unsigned int on_tcp_tx_complete_auth_ok:1;
+};
+
+/* Remote Controller */
+struct dpp_relay_controller {
+       struct dl_list list;
+       struct dpp_global *global;
+       u8 pkhash[SHA256_MAC_LEN];
+       struct hostapd_ip_addr ipaddr;
+       void *cb_ctx;
+       void (*tx)(void *ctx, const u8 *addr, unsigned int freq, const u8 *msg,
+                  size_t len);
+       void (*gas_resp_tx)(void *ctx, const u8 *addr, u8 dialog_token,
+                           int prot, struct wpabuf *buf);
+       struct dl_list conn; /* struct dpp_connection */
+};
+
+/* Local Controller */
+struct dpp_controller {
+       struct dpp_global *global;
+       u8 allowed_roles;
+       int qr_mutual;
+       int sock;
+       struct dl_list conn; /* struct dpp_connection */
+       char *configurator_params;
+};
+
+struct dpp_global {
+       void *msg_ctx;
+       struct dl_list bootstrap; /* struct dpp_bootstrap_info */
+       struct dl_list configurator; /* struct dpp_configurator */
+#ifdef CONFIG_DPP2
+       struct dl_list controllers; /* struct dpp_relay_controller */
+       struct dpp_controller *controller;
+       struct dl_list tcp_init; /* struct dpp_connection */
+       void *cb_ctx;
+       int (*process_conf_obj)(void *ctx, struct dpp_authentication *auth);
+       void (*remove_bi)(void *ctx, struct dpp_bootstrap_info *bi);
+#endif /* CONFIG_DPP2 */
+};
+
 static const struct dpp_curve_params dpp_curves[] = {
        /* The mandatory to support and the default NIST P-256 curve needs to
         * be the first entry on this list. */
@@ -101,10 +170,10 @@ static const u8 pkex_resp_x_p256[32] = {
        0x59, 0x91, 0x52, 0x33, 0xac, 0x19, 0x9d, 0x76
 };
 static const u8 pkex_resp_y_p256[32] = {
-       0x26, 0x04, 0x09, 0x45, 0x0a, 0x05, 0x20, 0xe7,
-       0xa7, 0x27, 0xc1, 0x36, 0x76, 0x85, 0xca, 0x3e,
-       0x42, 0x16, 0xf4, 0x89, 0x85, 0x34, 0x6e, 0xd5,
-       0x17, 0xde, 0xc0, 0xb8, 0xad, 0xfd, 0xb2, 0x98
+       0xd9, 0xfb, 0xf6, 0xb9, 0xf5, 0xfa, 0xdf, 0x19,
+       0x58, 0xd8, 0x3e, 0xc9, 0x89, 0x7a, 0x35, 0xc1,
+       0xbd, 0xe9, 0x0b, 0x77, 0x7a, 0xcb, 0x91, 0x2a,
+       0xe8, 0x21, 0x3f, 0x47, 0x52, 0x02, 0x4d, 0x67
 };
 
 /* NIST P-384 */
@@ -117,12 +186,12 @@ static const u8 pkex_init_x_p384[48] = {
        0x81, 0xac, 0x38, 0x5d, 0x41, 0xe6, 0xb9, 0xa3
 };
 static const u8 pkex_init_y_p384[48] = {
-       0x89, 0xd0, 0x97, 0x7b, 0x59, 0x4f, 0xa6, 0xd6,
-       0x7c, 0x5d, 0x93, 0x5b, 0x93, 0xc4, 0x07, 0xa9,
-       0x89, 0xee, 0xd5, 0xcd, 0x6f, 0x42, 0xf8, 0x38,
-       0xc8, 0xc6, 0x62, 0x24, 0x69, 0x0c, 0xd4, 0x48,
-       0xd8, 0x44, 0xd6, 0xc2, 0xe8, 0xcc, 0x62, 0x6b,
-       0x3c, 0x25, 0x53, 0xba, 0x4f, 0x71, 0xf8, 0xe7
+       0x76, 0x2f, 0x68, 0x84, 0xa6, 0xb0, 0x59, 0x29,
+       0x83, 0xa2, 0x6c, 0xa4, 0x6c, 0x3b, 0xf8, 0x56,
+       0x76, 0x11, 0x2a, 0x32, 0x90, 0xbd, 0x07, 0xc7,
+       0x37, 0x39, 0x9d, 0xdb, 0x96, 0xf3, 0x2b, 0xb6,
+       0x27, 0xbb, 0x29, 0x3c, 0x17, 0x33, 0x9d, 0x94,
+       0xc3, 0xda, 0xac, 0x46, 0xb0, 0x8e, 0x07, 0x18
 };
 static const u8 pkex_resp_x_p384[48] = {
        0xad, 0xbe, 0xd7, 0x1d, 0x3a, 0x71, 0x64, 0x98,
@@ -133,12 +202,12 @@ static const u8 pkex_resp_x_p384[48] = {
        0xe0, 0xbb, 0xd7, 0xb1, 0x29, 0x20, 0x72, 0xdf
 };
 static const u8 pkex_resp_y_p384[48] = {
-       0x54, 0x58, 0x20, 0xad, 0x55, 0x1d, 0xca, 0xf3,
-       0x1c, 0x8a, 0xcd, 0x19, 0x40, 0xf9, 0x37, 0x83,
-       0xc7, 0xd6, 0xb3, 0x13, 0x7d, 0x53, 0x28, 0x5c,
-       0xf6, 0x2d, 0xf1, 0xdd, 0xa5, 0x8b, 0xad, 0x5d,
-       0x81, 0xab, 0xb1, 0x00, 0x39, 0xd6, 0xcc, 0x9c,
-       0xea, 0x1e, 0x84, 0x1d, 0xbf, 0xe3, 0x35, 0xf9
+       0xab, 0xa7, 0xdf, 0x52, 0xaa, 0xe2, 0x35, 0x0c,
+       0xe3, 0x75, 0x32, 0xe6, 0xbf, 0x06, 0xc8, 0x7c,
+       0x38, 0x29, 0x4c, 0xec, 0x82, 0xac, 0xd7, 0xa3,
+       0x09, 0xd2, 0x0e, 0x22, 0x5a, 0x74, 0x52, 0xa1,
+       0x7e, 0x54, 0x4e, 0xfe, 0xc6, 0x29, 0x33, 0x63,
+       0x15, 0xe1, 0x7b, 0xe3, 0x40, 0x1c, 0xca, 0x06
 };
 
 /* NIST P-521 */
@@ -154,15 +223,15 @@ static const u8 pkex_init_x_p521[66] = {
        0x97, 0x76
 };
 static const u8 pkex_init_y_p521[66] = {
-       0x01, 0x4c, 0x71, 0xfd, 0x1b, 0xd5, 0x9c, 0xa6,
-       0xed, 0x39, 0xef, 0x45, 0xc5, 0x06, 0xfd, 0x66,
-       0xc0, 0xeb, 0x0f, 0xbf, 0x21, 0xa3, 0x36, 0x74,
-       0xfd, 0xaa, 0x05, 0x6e, 0x4e, 0x33, 0x95, 0x42,
-       0x1a, 0x9d, 0x3f, 0x3a, 0x1c, 0x5e, 0xa8, 0x60,
-       0xf7, 0xe5, 0x59, 0x1d, 0x07, 0xaa, 0x6f, 0x40,
-       0x0a, 0x59, 0x3c, 0x27, 0xad, 0xe0, 0x48, 0xfd,
-       0xd1, 0x83, 0x37, 0x4c, 0xdf, 0xe1, 0x86, 0x72,
-       0xfc, 0x57
+       0x00, 0xb3, 0x8e, 0x02, 0xe4, 0x2a, 0x63, 0x59,
+       0x12, 0xc6, 0x10, 0xba, 0x3a, 0xf9, 0x02, 0x99,
+       0x3f, 0x14, 0xf0, 0x40, 0xde, 0x5c, 0xc9, 0x8b,
+       0x02, 0x55, 0xfa, 0x91, 0xb1, 0xcc, 0x6a, 0xbd,
+       0xe5, 0x62, 0xc0, 0xc5, 0xe3, 0xa1, 0x57, 0x9f,
+       0x08, 0x1a, 0xa6, 0xe2, 0xf8, 0x55, 0x90, 0xbf,
+       0xf5, 0xa6, 0xc3, 0xd8, 0x52, 0x1f, 0xb7, 0x02,
+       0x2e, 0x7c, 0xc8, 0xb3, 0x20, 0x1e, 0x79, 0x8d,
+       0x03, 0xa8
 };
 static const u8 pkex_resp_x_p521[66] = {
        0x00, 0x79, 0xe4, 0x4d, 0x6b, 0x5e, 0x12, 0x0a,
@@ -176,15 +245,15 @@ static const u8 pkex_resp_x_p521[66] = {
        0x84, 0xb4
 };
 static const u8 pkex_resp_y_p521[66] = {
-       0x01, 0xb9, 0x9c, 0xc6, 0x41, 0x32, 0x5b, 0xd2,
-       0x35, 0xd8, 0x8b, 0x2b, 0xe4, 0x6e, 0xcc, 0xdf,
-       0x7c, 0x38, 0xc4, 0x5b, 0xf6, 0x74, 0x71, 0x5c,
-       0x77, 0x16, 0x8a, 0x80, 0xa9, 0x84, 0xc7, 0x7b,
-       0x9d, 0xfd, 0x83, 0x6f, 0xae, 0xf8, 0x24, 0x16,
-       0x2f, 0x21, 0x25, 0x65, 0xa2, 0x1a, 0x6b, 0x2d,
-       0x30, 0x62, 0xb3, 0xcc, 0x6e, 0x59, 0x3c, 0x7f,
-       0x58, 0x91, 0x81, 0x72, 0x07, 0x8c, 0x91, 0xac,
-       0x31, 0x1e
+       0x00, 0x46, 0x63, 0x39, 0xbe, 0xcd, 0xa4, 0x2d,
+       0xca, 0x27, 0x74, 0xd4, 0x1b, 0x91, 0x33, 0x20,
+       0x83, 0xc7, 0x3b, 0xa4, 0x09, 0x8b, 0x8e, 0xa3,
+       0x88, 0xe9, 0x75, 0x7f, 0x56, 0x7b, 0x38, 0x84,
+       0x62, 0x02, 0x7c, 0x90, 0x51, 0x07, 0xdb, 0xe9,
+       0xd0, 0xde, 0xda, 0x9a, 0x5d, 0xe5, 0x94, 0xd2,
+       0xcf, 0x9d, 0x4c, 0x33, 0x91, 0xa6, 0xc3, 0x80,
+       0xa7, 0x6e, 0x7e, 0x8d, 0xf8, 0x73, 0x6e, 0x53,
+       0xce, 0xe1
 };
 
 /* Brainpool P-256r1 */
@@ -195,10 +264,10 @@ static const u8 pkex_init_x_bp_p256r1[32] = {
        0xac, 0xc7, 0xe9, 0x8d, 0xc2, 0x6f, 0xec, 0xd8
 };
 static const u8 pkex_init_y_bp_p256r1[32] = {
-       0x16, 0x30, 0x68, 0x32, 0x3b, 0xb0, 0x21, 0xee,
-       0xeb, 0xf7, 0xb6, 0x7c, 0xae, 0x52, 0x26, 0x42,
-       0x59, 0x28, 0x58, 0xb6, 0x14, 0x90, 0xed, 0x69,
-       0xd0, 0x67, 0xea, 0x25, 0x60, 0x0f, 0xa9, 0x6c
+       0x93, 0xca, 0xef, 0xa9, 0x66, 0x3e, 0x87, 0xcd,
+       0x52, 0x6e, 0x54, 0x13, 0xef, 0x31, 0x67, 0x30,
+       0x15, 0x13, 0x9d, 0x6d, 0xc0, 0x95, 0x32, 0xbe,
+       0x4f, 0xab, 0x5d, 0xf7, 0xbf, 0x5e, 0xaa, 0x0b
 };
 static const u8 pkex_resp_x_bp_p256r1[32] = {
        0x90, 0x18, 0x84, 0xc9, 0xdc, 0xcc, 0xb5, 0x2f,
@@ -259,14 +328,14 @@ static const u8 pkex_init_x_bp_p512r1[64] = {
        0x63, 0xe4, 0xd1, 0x0e, 0x75, 0x45, 0x69, 0x0f
 };
 static const u8 pkex_init_y_bp_p512r1[64] = {
-       0x5a, 0x28, 0x01, 0xbe, 0x96, 0x82, 0x4e, 0xf6,
-       0xfa, 0xed, 0x7d, 0xfd, 0x48, 0x8b, 0x48, 0x4e,
-       0xd1, 0x97, 0x87, 0xc4, 0x05, 0x5d, 0x15, 0x2a,
-       0xf4, 0x91, 0x4b, 0x75, 0x90, 0xd9, 0x34, 0x2c,
-       0x3c, 0x12, 0xf2, 0xf5, 0x25, 0x94, 0x24, 0x34,
-       0xa7, 0x6d, 0x66, 0xbc, 0x27, 0xa4, 0xa0, 0x8d,
-       0xd5, 0xe1, 0x54, 0xa3, 0x55, 0x26, 0xd4, 0x14,
-       0x17, 0x0f, 0xc1, 0xc7, 0x3d, 0x68, 0x7f, 0x5a
+       0x50, 0xb5, 0x9b, 0xfa, 0x45, 0x67, 0x75, 0x94,
+       0x44, 0xe7, 0x68, 0xb0, 0xeb, 0x3e, 0xb3, 0xb8,
+       0xf9, 0x99, 0x05, 0xef, 0xae, 0x6c, 0xbc, 0xe3,
+       0xe1, 0xd2, 0x51, 0x54, 0xdf, 0x59, 0xd4, 0x45,
+       0x41, 0x3a, 0xa8, 0x0b, 0x76, 0x32, 0x44, 0x0e,
+       0x07, 0x60, 0x3a, 0x6e, 0xbe, 0xfe, 0xe0, 0x58,
+       0x52, 0xa0, 0xaa, 0x8b, 0xd8, 0x5b, 0xf2, 0x71,
+       0x11, 0x9a, 0x9e, 0x8f, 0x1a, 0xd1, 0xc9, 0x99
 };
 static const u8 pkex_resp_x_bp_p512r1[64] = {
        0x2a, 0x60, 0x32, 0x27, 0xa1, 0xe6, 0x94, 0x72,
@@ -279,14 +348,14 @@ static const u8 pkex_resp_x_bp_p512r1[64] = {
        0x8e, 0x6e, 0x23, 0x47, 0xd4, 0x4b, 0x70, 0x3e
 };
 static const u8 pkex_resp_y_bp_p512r1[64] = {
-       0x2a, 0xbe, 0x59, 0xe6, 0xc4, 0xb3, 0xd8, 0x09,
-       0x66, 0x89, 0x0a, 0x2d, 0x19, 0xf0, 0x9c, 0x9f,
-       0xb4, 0xab, 0x8f, 0x50, 0x68, 0x3c, 0x74, 0x64,
-       0x4e, 0x19, 0x55, 0x81, 0x9b, 0x48, 0x5c, 0xf4,
-       0x12, 0x8d, 0xb9, 0xd8, 0x02, 0x5b, 0xe1, 0x26,
-       0x7e, 0x19, 0x5c, 0xfd, 0x70, 0xf7, 0x4b, 0xdc,
-       0xb5, 0x5d, 0xc1, 0x7a, 0xe9, 0xd1, 0x05, 0x2e,
-       0xd1, 0xfd, 0x2f, 0xce, 0x63, 0x77, 0x48, 0x2c
+       0x80, 0x1f, 0x43, 0xd2, 0x17, 0x35, 0xec, 0x81,
+       0xd9, 0x4b, 0xdc, 0x81, 0x19, 0xd9, 0x5f, 0x68,
+       0x16, 0x84, 0xfe, 0x63, 0x4b, 0x8d, 0x5d, 0xaa,
+       0x88, 0x4a, 0x47, 0x48, 0xd4, 0xea, 0xab, 0x7d,
+       0x6a, 0xbf, 0xe1, 0x28, 0x99, 0x6a, 0x87, 0x1c,
+       0x30, 0xb4, 0x44, 0x2d, 0x75, 0xac, 0x35, 0x09,
+       0x73, 0x24, 0x3d, 0xb4, 0x43, 0xb1, 0xc1, 0x56,
+       0x56, 0xad, 0x30, 0x87, 0xf4, 0xc3, 0x00, 0xc7
 };
 
 
@@ -386,6 +455,76 @@ static int dpp_hmac(size_t hash_len, const u8 *key, size_t key_len,
 }
 
 
+#ifdef CONFIG_DPP2
+
+static int dpp_pbkdf2_f(size_t hash_len,
+                       const u8 *password, size_t password_len,
+                       const u8 *salt, size_t salt_len,
+                       unsigned int iterations, unsigned int count, u8 *digest)
+{
+       unsigned char tmp[DPP_MAX_HASH_LEN], tmp2[DPP_MAX_HASH_LEN];
+       unsigned int i;
+       size_t j;
+       u8 count_buf[4];
+       const u8 *addr[2];
+       size_t len[2];
+
+       addr[0] = salt;
+       len[0] = salt_len;
+       addr[1] = count_buf;
+       len[1] = 4;
+
+       /* F(P, S, c, i) = U1 xor U2 xor ... Uc
+        * U1 = PRF(P, S || i)
+        * U2 = PRF(P, U1)
+        * Uc = PRF(P, Uc-1)
+        */
+
+       WPA_PUT_BE32(count_buf, count);
+       if (dpp_hmac_vector(hash_len, password, password_len, 2, addr, len,
+                           tmp))
+               return -1;
+       os_memcpy(digest, tmp, hash_len);
+
+       for (i = 1; i < iterations; i++) {
+               if (dpp_hmac(hash_len, password, password_len, tmp, hash_len,
+                            tmp2))
+                       return -1;
+               os_memcpy(tmp, tmp2, hash_len);
+               for (j = 0; j < hash_len; j++)
+                       digest[j] ^= tmp2[j];
+       }
+
+       return 0;
+}
+
+
+static int dpp_pbkdf2(size_t hash_len, const u8 *password, size_t password_len,
+                     const u8 *salt, size_t salt_len, unsigned int iterations,
+                     u8 *buf, size_t buflen)
+{
+       unsigned int count = 0;
+       unsigned char *pos = buf;
+       size_t left = buflen, plen;
+       unsigned char digest[DPP_MAX_HASH_LEN];
+
+       while (left > 0) {
+               count++;
+               if (dpp_pbkdf2_f(hash_len, password, password_len,
+                                salt, salt_len, iterations, count, digest))
+                       return -1;
+               plen = left > hash_len ? hash_len : left;
+               os_memcpy(pos, digest, plen);
+               pos += plen;
+               left -= plen;
+       }
+
+       return 0;
+}
+
+#endif /* CONFIG_DPP2 */
+
+
 static int dpp_bn2bin_pad(const BIGNUM *bn, u8 *pos, size_t len)
 {
        int num_bytes, offset;
@@ -545,6 +684,91 @@ static EVP_PKEY * dpp_set_pubkey_point(EVP_PKEY *group_key,
 }
 
 
+static int dpp_ecdh(EVP_PKEY *own, EVP_PKEY *peer,
+                   u8 *secret, size_t *secret_len)
+{
+       EVP_PKEY_CTX *ctx;
+       int ret = -1;
+
+       ERR_clear_error();
+       *secret_len = 0;
+
+       ctx = EVP_PKEY_CTX_new(own, NULL);
+       if (!ctx) {
+               wpa_printf(MSG_ERROR, "DPP: EVP_PKEY_CTX_new failed: %s",
+                          ERR_error_string(ERR_get_error(), NULL));
+               return -1;
+       }
+
+       if (EVP_PKEY_derive_init(ctx) != 1) {
+               wpa_printf(MSG_ERROR, "DPP: EVP_PKEY_derive_init failed: %s",
+                          ERR_error_string(ERR_get_error(), NULL));
+               goto fail;
+       }
+
+       if (EVP_PKEY_derive_set_peer(ctx, peer) != 1) {
+               wpa_printf(MSG_ERROR,
+                          "DPP: EVP_PKEY_derive_set_peet failed: %s",
+                          ERR_error_string(ERR_get_error(), NULL));
+               goto fail;
+       }
+
+       if (EVP_PKEY_derive(ctx, NULL, secret_len) != 1) {
+               wpa_printf(MSG_ERROR, "DPP: EVP_PKEY_derive(NULL) failed: %s",
+                          ERR_error_string(ERR_get_error(), NULL));
+               goto fail;
+       }
+
+       if (*secret_len > DPP_MAX_SHARED_SECRET_LEN) {
+               u8 buf[200];
+               int level = *secret_len > 200 ? MSG_ERROR : MSG_DEBUG;
+
+               /* It looks like OpenSSL can return unexpectedly large buffer
+                * need for shared secret from EVP_PKEY_derive(NULL) in some
+                * cases. For example, group 19 has shown cases where secret_len
+                * is set to 72 even though the actual length ends up being
+                * updated to 32 when EVP_PKEY_derive() is called with a buffer
+                * for the value. Work around this by trying to fetch the value
+                * and continue if it is within supported range even when the
+                * initial buffer need is claimed to be larger. */
+               wpa_printf(level,
+                          "DPP: Unexpected secret_len=%d from EVP_PKEY_derive()",
+                          (int) *secret_len);
+               if (*secret_len > 200)
+                       goto fail;
+               if (EVP_PKEY_derive(ctx, buf, secret_len) != 1) {
+                       wpa_printf(MSG_ERROR, "DPP: EVP_PKEY_derive failed: %s",
+                                  ERR_error_string(ERR_get_error(), NULL));
+                       goto fail;
+               }
+               if (*secret_len > DPP_MAX_SHARED_SECRET_LEN) {
+                       wpa_printf(MSG_ERROR,
+                                  "DPP: Unexpected secret_len=%d from EVP_PKEY_derive()",
+                                  (int) *secret_len);
+                       goto fail;
+               }
+               wpa_hexdump_key(MSG_DEBUG, "DPP: Unexpected secret_len change",
+                               buf, *secret_len);
+               os_memcpy(secret, buf, *secret_len);
+               forced_memzero(buf, sizeof(buf));
+               goto done;
+       }
+
+       if (EVP_PKEY_derive(ctx, secret, secret_len) != 1) {
+               wpa_printf(MSG_ERROR, "DPP: EVP_PKEY_derive failed: %s",
+                          ERR_error_string(ERR_get_error(), NULL));
+               goto fail;
+       }
+
+done:
+       ret = 0;
+
+fail:
+       EVP_PKEY_CTX_free(ctx);
+       return ret;
+}
+
+
 static void dpp_auth_fail(struct dpp_authentication *auth, const char *txt)
 {
        wpa_msg(auth->msg_ctx, MSG_INFO, DPP_EVENT_FAIL "%s", txt);
@@ -592,6 +816,34 @@ const u8 * dpp_get_attr(const u8 *buf, size_t len, u16 req_id, u16 *ret_len)
 }
 
 
+static const u8 * dpp_get_attr_next(const u8 *prev, const u8 *buf, size_t len,
+                                   u16 req_id, u16 *ret_len)
+{
+       u16 id, alen;
+       const u8 *pos, *end = buf + len;
+
+       if (!prev)
+               pos = buf;
+       else
+               pos = prev + WPA_GET_LE16(prev - 2);
+       while (end - pos >= 4) {
+               id = WPA_GET_LE16(pos);
+               pos += 2;
+               alen = WPA_GET_LE16(pos);
+               pos += 2;
+               if (alen > end - pos)
+                       return NULL;
+               if (id == req_id) {
+                       *ret_len = alen;
+                       return pos;
+               }
+               pos += alen;
+       }
+
+       return NULL;
+}
+
+
 int dpp_check_attrs(const u8 *buf, size_t len)
 {
        const u8 *pos, *end;
@@ -640,7 +892,10 @@ void dpp_bootstrap_info_free(struct dpp_bootstrap_info *info)
                return;
        os_free(info->uri);
        os_free(info->info);
+       os_free(info->chan);
+       os_free(info->pk);
        EVP_PKEY_free(info->pubkey);
+       str_clear_free(info->configurator_params);
        os_free(info);
 }
 
@@ -652,6 +907,8 @@ const char * dpp_bootstrap_type_txt(enum dpp_bootstrap_type type)
                return "QRCODE";
        case DPP_BOOTSTRAP_PKEX:
                return "PKEX";
+       case DPP_BOOTSTRAP_NFC_URI:
+               return "NFC-URI";
        }
        return "??";
 }
@@ -680,17 +937,19 @@ static int dpp_clone_uri(struct dpp_bootstrap_info *bi, const char *uri)
 int dpp_parse_uri_chan_list(struct dpp_bootstrap_info *bi,
                            const char *chan_list)
 {
-       const char *pos = chan_list;
-       int opclass, channel, freq;
+       const char *pos = chan_list, *pos2;
+       int opclass = -1, channel, freq;
 
        while (pos && *pos && *pos != ';') {
-               opclass = atoi(pos);
+               pos2 = pos;
+               while (*pos2 >= '0' && *pos2 <= '9')
+                       pos2++;
+               if (*pos2 == '/') {
+                       opclass = atoi(pos);
+                       pos = pos2 + 1;
+               }
                if (opclass <= 0)
                        goto fail;
-               pos = os_strchr(pos, '/');
-               if (!pos)
-                       goto fail;
-               pos++;
                channel = atoi(pos);
                if (channel <= 0)
                        goto fail;
@@ -798,6 +1057,32 @@ static const struct dpp_curve_params * dpp_get_curve_nid(int nid)
 }
 
 
+static int dpp_bi_pubkey_hash(struct dpp_bootstrap_info *bi,
+                             const u8 *data, size_t data_len)
+{
+       const u8 *addr[2];
+       size_t len[2];
+
+       addr[0] = data;
+       len[0] = data_len;
+       if (sha256_vector(1, addr, len, bi->pubkey_hash) < 0)
+               return -1;
+       wpa_hexdump(MSG_DEBUG, "DPP: Public key hash",
+                   bi->pubkey_hash, SHA256_MAC_LEN);
+
+       addr[0] = (const u8 *) "chirp";
+       len[0] = 5;
+       addr[1] = data;
+       len[1] = data_len;
+       if (sha256_vector(2, addr, len, bi->pubkey_hash_chirp) < 0)
+               return -1;
+       wpa_hexdump(MSG_DEBUG, "DPP: Public key hash (chirp)",
+                   bi->pubkey_hash_chirp, SHA256_MAC_LEN);
+
+       return 0;
+}
+
+
 static int dpp_parse_uri_pk(struct dpp_bootstrap_info *bi, const char *info)
 {
        const char *end;
@@ -811,7 +1096,9 @@ static int dpp_parse_uri_pk(struct dpp_bootstrap_info *bi, const char *info)
        const unsigned char *pk;
        int ppklen;
        X509_ALGOR *pa;
-#if OPENSSL_VERSION_NUMBER < 0x10100000L
+#if OPENSSL_VERSION_NUMBER < 0x10100000L || \
+       (defined(LIBRESSL_VERSION_NUMBER) && \
+        LIBRESSL_VERSION_NUMBER < 0x20800000L)
        ASN1_OBJECT *pa_oid;
 #else
        const ASN1_OBJECT *pa_oid;
@@ -825,8 +1112,7 @@ static int dpp_parse_uri_pk(struct dpp_bootstrap_info *bi, const char *info)
        if (!end)
                return -1;
 
-       data = base64_decode((const unsigned char *) info, end - info,
-                            &data_len);
+       data = base64_decode(info, end - info, &data_len);
        if (!data) {
                wpa_printf(MSG_DEBUG,
                           "DPP: Invalid base64 encoding on URI public-key");
@@ -835,13 +1121,11 @@ static int dpp_parse_uri_pk(struct dpp_bootstrap_info *bi, const char *info)
        wpa_hexdump(MSG_DEBUG, "DPP: Base64 decoded URI public-key",
                    data, data_len);
 
-       if (sha256_vector(1, (const u8 **) &data, &data_len,
-                         bi->pubkey_hash) < 0) {
+       if (dpp_bi_pubkey_hash(bi, data, data_len) < 0) {
                wpa_printf(MSG_DEBUG, "DPP: Failed to hash public key");
+               os_free(data);
                return -1;
        }
-       wpa_hexdump(MSG_DEBUG, "DPP: Public key hash",
-                   bi->pubkey_hash, SHA256_MAC_LEN);
 
        /* DER encoded ASN.1 SubjectPublicKeyInfo
         *
@@ -999,17 +1283,6 @@ static struct dpp_bootstrap_info * dpp_parse_uri(const char *uri)
 }
 
 
-struct dpp_bootstrap_info * dpp_parse_qr_code(const char *uri)
-{
-       struct dpp_bootstrap_info *bi;
-
-       bi = dpp_parse_uri(uri);
-       if (bi)
-               bi->type = DPP_BOOTSTRAP_QR_CODE;
-       return bi;
-}
-
-
 static void dpp_debug_print_key(const char *title, EVP_PKEY *key)
 {
        EC_KEY *eckey;
@@ -1066,13 +1339,8 @@ static void dpp_debug_print_key(const char *title, EVP_PKEY *key)
 
 static EVP_PKEY * dpp_gen_keypair(const struct dpp_curve_params *curve)
 {
-#ifdef OPENSSL_IS_BORINGSSL
        EVP_PKEY_CTX *kctx = NULL;
-       const EC_GROUP *group;
-       EC_KEY *ec_params;
-#else
-       EVP_PKEY_CTX *pctx, *kctx = NULL;
-#endif
+       EC_KEY *ec_params = NULL;
        EVP_PKEY *params = NULL, *key = NULL;
        int nid;
 
@@ -1083,10 +1351,9 @@ static EVP_PKEY * dpp_gen_keypair(const struct dpp_curve_params *curve)
                wpa_printf(MSG_INFO, "DPP: Unsupported curve %s", curve->name);
                return NULL;
        }
-#ifdef OPENSSL_IS_BORINGSSL
-       group = EC_GROUP_new_by_curve_name(nid);
-       ec_params = EC_KEY_new();
-       if (!ec_params || EC_KEY_set_group(ec_params, group) != 1) {
+
+       ec_params = EC_KEY_new_by_curve_name(nid);
+       if (!ec_params) {
                wpa_printf(MSG_ERROR,
                           "DPP: Failed to generate EC_KEY parameters");
                goto fail;
@@ -1098,41 +1365,24 @@ static EVP_PKEY * dpp_gen_keypair(const struct dpp_curve_params *curve)
                           "DPP: Failed to generate EVP_PKEY parameters");
                goto fail;
        }
-#else
-       pctx = EVP_PKEY_CTX_new_id(EVP_PKEY_EC, NULL);
-       if (!pctx ||
-           EVP_PKEY_paramgen_init(pctx) != 1 ||
-           EVP_PKEY_CTX_set_ec_paramgen_curve_nid(pctx, nid) != 1 ||
-#ifdef EVP_PKEY_CTX_set_ec_param_enc
-           EVP_PKEY_CTX_set_ec_param_enc(pctx, OPENSSL_EC_NAMED_CURVE) != 1 ||
-#endif
-           EVP_PKEY_paramgen(pctx, &params) != 1) {
-               wpa_printf(MSG_ERROR,
-                          "DPP: Failed to generate EVP_PKEY parameters");
-               EVP_PKEY_CTX_free(pctx);
-               goto fail;
-       }
-       EVP_PKEY_CTX_free(pctx);
-#endif
 
        kctx = EVP_PKEY_CTX_new(params, NULL);
        if (!kctx ||
            EVP_PKEY_keygen_init(kctx) != 1 ||
            EVP_PKEY_keygen(kctx, &key) != 1) {
                wpa_printf(MSG_ERROR, "DPP: Failed to generate EC key");
+               key = NULL;
                goto fail;
        }
 
        if (wpa_debug_show_keys)
                dpp_debug_print_key("Own generated key", key);
 
+fail:
+       EC_KEY_free(ec_params);
        EVP_PKEY_free(params);
        EVP_PKEY_CTX_free(kctx);
        return key;
-fail:
-       EVP_PKEY_CTX_free(kctx);
-       EVP_PKEY_free(params);
-       return NULL;
 }
 
 
@@ -1293,41 +1543,31 @@ fail:
 }
 
 
-int dpp_bootstrap_key_hash(struct dpp_bootstrap_info *bi)
+static int dpp_bootstrap_key_hash(struct dpp_bootstrap_info *bi)
 {
        struct wpabuf *der;
        int res;
-       const u8 *addr[1];
-       size_t len[1];
 
        der = dpp_bootstrap_key_der(bi->pubkey);
        if (!der)
                return -1;
        wpa_hexdump_buf(MSG_DEBUG, "DPP: Compressed public key (DER)",
                        der);
-
-       addr[0] = wpabuf_head(der);
-       len[0] = wpabuf_len(der);
-       res = sha256_vector(1, addr, len, bi->pubkey_hash);
+       res = dpp_bi_pubkey_hash(bi, wpabuf_head(der), wpabuf_len(der));
        if (res < 0)
                wpa_printf(MSG_DEBUG, "DPP: Failed to hash public key");
-       else
-               wpa_hexdump(MSG_DEBUG, "DPP: Public key hash", bi->pubkey_hash,
-                           SHA256_MAC_LEN);
        wpabuf_free(der);
        return res;
 }
 
 
-char * dpp_keygen(struct dpp_bootstrap_info *bi, const char *curve,
-                 const u8 *privkey, size_t privkey_len)
+static int dpp_keygen(struct dpp_bootstrap_info *bi, const char *curve,
+                     const u8 *privkey, size_t privkey_len)
 {
-       unsigned char *base64 = NULL;
+       char *base64 = NULL;
        char *pos, *end;
        size_t len;
        struct wpabuf *der = NULL;
-       const u8 *addr[1];
-       int res;
 
        if (!curve) {
                bi->curve = &dpp_curves[0];
@@ -1336,7 +1576,7 @@ char * dpp_keygen(struct dpp_bootstrap_info *bi, const char *curve,
                if (!bi->curve) {
                        wpa_printf(MSG_INFO, "DPP: Unsupported curve: %s",
                                   curve);
-                       return NULL;
+                       return -1;
                }
        }
        if (privkey)
@@ -1353,22 +1593,17 @@ char * dpp_keygen(struct dpp_bootstrap_info *bi, const char *curve,
        wpa_hexdump_buf(MSG_DEBUG, "DPP: Compressed public key (DER)",
                        der);
 
-       addr[0] = wpabuf_head(der);
-       len = wpabuf_len(der);
-       res = sha256_vector(1, addr, &len, bi->pubkey_hash);
-       if (res < 0) {
+       if (dpp_bi_pubkey_hash(bi, wpabuf_head(der), wpabuf_len(der)) < 0) {
                wpa_printf(MSG_DEBUG, "DPP: Failed to hash public key");
                goto fail;
        }
-       wpa_hexdump(MSG_DEBUG, "DPP: Public key hash", bi->pubkey_hash,
-                   SHA256_MAC_LEN);
 
        base64 = base64_encode(wpabuf_head(der), wpabuf_len(der), &len);
        wpabuf_free(der);
        der = NULL;
        if (!base64)
                goto fail;
-       pos = (char *) base64;
+       pos = base64;
        end = pos + len;
        for (;;) {
                pos = os_strchr(pos, '\n');
@@ -1376,11 +1611,13 @@ char * dpp_keygen(struct dpp_bootstrap_info *bi, const char *curve,
                        break;
                os_memmove(pos, pos + 1, end - pos);
        }
-       return (char *) base64;
+       os_free(bi->pk);
+       bi->pk = base64;
+       return 0;
 fail:
        os_free(base64);
        wpabuf_free(der);
-       return NULL;
+       return -1;
 }
 
 
@@ -1453,6 +1690,12 @@ static int dpp_derive_ke(struct dpp_authentication *auth, u8 *ke,
        size_t len[3];
        size_t num_elem = 0;
 
+       if (!auth->Mx_len || !auth->Nx_len) {
+               wpa_printf(MSG_DEBUG,
+                          "DPP: Mx/Nx not available - cannot derive ke");
+               return -1;
+       }
+
        /* ke = HKDF(I-nonce | R-nonce, "DPP Key", M.x | N.x [| L.x]) */
 
        /* HKDF-Extract(I-nonce | R-nonce, M.x | N.x [| L.x]) */
@@ -1460,12 +1703,17 @@ static int dpp_derive_ke(struct dpp_authentication *auth, u8 *ke,
        os_memcpy(nonces, auth->i_nonce, nonce_len);
        os_memcpy(&nonces[nonce_len], auth->r_nonce, nonce_len);
        addr[num_elem] = auth->Mx;
-       len[num_elem] = auth->secret_len;
+       len[num_elem] = auth->Mx_len;
        num_elem++;
        addr[num_elem] = auth->Nx;
-       len[num_elem] = auth->secret_len;
+       len[num_elem] = auth->Nx_len;
        num_elem++;
        if (auth->peer_bi && auth->own_bi) {
+               if (!auth->Lx_len) {
+                       wpa_printf(MSG_DEBUG,
+                                  "DPP: Lx not available - cannot derive ke");
+                       return -1;
+               }
                addr[num_elem] = auth->Lx;
                len[num_elem] = auth->secret_len;
                num_elem++;
@@ -1543,6 +1791,9 @@ static struct wpabuf * dpp_auth_build_req(struct dpp_authentication *auth,
                4 + sizeof(wrapped_data);
        if (neg_freq > 0)
                attr_len += 4 + 2;
+#ifdef CONFIG_DPP2
+       attr_len += 5;
+#endif /* CONFIG_DPP2 */
 #ifdef CONFIG_TESTING_OPTIONS
        if (dpp_test == DPP_TEST_AFTER_WRAPPED_DATA_AUTH_REQ)
                attr_len += 5;
@@ -1585,6 +1836,13 @@ static struct wpabuf * dpp_auth_build_req(struct dpp_authentication *auth,
                wpabuf_put_u8(msg, channel);
        }
 
+#ifdef CONFIG_DPP2
+       /* Protocol Version */
+       wpabuf_put_le16(msg, DPP_ATTR_PROTOCOL_VERSION);
+       wpabuf_put_le16(msg, 1);
+       wpabuf_put_u8(msg, 2);
+#endif /* CONFIG_DPP2 */
+
 #ifdef CONFIG_TESTING_OPTIONS
        if (dpp_test == DPP_TEST_NO_WRAPPED_DATA_AUTH_REQ) {
                wpa_printf(MSG_INFO, "DPP: TESTING - no Wrapped Data");
@@ -1711,6 +1969,9 @@ static struct wpabuf * dpp_auth_build_resp(struct dpp_authentication *auth,
        /* Build DPP Authentication Response frame attributes */
        attr_len = 4 + 1 + 2 * (4 + SHA256_MAC_LEN) +
                4 + (pr ? wpabuf_len(pr) : 0) + 4 + sizeof(wrapped_data);
+#ifdef CONFIG_DPP2
+       attr_len += 5;
+#endif /* CONFIG_DPP2 */
 #ifdef CONFIG_TESTING_OPTIONS
        if (dpp_test == DPP_TEST_AFTER_WRAPPED_DATA_AUTH_RESP)
                attr_len += 5;
@@ -1738,6 +1999,15 @@ static struct wpabuf * dpp_auth_build_resp(struct dpp_authentication *auth,
                wpabuf_put_buf(msg, pr);
        }
 
+#ifdef CONFIG_DPP2
+       /* Protocol Version */
+       if (auth->peer_version >= 2) {
+               wpabuf_put_le16(msg, DPP_ATTR_PROTOCOL_VERSION);
+               wpabuf_put_le16(msg, 1);
+               wpabuf_put_u8(msg, 2);
+       }
+#endif /* CONFIG_DPP2 */
+
        attr_end = wpabuf_put(msg, 0);
 
 #ifdef CONFIG_TESTING_OPTIONS
@@ -1976,6 +2246,7 @@ static int dpp_channel_local_list(struct dpp_authentication *auth,
 
 
 static int dpp_prepare_channel_list(struct dpp_authentication *auth,
+                                   unsigned int neg_freq,
                                    struct hostapd_hw_modes *own_modes,
                                    u16 num_modes)
 {
@@ -1983,6 +2254,14 @@ static int dpp_prepare_channel_list(struct dpp_authentication *auth,
        char freqs[DPP_BOOTSTRAP_MAX_FREQ * 6 + 10], *pos, *end;
        unsigned int i;
 
+       if (!own_modes) {
+               if (!neg_freq)
+                       return -1;
+               auth->num_freq = 1;
+               auth->freq[0] = neg_freq;
+               return 0;
+       }
+
        if (auth->peer_bi->num_freq > 0)
                res = dpp_channel_intersect(auth, own_modes, num_modes);
        else
@@ -2015,11 +2294,42 @@ static int dpp_prepare_channel_list(struct dpp_authentication *auth,
 }
 
 
+static int dpp_gen_uri(struct dpp_bootstrap_info *bi)
+{
+       char macstr[ETH_ALEN * 2 + 10];
+       size_t len;
+
+       len = 4; /* "DPP:" */
+       if (bi->chan)
+               len += 3 + os_strlen(bi->chan); /* C:...; */
+       if (is_zero_ether_addr(bi->mac_addr))
+               macstr[0] = '\0';
+       else
+               os_snprintf(macstr, sizeof(macstr), "M:" COMPACT_MACSTR ";",
+                           MAC2STR(bi->mac_addr));
+       len += os_strlen(macstr); /* M:...; */
+       if (bi->info)
+               len += 3 + os_strlen(bi->info); /* I:...; */
+       len += 4 + os_strlen(bi->pk); /* K:...;; */
+
+       os_free(bi->uri);
+       bi->uri = os_malloc(len + 1);
+       if (!bi->uri)
+               return -1;
+       os_snprintf(bi->uri, len + 1, "DPP:%s%s%s%s%s%s%sK:%s;;",
+                   bi->chan ? "C:" : "", bi->chan ? bi->chan : "",
+                   bi->chan ? ";" : "",
+                   macstr,
+                   bi->info ? "I:" : "", bi->info ? bi->info : "",
+                   bi->info ? ";" : "",
+                   bi->pk);
+       return 0;
+}
+
+
 static int dpp_autogen_bootstrap_key(struct dpp_authentication *auth)
 {
        struct dpp_bootstrap_info *bi;
-       char *pk = NULL;
-       size_t len;
 
        if (auth->own_bi)
                return 0; /* already generated */
@@ -2028,33 +2338,38 @@ static int dpp_autogen_bootstrap_key(struct dpp_authentication *auth)
        if (!bi)
                return -1;
        bi->type = DPP_BOOTSTRAP_QR_CODE;
-       pk = dpp_keygen(bi, auth->peer_bi->curve->name, NULL, 0);
-       if (!pk)
-               goto fail;
-
-       len = 4; /* "DPP:" */
-       len += 4 + os_strlen(pk);
-       bi->uri = os_malloc(len + 1);
-       if (!bi->uri)
+       if (dpp_keygen(bi, auth->peer_bi->curve->name, NULL, 0) < 0 ||
+           dpp_gen_uri(bi) < 0)
                goto fail;
-       os_snprintf(bi->uri, len + 1, "DPP:K:%s;;", pk);
        wpa_printf(MSG_DEBUG,
                   "DPP: Auto-generated own bootstrapping key info: URI %s",
                   bi->uri);
 
        auth->tmp_own_bi = auth->own_bi = bi;
 
-       os_free(pk);
-
        return 0;
 fail:
-       os_free(pk);
        dpp_bootstrap_info_free(bi);
        return -1;
 }
 
 
-struct dpp_authentication * dpp_auth_init(void *msg_ctx,
+struct dpp_authentication *
+dpp_alloc_auth(struct dpp_global *dpp, void *msg_ctx)
+{
+       struct dpp_authentication *auth;
+
+       auth = os_zalloc(sizeof(*auth));
+       if (!auth)
+               return NULL;
+       auth->global = dpp;
+       auth->msg_ctx = msg_ctx;
+       auth->conf_resp_status = 255;
+       return auth;
+}
+
+
+struct dpp_authentication * dpp_auth_init(struct dpp_global *dpp, void *msg_ctx,
                                          struct dpp_bootstrap_info *peer_bi,
                                          struct dpp_bootstrap_info *own_bi,
                                          u8 dpp_allowed_roles,
@@ -2064,7 +2379,6 @@ struct dpp_authentication * dpp_auth_init(void *msg_ctx,
 {
        struct dpp_authentication *auth;
        size_t nonce_len;
-       EVP_PKEY_CTX *ctx = NULL;
        size_t secret_len;
        struct wpabuf *pi = NULL;
        const u8 *r_pubkey_hash, *i_pubkey_hash;
@@ -2072,10 +2386,12 @@ struct dpp_authentication * dpp_auth_init(void *msg_ctx,
        u8 test_hash[SHA256_MAC_LEN];
 #endif /* CONFIG_TESTING_OPTIONS */
 
-       auth = os_zalloc(sizeof(*auth));
+       auth = dpp_alloc_auth(dpp, msg_ctx);
        if (!auth)
                return NULL;
-       auth->msg_ctx = msg_ctx;
+       if (peer_bi->configurator_params &&
+           dpp_set_configurator(auth, peer_bi->configurator_params) < 0)
+               goto fail;
        auth->initiator = 1;
        auth->waiting_auth_resp = 1;
        auth->allowed_roles = dpp_allowed_roles;
@@ -2085,7 +2401,7 @@ struct dpp_authentication * dpp_auth_init(void *msg_ctx,
        auth->curve = peer_bi->curve;
 
        if (dpp_autogen_bootstrap_key(auth) < 0 ||
-           dpp_prepare_channel_list(auth, own_modes, num_modes) < 0)
+           dpp_prepare_channel_list(auth, neg_freq, own_modes, num_modes) < 0)
                goto fail;
 
 #ifdef CONFIG_TESTING_OPTIONS
@@ -2133,24 +2449,14 @@ struct dpp_authentication * dpp_auth_init(void *msg_ctx,
                goto fail;
 
        /* ECDH: M = pI * BR */
-       ctx = EVP_PKEY_CTX_new(auth->own_protocol_key, NULL);
-       if (!ctx ||
-           EVP_PKEY_derive_init(ctx) != 1 ||
-           EVP_PKEY_derive_set_peer(ctx, auth->peer_bi->pubkey) != 1 ||
-           EVP_PKEY_derive(ctx, NULL, &secret_len) != 1 ||
-           secret_len > DPP_MAX_SHARED_SECRET_LEN ||
-           EVP_PKEY_derive(ctx, auth->Mx, &secret_len) != 1) {
-               wpa_printf(MSG_ERROR,
-                          "DPP: Failed to derive ECDH shared secret: %s",
-                          ERR_error_string(ERR_get_error(), NULL));
+       if (dpp_ecdh(auth->own_protocol_key, auth->peer_bi->pubkey,
+                    auth->Mx, &secret_len) < 0)
                goto fail;
-       }
        auth->secret_len = secret_len;
-       EVP_PKEY_CTX_free(ctx);
-       ctx = NULL;
 
        wpa_hexdump_key(MSG_DEBUG, "DPP: ECDH shared secret (M.x)",
                        auth->Mx, auth->secret_len);
+       auth->Mx_len = auth->secret_len;
 
        if (dpp_derive_k1(auth->Mx, auth->secret_len, auth->k1,
                          auth->curve->hash_len) < 0)
@@ -2191,6 +2497,8 @@ struct dpp_authentication * dpp_auth_init(void *msg_ctx,
        }
 #endif /* CONFIG_TESTING_OPTIONS */
 
+       if (neg_freq && auth->num_freq == 1 && auth->freq[0] == neg_freq)
+               neg_freq = 0;
        auth->req_msg = dpp_auth_build_req(auth, pi, nonce_len, r_pubkey_hash,
                                           i_pubkey_hash, neg_freq);
        if (!auth->req_msg)
@@ -2198,7 +2506,6 @@ struct dpp_authentication * dpp_auth_init(void *msg_ctx,
 
 out:
        wpabuf_free(pi);
-       EVP_PKEY_CTX_free(ctx);
        return auth;
 fail:
        dpp_auth_deinit(auth);
@@ -2207,8 +2514,8 @@ fail:
 }
 
 
-struct wpabuf * dpp_build_conf_req(struct dpp_authentication *auth,
-                                  const char *json)
+static struct wpabuf * dpp_build_conf_req_attr(struct dpp_authentication *auth,
+                                              const char *json)
 {
        size_t nonce_len;
        size_t json_len, clear_len;
@@ -2225,7 +2532,7 @@ struct wpabuf * dpp_build_conf_req(struct dpp_authentication *auth,
        }
        wpa_hexdump(MSG_DEBUG, "DPP: E-nonce", auth->e_nonce, nonce_len);
        json_len = os_strlen(json);
-       wpa_hexdump_ascii(MSG_DEBUG, "DPP: configAttr JSON", json, json_len);
+       wpa_hexdump_ascii(MSG_DEBUG, "DPP: configRequest JSON", json, json_len);
 
        /* { E-nonce, configAttrib }ke */
        clear_len = 4 + nonce_len + 4 + json_len;
@@ -2312,43 +2619,155 @@ fail:
 }
 
 
-static void dpp_auth_success(struct dpp_authentication *auth)
+static void dpp_write_adv_proto(struct wpabuf *buf)
 {
-       wpa_printf(MSG_DEBUG,
-                  "DPP: Authentication success - clear temporary keys");
-       os_memset(auth->Mx, 0, sizeof(auth->Mx));
-       os_memset(auth->Nx, 0, sizeof(auth->Nx));
-       os_memset(auth->Lx, 0, sizeof(auth->Lx));
-       os_memset(auth->k1, 0, sizeof(auth->k1));
-       os_memset(auth->k2, 0, sizeof(auth->k2));
+       /* 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);
+}
 
-       auth->auth_success = 1;
+
+static void dpp_write_gas_query(struct wpabuf *buf, struct wpabuf *query)
+{
+       /* GAS Query */
+       wpabuf_put_le16(buf, wpabuf_len(query));
+       wpabuf_put_buf(buf, query);
 }
 
 
-static int dpp_gen_r_auth(struct dpp_authentication *auth, u8 *r_auth)
+struct wpabuf * dpp_build_conf_req(struct dpp_authentication *auth,
+                                  const char *json)
 {
-       struct wpabuf *pix, *prx, *bix, *brx;
-       const u8 *addr[7];
-       size_t len[7];
-       size_t i, num_elem = 0;
-       size_t nonce_len;
-       u8 zero = 0;
-       int res = -1;
+       struct wpabuf *buf, *conf_req;
 
-       /* R-auth = H(I-nonce | R-nonce | PI.x | PR.x | [BI.x |] BR.x | 0) */
-       nonce_len = auth->curve->nonce_len;
+       conf_req = dpp_build_conf_req_attr(auth, json);
+       if (!conf_req) {
+               wpa_printf(MSG_DEBUG,
+                          "DPP: No configuration request data available");
+               return NULL;
+       }
 
-       if (auth->initiator) {
-               pix = dpp_get_pubkey_point(auth->own_protocol_key, 0);
-               prx = dpp_get_pubkey_point(auth->peer_protocol_key, 0);
-               if (auth->own_bi)
-                       bix = dpp_get_pubkey_point(auth->own_bi->pubkey, 0);
-               else
-                       bix = NULL;
-               brx = dpp_get_pubkey_point(auth->peer_bi->pubkey, 0);
-       } else {
-               pix = dpp_get_pubkey_point(auth->peer_protocol_key, 0);
+       buf = gas_build_initial_req(0, 10 + 2 + wpabuf_len(conf_req));
+       if (!buf) {
+               wpabuf_free(conf_req);
+               return NULL;
+       }
+
+       dpp_write_adv_proto(buf);
+       dpp_write_gas_query(buf, conf_req);
+       wpabuf_free(conf_req);
+       wpa_hexdump_buf(MSG_MSGDUMP, "DPP: GAS Config Request", buf);
+
+       return buf;
+}
+
+
+struct wpabuf * dpp_build_conf_req_helper(struct dpp_authentication *auth,
+                                         const char *name,
+                                         enum dpp_netrole netrole,
+                                         const char *mud_url, int *opclasses)
+{
+       size_t len, name_len;
+       const char *tech = "infra";
+       const char *dpp_name;
+       struct wpabuf *buf, *json;
+
+#ifdef CONFIG_TESTING_OPTIONS
+       if (dpp_test == DPP_TEST_INVALID_CONFIG_ATTR_OBJ_CONF_REQ) {
+               static const char *bogus_tech = "knfra";
+
+               wpa_printf(MSG_INFO, "DPP: TESTING - invalid Config Attr");
+               tech = bogus_tech;
+       }
+#endif /* CONFIG_TESTING_OPTIONS */
+
+       dpp_name = name ? name : "Test";
+       name_len = os_strlen(dpp_name);
+
+       len = 100 + name_len * 6 + 1 + int_array_len(opclasses) * 4;
+       if (mud_url && mud_url[0])
+               len += 10 + os_strlen(mud_url);
+       json = wpabuf_alloc(len);
+       if (!json)
+               return NULL;
+
+       json_start_object(json, NULL);
+       if (json_add_string_escape(json, "name", dpp_name, name_len) < 0) {
+               wpabuf_free(json);
+               return NULL;
+       }
+       json_value_sep(json);
+       json_add_string(json, "wi-fi_tech", tech);
+       json_value_sep(json);
+       json_add_string(json, "netRole", dpp_netrole_str(netrole));
+       if (mud_url && mud_url[0]) {
+               json_value_sep(json);
+               json_add_string(json, "mudurl", mud_url);
+       }
+       if (opclasses) {
+               int i;
+
+               json_value_sep(json);
+               json_start_array(json, "bandSupport");
+               for (i = 0; opclasses[i]; i++)
+                       wpabuf_printf(json, "%s%u", i ? "," : "", opclasses[i]);
+               json_end_array(json);
+       }
+       json_end_object(json);
+
+       buf = dpp_build_conf_req(auth, wpabuf_head(json));
+       wpabuf_free(json);
+
+       return buf;
+}
+
+
+static void dpp_auth_success(struct dpp_authentication *auth)
+{
+       wpa_printf(MSG_DEBUG,
+                  "DPP: Authentication success - clear temporary keys");
+       os_memset(auth->Mx, 0, sizeof(auth->Mx));
+       auth->Mx_len = 0;
+       os_memset(auth->Nx, 0, sizeof(auth->Nx));
+       auth->Nx_len = 0;
+       os_memset(auth->Lx, 0, sizeof(auth->Lx));
+       auth->Lx_len = 0;
+       os_memset(auth->k1, 0, sizeof(auth->k1));
+       os_memset(auth->k2, 0, sizeof(auth->k2));
+
+       auth->auth_success = 1;
+}
+
+
+static int dpp_gen_r_auth(struct dpp_authentication *auth, u8 *r_auth)
+{
+       struct wpabuf *pix, *prx, *bix, *brx;
+       const u8 *addr[7];
+       size_t len[7];
+       size_t i, num_elem = 0;
+       size_t nonce_len;
+       u8 zero = 0;
+       int res = -1;
+
+       /* R-auth = H(I-nonce | R-nonce | PI.x | PR.x | [BI.x |] BR.x | 0) */
+       nonce_len = auth->curve->nonce_len;
+
+       if (auth->initiator) {
+               pix = dpp_get_pubkey_point(auth->own_protocol_key, 0);
+               prx = dpp_get_pubkey_point(auth->peer_protocol_key, 0);
+               if (auth->own_bi)
+                       bix = dpp_get_pubkey_point(auth->own_bi->pubkey, 0);
+               else
+                       bix = NULL;
+               brx = dpp_get_pubkey_point(auth->peer_bi->pubkey, 0);
+       } else {
+               pix = dpp_get_pubkey_point(auth->peer_protocol_key, 0);
                prx = dpp_get_pubkey_point(auth->own_protocol_key, 0);
                if (auth->peer_bi)
                        bix = dpp_get_pubkey_point(auth->peer_bi->pubkey, 0);
@@ -2540,6 +2959,7 @@ static int dpp_auth_derive_l_responder(struct dpp_authentication *auth)
        if (dpp_bn2bin_pad(lx, auth->Lx, auth->secret_len) < 0)
                goto fail;
        wpa_hexdump_key(MSG_DEBUG, "DPP: L.x", auth->Lx, auth->secret_len);
+       auth->Lx_len = auth->secret_len;
        ret = 0;
 fail:
        EC_POINT_clear_free(l);
@@ -2601,9 +3021,11 @@ static int dpp_auth_derive_l_initiator(struct dpp_authentication *auth)
        if (dpp_bn2bin_pad(lx, auth->Lx, auth->secret_len) < 0)
                goto fail;
        wpa_hexdump_key(MSG_DEBUG, "DPP: L.x", auth->Lx, auth->secret_len);
+       auth->Lx_len = auth->secret_len;
        ret = 0;
 fail:
        EC_POINT_clear_free(l);
+       EC_POINT_clear_free(sum);
        EC_KEY_free(bI);
        EC_KEY_free(BR);
        EC_KEY_free(PR);
@@ -2616,7 +3038,6 @@ fail:
 static int dpp_auth_build_resp_ok(struct dpp_authentication *auth)
 {
        size_t nonce_len;
-       EVP_PKEY_CTX *ctx = NULL;
        size_t secret_len;
        struct wpabuf *msg, *pr = NULL;
        u8 r_auth[4 + DPP_MAX_HASH_LEN];
@@ -2655,6 +3076,7 @@ static int dpp_auth_build_resp_ok(struct dpp_authentication *auth)
 #endif /* CONFIG_TESTING_OPTIONS */
        wpa_hexdump(MSG_DEBUG, "DPP: R-nonce", auth->r_nonce, nonce_len);
 
+       EVP_PKEY_free(auth->own_protocol_key);
 #ifdef CONFIG_TESTING_OPTIONS
        if (dpp_protocol_key_override_len) {
                const struct dpp_curve_params *tmp_curve;
@@ -2678,23 +3100,13 @@ static int dpp_auth_build_resp_ok(struct dpp_authentication *auth)
                goto fail;
 
        /* ECDH: N = pR * PI */
-       ctx = EVP_PKEY_CTX_new(auth->own_protocol_key, NULL);
-       if (!ctx ||
-           EVP_PKEY_derive_init(ctx) != 1 ||
-           EVP_PKEY_derive_set_peer(ctx, auth->peer_protocol_key) != 1 ||
-           EVP_PKEY_derive(ctx, NULL, &secret_len) != 1 ||
-           secret_len > DPP_MAX_SHARED_SECRET_LEN ||
-           EVP_PKEY_derive(ctx, auth->Nx, &secret_len) != 1) {
-               wpa_printf(MSG_ERROR,
-                          "DPP: Failed to derive ECDH shared secret: %s",
-                          ERR_error_string(ERR_get_error(), NULL));
+       if (dpp_ecdh(auth->own_protocol_key, auth->peer_protocol_key,
+                    auth->Nx, &secret_len) < 0)
                goto fail;
-       }
-       EVP_PKEY_CTX_free(ctx);
-       ctx = NULL;
 
        wpa_hexdump_key(MSG_DEBUG, "DPP: ECDH shared secret (N.x)",
                        auth->Nx, auth->secret_len);
+       auth->Nx_len = auth->secret_len;
 
        if (dpp_derive_k2(auth->Nx, auth->secret_len, auth->k2,
                          auth->curve->hash_len) < 0)
@@ -2854,7 +3266,7 @@ static int dpp_auth_build_resp_status(struct dpp_authentication *auth,
                i_pubkey_hash = test_hash;
        } else if (dpp_test == DPP_TEST_NO_STATUS_AUTH_RESP) {
                wpa_printf(MSG_INFO, "DPP: TESTING - no Status");
-               status = -1;
+               status = 255;
        } else if (dpp_test == DPP_TEST_NO_I_NONCE_AUTH_RESP) {
                wpa_printf(MSG_INFO, "DPP: TESTING - no I-nonce");
                i_nonce = NULL;
@@ -2873,8 +3285,8 @@ static int dpp_auth_build_resp_status(struct dpp_authentication *auth,
 
 
 struct dpp_authentication *
-dpp_auth_req_rx(void *msg_ctx, u8 dpp_allowed_roles, int qr_mutual,
-               struct dpp_bootstrap_info *peer_bi,
+dpp_auth_req_rx(struct dpp_global *dpp, void *msg_ctx, u8 dpp_allowed_roles,
+               int qr_mutual, struct dpp_bootstrap_info *peer_bi,
                struct dpp_bootstrap_info *own_bi,
                unsigned int freq, const u8 *hdr, const u8 *attr_start,
                size_t attr_len)
@@ -2891,6 +3303,10 @@ dpp_auth_req_rx(void *msg_ctx, u8 dpp_allowed_roles, int qr_mutual,
        u16 wrapped_data_len, i_proto_len, i_nonce_len, i_capab_len,
                i_bootstrap_len, channel_len;
        struct dpp_authentication *auth = NULL;
+#ifdef CONFIG_DPP2
+       const u8 *version;
+       u16 version_len;
+#endif /* CONFIG_DPP2 */
 
 #ifdef CONFIG_TESTING_OPTIONS
        if (dpp_test == DPP_TEST_STOP_AT_AUTH_REQ) {
@@ -2911,15 +3327,33 @@ dpp_auth_req_rx(void *msg_ctx, u8 dpp_allowed_roles, int qr_mutual,
                    wrapped_data, wrapped_data_len);
        attr_len = wrapped_data - 4 - attr_start;
 
-       auth = os_zalloc(sizeof(*auth));
+       auth = dpp_alloc_auth(dpp, msg_ctx);
        if (!auth)
                goto fail;
-       auth->msg_ctx = msg_ctx;
+       if (peer_bi && peer_bi->configurator_params &&
+           dpp_set_configurator(auth, peer_bi->configurator_params) < 0)
+               goto fail;
        auth->peer_bi = peer_bi;
        auth->own_bi = own_bi;
        auth->curve = own_bi->curve;
        auth->curr_freq = freq;
 
+       auth->peer_version = 1; /* default to the first version */
+#ifdef CONFIG_DPP2
+       version = dpp_get_attr(attr_start, attr_len, DPP_ATTR_PROTOCOL_VERSION,
+                              &version_len);
+       if (version) {
+               if (version_len < 1 || version[0] == 0) {
+                       dpp_auth_fail(auth,
+                                     "Invalid Protocol Version attribute");
+                       goto fail;
+               }
+               auth->peer_version = version[0];
+               wpa_printf(MSG_DEBUG, "DPP: Peer protocol version %u",
+                          auth->peer_version);
+       }
+#endif /* CONFIG_DPP2 */
+
        channel = dpp_get_attr(attr_start, attr_len, DPP_ATTR_CHANNEL,
                               &channel_len);
        if (channel) {
@@ -2966,25 +3400,13 @@ dpp_auth_req_rx(void *msg_ctx, u8 dpp_allowed_roles, int qr_mutual,
        }
        dpp_debug_print_key("Peer (Initiator) Protocol Key", pi);
 
-       ctx = EVP_PKEY_CTX_new(own_bi->pubkey, NULL);
-       if (!ctx ||
-           EVP_PKEY_derive_init(ctx) != 1 ||
-           EVP_PKEY_derive_set_peer(ctx, pi) != 1 ||
-           EVP_PKEY_derive(ctx, NULL, &secret_len) != 1 ||
-           secret_len > DPP_MAX_SHARED_SECRET_LEN ||
-           EVP_PKEY_derive(ctx, auth->Mx, &secret_len) != 1) {
-               wpa_printf(MSG_ERROR,
-                          "DPP: Failed to derive ECDH shared secret: %s",
-                          ERR_error_string(ERR_get_error(), NULL));
-               dpp_auth_fail(auth, "Failed to derive ECDH shared secret");
+       if (dpp_ecdh(own_bi->pubkey, pi, auth->Mx, &secret_len) < 0)
                goto fail;
-       }
        auth->secret_len = secret_len;
-       EVP_PKEY_CTX_free(ctx);
-       ctx = NULL;
 
        wpa_hexdump_key(MSG_DEBUG, "DPP: ECDH shared secret (M.x)",
                        auth->Mx, auth->secret_len);
+       auth->Mx_len = auth->secret_len;
 
        if (dpp_derive_k1(auth->Mx, auth->secret_len, auth->k1,
                          auth->curve->hash_len) < 0)
@@ -3434,7 +3856,6 @@ dpp_auth_resp_rx(struct dpp_authentication *auth, const u8 *hdr,
                 const u8 *attr_start, size_t attr_len)
 {
        EVP_PKEY *pr;
-       EVP_PKEY_CTX *ctx = NULL;
        size_t secret_len;
        const u8 *addr[2];
        size_t len[2];
@@ -3447,6 +3868,10 @@ dpp_auth_resp_rx(struct dpp_authentication *auth, const u8 *hdr,
                wrapped2_len, r_auth_len;
        u8 r_auth2[DPP_MAX_HASH_LEN];
        u8 role;
+#ifdef CONFIG_DPP2
+       const u8 *version;
+       u16 version_len;
+#endif /* CONFIG_DPP2 */
 
 #ifdef CONFIG_TESTING_OPTIONS
        if (dpp_test == DPP_TEST_STOP_AT_AUTH_RESP) {
@@ -3456,7 +3881,7 @@ dpp_auth_resp_rx(struct dpp_authentication *auth, const u8 *hdr,
        }
 #endif /* CONFIG_TESTING_OPTIONS */
 
-       if (!auth->initiator) {
+       if (!auth->initiator || !auth->peer_bi) {
                dpp_auth_fail(auth, "Unexpected Authentication Response");
                return NULL;
        }
@@ -3521,6 +3946,22 @@ dpp_auth_resp_rx(struct dpp_authentication *auth, const u8 *hdr,
                return NULL;
        }
 
+       auth->peer_version = 1; /* default to the first version */
+#ifdef CONFIG_DPP2
+       version = dpp_get_attr(attr_start, attr_len, DPP_ATTR_PROTOCOL_VERSION,
+                              &version_len);
+       if (version) {
+               if (version_len < 1 || version[0] == 0) {
+                       dpp_auth_fail(auth,
+                                     "Invalid Protocol Version attribute");
+                       return NULL;
+               }
+               auth->peer_version = version[0];
+               wpa_printf(MSG_DEBUG, "DPP: Peer protocol version %u",
+                          auth->peer_version);
+       }
+#endif /* CONFIG_DPP2 */
+
        status = dpp_get_attr(attr_start, attr_len, DPP_ATTR_STATUS,
                              &status_len);
        if (!status || status_len < 1) {
@@ -3564,26 +4005,17 @@ dpp_auth_resp_rx(struct dpp_authentication *auth, const u8 *hdr,
        }
        dpp_debug_print_key("Peer (Responder) Protocol Key", pr);
 
-       ctx = EVP_PKEY_CTX_new(auth->own_protocol_key, NULL);
-       if (!ctx ||
-           EVP_PKEY_derive_init(ctx) != 1 ||
-           EVP_PKEY_derive_set_peer(ctx, pr) != 1 ||
-           EVP_PKEY_derive(ctx, NULL, &secret_len) != 1 ||
-           secret_len > DPP_MAX_SHARED_SECRET_LEN ||
-           EVP_PKEY_derive(ctx, auth->Nx, &secret_len) != 1) {
-               wpa_printf(MSG_ERROR,
-                          "DPP: Failed to derive ECDH shared secret: %s",
-                          ERR_error_string(ERR_get_error(), NULL));
+       if (dpp_ecdh(auth->own_protocol_key, pr, auth->Nx, &secret_len) < 0) {
                dpp_auth_fail(auth, "Failed to derive ECDH shared secret");
                goto fail;
        }
-       EVP_PKEY_CTX_free(ctx);
-       ctx = NULL;
+       EVP_PKEY_free(auth->peer_protocol_key);
        auth->peer_protocol_key = pr;
        pr = NULL;
 
        wpa_hexdump_key(MSG_DEBUG, "DPP: ECDH shared secret (N.x)",
                        auth->Nx, auth->secret_len);
+       auth->Nx_len = auth->secret_len;
 
        if (dpp_derive_k2(auth->Nx, auth->secret_len, auth->k2,
                          auth->curve->hash_len) < 0)
@@ -3636,7 +4068,7 @@ dpp_auth_resp_rx(struct dpp_authentication *auth, const u8 *hdr,
                goto fail;
        }
 
-       if (auth->own_bi && auth->peer_bi) {
+       if (auth->own_bi) {
                /* Mutual authentication */
                if (dpp_auth_derive_l_initiator(auth) < 0)
                        goto fail;
@@ -3748,7 +4180,6 @@ fail:
        bin_clear_free(unwrapped, unwrapped_len);
        bin_clear_free(unwrapped2, unwrapped2_len);
        EVP_PKEY_free(pr);
-       EVP_PKEY_CTX_free(ctx);
        return NULL;
 }
 
@@ -3844,7 +4275,11 @@ int dpp_auth_conf_rx(struct dpp_authentication *auth, const u8 *hdr,
        }
 #endif /* CONFIG_TESTING_OPTIONS */
 
-       if (auth->initiator) {
+       if (auth->initiator || !auth->own_bi || !auth->waiting_auth_conf) {
+               wpa_printf(MSG_DEBUG,
+                          "DPP: initiator=%d own_bi=%d waiting_auth_conf=%d",
+                          auth->initiator, !!auth->own_bi,
+                          auth->waiting_auth_conf);
                dpp_auth_fail(auth, "Unexpected Authentication Confirm");
                return -1;
        }
@@ -3902,7 +4337,7 @@ int dpp_auth_conf_rx(struct dpp_authentication *auth, const u8 *hdr,
                                      "Initiator Bootstrapping Key Hash mismatch");
                        return -1;
                }
-       } else if (auth->own_bi && auth->peer_bi) {
+       } else if (auth->peer_bi) {
                /* Mutual authentication and peer did not include its
                 * Bootstrapping Key Hash attribute. */
                dpp_auth_fail(auth,
@@ -3983,177 +4418,597 @@ fail:
 }
 
 
-void dpp_configuration_free(struct dpp_configuration *conf)
+static int bin_str_eq(const char *val, size_t len, const char *cmp)
+{
+       return os_strlen(cmp) == len && os_memcmp(val, cmp, len) == 0;
+}
+
+
+struct dpp_configuration * dpp_configuration_alloc(const char *type)
 {
+       struct dpp_configuration *conf;
+       const char *end;
+       size_t len;
+
+       conf = os_zalloc(sizeof(*conf));
        if (!conf)
-               return;
-       str_clear_free(conf->passphrase);
-       bin_clear_free(conf, sizeof(*conf));
+               goto fail;
+
+       end = os_strchr(type, ' ');
+       if (end)
+               len = end - type;
+       else
+               len = os_strlen(type);
+
+       if (bin_str_eq(type, len, "psk"))
+               conf->akm = DPP_AKM_PSK;
+       else if (bin_str_eq(type, len, "sae"))
+               conf->akm = DPP_AKM_SAE;
+       else if (bin_str_eq(type, len, "psk-sae") ||
+                bin_str_eq(type, len, "psk+sae"))
+               conf->akm = DPP_AKM_PSK_SAE;
+       else if (bin_str_eq(type, len, "sae-dpp") ||
+                bin_str_eq(type, len, "dpp+sae"))
+               conf->akm = DPP_AKM_SAE_DPP;
+       else if (bin_str_eq(type, len, "psk-sae-dpp") ||
+                bin_str_eq(type, len, "dpp+psk+sae"))
+               conf->akm = DPP_AKM_PSK_SAE_DPP;
+       else if (bin_str_eq(type, len, "dpp"))
+               conf->akm = DPP_AKM_DPP;
+       else
+               goto fail;
+
+       return conf;
+fail:
+       dpp_configuration_free(conf);
+       return NULL;
 }
 
 
-void dpp_auth_deinit(struct dpp_authentication *auth)
+int dpp_akm_psk(enum dpp_akm akm)
 {
-       if (!auth)
-               return;
-       dpp_configuration_free(auth->conf_ap);
-       dpp_configuration_free(auth->conf_sta);
-       EVP_PKEY_free(auth->own_protocol_key);
-       EVP_PKEY_free(auth->peer_protocol_key);
-       wpabuf_free(auth->req_msg);
-       wpabuf_free(auth->resp_msg);
-       wpabuf_free(auth->conf_req);
-       os_free(auth->connector);
-       wpabuf_free(auth->net_access_key);
-       wpabuf_free(auth->c_sign_key);
-       dpp_bootstrap_info_free(auth->tmp_own_bi);
-#ifdef CONFIG_TESTING_OPTIONS
-       os_free(auth->config_obj_override);
-       os_free(auth->discovery_override);
-       os_free(auth->groups_override);
-#endif /* CONFIG_TESTING_OPTIONS */
-       bin_clear_free(auth, sizeof(*auth));
+       return akm == DPP_AKM_PSK || akm == DPP_AKM_PSK_SAE ||
+               akm == DPP_AKM_PSK_SAE_DPP;
 }
 
 
-static struct wpabuf *
-dpp_build_conf_start(struct dpp_authentication *auth,
-                    struct dpp_configuration *conf, size_t tailroom)
+int dpp_akm_sae(enum dpp_akm akm)
 {
-       struct wpabuf *buf;
-       char ssid[6 * sizeof(conf->ssid) + 1];
+       return akm == DPP_AKM_SAE || akm == DPP_AKM_PSK_SAE ||
+               akm == DPP_AKM_SAE_DPP || akm == DPP_AKM_PSK_SAE_DPP;
+}
 
-#ifdef CONFIG_TESTING_OPTIONS
-       if (auth->discovery_override)
-               tailroom += os_strlen(auth->discovery_override);
-#endif /* CONFIG_TESTING_OPTIONS */
 
-       buf = wpabuf_alloc(200 + tailroom);
-       if (!buf)
-               return NULL;
-       wpabuf_put_str(buf, "{\"wi-fi_tech\":\"infra\",\"discovery\":");
-#ifdef CONFIG_TESTING_OPTIONS
-       if (auth->discovery_override) {
-               wpa_printf(MSG_DEBUG, "DPP: TESTING - discovery override: '%s'",
-                          auth->discovery_override);
-               wpabuf_put_str(buf, auth->discovery_override);
-               wpabuf_put_u8(buf, ',');
-               return buf;
-       }
-#endif /* CONFIG_TESTING_OPTIONS */
-       wpabuf_put_str(buf, "{\"ssid\":\"");
-       json_escape_string(ssid, sizeof(ssid),
-                          (const char *) conf->ssid, conf->ssid_len);
-       wpabuf_put_str(buf, ssid);
-       wpabuf_put_str(buf, "\"},");
+int dpp_akm_legacy(enum dpp_akm akm)
+{
+       return akm == DPP_AKM_PSK || akm == DPP_AKM_PSK_SAE ||
+               akm == DPP_AKM_SAE;
+}
 
-       return buf;
+
+int dpp_akm_dpp(enum dpp_akm akm)
+{
+       return akm == DPP_AKM_DPP || akm == DPP_AKM_SAE_DPP ||
+               akm == DPP_AKM_PSK_SAE_DPP;
 }
 
 
-static int dpp_build_jwk(struct wpabuf *buf, const char *name, EVP_PKEY *key,
-                        const char *kid, const struct dpp_curve_params *curve)
+int dpp_akm_ver2(enum dpp_akm akm)
 {
-       struct wpabuf *pub;
-       const u8 *pos;
-       char *x = NULL, *y = NULL;
-       int ret = -1;
+       return akm == DPP_AKM_SAE_DPP || akm == DPP_AKM_PSK_SAE_DPP;
+}
 
-       pub = dpp_get_pubkey_point(key, 0);
-       if (!pub)
-               goto fail;
-       pos = wpabuf_head(pub);
-       x = (char *) base64_url_encode(pos, curve->prime_len, NULL, 0);
-       pos += curve->prime_len;
-       y = (char *) base64_url_encode(pos, curve->prime_len, NULL, 0);
-       if (!x || !y)
-               goto fail;
 
-       wpabuf_put_str(buf, "\"");
-       wpabuf_put_str(buf, name);
-       wpabuf_put_str(buf, "\":{\"kty\":\"EC\",\"crv\":\"");
-       wpabuf_put_str(buf, curve->jwk_crv);
-       wpabuf_put_str(buf, "\",\"x\":\"");
-       wpabuf_put_str(buf, x);
-       wpabuf_put_str(buf, "\",\"y\":\"");
-       wpabuf_put_str(buf, y);
-       if (kid) {
-               wpabuf_put_str(buf, "\",\"kid\":\"");
-               wpabuf_put_str(buf, kid);
-       }
-       wpabuf_put_str(buf, "\"}");
-       ret = 0;
-fail:
-       wpabuf_free(pub);
-       os_free(x);
-       os_free(y);
-       return ret;
+int dpp_configuration_valid(const struct dpp_configuration *conf)
+{
+       if (conf->ssid_len == 0)
+               return 0;
+       if (dpp_akm_psk(conf->akm) && !conf->passphrase && !conf->psk_set)
+               return 0;
+       if (dpp_akm_sae(conf->akm) && !conf->passphrase)
+               return 0;
+       return 1;
 }
 
 
-static struct wpabuf *
-dpp_build_conf_obj_dpp(struct dpp_authentication *auth, int ap,
-                      struct dpp_configuration *conf)
+void dpp_configuration_free(struct dpp_configuration *conf)
 {
-       struct wpabuf *buf = NULL;
-       char *signed1 = NULL, *signed2 = NULL, *signed3 = NULL;
-       size_t tailroom;
-       const struct dpp_curve_params *curve;
-       char jws_prot_hdr[100];
-       size_t signed1_len, signed2_len, signed3_len;
-       struct wpabuf *dppcon = NULL;
-       unsigned char *signature = NULL;
-       const unsigned char *p;
-       size_t signature_len;
-       EVP_MD_CTX *md_ctx = NULL;
-       ECDSA_SIG *sig = NULL;
-       char *dot = ".";
-       const EVP_MD *sign_md;
-       const BIGNUM *r, *s;
-       size_t extra_len = 1000;
+       if (!conf)
+               return;
+       str_clear_free(conf->passphrase);
+       os_free(conf->group_id);
+       bin_clear_free(conf, sizeof(*conf));
+}
 
-       if (!auth->conf) {
-               wpa_printf(MSG_INFO,
-                          "DPP: No configurator specified - cannot generate DPP config object");
-               goto fail;
+
+static int dpp_configuration_parse_helper(struct dpp_authentication *auth,
+                                         const char *cmd, int idx)
+{
+       const char *pos, *end;
+       struct dpp_configuration *conf_sta = NULL, *conf_ap = NULL;
+       struct dpp_configuration *conf = NULL;
+
+       pos = os_strstr(cmd, " conf=sta-");
+       if (pos) {
+               conf_sta = dpp_configuration_alloc(pos + 10);
+               if (!conf_sta)
+                       goto fail;
+               conf_sta->netrole = DPP_NETROLE_STA;
+               conf = conf_sta;
        }
-       curve = auth->conf->curve;
-       if (curve->hash_len == SHA256_MAC_LEN) {
-               sign_md = EVP_sha256();
-       } else if (curve->hash_len == SHA384_MAC_LEN) {
-               sign_md = EVP_sha384();
-       } else if (curve->hash_len == SHA512_MAC_LEN) {
-               sign_md = EVP_sha512();
-       } else {
-               wpa_printf(MSG_DEBUG, "DPP: Unknown signature algorithm");
-               goto fail;
+
+       pos = os_strstr(cmd, " conf=ap-");
+       if (pos) {
+               conf_ap = dpp_configuration_alloc(pos + 9);
+               if (!conf_ap)
+                       goto fail;
+               conf_ap->netrole = DPP_NETROLE_AP;
+               conf = conf_ap;
        }
 
+       pos = os_strstr(cmd, " conf=configurator");
+       if (pos)
+               auth->provision_configurator = 1;
+
+       if (!conf)
+               return 0;
+
+       pos = os_strstr(cmd, " ssid=");
+       if (pos) {
+               pos += 6;
+               end = os_strchr(pos, ' ');
+               conf->ssid_len = end ? (size_t) (end - pos) : os_strlen(pos);
+               conf->ssid_len /= 2;
+               if (conf->ssid_len > sizeof(conf->ssid) ||
+                   hexstr2bin(pos, conf->ssid, conf->ssid_len) < 0)
+                       goto fail;
+       } else {
 #ifdef CONFIG_TESTING_OPTIONS
-       if (auth->groups_override)
-               extra_len += os_strlen(auth->groups_override);
+               /* use a default SSID for legacy testing reasons */
+               os_memcpy(conf->ssid, "test", 4);
+               conf->ssid_len = 4;
+#else /* CONFIG_TESTING_OPTIONS */
+               goto fail;
 #endif /* CONFIG_TESTING_OPTIONS */
+       }
 
-       /* Connector (JSON dppCon object) */
-       dppcon = wpabuf_alloc(extra_len + 2 * auth->curve->prime_len * 4 / 3);
-       if (!dppcon)
-               goto fail;
-#ifdef CONFIG_TESTING_OPTIONS
-       if (auth->groups_override) {
-               wpabuf_put_u8(dppcon, '{');
-               if (auth->groups_override) {
-                       wpa_printf(MSG_DEBUG,
-                                  "DPP: TESTING - groups override: '%s'",
-                                  auth->groups_override);
+       pos = os_strstr(cmd, " ssid_charset=");
+       if (pos) {
+               if (conf_ap) {
+                       wpa_printf(MSG_INFO,
+                                  "DPP: ssid64 option (ssid_charset param) not allowed for AP enrollee");
+                       goto fail;
+               }
+               conf->ssid_charset = atoi(pos + 14);
+       }
+
+       pos = os_strstr(cmd, " pass=");
+       if (pos) {
+               size_t pass_len;
+
+               pos += 6;
+               end = os_strchr(pos, ' ');
+               pass_len = end ? (size_t) (end - pos) : os_strlen(pos);
+               pass_len /= 2;
+               if (pass_len > 63 || pass_len < 8)
+                       goto fail;
+               conf->passphrase = os_zalloc(pass_len + 1);
+               if (!conf->passphrase ||
+                   hexstr2bin(pos, (u8 *) conf->passphrase, pass_len) < 0)
+                       goto fail;
+       }
+
+       pos = os_strstr(cmd, " psk=");
+       if (pos) {
+               pos += 5;
+               if (hexstr2bin(pos, conf->psk, PMK_LEN) < 0)
+                       goto fail;
+               conf->psk_set = 1;
+       }
+
+       pos = os_strstr(cmd, " group_id=");
+       if (pos) {
+               size_t group_id_len;
+
+               pos += 10;
+               end = os_strchr(pos, ' ');
+               group_id_len = end ? (size_t) (end - pos) : os_strlen(pos);
+               conf->group_id = os_malloc(group_id_len + 1);
+               if (!conf->group_id)
+                       goto fail;
+               os_memcpy(conf->group_id, pos, group_id_len);
+               conf->group_id[group_id_len] = '\0';
+       }
+
+       pos = os_strstr(cmd, " expiry=");
+       if (pos) {
+               long int val;
+
+               pos += 8;
+               val = strtol(pos, NULL, 0);
+               if (val <= 0)
+                       goto fail;
+               conf->netaccesskey_expiry = val;
+       }
+
+       if (!dpp_configuration_valid(conf))
+               goto fail;
+
+       if (idx == 0) {
+               auth->conf_sta = conf_sta;
+               auth->conf_ap = conf_ap;
+       } else if (idx == 1) {
+               auth->conf2_sta = conf_sta;
+               auth->conf2_ap = conf_ap;
+       } else {
+               goto fail;
+       }
+       return 0;
+
+fail:
+       dpp_configuration_free(conf_sta);
+       dpp_configuration_free(conf_ap);
+       return -1;
+}
+
+
+static int dpp_configuration_parse(struct dpp_authentication *auth,
+                                  const char *cmd)
+{
+       const char *pos;
+       char *tmp;
+       size_t len;
+       int res;
+
+       pos = os_strstr(cmd, " @CONF-OBJ-SEP@ ");
+       if (!pos)
+               return dpp_configuration_parse_helper(auth, cmd, 0);
+
+       len = pos - cmd;
+       tmp = os_malloc(len + 1);
+       if (!tmp)
+               goto fail;
+       os_memcpy(tmp, cmd, len);
+       tmp[len] = '\0';
+       res = dpp_configuration_parse_helper(auth, cmd, 0);
+       str_clear_free(tmp);
+       if (res)
+               goto fail;
+       res = dpp_configuration_parse_helper(auth, cmd + len, 1);
+       if (res)
+               goto fail;
+       return 0;
+fail:
+       dpp_configuration_free(auth->conf_sta);
+       dpp_configuration_free(auth->conf2_sta);
+       dpp_configuration_free(auth->conf_ap);
+       dpp_configuration_free(auth->conf2_ap);
+       return -1;
+}
+
+
+static struct dpp_configurator *
+dpp_configurator_get_id(struct dpp_global *dpp, unsigned int id)
+{
+       struct dpp_configurator *conf;
+
+       if (!dpp)
+               return NULL;
+
+       dl_list_for_each(conf, &dpp->configurator,
+                        struct dpp_configurator, list) {
+               if (conf->id == id)
+                       return conf;
+       }
+       return NULL;
+}
+
+
+int dpp_set_configurator(struct dpp_authentication *auth, const char *cmd)
+{
+       const char *pos;
+       char *tmp = NULL;
+       int ret = -1;
+
+       if (!cmd || auth->configurator_set)
+               return 0;
+       auth->configurator_set = 1;
+
+       if (cmd[0] != ' ') {
+               size_t len;
+
+               len = os_strlen(cmd);
+               tmp = os_malloc(len + 2);
+               if (!tmp)
+                       goto fail;
+               tmp[0] = ' ';
+               os_memcpy(tmp + 1, cmd, len + 1);
+               cmd = tmp;
+       }
+
+       wpa_printf(MSG_DEBUG, "DPP: Set configurator parameters: %s", cmd);
+
+       pos = os_strstr(cmd, " configurator=");
+       if (pos) {
+               pos += 14;
+               auth->conf = dpp_configurator_get_id(auth->global, atoi(pos));
+               if (!auth->conf) {
+                       wpa_printf(MSG_INFO,
+                                  "DPP: Could not find the specified configurator");
+                       goto fail;
+               }
+       }
+
+       pos = os_strstr(cmd, " conn_status=");
+       if (pos) {
+               pos += 13;
+               auth->send_conn_status = atoi(pos);
+       }
+
+       pos = os_strstr(cmd, " akm_use_selector=");
+       if (pos) {
+               pos += 18;
+               auth->akm_use_selector = atoi(pos);
+       }
+
+       if (dpp_configuration_parse(auth, cmd) < 0) {
+               wpa_msg(auth->msg_ctx, MSG_INFO,
+                       "DPP: Failed to set configurator parameters");
+               goto fail;
+       }
+       ret = 0;
+fail:
+       os_free(tmp);
+       return ret;
+}
+
+
+static void dpp_free_asymmetric_key(struct dpp_asymmetric_key *key)
+{
+       while (key) {
+               struct dpp_asymmetric_key *next = key->next;
+
+               EVP_PKEY_free(key->csign);
+               str_clear_free(key->config_template);
+               str_clear_free(key->connector_template);
+               os_free(key);
+               key = next;
+       }
+}
+
+
+void dpp_auth_deinit(struct dpp_authentication *auth)
+{
+       unsigned int i;
+
+       if (!auth)
+               return;
+       dpp_configuration_free(auth->conf_ap);
+       dpp_configuration_free(auth->conf2_ap);
+       dpp_configuration_free(auth->conf_sta);
+       dpp_configuration_free(auth->conf2_sta);
+       EVP_PKEY_free(auth->own_protocol_key);
+       EVP_PKEY_free(auth->peer_protocol_key);
+       wpabuf_free(auth->req_msg);
+       wpabuf_free(auth->resp_msg);
+       wpabuf_free(auth->conf_req);
+       for (i = 0; i < auth->num_conf_obj; i++) {
+               struct dpp_config_obj *conf = &auth->conf_obj[i];
+
+               os_free(conf->connector);
+               wpabuf_free(conf->c_sign_key);
+       }
+       dpp_free_asymmetric_key(auth->conf_key_pkg);
+       wpabuf_free(auth->net_access_key);
+       dpp_bootstrap_info_free(auth->tmp_own_bi);
+#ifdef CONFIG_TESTING_OPTIONS
+       os_free(auth->config_obj_override);
+       os_free(auth->discovery_override);
+       os_free(auth->groups_override);
+#endif /* CONFIG_TESTING_OPTIONS */
+       bin_clear_free(auth, sizeof(*auth));
+}
+
+
+static struct wpabuf *
+dpp_build_conf_start(struct dpp_authentication *auth,
+                    struct dpp_configuration *conf, size_t tailroom)
+{
+       struct wpabuf *buf;
+
+#ifdef CONFIG_TESTING_OPTIONS
+       if (auth->discovery_override)
+               tailroom += os_strlen(auth->discovery_override);
+#endif /* CONFIG_TESTING_OPTIONS */
+
+       buf = wpabuf_alloc(200 + tailroom);
+       if (!buf)
+               return NULL;
+       json_start_object(buf, NULL);
+       json_add_string(buf, "wi-fi_tech", "infra");
+       json_value_sep(buf);
+#ifdef CONFIG_TESTING_OPTIONS
+       if (auth->discovery_override) {
+               wpa_printf(MSG_DEBUG, "DPP: TESTING - discovery override: '%s'",
+                          auth->discovery_override);
+               wpabuf_put_str(buf, "\"discovery\":");
+               wpabuf_put_str(buf, auth->discovery_override);
+               json_value_sep(buf);
+               return buf;
+       }
+#endif /* CONFIG_TESTING_OPTIONS */
+       json_start_object(buf, "discovery");
+       if (((!conf->ssid_charset || auth->peer_version < 2) &&
+            json_add_string_escape(buf, "ssid", conf->ssid,
+                                   conf->ssid_len) < 0) ||
+           ((conf->ssid_charset && auth->peer_version >= 2) &&
+            json_add_base64url(buf, "ssid64", conf->ssid,
+                               conf->ssid_len) < 0)) {
+               wpabuf_free(buf);
+               return NULL;
+       }
+       if (conf->ssid_charset > 0) {
+               json_value_sep(buf);
+               json_add_int(buf, "ssid_charset", conf->ssid_charset);
+       }
+       json_end_object(buf);
+       json_value_sep(buf);
+
+       return buf;
+}
+
+
+static int dpp_build_jwk(struct wpabuf *buf, const char *name, EVP_PKEY *key,
+                        const char *kid, const struct dpp_curve_params *curve)
+{
+       struct wpabuf *pub;
+       const u8 *pos;
+       int ret = -1;
+
+       pub = dpp_get_pubkey_point(key, 0);
+       if (!pub)
+               goto fail;
+
+       json_start_object(buf, name);
+       json_add_string(buf, "kty", "EC");
+       json_value_sep(buf);
+       json_add_string(buf, "crv", curve->jwk_crv);
+       json_value_sep(buf);
+       pos = wpabuf_head(pub);
+       if (json_add_base64url(buf, "x", pos, curve->prime_len) < 0)
+               goto fail;
+       json_value_sep(buf);
+       pos += curve->prime_len;
+       if (json_add_base64url(buf, "y", pos, curve->prime_len) < 0)
+               goto fail;
+       if (kid) {
+               json_value_sep(buf);
+               json_add_string(buf, "kid", kid);
+       }
+       json_end_object(buf);
+       ret = 0;
+fail:
+       wpabuf_free(pub);
+       return ret;
+}
+
+
+static void dpp_build_legacy_cred_params(struct wpabuf *buf,
+                                        struct dpp_configuration *conf)
+{
+       if (conf->passphrase && os_strlen(conf->passphrase) < 64) {
+               json_add_string_escape(buf, "pass", conf->passphrase,
+                                      os_strlen(conf->passphrase));
+       } else if (conf->psk_set) {
+               char psk[2 * sizeof(conf->psk) + 1];
+
+               wpa_snprintf_hex(psk, sizeof(psk),
+                                conf->psk, sizeof(conf->psk));
+               json_add_string(buf, "psk_hex", psk);
+               forced_memzero(psk, sizeof(psk));
+       }
+}
+
+
+static const char * dpp_netrole_str(enum dpp_netrole netrole)
+{
+       switch (netrole) {
+       case DPP_NETROLE_STA:
+               return "sta";
+       case DPP_NETROLE_AP:
+               return "ap";
+       case DPP_NETROLE_CONFIGURATOR:
+               return "configurator";
+       default:
+               return "??";
+       }
+}
+
+
+static struct wpabuf *
+dpp_build_conf_obj_dpp(struct dpp_authentication *auth,
+                      struct dpp_configuration *conf)
+{
+       struct wpabuf *buf = NULL;
+       char *signed1 = NULL, *signed2 = NULL, *signed3 = NULL;
+       size_t tailroom;
+       const struct dpp_curve_params *curve;
+       struct wpabuf *jws_prot_hdr;
+       size_t signed1_len, signed2_len, signed3_len;
+       struct wpabuf *dppcon = NULL;
+       unsigned char *signature = NULL;
+       const unsigned char *p;
+       size_t signature_len;
+       EVP_MD_CTX *md_ctx = NULL;
+       ECDSA_SIG *sig = NULL;
+       char *dot = ".";
+       const EVP_MD *sign_md;
+       const BIGNUM *r, *s;
+       size_t extra_len = 1000;
+       int incl_legacy;
+       enum dpp_akm akm;
+       const char *akm_str;
+
+       if (!auth->conf) {
+               wpa_printf(MSG_INFO,
+                          "DPP: No configurator specified - cannot generate DPP config object");
+               goto fail;
+       }
+       curve = auth->conf->curve;
+       if (curve->hash_len == SHA256_MAC_LEN) {
+               sign_md = EVP_sha256();
+       } else if (curve->hash_len == SHA384_MAC_LEN) {
+               sign_md = EVP_sha384();
+       } else if (curve->hash_len == SHA512_MAC_LEN) {
+               sign_md = EVP_sha512();
+       } else {
+               wpa_printf(MSG_DEBUG, "DPP: Unknown signature algorithm");
+               goto fail;
+       }
+
+       akm = conf->akm;
+       if (dpp_akm_ver2(akm) && auth->peer_version < 2) {
+               wpa_printf(MSG_DEBUG,
+                          "DPP: Convert DPP+legacy credential to DPP-only for peer that does not support version 2");
+               akm = DPP_AKM_DPP;
+       }
+
+#ifdef CONFIG_TESTING_OPTIONS
+       if (auth->groups_override)
+               extra_len += os_strlen(auth->groups_override);
+#endif /* CONFIG_TESTING_OPTIONS */
+
+       if (conf->group_id)
+               extra_len += os_strlen(conf->group_id);
+
+       /* Connector (JSON dppCon object) */
+       dppcon = wpabuf_alloc(extra_len + 2 * auth->curve->prime_len * 4 / 3);
+       if (!dppcon)
+               goto fail;
+#ifdef CONFIG_TESTING_OPTIONS
+       if (auth->groups_override) {
+               wpabuf_put_u8(dppcon, '{');
+               if (auth->groups_override) {
+                       wpa_printf(MSG_DEBUG,
+                                  "DPP: TESTING - groups override: '%s'",
+                                  auth->groups_override);
                        wpabuf_put_str(dppcon, "\"groups\":");
                        wpabuf_put_str(dppcon, auth->groups_override);
-                       wpabuf_put_u8(dppcon, ',');
+                       json_value_sep(dppcon);
                }
                goto skip_groups;
        }
 #endif /* CONFIG_TESTING_OPTIONS */
-       wpabuf_put_str(dppcon, "{\"groups\":[{\"groupId\":\"*\",");
-       wpabuf_printf(dppcon, "\"netRole\":\"%s\"}],", ap ? "ap" : "sta");
+       json_start_object(dppcon, NULL);
+       json_start_array(dppcon, "groups");
+       json_start_object(dppcon, NULL);
+       json_add_string(dppcon, "groupId",
+                       conf->group_id ? conf->group_id : "*");
+       json_value_sep(dppcon);
+       json_add_string(dppcon, "netRole", dpp_netrole_str(conf->netrole));
+       json_end_object(dppcon);
+       json_end_array(dppcon);
+       json_value_sep(dppcon);
 #ifdef CONFIG_TESTING_OPTIONS
 skip_groups:
 #endif /* CONFIG_TESTING_OPTIONS */
@@ -4164,30 +5019,40 @@ skip_groups:
        }
        if (conf->netaccesskey_expiry) {
                struct os_tm tm;
+               char expiry[30];
 
                if (os_gmtime(conf->netaccesskey_expiry, &tm) < 0) {
                        wpa_printf(MSG_DEBUG,
                                   "DPP: Failed to generate expiry string");
                        goto fail;
                }
-               wpabuf_printf(dppcon,
-                             ",\"expiry\":\"%04u-%02u-%02uT%02u:%02u:%02uZ\"",
-                             tm.year, tm.month, tm.day,
-                             tm.hour, tm.min, tm.sec);
-       }
-       wpabuf_put_u8(dppcon, '}');
+               os_snprintf(expiry, sizeof(expiry),
+                           "%04u-%02u-%02uT%02u:%02u:%02uZ",
+                           tm.year, tm.month, tm.day,
+                           tm.hour, tm.min, tm.sec);
+               json_value_sep(dppcon);
+               json_add_string(dppcon, "expiry", expiry);
+       }
+       json_end_object(dppcon);
        wpa_printf(MSG_DEBUG, "DPP: dppCon: %s",
                   (const char *) wpabuf_head(dppcon));
 
-       os_snprintf(jws_prot_hdr, sizeof(jws_prot_hdr),
-                   "{\"typ\":\"dppCon\",\"kid\":\"%s\",\"alg\":\"%s\"}",
-                   auth->conf->kid, curve->jws_alg);
-       signed1 = (char *) base64_url_encode((unsigned char *) jws_prot_hdr,
-                                            os_strlen(jws_prot_hdr),
-                                            &signed1_len, 0);
-       signed2 = (char *) base64_url_encode(wpabuf_head(dppcon),
-                                            wpabuf_len(dppcon),
-                                            &signed2_len, 0);
+       jws_prot_hdr = wpabuf_alloc(100);
+       if (!jws_prot_hdr)
+               goto fail;
+       json_start_object(jws_prot_hdr, NULL);
+       json_add_string(jws_prot_hdr, "typ", "dppCon");
+       json_value_sep(jws_prot_hdr);
+       json_add_string(jws_prot_hdr, "kid", auth->conf->kid);
+       json_value_sep(jws_prot_hdr);
+       json_add_string(jws_prot_hdr, "alg", curve->jws_alg);
+       json_end_object(jws_prot_hdr);
+       signed1 = base64_url_encode(wpabuf_head(jws_prot_hdr),
+                                   wpabuf_len(jws_prot_hdr),
+                                   &signed1_len);
+       wpabuf_free(jws_prot_hdr);
+       signed2 = base64_url_encode(wpabuf_head(dppcon), wpabuf_len(dppcon),
+                                   &signed2_len);
        if (!signed1 || !signed2)
                goto fail;
 
@@ -4237,32 +5102,47 @@ skip_groups:
        signature_len = 2 * curve->prime_len;
        wpa_hexdump(MSG_DEBUG, "DPP: signedConnector ECDSA signature (raw r,s)",
                    signature, signature_len);
-       signed3 = (char *) base64_url_encode(signature, signature_len,
-                                            &signed3_len, 0);
+       signed3 = base64_url_encode(signature, signature_len, &signed3_len);
        if (!signed3)
                goto fail;
 
+       incl_legacy = dpp_akm_psk(akm) || dpp_akm_sae(akm);
        tailroom = 1000;
        tailroom += 2 * curve->prime_len * 4 / 3 + os_strlen(auth->conf->kid);
        tailroom += signed1_len + signed2_len + signed3_len;
+       if (incl_legacy)
+               tailroom += 1000;
        buf = dpp_build_conf_start(auth, conf, tailroom);
        if (!buf)
                goto fail;
 
-       wpabuf_put_str(buf, "\"cred\":{\"akm\":\"dpp\",\"signedConnector\":\"");
+       if (auth->akm_use_selector && dpp_akm_ver2(akm))
+               akm_str = dpp_akm_selector_str(akm);
+       else
+               akm_str = dpp_akm_str(akm);
+       json_start_object(buf, "cred");
+       json_add_string(buf, "akm", akm_str);
+       json_value_sep(buf);
+       if (incl_legacy) {
+               dpp_build_legacy_cred_params(buf, conf);
+               json_value_sep(buf);
+       }
+       wpabuf_put_str(buf, "\"signedConnector\":\"");
        wpabuf_put_str(buf, signed1);
        wpabuf_put_u8(buf, '.');
        wpabuf_put_str(buf, signed2);
        wpabuf_put_u8(buf, '.');
        wpabuf_put_str(buf, signed3);
-       wpabuf_put_str(buf, "\",");
+       wpabuf_put_str(buf, "\"");
+       json_value_sep(buf);
        if (dpp_build_jwk(buf, "csign", auth->conf->csign, auth->conf->kid,
                          curve) < 0) {
                wpa_printf(MSG_DEBUG, "DPP: Failed to build csign JWK");
                goto fail;
        }
 
-       wpabuf_put_str(buf, "}}");
+       json_end_object(buf);
+       json_end_object(buf);
 
        wpa_hexdump_ascii_key(MSG_DEBUG, "DPP: Configuration Object",
                              wpabuf_head(buf), wpabuf_len(buf));
@@ -4285,39 +5165,26 @@ fail:
 
 
 static struct wpabuf *
-dpp_build_conf_obj_legacy(struct dpp_authentication *auth, int ap,
+dpp_build_conf_obj_legacy(struct dpp_authentication *auth,
                          struct dpp_configuration *conf)
 {
        struct wpabuf *buf;
+       const char *akm_str;
 
        buf = dpp_build_conf_start(auth, conf, 1000);
        if (!buf)
                return NULL;
 
-       wpabuf_printf(buf, "\"cred\":{\"akm\":\"%s\",", dpp_akm_str(conf->akm));
-       if (conf->passphrase) {
-               char pass[63 * 6 + 1];
-
-               if (os_strlen(conf->passphrase) > 63) {
-                       wpabuf_free(buf);
-                       return NULL;
-               }
-
-               json_escape_string(pass, sizeof(pass), conf->passphrase,
-                                  os_strlen(conf->passphrase));
-               wpabuf_put_str(buf, "\"pass\":\"");
-               wpabuf_put_str(buf, pass);
-               wpabuf_put_str(buf, "\"");
-       } else {
-               char psk[2 * sizeof(conf->psk) + 1];
-
-               wpa_snprintf_hex(psk, sizeof(psk),
-                                conf->psk, sizeof(conf->psk));
-               wpabuf_put_str(buf, "\"psk_hex\":\"");
-               wpabuf_put_str(buf, psk);
-               wpabuf_put_str(buf, "\"");
-       }
-       wpabuf_put_str(buf, "}}");
+       if (auth->akm_use_selector && dpp_akm_ver2(conf->akm))
+               akm_str = dpp_akm_selector_str(conf->akm);
+       else
+               akm_str = dpp_akm_str(conf->akm);
+       json_start_object(buf, "cred");
+       json_add_string(buf, "akm", akm_str);
+       json_value_sep(buf);
+       dpp_build_legacy_cred_params(buf, conf);
+       json_end_object(buf);
+       json_end_object(buf);
 
        wpa_hexdump_ascii_key(MSG_DEBUG, "DPP: Configuration Object (legacy)",
                              wpabuf_head(buf), wpabuf_len(buf));
@@ -4327,37 +5194,533 @@ dpp_build_conf_obj_legacy(struct dpp_authentication *auth, int ap,
 
 
 static struct wpabuf *
-dpp_build_conf_obj(struct dpp_authentication *auth, int ap)
+dpp_build_conf_obj(struct dpp_authentication *auth, enum dpp_netrole netrole,
+                  int idx)
 {
-       struct dpp_configuration *conf;
+       struct dpp_configuration *conf = NULL;
 
 #ifdef CONFIG_TESTING_OPTIONS
        if (auth->config_obj_override) {
+               if (idx != 0)
+                       return NULL;
                wpa_printf(MSG_DEBUG, "DPP: Testing - Config Object override");
                return wpabuf_alloc_copy(auth->config_obj_override,
                                         os_strlen(auth->config_obj_override));
        }
 #endif /* CONFIG_TESTING_OPTIONS */
 
-       conf = ap ? auth->conf_ap : auth->conf_sta;
+       if (idx == 0) {
+               if (netrole == DPP_NETROLE_STA)
+                       conf = auth->conf_sta;
+               else if (netrole == DPP_NETROLE_AP)
+                       conf = auth->conf_ap;
+       } else if (idx == 1) {
+               if (netrole == DPP_NETROLE_STA)
+                       conf = auth->conf2_sta;
+               else if (netrole == DPP_NETROLE_AP)
+                       conf = auth->conf2_ap;
+       }
        if (!conf) {
+               if (idx == 0)
+                       wpa_printf(MSG_DEBUG,
+                                  "DPP: No configuration available for Enrollee(%s) - reject configuration request",
+                                  dpp_netrole_str(netrole));
+               return NULL;
+       }
+
+       if (dpp_akm_dpp(conf->akm))
+               return dpp_build_conf_obj_dpp(auth, conf);
+       return dpp_build_conf_obj_legacy(auth, conf);
+}
+
+
+#ifdef CONFIG_DPP2
+
+static struct wpabuf * dpp_build_conf_params(void)
+{
+       struct wpabuf *buf;
+       size_t len;
+       /* TODO: proper template values */
+       const char *conf_template = "{\"wi-fi_tech\":\"infra\",\"discovery\":{\"ssid\":\"test\"},\"cred\":{\"akm\":\"dpp\"}}";
+       const char *connector_template = NULL;
+
+       len = 100 + os_strlen(conf_template);
+       if (connector_template)
+               len += os_strlen(connector_template);
+       buf = wpabuf_alloc(len);
+       if (!buf)
+               return NULL;
+
+       /*
+        * DPPConfigurationParameters ::= SEQUENCE {
+        *    configurationTemplate     UTF8String,
+        *    connectorTemplate         UTF8String OPTIONAL}
+        */
+
+       asn1_put_utf8string(buf, conf_template);
+       if (connector_template)
+               asn1_put_utf8string(buf, connector_template);
+       return asn1_encaps(buf, ASN1_CLASS_UNIVERSAL, ASN1_TAG_SEQUENCE);
+}
+
+
+static struct wpabuf * dpp_build_attribute(void)
+{
+       struct wpabuf *conf_params, *attr;
+
+       /*
+        * aa-DPPConfigurationParameters ATTRIBUTE ::=
+        * { TYPE DPPConfigurationParameters IDENTIFIED BY id-DPPConfigParams }
+        *
+        * Attribute ::= SEQUENCE {
+        *    type OBJECT IDENTIFIER,
+        *    values SET SIZE(1..MAX) OF Type
+        */
+       conf_params = dpp_build_conf_params();
+       conf_params = asn1_encaps(conf_params, ASN1_CLASS_UNIVERSAL,
+                                 ASN1_TAG_SET);
+       if (!conf_params)
+               return NULL;
+
+       attr = wpabuf_alloc(100 + wpabuf_len(conf_params));
+       if (!attr) {
+               wpabuf_clear_free(conf_params);
+               return NULL;
+       }
+
+       asn1_put_oid(attr, &asn1_dpp_config_params_oid);
+       wpabuf_put_buf(attr, conf_params);
+       wpabuf_clear_free(conf_params);
+
+       return asn1_encaps(attr, ASN1_CLASS_UNIVERSAL, ASN1_TAG_SEQUENCE);
+}
+
+
+static struct wpabuf * dpp_build_key_alg(const struct dpp_curve_params *curve)
+{
+       const struct asn1_oid *oid;
+       struct wpabuf *params, *res;
+
+       switch (curve->ike_group) {
+       case 19:
+               oid = &asn1_prime256v1_oid;
+               break;
+       case 20:
+               oid = &asn1_secp384r1_oid;
+               break;
+       case 21:
+               oid = &asn1_secp521r1_oid;
+               break;
+       case 28:
+               oid = &asn1_brainpoolP256r1_oid;
+               break;
+       case 29:
+               oid = &asn1_brainpoolP384r1_oid;
+               break;
+       case 30:
+               oid = &asn1_brainpoolP512r1_oid;
+               break;
+       default:
+               return NULL;
+       }
+
+       params = wpabuf_alloc(20);
+       if (!params)
+               return NULL;
+       asn1_put_oid(params, oid); /* namedCurve */
+
+       res = asn1_build_alg_id(&asn1_ec_public_key_oid, params);
+       wpabuf_free(params);
+       return res;
+}
+
+
+static struct wpabuf * dpp_build_key_pkg(struct dpp_authentication *auth)
+{
+       struct wpabuf *key = NULL, *attr, *alg, *priv_key = NULL;
+       EC_KEY *eckey;
+       unsigned char *der = NULL;
+       int der_len;
+
+       eckey = EVP_PKEY_get0_EC_KEY(auth->conf->csign);
+       if (!eckey)
+               return NULL;
+
+       EC_KEY_set_enc_flags(eckey, EC_PKEY_NO_PUBKEY);
+       der_len = i2d_ECPrivateKey(eckey, &der);
+       if (der_len > 0)
+               priv_key = wpabuf_alloc_copy(der, der_len);
+       OPENSSL_free(der);
+
+       alg = dpp_build_key_alg(auth->conf->curve);
+
+       /* Attributes ::= SET OF Attribute { { OneAsymmetricKeyAttributes } } */
+       attr = dpp_build_attribute();
+       attr = asn1_encaps(attr, ASN1_CLASS_UNIVERSAL, ASN1_TAG_SET);
+       if (!priv_key || !attr || !alg)
+               goto fail;
+
+       /*
+        * OneAsymmetricKey ::= SEQUENCE {
+        *    version                   Version,
+        *    privateKeyAlgorithm       PrivateKeyAlgorithmIdentifier,
+        *    privateKey                PrivateKey,
+        *    attributes                [0] Attributes OPTIONAL,
+        *    ...,
+        *    [[2: publicKey            [1] BIT STRING OPTIONAL ]],
+        *    ...
+        * }
+        */
+
+       key = wpabuf_alloc(100 + wpabuf_len(alg) + wpabuf_len(priv_key) +
+                          wpabuf_len(attr));
+       if (!key)
+               goto fail;
+
+       asn1_put_integer(key, 1); /* version = v2(1) */
+
+       /* PrivateKeyAlgorithmIdentifier */
+       wpabuf_put_buf(key, alg);
+
+       /* PrivateKey ::= OCTET STRING */
+       asn1_put_octet_string(key, priv_key);
+
+       /* [0] Attributes OPTIONAL */
+       asn1_put_hdr(key, ASN1_CLASS_CONTEXT_SPECIFIC, 1, 0, wpabuf_len(attr));
+       wpabuf_put_buf(key, attr);
+
+fail:
+       wpabuf_clear_free(attr);
+       wpabuf_clear_free(priv_key);
+       wpabuf_free(alg);
+
+       /*
+        * DPPAsymmetricKeyPackage ::= AsymmetricKeyPackage
+        *
+        * AsymmetricKeyPackage ::= SEQUENCE SIZE (1..MAX) OF OneAsymmetricKey
+        *
+        * OneAsymmetricKey ::= SEQUENCE
+        */
+       return asn1_encaps(asn1_encaps(key,
+                                      ASN1_CLASS_UNIVERSAL, ASN1_TAG_SEQUENCE),
+                          ASN1_CLASS_UNIVERSAL, ASN1_TAG_SEQUENCE);
+}
+
+
+static struct wpabuf * dpp_build_pbkdf2_alg_id(const struct wpabuf *salt,
+                                              size_t hash_len)
+{
+       struct wpabuf *params = NULL, *buf = NULL, *prf = NULL;
+       const struct asn1_oid *oid;
+
+       /*
+        * PBKDF2-params ::= SEQUENCE {
+        *    salt CHOICE {
+        *       specified OCTET STRING,
+        *       otherSource AlgorithmIdentifier}
+        *    iterationCount INTEGER (1..MAX),
+        *    keyLength INTEGER (1..MAX),
+        *    prf AlgorithmIdentifier}
+        *
+        * salt is an 64 octet value, iterationCount is 1000, keyLength is based
+        * on Configurator signing key length, prf is
+        * id-hmacWithSHA{256,384,512} based on Configurator signing key.
+        */
+
+       if (hash_len == 32)
+               oid = &asn1_pbkdf2_hmac_sha256_oid;
+       else if (hash_len == 48)
+               oid = &asn1_pbkdf2_hmac_sha384_oid;
+       else if (hash_len == 64)
+               oid = &asn1_pbkdf2_hmac_sha512_oid;
+       else
+               goto fail;
+       prf = asn1_build_alg_id(oid, NULL);
+       if (!prf)
+               goto fail;
+       params = wpabuf_alloc(100 + wpabuf_len(salt) + wpabuf_len(prf));
+       if (!params)
+               goto fail;
+       asn1_put_octet_string(params, salt); /* salt.specified */
+       asn1_put_integer(params, 1000); /* iterationCount */
+       asn1_put_integer(params, hash_len); /* keyLength */
+       wpabuf_put_buf(params, prf);
+       params = asn1_encaps(params, ASN1_CLASS_UNIVERSAL, ASN1_TAG_SEQUENCE);
+       if (!params)
+               goto fail;
+       buf = asn1_build_alg_id(&asn1_pbkdf2_oid, params);
+fail:
+       wpabuf_free(params);
+       wpabuf_free(prf);
+       return buf;
+}
+
+
+static struct wpabuf *
+dpp_build_pw_recipient_info(struct dpp_authentication *auth, size_t hash_len,
+                           const struct wpabuf *cont_enc_key)
+{
+       struct wpabuf *pwri = NULL, *enc_key = NULL, *key_der_alg = NULL,
+               *key_enc_alg = NULL, *salt;
+       u8 kek[DPP_MAX_HASH_LEN];
+       const u8 *key;
+       size_t key_len;
+
+       salt = wpabuf_alloc(64);
+       if (!salt || os_get_random(wpabuf_put(salt, 64), 64) < 0)
+               goto fail;
+       wpa_hexdump_buf(MSG_DEBUG, "DPP: PBKDF2 salt", salt);
+
+       /* TODO: For initial testing, use ke as the key. Replace this with a
+        * new key once that has been defined. */
+       key = auth->ke;
+       key_len = auth->curve->hash_len;
+       wpa_hexdump_key(MSG_DEBUG, "DPP: PBKDF2 key", key, key_len);
+
+       if (dpp_pbkdf2(hash_len, key, key_len, wpabuf_head(salt), 64, 1000,
+                      kek, hash_len)) {
+               wpa_printf(MSG_DEBUG, "DPP: PBKDF2 failed");
+               goto fail;
+       }
+       wpa_hexdump_key(MSG_DEBUG, "DPP: key-encryption key from PBKDF2",
+                       kek, hash_len);
+
+       enc_key = wpabuf_alloc(hash_len + AES_BLOCK_SIZE);
+       if (!enc_key ||
+           aes_siv_encrypt(kek, hash_len, wpabuf_head(cont_enc_key),
+                           wpabuf_len(cont_enc_key), 0, NULL, NULL,
+                           wpabuf_put(enc_key, hash_len + AES_BLOCK_SIZE)) < 0)
+               goto fail;
+       wpa_hexdump_buf(MSG_DEBUG, "DPP: encryptedKey", enc_key);
+
+       /*
+        * PasswordRecipientInfo ::= SEQUENCE {
+        *    version                   CMSVersion,
+        *    keyDerivationAlgorithm [0] KeyDerivationAlgorithmIdentifier OPTIONAL,
+        *    keyEncryptionAlgorithm    KeyEncryptionAlgorithmIdentifier,
+        *    encryptedKey              EncryptedKey}
+        *
+        * version is 0, keyDerivationAlgorithm is id-PKBDF2, and the
+        * parameters contains PBKDF2-params SEQUENCE.
+        */
+
+       key_der_alg = dpp_build_pbkdf2_alg_id(salt, hash_len);
+       key_enc_alg = asn1_build_alg_id(&asn1_aes_siv_cmac_aead_256_oid, NULL);
+       if (!key_der_alg || !key_enc_alg)
+               goto fail;
+       pwri = wpabuf_alloc(100 + wpabuf_len(key_der_alg) +
+                           wpabuf_len(key_enc_alg) + wpabuf_len(enc_key));
+       if (!pwri)
+               goto fail;
+
+       /* version = 0 */
+       asn1_put_integer(pwri, 0);
+
+       /* [0] KeyDerivationAlgorithmIdentifier */
+       asn1_put_hdr(pwri, ASN1_CLASS_CONTEXT_SPECIFIC, 1, 0,
+                    wpabuf_len(key_der_alg));
+       wpabuf_put_buf(pwri, key_der_alg);
+
+       /* KeyEncryptionAlgorithmIdentifier */
+       wpabuf_put_buf(pwri, key_enc_alg);
+
+       /* EncryptedKey ::= OCTET STRING */
+       asn1_put_octet_string(pwri, enc_key);
+
+fail:
+       wpabuf_clear_free(key_der_alg);
+       wpabuf_free(key_enc_alg);
+       wpabuf_free(enc_key);
+       wpabuf_free(salt);
+       forced_memzero(kek, sizeof(kek));
+       return asn1_encaps(pwri, ASN1_CLASS_UNIVERSAL, ASN1_TAG_SEQUENCE);
+}
+
+
+static struct wpabuf *
+dpp_build_recipient_info(struct dpp_authentication *auth, size_t hash_len,
+                        const struct wpabuf *cont_enc_key)
+{
+       struct wpabuf *pwri;
+
+       /*
+        * RecipientInfo ::= CHOICE {
+        *    ktri              KeyTransRecipientInfo,
+        *    kari      [1]     KeyAgreeRecipientInfo,
+        *    kekri     [2]     KEKRecipientInfo,
+        *    pwri      [3]     PasswordRecipientInfo,
+        *    ori       [4]     OtherRecipientInfo}
+        *
+        * Shall always use the pwri CHOICE.
+        */
+
+       pwri = dpp_build_pw_recipient_info(auth, hash_len, cont_enc_key);
+       return asn1_encaps(pwri, ASN1_CLASS_CONTEXT_SPECIFIC, 3);
+}
+
+
+static struct wpabuf *
+dpp_build_enc_cont_info(struct dpp_authentication *auth, size_t hash_len,
+                       const struct wpabuf *cont_enc_key)
+{
+       struct wpabuf *key_pkg, *enc_cont_info = NULL, *enc_cont = NULL,
+               *enc_alg;
+       const struct asn1_oid *oid;
+       size_t enc_cont_len;
+
+       /*
+        * EncryptedContentInfo ::= SEQUENCE {
+        *    contentType                       ContentType,
+        *    contentEncryptionAlgorithm  ContentEncryptionAlgorithmIdentifier,
+        *    encryptedContent  [0] IMPLICIT    EncryptedContent OPTIONAL}
+        */
+
+       if (hash_len == 32)
+               oid = &asn1_aes_siv_cmac_aead_256_oid;
+       else if (hash_len == 48)
+               oid = &asn1_aes_siv_cmac_aead_384_oid;
+       else if (hash_len == 64)
+               oid = &asn1_aes_siv_cmac_aead_512_oid;
+       else
+               return NULL;
+
+       key_pkg = dpp_build_key_pkg(auth);
+       enc_alg = asn1_build_alg_id(oid, NULL);
+       if (!key_pkg || !enc_alg)
+               goto fail;
+
+       wpa_hexdump_buf_key(MSG_MSGDUMP, "DPP: DPPAsymmetricKeyPackage",
+                           key_pkg);
+
+       enc_cont_len = wpabuf_len(key_pkg) + AES_BLOCK_SIZE;
+       enc_cont = wpabuf_alloc(enc_cont_len);
+       if (!enc_cont ||
+           aes_siv_encrypt(wpabuf_head(cont_enc_key), wpabuf_len(cont_enc_key),
+                           wpabuf_head(key_pkg), wpabuf_len(key_pkg),
+                           0, NULL, NULL,
+                           wpabuf_put(enc_cont, enc_cont_len)) < 0)
+               goto fail;
+
+       enc_cont_info = wpabuf_alloc(100 + wpabuf_len(enc_alg) +
+                                    wpabuf_len(enc_cont));
+       if (!enc_cont_info)
+               goto fail;
+
+       /* ContentType ::= OBJECT IDENTIFIER */
+       asn1_put_oid(enc_cont_info, &asn1_dpp_asymmetric_key_package_oid);
+
+       /* ContentEncryptionAlgorithmIdentifier ::= AlgorithmIdentifier */
+       wpabuf_put_buf(enc_cont_info, enc_alg);
+
+       /* encryptedContent [0] IMPLICIT EncryptedContent OPTIONAL
+        * EncryptedContent ::= OCTET STRING */
+       asn1_put_hdr(enc_cont_info, ASN1_CLASS_CONTEXT_SPECIFIC, 0, 0,
+                    wpabuf_len(enc_cont));
+       wpabuf_put_buf(enc_cont_info, enc_cont);
+
+fail:
+       wpabuf_clear_free(key_pkg);
+       wpabuf_free(enc_cont);
+       wpabuf_free(enc_alg);
+       return enc_cont_info;
+}
+
+
+static struct wpabuf * dpp_gen_random(size_t len)
+{
+       struct wpabuf *key;
+
+       key = wpabuf_alloc(len);
+       if (!key || os_get_random(wpabuf_put(key, len), len) < 0) {
+               wpabuf_free(key);
+               key = NULL;
+       }
+       wpa_hexdump_buf_key(MSG_DEBUG, "DPP: content-encryption key", key);
+       return key;
+}
+
+
+static struct wpabuf * dpp_build_enveloped_data(struct dpp_authentication *auth)
+{
+       struct wpabuf *env = NULL;
+       struct wpabuf *recipient_info = NULL, *enc_cont_info = NULL;
+       struct wpabuf *cont_enc_key = NULL;
+       size_t hash_len;
+
+       if (!auth->conf) {
+               wpa_printf(MSG_DEBUG,
+                          "DPP: No Configurator instance selected for the session - cannot build DPPEnvelopedData");
+               return NULL;
+       }
+
+       if (!auth->provision_configurator) {
                wpa_printf(MSG_DEBUG,
-                          "DPP: No configuration available for Enrollee(%s) - reject configuration request",
-                          ap ? "ap" : "sta");
+                          "DPP: Configurator provisioning not allowed");
                return NULL;
        }
 
-       if (conf->akm == DPP_AKM_DPP)
-               return dpp_build_conf_obj_dpp(auth, ap, conf);
-       return dpp_build_conf_obj_legacy(auth, ap, conf);
+       wpa_printf(MSG_DEBUG, "DPP: Building DPPEnvelopedData");
+
+       hash_len = auth->conf->curve->hash_len;
+       cont_enc_key = dpp_gen_random(hash_len);
+       if (!cont_enc_key)
+               goto fail;
+       recipient_info = dpp_build_recipient_info(auth, hash_len, cont_enc_key);
+       enc_cont_info = dpp_build_enc_cont_info(auth, hash_len, cont_enc_key);
+       if (!recipient_info || !enc_cont_info)
+               goto fail;
+
+       env = wpabuf_alloc(wpabuf_len(recipient_info) +
+                          wpabuf_len(enc_cont_info) +
+                          100);
+       if (!env)
+               goto fail;
+
+       /*
+        * DPPEnvelopedData ::= EnvelopedData
+        *
+        * EnvelopedData ::= SEQUENCE {
+        *    version                   CMSVersion,
+        *    originatorInfo    [0]     IMPLICIT OriginatorInfo OPTIONAL,
+        *    recipientInfos            RecipientInfos,
+        *    encryptedContentInfo      EncryptedContentInfo,
+        *    unprotectedAttrs  [1] IMPLICIT    UnprotectedAttributes OPTIONAL}
+        *
+        * For DPP, version is 3, both originatorInfo and
+        * unprotectedAttrs are omitted, and recipientInfos contains a single
+        * RecipientInfo.
+        */
+
+       /* EnvelopedData.version = 3 */
+       asn1_put_integer(env, 3);
+
+       /* RecipientInfos ::= SET SIZE (1..MAX) OF RecipientInfo */
+       asn1_put_set(env, recipient_info);
+
+       /* EncryptedContentInfo ::= SEQUENCE */
+       asn1_put_sequence(env, enc_cont_info);
+
+       env = asn1_encaps(env, ASN1_CLASS_UNIVERSAL, ASN1_TAG_SEQUENCE);
+       wpa_hexdump_buf(MSG_MSGDUMP, "DPP: DPPEnvelopedData", env);
+out:
+       wpabuf_clear_free(cont_enc_key);
+       wpabuf_clear_free(recipient_info);
+       wpabuf_free(enc_cont_info);
+       return env;
+fail:
+       wpabuf_free(env);
+       env = NULL;
+       goto out;
 }
 
+#endif /* CONFIG_DPP2 */
+
 
 static struct wpabuf *
 dpp_build_conf_resp(struct dpp_authentication *auth, const u8 *e_nonce,
-                   u16 e_nonce_len, int ap)
+                   u16 e_nonce_len, enum dpp_netrole netrole)
 {
-       struct wpabuf *conf;
+       struct wpabuf *conf = NULL, *conf2 = NULL, *env_data = NULL;
        size_t clear_len, attr_len;
        struct wpabuf *clear = NULL, *msg = NULL;
        u8 *wrapped;
@@ -4365,17 +5728,34 @@ dpp_build_conf_resp(struct dpp_authentication *auth, const u8 *e_nonce,
        size_t len[1];
        enum dpp_status_error status;
 
-       conf = dpp_build_conf_obj(auth, ap);
-       if (conf) {
-               wpa_hexdump_ascii(MSG_DEBUG, "DPP: configurationObject JSON",
-                                 wpabuf_head(conf), wpabuf_len(conf));
+       if (netrole == DPP_NETROLE_CONFIGURATOR) {
+#ifdef CONFIG_DPP2
+               env_data = dpp_build_enveloped_data(auth);
+#endif /* CONFIG_DPP2 */
+       } else {
+               conf = dpp_build_conf_obj(auth, netrole, 0);
+               if (conf) {
+                       wpa_hexdump_ascii(MSG_DEBUG,
+                                         "DPP: configurationObject JSON",
+                                         wpabuf_head(conf), wpabuf_len(conf));
+                       conf2 = dpp_build_conf_obj(auth, netrole, 1);
+               }
        }
-       status = conf ? DPP_STATUS_OK : DPP_STATUS_CONFIGURE_FAILURE;
+       status = (conf || env_data) ? DPP_STATUS_OK :
+               DPP_STATUS_CONFIGURE_FAILURE;
+       auth->conf_resp_status = status;
 
-       /* { E-nonce, configurationObject}ke */
+       /* { E-nonce, configurationObject[, sendConnStatus]}ke */
        clear_len = 4 + e_nonce_len;
        if (conf)
                clear_len += 4 + wpabuf_len(conf);
+       if (conf2)
+               clear_len += 4 + wpabuf_len(conf2);
+       if (env_data)
+               clear_len += 4 + wpabuf_len(env_data);
+       if (auth->peer_version >= 2 && auth->send_conn_status &&
+           netrole == DPP_NETROLE_STA)
+               clear_len += 4;
        clear = wpabuf_alloc(clear_len);
        attr_len = 4 + 1 + 4 + clear_len + AES_BLOCK_SIZE;
 #ifdef CONFIG_TESTING_OPTIONS
@@ -4423,6 +5803,26 @@ skip_e_nonce:
                wpabuf_put_le16(clear, wpabuf_len(conf));
                wpabuf_put_buf(clear, conf);
        }
+       if (auth->peer_version >= 2 && conf2) {
+               wpabuf_put_le16(clear, DPP_ATTR_CONFIG_OBJ);
+               wpabuf_put_le16(clear, wpabuf_len(conf2));
+               wpabuf_put_buf(clear, conf2);
+       } else if (conf2) {
+               wpa_printf(MSG_DEBUG,
+                          "DPP: Second Config Object available, but peer does not support more than one");
+       }
+       if (env_data) {
+               wpabuf_put_le16(clear, DPP_ATTR_ENVELOPED_DATA);
+               wpabuf_put_le16(clear, wpabuf_len(env_data));
+               wpabuf_put_buf(clear, env_data);
+       }
+
+       if (auth->peer_version >= 2 && auth->send_conn_status &&
+           netrole == DPP_NETROLE_STA) {
+               wpa_printf(MSG_DEBUG, "DPP: sendConnStatus");
+               wpabuf_put_le16(clear, DPP_ATTR_SEND_CONN_STATUS);
+               wpabuf_put_le16(clear, 0);
+       }
 
 #ifdef CONFIG_TESTING_OPTIONS
 skip_config_obj:
@@ -4470,8 +5870,10 @@ skip_wrapped_data:
        wpa_hexdump_buf(MSG_DEBUG,
                        "DPP: Configuration Response attributes", msg);
 out:
-       wpabuf_free(conf);
-       wpabuf_free(clear);
+       wpabuf_clear_free(conf);
+       wpabuf_clear_free(conf2);
+       wpabuf_clear_free(env_data);
+       wpabuf_clear_free(clear);
 
        return msg;
 fail:
@@ -4491,7 +5893,7 @@ dpp_conf_req_rx(struct dpp_authentication *auth, const u8 *attr_start,
        size_t unwrapped_len = 0;
        struct wpabuf *resp = NULL;
        struct json_token *root = NULL, *token;
-       int ap;
+       enum dpp_netrole netrole;
 
 #ifdef CONFIG_TESTING_OPTIONS
        if (dpp_test == DPP_TEST_STOP_AT_CONF_REQ) {
@@ -4543,6 +5945,7 @@ dpp_conf_req_rx(struct dpp_authentication *auth, const u8 *attr_start,
                goto fail;
        }
        wpa_hexdump(MSG_DEBUG, "DPP: Enrollee Nonce", e_nonce, e_nonce_len);
+       os_memcpy(auth->e_nonce, e_nonce, e_nonce_len);
 
        config_attr = dpp_get_attr(unwrapped, unwrapped_len,
                                   DPP_ATTR_CONFIG_ATTR_OBJ,
@@ -4588,9 +5991,11 @@ dpp_conf_req_rx(struct dpp_authentication *auth, const u8 *attr_start,
        }
        wpa_printf(MSG_DEBUG, "DPP: netRole = '%s'", token->string);
        if (os_strcmp(token->string, "sta") == 0) {
-               ap = 0;
+               netrole = DPP_NETROLE_STA;
        } else if (os_strcmp(token->string, "ap") == 0) {
-               ap = 1;
+               netrole = DPP_NETROLE_AP;
+       } else if (os_strcmp(token->string, "configurator") == 0) {
+               netrole = DPP_NETROLE_CONFIGURATOR;
        } else {
                wpa_printf(MSG_DEBUG, "DPP: Unsupported netRole '%s'",
                           token->string);
@@ -4598,7 +6003,27 @@ dpp_conf_req_rx(struct dpp_authentication *auth, const u8 *attr_start,
                goto fail;
        }
 
-       resp = dpp_build_conf_resp(auth, e_nonce, e_nonce_len, ap);
+       token = json_get_member(root, "mudurl");
+       if (token && token->type == JSON_STRING)
+               wpa_printf(MSG_DEBUG, "DPP: mudurl = '%s'", token->string);
+
+       token = json_get_member(root, "bandSupport");
+       if (token && token->type == JSON_ARRAY) {
+               wpa_printf(MSG_DEBUG, "DPP: bandSupport");
+               token = token->child;
+               while (token) {
+                       if (token->type != JSON_NUMBER)
+                               wpa_printf(MSG_DEBUG,
+                                          "DPP: Invalid bandSupport array member type");
+                       else
+                               wpa_printf(MSG_DEBUG,
+                                          "DPP: Supported global operating class: %d",
+                                          token->number);
+                       token = token->sibling;
+               }
+       }
+
+       resp = dpp_build_conf_resp(auth, e_nonce, e_nonce_len, netrole);
 
 fail:
        json_free(root);
@@ -4687,7 +6112,7 @@ fail:
 }
 
 
-static int dpp_parse_cred_legacy(struct dpp_authentication *auth,
+static int dpp_parse_cred_legacy(struct dpp_config_obj *conf,
                                 struct json_token *cred)
 {
        struct json_token *pass, *psk_hex;
@@ -4704,29 +6129,28 @@ static int dpp_parse_cred_legacy(struct dpp_authentication *auth,
                                      pass->string, len);
                if (len < 8 || len > 63)
                        return -1;
-               os_strlcpy(auth->passphrase, pass->string,
-                          sizeof(auth->passphrase));
+               os_strlcpy(conf->passphrase, pass->string,
+                          sizeof(conf->passphrase));
        } else if (psk_hex && psk_hex->type == JSON_STRING) {
-               if (auth->akm == DPP_AKM_SAE) {
+               if (dpp_akm_sae(conf->akm) && !dpp_akm_psk(conf->akm)) {
                        wpa_printf(MSG_DEBUG,
                                   "DPP: Unexpected psk_hex with akm=sae");
                        return -1;
                }
                if (os_strlen(psk_hex->string) != PMK_LEN * 2 ||
-                   hexstr2bin(psk_hex->string, auth->psk, PMK_LEN) < 0) {
+                   hexstr2bin(psk_hex->string, conf->psk, PMK_LEN) < 0) {
                        wpa_printf(MSG_DEBUG, "DPP: Invalid psk_hex encoding");
                        return -1;
                }
                wpa_hexdump_key(MSG_DEBUG, "DPP: Legacy PSK",
-                               auth->psk, PMK_LEN);
-               auth->psk_set = 1;
+                               conf->psk, PMK_LEN);
+               conf->psk_set = 1;
        } else {
                wpa_printf(MSG_DEBUG, "DPP: No pass or psk_hex strings found");
                return -1;
        }
 
-       if ((auth->akm == DPP_AKM_SAE || auth->akm == DPP_AKM_PSK_SAE) &&
-           !auth->passphrase[0]) {
+       if (dpp_akm_sae(conf->akm) && !conf->passphrase[0]) {
                wpa_printf(MSG_DEBUG, "DPP: No pass for sae found");
                return -1;
        }
@@ -4750,7 +6174,7 @@ static EVP_PKEY * dpp_parse_jwk(struct json_token *jwk,
                goto fail;
        }
        if (os_strcmp(token->string, "EC") != 0) {
-               wpa_printf(MSG_DEBUG, "DPP: Unexpected JWK kty '%s",
+               wpa_printf(MSG_DEBUG, "DPP: Unexpected JWK kty '%s'",
                           token->string);
                goto fail;
        }
@@ -4803,6 +6227,7 @@ static EVP_PKEY * dpp_parse_jwk(struct json_token *jwk,
 
        pkey = dpp_set_pubkey_point_group(group, wpabuf_head(x), wpabuf_head(y),
                                          wpabuf_len(x));
+       EC_GROUP_free(group);
        *key_curve = curve;
 
 fail:
@@ -4893,6 +6318,7 @@ int dpp_key_expired(const char *timestamp, os_time_t *expiry)
 
 
 static int dpp_parse_connector(struct dpp_authentication *auth,
+                              struct dpp_config_obj *conf,
                               const unsigned char *payload,
                               u16 payload_len)
 {
@@ -5020,7 +6446,7 @@ static int dpp_check_pubkey_match(EVP_PKEY *pub, struct wpabuf *r_hash)
 }
 
 
-static void dpp_copy_csign(struct dpp_authentication *auth, EVP_PKEY *csign)
+static void dpp_copy_csign(struct dpp_config_obj *conf, EVP_PKEY *csign)
 {
        unsigned char *der = NULL;
        int der_len;
@@ -5028,13 +6454,14 @@ static void dpp_copy_csign(struct dpp_authentication *auth, EVP_PKEY *csign)
        der_len = i2d_PUBKEY(csign, &der);
        if (der_len <= 0)
                return;
-       wpabuf_free(auth->c_sign_key);
-       auth->c_sign_key = wpabuf_alloc_copy(der, der_len);
+       wpabuf_free(conf->c_sign_key);
+       conf->c_sign_key = wpabuf_alloc_copy(der, der_len);
        OPENSSL_free(der);
 }
 
 
-static void dpp_copy_netaccesskey(struct dpp_authentication *auth)
+static void dpp_copy_netaccesskey(struct dpp_authentication *auth,
+                                 struct dpp_config_obj *conf)
 {
        unsigned char *der = NULL;
        int der_len;
@@ -5102,8 +6529,7 @@ dpp_process_signed_connector(struct dpp_signed_connector_info *info,
                ret = DPP_STATUS_INVALID_CONNECTOR;
                goto fail;
        }
-       prot_hdr = base64_url_decode((const unsigned char *) pos,
-                                    end - pos, &prot_hdr_len);
+       prot_hdr = base64_url_decode(pos, end - pos, &prot_hdr_len);
        if (!prot_hdr) {
                wpa_printf(MSG_DEBUG,
                           "DPP: Failed to base64url decode signedConnector JWS Protected Header");
@@ -5135,8 +6561,7 @@ dpp_process_signed_connector(struct dpp_signed_connector_info *info,
                goto fail;
        }
        signed_end = end - 1;
-       info->payload = base64_url_decode((const unsigned char *) pos,
-                                         end - pos, &info->payload_len);
+       info->payload = base64_url_decode(pos, end - pos, &info->payload_len);
        if (!info->payload) {
                wpa_printf(MSG_DEBUG,
                           "DPP: Failed to base64url decode signedConnector JWS Payload");
@@ -5147,8 +6572,7 @@ dpp_process_signed_connector(struct dpp_signed_connector_info *info,
                          "DPP: signedConnector - JWS Payload",
                          info->payload, info->payload_len);
        pos = end + 1;
-       signature = base64_url_decode((const unsigned char *) pos,
-                                     os_strlen(pos), &signature_len);
+       signature = base64_url_decode(pos, os_strlen(pos), &signature_len);
        if (!signature) {
                wpa_printf(MSG_DEBUG,
                           "DPP: Failed to base64url decode signedConnector signature");
@@ -5228,6 +6652,7 @@ fail:
 
 
 static int dpp_parse_cred_dpp(struct dpp_authentication *auth,
+                             struct dpp_config_obj *conf,
                              struct json_token *cred)
 {
        struct dpp_signed_connector_info info;
@@ -5239,6 +6664,13 @@ static int dpp_parse_cred_dpp(struct dpp_authentication *auth,
 
        os_memset(&info, 0, sizeof(info));
 
+       if (dpp_akm_psk(conf->akm) || dpp_akm_sae(conf->akm)) {
+               wpa_printf(MSG_DEBUG,
+                          "DPP: Legacy credential included in Connector credential");
+               if (dpp_parse_cred_legacy(conf, cred) < 0)
+                       return -1;
+       }
+
        wpa_printf(MSG_DEBUG, "DPP: Connector credential");
 
        csign = json_get_member(cred, "csign");
@@ -5274,16 +6706,17 @@ static int dpp_parse_cred_dpp(struct dpp_authentication *auth,
                                         signed_connector) != DPP_STATUS_OK)
                goto fail;
 
-       if (dpp_parse_connector(auth, info.payload, info.payload_len) < 0) {
+       if (dpp_parse_connector(auth, conf,
+                               info.payload, info.payload_len) < 0) {
                wpa_printf(MSG_DEBUG, "DPP: Failed to parse connector");
                goto fail;
        }
 
-       os_free(auth->connector);
-       auth->connector = os_strdup(signed_connector);
+       os_free(conf->connector);
+       conf->connector = os_strdup(signed_connector);
 
-       dpp_copy_csign(auth, csign_pub);
-       dpp_copy_netaccesskey(auth);
+       dpp_copy_csign(conf, csign_pub);
+       dpp_copy_netaccesskey(auth, conf);
 
        ret = 0;
 fail:
@@ -5304,6 +6737,31 @@ const char * dpp_akm_str(enum dpp_akm akm)
                return "sae";
        case DPP_AKM_PSK_SAE:
                return "psk+sae";
+       case DPP_AKM_SAE_DPP:
+               return "dpp+sae";
+       case DPP_AKM_PSK_SAE_DPP:
+               return "dpp+psk+sae";
+       default:
+               return "??";
+       }
+}
+
+
+const char * dpp_akm_selector_str(enum dpp_akm akm)
+{
+       switch (akm) {
+       case DPP_AKM_DPP:
+               return "506F9A02";
+       case DPP_AKM_PSK:
+               return "000FAC02+000FAC06";
+       case DPP_AKM_SAE:
+               return "000FAC08";
+       case DPP_AKM_PSK_SAE:
+               return "000FAC02+000FAC06+000FAC08";
+       case DPP_AKM_SAE_DPP:
+               return "506F9A02+000FAC08";
+       case DPP_AKM_PSK_SAE_DPP:
+               return "506F9A02+000FAC08+000FAC02+000FAC06";
        default:
                return "??";
        }
@@ -5312,6 +6770,9 @@ const char * dpp_akm_str(enum dpp_akm akm)
 
 static enum dpp_akm dpp_akm_from_str(const char *akm)
 {
+       const char *pos;
+       int dpp = 0, psk = 0, sae = 0;
+
        if (os_strcmp(akm, "psk") == 0)
                return DPP_AKM_PSK;
        if (os_strcmp(akm, "sae") == 0)
@@ -5320,6 +6781,42 @@ static enum dpp_akm dpp_akm_from_str(const char *akm)
                return DPP_AKM_PSK_SAE;
        if (os_strcmp(akm, "dpp") == 0)
                return DPP_AKM_DPP;
+       if (os_strcmp(akm, "dpp+sae") == 0)
+               return DPP_AKM_SAE_DPP;
+       if (os_strcmp(akm, "dpp+psk+sae") == 0)
+               return DPP_AKM_PSK_SAE_DPP;
+
+       pos = akm;
+       while (*pos) {
+               if (os_strlen(pos) < 8)
+                       break;
+               if (os_strncasecmp(pos, "506F9A02", 8) == 0)
+                       dpp = 1;
+               else if (os_strncasecmp(pos, "000FAC02", 8) == 0)
+                       psk = 1;
+               else if (os_strncasecmp(pos, "000FAC06", 8) == 0)
+                       psk = 1;
+               else if (os_strncasecmp(pos, "000FAC08", 8) == 0)
+                       sae = 1;
+               pos += 8;
+               if (*pos != '+')
+                       break;
+               pos++;
+       }
+
+       if (dpp && psk && sae)
+               return DPP_AKM_PSK_SAE_DPP;
+       if (dpp && sae)
+               return DPP_AKM_SAE_DPP;
+       if (dpp)
+               return DPP_AKM_DPP;
+       if (psk && sae)
+               return DPP_AKM_PSK_SAE;
+       if (sae)
+               return DPP_AKM_SAE;
+       if (psk)
+               return DPP_AKM_PSK;
+
        return DPP_AKM_UNKNOWN;
 }
 
@@ -5329,6 +6826,8 @@ static int dpp_parse_conf_obj(struct dpp_authentication *auth,
 {
        int ret = -1;
        struct json_token *root, *token, *discovery, *cred;
+       struct dpp_config_obj *conf;
+       struct wpabuf *ssid64 = NULL;
 
        root = json_parse((const char *) conf_obj, conf_obj_len);
        if (!root)
@@ -5356,19 +6855,52 @@ static int dpp_parse_conf_obj(struct dpp_authentication *auth,
                goto fail;
        }
 
-       token = json_get_member(discovery, "ssid");
-       if (!token || token->type != JSON_STRING) {
-               dpp_auth_fail(auth, "No discovery::ssid string value found");
-               goto fail;
-       }
-       wpa_hexdump_ascii(MSG_DEBUG, "DPP: discovery::ssid",
-                         token->string, os_strlen(token->string));
-       if (os_strlen(token->string) > SSID_MAX_LEN) {
-               dpp_auth_fail(auth, "Too long discovery::ssid string value");
-               goto fail;
+       ssid64 = json_get_member_base64url(discovery, "ssid64");
+       if (ssid64) {
+               wpa_hexdump_ascii(MSG_DEBUG, "DPP: discovery::ssid64",
+                                 wpabuf_head(ssid64), wpabuf_len(ssid64));
+               if (wpabuf_len(ssid64) > SSID_MAX_LEN) {
+                       dpp_auth_fail(auth, "Too long discovery::ssid64 value");
+                       goto fail;
+               }
+       } else {
+               token = json_get_member(discovery, "ssid");
+               if (!token || token->type != JSON_STRING) {
+                       dpp_auth_fail(auth,
+                                     "No discovery::ssid string value found");
+                       goto fail;
+               }
+               wpa_hexdump_ascii(MSG_DEBUG, "DPP: discovery::ssid",
+                                 token->string, os_strlen(token->string));
+               if (os_strlen(token->string) > SSID_MAX_LEN) {
+                       dpp_auth_fail(auth,
+                                     "Too long discovery::ssid string value");
+                       goto fail;
+               }
+       }
+
+       if (auth->num_conf_obj == DPP_MAX_CONF_OBJ) {
+               wpa_printf(MSG_DEBUG,
+                          "DPP: No room for this many Config Objects - ignore this one");
+               ret = 0;
+               goto fail;
+       }
+       conf = &auth->conf_obj[auth->num_conf_obj++];
+
+       if (ssid64) {
+               conf->ssid_len = wpabuf_len(ssid64);
+               os_memcpy(conf->ssid, wpabuf_head(ssid64), conf->ssid_len);
+       } else {
+               conf->ssid_len = os_strlen(token->string);
+               os_memcpy(conf->ssid, token->string, conf->ssid_len);
+       }
+
+       token = json_get_member(discovery, "ssid_charset");
+       if (token && token->type == JSON_NUMBER) {
+               conf->ssid_charset = token->number;
+               wpa_printf(MSG_DEBUG, "DPP: ssid_charset=%d",
+                          conf->ssid_charset);
        }
-       auth->ssid_len = os_strlen(token->string);
-       os_memcpy(auth->ssid, token->string, auth->ssid_len);
 
        cred = json_get_member(root, "cred");
        if (!cred || cred->type != JSON_OBJECT) {
@@ -5381,14 +6913,13 @@ static int dpp_parse_conf_obj(struct dpp_authentication *auth,
                dpp_auth_fail(auth, "No cred::akm string value found");
                goto fail;
        }
-       auth->akm = dpp_akm_from_str(token->string);
+       conf->akm = dpp_akm_from_str(token->string);
 
-       if (auth->akm == DPP_AKM_PSK || auth->akm == DPP_AKM_SAE ||
-           auth->akm == DPP_AKM_PSK_SAE) {
-               if (dpp_parse_cred_legacy(auth, cred) < 0)
+       if (dpp_akm_legacy(conf->akm)) {
+               if (dpp_parse_cred_legacy(conf, cred) < 0)
                        goto fail;
-       } else if (auth->akm == DPP_AKM_DPP) {
-               if (dpp_parse_cred_dpp(auth, cred) < 0)
+       } else if (dpp_akm_dpp(conf->akm)) {
+               if (dpp_parse_cred_dpp(auth, conf, cred) < 0)
                        goto fail;
        } else {
                wpa_printf(MSG_DEBUG, "DPP: Unsupported akm: %s",
@@ -5400,2246 +6931,5427 @@ static int dpp_parse_conf_obj(struct dpp_authentication *auth,
        wpa_printf(MSG_DEBUG, "DPP: JSON parsing completed successfully");
        ret = 0;
 fail:
+       wpabuf_free(ssid64);
        json_free(root);
        return ret;
 }
 
 
-int dpp_conf_resp_rx(struct dpp_authentication *auth,
-                    const struct wpabuf *resp)
+#ifdef CONFIG_DPP2
+
+struct dpp_enveloped_data {
+       const u8 *enc_cont;
+       size_t enc_cont_len;
+       const u8 *enc_key;
+       size_t enc_key_len;
+       const u8 *salt;
+       size_t pbkdf2_key_len;
+       size_t prf_hash_len;
+};
+
+
+static int dpp_parse_recipient_infos(const u8 *pos, size_t len,
+                                    struct dpp_enveloped_data *data)
 {
-       const u8 *wrapped_data, *e_nonce, *status, *conf_obj;
-       u16 wrapped_data_len, e_nonce_len, status_len, conf_obj_len;
-       const u8 *addr[1];
-       size_t len[1];
-       u8 *unwrapped = NULL;
-       size_t unwrapped_len = 0;
-       int ret = -1;
+       struct asn1_hdr hdr;
+       const u8 *end = pos + len;
+       const u8 *next, *e_end;
+       struct asn1_oid oid;
+       int val;
+       const u8 *params;
+       size_t params_len;
+
+       wpa_hexdump(MSG_MSGDUMP, "DPP: RecipientInfos", pos, len);
+
+       /*
+        * RecipientInfo ::= CHOICE {
+        *    ktri              KeyTransRecipientInfo,
+        *    kari      [1]     KeyAgreeRecipientInfo,
+        *    kekri     [2]     KEKRecipientInfo,
+        *    pwri      [3]     PasswordRecipientInfo,
+        *    ori       [4]     OtherRecipientInfo}
+        *
+        * Shall always use the pwri CHOICE.
+        */
 
-       if (dpp_check_attrs(wpabuf_head(resp), wpabuf_len(resp)) < 0) {
-               dpp_auth_fail(auth, "Invalid attribute in config response");
+       if (asn1_get_next(pos, end - pos, &hdr) < 0 ||
+           hdr.class != ASN1_CLASS_CONTEXT_SPECIFIC || hdr.tag != 3) {
+               wpa_printf(MSG_DEBUG,
+                          "DPP: Expected CHOICE [3] (pwri) - found class %d tag 0x%x",
+                          hdr.class, hdr.tag);
                return -1;
        }
+       wpa_hexdump(MSG_MSGDUMP, "DPP: PasswordRecipientInfo",
+                   hdr.payload, hdr.length);
+       pos = hdr.payload;
+       end = pos + hdr.length;
+
+       /*
+        * PasswordRecipientInfo ::= SEQUENCE {
+        *    version                   CMSVersion,
+        *    keyDerivationAlgorithm [0] KeyDerivationAlgorithmIdentifier OPTIONAL,
+        *    keyEncryptionAlgorithm    KeyEncryptionAlgorithmIdentifier,
+        *    encryptedKey              EncryptedKey}
+        *
+        * version is 0, keyDerivationAlgorithm is id-PKBDF2, and the
+        * parameters contains PBKDF2-params SEQUENCE.
+        */
 
-       wrapped_data = dpp_get_attr(wpabuf_head(resp), wpabuf_len(resp),
-                                   DPP_ATTR_WRAPPED_DATA,
-                                   &wrapped_data_len);
-       if (!wrapped_data || wrapped_data_len < AES_BLOCK_SIZE) {
-               dpp_auth_fail(auth,
-                             "Missing or invalid required Wrapped Data attribute");
+       if (asn1_get_sequence(pos, end - pos, &hdr, &end) < 0)
                return -1;
-       }
+       pos = hdr.payload;
 
-       wpa_hexdump(MSG_DEBUG, "DPP: AES-SIV ciphertext",
-                   wrapped_data, wrapped_data_len);
-       unwrapped_len = wrapped_data_len - AES_BLOCK_SIZE;
-       unwrapped = os_malloc(unwrapped_len);
-       if (!unwrapped)
+       if (asn1_get_integer(pos, end - pos, &val, &pos) < 0)
                return -1;
+       if (val != 0) {
+               wpa_printf(MSG_DEBUG, "DPP: pwri.version != 0");
+               return -1;
+       }
 
-       addr[0] = wpabuf_head(resp);
-       len[0] = wrapped_data - 4 - (const u8 *) wpabuf_head(resp);
-       wpa_hexdump(MSG_DEBUG, "DDP: AES-SIV AD", addr[0], len[0]);
+       wpa_hexdump(MSG_MSGDUMP, "DPP: Remaining PasswordRecipientInfo after version",
+                   pos, end - pos);
 
-       if (aes_siv_decrypt(auth->ke, auth->curve->hash_len,
-                           wrapped_data, wrapped_data_len,
-                           1, addr, len, unwrapped) < 0) {
-               dpp_auth_fail(auth, "AES-SIV decryption failed");
-               goto fail;
+       if (asn1_get_next(pos, end - pos, &hdr) < 0 ||
+           hdr.class != ASN1_CLASS_CONTEXT_SPECIFIC || hdr.tag != 0) {
+               wpa_printf(MSG_DEBUG,
+                          "DPP: Expected keyDerivationAlgorithm [0] - found class %d tag 0x%x",
+                          hdr.class, hdr.tag);
+               return -1;
        }
-       wpa_hexdump(MSG_DEBUG, "DPP: AES-SIV cleartext",
-                   unwrapped, unwrapped_len);
+       pos = hdr.payload;
+       e_end = pos + hdr.length;
 
-       if (dpp_check_attrs(unwrapped, unwrapped_len) < 0) {
-               dpp_auth_fail(auth, "Invalid attribute in unwrapped data");
-               goto fail;
+       /* KeyDerivationAlgorithmIdentifier ::= AlgorithmIdentifier */
+       if (asn1_get_alg_id(pos, e_end - pos, &oid, &params, &params_len,
+                           &next) < 0)
+               return -1;
+       if (!asn1_oid_equal(&oid, &asn1_pbkdf2_oid)) {
+               char buf[80];
+
+               asn1_oid_to_str(&oid, buf, sizeof(buf));
+               wpa_printf(MSG_DEBUG,
+                          "DPP: Unexpected KeyDerivationAlgorithmIdentifier %s",
+                          buf);
+               return -1;
        }
 
-       e_nonce = dpp_get_attr(unwrapped, unwrapped_len,
-                              DPP_ATTR_ENROLLEE_NONCE,
-                              &e_nonce_len);
-       if (!e_nonce || e_nonce_len != auth->curve->nonce_len) {
-               dpp_auth_fail(auth,
-                             "Missing or invalid Enrollee Nonce attribute");
-               goto fail;
+       /*
+        * PBKDF2-params ::= SEQUENCE {
+        *    salt CHOICE {
+        *       specified OCTET STRING,
+        *       otherSource AlgorithmIdentifier}
+        *    iterationCount INTEGER (1..MAX),
+        *    keyLength INTEGER (1..MAX),
+        *    prf AlgorithmIdentifier}
+        *
+        * salt is an 64 octet value, iterationCount is 1000, keyLength is based
+        * on Configurator signing key length, prf is
+        * id-hmacWithSHA{256,384,512} based on Configurator signing key.
+        */
+       if (!params ||
+           asn1_get_sequence(params, params_len, &hdr, &e_end) < 0)
+               return -1;
+       pos = hdr.payload;
+
+       if (asn1_get_next(pos, e_end - pos, &hdr) < 0 ||
+           hdr.class != ASN1_CLASS_UNIVERSAL ||
+           hdr.tag != ASN1_TAG_OCTETSTRING) {
+               wpa_printf(MSG_DEBUG,
+                          "DPP: Expected OCTETSTRING (salt.specified) - found class %d tag 0x%x",
+                          hdr.class, hdr.tag);
+               return -1;
        }
-       wpa_hexdump(MSG_DEBUG, "DPP: Enrollee Nonce", e_nonce, e_nonce_len);
-       if (os_memcmp(e_nonce, auth->e_nonce, e_nonce_len) != 0) {
-               dpp_auth_fail(auth, "Enrollee Nonce mismatch");
-               goto fail;
+       wpa_hexdump(MSG_MSGDUMP, "DPP: salt.specified",
+                   hdr.payload, hdr.length);
+       if (hdr.length != 64) {
+               wpa_printf(MSG_DEBUG, "DPP: Unexpected salt length %u",
+                          hdr.length);
+               return -1;
        }
+       data->salt = hdr.payload;
+       pos = hdr.payload + hdr.length;
 
-       status = dpp_get_attr(wpabuf_head(resp), wpabuf_len(resp),
-                             DPP_ATTR_STATUS, &status_len);
-       if (!status || status_len < 1) {
-               dpp_auth_fail(auth,
-                             "Missing or invalid required DPP Status attribute");
-               goto fail;
+       if (asn1_get_integer(pos, e_end - pos, &val, &pos) < 0)
+               return -1;
+       if (val != 1000) {
+               wpa_printf(MSG_DEBUG, "DPP: Unexpected iterationCount %d", val);
+               return -1;
        }
-       wpa_printf(MSG_DEBUG, "DPP: Status %u", status[0]);
-       if (status[0] != DPP_STATUS_OK) {
-               dpp_auth_fail(auth, "Configurator rejected configuration");
-               goto fail;
+
+       if (asn1_get_integer(pos, e_end - pos, &val, &pos) < 0)
+               return -1;
+       if (val != 32 && val != 48 && val != 64) {
+               wpa_printf(MSG_DEBUG, "DPP: Unexpected keyLength %d", val);
+               return -1;
        }
+       data->pbkdf2_key_len = val;
 
-       conf_obj = dpp_get_attr(unwrapped, unwrapped_len,
-                               DPP_ATTR_CONFIG_OBJ, &conf_obj_len);
-       if (!conf_obj) {
-               dpp_auth_fail(auth,
-                             "Missing required Configuration Object attribute");
-               goto fail;
+       if (asn1_get_sequence(pos, e_end - pos, &hdr, NULL) < 0 ||
+           asn1_get_oid(hdr.payload, hdr.length, &oid, &pos) < 0) {
+               wpa_printf(MSG_DEBUG, "DPP: Could not parse prf");
+               return -1;
        }
-       wpa_hexdump_ascii(MSG_DEBUG, "DPP: configurationObject JSON",
-                         conf_obj, conf_obj_len);
-       if (dpp_parse_conf_obj(auth, conf_obj, conf_obj_len) < 0)
-               goto fail;
+       if (asn1_oid_equal(&oid, &asn1_pbkdf2_hmac_sha256_oid)) {
+               data->prf_hash_len = 32;
+       } else if (asn1_oid_equal(&oid, &asn1_pbkdf2_hmac_sha384_oid)) {
+               data->prf_hash_len = 48;
+       } else if (asn1_oid_equal(&oid, &asn1_pbkdf2_hmac_sha512_oid)) {
+               data->prf_hash_len = 64;
+       } else {
+               char buf[80];
 
-       ret = 0;
+               asn1_oid_to_str(&oid, buf, sizeof(buf));
+               wpa_printf(MSG_DEBUG, "DPP: Unexpected PBKDF2-params.prf %s",
+                          buf);
+               return -1;
+       }
 
-fail:
-       os_free(unwrapped);
-       return ret;
-}
+       pos = next;
 
+       /* keyEncryptionAlgorithm KeyEncryptionAlgorithmIdentifier
+        *
+        * KeyEncryptionAlgorithmIdentifier ::= AlgorithmIdentifier
+        *
+        * id-alg-AES-SIV-CMAC-aed-256, id-alg-AES-SIV-CMAC-aed-384, or
+        * id-alg-AES-SIV-CMAC-aed-512. */
+       if (asn1_get_alg_id(pos, end - pos, &oid, NULL, NULL, &pos) < 0)
+               return -1;
+       if (!asn1_oid_equal(&oid, &asn1_aes_siv_cmac_aead_256_oid) &&
+           !asn1_oid_equal(&oid, &asn1_aes_siv_cmac_aead_384_oid) &&
+           !asn1_oid_equal(&oid, &asn1_aes_siv_cmac_aead_512_oid)) {
+               char buf[80];
 
-void dpp_configurator_free(struct dpp_configurator *conf)
-{
-       if (!conf)
-               return;
-       EVP_PKEY_free(conf->csign);
-       os_free(conf->kid);
-       os_free(conf);
+               asn1_oid_to_str(&oid, buf, sizeof(buf));
+               wpa_printf(MSG_DEBUG,
+                          "DPP: Unexpected KeyEncryptionAlgorithmIdentifier %s",
+                          buf);
+               return -1;
+       }
+
+       /*
+        * encryptedKey EncryptedKey
+        *
+        * EncryptedKey ::= OCTET STRING
+        */
+       if (asn1_get_next(pos, end - pos, &hdr) < 0 ||
+           hdr.class != ASN1_CLASS_UNIVERSAL ||
+           hdr.tag != ASN1_TAG_OCTETSTRING) {
+               wpa_printf(MSG_DEBUG,
+                          "DPP: Expected OCTETSTRING (pwri.encryptedKey) - found class %d tag 0x%x",
+                          hdr.class, hdr.tag);
+               return -1;
+       }
+       wpa_hexdump(MSG_MSGDUMP, "DPP: pwri.encryptedKey",
+                   hdr.payload, hdr.length);
+       data->enc_key = hdr.payload;
+       data->enc_key_len = hdr.length;
+
+       return 0;
 }
 
 
-struct dpp_configurator *
-dpp_keygen_configurator(const char *curve, const u8 *privkey,
-                       size_t privkey_len)
+static int dpp_parse_encrypted_content_info(const u8 *pos, const u8 *end,
+                                           struct dpp_enveloped_data *data)
 {
-       struct dpp_configurator *conf;
-       struct wpabuf *csign_pub = NULL;
-       u8 kid_hash[SHA256_MAC_LEN];
-       const u8 *addr[1];
-       size_t len[1];
+       struct asn1_hdr hdr;
+       struct asn1_oid oid;
+
+       /*
+        * EncryptedContentInfo ::= SEQUENCE {
+        *    contentType                       ContentType,
+        *    contentEncryptionAlgorithm  ContentEncryptionAlgorithmIdentifier,
+        *    encryptedContent  [0] IMPLICIT    EncryptedContent OPTIONAL}
+        */
+       if (asn1_get_sequence(pos, end - pos, &hdr, &pos) < 0)
+               return -1;
+       wpa_hexdump(MSG_MSGDUMP, "DPP: EncryptedContentInfo",
+                   hdr.payload, hdr.length);
+       if (pos < end) {
+               wpa_hexdump(MSG_DEBUG,
+                           "DPP: Unexpected extra data after EncryptedContentInfo",
+                           pos, end - pos);
+               return -1;
+       }
 
-       conf = os_zalloc(sizeof(*conf));
-       if (!conf)
-               return NULL;
+       end = pos;
+       pos = hdr.payload;
 
-       if (!curve) {
-               conf->curve = &dpp_curves[0];
-       } else {
-               conf->curve = dpp_get_curve_name(curve);
-               if (!conf->curve) {
-                       wpa_printf(MSG_INFO, "DPP: Unsupported curve: %s",
-                                  curve);
-                       return NULL;
-               }
+       /* ContentType ::= OBJECT IDENTIFIER */
+       if (asn1_get_oid(pos, end - pos, &oid, &pos) < 0) {
+               wpa_printf(MSG_DEBUG, "DPP: Could not parse ContentType");
+               return -1;
        }
-       if (privkey)
-               conf->csign = dpp_set_keypair(&conf->curve, privkey,
-                                             privkey_len);
-       else
-               conf->csign = dpp_gen_keypair(conf->curve);
-       if (!conf->csign)
-               goto fail;
-       conf->own = 1;
+       if (!asn1_oid_equal(&oid, &asn1_dpp_asymmetric_key_package_oid)) {
+               char buf[80];
 
-       csign_pub = dpp_get_pubkey_point(conf->csign, 1);
-       if (!csign_pub) {
-               wpa_printf(MSG_INFO, "DPP: Failed to extract C-sign-key");
-               goto fail;
+               asn1_oid_to_str(&oid, buf, sizeof(buf));
+               wpa_printf(MSG_DEBUG, "DPP: Unexpected ContentType %s", buf);
+               return -1;
        }
 
-       /* kid = SHA256(ANSI X9.63 uncompressed C-sign-key) */
-       addr[0] = wpabuf_head(csign_pub);
-       len[0] = wpabuf_len(csign_pub);
-       if (sha256_vector(1, addr, len, kid_hash) < 0) {
+       /* ContentEncryptionAlgorithmIdentifier ::= AlgorithmIdentifier */
+       if (asn1_get_alg_id(pos, end - pos, &oid, NULL, NULL, &pos) < 0)
+               return -1;
+       if (!asn1_oid_equal(&oid, &asn1_aes_siv_cmac_aead_256_oid) &&
+           !asn1_oid_equal(&oid, &asn1_aes_siv_cmac_aead_384_oid) &&
+           !asn1_oid_equal(&oid, &asn1_aes_siv_cmac_aead_512_oid)) {
+               char buf[80];
+
+               asn1_oid_to_str(&oid, buf, sizeof(buf));
                wpa_printf(MSG_DEBUG,
-                          "DPP: Failed to derive kid for C-sign-key");
-               goto fail;
+                          "DPP: Unexpected ContentEncryptionAlgorithmIdentifier %s",
+                          buf);
+               return -1;
        }
+       /* ignore optional parameters */
 
-       conf->kid = (char *) base64_url_encode(kid_hash, sizeof(kid_hash),
-                                              NULL, 0);
-       if (!conf->kid)
-               goto fail;
-out:
-       wpabuf_free(csign_pub);
-       return conf;
-fail:
-       dpp_configurator_free(conf);
-       conf = NULL;
-       goto out;
+       /* encryptedContent [0] IMPLICIT EncryptedContent OPTIONAL
+        * EncryptedContent ::= OCTET STRING */
+       if (asn1_get_next(pos, end - pos, &hdr) < 0 ||
+           hdr.class != ASN1_CLASS_CONTEXT_SPECIFIC || hdr.tag != 0) {
+               wpa_printf(MSG_DEBUG,
+                          "DPP: Expected [0] IMPLICIT (EncryptedContent) - found class %d tag 0x%x",
+                          hdr.class, hdr.tag);
+               return -1;
+       }
+       wpa_hexdump(MSG_MSGDUMP, "DPP: EncryptedContent",
+                   hdr.payload, hdr.length);
+       data->enc_cont = hdr.payload;
+       data->enc_cont_len = hdr.length;
+       return 0;
 }
 
 
-int dpp_configurator_own_config(struct dpp_authentication *auth,
-                               const char *curve, int ap)
+static int dpp_parse_enveloped_data(const u8 *env_data, size_t env_data_len,
+                                   struct dpp_enveloped_data *data)
 {
-       struct wpabuf *conf_obj;
-       int ret = -1;
+       struct asn1_hdr hdr;
+       const u8 *pos, *end;
+       int val;
 
-       if (!auth->conf) {
-               wpa_printf(MSG_DEBUG, "DPP: No configurator specified");
+       os_memset(data, 0, sizeof(*data));
+
+       /*
+        * DPPEnvelopedData ::= EnvelopedData
+        *
+        * EnvelopedData ::= SEQUENCE {
+        *    version                   CMSVersion,
+        *    originatorInfo    [0]     IMPLICIT OriginatorInfo OPTIONAL,
+        *    recipientInfos            RecipientInfos,
+        *    encryptedContentInfo      EncryptedContentInfo,
+        *    unprotectedAttrs  [1] IMPLICIT    UnprotectedAttributes OPTIONAL}
+        *
+        * CMSVersion ::= INTEGER
+        *
+        * RecipientInfos ::= SET SIZE (1..MAX) OF RecipientInfo
+        *
+        * For DPP, version is 3, both originatorInfo and
+        * unprotectedAttrs are omitted, and recipientInfos contains a single
+        * RecipientInfo.
+        */
+       if (asn1_get_sequence(env_data, env_data_len, &hdr, &end) < 0)
+               return -1;
+       pos = hdr.payload;
+       if (end < env_data + env_data_len) {
+               wpa_hexdump(MSG_DEBUG,
+                           "DPP: Unexpected extra data after DPPEnvelopedData",
+                           end, env_data + env_data_len - end);
                return -1;
        }
 
-       if (!curve) {
-               auth->curve = &dpp_curves[0];
-       } else {
-               auth->curve = dpp_get_curve_name(curve);
-               if (!auth->curve) {
-                       wpa_printf(MSG_INFO, "DPP: Unsupported curve: %s",
-                                  curve);
-                       return -1;
-               }
+       if (asn1_get_integer(pos, end - pos, &val, &pos) < 0)
+               return -1;
+       if (val != 3) {
+               wpa_printf(MSG_DEBUG, "DPP: EnvelopedData.version != 3");
+               return -1;
        }
-       wpa_printf(MSG_DEBUG,
-                  "DPP: Building own configuration/connector with curve %s",
-                  auth->curve->name);
 
-       auth->own_protocol_key = dpp_gen_keypair(auth->curve);
-       if (!auth->own_protocol_key)
+       if (asn1_get_next(pos, end - pos, &hdr) < 0 ||
+           hdr.class != ASN1_CLASS_UNIVERSAL || hdr.tag != ASN1_TAG_SET) {
+               wpa_printf(MSG_DEBUG,
+                          "DPP: Expected SET (RecipientInfos) - found class %d tag 0x%x",
+                          hdr.class, hdr.tag);
                return -1;
-       dpp_copy_netaccesskey(auth);
-       auth->peer_protocol_key = auth->own_protocol_key;
-       dpp_copy_csign(auth, auth->conf->csign);
+       }
 
-       conf_obj = dpp_build_conf_obj(auth, ap);
-       if (!conf_obj)
-               goto fail;
-       ret = dpp_parse_conf_obj(auth, wpabuf_head(conf_obj),
-                                wpabuf_len(conf_obj));
-fail:
-       wpabuf_free(conf_obj);
-       auth->peer_protocol_key = NULL;
-       return ret;
+       if (dpp_parse_recipient_infos(hdr.payload, hdr.length, data) < 0)
+               return -1;
+       return dpp_parse_encrypted_content_info(hdr.payload + hdr.length, end,
+                                               data);
 }
 
 
-static int dpp_compatible_netrole(const char *role1, const char *role2)
+static struct dpp_asymmetric_key *
+dpp_parse_one_asymmetric_key(const u8 *buf, size_t len)
 {
-       return (os_strcmp(role1, "sta") == 0 && os_strcmp(role2, "ap") == 0) ||
-               (os_strcmp(role1, "ap") == 0 && os_strcmp(role2, "sta") == 0);
-}
+       struct asn1_hdr hdr;
+       const u8 *pos = buf, *end = buf + len, *next;
+       int val;
+       const u8 *params;
+       size_t params_len;
+       struct asn1_oid oid;
+       char txt[80];
+       struct dpp_asymmetric_key *key;
+       EC_KEY *eckey;
 
+       wpa_hexdump_key(MSG_MSGDUMP, "DPP: OneAsymmetricKey", buf, len);
 
-static int dpp_connector_compatible_group(struct json_token *root,
-                                         const char *group_id,
-                                         const char *net_role)
-{
-       struct json_token *groups, *token;
+       key = os_zalloc(sizeof(*key));
+       if (!key)
+               return NULL;
 
-       groups = json_get_member(root, "groups");
-       if (!groups || groups->type != JSON_ARRAY)
-               return 0;
+       /*
+        * OneAsymmetricKey ::= SEQUENCE {
+        *    version                   Version,
+        *    privateKeyAlgorithm       PrivateKeyAlgorithmIdentifier,
+        *    privateKey                PrivateKey,
+        *    attributes                [0] Attributes OPTIONAL,
+        *    ...,
+        *    [[2: publicKey            [1] BIT STRING OPTIONAL ]],
+        *    ...
+        * }
+        */
+       if (asn1_get_sequence(pos, end - pos, &hdr, &end) < 0)
+               goto fail;
+       pos = hdr.payload;
 
-       for (token = groups->child; token; token = token->sibling) {
-               struct json_token *id, *role;
+       /* Version ::= INTEGER { v1(0), v2(1) } (v1, ..., v2) */
+       if (asn1_get_integer(pos, end - pos, &val, &pos) < 0)
+               goto fail;
+       if (val != 1) {
+               wpa_printf(MSG_DEBUG,
+                          "DPP: Unsupported DPPAsymmetricKeyPackage version %d",
+                          val);
+               goto fail;
+       }
 
-               id = json_get_member(token, "groupId");
-               if (!id || id->type != JSON_STRING)
-                       continue;
+       /* PrivateKeyAlgorithmIdentifier ::= AlgorithmIdentifier */
+       if (asn1_get_alg_id(pos, end - pos, &oid, &params, &params_len,
+                           &pos) < 0)
+               goto fail;
+       if (!asn1_oid_equal(&oid, &asn1_ec_public_key_oid)) {
+               asn1_oid_to_str(&oid, txt, sizeof(txt));
+               wpa_printf(MSG_DEBUG,
+                          "DPP: Unsupported PrivateKeyAlgorithmIdentifier %s",
+                          txt);
+               goto fail;
+       }
+       wpa_hexdump(MSG_MSGDUMP, "DPP: PrivateKeyAlgorithmIdentifier params",
+                   params, params_len);
+       /*
+        * ECParameters ::= CHOICE {
+        *    namedCurve        OBJECT IDENTIFIER
+        *    -- implicitCurve  NULL
+        *    -- specifiedCurve SpecifiedECDomain}
+        */
+       if (!params || asn1_get_oid(params, params_len, &oid, &next) < 0) {
+               wpa_printf(MSG_DEBUG,
+                          "DPP: Could not parse ECParameters.namedCurve");
+               goto fail;
+       }
+       asn1_oid_to_str(&oid, txt, sizeof(txt));
+       wpa_printf(MSG_MSGDUMP, "DPP: namedCurve %s", txt);
+       /* Assume the curve is identified within ECPrivateKey, so that this
+        * separate indication is not really needed. */
 
-               role = json_get_member(token, "netRole");
-               if (!role || role->type != JSON_STRING)
-                       continue;
+       /*
+        * PrivateKey ::= OCTET STRING
+        *    (Contains DER encoding of ECPrivateKey)
+        */
+       if (asn1_get_next(pos, end - pos, &hdr) < 0 ||
+           hdr.class != ASN1_CLASS_UNIVERSAL ||
+           hdr.tag != ASN1_TAG_OCTETSTRING) {
+               wpa_printf(MSG_DEBUG,
+                          "DPP: Expected OCTETSTRING (PrivateKey) - found class %d tag 0x%x",
+                          hdr.class, hdr.tag);
+               goto fail;
+       }
+       wpa_hexdump_key(MSG_MSGDUMP, "DPP: PrivateKey",
+                       hdr.payload, hdr.length);
+       pos = hdr.payload + hdr.length;
+       eckey = d2i_ECPrivateKey(NULL, &hdr.payload, hdr.length);
+       if (!eckey) {
+               wpa_printf(MSG_INFO,
+                          "DPP: OpenSSL: d2i_ECPrivateKey() failed: %s",
+                          ERR_error_string(ERR_get_error(), NULL));
+               goto fail;
+       }
+       key->csign = EVP_PKEY_new();
+       if (!key->csign || EVP_PKEY_assign_EC_KEY(key->csign, eckey) != 1) {
+               EC_KEY_free(eckey);
+               goto fail;
+       }
+       if (wpa_debug_show_keys)
+               dpp_debug_print_key("DPP: Received c-sign-key", key->csign);
 
-               if (os_strcmp(id->string, "*") != 0 &&
-                   os_strcmp(group_id, "*") != 0 &&
-                   os_strcmp(id->string, group_id) != 0)
-                       continue;
+       /*
+        * Attributes ::= SET OF Attribute { { OneAsymmetricKeyAttributes } }
+        *
+        * Exactly one instance of type Attribute in OneAsymmetricKey.
+        */
+       if (asn1_get_next(pos, end - pos, &hdr) < 0 ||
+           hdr.class != ASN1_CLASS_CONTEXT_SPECIFIC || hdr.tag != 0) {
+               wpa_printf(MSG_DEBUG,
+                          "DPP: Expected [0] Attributes - found class %d tag 0x%x",
+                          hdr.class, hdr.tag);
+               goto fail;
+       }
+       wpa_hexdump_key(MSG_MSGDUMP, "DPP: Attributes",
+                       hdr.payload, hdr.length);
+       if (hdr.payload + hdr.length < end) {
+               wpa_hexdump_key(MSG_MSGDUMP,
+                               "DPP: Ignore additional data at the end of OneAsymmetricKey",
+                               hdr.payload + hdr.length,
+                               end - (hdr.payload + hdr.length));
+       }
+       pos = hdr.payload;
+       end = hdr.payload + hdr.length;
 
-               if (dpp_compatible_netrole(role->string, net_role))
-                       return 1;
+       if (asn1_get_next(pos, end - pos, &hdr) < 0 ||
+           hdr.class != ASN1_CLASS_UNIVERSAL || hdr.tag != ASN1_TAG_SET) {
+               wpa_printf(MSG_DEBUG,
+                          "DPP: Expected SET (Attributes) - found class %d tag 0x%x",
+                          hdr.class, hdr.tag);
+               goto fail;
+       }
+       if (hdr.payload + hdr.length < end) {
+               wpa_hexdump_key(MSG_MSGDUMP,
+                               "DPP: Ignore additional data at the end of OneAsymmetricKey (after SET)",
+                               hdr.payload + hdr.length,
+                               end - (hdr.payload + hdr.length));
        }
+       pos = hdr.payload;
+       end = hdr.payload + hdr.length;
 
-       return 0;
-}
+       /*
+        * OneAsymmetricKeyAttributes ATTRIBUTE ::= {
+        *    aa-DPPConfigurationParameters,
+        *    ... -- For local profiles
+        * }
+        *
+        * aa-DPPConfigurationParameters ATTRIBUTE ::=
+        * { TYPE DPPConfigurationParameters IDENTIFIED BY id-DPPConfigParams }
+        *
+        * Attribute ::= SEQUENCE {
+        *    type OBJECT IDENTIFIER,
+        *    values SET SIZE(1..MAX) OF Type
+        *
+        * Exactly one instance of ATTRIBUTE in attrValues.
+        */
+       if (asn1_get_sequence(pos, end - pos, &hdr, &pos) < 0)
+               goto fail;
+       if (pos < end) {
+               wpa_hexdump_key(MSG_MSGDUMP,
+                               "DPP: Ignore additional data at the end of ATTRIBUTE",
+                               pos, end - pos);
+       }
+       end = pos;
+       pos = hdr.payload;
+
+       if (asn1_get_oid(pos, end - pos, &oid, &pos) < 0)
+               goto fail;
+       if (!asn1_oid_equal(&oid, &asn1_dpp_config_params_oid)) {
+               asn1_oid_to_str(&oid, txt, sizeof(txt));
+               wpa_printf(MSG_DEBUG,
+                          "DPP: Unexpected Attribute identifier %s", txt);
+               goto fail;
+       }
 
+       if (asn1_get_next(pos, end - pos, &hdr) < 0 ||
+           hdr.class != ASN1_CLASS_UNIVERSAL || hdr.tag != ASN1_TAG_SET) {
+               wpa_printf(MSG_DEBUG,
+                          "DPP: Expected SET (Attribute) - found class %d tag 0x%x",
+                          hdr.class, hdr.tag);
+               goto fail;
+       }
+       pos = hdr.payload;
+       end = hdr.payload + hdr.length;
 
-static int dpp_connector_match_groups(struct json_token *own_root,
-                                     struct json_token *peer_root)
-{
-       struct json_token *groups, *token;
+       /*
+        * DPPConfigurationParameters ::= SEQUENCE {
+        *    configurationTemplate     UTF8String,
+        *    connectorTemplate         UTF8String OPTIONAL}
+        */
 
-       groups = json_get_member(peer_root, "groups");
-       if (!groups || groups->type != JSON_ARRAY) {
-               wpa_printf(MSG_DEBUG, "DPP: No peer groups array found");
-               return 0;
+       wpa_hexdump_key(MSG_MSGDUMP, "DPP: DPPConfigurationParameters",
+                       pos, end - pos);
+       if (asn1_get_sequence(pos, end - pos, &hdr, &pos) < 0)
+               goto fail;
+       if (pos < end) {
+               wpa_hexdump_key(MSG_MSGDUMP,
+                               "DPP: Ignore additional data after DPPConfigurationParameters",
+                               pos, end - pos);
        }
+       end = pos;
+       pos = hdr.payload;
 
-       for (token = groups->child; token; token = token->sibling) {
-               struct json_token *id, *role;
+       if (asn1_get_next(pos, end - pos, &hdr) < 0 ||
+           hdr.class != ASN1_CLASS_UNIVERSAL ||
+           hdr.tag != ASN1_TAG_UTF8STRING) {
+               wpa_printf(MSG_DEBUG,
+                          "DPP: Expected UTF8STRING (configurationTemplate) - found class %d tag 0x%x",
+                          hdr.class, hdr.tag);
+               goto fail;
+       }
+       wpa_hexdump_ascii_key(MSG_MSGDUMP, "DPP: configurationTemplate",
+                             hdr.payload, hdr.length);
+       key->config_template = os_zalloc(hdr.length + 1);
+       if (!key->config_template)
+               goto fail;
+       os_memcpy(key->config_template, hdr.payload, hdr.length);
 
-               id = json_get_member(token, "groupId");
-               if (!id || id->type != JSON_STRING) {
+       pos = hdr.payload + hdr.length;
+
+       if (pos < end) {
+               if (asn1_get_next(pos, end - pos, &hdr) < 0 ||
+                   hdr.class != ASN1_CLASS_UNIVERSAL ||
+                   hdr.tag != ASN1_TAG_UTF8STRING) {
                        wpa_printf(MSG_DEBUG,
-                                  "DPP: Missing peer groupId string");
-                       continue;
+                                  "DPP: Expected UTF8STRING (connectorTemplate) - found class %d tag 0x%x",
+                                  hdr.class, hdr.tag);
+                       goto fail;
                }
+               wpa_hexdump_ascii_key(MSG_MSGDUMP, "DPP: connectorTemplate",
+                                     hdr.payload, hdr.length);
+               key->connector_template = os_zalloc(hdr.length + 1);
+               if (!key->connector_template)
+                       goto fail;
+               os_memcpy(key->connector_template, hdr.payload, hdr.length);
+       }
 
-               role = json_get_member(token, "netRole");
-               if (!role || role->type != JSON_STRING) {
-                       wpa_printf(MSG_DEBUG,
-                                  "DPP: Missing peer groups::netRole string");
-                       continue;
+       return key;
+fail:
+       wpa_printf(MSG_DEBUG, "DPP: Failed to parse OneAsymmetricKey");
+       dpp_free_asymmetric_key(key);
+       return NULL;
+}
+
+
+static struct dpp_asymmetric_key *
+dpp_parse_dpp_asymmetric_key_package(const u8 *key_pkg, size_t key_pkg_len)
+{
+       struct asn1_hdr hdr;
+       const u8 *pos = key_pkg, *end = key_pkg + key_pkg_len;
+       struct dpp_asymmetric_key *first = NULL, *last = NULL, *key;
+
+       wpa_hexdump_key(MSG_MSGDUMP, "DPP: DPPAsymmetricKeyPackage",
+                       key_pkg, key_pkg_len);
+
+       /*
+        * DPPAsymmetricKeyPackage ::= AsymmetricKeyPackage
+        *
+        * AsymmetricKeyPackage ::= SEQUENCE SIZE (1..MAX) OF OneAsymmetricKey
+        */
+       while (pos < end) {
+               if (asn1_get_sequence(pos, end - pos, &hdr, &pos) < 0 ||
+                   !(key = dpp_parse_one_asymmetric_key(hdr.payload,
+                                                        hdr.length))) {
+                       dpp_free_asymmetric_key(first);
+                       return NULL;
                }
-               wpa_printf(MSG_DEBUG,
-                          "DPP: peer connector group: groupId='%s' netRole='%s'",
-                          id->string, role->string);
-               if (dpp_connector_compatible_group(own_root, id->string,
-                                                  role->string)) {
-                       wpa_printf(MSG_DEBUG,
-                                  "DPP: Compatible group/netRole in own connector");
-                       return 1;
+               if (!last) {
+                       first = last = key;
+               } else {
+                       last->next = key;
+                       last = key;
                }
        }
 
-       return 0;
+       return first;
 }
 
 
-static int dpp_derive_pmk(const u8 *Nx, size_t Nx_len, u8 *pmk,
-                         unsigned int hash_len)
+static int dpp_conf_resp_env_data(struct dpp_authentication *auth,
+                                 const u8 *env_data, size_t env_data_len)
 {
-       u8 salt[DPP_MAX_HASH_LEN], prk[DPP_MAX_HASH_LEN];
-       const char *info = "DPP PMK";
+       const u8 *key;
+       size_t key_len;
+       u8 kek[DPP_MAX_HASH_LEN];
+       u8 cont_encr_key[DPP_MAX_HASH_LEN];
+       size_t cont_encr_key_len;
        int res;
+       u8 *key_pkg;
+       size_t key_pkg_len;
+       struct dpp_enveloped_data data;
+       struct dpp_asymmetric_key *keys;
 
-       /* PMK = HKDF(<>, "DPP PMK", N.x) */
+       wpa_hexdump(MSG_DEBUG, "DPP: DPPEnvelopedData", env_data, env_data_len);
 
-       /* HKDF-Extract(<>, N.x) */
-       os_memset(salt, 0, hash_len);
-       if (dpp_hmac(hash_len, salt, hash_len, Nx, Nx_len, prk) < 0)
+       if (dpp_parse_enveloped_data(env_data, env_data_len, &data) < 0)
                return -1;
-       wpa_hexdump_key(MSG_DEBUG, "DPP: PRK = HKDF-Extract(<>, IKM=N.x)",
-                       prk, hash_len);
 
-       /* HKDF-Expand(PRK, info, L) */
-       res = dpp_hkdf_expand(hash_len, prk, hash_len, info, pmk, hash_len);
-       os_memset(prk, 0, hash_len);
-       if (res < 0)
+       /* TODO: For initial testing, use ke as the key. Replace this with a
+        * new key once that has been defined. */
+       key = auth->ke;
+       key_len = auth->curve->hash_len;
+       wpa_hexdump_key(MSG_DEBUG, "DPP: PBKDF2 key", key, key_len);
+
+       if (dpp_pbkdf2(data.prf_hash_len, key, key_len, data.salt, 64, 1000,
+                      kek, data.pbkdf2_key_len)) {
+               wpa_printf(MSG_DEBUG, "DPP: PBKDF2 failed");
                return -1;
+       }
+       wpa_hexdump_key(MSG_DEBUG, "DPP: key-encryption key from PBKDF2",
+                       kek, data.pbkdf2_key_len);
 
-       wpa_hexdump_key(MSG_DEBUG, "DPP: PMK = HKDF-Expand(PRK, info, L)",
-                       pmk, hash_len);
-       return 0;
-}
+       if (data.enc_key_len < AES_BLOCK_SIZE ||
+           data.enc_key_len > sizeof(cont_encr_key) + AES_BLOCK_SIZE) {
+               wpa_printf(MSG_DEBUG, "DPP: Invalid encryptedKey length");
+               return -1;
+       }
+       res = aes_siv_decrypt(kek, data.pbkdf2_key_len,
+                             data.enc_key, data.enc_key_len,
+                             0, NULL, NULL, cont_encr_key);
+       forced_memzero(kek, data.pbkdf2_key_len);
+       if (res < 0) {
+               wpa_printf(MSG_DEBUG,
+                          "DPP: AES-SIV decryption of encryptedKey failed");
+               return -1;
+       }
+       cont_encr_key_len = data.enc_key_len - AES_BLOCK_SIZE;
+       wpa_hexdump_key(MSG_DEBUG, "DPP: content-encryption key",
+                       cont_encr_key, cont_encr_key_len);
 
+       if (data.enc_cont_len < AES_BLOCK_SIZE)
+               return -1;
+       key_pkg_len = data.enc_cont_len - AES_BLOCK_SIZE;
+       key_pkg = os_malloc(key_pkg_len);
+       if (!key_pkg)
+               return -1;
+       res = aes_siv_decrypt(cont_encr_key, cont_encr_key_len,
+                             data.enc_cont, data.enc_cont_len,
+                             0, NULL, NULL, key_pkg);
+       forced_memzero(cont_encr_key, cont_encr_key_len);
+       if (res < 0) {
+               bin_clear_free(key_pkg, key_pkg_len);
+               wpa_printf(MSG_DEBUG,
+                          "DPP: AES-SIV decryption of encryptedContent failed");
+               return -1;
+       }
 
-static int dpp_derive_pmkid(const struct dpp_curve_params *curve,
-                           EVP_PKEY *own_key, EVP_PKEY *peer_key, u8 *pmkid)
-{
-       struct wpabuf *nkx, *pkx;
-       int ret = -1, res;
-       const u8 *addr[2];
-       size_t len[2];
-       u8 hash[SHA256_MAC_LEN];
+       keys = dpp_parse_dpp_asymmetric_key_package(key_pkg, key_pkg_len);
+       bin_clear_free(key_pkg, key_pkg_len);
+       dpp_free_asymmetric_key(auth->conf_key_pkg);
+       auth->conf_key_pkg = keys;
 
-       /* PMKID = Truncate-128(H(min(NK.x, PK.x) | max(NK.x, PK.x))) */
-       nkx = dpp_get_pubkey_point(own_key, 0);
-       pkx = dpp_get_pubkey_point(peer_key, 0);
-       if (!nkx || !pkx)
-               goto fail;
-       addr[0] = wpabuf_head(nkx);
-       len[0] = wpabuf_len(nkx) / 2;
-       addr[1] = wpabuf_head(pkx);
-       len[1] = wpabuf_len(pkx) / 2;
-       if (len[0] != len[1])
-               goto fail;
-       if (os_memcmp(addr[0], addr[1], len[0]) > 0) {
-               addr[0] = wpabuf_head(pkx);
-               addr[1] = wpabuf_head(nkx);
-       }
-       wpa_hexdump(MSG_DEBUG, "DPP: PMKID hash payload 1", addr[0], len[0]);
-       wpa_hexdump(MSG_DEBUG, "DPP: PMKID hash payload 2", addr[1], len[1]);
-       res = sha256_vector(2, addr, len, hash);
-       if (res < 0)
-               goto fail;
-       wpa_hexdump(MSG_DEBUG, "DPP: PMKID hash output", hash, SHA256_MAC_LEN);
-       os_memcpy(pmkid, hash, PMKID_LEN);
-       wpa_hexdump(MSG_DEBUG, "DPP: PMKID", pmkid, PMKID_LEN);
-       ret = 0;
-fail:
-       wpabuf_free(nkx);
-       wpabuf_free(pkx);
-       return ret;
+       return keys != NULL;;
 }
 
+#endif /* CONFIG_DPP2 */
 
-enum dpp_status_error
-dpp_peer_intro(struct dpp_introduction *intro, const char *own_connector,
-              const u8 *net_access_key, size_t net_access_key_len,
-              const u8 *csign_key, size_t csign_key_len,
-              const u8 *peer_connector, size_t peer_connector_len,
-              os_time_t *expiry)
+
+int dpp_conf_resp_rx(struct dpp_authentication *auth,
+                    const struct wpabuf *resp)
 {
-       struct json_token *root = NULL, *netkey, *token;
-       struct json_token *own_root = NULL;
-       enum dpp_status_error ret = 255, res;
-       EVP_PKEY *own_key = NULL, *peer_key = NULL;
-       struct wpabuf *own_key_pub = NULL;
-       const struct dpp_curve_params *curve, *own_curve;
-       struct dpp_signed_connector_info info;
-       const unsigned char *p;
-       EVP_PKEY *csign = NULL;
-       char *signed_connector = NULL;
-       const char *pos, *end;
-       unsigned char *own_conn = NULL;
-       size_t own_conn_len;
-       EVP_PKEY_CTX *ctx = NULL;
-       size_t Nx_len;
-       u8 Nx[DPP_MAX_SHARED_SECRET_LEN];
+       const u8 *wrapped_data, *e_nonce, *status, *conf_obj;
+       u16 wrapped_data_len, e_nonce_len, status_len, conf_obj_len;
+       const u8 *env_data;
+       u16 env_data_len;
+       const u8 *addr[1];
+       size_t len[1];
+       u8 *unwrapped = NULL;
+       size_t unwrapped_len = 0;
+       int ret = -1;
 
-       os_memset(intro, 0, sizeof(*intro));
-       os_memset(&info, 0, sizeof(info));
-       if (expiry)
-               *expiry = 0;
+       auth->conf_resp_status = 255;
 
-       p = csign_key;
-       csign = d2i_PUBKEY(NULL, &p, csign_key_len);
-       if (!csign) {
-               wpa_printf(MSG_ERROR,
-                          "DPP: Failed to parse local C-sign-key information");
-               goto fail;
+       if (dpp_check_attrs(wpabuf_head(resp), wpabuf_len(resp)) < 0) {
+               dpp_auth_fail(auth, "Invalid attribute in config response");
+               return -1;
        }
 
-       own_key = dpp_set_keypair(&own_curve, net_access_key,
-                                 net_access_key_len);
-       if (!own_key) {
-               wpa_printf(MSG_ERROR, "DPP: Failed to parse own netAccessKey");
-               goto fail;
+       wrapped_data = dpp_get_attr(wpabuf_head(resp), wpabuf_len(resp),
+                                   DPP_ATTR_WRAPPED_DATA,
+                                   &wrapped_data_len);
+       if (!wrapped_data || wrapped_data_len < AES_BLOCK_SIZE) {
+               dpp_auth_fail(auth,
+                             "Missing or invalid required Wrapped Data attribute");
+               return -1;
        }
 
-       pos = os_strchr(own_connector, '.');
-       if (!pos) {
-               wpa_printf(MSG_DEBUG, "DPP: Own connector is missing the first dot (.)");
-               goto fail;
-       }
-       pos++;
-       end = os_strchr(pos, '.');
-       if (!end) {
-               wpa_printf(MSG_DEBUG, "DPP: Own connector is missing the second dot (.)");
-               goto fail;
-       }
-       own_conn = base64_url_decode((const unsigned char *) pos,
-                                    end - pos, &own_conn_len);
-       if (!own_conn) {
-               wpa_printf(MSG_DEBUG,
-                          "DPP: Failed to base64url decode own signedConnector JWS Payload");
+       wpa_hexdump(MSG_DEBUG, "DPP: AES-SIV ciphertext",
+                   wrapped_data, wrapped_data_len);
+       unwrapped_len = wrapped_data_len - AES_BLOCK_SIZE;
+       unwrapped = os_malloc(unwrapped_len);
+       if (!unwrapped)
+               return -1;
+
+       addr[0] = wpabuf_head(resp);
+       len[0] = wrapped_data - 4 - (const u8 *) wpabuf_head(resp);
+       wpa_hexdump(MSG_DEBUG, "DDP: AES-SIV AD", addr[0], len[0]);
+
+       if (aes_siv_decrypt(auth->ke, auth->curve->hash_len,
+                           wrapped_data, wrapped_data_len,
+                           1, addr, len, unwrapped) < 0) {
+               dpp_auth_fail(auth, "AES-SIV decryption failed");
                goto fail;
        }
+       wpa_hexdump(MSG_DEBUG, "DPP: AES-SIV cleartext",
+                   unwrapped, unwrapped_len);
 
-       own_root = json_parse((const char *) own_conn, own_conn_len);
-       if (!own_root) {
-               wpa_printf(MSG_DEBUG, "DPP: Failed to parse local connector");
+       if (dpp_check_attrs(unwrapped, unwrapped_len) < 0) {
+               dpp_auth_fail(auth, "Invalid attribute in unwrapped data");
                goto fail;
        }
 
-       wpa_hexdump_ascii(MSG_DEBUG, "DPP: Peer signedConnector",
-                         peer_connector, peer_connector_len);
-       signed_connector = os_malloc(peer_connector_len + 1);
-       if (!signed_connector)
+       e_nonce = dpp_get_attr(unwrapped, unwrapped_len,
+                              DPP_ATTR_ENROLLEE_NONCE,
+                              &e_nonce_len);
+       if (!e_nonce || e_nonce_len != auth->curve->nonce_len) {
+               dpp_auth_fail(auth,
+                             "Missing or invalid Enrollee Nonce attribute");
                goto fail;
-       os_memcpy(signed_connector, peer_connector, peer_connector_len);
-       signed_connector[peer_connector_len] = '\0';
-
-       res = dpp_process_signed_connector(&info, csign, signed_connector);
-       if (res != DPP_STATUS_OK) {
-               ret = res;
+       }
+       wpa_hexdump(MSG_DEBUG, "DPP: Enrollee Nonce", e_nonce, e_nonce_len);
+       if (os_memcmp(e_nonce, auth->e_nonce, e_nonce_len) != 0) {
+               dpp_auth_fail(auth, "Enrollee Nonce mismatch");
                goto fail;
        }
 
-       root = json_parse((const char *) info.payload, info.payload_len);
-       if (!root) {
-               wpa_printf(MSG_DEBUG, "DPP: JSON parsing of connector failed");
-               ret = DPP_STATUS_INVALID_CONNECTOR;
+       status = dpp_get_attr(wpabuf_head(resp), wpabuf_len(resp),
+                             DPP_ATTR_STATUS, &status_len);
+       if (!status || status_len < 1) {
+               dpp_auth_fail(auth,
+                             "Missing or invalid required DPP Status attribute");
+               goto fail;
+       }
+       auth->conf_resp_status = status[0];
+       wpa_printf(MSG_DEBUG, "DPP: Status %u", status[0]);
+       if (status[0] != DPP_STATUS_OK) {
+               dpp_auth_fail(auth, "Configurator rejected configuration");
                goto fail;
        }
 
-       if (!dpp_connector_match_groups(own_root, root)) {
-               wpa_printf(MSG_DEBUG,
-                          "DPP: Peer connector does not include compatible group netrole with own connector");
-               ret = DPP_STATUS_NO_MATCH;
+       env_data = dpp_get_attr(unwrapped, unwrapped_len,
+                               DPP_ATTR_ENVELOPED_DATA, &env_data_len);
+#ifdef CONFIG_DPP2
+       if (env_data &&
+           dpp_conf_resp_env_data(auth, env_data, env_data_len) < 0)
+               goto fail;
+#endif /* CONFIG_DPP2 */
+
+       conf_obj = dpp_get_attr(unwrapped, unwrapped_len, DPP_ATTR_CONFIG_OBJ,
+                               &conf_obj_len);
+       if (!conf_obj && !env_data) {
+               dpp_auth_fail(auth,
+                             "Missing required Configuration Object attribute");
                goto fail;
        }
+       while (conf_obj) {
+               wpa_hexdump_ascii(MSG_DEBUG, "DPP: configurationObject JSON",
+                                 conf_obj, conf_obj_len);
+               if (dpp_parse_conf_obj(auth, conf_obj, conf_obj_len) < 0)
+                       goto fail;
+               conf_obj = dpp_get_attr_next(conf_obj, unwrapped, unwrapped_len,
+                                            DPP_ATTR_CONFIG_OBJ,
+                                            &conf_obj_len);
+       }
 
-       token = json_get_member(root, "expiry");
-       if (!token || token->type != JSON_STRING) {
+#ifdef CONFIG_DPP2
+       status = dpp_get_attr(unwrapped, unwrapped_len,
+                             DPP_ATTR_SEND_CONN_STATUS, &status_len);
+       if (status) {
                wpa_printf(MSG_DEBUG,
-                          "DPP: No expiry string found - connector does not expire");
-       } else {
-               wpa_printf(MSG_DEBUG, "DPP: expiry = %s", token->string);
-               if (dpp_key_expired(token->string, expiry)) {
-                       wpa_printf(MSG_DEBUG,
-                                  "DPP: Connector (netAccessKey) has expired");
-                       ret = DPP_STATUS_INVALID_CONNECTOR;
-                       goto fail;
-               }
+                          "DPP: Configurator requested connection status result");
+               auth->conn_status_requested = 1;
        }
+#endif /* CONFIG_DPP2 */
 
-       netkey = json_get_member(root, "netAccessKey");
-       if (!netkey || netkey->type != JSON_OBJECT) {
-               wpa_printf(MSG_DEBUG, "DPP: No netAccessKey object found");
-               ret = DPP_STATUS_INVALID_CONNECTOR;
+       ret = 0;
+
+fail:
+       os_free(unwrapped);
+       return ret;
+}
+
+
+#ifdef CONFIG_DPP2
+
+enum dpp_status_error dpp_conf_result_rx(struct dpp_authentication *auth,
+                                        const u8 *hdr,
+                                        const u8 *attr_start, size_t attr_len)
+{
+       const u8 *wrapped_data, *status, *e_nonce;
+       u16 wrapped_data_len, status_len, e_nonce_len;
+       const u8 *addr[2];
+       size_t len[2];
+       u8 *unwrapped = NULL;
+       size_t unwrapped_len = 0;
+       enum dpp_status_error ret = 256;
+
+       wrapped_data = dpp_get_attr(attr_start, attr_len, DPP_ATTR_WRAPPED_DATA,
+                                   &wrapped_data_len);
+       if (!wrapped_data || wrapped_data_len < AES_BLOCK_SIZE) {
+               dpp_auth_fail(auth,
+                             "Missing or invalid required Wrapped Data attribute");
                goto fail;
        }
+       wpa_hexdump(MSG_DEBUG, "DPP: Wrapped data",
+                   wrapped_data, wrapped_data_len);
 
-       peer_key = dpp_parse_jwk(netkey, &curve);
-       if (!peer_key) {
-               ret = DPP_STATUS_INVALID_CONNECTOR;
+       attr_len = wrapped_data - 4 - attr_start;
+
+       addr[0] = hdr;
+       len[0] = DPP_HDR_LEN;
+       addr[1] = attr_start;
+       len[1] = attr_len;
+       wpa_hexdump(MSG_DEBUG, "DDP: AES-SIV AD[0]", addr[0], len[0]);
+       wpa_hexdump(MSG_DEBUG, "DDP: AES-SIV AD[1]", addr[1], len[1]);
+       wpa_hexdump(MSG_DEBUG, "DPP: AES-SIV ciphertext",
+                   wrapped_data, wrapped_data_len);
+       unwrapped_len = wrapped_data_len - AES_BLOCK_SIZE;
+       unwrapped = os_malloc(unwrapped_len);
+       if (!unwrapped)
+               goto fail;
+       if (aes_siv_decrypt(auth->ke, auth->curve->hash_len,
+                           wrapped_data, wrapped_data_len,
+                           2, addr, len, unwrapped) < 0) {
+               dpp_auth_fail(auth, "AES-SIV decryption failed");
                goto fail;
        }
-       dpp_debug_print_key("DPP: Received netAccessKey", peer_key);
+       wpa_hexdump(MSG_DEBUG, "DPP: AES-SIV cleartext",
+                   unwrapped, unwrapped_len);
 
-       if (own_curve != curve) {
-               wpa_printf(MSG_DEBUG,
-                          "DPP: Mismatching netAccessKey curves (%s != %s)",
-                          own_curve->name, curve->name);
-               ret = DPP_STATUS_INVALID_CONNECTOR;
+       if (dpp_check_attrs(unwrapped, unwrapped_len) < 0) {
+               dpp_auth_fail(auth, "Invalid attribute in unwrapped data");
                goto fail;
        }
 
-       /* ECDH: N = nk * PK */
-       ctx = EVP_PKEY_CTX_new(own_key, NULL);
-       if (!ctx ||
-           EVP_PKEY_derive_init(ctx) != 1 ||
-           EVP_PKEY_derive_set_peer(ctx, peer_key) != 1 ||
-           EVP_PKEY_derive(ctx, NULL, &Nx_len) != 1 ||
-           Nx_len > DPP_MAX_SHARED_SECRET_LEN ||
-           EVP_PKEY_derive(ctx, Nx, &Nx_len) != 1) {
-               wpa_printf(MSG_ERROR,
-                          "DPP: Failed to derive ECDH shared secret: %s",
-                          ERR_error_string(ERR_get_error(), NULL));
+       e_nonce = dpp_get_attr(unwrapped, unwrapped_len,
+                              DPP_ATTR_ENROLLEE_NONCE,
+                              &e_nonce_len);
+       if (!e_nonce || e_nonce_len != auth->curve->nonce_len) {
+               dpp_auth_fail(auth,
+                             "Missing or invalid Enrollee Nonce attribute");
                goto fail;
        }
-
-       wpa_hexdump_key(MSG_DEBUG, "DPP: ECDH shared secret (N.x)",
-                       Nx, Nx_len);
-
-       /* PMK = HKDF(<>, "DPP PMK", N.x) */
-       if (dpp_derive_pmk(Nx, Nx_len, intro->pmk, curve->hash_len) < 0) {
-               wpa_printf(MSG_ERROR, "DPP: Failed to derive PMK");
+       wpa_hexdump(MSG_DEBUG, "DPP: Enrollee Nonce", e_nonce, e_nonce_len);
+       if (os_memcmp(e_nonce, auth->e_nonce, e_nonce_len) != 0) {
+               dpp_auth_fail(auth, "Enrollee Nonce mismatch");
+               wpa_hexdump(MSG_DEBUG, "DPP: Expected Enrollee Nonce",
+                           auth->e_nonce, e_nonce_len);
                goto fail;
        }
-       intro->pmk_len = curve->hash_len;
 
-       /* PMKID = Truncate-128(H(min(NK.x, PK.x) | max(NK.x, PK.x))) */
-       if (dpp_derive_pmkid(curve, own_key, peer_key, intro->pmkid) < 0) {
-               wpa_printf(MSG_ERROR, "DPP: Failed to derive PMKID");
+       status = dpp_get_attr(unwrapped, unwrapped_len, DPP_ATTR_STATUS,
+                             &status_len);
+       if (!status || status_len < 1) {
+               dpp_auth_fail(auth,
+                             "Missing or invalid required DPP Status attribute");
                goto fail;
        }
+       wpa_printf(MSG_DEBUG, "DPP: Status %u", status[0]);
+       ret = status[0];
 
-       ret = DPP_STATUS_OK;
 fail:
-       if (ret != DPP_STATUS_OK)
-               os_memset(intro, 0, sizeof(*intro));
-       os_memset(Nx, 0, sizeof(Nx));
-       EVP_PKEY_CTX_free(ctx);
-       os_free(own_conn);
-       os_free(signed_connector);
-       os_free(info.payload);
-       EVP_PKEY_free(own_key);
-       wpabuf_free(own_key_pub);
-       EVP_PKEY_free(peer_key);
-       EVP_PKEY_free(csign);
-       json_free(root);
-       json_free(own_root);
+       bin_clear_free(unwrapped, unwrapped_len);
        return ret;
 }
 
 
-static EVP_PKEY * dpp_pkex_get_role_elem(const struct dpp_curve_params *curve,
-                                        int init)
+struct wpabuf * dpp_build_conf_result(struct dpp_authentication *auth,
+                                     enum dpp_status_error status)
 {
-       EC_GROUP *group;
-       size_t len = curve->prime_len;
-       const u8 *x, *y;
+       struct wpabuf *msg, *clear;
+       size_t nonce_len, clear_len, attr_len;
+       const u8 *addr[2];
+       size_t len[2];
+       u8 *wrapped;
 
-       switch (curve->ike_group) {
-       case 19:
-               x = init ? pkex_init_x_p256 : pkex_resp_x_p256;
-               y = init ? pkex_init_y_p256 : pkex_resp_y_p256;
-               break;
-       case 20:
-               x = init ? pkex_init_x_p384 : pkex_resp_x_p384;
-               y = init ? pkex_init_y_p384 : pkex_resp_y_p384;
-               break;
-       case 21:
-               x = init ? pkex_init_x_p521 : pkex_resp_x_p521;
-               y = init ? pkex_init_y_p521 : pkex_resp_y_p521;
-               break;
-       case 28:
-               x = init ? pkex_init_x_bp_p256r1 : pkex_resp_x_bp_p256r1;
-               y = init ? pkex_init_y_bp_p256r1 : pkex_resp_y_bp_p256r1;
-               break;
-       case 29:
-               x = init ? pkex_init_x_bp_p384r1 : pkex_resp_x_bp_p384r1;
-               y = init ? pkex_init_y_bp_p384r1 : pkex_resp_y_bp_p384r1;
-               break;
-       case 30:
-               x = init ? pkex_init_x_bp_p512r1 : pkex_resp_x_bp_p512r1;
-               y = init ? pkex_init_y_bp_p512r1 : pkex_resp_y_bp_p512r1;
-               break;
-       default:
-               return NULL;
-       }
+       nonce_len = auth->curve->nonce_len;
+       clear_len = 5 + 4 + nonce_len;
+       attr_len = 4 + clear_len + AES_BLOCK_SIZE;
+       clear = wpabuf_alloc(clear_len);
+       msg = dpp_alloc_msg(DPP_PA_CONFIGURATION_RESULT, attr_len);
+       if (!clear || !msg)
+               goto fail;
 
-       group = EC_GROUP_new_by_curve_name(OBJ_txt2nid(curve->name));
-       if (!group)
-               return NULL;
-       return dpp_set_pubkey_point_group(group, x, y, len);
-}
+       /* DPP Status */
+       dpp_build_attr_status(clear, status);
 
+       /* E-nonce */
+       wpabuf_put_le16(clear, DPP_ATTR_ENROLLEE_NONCE);
+       wpabuf_put_le16(clear, nonce_len);
+       wpabuf_put_data(clear, auth->e_nonce, nonce_len);
 
-static EC_POINT * dpp_pkex_derive_Qi(const struct dpp_curve_params *curve,
-                                    const u8 *mac_init, const char *code,
-                                    const char *identifier, BN_CTX *bnctx,
-                                    const EC_GROUP **ret_group)
-{
-       u8 hash[DPP_MAX_HASH_LEN];
-       const u8 *addr[3];
-       size_t len[3];
-       unsigned int num_elem = 0;
-       EC_POINT *Qi = NULL;
-       EVP_PKEY *Pi = NULL;
-       EC_KEY *Pi_ec = NULL;
-       const EC_POINT *Pi_point;
-       BIGNUM *hash_bn = NULL;
-       const EC_GROUP *group = NULL;
-       EC_GROUP *group2 = NULL;
+       /* OUI, OUI type, Crypto Suite, DPP frame type */
+       addr[0] = wpabuf_head_u8(msg) + 2;
+       len[0] = 3 + 1 + 1 + 1;
+       wpa_hexdump(MSG_DEBUG, "DDP: AES-SIV AD[0]", addr[0], len[0]);
 
-       /* Qi = H(MAC-Initiator | [identifier |] code) * Pi */
+       /* Attributes before Wrapped Data (none) */
+       addr[1] = wpabuf_put(msg, 0);
+       len[1] = 0;
+       wpa_hexdump(MSG_DEBUG, "DDP: AES-SIV AD[1]", addr[1], len[1]);
 
-       wpa_printf(MSG_DEBUG, "DPP: MAC-Initiator: " MACSTR, MAC2STR(mac_init));
-       addr[num_elem] = mac_init;
-       len[num_elem] = ETH_ALEN;
-       num_elem++;
-       if (identifier) {
-               wpa_printf(MSG_DEBUG, "DPP: code identifier: %s",
-                          identifier);
-               addr[num_elem] = (const u8 *) identifier;
-               len[num_elem] = os_strlen(identifier);
-               num_elem++;
-       }
-       wpa_hexdump_ascii_key(MSG_DEBUG, "DPP: code", code, os_strlen(code));
-       addr[num_elem] = (const u8 *) code;
-       len[num_elem] = os_strlen(code);
-       num_elem++;
-       if (dpp_hash_vector(curve, num_elem, addr, len, hash) < 0)
-               goto fail;
-       wpa_hexdump_key(MSG_DEBUG,
-                       "DPP: H(MAC-Initiator | [identifier |] code)",
-                       hash, curve->hash_len);
-       Pi = dpp_pkex_get_role_elem(curve, 1);
-       if (!Pi)
-               goto fail;
-       dpp_debug_print_key("DPP: Pi", Pi);
-       Pi_ec = EVP_PKEY_get1_EC_KEY(Pi);
-       if (!Pi_ec)
-               goto fail;
-       Pi_point = EC_KEY_get0_public_key(Pi_ec);
+       /* Wrapped Data */
+       wpabuf_put_le16(msg, DPP_ATTR_WRAPPED_DATA);
+       wpabuf_put_le16(msg, wpabuf_len(clear) + AES_BLOCK_SIZE);
+       wrapped = wpabuf_put(msg, wpabuf_len(clear) + AES_BLOCK_SIZE);
 
-       group = EC_KEY_get0_group(Pi_ec);
-       if (!group)
-               goto fail;
-       group2 = EC_GROUP_dup(group);
-       if (!group2)
-               goto fail;
-       Qi = EC_POINT_new(group2);
-       if (!Qi) {
-               EC_GROUP_free(group2);
-               goto fail;
-       }
-       hash_bn = BN_bin2bn(hash, curve->hash_len, NULL);
-       if (!hash_bn ||
-           EC_POINT_mul(group2, Qi, NULL, Pi_point, hash_bn, bnctx) != 1)
-               goto fail;
-       if (EC_POINT_is_at_infinity(group, Qi)) {
-               wpa_printf(MSG_INFO, "DPP: Qi is the point-at-infinity");
+       wpa_hexdump_buf(MSG_DEBUG, "DPP: AES-SIV cleartext", clear);
+       if (aes_siv_encrypt(auth->ke, auth->curve->hash_len,
+                           wpabuf_head(clear), wpabuf_len(clear),
+                           2, addr, len, wrapped) < 0)
                goto fail;
-       }
-       dpp_debug_print_point("DPP: Qi", group, Qi);
-out:
-       EC_KEY_free(Pi_ec);
-       EVP_PKEY_free(Pi);
-       BN_clear_free(hash_bn);
-       if (ret_group)
-               *ret_group = group2;
-       return Qi;
+
+       wpa_hexdump_buf(MSG_DEBUG, "DPP: Configuration Result attributes", msg);
+       wpabuf_free(clear);
+       return msg;
 fail:
-       EC_POINT_free(Qi);
-       Qi = NULL;
-       goto out;
+       wpabuf_free(clear);
+       wpabuf_free(msg);
+       return NULL;
 }
 
 
-static EC_POINT * dpp_pkex_derive_Qr(const struct dpp_curve_params *curve,
-                                    const u8 *mac_resp, const char *code,
-                                    const char *identifier, BN_CTX *bnctx,
-                                    const EC_GROUP **ret_group)
+static int valid_channel_list(const char *val)
 {
-       u8 hash[DPP_MAX_HASH_LEN];
-       const u8 *addr[3];
-       size_t len[3];
-       unsigned int num_elem = 0;
-       EC_POINT *Qr = NULL;
-       EVP_PKEY *Pr = NULL;
-       EC_KEY *Pr_ec = NULL;
-       const EC_POINT *Pr_point;
-       BIGNUM *hash_bn = NULL;
-       const EC_GROUP *group = NULL;
-       EC_GROUP *group2 = NULL;
+       while (*val) {
+               if (!((*val >= '0' && *val <= '9') ||
+                     *val == '/' || *val == ','))
+                       return 0;
+               val++;
+       }
 
-       /* Qr = H(MAC-Responder | | [identifier | ] code) * Pr */
+       return 1;
+}
 
-       wpa_printf(MSG_DEBUG, "DPP: MAC-Responder: " MACSTR, MAC2STR(mac_resp));
-       addr[num_elem] = mac_resp;
-       len[num_elem] = ETH_ALEN;
-       num_elem++;
-       if (identifier) {
-               wpa_printf(MSG_DEBUG, "DPP: code identifier: %s",
-                          identifier);
-               addr[num_elem] = (const u8 *) identifier;
-               len[num_elem] = os_strlen(identifier);
-               num_elem++;
+
+enum dpp_status_error dpp_conn_status_result_rx(struct dpp_authentication *auth,
+                                               const u8 *hdr,
+                                               const u8 *attr_start,
+                                               size_t attr_len,
+                                               u8 *ssid, size_t *ssid_len,
+                                               char **channel_list)
+{
+       const u8 *wrapped_data, *status, *e_nonce;
+       u16 wrapped_data_len, status_len, e_nonce_len;
+       const u8 *addr[2];
+       size_t len[2];
+       u8 *unwrapped = NULL;
+       size_t unwrapped_len = 0;
+       enum dpp_status_error ret = 256;
+       struct json_token *root = NULL, *token;
+       struct wpabuf *ssid64;
+
+       *ssid_len = 0;
+       *channel_list = NULL;
+
+       wrapped_data = dpp_get_attr(attr_start, attr_len, DPP_ATTR_WRAPPED_DATA,
+                                   &wrapped_data_len);
+       if (!wrapped_data || wrapped_data_len < AES_BLOCK_SIZE) {
+               dpp_auth_fail(auth,
+                             "Missing or invalid required Wrapped Data attribute");
+               goto fail;
        }
-       wpa_hexdump_ascii_key(MSG_DEBUG, "DPP: code", code, os_strlen(code));
-       addr[num_elem] = (const u8 *) code;
-       len[num_elem] = os_strlen(code);
-       num_elem++;
-       if (dpp_hash_vector(curve, num_elem, addr, len, hash) < 0)
+       wpa_hexdump(MSG_DEBUG, "DPP: Wrapped data",
+                   wrapped_data, wrapped_data_len);
+
+       attr_len = wrapped_data - 4 - attr_start;
+
+       addr[0] = hdr;
+       len[0] = DPP_HDR_LEN;
+       addr[1] = attr_start;
+       len[1] = attr_len;
+       wpa_hexdump(MSG_DEBUG, "DDP: AES-SIV AD[0]", addr[0], len[0]);
+       wpa_hexdump(MSG_DEBUG, "DDP: AES-SIV AD[1]", addr[1], len[1]);
+       wpa_hexdump(MSG_DEBUG, "DPP: AES-SIV ciphertext",
+                   wrapped_data, wrapped_data_len);
+       unwrapped_len = wrapped_data_len - AES_BLOCK_SIZE;
+       unwrapped = os_malloc(unwrapped_len);
+       if (!unwrapped)
                goto fail;
-       wpa_hexdump_key(MSG_DEBUG,
-                       "DPP: H(MAC-Responder | [identifier |] code)",
-                       hash, curve->hash_len);
-       Pr = dpp_pkex_get_role_elem(curve, 0);
-       if (!Pr)
+       if (aes_siv_decrypt(auth->ke, auth->curve->hash_len,
+                           wrapped_data, wrapped_data_len,
+                           2, addr, len, unwrapped) < 0) {
+               dpp_auth_fail(auth, "AES-SIV decryption failed");
                goto fail;
-       dpp_debug_print_key("DPP: Pr", Pr);
-       Pr_ec = EVP_PKEY_get1_EC_KEY(Pr);
-       if (!Pr_ec)
+       }
+       wpa_hexdump(MSG_DEBUG, "DPP: AES-SIV cleartext",
+                   unwrapped, unwrapped_len);
+
+       if (dpp_check_attrs(unwrapped, unwrapped_len) < 0) {
+               dpp_auth_fail(auth, "Invalid attribute in unwrapped data");
                goto fail;
-       Pr_point = EC_KEY_get0_public_key(Pr_ec);
+       }
 
-       group = EC_KEY_get0_group(Pr_ec);
-       if (!group)
+       e_nonce = dpp_get_attr(unwrapped, unwrapped_len,
+                              DPP_ATTR_ENROLLEE_NONCE,
+                              &e_nonce_len);
+       if (!e_nonce || e_nonce_len != auth->curve->nonce_len) {
+               dpp_auth_fail(auth,
+                             "Missing or invalid Enrollee Nonce attribute");
                goto fail;
-       group2 = EC_GROUP_dup(group);
-       if (!group2)
+       }
+       wpa_hexdump(MSG_DEBUG, "DPP: Enrollee Nonce", e_nonce, e_nonce_len);
+       if (os_memcmp(e_nonce, auth->e_nonce, e_nonce_len) != 0) {
+               dpp_auth_fail(auth, "Enrollee Nonce mismatch");
+               wpa_hexdump(MSG_DEBUG, "DPP: Expected Enrollee Nonce",
+                           auth->e_nonce, e_nonce_len);
                goto fail;
-       Qr = EC_POINT_new(group2);
-       if (!Qr) {
-               EC_GROUP_free(group2);
+       }
+
+       status = dpp_get_attr(unwrapped, unwrapped_len, DPP_ATTR_CONN_STATUS,
+                             &status_len);
+       if (!status) {
+               dpp_auth_fail(auth,
+                             "Missing required DPP Connection Status attribute");
                goto fail;
        }
-       hash_bn = BN_bin2bn(hash, curve->hash_len, NULL);
-       if (!hash_bn ||
-           EC_POINT_mul(group2, Qr, NULL, Pr_point, hash_bn, bnctx) != 1)
+       wpa_hexdump_ascii(MSG_DEBUG, "DPP: connStatus JSON",
+                         status, status_len);
+
+       root = json_parse((const char *) status, status_len);
+       if (!root) {
+               dpp_auth_fail(auth, "Could not parse connStatus");
                goto fail;
-       if (EC_POINT_is_at_infinity(group, Qr)) {
-               wpa_printf(MSG_INFO, "DPP: Qr is the point-at-infinity");
+       }
+
+       ssid64 = json_get_member_base64url(root, "ssid64");
+       if (ssid64 && wpabuf_len(ssid64) <= SSID_MAX_LEN) {
+               *ssid_len = wpabuf_len(ssid64);
+               os_memcpy(ssid, wpabuf_head(ssid64), *ssid_len);
+       }
+       wpabuf_free(ssid64);
+
+       token = json_get_member(root, "channelList");
+       if (token && token->type == JSON_STRING &&
+           valid_channel_list(token->string))
+               *channel_list = os_strdup(token->string);
+
+       token = json_get_member(root, "result");
+       if (!token || token->type != JSON_NUMBER) {
+               dpp_auth_fail(auth, "No connStatus - result");
                goto fail;
        }
-       dpp_debug_print_point("DPP: Qr", group, Qr);
-out:
-       EC_KEY_free(Pr_ec);
-       EVP_PKEY_free(Pr);
-       BN_clear_free(hash_bn);
-       if (ret_group)
-               *ret_group = group2;
-       return Qr;
+       wpa_printf(MSG_DEBUG, "DPP: result %d", token->number);
+       ret = token->number;
+
 fail:
-       EC_POINT_free(Qr);
-       Qr = NULL;
-       goto out;
+       json_free(root);
+       bin_clear_free(unwrapped, unwrapped_len);
+       return ret;
 }
 
 
-#ifdef CONFIG_TESTING_OPTIONS
-static int dpp_test_gen_invalid_key(struct wpabuf *msg,
-                                   const struct dpp_curve_params *curve)
+struct wpabuf * dpp_build_conn_status_result(struct dpp_authentication *auth,
+                                            enum dpp_status_error result,
+                                            const u8 *ssid, size_t ssid_len,
+                                            const char *channel_list)
 {
-       BN_CTX *ctx;
-       BIGNUM *x, *y;
-       int ret = -1;
-       EC_GROUP *group;
-       EC_POINT *point;
-
-       group = EC_GROUP_new_by_curve_name(OBJ_txt2nid(curve->name));
-       if (!group)
-               return -1;
+       struct wpabuf *msg = NULL, *clear = NULL, *json;
+       size_t nonce_len, clear_len, attr_len;
+       const u8 *addr[2];
+       size_t len[2];
+       u8 *wrapped;
 
-       ctx = BN_CTX_new();
-       point = EC_POINT_new(group);
-       x = BN_new();
-       y = BN_new();
-       if (!ctx || !point || !x || !y)
-               goto fail;
+       json = wpabuf_alloc(1000);
+       if (!json)
+               return NULL;
+       json_start_object(json, NULL);
+       json_add_int(json, "result", result);
+       if (ssid) {
+               json_value_sep(json);
+               if (json_add_base64url(json, "ssid64", ssid, ssid_len) < 0)
+                       goto fail;
+       }
+       if (channel_list) {
+               json_value_sep(json);
+               json_add_string(json, "channelList", channel_list);
+       }
+       json_end_object(json);
+       wpa_hexdump_ascii(MSG_DEBUG, "DPP: connStatus JSON",
+                         wpabuf_head(json), wpabuf_len(json));
 
-       if (BN_rand(x, curve->prime_len * 8, 0, 0) != 1)
+       nonce_len = auth->curve->nonce_len;
+       clear_len = 5 + 4 + nonce_len + 4 + wpabuf_len(json);
+       attr_len = 4 + clear_len + AES_BLOCK_SIZE;
+       clear = wpabuf_alloc(clear_len);
+       msg = dpp_alloc_msg(DPP_PA_CONNECTION_STATUS_RESULT, attr_len);
+       if (!clear || !msg)
                goto fail;
 
-       /* Generate a random y coordinate that results in a point that is not
-        * on the curve. */
-       for (;;) {
-               if (BN_rand(y, curve->prime_len * 8, 0, 0) != 1)
-                       goto fail;
+       /* E-nonce */
+       wpabuf_put_le16(clear, DPP_ATTR_ENROLLEE_NONCE);
+       wpabuf_put_le16(clear, nonce_len);
+       wpabuf_put_data(clear, auth->e_nonce, nonce_len);
 
-               if (EC_POINT_set_affine_coordinates_GFp(group, point, x, y,
-                                                       ctx) != 1) {
-#ifdef OPENSSL_IS_BORINGSSL
-               /* Unlike OpenSSL, BoringSSL returns an error from
-                * EC_POINT_set_affine_coordinates_GFp() is not on the curve. */
-                       break;
-#else /* OPENSSL_IS_BORINGSSL */
-                       goto fail;
-#endif /* OPENSSL_IS_BORINGSSL */
-               }
+       /* DPP Connection Status */
+       wpabuf_put_le16(clear, DPP_ATTR_CONN_STATUS);
+       wpabuf_put_le16(clear, wpabuf_len(json));
+       wpabuf_put_buf(clear, json);
 
-               if (!EC_POINT_is_on_curve(group, point, ctx))
-                       break;
-       }
+       /* OUI, OUI type, Crypto Suite, DPP frame type */
+       addr[0] = wpabuf_head_u8(msg) + 2;
+       len[0] = 3 + 1 + 1 + 1;
+       wpa_hexdump(MSG_DEBUG, "DDP: AES-SIV AD[0]", addr[0], len[0]);
 
-       if (dpp_bn2bin_pad(x, wpabuf_put(msg, curve->prime_len),
-                          curve->prime_len) < 0 ||
-           dpp_bn2bin_pad(y, wpabuf_put(msg, curve->prime_len),
-                          curve->prime_len) < 0)
-               goto fail;
+       /* Attributes before Wrapped Data (none) */
+       addr[1] = wpabuf_put(msg, 0);
+       len[1] = 0;
+       wpa_hexdump(MSG_DEBUG, "DDP: AES-SIV AD[1]", addr[1], len[1]);
 
-       ret = 0;
-fail:
-       if (ret < 0)
-               wpa_printf(MSG_INFO, "DPP: Failed to generate invalid key");
-       BN_free(x);
-       BN_free(y);
-       EC_POINT_free(point);
-       BN_CTX_free(ctx);
+       /* Wrapped Data */
+       wpabuf_put_le16(msg, DPP_ATTR_WRAPPED_DATA);
+       wpabuf_put_le16(msg, wpabuf_len(clear) + AES_BLOCK_SIZE);
+       wrapped = wpabuf_put(msg, wpabuf_len(clear) + AES_BLOCK_SIZE);
 
-       return ret;
-}
-#endif /* CONFIG_TESTING_OPTIONS */
+       wpa_hexdump_buf(MSG_DEBUG, "DPP: AES-SIV cleartext", clear);
+       if (aes_siv_encrypt(auth->ke, auth->curve->hash_len,
+                           wpabuf_head(clear), wpabuf_len(clear),
+                           2, addr, len, wrapped) < 0)
+               goto fail;
 
+       wpa_hexdump_buf(MSG_DEBUG, "DPP: Connection Status Result attributes",
+                       msg);
+       wpabuf_free(json);
+       wpabuf_free(clear);
+       return msg;
+fail:
+       wpabuf_free(json);
+       wpabuf_free(clear);
+       wpabuf_free(msg);
+       return NULL;
+}
 
-static struct wpabuf * dpp_pkex_build_exchange_req(struct dpp_pkex *pkex)
-{
-       EC_KEY *X_ec = NULL;
-       const EC_POINT *X_point;
-       BN_CTX *bnctx = NULL;
-       const EC_GROUP *group;
-       EC_POINT *Qi = NULL, *M = NULL;
-       struct wpabuf *M_buf = NULL;
-       BIGNUM *Mx = NULL, *My = NULL;
-       struct wpabuf *msg = NULL;
-       size_t attr_len;
-       const struct dpp_curve_params *curve = pkex->own_bi->curve;
+#endif /* CONFIG_DPP2 */
 
-       wpa_printf(MSG_DEBUG, "DPP: Build PKEX Exchange Request");
 
-       /* Qi = H(MAC-Initiator | [identifier |] code) * Pi */
-       bnctx = BN_CTX_new();
-       if (!bnctx)
-               goto fail;
-       Qi = dpp_pkex_derive_Qi(curve, pkex->own_mac, pkex->code,
-                               pkex->identifier, bnctx, &group);
-       if (!Qi)
-               goto fail;
+void dpp_configurator_free(struct dpp_configurator *conf)
+{
+       if (!conf)
+               return;
+       EVP_PKEY_free(conf->csign);
+       os_free(conf->kid);
+       os_free(conf);
+}
 
-       /* Generate a random ephemeral keypair x/X */
-#ifdef CONFIG_TESTING_OPTIONS
-       if (dpp_pkex_ephemeral_key_override_len) {
-               const struct dpp_curve_params *tmp_curve;
 
-               wpa_printf(MSG_INFO,
-                          "DPP: TESTING - override ephemeral key x/X");
-               pkex->x = dpp_set_keypair(&tmp_curve,
-                                         dpp_pkex_ephemeral_key_override,
-                                         dpp_pkex_ephemeral_key_override_len);
-       } else {
-               pkex->x = dpp_gen_keypair(curve);
-       }
-#else /* CONFIG_TESTING_OPTIONS */
-       pkex->x = dpp_gen_keypair(curve);
-#endif /* CONFIG_TESTING_OPTIONS */
-       if (!pkex->x)
-               goto fail;
+int dpp_configurator_get_key(const struct dpp_configurator *conf, char *buf,
+                            size_t buflen)
+{
+       EC_KEY *eckey;
+       int key_len, ret = -1;
+       unsigned char *key = NULL;
 
-       /* M = X + Qi */
-       X_ec = EVP_PKEY_get1_EC_KEY(pkex->x);
-       if (!X_ec)
-               goto fail;
-       X_point = EC_KEY_get0_public_key(X_ec);
-       if (!X_point)
-               goto fail;
-       dpp_debug_print_point("DPP: X", group, X_point);
-       M = EC_POINT_new(group);
-       Mx = BN_new();
-       My = BN_new();
-       if (!M || !Mx || !My ||
-           EC_POINT_add(group, M, X_point, Qi, bnctx) != 1 ||
-           EC_POINT_get_affine_coordinates_GFp(group, M, Mx, My, bnctx) != 1)
-               goto fail;
-       dpp_debug_print_point("DPP: M", group, M);
+       if (!conf->csign)
+               return -1;
 
-       /* Initiator -> Responder: group, [identifier,] M */
-       attr_len = 4 + 2;
-       if (pkex->identifier)
-               attr_len += 4 + os_strlen(pkex->identifier);
-       attr_len += 4 + 2 * curve->prime_len;
-       msg = dpp_alloc_msg(DPP_PA_PKEX_EXCHANGE_REQ, attr_len);
-       if (!msg)
-               goto fail;
+       eckey = EVP_PKEY_get1_EC_KEY(conf->csign);
+       if (!eckey)
+               return -1;
 
-#ifdef CONFIG_TESTING_OPTIONS
-       if (dpp_test == DPP_TEST_NO_FINITE_CYCLIC_GROUP_PKEX_EXCHANGE_REQ) {
-               wpa_printf(MSG_INFO, "DPP: TESTING - no Finite Cyclic Group");
-               goto skip_finite_cyclic_group;
-       }
-#endif /* CONFIG_TESTING_OPTIONS */
+       key_len = i2d_ECPrivateKey(eckey, &key);
+       if (key_len > 0)
+               ret = wpa_snprintf_hex(buf, buflen, key, key_len);
 
-       /* Finite Cyclic Group attribute */
-       wpabuf_put_le16(msg, DPP_ATTR_FINITE_CYCLIC_GROUP);
-       wpabuf_put_le16(msg, 2);
-       wpabuf_put_le16(msg, curve->ike_group);
+       EC_KEY_free(eckey);
+       OPENSSL_free(key);
+       return ret;
+}
 
-#ifdef CONFIG_TESTING_OPTIONS
-skip_finite_cyclic_group:
-#endif /* CONFIG_TESTING_OPTIONS */
 
-       /* Code Identifier attribute */
-       if (pkex->identifier) {
-               wpabuf_put_le16(msg, DPP_ATTR_CODE_IDENTIFIER);
-               wpabuf_put_le16(msg, os_strlen(pkex->identifier));
-               wpabuf_put_str(msg, pkex->identifier);
-       }
+static int dpp_configurator_gen_kid(struct dpp_configurator *conf)
+{
+       struct wpabuf *csign_pub = NULL;
+       u8 kid_hash[SHA256_MAC_LEN];
+       const u8 *addr[1];
+       size_t len[1];
+       int res;
 
-#ifdef CONFIG_TESTING_OPTIONS
-       if (dpp_test == DPP_TEST_NO_ENCRYPTED_KEY_PKEX_EXCHANGE_REQ) {
-               wpa_printf(MSG_INFO, "DPP: TESTING - no Encrypted Key");
-               goto out;
+       csign_pub = dpp_get_pubkey_point(conf->csign, 1);
+       if (!csign_pub) {
+               wpa_printf(MSG_INFO, "DPP: Failed to extract C-sign-key");
+               return -1;
        }
-#endif /* CONFIG_TESTING_OPTIONS */
-
-       /* M in Encrypted Key attribute */
-       wpabuf_put_le16(msg, DPP_ATTR_ENCRYPTED_KEY);
-       wpabuf_put_le16(msg, 2 * curve->prime_len);
 
-#ifdef CONFIG_TESTING_OPTIONS
-       if (dpp_test == DPP_TEST_INVALID_ENCRYPTED_KEY_PKEX_EXCHANGE_REQ) {
-               wpa_printf(MSG_INFO, "DPP: TESTING - invalid Encrypted Key");
-               if (dpp_test_gen_invalid_key(msg, curve) < 0)
-                       goto fail;
-               goto out;
+       /* kid = SHA256(ANSI X9.63 uncompressed C-sign-key) */
+       addr[0] = wpabuf_head(csign_pub);
+       len[0] = wpabuf_len(csign_pub);
+       res = sha256_vector(1, addr, len, kid_hash);
+       wpabuf_free(csign_pub);
+       if (res < 0) {
+               wpa_printf(MSG_DEBUG,
+                          "DPP: Failed to derive kid for C-sign-key");
+               return -1;
        }
-#endif /* CONFIG_TESTING_OPTIONS */
-
-       if (dpp_bn2bin_pad(Mx, wpabuf_put(msg, curve->prime_len),
-                          curve->prime_len) < 0 ||
-           dpp_bn2bin_pad(Mx, pkex->Mx, curve->prime_len) < 0 ||
-           dpp_bn2bin_pad(My, wpabuf_put(msg, curve->prime_len),
-                          curve->prime_len) < 0)
-               goto fail;
-
-out:
-       wpabuf_free(M_buf);
-       EC_KEY_free(X_ec);
-       EC_POINT_free(M);
-       EC_POINT_free(Qi);
-       BN_clear_free(Mx);
-       BN_clear_free(My);
-       BN_CTX_free(bnctx);
-       return msg;
-fail:
-       wpa_printf(MSG_INFO, "DPP: Failed to build PKEX Exchange Request");
-       wpabuf_free(msg);
-       msg = NULL;
-       goto out;
-}
 
-
-static void dpp_pkex_fail(struct dpp_pkex *pkex, const char *txt)
-{
-       wpa_msg(pkex->msg_ctx, MSG_INFO, DPP_EVENT_FAIL "%s", txt);
+       conf->kid = base64_url_encode(kid_hash, sizeof(kid_hash), NULL);
+       return conf->kid ? 0 : -1;
 }
 
 
-struct dpp_pkex * dpp_pkex_init(void *msg_ctx, struct dpp_bootstrap_info *bi,
-                               const u8 *own_mac,
-                               const char *identifier,
-                               const char *code)
+struct dpp_configurator *
+dpp_keygen_configurator(const char *curve, const u8 *privkey,
+                       size_t privkey_len)
 {
-       struct dpp_pkex *pkex;
-
-#ifdef CONFIG_TESTING_OPTIONS
-       if (!is_zero_ether_addr(dpp_pkex_own_mac_override)) {
-               wpa_printf(MSG_INFO, "DPP: TESTING - own_mac override " MACSTR,
-                          MAC2STR(dpp_pkex_own_mac_override));
-               own_mac = dpp_pkex_own_mac_override;
-       }
-#endif /* CONFIG_TESTING_OPTIONS */
+       struct dpp_configurator *conf;
 
-       pkex = os_zalloc(sizeof(*pkex));
-       if (!pkex)
+       conf = os_zalloc(sizeof(*conf));
+       if (!conf)
                return NULL;
-       pkex->msg_ctx = msg_ctx;
-       pkex->initiator = 1;
-       pkex->own_bi = bi;
-       os_memcpy(pkex->own_mac, own_mac, ETH_ALEN);
-       if (identifier) {
-               pkex->identifier = os_strdup(identifier);
-               if (!pkex->identifier)
-                       goto fail;
+
+       if (!curve) {
+               conf->curve = &dpp_curves[0];
+       } else {
+               conf->curve = dpp_get_curve_name(curve);
+               if (!conf->curve) {
+                       wpa_printf(MSG_INFO, "DPP: Unsupported curve: %s",
+                                  curve);
+                       os_free(conf);
+                       return NULL;
+               }
        }
-       pkex->code = os_strdup(code);
-       if (!pkex->code)
+       if (privkey)
+               conf->csign = dpp_set_keypair(&conf->curve, privkey,
+                                             privkey_len);
+       else
+               conf->csign = dpp_gen_keypair(conf->curve);
+       if (!conf->csign)
                goto fail;
-       pkex->exchange_req = dpp_pkex_build_exchange_req(pkex);
-       if (!pkex->exchange_req)
+       conf->own = 1;
+
+       if (dpp_configurator_gen_kid(conf) < 0)
                goto fail;
-       return pkex;
+       return conf;
 fail:
-       dpp_pkex_free(pkex);
+       dpp_configurator_free(conf);
        return NULL;
 }
 
 
-static struct wpabuf *
-dpp_pkex_build_exchange_resp(struct dpp_pkex *pkex,
-                            enum dpp_status_error status,
-                            const BIGNUM *Nx, const BIGNUM *Ny)
+int dpp_configurator_own_config(struct dpp_authentication *auth,
+                               const char *curve, int ap)
 {
-       struct wpabuf *msg = NULL;
-       size_t attr_len;
-       const struct dpp_curve_params *curve = pkex->own_bi->curve;
+       struct wpabuf *conf_obj;
+       int ret = -1;
 
-       /* Initiator -> Responder: DPP Status, [identifier,] N */
-       attr_len = 4 + 1;
-       if (pkex->identifier)
-               attr_len += 4 + os_strlen(pkex->identifier);
-       attr_len += 4 + 2 * curve->prime_len;
-       msg = dpp_alloc_msg(DPP_PA_PKEX_EXCHANGE_RESP, attr_len);
-       if (!msg)
-               goto fail;
+       if (!auth->conf) {
+               wpa_printf(MSG_DEBUG, "DPP: No configurator specified");
+               return -1;
+       }
 
-#ifdef CONFIG_TESTING_OPTIONS
-       if (dpp_test == DPP_TEST_NO_STATUS_PKEX_EXCHANGE_RESP) {
-               wpa_printf(MSG_INFO, "DPP: TESTING - no Status");
-               goto skip_status;
+       if (!curve) {
+               auth->curve = &dpp_curves[0];
+       } else {
+               auth->curve = dpp_get_curve_name(curve);
+               if (!auth->curve) {
+                       wpa_printf(MSG_INFO, "DPP: Unsupported curve: %s",
+                                  curve);
+                       return -1;
+               }
        }
+       wpa_printf(MSG_DEBUG,
+                  "DPP: Building own configuration/connector with curve %s",
+                  auth->curve->name);
 
-       if (dpp_test == DPP_TEST_INVALID_STATUS_PKEX_EXCHANGE_RESP) {
-               wpa_printf(MSG_INFO, "DPP: TESTING - invalid Status");
-               status = 255;
+       auth->own_protocol_key = dpp_gen_keypair(auth->curve);
+       if (!auth->own_protocol_key)
+               return -1;
+       dpp_copy_netaccesskey(auth, &auth->conf_obj[0]);
+       auth->peer_protocol_key = auth->own_protocol_key;
+       dpp_copy_csign(&auth->conf_obj[0], auth->conf->csign);
+
+       conf_obj = dpp_build_conf_obj(auth, ap, 0);
+       if (!conf_obj) {
+               wpabuf_free(auth->conf_obj[0].c_sign_key);
+               auth->conf_obj[0].c_sign_key = NULL;
+               goto fail;
        }
-#endif /* CONFIG_TESTING_OPTIONS */
+       ret = dpp_parse_conf_obj(auth, wpabuf_head(conf_obj),
+                                wpabuf_len(conf_obj));
+fail:
+       wpabuf_free(conf_obj);
+       auth->peer_protocol_key = NULL;
+       return ret;
+}
 
-       /* DPP Status */
-       dpp_build_attr_status(msg, status);
 
-#ifdef CONFIG_TESTING_OPTIONS
-skip_status:
-#endif /* CONFIG_TESTING_OPTIONS */
+static int dpp_compatible_netrole(const char *role1, const char *role2)
+{
+       return (os_strcmp(role1, "sta") == 0 && os_strcmp(role2, "ap") == 0) ||
+               (os_strcmp(role1, "ap") == 0 && os_strcmp(role2, "sta") == 0);
+}
 
-       /* Code Identifier attribute */
-       if (pkex->identifier) {
-               wpabuf_put_le16(msg, DPP_ATTR_CODE_IDENTIFIER);
-               wpabuf_put_le16(msg, os_strlen(pkex->identifier));
-               wpabuf_put_str(msg, pkex->identifier);
-       }
 
-       if (status != DPP_STATUS_OK)
-               goto skip_encrypted_key;
+static int dpp_connector_compatible_group(struct json_token *root,
+                                         const char *group_id,
+                                         const char *net_role)
+{
+       struct json_token *groups, *token;
 
-#ifdef CONFIG_TESTING_OPTIONS
-       if (dpp_test == DPP_TEST_NO_ENCRYPTED_KEY_PKEX_EXCHANGE_RESP) {
-               wpa_printf(MSG_INFO, "DPP: TESTING - no Encrypted Key");
-               goto skip_encrypted_key;
+       groups = json_get_member(root, "groups");
+       if (!groups || groups->type != JSON_ARRAY)
+               return 0;
+
+       for (token = groups->child; token; token = token->sibling) {
+               struct json_token *id, *role;
+
+               id = json_get_member(token, "groupId");
+               if (!id || id->type != JSON_STRING)
+                       continue;
+
+               role = json_get_member(token, "netRole");
+               if (!role || role->type != JSON_STRING)
+                       continue;
+
+               if (os_strcmp(id->string, "*") != 0 &&
+                   os_strcmp(group_id, "*") != 0 &&
+                   os_strcmp(id->string, group_id) != 0)
+                       continue;
+
+               if (dpp_compatible_netrole(role->string, net_role))
+                       return 1;
        }
-#endif /* CONFIG_TESTING_OPTIONS */
 
-       /* N in Encrypted Key attribute */
-       wpabuf_put_le16(msg, DPP_ATTR_ENCRYPTED_KEY);
-       wpabuf_put_le16(msg, 2 * curve->prime_len);
+       return 0;
+}
 
-#ifdef CONFIG_TESTING_OPTIONS
-       if (dpp_test == DPP_TEST_INVALID_ENCRYPTED_KEY_PKEX_EXCHANGE_RESP) {
-               wpa_printf(MSG_INFO, "DPP: TESTING - invalid Encrypted Key");
-               if (dpp_test_gen_invalid_key(msg, curve) < 0)
-                       goto fail;
-               goto skip_encrypted_key;
+
+static int dpp_connector_match_groups(struct json_token *own_root,
+                                     struct json_token *peer_root)
+{
+       struct json_token *groups, *token;
+
+       groups = json_get_member(peer_root, "groups");
+       if (!groups || groups->type != JSON_ARRAY) {
+               wpa_printf(MSG_DEBUG, "DPP: No peer groups array found");
+               return 0;
        }
-#endif /* CONFIG_TESTING_OPTIONS */
 
-       if (dpp_bn2bin_pad(Nx, wpabuf_put(msg, curve->prime_len),
-                          curve->prime_len) < 0 ||
-           dpp_bn2bin_pad(Nx, pkex->Nx, curve->prime_len) < 0 ||
-           dpp_bn2bin_pad(Ny, wpabuf_put(msg, curve->prime_len),
-                          curve->prime_len) < 0)
-               goto fail;
+       for (token = groups->child; token; token = token->sibling) {
+               struct json_token *id, *role;
 
-skip_encrypted_key:
-       if (status == DPP_STATUS_BAD_GROUP) {
-               /* Finite Cyclic Group attribute */
-               wpabuf_put_le16(msg, DPP_ATTR_FINITE_CYCLIC_GROUP);
-               wpabuf_put_le16(msg, 2);
-               wpabuf_put_le16(msg, curve->ike_group);
+               id = json_get_member(token, "groupId");
+               if (!id || id->type != JSON_STRING) {
+                       wpa_printf(MSG_DEBUG,
+                                  "DPP: Missing peer groupId string");
+                       continue;
+               }
+
+               role = json_get_member(token, "netRole");
+               if (!role || role->type != JSON_STRING) {
+                       wpa_printf(MSG_DEBUG,
+                                  "DPP: Missing peer groups::netRole string");
+                       continue;
+               }
+               wpa_printf(MSG_DEBUG,
+                          "DPP: peer connector group: groupId='%s' netRole='%s'",
+                          id->string, role->string);
+               if (dpp_connector_compatible_group(own_root, id->string,
+                                                  role->string)) {
+                       wpa_printf(MSG_DEBUG,
+                                  "DPP: Compatible group/netRole in own connector");
+                       return 1;
+               }
        }
 
-       return msg;
-fail:
-       wpabuf_free(msg);
-       return NULL;
+       return 0;
 }
 
 
-static int dpp_pkex_derive_z(const u8 *mac_init, const u8 *mac_resp,
-                            const u8 *Mx, size_t Mx_len,
-                            const u8 *Nx, size_t Nx_len,
-                            const char *code,
-                            const u8 *Kx, size_t Kx_len,
-                            u8 *z, unsigned int hash_len)
+static int dpp_derive_pmk(const u8 *Nx, size_t Nx_len, u8 *pmk,
+                         unsigned int hash_len)
 {
        u8 salt[DPP_MAX_HASH_LEN], prk[DPP_MAX_HASH_LEN];
+       const char *info = "DPP PMK";
        int res;
-       u8 *info, *pos;
-       size_t info_len;
 
-       /* z = HKDF(<>, MAC-Initiator | MAC-Responder | M.x | N.x | code, K.x)
-        */
+       /* PMK = HKDF(<>, "DPP PMK", N.x) */
 
-       /* HKDF-Extract(<>, IKM=K.x) */
+       /* HKDF-Extract(<>, N.x) */
        os_memset(salt, 0, hash_len);
-       if (dpp_hmac(hash_len, salt, hash_len, Kx, Kx_len, prk) < 0)
+       if (dpp_hmac(hash_len, salt, hash_len, Nx, Nx_len, prk) < 0)
                return -1;
-       wpa_hexdump_key(MSG_DEBUG, "DPP: PRK = HKDF-Extract(<>, IKM)",
+       wpa_hexdump_key(MSG_DEBUG, "DPP: PRK = HKDF-Extract(<>, IKM=N.x)",
                        prk, hash_len);
-       info_len = 2 * ETH_ALEN + Mx_len + Nx_len + os_strlen(code);
-       info = os_malloc(info_len);
-       if (!info)
-               return -1;
-       pos = info;
-       os_memcpy(pos, mac_init, ETH_ALEN);
-       pos += ETH_ALEN;
-       os_memcpy(pos, mac_resp, ETH_ALEN);
-       pos += ETH_ALEN;
-       os_memcpy(pos, Mx, Mx_len);
-       pos += Mx_len;
-       os_memcpy(pos, Nx, Nx_len);
-       pos += Nx_len;
-       os_memcpy(pos, code, os_strlen(code));
 
        /* HKDF-Expand(PRK, info, L) */
-       if (hash_len == 32)
-               res = hmac_sha256_kdf(prk, hash_len, NULL, info, info_len,
-                                     z, hash_len);
-       else if (hash_len == 48)
-               res = hmac_sha384_kdf(prk, hash_len, NULL, info, info_len,
-                                     z, hash_len);
-       else if (hash_len == 64)
-               res = hmac_sha512_kdf(prk, hash_len, NULL, info, info_len,
-                                     z, hash_len);
-       else
-               res = -1;
-       os_free(info);
+       res = dpp_hkdf_expand(hash_len, prk, hash_len, info, pmk, hash_len);
        os_memset(prk, 0, hash_len);
        if (res < 0)
                return -1;
 
-       wpa_hexdump_key(MSG_DEBUG, "DPP: z = HKDF-Expand(PRK, info, L)",
-                       z, hash_len);
+       wpa_hexdump_key(MSG_DEBUG, "DPP: PMK = HKDF-Expand(PRK, info, L)",
+                       pmk, hash_len);
        return 0;
 }
 
 
-struct dpp_pkex * dpp_pkex_rx_exchange_req(void *msg_ctx,
-                                          struct dpp_bootstrap_info *bi,
-                                          const u8 *own_mac,
-                                          const u8 *peer_mac,
-                                          const char *identifier,
-                                          const char *code,
-                                          const u8 *buf, size_t len)
+static int dpp_derive_pmkid(const struct dpp_curve_params *curve,
+                           EVP_PKEY *own_key, EVP_PKEY *peer_key, u8 *pmkid)
 {
-       const u8 *attr_group, *attr_id, *attr_key;
-       u16 attr_group_len, attr_id_len, attr_key_len;
-       const struct dpp_curve_params *curve = bi->curve;
-       u16 ike_group;
-       struct dpp_pkex *pkex = NULL;
-       EC_POINT *Qi = NULL, *Qr = NULL, *M = NULL, *X = NULL, *N = NULL;
-       BN_CTX *bnctx = NULL;
-       const EC_GROUP *group;
-       BIGNUM *Mx = NULL, *My = NULL;
-       EC_KEY *Y_ec = NULL, *X_ec = NULL;;
-       const EC_POINT *Y_point;
-       BIGNUM *Nx = NULL, *Ny = NULL;
-       u8 Kx[DPP_MAX_SHARED_SECRET_LEN];
-       size_t Kx_len;
-       int res;
-       EVP_PKEY_CTX *ctx = NULL;
+       struct wpabuf *nkx, *pkx;
+       int ret = -1, res;
+       const u8 *addr[2];
+       size_t len[2];
+       u8 hash[SHA256_MAC_LEN];
 
-       if (bi->pkex_t >= PKEX_COUNTER_T_LIMIT) {
-               wpa_msg(msg_ctx, MSG_INFO, DPP_EVENT_FAIL
-                       "PKEX counter t limit reached - ignore message");
-               return NULL;
+       /* PMKID = Truncate-128(H(min(NK.x, PK.x) | max(NK.x, PK.x))) */
+       nkx = dpp_get_pubkey_point(own_key, 0);
+       pkx = dpp_get_pubkey_point(peer_key, 0);
+       if (!nkx || !pkx)
+               goto fail;
+       addr[0] = wpabuf_head(nkx);
+       len[0] = wpabuf_len(nkx) / 2;
+       addr[1] = wpabuf_head(pkx);
+       len[1] = wpabuf_len(pkx) / 2;
+       if (len[0] != len[1])
+               goto fail;
+       if (os_memcmp(addr[0], addr[1], len[0]) > 0) {
+               addr[0] = wpabuf_head(pkx);
+               addr[1] = wpabuf_head(nkx);
        }
-
-#ifdef CONFIG_TESTING_OPTIONS
+       wpa_hexdump(MSG_DEBUG, "DPP: PMKID hash payload 1", addr[0], len[0]);
+       wpa_hexdump(MSG_DEBUG, "DPP: PMKID hash payload 2", addr[1], len[1]);
+       res = sha256_vector(2, addr, len, hash);
+       if (res < 0)
+               goto fail;
+       wpa_hexdump(MSG_DEBUG, "DPP: PMKID hash output", hash, SHA256_MAC_LEN);
+       os_memcpy(pmkid, hash, PMKID_LEN);
+       wpa_hexdump(MSG_DEBUG, "DPP: PMKID", pmkid, PMKID_LEN);
+       ret = 0;
+fail:
+       wpabuf_free(nkx);
+       wpabuf_free(pkx);
+       return ret;
+}
+
+
+enum dpp_status_error
+dpp_peer_intro(struct dpp_introduction *intro, const char *own_connector,
+              const u8 *net_access_key, size_t net_access_key_len,
+              const u8 *csign_key, size_t csign_key_len,
+              const u8 *peer_connector, size_t peer_connector_len,
+              os_time_t *expiry)
+{
+       struct json_token *root = NULL, *netkey, *token;
+       struct json_token *own_root = NULL;
+       enum dpp_status_error ret = 255, res;
+       EVP_PKEY *own_key = NULL, *peer_key = NULL;
+       struct wpabuf *own_key_pub = NULL;
+       const struct dpp_curve_params *curve, *own_curve;
+       struct dpp_signed_connector_info info;
+       const unsigned char *p;
+       EVP_PKEY *csign = NULL;
+       char *signed_connector = NULL;
+       const char *pos, *end;
+       unsigned char *own_conn = NULL;
+       size_t own_conn_len;
+       size_t Nx_len;
+       u8 Nx[DPP_MAX_SHARED_SECRET_LEN];
+
+       os_memset(intro, 0, sizeof(*intro));
+       os_memset(&info, 0, sizeof(info));
+       if (expiry)
+               *expiry = 0;
+
+       p = csign_key;
+       csign = d2i_PUBKEY(NULL, &p, csign_key_len);
+       if (!csign) {
+               wpa_printf(MSG_ERROR,
+                          "DPP: Failed to parse local C-sign-key information");
+               goto fail;
+       }
+
+       own_key = dpp_set_keypair(&own_curve, net_access_key,
+                                 net_access_key_len);
+       if (!own_key) {
+               wpa_printf(MSG_ERROR, "DPP: Failed to parse own netAccessKey");
+               goto fail;
+       }
+
+       pos = os_strchr(own_connector, '.');
+       if (!pos) {
+               wpa_printf(MSG_DEBUG, "DPP: Own connector is missing the first dot (.)");
+               goto fail;
+       }
+       pos++;
+       end = os_strchr(pos, '.');
+       if (!end) {
+               wpa_printf(MSG_DEBUG, "DPP: Own connector is missing the second dot (.)");
+               goto fail;
+       }
+       own_conn = base64_url_decode(pos, end - pos, &own_conn_len);
+       if (!own_conn) {
+               wpa_printf(MSG_DEBUG,
+                          "DPP: Failed to base64url decode own signedConnector JWS Payload");
+               goto fail;
+       }
+
+       own_root = json_parse((const char *) own_conn, own_conn_len);
+       if (!own_root) {
+               wpa_printf(MSG_DEBUG, "DPP: Failed to parse local connector");
+               goto fail;
+       }
+
+       wpa_hexdump_ascii(MSG_DEBUG, "DPP: Peer signedConnector",
+                         peer_connector, peer_connector_len);
+       signed_connector = os_malloc(peer_connector_len + 1);
+       if (!signed_connector)
+               goto fail;
+       os_memcpy(signed_connector, peer_connector, peer_connector_len);
+       signed_connector[peer_connector_len] = '\0';
+
+       res = dpp_process_signed_connector(&info, csign, signed_connector);
+       if (res != DPP_STATUS_OK) {
+               ret = res;
+               goto fail;
+       }
+
+       root = json_parse((const char *) info.payload, info.payload_len);
+       if (!root) {
+               wpa_printf(MSG_DEBUG, "DPP: JSON parsing of connector failed");
+               ret = DPP_STATUS_INVALID_CONNECTOR;
+               goto fail;
+       }
+
+       if (!dpp_connector_match_groups(own_root, root)) {
+               wpa_printf(MSG_DEBUG,
+                          "DPP: Peer connector does not include compatible group netrole with own connector");
+               ret = DPP_STATUS_NO_MATCH;
+               goto fail;
+       }
+
+       token = json_get_member(root, "expiry");
+       if (!token || token->type != JSON_STRING) {
+               wpa_printf(MSG_DEBUG,
+                          "DPP: No expiry string found - connector does not expire");
+       } else {
+               wpa_printf(MSG_DEBUG, "DPP: expiry = %s", token->string);
+               if (dpp_key_expired(token->string, expiry)) {
+                       wpa_printf(MSG_DEBUG,
+                                  "DPP: Connector (netAccessKey) has expired");
+                       ret = DPP_STATUS_INVALID_CONNECTOR;
+                       goto fail;
+               }
+       }
+
+       netkey = json_get_member(root, "netAccessKey");
+       if (!netkey || netkey->type != JSON_OBJECT) {
+               wpa_printf(MSG_DEBUG, "DPP: No netAccessKey object found");
+               ret = DPP_STATUS_INVALID_CONNECTOR;
+               goto fail;
+       }
+
+       peer_key = dpp_parse_jwk(netkey, &curve);
+       if (!peer_key) {
+               ret = DPP_STATUS_INVALID_CONNECTOR;
+               goto fail;
+       }
+       dpp_debug_print_key("DPP: Received netAccessKey", peer_key);
+
+       if (own_curve != curve) {
+               wpa_printf(MSG_DEBUG,
+                          "DPP: Mismatching netAccessKey curves (%s != %s)",
+                          own_curve->name, curve->name);
+               ret = DPP_STATUS_INVALID_CONNECTOR;
+               goto fail;
+       }
+
+       /* ECDH: N = nk * PK */
+       if (dpp_ecdh(own_key, peer_key, Nx, &Nx_len) < 0)
+               goto fail;
+
+       wpa_hexdump_key(MSG_DEBUG, "DPP: ECDH shared secret (N.x)",
+                       Nx, Nx_len);
+
+       /* PMK = HKDF(<>, "DPP PMK", N.x) */
+       if (dpp_derive_pmk(Nx, Nx_len, intro->pmk, curve->hash_len) < 0) {
+               wpa_printf(MSG_ERROR, "DPP: Failed to derive PMK");
+               goto fail;
+       }
+       intro->pmk_len = curve->hash_len;
+
+       /* PMKID = Truncate-128(H(min(NK.x, PK.x) | max(NK.x, PK.x))) */
+       if (dpp_derive_pmkid(curve, own_key, peer_key, intro->pmkid) < 0) {
+               wpa_printf(MSG_ERROR, "DPP: Failed to derive PMKID");
+               goto fail;
+       }
+
+       ret = DPP_STATUS_OK;
+fail:
+       if (ret != DPP_STATUS_OK)
+               os_memset(intro, 0, sizeof(*intro));
+       os_memset(Nx, 0, sizeof(Nx));
+       os_free(own_conn);
+       os_free(signed_connector);
+       os_free(info.payload);
+       EVP_PKEY_free(own_key);
+       wpabuf_free(own_key_pub);
+       EVP_PKEY_free(peer_key);
+       EVP_PKEY_free(csign);
+       json_free(root);
+       json_free(own_root);
+       return ret;
+}
+
+
+static EVP_PKEY * dpp_pkex_get_role_elem(const struct dpp_curve_params *curve,
+                                        int init)
+{
+       EC_GROUP *group;
+       size_t len = curve->prime_len;
+       const u8 *x, *y;
+       EVP_PKEY *res;
+
+       switch (curve->ike_group) {
+       case 19:
+               x = init ? pkex_init_x_p256 : pkex_resp_x_p256;
+               y = init ? pkex_init_y_p256 : pkex_resp_y_p256;
+               break;
+       case 20:
+               x = init ? pkex_init_x_p384 : pkex_resp_x_p384;
+               y = init ? pkex_init_y_p384 : pkex_resp_y_p384;
+               break;
+       case 21:
+               x = init ? pkex_init_x_p521 : pkex_resp_x_p521;
+               y = init ? pkex_init_y_p521 : pkex_resp_y_p521;
+               break;
+       case 28:
+               x = init ? pkex_init_x_bp_p256r1 : pkex_resp_x_bp_p256r1;
+               y = init ? pkex_init_y_bp_p256r1 : pkex_resp_y_bp_p256r1;
+               break;
+       case 29:
+               x = init ? pkex_init_x_bp_p384r1 : pkex_resp_x_bp_p384r1;
+               y = init ? pkex_init_y_bp_p384r1 : pkex_resp_y_bp_p384r1;
+               break;
+       case 30:
+               x = init ? pkex_init_x_bp_p512r1 : pkex_resp_x_bp_p512r1;
+               y = init ? pkex_init_y_bp_p512r1 : pkex_resp_y_bp_p512r1;
+               break;
+       default:
+               return NULL;
+       }
+
+       group = EC_GROUP_new_by_curve_name(OBJ_txt2nid(curve->name));
+       if (!group)
+               return NULL;
+       res = dpp_set_pubkey_point_group(group, x, y, len);
+       EC_GROUP_free(group);
+       return res;
+}
+
+
+static EC_POINT * dpp_pkex_derive_Qi(const struct dpp_curve_params *curve,
+                                    const u8 *mac_init, const char *code,
+                                    const char *identifier, BN_CTX *bnctx,
+                                    EC_GROUP **ret_group)
+{
+       u8 hash[DPP_MAX_HASH_LEN];
+       const u8 *addr[3];
+       size_t len[3];
+       unsigned int num_elem = 0;
+       EC_POINT *Qi = NULL;
+       EVP_PKEY *Pi = NULL;
+       EC_KEY *Pi_ec = NULL;
+       const EC_POINT *Pi_point;
+       BIGNUM *hash_bn = NULL;
+       const EC_GROUP *group = NULL;
+       EC_GROUP *group2 = NULL;
+
+       /* Qi = H(MAC-Initiator | [identifier |] code) * Pi */
+
+       wpa_printf(MSG_DEBUG, "DPP: MAC-Initiator: " MACSTR, MAC2STR(mac_init));
+       addr[num_elem] = mac_init;
+       len[num_elem] = ETH_ALEN;
+       num_elem++;
+       if (identifier) {
+               wpa_printf(MSG_DEBUG, "DPP: code identifier: %s",
+                          identifier);
+               addr[num_elem] = (const u8 *) identifier;
+               len[num_elem] = os_strlen(identifier);
+               num_elem++;
+       }
+       wpa_hexdump_ascii_key(MSG_DEBUG, "DPP: code", code, os_strlen(code));
+       addr[num_elem] = (const u8 *) code;
+       len[num_elem] = os_strlen(code);
+       num_elem++;
+       if (dpp_hash_vector(curve, num_elem, addr, len, hash) < 0)
+               goto fail;
+       wpa_hexdump_key(MSG_DEBUG,
+                       "DPP: H(MAC-Initiator | [identifier |] code)",
+                       hash, curve->hash_len);
+       Pi = dpp_pkex_get_role_elem(curve, 1);
+       if (!Pi)
+               goto fail;
+       dpp_debug_print_key("DPP: Pi", Pi);
+       Pi_ec = EVP_PKEY_get1_EC_KEY(Pi);
+       if (!Pi_ec)
+               goto fail;
+       Pi_point = EC_KEY_get0_public_key(Pi_ec);
+
+       group = EC_KEY_get0_group(Pi_ec);
+       if (!group)
+               goto fail;
+       group2 = EC_GROUP_dup(group);
+       if (!group2)
+               goto fail;
+       Qi = EC_POINT_new(group2);
+       if (!Qi) {
+               EC_GROUP_free(group2);
+               goto fail;
+       }
+       hash_bn = BN_bin2bn(hash, curve->hash_len, NULL);
+       if (!hash_bn ||
+           EC_POINT_mul(group2, Qi, NULL, Pi_point, hash_bn, bnctx) != 1)
+               goto fail;
+       if (EC_POINT_is_at_infinity(group, Qi)) {
+               wpa_printf(MSG_INFO, "DPP: Qi is the point-at-infinity");
+               goto fail;
+       }
+       dpp_debug_print_point("DPP: Qi", group, Qi);
+out:
+       EC_KEY_free(Pi_ec);
+       EVP_PKEY_free(Pi);
+       BN_clear_free(hash_bn);
+       if (ret_group && Qi)
+               *ret_group = group2;
+       else
+               EC_GROUP_free(group2);
+       return Qi;
+fail:
+       EC_POINT_free(Qi);
+       Qi = NULL;
+       goto out;
+}
+
+
+static EC_POINT * dpp_pkex_derive_Qr(const struct dpp_curve_params *curve,
+                                    const u8 *mac_resp, const char *code,
+                                    const char *identifier, BN_CTX *bnctx,
+                                    EC_GROUP **ret_group)
+{
+       u8 hash[DPP_MAX_HASH_LEN];
+       const u8 *addr[3];
+       size_t len[3];
+       unsigned int num_elem = 0;
+       EC_POINT *Qr = NULL;
+       EVP_PKEY *Pr = NULL;
+       EC_KEY *Pr_ec = NULL;
+       const EC_POINT *Pr_point;
+       BIGNUM *hash_bn = NULL;
+       const EC_GROUP *group = NULL;
+       EC_GROUP *group2 = NULL;
+
+       /* Qr = H(MAC-Responder | | [identifier | ] code) * Pr */
+
+       wpa_printf(MSG_DEBUG, "DPP: MAC-Responder: " MACSTR, MAC2STR(mac_resp));
+       addr[num_elem] = mac_resp;
+       len[num_elem] = ETH_ALEN;
+       num_elem++;
+       if (identifier) {
+               wpa_printf(MSG_DEBUG, "DPP: code identifier: %s",
+                          identifier);
+               addr[num_elem] = (const u8 *) identifier;
+               len[num_elem] = os_strlen(identifier);
+               num_elem++;
+       }
+       wpa_hexdump_ascii_key(MSG_DEBUG, "DPP: code", code, os_strlen(code));
+       addr[num_elem] = (const u8 *) code;
+       len[num_elem] = os_strlen(code);
+       num_elem++;
+       if (dpp_hash_vector(curve, num_elem, addr, len, hash) < 0)
+               goto fail;
+       wpa_hexdump_key(MSG_DEBUG,
+                       "DPP: H(MAC-Responder | [identifier |] code)",
+                       hash, curve->hash_len);
+       Pr = dpp_pkex_get_role_elem(curve, 0);
+       if (!Pr)
+               goto fail;
+       dpp_debug_print_key("DPP: Pr", Pr);
+       Pr_ec = EVP_PKEY_get1_EC_KEY(Pr);
+       if (!Pr_ec)
+               goto fail;
+       Pr_point = EC_KEY_get0_public_key(Pr_ec);
+
+       group = EC_KEY_get0_group(Pr_ec);
+       if (!group)
+               goto fail;
+       group2 = EC_GROUP_dup(group);
+       if (!group2)
+               goto fail;
+       Qr = EC_POINT_new(group2);
+       if (!Qr) {
+               EC_GROUP_free(group2);
+               goto fail;
+       }
+       hash_bn = BN_bin2bn(hash, curve->hash_len, NULL);
+       if (!hash_bn ||
+           EC_POINT_mul(group2, Qr, NULL, Pr_point, hash_bn, bnctx) != 1)
+               goto fail;
+       if (EC_POINT_is_at_infinity(group, Qr)) {
+               wpa_printf(MSG_INFO, "DPP: Qr is the point-at-infinity");
+               goto fail;
+       }
+       dpp_debug_print_point("DPP: Qr", group, Qr);
+out:
+       EC_KEY_free(Pr_ec);
+       EVP_PKEY_free(Pr);
+       BN_clear_free(hash_bn);
+       if (ret_group && Qr)
+               *ret_group = group2;
+       else
+               EC_GROUP_free(group2);
+       return Qr;
+fail:
+       EC_POINT_free(Qr);
+       Qr = NULL;
+       goto out;
+}
+
+
+#ifdef CONFIG_TESTING_OPTIONS
+static int dpp_test_gen_invalid_key(struct wpabuf *msg,
+                                   const struct dpp_curve_params *curve)
+{
+       BN_CTX *ctx;
+       BIGNUM *x, *y;
+       int ret = -1;
+       EC_GROUP *group;
+       EC_POINT *point;
+
+       group = EC_GROUP_new_by_curve_name(OBJ_txt2nid(curve->name));
+       if (!group)
+               return -1;
+
+       ctx = BN_CTX_new();
+       point = EC_POINT_new(group);
+       x = BN_new();
+       y = BN_new();
+       if (!ctx || !point || !x || !y)
+               goto fail;
+
+       if (BN_rand(x, curve->prime_len * 8, 0, 0) != 1)
+               goto fail;
+
+       /* Generate a random y coordinate that results in a point that is not
+        * on the curve. */
+       for (;;) {
+               if (BN_rand(y, curve->prime_len * 8, 0, 0) != 1)
+                       goto fail;
+
+               if (EC_POINT_set_affine_coordinates_GFp(group, point, x, y,
+                                                       ctx) != 1) {
+#if OPENSSL_VERSION_NUMBER >= 0x10100000L || defined(OPENSSL_IS_BORINGSSL)
+               /* Unlike older OpenSSL versions, OpenSSL 1.1.1 and BoringSSL
+                * return an error from EC_POINT_set_affine_coordinates_GFp()
+                * when the point is not on the curve. */
+                       break;
+#else /* >=1.1.0 or OPENSSL_IS_BORINGSSL */
+                       goto fail;
+#endif /* >= 1.1.0 or OPENSSL_IS_BORINGSSL */
+               }
+
+               if (!EC_POINT_is_on_curve(group, point, ctx))
+                       break;
+       }
+
+       if (dpp_bn2bin_pad(x, wpabuf_put(msg, curve->prime_len),
+                          curve->prime_len) < 0 ||
+           dpp_bn2bin_pad(y, wpabuf_put(msg, curve->prime_len),
+                          curve->prime_len) < 0)
+               goto fail;
+
+       ret = 0;
+fail:
+       if (ret < 0)
+               wpa_printf(MSG_INFO, "DPP: Failed to generate invalid key");
+       BN_free(x);
+       BN_free(y);
+       EC_POINT_free(point);
+       BN_CTX_free(ctx);
+       EC_GROUP_free(group);
+
+       return ret;
+}
+#endif /* CONFIG_TESTING_OPTIONS */
+
+
+static struct wpabuf * dpp_pkex_build_exchange_req(struct dpp_pkex *pkex)
+{
+       EC_KEY *X_ec = NULL;
+       const EC_POINT *X_point;
+       BN_CTX *bnctx = NULL;
+       EC_GROUP *group = NULL;
+       EC_POINT *Qi = NULL, *M = NULL;
+       struct wpabuf *M_buf = NULL;
+       BIGNUM *Mx = NULL, *My = NULL;
+       struct wpabuf *msg = NULL;
+       size_t attr_len;
+       const struct dpp_curve_params *curve = pkex->own_bi->curve;
+
+       wpa_printf(MSG_DEBUG, "DPP: Build PKEX Exchange Request");
+
+       /* Qi = H(MAC-Initiator | [identifier |] code) * Pi */
+       bnctx = BN_CTX_new();
+       if (!bnctx)
+               goto fail;
+       Qi = dpp_pkex_derive_Qi(curve, pkex->own_mac, pkex->code,
+                               pkex->identifier, bnctx, &group);
+       if (!Qi)
+               goto fail;
+
+       /* Generate a random ephemeral keypair x/X */
+#ifdef CONFIG_TESTING_OPTIONS
+       if (dpp_pkex_ephemeral_key_override_len) {
+               const struct dpp_curve_params *tmp_curve;
+
+               wpa_printf(MSG_INFO,
+                          "DPP: TESTING - override ephemeral key x/X");
+               pkex->x = dpp_set_keypair(&tmp_curve,
+                                         dpp_pkex_ephemeral_key_override,
+                                         dpp_pkex_ephemeral_key_override_len);
+       } else {
+               pkex->x = dpp_gen_keypair(curve);
+       }
+#else /* CONFIG_TESTING_OPTIONS */
+       pkex->x = dpp_gen_keypair(curve);
+#endif /* CONFIG_TESTING_OPTIONS */
+       if (!pkex->x)
+               goto fail;
+
+       /* M = X + Qi */
+       X_ec = EVP_PKEY_get1_EC_KEY(pkex->x);
+       if (!X_ec)
+               goto fail;
+       X_point = EC_KEY_get0_public_key(X_ec);
+       if (!X_point)
+               goto fail;
+       dpp_debug_print_point("DPP: X", group, X_point);
+       M = EC_POINT_new(group);
+       Mx = BN_new();
+       My = BN_new();
+       if (!M || !Mx || !My ||
+           EC_POINT_add(group, M, X_point, Qi, bnctx) != 1 ||
+           EC_POINT_get_affine_coordinates_GFp(group, M, Mx, My, bnctx) != 1)
+               goto fail;
+       dpp_debug_print_point("DPP: M", group, M);
+
+       /* Initiator -> Responder: group, [identifier,] M */
+       attr_len = 4 + 2;
+       if (pkex->identifier)
+               attr_len += 4 + os_strlen(pkex->identifier);
+       attr_len += 4 + 2 * curve->prime_len;
+       msg = dpp_alloc_msg(DPP_PA_PKEX_EXCHANGE_REQ, attr_len);
+       if (!msg)
+               goto fail;
+
+#ifdef CONFIG_TESTING_OPTIONS
+       if (dpp_test == DPP_TEST_NO_FINITE_CYCLIC_GROUP_PKEX_EXCHANGE_REQ) {
+               wpa_printf(MSG_INFO, "DPP: TESTING - no Finite Cyclic Group");
+               goto skip_finite_cyclic_group;
+       }
+#endif /* CONFIG_TESTING_OPTIONS */
+
+       /* Finite Cyclic Group attribute */
+       wpabuf_put_le16(msg, DPP_ATTR_FINITE_CYCLIC_GROUP);
+       wpabuf_put_le16(msg, 2);
+       wpabuf_put_le16(msg, curve->ike_group);
+
+#ifdef CONFIG_TESTING_OPTIONS
+skip_finite_cyclic_group:
+#endif /* CONFIG_TESTING_OPTIONS */
+
+       /* Code Identifier attribute */
+       if (pkex->identifier) {
+               wpabuf_put_le16(msg, DPP_ATTR_CODE_IDENTIFIER);
+               wpabuf_put_le16(msg, os_strlen(pkex->identifier));
+               wpabuf_put_str(msg, pkex->identifier);
+       }
+
+#ifdef CONFIG_TESTING_OPTIONS
+       if (dpp_test == DPP_TEST_NO_ENCRYPTED_KEY_PKEX_EXCHANGE_REQ) {
+               wpa_printf(MSG_INFO, "DPP: TESTING - no Encrypted Key");
+               goto out;
+       }
+#endif /* CONFIG_TESTING_OPTIONS */
+
+       /* M in Encrypted Key attribute */
+       wpabuf_put_le16(msg, DPP_ATTR_ENCRYPTED_KEY);
+       wpabuf_put_le16(msg, 2 * curve->prime_len);
+
+#ifdef CONFIG_TESTING_OPTIONS
+       if (dpp_test == DPP_TEST_INVALID_ENCRYPTED_KEY_PKEX_EXCHANGE_REQ) {
+               wpa_printf(MSG_INFO, "DPP: TESTING - invalid Encrypted Key");
+               if (dpp_test_gen_invalid_key(msg, curve) < 0)
+                       goto fail;
+               goto out;
+       }
+#endif /* CONFIG_TESTING_OPTIONS */
+
+       if (dpp_bn2bin_pad(Mx, wpabuf_put(msg, curve->prime_len),
+                          curve->prime_len) < 0 ||
+           dpp_bn2bin_pad(Mx, pkex->Mx, curve->prime_len) < 0 ||
+           dpp_bn2bin_pad(My, wpabuf_put(msg, curve->prime_len),
+                          curve->prime_len) < 0)
+               goto fail;
+
+out:
+       wpabuf_free(M_buf);
+       EC_KEY_free(X_ec);
+       EC_POINT_free(M);
+       EC_POINT_free(Qi);
+       BN_clear_free(Mx);
+       BN_clear_free(My);
+       BN_CTX_free(bnctx);
+       EC_GROUP_free(group);
+       return msg;
+fail:
+       wpa_printf(MSG_INFO, "DPP: Failed to build PKEX Exchange Request");
+       wpabuf_free(msg);
+       msg = NULL;
+       goto out;
+}
+
+
+static void dpp_pkex_fail(struct dpp_pkex *pkex, const char *txt)
+{
+       wpa_msg(pkex->msg_ctx, MSG_INFO, DPP_EVENT_FAIL "%s", txt);
+}
+
+
+struct dpp_pkex * dpp_pkex_init(void *msg_ctx, struct dpp_bootstrap_info *bi,
+                               const u8 *own_mac,
+                               const char *identifier,
+                               const char *code)
+{
+       struct dpp_pkex *pkex;
+
+#ifdef CONFIG_TESTING_OPTIONS
+       if (!is_zero_ether_addr(dpp_pkex_own_mac_override)) {
+               wpa_printf(MSG_INFO, "DPP: TESTING - own_mac override " MACSTR,
+                          MAC2STR(dpp_pkex_own_mac_override));
+               own_mac = dpp_pkex_own_mac_override;
+       }
+#endif /* CONFIG_TESTING_OPTIONS */
+
+       pkex = os_zalloc(sizeof(*pkex));
+       if (!pkex)
+               return NULL;
+       pkex->msg_ctx = msg_ctx;
+       pkex->initiator = 1;
+       pkex->own_bi = bi;
+       os_memcpy(pkex->own_mac, own_mac, ETH_ALEN);
+       if (identifier) {
+               pkex->identifier = os_strdup(identifier);
+               if (!pkex->identifier)
+                       goto fail;
+       }
+       pkex->code = os_strdup(code);
+       if (!pkex->code)
+               goto fail;
+       pkex->exchange_req = dpp_pkex_build_exchange_req(pkex);
+       if (!pkex->exchange_req)
+               goto fail;
+       return pkex;
+fail:
+       dpp_pkex_free(pkex);
+       return NULL;
+}
+
+
+static struct wpabuf *
+dpp_pkex_build_exchange_resp(struct dpp_pkex *pkex,
+                            enum dpp_status_error status,
+                            const BIGNUM *Nx, const BIGNUM *Ny)
+{
+       struct wpabuf *msg = NULL;
+       size_t attr_len;
+       const struct dpp_curve_params *curve = pkex->own_bi->curve;
+
+       /* Initiator -> Responder: DPP Status, [identifier,] N */
+       attr_len = 4 + 1;
+       if (pkex->identifier)
+               attr_len += 4 + os_strlen(pkex->identifier);
+       attr_len += 4 + 2 * curve->prime_len;
+       msg = dpp_alloc_msg(DPP_PA_PKEX_EXCHANGE_RESP, attr_len);
+       if (!msg)
+               goto fail;
+
+#ifdef CONFIG_TESTING_OPTIONS
+       if (dpp_test == DPP_TEST_NO_STATUS_PKEX_EXCHANGE_RESP) {
+               wpa_printf(MSG_INFO, "DPP: TESTING - no Status");
+               goto skip_status;
+       }
+
+       if (dpp_test == DPP_TEST_INVALID_STATUS_PKEX_EXCHANGE_RESP) {
+               wpa_printf(MSG_INFO, "DPP: TESTING - invalid Status");
+               status = 255;
+       }
+#endif /* CONFIG_TESTING_OPTIONS */
+
+       /* DPP Status */
+       dpp_build_attr_status(msg, status);
+
+#ifdef CONFIG_TESTING_OPTIONS
+skip_status:
+#endif /* CONFIG_TESTING_OPTIONS */
+
+       /* Code Identifier attribute */
+       if (pkex->identifier) {
+               wpabuf_put_le16(msg, DPP_ATTR_CODE_IDENTIFIER);
+               wpabuf_put_le16(msg, os_strlen(pkex->identifier));
+               wpabuf_put_str(msg, pkex->identifier);
+       }
+
+       if (status != DPP_STATUS_OK)
+               goto skip_encrypted_key;
+
+#ifdef CONFIG_TESTING_OPTIONS
+       if (dpp_test == DPP_TEST_NO_ENCRYPTED_KEY_PKEX_EXCHANGE_RESP) {
+               wpa_printf(MSG_INFO, "DPP: TESTING - no Encrypted Key");
+               goto skip_encrypted_key;
+       }
+#endif /* CONFIG_TESTING_OPTIONS */
+
+       /* N in Encrypted Key attribute */
+       wpabuf_put_le16(msg, DPP_ATTR_ENCRYPTED_KEY);
+       wpabuf_put_le16(msg, 2 * curve->prime_len);
+
+#ifdef CONFIG_TESTING_OPTIONS
+       if (dpp_test == DPP_TEST_INVALID_ENCRYPTED_KEY_PKEX_EXCHANGE_RESP) {
+               wpa_printf(MSG_INFO, "DPP: TESTING - invalid Encrypted Key");
+               if (dpp_test_gen_invalid_key(msg, curve) < 0)
+                       goto fail;
+               goto skip_encrypted_key;
+       }
+#endif /* CONFIG_TESTING_OPTIONS */
+
+       if (dpp_bn2bin_pad(Nx, wpabuf_put(msg, curve->prime_len),
+                          curve->prime_len) < 0 ||
+           dpp_bn2bin_pad(Nx, pkex->Nx, curve->prime_len) < 0 ||
+           dpp_bn2bin_pad(Ny, wpabuf_put(msg, curve->prime_len),
+                          curve->prime_len) < 0)
+               goto fail;
+
+skip_encrypted_key:
+       if (status == DPP_STATUS_BAD_GROUP) {
+               /* Finite Cyclic Group attribute */
+               wpabuf_put_le16(msg, DPP_ATTR_FINITE_CYCLIC_GROUP);
+               wpabuf_put_le16(msg, 2);
+               wpabuf_put_le16(msg, curve->ike_group);
+       }
+
+       return msg;
+fail:
+       wpabuf_free(msg);
+       return NULL;
+}
+
+
+static int dpp_pkex_derive_z(const u8 *mac_init, const u8 *mac_resp,
+                            const u8 *Mx, size_t Mx_len,
+                            const u8 *Nx, size_t Nx_len,
+                            const char *code,
+                            const u8 *Kx, size_t Kx_len,
+                            u8 *z, unsigned int hash_len)
+{
+       u8 salt[DPP_MAX_HASH_LEN], prk[DPP_MAX_HASH_LEN];
+       int res;
+       u8 *info, *pos;
+       size_t info_len;
+
+       /* z = HKDF(<>, MAC-Initiator | MAC-Responder | M.x | N.x | code, K.x)
+        */
+
+       /* HKDF-Extract(<>, IKM=K.x) */
+       os_memset(salt, 0, hash_len);
+       if (dpp_hmac(hash_len, salt, hash_len, Kx, Kx_len, prk) < 0)
+               return -1;
+       wpa_hexdump_key(MSG_DEBUG, "DPP: PRK = HKDF-Extract(<>, IKM)",
+                       prk, hash_len);
+       info_len = 2 * ETH_ALEN + Mx_len + Nx_len + os_strlen(code);
+       info = os_malloc(info_len);
+       if (!info)
+               return -1;
+       pos = info;
+       os_memcpy(pos, mac_init, ETH_ALEN);
+       pos += ETH_ALEN;
+       os_memcpy(pos, mac_resp, ETH_ALEN);
+       pos += ETH_ALEN;
+       os_memcpy(pos, Mx, Mx_len);
+       pos += Mx_len;
+       os_memcpy(pos, Nx, Nx_len);
+       pos += Nx_len;
+       os_memcpy(pos, code, os_strlen(code));
+
+       /* HKDF-Expand(PRK, info, L) */
+       if (hash_len == 32)
+               res = hmac_sha256_kdf(prk, hash_len, NULL, info, info_len,
+                                     z, hash_len);
+       else if (hash_len == 48)
+               res = hmac_sha384_kdf(prk, hash_len, NULL, info, info_len,
+                                     z, hash_len);
+       else if (hash_len == 64)
+               res = hmac_sha512_kdf(prk, hash_len, NULL, info, info_len,
+                                     z, hash_len);
+       else
+               res = -1;
+       os_free(info);
+       os_memset(prk, 0, hash_len);
+       if (res < 0)
+               return -1;
+
+       wpa_hexdump_key(MSG_DEBUG, "DPP: z = HKDF-Expand(PRK, info, L)",
+                       z, hash_len);
+       return 0;
+}
+
+
+static int dpp_pkex_identifier_match(const u8 *attr_id, u16 attr_id_len,
+                                    const char *identifier)
+{
+       if (!attr_id && identifier) {
+               wpa_printf(MSG_DEBUG,
+                          "DPP: No PKEX code identifier received, but expected one");
+               return 0;
+       }
+
+       if (attr_id && !identifier) {
+               wpa_printf(MSG_DEBUG,
+                          "DPP: PKEX code identifier received, but not expecting one");
+               return 0;
+       }
+
+       if (attr_id && identifier &&
+           (os_strlen(identifier) != attr_id_len ||
+            os_memcmp(identifier, attr_id, attr_id_len) != 0)) {
+               wpa_printf(MSG_DEBUG, "DPP: PKEX code identifier mismatch");
+               return 0;
+       }
+
+       return 1;
+}
+
+
+struct dpp_pkex * dpp_pkex_rx_exchange_req(void *msg_ctx,
+                                          struct dpp_bootstrap_info *bi,
+                                          const u8 *own_mac,
+                                          const u8 *peer_mac,
+                                          const char *identifier,
+                                          const char *code,
+                                          const u8 *buf, size_t len)
+{
+       const u8 *attr_group, *attr_id, *attr_key;
+       u16 attr_group_len, attr_id_len, attr_key_len;
+       const struct dpp_curve_params *curve = bi->curve;
+       u16 ike_group;
+       struct dpp_pkex *pkex = NULL;
+       EC_POINT *Qi = NULL, *Qr = NULL, *M = NULL, *X = NULL, *N = NULL;
+       BN_CTX *bnctx = NULL;
+       EC_GROUP *group = NULL;
+       BIGNUM *Mx = NULL, *My = NULL;
+       EC_KEY *Y_ec = NULL, *X_ec = NULL;;
+       const EC_POINT *Y_point;
+       BIGNUM *Nx = NULL, *Ny = NULL;
+       u8 Kx[DPP_MAX_SHARED_SECRET_LEN];
+       size_t Kx_len;
+       int res;
+
+       if (bi->pkex_t >= PKEX_COUNTER_T_LIMIT) {
+               wpa_msg(msg_ctx, MSG_INFO, DPP_EVENT_FAIL
+                       "PKEX counter t limit reached - ignore message");
+               return NULL;
+       }
+
+#ifdef CONFIG_TESTING_OPTIONS
+       if (!is_zero_ether_addr(dpp_pkex_peer_mac_override)) {
+               wpa_printf(MSG_INFO, "DPP: TESTING - peer_mac override " MACSTR,
+                          MAC2STR(dpp_pkex_peer_mac_override));
+               peer_mac = dpp_pkex_peer_mac_override;
+       }
+       if (!is_zero_ether_addr(dpp_pkex_own_mac_override)) {
+               wpa_printf(MSG_INFO, "DPP: TESTING - own_mac override " MACSTR,
+                          MAC2STR(dpp_pkex_own_mac_override));
+               own_mac = dpp_pkex_own_mac_override;
+       }
+#endif /* CONFIG_TESTING_OPTIONS */
+
+       attr_id_len = 0;
+       attr_id = dpp_get_attr(buf, len, DPP_ATTR_CODE_IDENTIFIER,
+                              &attr_id_len);
+       if (!dpp_pkex_identifier_match(attr_id, attr_id_len, identifier))
+               return NULL;
+
+       attr_group = dpp_get_attr(buf, len, DPP_ATTR_FINITE_CYCLIC_GROUP,
+                                 &attr_group_len);
+       if (!attr_group || attr_group_len != 2) {
+               wpa_msg(msg_ctx, MSG_INFO, DPP_EVENT_FAIL
+                       "Missing or invalid Finite Cyclic Group attribute");
+               return NULL;
+       }
+       ike_group = WPA_GET_LE16(attr_group);
+       if (ike_group != curve->ike_group) {
+               wpa_msg(msg_ctx, MSG_INFO, DPP_EVENT_FAIL
+                       "Mismatching PKEX curve: peer=%u own=%u",
+                       ike_group, curve->ike_group);
+               pkex = os_zalloc(sizeof(*pkex));
+               if (!pkex)
+                       goto fail;
+               pkex->own_bi = bi;
+               pkex->failed = 1;
+               pkex->exchange_resp = dpp_pkex_build_exchange_resp(
+                       pkex, DPP_STATUS_BAD_GROUP, NULL, NULL);
+               if (!pkex->exchange_resp)
+                       goto fail;
+               return pkex;
+       }
+
+       /* M in Encrypted Key attribute */
+       attr_key = dpp_get_attr(buf, len, DPP_ATTR_ENCRYPTED_KEY,
+                               &attr_key_len);
+       if (!attr_key || attr_key_len & 0x01 || attr_key_len < 2 ||
+           attr_key_len / 2 > DPP_MAX_SHARED_SECRET_LEN) {
+               wpa_msg(msg_ctx, MSG_INFO, DPP_EVENT_FAIL
+                       "Missing Encrypted Key attribute");
+               return NULL;
+       }
+
+       /* Qi = H(MAC-Initiator | [identifier |] code) * Pi */
+       bnctx = BN_CTX_new();
+       if (!bnctx)
+               goto fail;
+       Qi = dpp_pkex_derive_Qi(curve, peer_mac, code, identifier, bnctx,
+                               &group);
+       if (!Qi)
+               goto fail;
+
+       /* X' = M - Qi */
+       X = EC_POINT_new(group);
+       M = EC_POINT_new(group);
+       Mx = BN_bin2bn(attr_key, attr_key_len / 2, NULL);
+       My = BN_bin2bn(attr_key + attr_key_len / 2, attr_key_len / 2, NULL);
+       if (!X || !M || !Mx || !My ||
+           EC_POINT_set_affine_coordinates_GFp(group, M, Mx, My, bnctx) != 1 ||
+           EC_POINT_is_at_infinity(group, M) ||
+           !EC_POINT_is_on_curve(group, M, bnctx) ||
+           EC_POINT_invert(group, Qi, bnctx) != 1 ||
+           EC_POINT_add(group, X, M, Qi, bnctx) != 1 ||
+           EC_POINT_is_at_infinity(group, X) ||
+           !EC_POINT_is_on_curve(group, X, bnctx)) {
+               wpa_msg(msg_ctx, MSG_INFO, DPP_EVENT_FAIL
+                       "Invalid Encrypted Key value");
+               bi->pkex_t++;
+               goto fail;
+       }
+       dpp_debug_print_point("DPP: M", group, M);
+       dpp_debug_print_point("DPP: X'", group, X);
+
+       pkex = os_zalloc(sizeof(*pkex));
+       if (!pkex)
+               goto fail;
+       pkex->t = bi->pkex_t;
+       pkex->msg_ctx = msg_ctx;
+       pkex->own_bi = bi;
+       os_memcpy(pkex->own_mac, own_mac, ETH_ALEN);
+       os_memcpy(pkex->peer_mac, peer_mac, ETH_ALEN);
+       if (identifier) {
+               pkex->identifier = os_strdup(identifier);
+               if (!pkex->identifier)
+                       goto fail;
+       }
+       pkex->code = os_strdup(code);
+       if (!pkex->code)
+               goto fail;
+
+       os_memcpy(pkex->Mx, attr_key, attr_key_len / 2);
+
+       X_ec = EC_KEY_new();
+       if (!X_ec ||
+           EC_KEY_set_group(X_ec, group) != 1 ||
+           EC_KEY_set_public_key(X_ec, X) != 1)
+               goto fail;
+       pkex->x = EVP_PKEY_new();
+       if (!pkex->x ||
+           EVP_PKEY_set1_EC_KEY(pkex->x, X_ec) != 1)
+               goto fail;
+
+       /* Qr = H(MAC-Responder | | [identifier | ] code) * Pr */
+       Qr = dpp_pkex_derive_Qr(curve, own_mac, code, identifier, bnctx, NULL);
+       if (!Qr)
+               goto fail;
+
+       /* Generate a random ephemeral keypair y/Y */
+#ifdef CONFIG_TESTING_OPTIONS
+       if (dpp_pkex_ephemeral_key_override_len) {
+               const struct dpp_curve_params *tmp_curve;
+
+               wpa_printf(MSG_INFO,
+                          "DPP: TESTING - override ephemeral key y/Y");
+               pkex->y = dpp_set_keypair(&tmp_curve,
+                                         dpp_pkex_ephemeral_key_override,
+                                         dpp_pkex_ephemeral_key_override_len);
+       } else {
+               pkex->y = dpp_gen_keypair(curve);
+       }
+#else /* CONFIG_TESTING_OPTIONS */
+       pkex->y = dpp_gen_keypair(curve);
+#endif /* CONFIG_TESTING_OPTIONS */
+       if (!pkex->y)
+               goto fail;
+
+       /* N = Y + Qr */
+       Y_ec = EVP_PKEY_get1_EC_KEY(pkex->y);
+       if (!Y_ec)
+               goto fail;
+       Y_point = EC_KEY_get0_public_key(Y_ec);
+       if (!Y_point)
+               goto fail;
+       dpp_debug_print_point("DPP: Y", group, Y_point);
+       N = EC_POINT_new(group);
+       Nx = BN_new();
+       Ny = BN_new();
+       if (!N || !Nx || !Ny ||
+           EC_POINT_add(group, N, Y_point, Qr, bnctx) != 1 ||
+           EC_POINT_get_affine_coordinates_GFp(group, N, Nx, Ny, bnctx) != 1)
+               goto fail;
+       dpp_debug_print_point("DPP: N", group, N);
+
+       pkex->exchange_resp = dpp_pkex_build_exchange_resp(pkex, DPP_STATUS_OK,
+                                                          Nx, Ny);
+       if (!pkex->exchange_resp)
+               goto fail;
+
+       /* K = y * X' */
+       if (dpp_ecdh(pkex->y, pkex->x, Kx, &Kx_len) < 0)
+               goto fail;
+
+       wpa_hexdump_key(MSG_DEBUG, "DPP: ECDH shared secret (K.x)",
+                       Kx, Kx_len);
+
+       /* z = HKDF(<>, MAC-Initiator | MAC-Responder | M.x | N.x | code, K.x)
+        */
+       res = dpp_pkex_derive_z(pkex->peer_mac, pkex->own_mac,
+                               pkex->Mx, curve->prime_len,
+                               pkex->Nx, curve->prime_len, pkex->code,
+                               Kx, Kx_len, pkex->z, curve->hash_len);
+       os_memset(Kx, 0, Kx_len);
+       if (res < 0)
+               goto fail;
+
+       pkex->exchange_done = 1;
+
+out:
+       BN_CTX_free(bnctx);
+       EC_POINT_free(Qi);
+       EC_POINT_free(Qr);
+       BN_free(Mx);
+       BN_free(My);
+       BN_free(Nx);
+       BN_free(Ny);
+       EC_POINT_free(M);
+       EC_POINT_free(N);
+       EC_POINT_free(X);
+       EC_KEY_free(X_ec);
+       EC_KEY_free(Y_ec);
+       EC_GROUP_free(group);
+       return pkex;
+fail:
+       wpa_printf(MSG_DEBUG, "DPP: PKEX Exchange Request processing failed");
+       dpp_pkex_free(pkex);
+       pkex = NULL;
+       goto out;
+}
+
+
+static struct wpabuf *
+dpp_pkex_build_commit_reveal_req(struct dpp_pkex *pkex,
+                                const struct wpabuf *A_pub, const u8 *u)
+{
+       const struct dpp_curve_params *curve = pkex->own_bi->curve;
+       struct wpabuf *msg = NULL;
+       size_t clear_len, attr_len;
+       struct wpabuf *clear = NULL;
+       u8 *wrapped;
+       u8 octet;
+       const u8 *addr[2];
+       size_t len[2];
+
+       /* {A, u, [bootstrapping info]}z */
+       clear_len = 4 + 2 * curve->prime_len + 4 + curve->hash_len;
+       clear = wpabuf_alloc(clear_len);
+       attr_len = 4 + clear_len + AES_BLOCK_SIZE;
+#ifdef CONFIG_TESTING_OPTIONS
+       if (dpp_test == DPP_TEST_AFTER_WRAPPED_DATA_PKEX_CR_REQ)
+               attr_len += 5;
+#endif /* CONFIG_TESTING_OPTIONS */
+       msg = dpp_alloc_msg(DPP_PA_PKEX_COMMIT_REVEAL_REQ, attr_len);
+       if (!clear || !msg)
+               goto fail;
+
+#ifdef CONFIG_TESTING_OPTIONS
+       if (dpp_test == DPP_TEST_NO_BOOTSTRAP_KEY_PKEX_CR_REQ) {
+               wpa_printf(MSG_INFO, "DPP: TESTING - no Bootstrap Key");
+               goto skip_bootstrap_key;
+       }
+       if (dpp_test == DPP_TEST_INVALID_BOOTSTRAP_KEY_PKEX_CR_REQ) {
+               wpa_printf(MSG_INFO, "DPP: TESTING - invalid Bootstrap Key");
+               wpabuf_put_le16(clear, DPP_ATTR_BOOTSTRAP_KEY);
+               wpabuf_put_le16(clear, 2 * curve->prime_len);
+               if (dpp_test_gen_invalid_key(clear, curve) < 0)
+                       goto fail;
+               goto skip_bootstrap_key;
+       }
+#endif /* CONFIG_TESTING_OPTIONS */
+
+       /* A in Bootstrap Key attribute */
+       wpabuf_put_le16(clear, DPP_ATTR_BOOTSTRAP_KEY);
+       wpabuf_put_le16(clear, wpabuf_len(A_pub));
+       wpabuf_put_buf(clear, A_pub);
+
+#ifdef CONFIG_TESTING_OPTIONS
+skip_bootstrap_key:
+       if (dpp_test == DPP_TEST_NO_I_AUTH_TAG_PKEX_CR_REQ) {
+               wpa_printf(MSG_INFO, "DPP: TESTING - no I-Auth tag");
+               goto skip_i_auth_tag;
+       }
+       if (dpp_test == DPP_TEST_I_AUTH_TAG_MISMATCH_PKEX_CR_REQ) {
+               wpa_printf(MSG_INFO, "DPP: TESTING - I-Auth tag mismatch");
+               wpabuf_put_le16(clear, DPP_ATTR_I_AUTH_TAG);
+               wpabuf_put_le16(clear, curve->hash_len);
+               wpabuf_put_data(clear, u, curve->hash_len - 1);
+               wpabuf_put_u8(clear, u[curve->hash_len - 1] ^ 0x01);
+               goto skip_i_auth_tag;
+       }
+#endif /* CONFIG_TESTING_OPTIONS */
+
+       /* u in I-Auth tag attribute */
+       wpabuf_put_le16(clear, DPP_ATTR_I_AUTH_TAG);
+       wpabuf_put_le16(clear, curve->hash_len);
+       wpabuf_put_data(clear, u, curve->hash_len);
+
+#ifdef CONFIG_TESTING_OPTIONS
+skip_i_auth_tag:
+       if (dpp_test == DPP_TEST_NO_WRAPPED_DATA_PKEX_CR_REQ) {
+               wpa_printf(MSG_INFO, "DPP: TESTING - no Wrapped Data");
+               goto skip_wrapped_data;
+       }
+#endif /* CONFIG_TESTING_OPTIONS */
+
+       addr[0] = wpabuf_head_u8(msg) + 2;
+       len[0] = DPP_HDR_LEN;
+       octet = 0;
+       addr[1] = &octet;
+       len[1] = sizeof(octet);
+       wpa_hexdump(MSG_DEBUG, "DDP: AES-SIV AD[0]", addr[0], len[0]);
+       wpa_hexdump(MSG_DEBUG, "DDP: AES-SIV AD[1]", addr[1], len[1]);
+
+       wpabuf_put_le16(msg, DPP_ATTR_WRAPPED_DATA);
+       wpabuf_put_le16(msg, wpabuf_len(clear) + AES_BLOCK_SIZE);
+       wrapped = wpabuf_put(msg, wpabuf_len(clear) + AES_BLOCK_SIZE);
+
+       wpa_hexdump_buf(MSG_DEBUG, "DPP: AES-SIV cleartext", clear);
+       if (aes_siv_encrypt(pkex->z, curve->hash_len,
+                           wpabuf_head(clear), wpabuf_len(clear),
+                           2, addr, len, wrapped) < 0)
+               goto fail;
+       wpa_hexdump(MSG_DEBUG, "DPP: AES-SIV ciphertext",
+                   wrapped, wpabuf_len(clear) + AES_BLOCK_SIZE);
+
+#ifdef CONFIG_TESTING_OPTIONS
+       if (dpp_test == DPP_TEST_AFTER_WRAPPED_DATA_PKEX_CR_REQ) {
+               wpa_printf(MSG_INFO, "DPP: TESTING - attr after Wrapped Data");
+               dpp_build_attr_status(msg, DPP_STATUS_OK);
+       }
+skip_wrapped_data:
+#endif /* CONFIG_TESTING_OPTIONS */
+
+out:
+       wpabuf_free(clear);
+       return msg;
+
+fail:
+       wpabuf_free(msg);
+       msg = NULL;
+       goto out;
+}
+
+
+struct wpabuf * dpp_pkex_rx_exchange_resp(struct dpp_pkex *pkex,
+                                         const u8 *peer_mac,
+                                         const u8 *buf, size_t buflen)
+{
+       const u8 *attr_status, *attr_id, *attr_key, *attr_group;
+       u16 attr_status_len, attr_id_len, attr_key_len, attr_group_len;
+       EC_GROUP *group = NULL;
+       BN_CTX *bnctx = NULL;
+       struct wpabuf *msg = NULL, *A_pub = NULL, *X_pub = NULL, *Y_pub = NULL;
+       const struct dpp_curve_params *curve = pkex->own_bi->curve;
+       EC_POINT *Qr = NULL, *Y = NULL, *N = NULL;
+       BIGNUM *Nx = NULL, *Ny = NULL;
+       EC_KEY *Y_ec = NULL;
+       size_t Jx_len, Kx_len;
+       u8 Jx[DPP_MAX_SHARED_SECRET_LEN], Kx[DPP_MAX_SHARED_SECRET_LEN];
+       const u8 *addr[4];
+       size_t len[4];
+       u8 u[DPP_MAX_HASH_LEN];
+       int res;
+
+       if (pkex->failed || pkex->t >= PKEX_COUNTER_T_LIMIT || !pkex->initiator)
+               return NULL;
+
+#ifdef CONFIG_TESTING_OPTIONS
+       if (dpp_test == DPP_TEST_STOP_AT_PKEX_EXCHANGE_RESP) {
+               wpa_printf(MSG_INFO,
+                          "DPP: TESTING - stop at PKEX Exchange Response");
+               pkex->failed = 1;
+               return NULL;
+       }
+
        if (!is_zero_ether_addr(dpp_pkex_peer_mac_override)) {
                wpa_printf(MSG_INFO, "DPP: TESTING - peer_mac override " MACSTR,
                           MAC2STR(dpp_pkex_peer_mac_override));
                peer_mac = dpp_pkex_peer_mac_override;
        }
-       if (!is_zero_ether_addr(dpp_pkex_own_mac_override)) {
-               wpa_printf(MSG_INFO, "DPP: TESTING - own_mac override " MACSTR,
-                          MAC2STR(dpp_pkex_own_mac_override));
-               own_mac = dpp_pkex_own_mac_override;
+#endif /* CONFIG_TESTING_OPTIONS */
+
+       os_memcpy(pkex->peer_mac, peer_mac, ETH_ALEN);
+
+       attr_status = dpp_get_attr(buf, buflen, DPP_ATTR_STATUS,
+                                  &attr_status_len);
+       if (!attr_status || attr_status_len != 1) {
+               dpp_pkex_fail(pkex, "No DPP Status attribute");
+               return NULL;
+       }
+       wpa_printf(MSG_DEBUG, "DPP: Status %u", attr_status[0]);
+
+       if (attr_status[0] == DPP_STATUS_BAD_GROUP) {
+               attr_group = dpp_get_attr(buf, buflen,
+                                         DPP_ATTR_FINITE_CYCLIC_GROUP,
+                                         &attr_group_len);
+               if (attr_group && attr_group_len == 2) {
+                       wpa_msg(pkex->msg_ctx, MSG_INFO, DPP_EVENT_FAIL
+                               "Peer indicated mismatching PKEX group - proposed %u",
+                               WPA_GET_LE16(attr_group));
+                       return NULL;
+               }
+       }
+
+       if (attr_status[0] != DPP_STATUS_OK) {
+               dpp_pkex_fail(pkex, "PKEX failed (peer indicated failure)");
+               return NULL;
+       }
+
+       attr_id_len = 0;
+       attr_id = dpp_get_attr(buf, buflen, DPP_ATTR_CODE_IDENTIFIER,
+                              &attr_id_len);
+       if (!dpp_pkex_identifier_match(attr_id, attr_id_len,
+                                      pkex->identifier)) {
+               dpp_pkex_fail(pkex, "PKEX code identifier mismatch");
+               return NULL;
+       }
+
+       /* N in Encrypted Key attribute */
+       attr_key = dpp_get_attr(buf, buflen, DPP_ATTR_ENCRYPTED_KEY,
+                               &attr_key_len);
+       if (!attr_key || attr_key_len & 0x01 || attr_key_len < 2) {
+               dpp_pkex_fail(pkex, "Missing Encrypted Key attribute");
+               return NULL;
+       }
+
+       /* Qr = H(MAC-Responder | [identifier |] code) * Pr */
+       bnctx = BN_CTX_new();
+       if (!bnctx)
+               goto fail;
+       Qr = dpp_pkex_derive_Qr(curve, pkex->peer_mac, pkex->code,
+                               pkex->identifier, bnctx, &group);
+       if (!Qr)
+               goto fail;
+
+       /* Y' = N - Qr */
+       Y = EC_POINT_new(group);
+       N = EC_POINT_new(group);
+       Nx = BN_bin2bn(attr_key, attr_key_len / 2, NULL);
+       Ny = BN_bin2bn(attr_key + attr_key_len / 2, attr_key_len / 2, NULL);
+       if (!Y || !N || !Nx || !Ny ||
+           EC_POINT_set_affine_coordinates_GFp(group, N, Nx, Ny, bnctx) != 1 ||
+           EC_POINT_is_at_infinity(group, N) ||
+           !EC_POINT_is_on_curve(group, N, bnctx) ||
+           EC_POINT_invert(group, Qr, bnctx) != 1 ||
+           EC_POINT_add(group, Y, N, Qr, bnctx) != 1 ||
+           EC_POINT_is_at_infinity(group, Y) ||
+           !EC_POINT_is_on_curve(group, Y, bnctx)) {
+               dpp_pkex_fail(pkex, "Invalid Encrypted Key value");
+               pkex->t++;
+               goto fail;
+       }
+       dpp_debug_print_point("DPP: N", group, N);
+       dpp_debug_print_point("DPP: Y'", group, Y);
+
+       pkex->exchange_done = 1;
+
+       /* ECDH: J = a * Y’ */
+       Y_ec = EC_KEY_new();
+       if (!Y_ec ||
+           EC_KEY_set_group(Y_ec, group) != 1 ||
+           EC_KEY_set_public_key(Y_ec, Y) != 1)
+               goto fail;
+       pkex->y = EVP_PKEY_new();
+       if (!pkex->y ||
+           EVP_PKEY_set1_EC_KEY(pkex->y, Y_ec) != 1)
+               goto fail;
+       if (dpp_ecdh(pkex->own_bi->pubkey, pkex->y, Jx, &Jx_len) < 0)
+               goto fail;
+
+       wpa_hexdump_key(MSG_DEBUG, "DPP: ECDH shared secret (J.x)",
+                       Jx, Jx_len);
+
+       /* u = HMAC(J.x,  MAC-Initiator | A.x | Y’.x | X.x ) */
+       A_pub = dpp_get_pubkey_point(pkex->own_bi->pubkey, 0);
+       Y_pub = dpp_get_pubkey_point(pkex->y, 0);
+       X_pub = dpp_get_pubkey_point(pkex->x, 0);
+       if (!A_pub || !Y_pub || !X_pub)
+               goto fail;
+       addr[0] = pkex->own_mac;
+       len[0] = ETH_ALEN;
+       addr[1] = wpabuf_head(A_pub);
+       len[1] = wpabuf_len(A_pub) / 2;
+       addr[2] = wpabuf_head(Y_pub);
+       len[2] = wpabuf_len(Y_pub) / 2;
+       addr[3] = wpabuf_head(X_pub);
+       len[3] = wpabuf_len(X_pub) / 2;
+       if (dpp_hmac_vector(curve->hash_len, Jx, Jx_len, 4, addr, len, u) < 0)
+               goto fail;
+       wpa_hexdump(MSG_DEBUG, "DPP: u", u, curve->hash_len);
+
+       /* K = x * Y’ */
+       if (dpp_ecdh(pkex->x, pkex->y, Kx, &Kx_len) < 0)
+               goto fail;
+
+       wpa_hexdump_key(MSG_DEBUG, "DPP: ECDH shared secret (K.x)",
+                       Kx, Kx_len);
+
+       /* z = HKDF(<>, MAC-Initiator | MAC-Responder | M.x | N.x | code, K.x)
+        */
+       res = dpp_pkex_derive_z(pkex->own_mac, pkex->peer_mac,
+                               pkex->Mx, curve->prime_len,
+                               attr_key /* N.x */, attr_key_len / 2,
+                               pkex->code, Kx, Kx_len,
+                               pkex->z, curve->hash_len);
+       os_memset(Kx, 0, Kx_len);
+       if (res < 0)
+               goto fail;
+
+       msg = dpp_pkex_build_commit_reveal_req(pkex, A_pub, u);
+       if (!msg)
+               goto fail;
+
+out:
+       wpabuf_free(A_pub);
+       wpabuf_free(X_pub);
+       wpabuf_free(Y_pub);
+       EC_POINT_free(Qr);
+       EC_POINT_free(Y);
+       EC_POINT_free(N);
+       BN_free(Nx);
+       BN_free(Ny);
+       EC_KEY_free(Y_ec);
+       BN_CTX_free(bnctx);
+       EC_GROUP_free(group);
+       return msg;
+fail:
+       wpa_printf(MSG_DEBUG, "DPP: PKEX Exchange Response processing failed");
+       goto out;
+}
+
+
+static struct wpabuf *
+dpp_pkex_build_commit_reveal_resp(struct dpp_pkex *pkex,
+                                 const struct wpabuf *B_pub, const u8 *v)
+{
+       const struct dpp_curve_params *curve = pkex->own_bi->curve;
+       struct wpabuf *msg = NULL;
+       const u8 *addr[2];
+       size_t len[2];
+       u8 octet;
+       u8 *wrapped;
+       struct wpabuf *clear = NULL;
+       size_t clear_len, attr_len;
+
+       /* {B, v [bootstrapping info]}z */
+       clear_len = 4 + 2 * curve->prime_len + 4 + curve->hash_len;
+       clear = wpabuf_alloc(clear_len);
+       attr_len = 4 + clear_len + AES_BLOCK_SIZE;
+#ifdef CONFIG_TESTING_OPTIONS
+       if (dpp_test == DPP_TEST_AFTER_WRAPPED_DATA_PKEX_CR_RESP)
+               attr_len += 5;
+#endif /* CONFIG_TESTING_OPTIONS */
+       msg = dpp_alloc_msg(DPP_PA_PKEX_COMMIT_REVEAL_RESP, attr_len);
+       if (!clear || !msg)
+               goto fail;
+
+#ifdef CONFIG_TESTING_OPTIONS
+       if (dpp_test == DPP_TEST_NO_BOOTSTRAP_KEY_PKEX_CR_RESP) {
+               wpa_printf(MSG_INFO, "DPP: TESTING - no Bootstrap Key");
+               goto skip_bootstrap_key;
+       }
+       if (dpp_test == DPP_TEST_INVALID_BOOTSTRAP_KEY_PKEX_CR_RESP) {
+               wpa_printf(MSG_INFO, "DPP: TESTING - invalid Bootstrap Key");
+               wpabuf_put_le16(clear, DPP_ATTR_BOOTSTRAP_KEY);
+               wpabuf_put_le16(clear, 2 * curve->prime_len);
+               if (dpp_test_gen_invalid_key(clear, curve) < 0)
+                       goto fail;
+               goto skip_bootstrap_key;
+       }
+#endif /* CONFIG_TESTING_OPTIONS */
+
+       /* B in Bootstrap Key attribute */
+       wpabuf_put_le16(clear, DPP_ATTR_BOOTSTRAP_KEY);
+       wpabuf_put_le16(clear, wpabuf_len(B_pub));
+       wpabuf_put_buf(clear, B_pub);
+
+#ifdef CONFIG_TESTING_OPTIONS
+skip_bootstrap_key:
+       if (dpp_test == DPP_TEST_NO_R_AUTH_TAG_PKEX_CR_RESP) {
+               wpa_printf(MSG_INFO, "DPP: TESTING - no R-Auth tag");
+               goto skip_r_auth_tag;
+       }
+       if (dpp_test == DPP_TEST_R_AUTH_TAG_MISMATCH_PKEX_CR_RESP) {
+               wpa_printf(MSG_INFO, "DPP: TESTING - R-Auth tag mismatch");
+               wpabuf_put_le16(clear, DPP_ATTR_R_AUTH_TAG);
+               wpabuf_put_le16(clear, curve->hash_len);
+               wpabuf_put_data(clear, v, curve->hash_len - 1);
+               wpabuf_put_u8(clear, v[curve->hash_len - 1] ^ 0x01);
+               goto skip_r_auth_tag;
+       }
+#endif /* CONFIG_TESTING_OPTIONS */
+
+       /* v in R-Auth tag attribute */
+       wpabuf_put_le16(clear, DPP_ATTR_R_AUTH_TAG);
+       wpabuf_put_le16(clear, curve->hash_len);
+       wpabuf_put_data(clear, v, curve->hash_len);
+
+#ifdef CONFIG_TESTING_OPTIONS
+skip_r_auth_tag:
+       if (dpp_test == DPP_TEST_NO_WRAPPED_DATA_PKEX_CR_RESP) {
+               wpa_printf(MSG_INFO, "DPP: TESTING - no Wrapped Data");
+               goto skip_wrapped_data;
+       }
+#endif /* CONFIG_TESTING_OPTIONS */
+
+       addr[0] = wpabuf_head_u8(msg) + 2;
+       len[0] = DPP_HDR_LEN;
+       octet = 1;
+       addr[1] = &octet;
+       len[1] = sizeof(octet);
+       wpa_hexdump(MSG_DEBUG, "DDP: AES-SIV AD[0]", addr[0], len[0]);
+       wpa_hexdump(MSG_DEBUG, "DDP: AES-SIV AD[1]", addr[1], len[1]);
+
+       wpabuf_put_le16(msg, DPP_ATTR_WRAPPED_DATA);
+       wpabuf_put_le16(msg, wpabuf_len(clear) + AES_BLOCK_SIZE);
+       wrapped = wpabuf_put(msg, wpabuf_len(clear) + AES_BLOCK_SIZE);
+
+       wpa_hexdump_buf(MSG_DEBUG, "DPP: AES-SIV cleartext", clear);
+       if (aes_siv_encrypt(pkex->z, curve->hash_len,
+                           wpabuf_head(clear), wpabuf_len(clear),
+                           2, addr, len, wrapped) < 0)
+               goto fail;
+       wpa_hexdump(MSG_DEBUG, "DPP: AES-SIV ciphertext",
+                   wrapped, wpabuf_len(clear) + AES_BLOCK_SIZE);
+
+#ifdef CONFIG_TESTING_OPTIONS
+       if (dpp_test == DPP_TEST_AFTER_WRAPPED_DATA_PKEX_CR_RESP) {
+               wpa_printf(MSG_INFO, "DPP: TESTING - attr after Wrapped Data");
+               dpp_build_attr_status(msg, DPP_STATUS_OK);
+       }
+skip_wrapped_data:
+#endif /* CONFIG_TESTING_OPTIONS */
+
+out:
+       wpabuf_free(clear);
+       return msg;
+
+fail:
+       wpabuf_free(msg);
+       msg = NULL;
+       goto out;
+}
+
+
+struct wpabuf * dpp_pkex_rx_commit_reveal_req(struct dpp_pkex *pkex,
+                                             const u8 *hdr,
+                                             const u8 *buf, size_t buflen)
+{
+       const struct dpp_curve_params *curve = pkex->own_bi->curve;
+       size_t Jx_len, Lx_len;
+       u8 Jx[DPP_MAX_SHARED_SECRET_LEN];
+       u8 Lx[DPP_MAX_SHARED_SECRET_LEN];
+       const u8 *wrapped_data, *b_key, *peer_u;
+       u16 wrapped_data_len, b_key_len, peer_u_len = 0;
+       const u8 *addr[4];
+       size_t len[4];
+       u8 octet;
+       u8 *unwrapped = NULL;
+       size_t unwrapped_len = 0;
+       struct wpabuf *msg = NULL, *A_pub = NULL, *X_pub = NULL, *Y_pub = NULL;
+       struct wpabuf *B_pub = NULL;
+       u8 u[DPP_MAX_HASH_LEN], v[DPP_MAX_HASH_LEN];
+
+#ifdef CONFIG_TESTING_OPTIONS
+       if (dpp_test == DPP_TEST_STOP_AT_PKEX_CR_REQ) {
+               wpa_printf(MSG_INFO,
+                          "DPP: TESTING - stop at PKEX CR Request");
+               pkex->failed = 1;
+               return NULL;
+       }
+#endif /* CONFIG_TESTING_OPTIONS */
+
+       if (!pkex->exchange_done || pkex->failed ||
+           pkex->t >= PKEX_COUNTER_T_LIMIT || pkex->initiator)
+               goto fail;
+
+       wrapped_data = dpp_get_attr(buf, buflen, DPP_ATTR_WRAPPED_DATA,
+                                   &wrapped_data_len);
+       if (!wrapped_data || wrapped_data_len < AES_BLOCK_SIZE) {
+               dpp_pkex_fail(pkex,
+                             "Missing or invalid required Wrapped Data attribute");
+               goto fail;
+       }
+
+       wpa_hexdump(MSG_DEBUG, "DPP: AES-SIV ciphertext",
+                   wrapped_data, wrapped_data_len);
+       unwrapped_len = wrapped_data_len - AES_BLOCK_SIZE;
+       unwrapped = os_malloc(unwrapped_len);
+       if (!unwrapped)
+               goto fail;
+
+       addr[0] = hdr;
+       len[0] = DPP_HDR_LEN;
+       octet = 0;
+       addr[1] = &octet;
+       len[1] = sizeof(octet);
+       wpa_hexdump(MSG_DEBUG, "DDP: AES-SIV AD[0]", addr[0], len[0]);
+       wpa_hexdump(MSG_DEBUG, "DDP: AES-SIV AD[1]", addr[1], len[1]);
+
+       if (aes_siv_decrypt(pkex->z, curve->hash_len,
+                           wrapped_data, wrapped_data_len,
+                           2, addr, len, unwrapped) < 0) {
+               dpp_pkex_fail(pkex,
+                             "AES-SIV decryption failed - possible PKEX code mismatch");
+               pkex->failed = 1;
+               pkex->t++;
+               goto fail;
+       }
+       wpa_hexdump(MSG_DEBUG, "DPP: AES-SIV cleartext",
+                   unwrapped, unwrapped_len);
+
+       if (dpp_check_attrs(unwrapped, unwrapped_len) < 0) {
+               dpp_pkex_fail(pkex, "Invalid attribute in unwrapped data");
+               goto fail;
+       }
+
+       b_key = dpp_get_attr(unwrapped, unwrapped_len, DPP_ATTR_BOOTSTRAP_KEY,
+                            &b_key_len);
+       if (!b_key || b_key_len != 2 * curve->prime_len) {
+               dpp_pkex_fail(pkex, "No valid peer bootstrapping key found");
+               goto fail;
+       }
+       pkex->peer_bootstrap_key = dpp_set_pubkey_point(pkex->x, b_key,
+                                                       b_key_len);
+       if (!pkex->peer_bootstrap_key) {
+               dpp_pkex_fail(pkex, "Peer bootstrapping key is invalid");
+               goto fail;
+       }
+       dpp_debug_print_key("DPP: Peer bootstrap public key",
+                           pkex->peer_bootstrap_key);
+
+       /* ECDH: J' = y * A' */
+       if (dpp_ecdh(pkex->y, pkex->peer_bootstrap_key, Jx, &Jx_len) < 0)
+               goto fail;
+
+       wpa_hexdump_key(MSG_DEBUG, "DPP: ECDH shared secret (J.x)",
+                       Jx, Jx_len);
+
+       /* u' = HMAC(J'.x, MAC-Initiator | A'.x | Y.x | X'.x) */
+       A_pub = dpp_get_pubkey_point(pkex->peer_bootstrap_key, 0);
+       Y_pub = dpp_get_pubkey_point(pkex->y, 0);
+       X_pub = dpp_get_pubkey_point(pkex->x, 0);
+       if (!A_pub || !Y_pub || !X_pub)
+               goto fail;
+       addr[0] = pkex->peer_mac;
+       len[0] = ETH_ALEN;
+       addr[1] = wpabuf_head(A_pub);
+       len[1] = wpabuf_len(A_pub) / 2;
+       addr[2] = wpabuf_head(Y_pub);
+       len[2] = wpabuf_len(Y_pub) / 2;
+       addr[3] = wpabuf_head(X_pub);
+       len[3] = wpabuf_len(X_pub) / 2;
+       if (dpp_hmac_vector(curve->hash_len, Jx, Jx_len, 4, addr, len, u) < 0)
+               goto fail;
+
+       peer_u = dpp_get_attr(unwrapped, unwrapped_len, DPP_ATTR_I_AUTH_TAG,
+                             &peer_u_len);
+       if (!peer_u || peer_u_len != curve->hash_len ||
+           os_memcmp(peer_u, u, curve->hash_len) != 0) {
+               dpp_pkex_fail(pkex, "No valid u (I-Auth tag) found");
+               wpa_hexdump(MSG_DEBUG, "DPP: Calculated u'",
+                           u, curve->hash_len);
+               wpa_hexdump(MSG_DEBUG, "DPP: Received u", peer_u, peer_u_len);
+               pkex->t++;
+               goto fail;
+       }
+       wpa_printf(MSG_DEBUG, "DPP: Valid u (I-Auth tag) received");
+
+       /* ECDH: L = b * X' */
+       if (dpp_ecdh(pkex->own_bi->pubkey, pkex->x, Lx, &Lx_len) < 0)
+               goto fail;
+
+       wpa_hexdump_key(MSG_DEBUG, "DPP: ECDH shared secret (L.x)",
+                       Lx, Lx_len);
+
+       /* v = HMAC(L.x, MAC-Responder | B.x | X'.x | Y.x) */
+       B_pub = dpp_get_pubkey_point(pkex->own_bi->pubkey, 0);
+       if (!B_pub)
+               goto fail;
+       addr[0] = pkex->own_mac;
+       len[0] = ETH_ALEN;
+       addr[1] = wpabuf_head(B_pub);
+       len[1] = wpabuf_len(B_pub) / 2;
+       addr[2] = wpabuf_head(X_pub);
+       len[2] = wpabuf_len(X_pub) / 2;
+       addr[3] = wpabuf_head(Y_pub);
+       len[3] = wpabuf_len(Y_pub) / 2;
+       if (dpp_hmac_vector(curve->hash_len, Lx, Lx_len, 4, addr, len, v) < 0)
+               goto fail;
+       wpa_hexdump(MSG_DEBUG, "DPP: v", v, curve->hash_len);
+
+       msg = dpp_pkex_build_commit_reveal_resp(pkex, B_pub, v);
+       if (!msg)
+               goto fail;
+
+out:
+       os_free(unwrapped);
+       wpabuf_free(A_pub);
+       wpabuf_free(B_pub);
+       wpabuf_free(X_pub);
+       wpabuf_free(Y_pub);
+       return msg;
+fail:
+       wpa_printf(MSG_DEBUG,
+                  "DPP: PKEX Commit-Reveal Request processing failed");
+       goto out;
+}
+
+
+int dpp_pkex_rx_commit_reveal_resp(struct dpp_pkex *pkex, const u8 *hdr,
+                                  const u8 *buf, size_t buflen)
+{
+       const struct dpp_curve_params *curve = pkex->own_bi->curve;
+       const u8 *wrapped_data, *b_key, *peer_v;
+       u16 wrapped_data_len, b_key_len, peer_v_len = 0;
+       const u8 *addr[4];
+       size_t len[4];
+       u8 octet;
+       u8 *unwrapped = NULL;
+       size_t unwrapped_len = 0;
+       int ret = -1;
+       u8 v[DPP_MAX_HASH_LEN];
+       size_t Lx_len;
+       u8 Lx[DPP_MAX_SHARED_SECRET_LEN];
+       struct wpabuf *B_pub = NULL, *X_pub = NULL, *Y_pub = NULL;
+
+#ifdef CONFIG_TESTING_OPTIONS
+       if (dpp_test == DPP_TEST_STOP_AT_PKEX_CR_RESP) {
+               wpa_printf(MSG_INFO,
+                          "DPP: TESTING - stop at PKEX CR Response");
+               pkex->failed = 1;
+               goto fail;
+       }
+#endif /* CONFIG_TESTING_OPTIONS */
+
+       if (!pkex->exchange_done || pkex->failed ||
+           pkex->t >= PKEX_COUNTER_T_LIMIT || !pkex->initiator)
+               goto fail;
+
+       wrapped_data = dpp_get_attr(buf, buflen, DPP_ATTR_WRAPPED_DATA,
+                                   &wrapped_data_len);
+       if (!wrapped_data || wrapped_data_len < AES_BLOCK_SIZE) {
+               dpp_pkex_fail(pkex,
+                             "Missing or invalid required Wrapped Data attribute");
+               goto fail;
+       }
+
+       wpa_hexdump(MSG_DEBUG, "DPP: AES-SIV ciphertext",
+                   wrapped_data, wrapped_data_len);
+       unwrapped_len = wrapped_data_len - AES_BLOCK_SIZE;
+       unwrapped = os_malloc(unwrapped_len);
+       if (!unwrapped)
+               goto fail;
+
+       addr[0] = hdr;
+       len[0] = DPP_HDR_LEN;
+       octet = 1;
+       addr[1] = &octet;
+       len[1] = sizeof(octet);
+       wpa_hexdump(MSG_DEBUG, "DDP: AES-SIV AD[0]", addr[0], len[0]);
+       wpa_hexdump(MSG_DEBUG, "DDP: AES-SIV AD[1]", addr[1], len[1]);
+
+       if (aes_siv_decrypt(pkex->z, curve->hash_len,
+                           wrapped_data, wrapped_data_len,
+                           2, addr, len, unwrapped) < 0) {
+               dpp_pkex_fail(pkex,
+                             "AES-SIV decryption failed - possible PKEX code mismatch");
+               pkex->t++;
+               goto fail;
+       }
+       wpa_hexdump(MSG_DEBUG, "DPP: AES-SIV cleartext",
+                   unwrapped, unwrapped_len);
+
+       if (dpp_check_attrs(unwrapped, unwrapped_len) < 0) {
+               dpp_pkex_fail(pkex, "Invalid attribute in unwrapped data");
+               goto fail;
+       }
+
+       b_key = dpp_get_attr(unwrapped, unwrapped_len, DPP_ATTR_BOOTSTRAP_KEY,
+                            &b_key_len);
+       if (!b_key || b_key_len != 2 * curve->prime_len) {
+               dpp_pkex_fail(pkex, "No valid peer bootstrapping key found");
+               goto fail;
+       }
+       pkex->peer_bootstrap_key = dpp_set_pubkey_point(pkex->x, b_key,
+                                                       b_key_len);
+       if (!pkex->peer_bootstrap_key) {
+               dpp_pkex_fail(pkex, "Peer bootstrapping key is invalid");
+               goto fail;
+       }
+       dpp_debug_print_key("DPP: Peer bootstrap public key",
+                           pkex->peer_bootstrap_key);
+
+       /* ECDH: L' = x * B' */
+       if (dpp_ecdh(pkex->x, pkex->peer_bootstrap_key, Lx, &Lx_len) < 0)
+               goto fail;
+
+       wpa_hexdump_key(MSG_DEBUG, "DPP: ECDH shared secret (L.x)",
+                       Lx, Lx_len);
+
+       /* v' = HMAC(L.x, MAC-Responder | B'.x | X.x | Y'.x) */
+       B_pub = dpp_get_pubkey_point(pkex->peer_bootstrap_key, 0);
+       X_pub = dpp_get_pubkey_point(pkex->x, 0);
+       Y_pub = dpp_get_pubkey_point(pkex->y, 0);
+       if (!B_pub || !X_pub || !Y_pub)
+               goto fail;
+       addr[0] = pkex->peer_mac;
+       len[0] = ETH_ALEN;
+       addr[1] = wpabuf_head(B_pub);
+       len[1] = wpabuf_len(B_pub) / 2;
+       addr[2] = wpabuf_head(X_pub);
+       len[2] = wpabuf_len(X_pub) / 2;
+       addr[3] = wpabuf_head(Y_pub);
+       len[3] = wpabuf_len(Y_pub) / 2;
+       if (dpp_hmac_vector(curve->hash_len, Lx, Lx_len, 4, addr, len, v) < 0)
+               goto fail;
+
+       peer_v = dpp_get_attr(unwrapped, unwrapped_len, DPP_ATTR_R_AUTH_TAG,
+                             &peer_v_len);
+       if (!peer_v || peer_v_len != curve->hash_len ||
+           os_memcmp(peer_v, v, curve->hash_len) != 0) {
+               dpp_pkex_fail(pkex, "No valid v (R-Auth tag) found");
+               wpa_hexdump(MSG_DEBUG, "DPP: Calculated v'",
+                           v, curve->hash_len);
+               wpa_hexdump(MSG_DEBUG, "DPP: Received v", peer_v, peer_v_len);
+               pkex->t++;
+               goto fail;
+       }
+       wpa_printf(MSG_DEBUG, "DPP: Valid v (R-Auth tag) received");
+
+       ret = 0;
+out:
+       wpabuf_free(B_pub);
+       wpabuf_free(X_pub);
+       wpabuf_free(Y_pub);
+       os_free(unwrapped);
+       return ret;
+fail:
+       goto out;
+}
+
+
+void dpp_pkex_free(struct dpp_pkex *pkex)
+{
+       if (!pkex)
+               return;
+
+       os_free(pkex->identifier);
+       os_free(pkex->code);
+       EVP_PKEY_free(pkex->x);
+       EVP_PKEY_free(pkex->y);
+       EVP_PKEY_free(pkex->peer_bootstrap_key);
+       wpabuf_free(pkex->exchange_req);
+       wpabuf_free(pkex->exchange_resp);
+       os_free(pkex);
+}
+
+
+#ifdef CONFIG_TESTING_OPTIONS
+char * dpp_corrupt_connector_signature(const char *connector)
+{
+       char *tmp, *pos, *signed3 = NULL;
+       unsigned char *signature = NULL;
+       size_t signature_len = 0, signed3_len;
+
+       tmp = os_zalloc(os_strlen(connector) + 5);
+       if (!tmp)
+               goto fail;
+       os_memcpy(tmp, connector, os_strlen(connector));
+
+       pos = os_strchr(tmp, '.');
+       if (!pos)
+               goto fail;
+
+       pos = os_strchr(pos + 1, '.');
+       if (!pos)
+               goto fail;
+       pos++;
+
+       wpa_printf(MSG_DEBUG, "DPP: Original base64url encoded signature: %s",
+                  pos);
+       signature = base64_url_decode(pos, os_strlen(pos), &signature_len);
+       if (!signature || signature_len == 0)
+               goto fail;
+       wpa_hexdump(MSG_DEBUG, "DPP: Original Connector signature",
+                   signature, signature_len);
+       signature[signature_len - 1] ^= 0x01;
+       wpa_hexdump(MSG_DEBUG, "DPP: Corrupted Connector signature",
+                   signature, signature_len);
+       signed3 = base64_url_encode(signature, signature_len, &signed3_len);
+       if (!signed3)
+               goto fail;
+       os_memcpy(pos, signed3, signed3_len);
+       pos[signed3_len] = '\0';
+       wpa_printf(MSG_DEBUG, "DPP: Corrupted base64url encoded signature: %s",
+                  pos);
+
+out:
+       os_free(signature);
+       os_free(signed3);
+       return tmp;
+fail:
+       os_free(tmp);
+       tmp = NULL;
+       goto out;
+}
+#endif /* CONFIG_TESTING_OPTIONS */
+
+
+#ifdef CONFIG_DPP2
+
+struct dpp_pfs * dpp_pfs_init(const u8 *net_access_key,
+                             size_t net_access_key_len)
+{
+       struct wpabuf *pub = NULL;
+       EVP_PKEY *own_key;
+       struct dpp_pfs *pfs;
+
+       pfs = os_zalloc(sizeof(*pfs));
+       if (!pfs)
+               return NULL;
+
+       own_key = dpp_set_keypair(&pfs->curve, net_access_key,
+                                 net_access_key_len);
+       if (!own_key) {
+               wpa_printf(MSG_ERROR, "DPP: Failed to parse own netAccessKey");
+               goto fail;
+       }
+       EVP_PKEY_free(own_key);
+
+       pfs->ecdh = crypto_ecdh_init(pfs->curve->ike_group);
+       if (!pfs->ecdh)
+               goto fail;
+
+       pub = crypto_ecdh_get_pubkey(pfs->ecdh, 0);
+       pub = wpabuf_zeropad(pub, pfs->curve->prime_len);
+       if (!pub)
+               goto fail;
+
+       pfs->ie = wpabuf_alloc(5 + wpabuf_len(pub));
+       if (!pfs->ie)
+               goto fail;
+       wpabuf_put_u8(pfs->ie, WLAN_EID_EXTENSION);
+       wpabuf_put_u8(pfs->ie, 1 + 2 + wpabuf_len(pub));
+       wpabuf_put_u8(pfs->ie, WLAN_EID_EXT_OWE_DH_PARAM);
+       wpabuf_put_le16(pfs->ie, pfs->curve->ike_group);
+       wpabuf_put_buf(pfs->ie, pub);
+       wpabuf_free(pub);
+       wpa_hexdump_buf(MSG_DEBUG, "DPP: Diffie-Hellman Parameter element",
+                       pfs->ie);
+
+       return pfs;
+fail:
+       wpabuf_free(pub);
+       dpp_pfs_free(pfs);
+       return NULL;
+}
+
+
+int dpp_pfs_process(struct dpp_pfs *pfs, const u8 *peer_ie, size_t peer_ie_len)
+{
+       if (peer_ie_len < 2)
+               return -1;
+       if (WPA_GET_LE16(peer_ie) != pfs->curve->ike_group) {
+               wpa_printf(MSG_DEBUG, "DPP: Peer used different group for PFS");
+               return -1;
+       }
+
+       pfs->secret = crypto_ecdh_set_peerkey(pfs->ecdh, 0, peer_ie + 2,
+                                             peer_ie_len - 2);
+       pfs->secret = wpabuf_zeropad(pfs->secret, pfs->curve->prime_len);
+       if (!pfs->secret) {
+               wpa_printf(MSG_DEBUG, "DPP: Invalid peer DH public key");
+               return -1;
+       }
+       wpa_hexdump_buf_key(MSG_DEBUG, "DPP: DH shared secret", pfs->secret);
+       return 0;
+}
+
+
+void dpp_pfs_free(struct dpp_pfs *pfs)
+{
+       if (!pfs)
+               return;
+       crypto_ecdh_deinit(pfs->ecdh);
+       wpabuf_free(pfs->ie);
+       wpabuf_clear_free(pfs->secret);
+       os_free(pfs);
+}
+
+#endif /* CONFIG_DPP2 */
+
+
+static unsigned int dpp_next_id(struct dpp_global *dpp)
+{
+       struct dpp_bootstrap_info *bi;
+       unsigned int max_id = 0;
+
+       dl_list_for_each(bi, &dpp->bootstrap, struct dpp_bootstrap_info, list) {
+               if (bi->id > max_id)
+                       max_id = bi->id;
+       }
+       return max_id + 1;
+}
+
+
+static int dpp_bootstrap_del(struct dpp_global *dpp, unsigned int id)
+{
+       struct dpp_bootstrap_info *bi, *tmp;
+       int found = 0;
+
+       if (!dpp)
+               return -1;
+
+       dl_list_for_each_safe(bi, tmp, &dpp->bootstrap,
+                             struct dpp_bootstrap_info, list) {
+               if (id && bi->id != id)
+                       continue;
+               found = 1;
+#ifdef CONFIG_DPP2
+               if (dpp->remove_bi)
+                       dpp->remove_bi(dpp->cb_ctx, bi);
+#endif /* CONFIG_DPP2 */
+               dl_list_del(&bi->list);
+               dpp_bootstrap_info_free(bi);
+       }
+
+       if (id == 0)
+               return 0; /* flush succeeds regardless of entries found */
+       return found ? 0 : -1;
+}
+
+
+struct dpp_bootstrap_info * dpp_add_qr_code(struct dpp_global *dpp,
+                                           const char *uri)
+{
+       struct dpp_bootstrap_info *bi;
+
+       if (!dpp)
+               return NULL;
+
+       bi = dpp_parse_uri(uri);
+       if (!bi)
+               return NULL;
+
+       bi->type = DPP_BOOTSTRAP_QR_CODE;
+       bi->id = dpp_next_id(dpp);
+       dl_list_add(&dpp->bootstrap, &bi->list);
+       return bi;
+}
+
+
+struct dpp_bootstrap_info * dpp_add_nfc_uri(struct dpp_global *dpp,
+                                           const char *uri)
+{
+       struct dpp_bootstrap_info *bi;
+
+       if (!dpp)
+               return NULL;
+
+       bi = dpp_parse_uri(uri);
+       if (!bi)
+               return NULL;
+
+       bi->type = DPP_BOOTSTRAP_NFC_URI;
+       bi->id = dpp_next_id(dpp);
+       dl_list_add(&dpp->bootstrap, &bi->list);
+       return bi;
+}
+
+
+int dpp_bootstrap_gen(struct dpp_global *dpp, const char *cmd)
+{
+       char *mac = NULL, *info = NULL, *curve = NULL;
+       char *key = NULL;
+       u8 *privkey = NULL;
+       size_t privkey_len = 0;
+       int ret = -1;
+       struct dpp_bootstrap_info *bi;
+
+       if (!dpp)
+               return -1;
+
+       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 if (os_strstr(cmd, "type=nfc-uri"))
+               bi->type = DPP_BOOTSTRAP_NFC_URI;
+       else
+               goto fail;
+
+       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=");
+
+       if (key) {
+               privkey_len = os_strlen(key) / 2;
+               privkey = os_malloc(privkey_len);
+               if (!privkey ||
+                   hexstr2bin(key, privkey, privkey_len) < 0)
+                       goto fail;
+       }
+
+       if (dpp_keygen(bi, curve, privkey, privkey_len) < 0 ||
+           dpp_parse_uri_chan_list(bi, bi->chan) < 0 ||
+           dpp_parse_uri_mac(bi, mac) < 0 ||
+           dpp_parse_uri_info(bi, info) < 0 ||
+           dpp_gen_uri(bi) < 0)
+               goto fail;
+
+       bi->id = dpp_next_id(dpp);
+       dl_list_add(&dpp->bootstrap, &bi->list);
+       ret = bi->id;
+       bi = NULL;
+fail:
+       os_free(curve);
+       os_free(mac);
+       os_free(info);
+       str_clear_free(key);
+       bin_clear_free(privkey, privkey_len);
+       dpp_bootstrap_info_free(bi);
+       return ret;
+}
+
+
+struct dpp_bootstrap_info *
+dpp_bootstrap_get_id(struct dpp_global *dpp, unsigned int id)
+{
+       struct dpp_bootstrap_info *bi;
+
+       if (!dpp)
+               return NULL;
+
+       dl_list_for_each(bi, &dpp->bootstrap, struct dpp_bootstrap_info, list) {
+               if (bi->id == id)
+                       return bi;
+       }
+       return NULL;
+}
+
+
+int dpp_bootstrap_remove(struct dpp_global *dpp, 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_bootstrap_del(dpp, id_val);
+}
+
+
+struct dpp_bootstrap_info *
+dpp_pkex_finish(struct dpp_global *dpp, struct dpp_pkex *pkex, const u8 *peer,
+               unsigned int freq)
+{
+       struct dpp_bootstrap_info *bi;
+
+       bi = os_zalloc(sizeof(*bi));
+       if (!bi)
+               return NULL;
+       bi->id = dpp_next_id(dpp);
+       bi->type = DPP_BOOTSTRAP_PKEX;
+       os_memcpy(bi->mac_addr, peer, 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;
+       if (dpp_bootstrap_key_hash(bi) < 0) {
+               dpp_bootstrap_info_free(bi);
+               return NULL;
+       }
+       dpp_pkex_free(pkex);
+       dl_list_add(&dpp->bootstrap, &bi->list);
+       return bi;
+}
+
+
+const char * dpp_bootstrap_get_uri(struct dpp_global *dpp, unsigned int id)
+{
+       struct dpp_bootstrap_info *bi;
+
+       bi = dpp_bootstrap_get_id(dpp, id);
+       if (!bi)
+               return NULL;
+       return bi->uri;
+}
+
+
+int dpp_bootstrap_info(struct dpp_global *dpp, int id,
+                      char *reply, int reply_size)
+{
+       struct dpp_bootstrap_info *bi;
+       char pkhash[2 * SHA256_MAC_LEN + 1];
+
+       bi = dpp_bootstrap_get_id(dpp, id);
+       if (!bi)
+               return -1;
+       wpa_snprintf_hex(pkhash, sizeof(pkhash), bi->pubkey_hash,
+                        SHA256_MAC_LEN);
+       return os_snprintf(reply, reply_size, "type=%s\n"
+                          "mac_addr=" MACSTR "\n"
+                          "info=%s\n"
+                          "num_freq=%u\n"
+                          "use_freq=%u\n"
+                          "curve=%s\n"
+                          "pkhash=%s\n",
+                          dpp_bootstrap_type_txt(bi->type),
+                          MAC2STR(bi->mac_addr),
+                          bi->info ? bi->info : "",
+                          bi->num_freq,
+                          bi->num_freq == 1 ? bi->freq[0] : 0,
+                          bi->curve->name,
+                          pkhash);
+}
+
+
+int dpp_bootstrap_set(struct dpp_global *dpp, int id, const char *params)
+{
+       struct dpp_bootstrap_info *bi;
+
+       bi = dpp_bootstrap_get_id(dpp, id);
+       if (!bi)
+               return -1;
+
+       str_clear_free(bi->configurator_params);
+
+       if (params) {
+               bi->configurator_params = os_strdup(params);
+               return bi->configurator_params ? 0 : -1;
+       }
+
+       bi->configurator_params = NULL;
+       return 0;
+}
+
+
+void dpp_bootstrap_find_pair(struct dpp_global *dpp, const u8 *i_bootstrap,
+                            const u8 *r_bootstrap,
+                            struct dpp_bootstrap_info **own_bi,
+                            struct dpp_bootstrap_info **peer_bi)
+{
+       struct dpp_bootstrap_info *bi;
+
+       *own_bi = NULL;
+       *peer_bi = NULL;
+       if (!dpp)
+               return;
+
+       dl_list_for_each(bi, &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;
+       }
+}
+
+
+#ifdef CONFIG_DPP2
+struct dpp_bootstrap_info * dpp_bootstrap_find_chirp(struct dpp_global *dpp,
+                                                    const u8 *hash)
+{
+       struct dpp_bootstrap_info *bi;
+
+       if (!dpp)
+               return NULL;
+
+       dl_list_for_each(bi, &dpp->bootstrap, struct dpp_bootstrap_info, list) {
+               if (!bi->own && os_memcmp(bi->pubkey_hash_chirp, hash,
+                                         SHA256_MAC_LEN) == 0)
+                       return bi;
+       }
+
+       return NULL;
+}
+#endif /* CONFIG_DPP2 */
+
+
+static int dpp_nfc_update_bi_channel(struct dpp_bootstrap_info *own_bi,
+                                    struct dpp_bootstrap_info *peer_bi)
+{
+       unsigned int i, freq = 0;
+       enum hostapd_hw_mode mode;
+       u8 op_class, channel;
+       char chan[20];
+
+       if (peer_bi->num_freq == 0)
+               return 0; /* no channel preference/constraint */
+
+       for (i = 0; i < peer_bi->num_freq; i++) {
+               if (own_bi->num_freq == 0 ||
+                   freq_included(own_bi->freq, own_bi->num_freq,
+                                 peer_bi->freq[i])) {
+                       freq = peer_bi->freq[i];
+                       break;
+               }
+       }
+       if (!freq) {
+               wpa_printf(MSG_DEBUG, "DPP: No common channel found");
+               return -1;
+       }
+
+       mode = ieee80211_freq_to_channel_ext(freq, 0, 0, &op_class, &channel);
+       if (mode == NUM_HOSTAPD_MODES) {
+               wpa_printf(MSG_DEBUG,
+                          "DPP: Could not determine operating class or channel number for %u MHz",
+                          freq);
+       }
+
+       wpa_printf(MSG_DEBUG,
+                  "DPP: Selected %u MHz (op_class %u channel %u) as the negotiation channel based on information from NFC negotiated handover",
+                  freq, op_class, channel);
+       os_snprintf(chan, sizeof(chan), "%u/%u", op_class, channel);
+       os_free(own_bi->chan);
+       own_bi->chan = os_strdup(chan);
+       own_bi->freq[0] = freq;
+       own_bi->num_freq = 1;
+       os_free(peer_bi->chan);
+       peer_bi->chan = os_strdup(chan);
+       peer_bi->freq[0] = freq;
+       peer_bi->num_freq = 1;
+
+       return dpp_gen_uri(own_bi);
+}
+
+
+static int dpp_nfc_update_bi_key(struct dpp_bootstrap_info *own_bi,
+                                struct dpp_bootstrap_info *peer_bi)
+{
+       if (peer_bi->curve == own_bi->curve)
+               return 0;
+
+       wpa_printf(MSG_DEBUG,
+                  "DPP: Update own bootstrapping key to match peer curve from NFC handover");
+
+       EVP_PKEY_free(own_bi->pubkey);
+       own_bi->pubkey = NULL;
+
+       if (dpp_keygen(own_bi, peer_bi->curve->name, NULL, 0) < 0 ||
+           dpp_gen_uri(own_bi) < 0)
+               goto fail;
+
+       return 0;
+fail:
+       dl_list_del(&own_bi->list);
+       dpp_bootstrap_info_free(own_bi);
+       return -1;
+}
+
+
+int dpp_nfc_update_bi(struct dpp_bootstrap_info *own_bi,
+                     struct dpp_bootstrap_info *peer_bi)
+{
+       if (dpp_nfc_update_bi_channel(own_bi, peer_bi) < 0 ||
+           dpp_nfc_update_bi_key(own_bi, peer_bi) < 0)
+               return -1;
+       return 0;
+}
+
+
+static unsigned int dpp_next_configurator_id(struct dpp_global *dpp)
+{
+       struct dpp_configurator *conf;
+       unsigned int max_id = 0;
+
+       dl_list_for_each(conf, &dpp->configurator, struct dpp_configurator,
+                        list) {
+               if (conf->id > max_id)
+                       max_id = conf->id;
+       }
+       return max_id + 1;
+}
+
+
+int dpp_configurator_add(struct dpp_global *dpp, 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 = dpp_next_configurator_id(dpp);
+       dl_list_add(&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 dpp_global *dpp, unsigned int id)
+{
+       struct dpp_configurator *conf, *tmp;
+       int found = 0;
+
+       if (!dpp)
+               return -1;
+
+       dl_list_for_each_safe(conf, tmp, &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 dpp_configurator_remove(struct dpp_global *dpp, 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(dpp, id_val);
+}
+
+
+int dpp_configurator_get_key_id(struct dpp_global *dpp, unsigned int id,
+                               char *buf, size_t buflen)
+{
+       struct dpp_configurator *conf;
+
+       conf = dpp_configurator_get_id(dpp, id);
+       if (!conf)
+               return -1;
+
+       return dpp_configurator_get_key(conf, buf, buflen);
+}
+
+
+#ifdef CONFIG_DPP2
+
+int dpp_configurator_from_backup(struct dpp_global *dpp,
+                                struct dpp_asymmetric_key *key)
+{
+       struct dpp_configurator *conf;
+       const EC_KEY *eckey;
+       const EC_GROUP *group;
+       int nid;
+       const struct dpp_curve_params *curve;
+
+       if (!key->csign)
+               return -1;
+       eckey = EVP_PKEY_get0_EC_KEY(key->csign);
+       if (!eckey)
+               return -1;
+       group = EC_KEY_get0_group(eckey);
+       if (!group)
+               return -1;
+       nid = EC_GROUP_get_curve_name(group);
+       curve = dpp_get_curve_nid(nid);
+       if (!curve) {
+               wpa_printf(MSG_INFO, "DPP: Unsupported group in c-sign-key");
+               return -1;
+       }
+
+       conf = os_zalloc(sizeof(*conf));
+       if (!conf)
+               return -1;
+       conf->curve = curve;
+       conf->csign = key->csign;
+       key->csign = NULL;
+       conf->own = 1;
+       if (dpp_configurator_gen_kid(conf) < 0) {
+               dpp_configurator_free(conf);
+               return -1;
+       }
+
+       conf->id = dpp_next_configurator_id(dpp);
+       dl_list_add(&dpp->configurator, &conf->list);
+       return conf->id;
+}
+
+
+static void dpp_controller_conn_status_result_wait_timeout(void *eloop_ctx,
+                                                          void *timeout_ctx);
+
+
+static void dpp_connection_free(struct dpp_connection *conn)
+{
+       if (conn->sock >= 0) {
+               wpa_printf(MSG_DEBUG, "DPP: Close Controller socket %d",
+                          conn->sock);
+               eloop_unregister_sock(conn->sock, EVENT_TYPE_READ);
+               eloop_unregister_sock(conn->sock, EVENT_TYPE_WRITE);
+               close(conn->sock);
+       }
+       eloop_cancel_timeout(dpp_controller_conn_status_result_wait_timeout,
+                            conn, NULL);
+       wpabuf_free(conn->msg);
+       wpabuf_free(conn->msg_out);
+       dpp_auth_deinit(conn->auth);
+       os_free(conn);
+}
+
+
+static void dpp_connection_remove(struct dpp_connection *conn)
+{
+       dl_list_del(&conn->list);
+       dpp_connection_free(conn);
+}
+
+
+static void dpp_tcp_init_flush(struct dpp_global *dpp)
+{
+       struct dpp_connection *conn, *tmp;
+
+       dl_list_for_each_safe(conn, tmp, &dpp->tcp_init, struct dpp_connection,
+                             list)
+               dpp_connection_remove(conn);
+}
+
+
+static void dpp_relay_controller_free(struct dpp_relay_controller *ctrl)
+{
+       struct dpp_connection *conn, *tmp;
+
+       dl_list_for_each_safe(conn, tmp, &ctrl->conn, struct dpp_connection,
+                             list)
+               dpp_connection_remove(conn);
+       os_free(ctrl);
+}
+
+
+static void dpp_relay_flush_controllers(struct dpp_global *dpp)
+{
+       struct dpp_relay_controller *ctrl, *tmp;
+
+       if (!dpp)
+               return;
+
+       dl_list_for_each_safe(ctrl, tmp, &dpp->controllers,
+                             struct dpp_relay_controller, list) {
+               dl_list_del(&ctrl->list);
+               dpp_relay_controller_free(ctrl);
+       }
+}
+
+#endif /* CONFIG_DPP2 */
+
+
+struct dpp_global * dpp_global_init(struct dpp_global_config *config)
+{
+       struct dpp_global *dpp;
+
+       dpp = os_zalloc(sizeof(*dpp));
+       if (!dpp)
+               return NULL;
+       dpp->msg_ctx = config->msg_ctx;
+#ifdef CONFIG_DPP2
+       dpp->cb_ctx = config->cb_ctx;
+       dpp->process_conf_obj = config->process_conf_obj;
+       dpp->remove_bi = config->remove_bi;
+#endif /* CONFIG_DPP2 */
+
+       dl_list_init(&dpp->bootstrap);
+       dl_list_init(&dpp->configurator);
+#ifdef CONFIG_DPP2
+       dl_list_init(&dpp->controllers);
+       dl_list_init(&dpp->tcp_init);
+#endif /* CONFIG_DPP2 */
+
+       return dpp;
+}
+
+
+void dpp_global_clear(struct dpp_global *dpp)
+{
+       if (!dpp)
+               return;
+
+       dpp_bootstrap_del(dpp, 0);
+       dpp_configurator_del(dpp, 0);
+#ifdef CONFIG_DPP2
+       dpp_tcp_init_flush(dpp);
+       dpp_relay_flush_controllers(dpp);
+       dpp_controller_stop(dpp);
+#endif /* CONFIG_DPP2 */
+}
+
+
+void dpp_global_deinit(struct dpp_global *dpp)
+{
+       dpp_global_clear(dpp);
+       os_free(dpp);
+}
+
+
+#ifdef CONFIG_DPP2
+
+static void dpp_controller_rx(int sd, void *eloop_ctx, void *sock_ctx);
+static void dpp_conn_tx_ready(int sock, void *eloop_ctx, void *sock_ctx);
+static void dpp_controller_auth_success(struct dpp_connection *conn,
+                                       int initiator);
+
+
+int dpp_relay_add_controller(struct dpp_global *dpp,
+                            struct dpp_relay_config *config)
+{
+       struct dpp_relay_controller *ctrl;
+
+       if (!dpp)
+               return -1;
+
+       ctrl = os_zalloc(sizeof(*ctrl));
+       if (!ctrl)
+               return -1;
+       dl_list_init(&ctrl->conn);
+       ctrl->global = dpp;
+       os_memcpy(&ctrl->ipaddr, config->ipaddr, sizeof(*config->ipaddr));
+       os_memcpy(ctrl->pkhash, config->pkhash, SHA256_MAC_LEN);
+       ctrl->cb_ctx = config->cb_ctx;
+       ctrl->tx = config->tx;
+       ctrl->gas_resp_tx = config->gas_resp_tx;
+       dl_list_add(&dpp->controllers, &ctrl->list);
+       return 0;
+}
+
+
+static struct dpp_relay_controller *
+dpp_relay_controller_get(struct dpp_global *dpp, const u8 *pkhash)
+{
+       struct dpp_relay_controller *ctrl;
+
+       if (!dpp)
+               return NULL;
+
+       dl_list_for_each(ctrl, &dpp->controllers, struct dpp_relay_controller,
+                        list) {
+               if (os_memcmp(pkhash, ctrl->pkhash, SHA256_MAC_LEN) == 0)
+                       return ctrl;
+       }
+
+       return NULL;
+}
+
+
+static void dpp_controller_gas_done(struct dpp_connection *conn)
+{
+       struct dpp_authentication *auth = conn->auth;
+
+       if (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;
+               return;
+       }
+
+       wpa_msg(conn->ctrl->global->msg_ctx, MSG_INFO, DPP_EVENT_CONF_SENT);
+       dpp_connection_remove(conn);
+}
+
+
+static int dpp_tcp_send(struct dpp_connection *conn)
+{
+       int res;
+
+       if (!conn->msg_out) {
+               eloop_unregister_sock(conn->sock, EVENT_TYPE_WRITE);
+               conn->write_eloop = 0;
+               return -1;
+       }
+       res = send(conn->sock,
+                  wpabuf_head_u8(conn->msg_out) + conn->msg_out_pos,
+                  wpabuf_len(conn->msg_out) - conn->msg_out_pos, 0);
+       if (res < 0) {
+               wpa_printf(MSG_DEBUG, "DPP: Failed to send buffer: %s",
+                          strerror(errno));
+               dpp_connection_remove(conn);
+               return -1;
+       }
+
+       conn->msg_out_pos += res;
+       if (wpabuf_len(conn->msg_out) > conn->msg_out_pos) {
+               wpa_printf(MSG_DEBUG,
+                          "DPP: %u/%u bytes of message sent to Controller",
+                          (unsigned int) conn->msg_out_pos,
+                          (unsigned int) wpabuf_len(conn->msg_out));
+               if (!conn->write_eloop &&
+                   eloop_register_sock(conn->sock, EVENT_TYPE_WRITE,
+                                       dpp_conn_tx_ready, conn, NULL) == 0)
+                       conn->write_eloop = 1;
+               return 1;
+       }
+
+       wpa_printf(MSG_DEBUG, "DPP: Full message sent over TCP");
+       wpabuf_free(conn->msg_out);
+       conn->msg_out = NULL;
+       conn->msg_out_pos = 0;
+       eloop_unregister_sock(conn->sock, EVENT_TYPE_WRITE);
+       conn->write_eloop = 0;
+       if (!conn->read_eloop &&
+           eloop_register_sock(conn->sock, EVENT_TYPE_READ,
+                               dpp_controller_rx, conn, NULL) == 0)
+               conn->read_eloop = 1;
+       if (conn->on_tcp_tx_complete_remove) {
+               dpp_connection_remove(conn);
+       } else if (conn->ctrl && conn->on_tcp_tx_complete_gas_done &&
+                  conn->auth) {
+               dpp_controller_gas_done(conn);
+       } else if (conn->on_tcp_tx_complete_auth_ok) {
+               conn->on_tcp_tx_complete_auth_ok = 0;
+               dpp_controller_auth_success(conn, 1);
+       }
+
+       return 0;
+}
+
+
+static void dpp_controller_start_gas_client(struct dpp_connection *conn)
+{
+       struct dpp_authentication *auth = conn->auth;
+       struct wpabuf *buf;
+       int netrole_ap = 0; /* TODO: make this configurable */
+
+       buf = dpp_build_conf_req_helper(auth, "Test", netrole_ap, NULL, NULL);
+       if (!buf) {
+               wpa_printf(MSG_DEBUG,
+                          "DPP: No configuration request data available");
+               return;
+       }
+
+       wpabuf_free(conn->msg_out);
+       conn->msg_out_pos = 0;
+       conn->msg_out = wpabuf_alloc(4 + wpabuf_len(buf) - 1);
+       if (!conn->msg_out) {
+               wpabuf_free(buf);
+               return;
+       }
+       wpabuf_put_be32(conn->msg_out, wpabuf_len(buf) - 1);
+       wpabuf_put_data(conn->msg_out, wpabuf_head_u8(buf) + 1,
+                       wpabuf_len(buf) - 1);
+       wpabuf_free(buf);
+
+       if (dpp_tcp_send(conn) == 1) {
+               if (!conn->write_eloop) {
+                       if (eloop_register_sock(conn->sock, EVENT_TYPE_WRITE,
+                                               dpp_conn_tx_ready,
+                                               conn, NULL) < 0)
+                               return;
+                       conn->write_eloop = 1;
+               }
+       }
+}
+
+
+static void dpp_controller_auth_success(struct dpp_connection *conn,
+                                       int initiator)
+{
+       struct dpp_authentication *auth = conn->auth;
+
+       if (!auth)
+               return;
+
+       wpa_printf(MSG_DEBUG, "DPP: Authentication succeeded");
+       wpa_msg(conn->global->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 (auth->configurator) {
+                       /* Prevent GAS response */
+                       auth->auth_success = 0;
+               }
+               return;
        }
 #endif /* CONFIG_TESTING_OPTIONS */
 
-       attr_id = dpp_get_attr(buf, len, DPP_ATTR_CODE_IDENTIFIER,
-                              &attr_id_len);
-       if (!attr_id && identifier) {
+       if (!auth->configurator)
+               dpp_controller_start_gas_client(conn);
+}
+
+
+static void dpp_conn_tx_ready(int sock, void *eloop_ctx, void *sock_ctx)
+{
+       struct dpp_connection *conn = eloop_ctx;
+
+       wpa_printf(MSG_DEBUG, "DPP: TCP socket %d ready for TX", sock);
+       dpp_tcp_send(conn);
+}
+
+
+static int dpp_ipaddr_to_sockaddr(struct sockaddr *addr, socklen_t *addrlen,
+                                 const struct hostapd_ip_addr *ipaddr,
+                                 int port)
+{
+       struct sockaddr_in *dst;
+#ifdef CONFIG_IPV6
+       struct sockaddr_in6 *dst6;
+#endif /* CONFIG_IPV6 */
+
+       switch (ipaddr->af) {
+       case AF_INET:
+               dst = (struct sockaddr_in *) addr;
+               os_memset(dst, 0, sizeof(*dst));
+               dst->sin_family = AF_INET;
+               dst->sin_addr.s_addr = ipaddr->u.v4.s_addr;
+               dst->sin_port = htons(port);
+               *addrlen = sizeof(*dst);
+               break;
+#ifdef CONFIG_IPV6
+       case AF_INET6:
+               dst6 = (struct sockaddr_in6 *) addr;
+               os_memset(dst6, 0, sizeof(*dst6));
+               dst6->sin6_family = AF_INET6;
+               os_memcpy(&dst6->sin6_addr, &ipaddr->u.v6,
+                         sizeof(struct in6_addr));
+               dst6->sin6_port = htons(port);
+               *addrlen = sizeof(*dst6);
+               break;
+#endif /* CONFIG_IPV6 */
+       default:
+               return -1;
+       }
+
+       return 0;
+}
+
+
+static struct dpp_connection *
+dpp_relay_new_conn(struct dpp_relay_controller *ctrl, const u8 *src,
+                  unsigned int freq)
+{
+       struct dpp_connection *conn;
+       struct sockaddr_storage addr;
+       socklen_t addrlen;
+       char txt[100];
+
+       if (dl_list_len(&ctrl->conn) >= 15) {
                wpa_printf(MSG_DEBUG,
-                          "DPP: No PKEX code identifier received, but expected one");
+                          "DPP: Too many ongoing Relay connections to the Controller - cannot start a new one");
                return NULL;
        }
-       if (attr_id && identifier &&
-           (os_strlen(identifier) != attr_id_len ||
-            os_memcmp(identifier, attr_id, attr_id_len) != 0)) {
-               wpa_printf(MSG_DEBUG, "DPP: PKEX code identifier mismatch");
+
+       if (dpp_ipaddr_to_sockaddr((struct sockaddr *) &addr, &addrlen,
+                                  &ctrl->ipaddr, DPP_TCP_PORT) < 0)
                return NULL;
-       }
 
-       attr_group = dpp_get_attr(buf, len, DPP_ATTR_FINITE_CYCLIC_GROUP,
-                                 &attr_group_len);
-       if (!attr_group || attr_group_len != 2) {
-               wpa_msg(msg_ctx, MSG_INFO, DPP_EVENT_FAIL
-                       "Missing or invalid Finite Cyclic Group attribute");
+       conn = os_zalloc(sizeof(*conn));
+       if (!conn)
                return NULL;
+
+       conn->global = ctrl->global;
+       conn->relay = ctrl;
+       os_memcpy(conn->mac_addr, src, ETH_ALEN);
+       conn->freq = freq;
+
+       conn->sock = socket(AF_INET, SOCK_STREAM, 0);
+       if (conn->sock < 0)
+               goto fail;
+       wpa_printf(MSG_DEBUG, "DPP: TCP relay socket %d connection to %s",
+                  conn->sock, hostapd_ip_txt(&ctrl->ipaddr, txt, sizeof(txt)));
+
+       if (fcntl(conn->sock, F_SETFL, O_NONBLOCK) != 0) {
+               wpa_printf(MSG_DEBUG, "DPP: fnctl(O_NONBLOCK) failed: %s",
+                          strerror(errno));
+               goto fail;
        }
-       ike_group = WPA_GET_LE16(attr_group);
-       if (ike_group != curve->ike_group) {
-               wpa_msg(msg_ctx, MSG_INFO, DPP_EVENT_FAIL
-                       "Mismatching PKEX curve: peer=%u own=%u",
-                       ike_group, curve->ike_group);
-               pkex = os_zalloc(sizeof(*pkex));
-               if (!pkex)
-                       goto fail;
-               pkex->own_bi = bi;
-               pkex->failed = 1;
-               pkex->exchange_resp = dpp_pkex_build_exchange_resp(
-                       pkex, DPP_STATUS_BAD_GROUP, NULL, NULL);
-               if (!pkex->exchange_resp)
+
+       if (connect(conn->sock, (struct sockaddr *) &addr, addrlen) < 0) {
+               if (errno != EINPROGRESS) {
+                       wpa_printf(MSG_DEBUG, "DPP: Failed to connect: %s",
+                                  strerror(errno));
                        goto fail;
-               return pkex;
+               }
+
+               /*
+                * Continue connecting in the background; eloop will call us
+                * once the connection is ready (or failed).
+                */
        }
 
-       /* M in Encrypted Key attribute */
-       attr_key = dpp_get_attr(buf, len, DPP_ATTR_ENCRYPTED_KEY,
-                               &attr_key_len);
-       if (!attr_key || attr_key_len & 0x01 || attr_key_len < 2 ||
-           attr_key_len / 2 > DPP_MAX_SHARED_SECRET_LEN) {
-               wpa_msg(msg_ctx, MSG_INFO, DPP_EVENT_FAIL
-                       "Missing Encrypted Key attribute");
+       if (eloop_register_sock(conn->sock, EVENT_TYPE_WRITE,
+                               dpp_conn_tx_ready, conn, NULL) < 0)
+               goto fail;
+       conn->write_eloop = 1;
+
+       /* TODO: eloop timeout to clear a connection if it does not complete
+        * properly */
+
+       dl_list_add(&ctrl->conn, &conn->list);
+       return conn;
+fail:
+       dpp_connection_free(conn);
+       return NULL;
+}
+
+
+static struct wpabuf * dpp_tcp_encaps(const u8 *hdr, const u8 *buf, size_t len)
+{
+       struct wpabuf *msg;
+
+       msg = wpabuf_alloc(4 + 1 + DPP_HDR_LEN + len);
+       if (!msg)
                return NULL;
+       wpabuf_put_be32(msg, 1 + DPP_HDR_LEN + len);
+       wpabuf_put_u8(msg, WLAN_PA_VENDOR_SPECIFIC);
+       wpabuf_put_data(msg, hdr, DPP_HDR_LEN);
+       wpabuf_put_data(msg, buf, len);
+       wpa_hexdump_buf(MSG_MSGDUMP, "DPP: Outgoing TCP message", msg);
+       return msg;
+}
+
+
+static int dpp_relay_tx(struct dpp_connection *conn, const u8 *hdr,
+                       const u8 *buf, size_t len)
+{
+       u8 type = hdr[DPP_HDR_LEN - 1];
+
+       wpa_printf(MSG_DEBUG,
+                  "DPP: Continue already established Relay/Controller connection for this session");
+       wpabuf_free(conn->msg_out);
+       conn->msg_out_pos = 0;
+       conn->msg_out = dpp_tcp_encaps(hdr, buf, len);
+       if (!conn->msg_out) {
+               dpp_connection_remove(conn);
+               return -1;
        }
 
-       /* Qi = H(MAC-Initiator | [identifier |] code) * Pi */
-       bnctx = BN_CTX_new();
-       if (!bnctx)
-               goto fail;
-       Qi = dpp_pkex_derive_Qi(curve, peer_mac, code, identifier, bnctx,
-                               &group);
-       if (!Qi)
-               goto fail;
+       /* TODO: for proto ver 1, need to do remove connection based on GAS Resp
+        * TX status */
+       if (type == DPP_PA_CONFIGURATION_RESULT)
+               conn->on_tcp_tx_complete_remove = 1;
+       dpp_tcp_send(conn);
+       return 0;
+}
 
-       /* X' = M - Qi */
-       X = EC_POINT_new(group);
-       M = EC_POINT_new(group);
-       Mx = BN_bin2bn(attr_key, attr_key_len / 2, NULL);
-       My = BN_bin2bn(attr_key + attr_key_len / 2, attr_key_len / 2, NULL);
-       if (!X || !M || !Mx || !My ||
-           EC_POINT_set_affine_coordinates_GFp(group, M, Mx, My, bnctx) != 1 ||
-           EC_POINT_is_at_infinity(group, M) ||
-           !EC_POINT_is_on_curve(group, M, bnctx) ||
-           EC_POINT_invert(group, Qi, bnctx) != 1 ||
-           EC_POINT_add(group, X, M, Qi, bnctx) != 1 ||
-           EC_POINT_is_at_infinity(group, X) ||
-           !EC_POINT_is_on_curve(group, X, bnctx)) {
-               wpa_msg(msg_ctx, MSG_INFO, DPP_EVENT_FAIL
-                       "Invalid Encrypted Key value");
-               bi->pkex_t++;
-               goto fail;
+
+int dpp_relay_rx_action(struct dpp_global *dpp, const u8 *src, const u8 *hdr,
+                       const u8 *buf, size_t len, unsigned int freq,
+                       const u8 *i_bootstrap, const u8 *r_bootstrap)
+{
+       struct dpp_relay_controller *ctrl;
+       struct dpp_connection *conn;
+       u8 type = hdr[DPP_HDR_LEN - 1];
+
+       /* Check if there is an already started session for this peer and if so,
+        * continue that session (send this over TCP) and return 0.
+        */
+       if (type != DPP_PA_PEER_DISCOVERY_REQ &&
+           type != DPP_PA_PEER_DISCOVERY_RESP &&
+           type != DPP_PA_PRESENCE_ANNOUNCEMENT) {
+               dl_list_for_each(ctrl, &dpp->controllers,
+                                struct dpp_relay_controller, list) {
+                       dl_list_for_each(conn, &ctrl->conn,
+                                        struct dpp_connection, list) {
+                               if (os_memcmp(src, conn->mac_addr,
+                                             ETH_ALEN) == 0)
+                                       return dpp_relay_tx(conn, hdr, buf, len);
+                       }
+               }
+       }
+
+       if (!r_bootstrap)
+               return -1;
+
+       if (type == DPP_PA_PRESENCE_ANNOUNCEMENT) {
+               /* TODO: Could send this to all configured Controllers. For now,
+                * only the first Controller is supported. */
+               ctrl = dl_list_first(&dpp->controllers,
+                                    struct dpp_relay_controller, list);
+       } else {
+               ctrl = dpp_relay_controller_get(dpp, r_bootstrap);
+       }
+       if (!ctrl)
+               return -1;
+
+       wpa_printf(MSG_DEBUG,
+                  "DPP: Authentication Request for a configured Controller");
+       conn = dpp_relay_new_conn(ctrl, src, freq);
+       if (!conn)
+               return -1;
+
+       conn->msg_out = dpp_tcp_encaps(hdr, buf, len);
+       if (!conn->msg_out) {
+               dpp_connection_remove(conn);
+               return -1;
+       }
+       /* Message will be sent in dpp_conn_tx_ready() */
+
+       return 0;
+}
+
+
+int dpp_relay_rx_gas_req(struct dpp_global *dpp, const u8 *src, const u8 *data,
+                        size_t data_len)
+{
+       struct dpp_relay_controller *ctrl;
+       struct dpp_connection *conn, *found = NULL;
+       struct wpabuf *msg;
+
+       /* Check if there is a successfully completed authentication for this
+        * and if so, continue that session (send this over TCP) and return 0.
+        */
+       dl_list_for_each(ctrl, &dpp->controllers,
+                        struct dpp_relay_controller, list) {
+               if (found)
+                       break;
+               dl_list_for_each(conn, &ctrl->conn,
+                                struct dpp_connection, list) {
+                       if (os_memcmp(src, conn->mac_addr,
+                                     ETH_ALEN) == 0) {
+                               found = conn;
+                               break;
+                       }
+               }
        }
-       dpp_debug_print_point("DPP: M", group, M);
-       dpp_debug_print_point("DPP: X'", group, X);
 
-       pkex = os_zalloc(sizeof(*pkex));
-       if (!pkex)
-               goto fail;
-       pkex->t = bi->pkex_t;
-       pkex->msg_ctx = msg_ctx;
-       pkex->own_bi = bi;
-       os_memcpy(pkex->own_mac, own_mac, ETH_ALEN);
-       os_memcpy(pkex->peer_mac, peer_mac, ETH_ALEN);
-       if (identifier) {
-               pkex->identifier = os_strdup(identifier);
-               if (!pkex->identifier)
-                       goto fail;
+       if (!found)
+               return -1;
+
+       msg = wpabuf_alloc(4 + 1 + data_len);
+       if (!msg)
+               return -1;
+       wpabuf_put_be32(msg, 1 + data_len);
+       wpabuf_put_u8(msg, WLAN_PA_GAS_INITIAL_REQ);
+       wpabuf_put_data(msg, data, data_len);
+       wpa_hexdump_buf(MSG_MSGDUMP, "DPP: Outgoing TCP message", msg);
+
+       wpabuf_free(conn->msg_out);
+       conn->msg_out_pos = 0;
+       conn->msg_out = msg;
+       dpp_tcp_send(conn);
+       return 0;
+}
+
+
+static void dpp_controller_free(struct dpp_controller *ctrl)
+{
+       struct dpp_connection *conn, *tmp;
+
+       if (!ctrl)
+               return;
+
+       dl_list_for_each_safe(conn, tmp, &ctrl->conn, struct dpp_connection,
+                             list)
+               dpp_connection_remove(conn);
+
+       if (ctrl->sock >= 0) {
+               close(ctrl->sock);
+               eloop_unregister_sock(ctrl->sock, EVENT_TYPE_READ);
        }
-       pkex->code = os_strdup(code);
-       if (!pkex->code)
-               goto fail;
+       os_free(ctrl->configurator_params);
+       os_free(ctrl);
+}
 
-       os_memcpy(pkex->Mx, attr_key, attr_key_len / 2);
 
-       X_ec = EC_KEY_new();
-       if (!X_ec ||
-           EC_KEY_set_group(X_ec, group) != 1 ||
-           EC_KEY_set_public_key(X_ec, X) != 1)
-               goto fail;
-       pkex->x = EVP_PKEY_new();
-       if (!pkex->x ||
-           EVP_PKEY_set1_EC_KEY(pkex->x, X_ec) != 1)
-               goto fail;
+static int dpp_controller_rx_auth_req(struct dpp_connection *conn,
+                                     const u8 *hdr, const u8 *buf, size_t len)
+{
+       const u8 *r_bootstrap, *i_bootstrap;
+       u16 r_bootstrap_len, i_bootstrap_len;
+       struct dpp_bootstrap_info *own_bi = NULL, *peer_bi = NULL;
 
-       /* Qr = H(MAC-Responder | | [identifier | ] code) * Pr */
-       Qr = dpp_pkex_derive_Qr(curve, own_mac, code, identifier, bnctx, NULL);
-       if (!Qr)
-               goto fail;
+       if (!conn->ctrl)
+               return 0;
 
-       /* Generate a random ephemeral keypair y/Y */
-#ifdef CONFIG_TESTING_OPTIONS
-       if (dpp_pkex_ephemeral_key_override_len) {
-               const struct dpp_curve_params *tmp_curve;
+       wpa_printf(MSG_DEBUG, "DPP: Authentication Request");
 
+       r_bootstrap = dpp_get_attr(buf, len, DPP_ATTR_R_BOOTSTRAP_KEY_HASH,
+                                  &r_bootstrap_len);
+       if (!r_bootstrap || r_bootstrap_len != SHA256_MAC_LEN) {
                wpa_printf(MSG_INFO,
-                          "DPP: TESTING - override ephemeral key y/Y");
-               pkex->y = dpp_set_keypair(&tmp_curve,
-                                         dpp_pkex_ephemeral_key_override,
-                                         dpp_pkex_ephemeral_key_override_len);
-       } else {
-               pkex->y = dpp_gen_keypair(curve);
+                          "Missing or invalid required Responder Bootstrapping Key Hash attribute");
+               return -1;
        }
-#else /* CONFIG_TESTING_OPTIONS */
-       pkex->y = dpp_gen_keypair(curve);
-#endif /* CONFIG_TESTING_OPTIONS */
-       if (!pkex->y)
-               goto fail;
+       wpa_hexdump(MSG_MSGDUMP, "DPP: Responder Bootstrapping Key Hash",
+                   r_bootstrap, r_bootstrap_len);
 
-       /* N = Y + Qr */
-       Y_ec = EVP_PKEY_get1_EC_KEY(pkex->y);
-       if (!Y_ec)
-               goto fail;
-       Y_point = EC_KEY_get0_public_key(Y_ec);
-       if (!Y_point)
-               goto fail;
-       dpp_debug_print_point("DPP: Y", group, Y_point);
-       N = EC_POINT_new(group);
-       Nx = BN_new();
-       Ny = BN_new();
-       if (!N || !Nx || !Ny ||
-           EC_POINT_add(group, N, Y_point, Qr, bnctx) != 1 ||
-           EC_POINT_get_affine_coordinates_GFp(group, N, Nx, Ny, bnctx) != 1)
-               goto fail;
-       dpp_debug_print_point("DPP: N", group, N);
+       i_bootstrap = dpp_get_attr(buf, len, DPP_ATTR_I_BOOTSTRAP_KEY_HASH,
+                                  &i_bootstrap_len);
+       if (!i_bootstrap || i_bootstrap_len != SHA256_MAC_LEN) {
+               wpa_printf(MSG_INFO,
+                          "Missing or invalid required Initiator Bootstrapping Key Hash attribute");
+               return -1;
+       }
+       wpa_hexdump(MSG_MSGDUMP, "DPP: Initiator Bootstrapping Key Hash",
+                   i_bootstrap, i_bootstrap_len);
 
-       pkex->exchange_resp = dpp_pkex_build_exchange_resp(pkex, DPP_STATUS_OK,
-                                                          Nx, Ny);
-       if (!pkex->exchange_resp)
-               goto fail;
+       /* Try to find own and peer bootstrapping key matches based on the
+        * received hash values */
+       dpp_bootstrap_find_pair(conn->ctrl->global, i_bootstrap, r_bootstrap,
+                               &own_bi, &peer_bi);
+       if (!own_bi) {
+               wpa_printf(MSG_INFO,
+                       "No matching own bootstrapping key found - ignore message");
+               return -1;
+       }
 
-       /* K = y * X' */
-       ctx = EVP_PKEY_CTX_new(pkex->y, NULL);
-       if (!ctx ||
-           EVP_PKEY_derive_init(ctx) != 1 ||
-           EVP_PKEY_derive_set_peer(ctx, pkex->x) != 1 ||
-           EVP_PKEY_derive(ctx, NULL, &Kx_len) != 1 ||
-           Kx_len > DPP_MAX_SHARED_SECRET_LEN ||
-           EVP_PKEY_derive(ctx, Kx, &Kx_len) != 1) {
-               wpa_printf(MSG_ERROR,
-                          "DPP: Failed to derive ECDH shared secret: %s",
-                          ERR_error_string(ERR_get_error(), NULL));
-               goto fail;
+       if (conn->auth) {
+               wpa_printf(MSG_INFO,
+                          "Already in DPP authentication exchange - ignore new one");
+               return 0;
        }
 
-       wpa_hexdump_key(MSG_DEBUG, "DPP: ECDH shared secret (K.x)",
-                       Kx, Kx_len);
+       conn->auth = dpp_auth_req_rx(conn->ctrl->global,
+                                    conn->ctrl->global->msg_ctx,
+                                    conn->ctrl->allowed_roles,
+                                    conn->ctrl->qr_mutual,
+                                    peer_bi, own_bi, -1, hdr, buf, len);
+       if (!conn->auth) {
+               wpa_printf(MSG_DEBUG, "DPP: No response generated");
+               return -1;
+       }
 
-       /* z = HKDF(<>, MAC-Initiator | MAC-Responder | M.x | N.x | code, K.x)
-        */
-       res = dpp_pkex_derive_z(pkex->peer_mac, pkex->own_mac,
-                               pkex->Mx, curve->prime_len,
-                               pkex->Nx, curve->prime_len, pkex->code,
-                               Kx, Kx_len, pkex->z, curve->hash_len);
-       os_memset(Kx, 0, Kx_len);
-       if (res < 0)
-               goto fail;
+       if (dpp_set_configurator(conn->auth,
+                                conn->ctrl->configurator_params) < 0) {
+               dpp_connection_remove(conn);
+               return -1;
+       }
 
-       pkex->exchange_done = 1;
+       wpabuf_free(conn->msg_out);
+       conn->msg_out_pos = 0;
+       conn->msg_out = wpabuf_alloc(4 + wpabuf_len(conn->auth->resp_msg) - 1);
+       if (!conn->msg_out)
+               return -1;
+       wpabuf_put_be32(conn->msg_out, wpabuf_len(conn->auth->resp_msg) - 1);
+       wpabuf_put_data(conn->msg_out, wpabuf_head_u8(conn->auth->resp_msg) + 1,
+                       wpabuf_len(conn->auth->resp_msg) - 1);
+
+       if (dpp_tcp_send(conn) == 1) {
+               if (!conn->write_eloop) {
+                       if (eloop_register_sock(conn->sock, EVENT_TYPE_WRITE,
+                                               dpp_conn_tx_ready,
+                                               conn, NULL) < 0)
+                               return -1;
+                       conn->write_eloop = 1;
+               }
+       }
 
-out:
-       EVP_PKEY_CTX_free(ctx);
-       BN_CTX_free(bnctx);
-       EC_POINT_free(Qi);
-       EC_POINT_free(Qr);
-       BN_free(Mx);
-       BN_free(My);
-       BN_free(Nx);
-       BN_free(Ny);
-       EC_POINT_free(M);
-       EC_POINT_free(N);
-       EC_POINT_free(X);
-       EC_KEY_free(X_ec);
-       EC_KEY_free(Y_ec);
-       return pkex;
-fail:
-       wpa_printf(MSG_DEBUG, "DPP: PKEX Exchange Request processing failed");
-       dpp_pkex_free(pkex);
-       pkex = NULL;
-       goto out;
+       return 0;
 }
 
 
-static struct wpabuf *
-dpp_pkex_build_commit_reveal_req(struct dpp_pkex *pkex,
-                                const struct wpabuf *A_pub, const u8 *u)
+static int dpp_controller_rx_auth_resp(struct dpp_connection *conn,
+                                      const u8 *hdr, const u8 *buf, size_t len)
 {
-       const struct dpp_curve_params *curve = pkex->own_bi->curve;
-       struct wpabuf *msg = NULL;
-       size_t clear_len, attr_len;
-       struct wpabuf *clear = NULL;
-       u8 *wrapped;
-       u8 octet;
-       const u8 *addr[2];
-       size_t len[2];
+       struct dpp_authentication *auth = conn->auth;
+       struct wpabuf *msg;
 
-       /* {A, u, [bootstrapping info]}z */
-       clear_len = 4 + 2 * curve->prime_len + 4 + curve->hash_len;
-       clear = wpabuf_alloc(clear_len);
-       attr_len = 4 + clear_len + AES_BLOCK_SIZE;
-#ifdef CONFIG_TESTING_OPTIONS
-       if (dpp_test == DPP_TEST_AFTER_WRAPPED_DATA_PKEX_CR_REQ)
-               attr_len += 5;
-#endif /* CONFIG_TESTING_OPTIONS */
-       msg = dpp_alloc_msg(DPP_PA_PKEX_COMMIT_REVEAL_REQ, attr_len);
-       if (!clear || !msg)
-               goto fail;
+       if (!auth)
+               return -1;
 
-#ifdef CONFIG_TESTING_OPTIONS
-       if (dpp_test == DPP_TEST_NO_BOOTSTRAP_KEY_PKEX_CR_REQ) {
-               wpa_printf(MSG_INFO, "DPP: TESTING - no Bootstrap Key");
-               goto skip_bootstrap_key;
-       }
-       if (dpp_test == DPP_TEST_INVALID_BOOTSTRAP_KEY_PKEX_CR_REQ) {
-               wpa_printf(MSG_INFO, "DPP: TESTING - invalid Bootstrap Key");
-               wpabuf_put_le16(clear, DPP_ATTR_BOOTSTRAP_KEY);
-               wpabuf_put_le16(clear, 2 * curve->prime_len);
-               if (dpp_test_gen_invalid_key(clear, curve) < 0)
-                       goto fail;
-               goto skip_bootstrap_key;
-       }
-#endif /* CONFIG_TESTING_OPTIONS */
+       wpa_printf(MSG_DEBUG, "DPP: Authentication Response");
 
-       /* A in Bootstrap Key attribute */
-       wpabuf_put_le16(clear, DPP_ATTR_BOOTSTRAP_KEY);
-       wpabuf_put_le16(clear, wpabuf_len(A_pub));
-       wpabuf_put_buf(clear, A_pub);
+       msg = dpp_auth_resp_rx(auth, hdr, buf, len);
+       if (!msg) {
+               if (auth->auth_resp_status == DPP_STATUS_RESPONSE_PENDING) {
+                       wpa_printf(MSG_DEBUG,
+                                  "DPP: Start wait for full response");
+                       return -1;
+               }
+               wpa_printf(MSG_DEBUG, "DPP: No confirm generated");
+               dpp_connection_remove(conn);
+               return -1;
+       }
 
-#ifdef CONFIG_TESTING_OPTIONS
-skip_bootstrap_key:
-       if (dpp_test == DPP_TEST_NO_I_AUTH_TAG_PKEX_CR_REQ) {
-               wpa_printf(MSG_INFO, "DPP: TESTING - no I-Auth tag");
-               goto skip_i_auth_tag;
+       wpabuf_free(conn->msg_out);
+       conn->msg_out_pos = 0;
+       conn->msg_out = wpabuf_alloc(4 + wpabuf_len(msg) - 1);
+       if (!conn->msg_out) {
+               wpabuf_free(msg);
+               return -1;
        }
-       if (dpp_test == DPP_TEST_I_AUTH_TAG_MISMATCH_PKEX_CR_REQ) {
-               wpa_printf(MSG_INFO, "DPP: TESTING - I-Auth tag mismatch");
-               wpabuf_put_le16(clear, DPP_ATTR_I_AUTH_TAG);
-               wpabuf_put_le16(clear, curve->hash_len);
-               wpabuf_put_data(clear, u, curve->hash_len - 1);
-               wpabuf_put_u8(clear, u[curve->hash_len - 1] ^ 0x01);
-               goto skip_i_auth_tag;
+       wpabuf_put_be32(conn->msg_out, wpabuf_len(msg) - 1);
+       wpabuf_put_data(conn->msg_out, wpabuf_head_u8(msg) + 1,
+                       wpabuf_len(msg) - 1);
+       wpabuf_free(msg);
+
+       conn->on_tcp_tx_complete_auth_ok = 1;
+       if (dpp_tcp_send(conn) == 1) {
+               if (!conn->write_eloop) {
+                       if (eloop_register_sock(conn->sock, EVENT_TYPE_WRITE,
+                                               dpp_conn_tx_ready,
+                                               conn, NULL) < 0)
+                               return -1;
+                       conn->write_eloop = 1;
+               }
        }
-#endif /* CONFIG_TESTING_OPTIONS */
 
-       /* u in I-Auth tag attribute */
-       wpabuf_put_le16(clear, DPP_ATTR_I_AUTH_TAG);
-       wpabuf_put_le16(clear, curve->hash_len);
-       wpabuf_put_data(clear, u, curve->hash_len);
+       return 0;
+}
 
-#ifdef CONFIG_TESTING_OPTIONS
-skip_i_auth_tag:
-       if (dpp_test == DPP_TEST_NO_WRAPPED_DATA_PKEX_CR_REQ) {
-               wpa_printf(MSG_INFO, "DPP: TESTING - no Wrapped Data");
-               goto skip_wrapped_data;
-       }
-#endif /* CONFIG_TESTING_OPTIONS */
 
-       addr[0] = wpabuf_head_u8(msg) + 2;
-       len[0] = DPP_HDR_LEN;
-       octet = 0;
-       addr[1] = &octet;
-       len[1] = sizeof(octet);
-       wpa_hexdump(MSG_DEBUG, "DDP: AES-SIV AD[0]", addr[0], len[0]);
-       wpa_hexdump(MSG_DEBUG, "DDP: AES-SIV AD[1]", addr[1], len[1]);
+static int dpp_controller_rx_auth_conf(struct dpp_connection *conn,
+                                      const u8 *hdr, const u8 *buf, size_t len)
+{
+       struct dpp_authentication *auth = conn->auth;
 
-       wpabuf_put_le16(msg, DPP_ATTR_WRAPPED_DATA);
-       wpabuf_put_le16(msg, wpabuf_len(clear) + AES_BLOCK_SIZE);
-       wrapped = wpabuf_put(msg, wpabuf_len(clear) + AES_BLOCK_SIZE);
+       wpa_printf(MSG_DEBUG, "DPP: Authentication Confirmation");
 
-       wpa_hexdump_buf(MSG_DEBUG, "DPP: AES-SIV cleartext", clear);
-       if (aes_siv_encrypt(pkex->z, curve->hash_len,
-                           wpabuf_head(clear), wpabuf_len(clear),
-                           2, addr, len, wrapped) < 0)
-               goto fail;
-       wpa_hexdump(MSG_DEBUG, "DPP: AES-SIV ciphertext",
-                   wrapped, wpabuf_len(clear) + AES_BLOCK_SIZE);
+       if (!auth) {
+               wpa_printf(MSG_DEBUG,
+                          "DPP: No DPP Authentication in progress - drop");
+               return -1;
+       }
 
-#ifdef CONFIG_TESTING_OPTIONS
-       if (dpp_test == DPP_TEST_AFTER_WRAPPED_DATA_PKEX_CR_REQ) {
-               wpa_printf(MSG_INFO, "DPP: TESTING - attr after Wrapped Data");
-               dpp_build_attr_status(msg, DPP_STATUS_OK);
+       if (dpp_auth_conf_rx(auth, hdr, buf, len) < 0) {
+               wpa_printf(MSG_DEBUG, "DPP: Authentication failed");
+               return -1;
        }
-skip_wrapped_data:
-#endif /* CONFIG_TESTING_OPTIONS */
 
-out:
-       wpabuf_free(clear);
-       return msg;
+       dpp_controller_auth_success(conn, 0);
+       return 0;
+}
 
-fail:
-       wpabuf_free(msg);
-       msg = NULL;
-       goto out;
+
+static void dpp_controller_conn_status_result_wait_timeout(void *eloop_ctx,
+                                                          void *timeout_ctx)
+{
+       struct dpp_connection *conn = eloop_ctx;
+
+       if (!conn->auth->waiting_conf_result)
+               return;
+
+       wpa_printf(MSG_DEBUG,
+                  "DPP: Timeout while waiting for Connection Status Result");
+       wpa_msg(conn->ctrl->global->msg_ctx, MSG_INFO,
+               DPP_EVENT_CONN_STATUS_RESULT "timeout");
+       dpp_connection_remove(conn);
 }
 
 
-struct wpabuf * dpp_pkex_rx_exchange_resp(struct dpp_pkex *pkex,
-                                         const u8 *peer_mac,
-                                         const u8 *buf, size_t buflen)
+static int dpp_controller_rx_conf_result(struct dpp_connection *conn,
+                                        const u8 *hdr, const u8 *buf,
+                                        size_t len)
 {
-       const u8 *attr_status, *attr_id, *attr_key, *attr_group;
-       u16 attr_status_len, attr_id_len, attr_key_len, attr_group_len;
-       const EC_GROUP *group;
-       BN_CTX *bnctx = NULL;
-       struct wpabuf *msg = NULL, *A_pub = NULL, *X_pub = NULL, *Y_pub = NULL;
-       const struct dpp_curve_params *curve = pkex->own_bi->curve;
-       EC_POINT *Qr = NULL, *Y = NULL, *N = NULL;
-       BIGNUM *Nx = NULL, *Ny = NULL;
-       EVP_PKEY_CTX *ctx = NULL;
-       EC_KEY *Y_ec = NULL;
-       size_t Jx_len, Kx_len;
-       u8 Jx[DPP_MAX_SHARED_SECRET_LEN], Kx[DPP_MAX_SHARED_SECRET_LEN];
-       const u8 *addr[4];
-       size_t len[4];
-       u8 u[DPP_MAX_HASH_LEN];
-       int res;
+       struct dpp_authentication *auth = conn->auth;
+       enum dpp_status_error status;
 
-       if (pkex->failed || pkex->t >= PKEX_COUNTER_T_LIMIT || !pkex->initiator)
-               return NULL;
+       if (!conn->ctrl)
+               return 0;
 
-#ifdef CONFIG_TESTING_OPTIONS
-       if (dpp_test == DPP_TEST_STOP_AT_PKEX_EXCHANGE_RESP) {
-               wpa_printf(MSG_INFO,
-                          "DPP: TESTING - stop at PKEX Exchange Response");
-               pkex->failed = 1;
-               return NULL;
+       wpa_printf(MSG_DEBUG, "DPP: Configuration Result");
+
+       if (!auth || !auth->waiting_conf_result) {
+               wpa_printf(MSG_DEBUG,
+                          "DPP: No DPP Configuration waiting for result - drop");
+               return -1;
        }
 
-       if (!is_zero_ether_addr(dpp_pkex_peer_mac_override)) {
-               wpa_printf(MSG_INFO, "DPP: TESTING - peer_mac override " MACSTR,
-                          MAC2STR(dpp_pkex_peer_mac_override));
-               peer_mac = dpp_pkex_peer_mac_override;
+       status = dpp_conf_result_rx(auth, hdr, buf, len);
+       if (status == DPP_STATUS_OK && auth->send_conn_status) {
+               wpa_msg(conn->ctrl->global->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(
+                       dpp_controller_conn_status_result_wait_timeout,
+                       conn, NULL);
+               eloop_register_timeout(
+                       16, 0, dpp_controller_conn_status_result_wait_timeout,
+                       conn, NULL);
+               return 0;
        }
-#endif /* CONFIG_TESTING_OPTIONS */
+       if (status == DPP_STATUS_OK)
+               wpa_msg(conn->ctrl->global->msg_ctx, MSG_INFO,
+                       DPP_EVENT_CONF_SENT);
+       else
+               wpa_msg(conn->ctrl->global->msg_ctx, MSG_INFO,
+                       DPP_EVENT_CONF_FAILED);
+       return -1; /* to remove the completed connection */
+}
 
-       os_memcpy(pkex->peer_mac, peer_mac, ETH_ALEN);
 
-       attr_status = dpp_get_attr(buf, buflen, DPP_ATTR_STATUS,
-                                  &attr_status_len);
-       if (!attr_status || attr_status_len != 1) {
-               dpp_pkex_fail(pkex, "No DPP Status attribute");
-               return NULL;
-       }
-       wpa_printf(MSG_DEBUG, "DPP: Status %u", attr_status[0]);
+static int dpp_controller_rx_conn_status_result(struct dpp_connection *conn,
+                                               const u8 *hdr, const u8 *buf,
+                                               size_t len)
+{
+       struct dpp_authentication *auth = conn->auth;
+       enum dpp_status_error status;
+       u8 ssid[SSID_MAX_LEN];
+       size_t ssid_len = 0;
+       char *channel_list = NULL;
 
-       if (attr_status[0] == DPP_STATUS_BAD_GROUP) {
-               attr_group = dpp_get_attr(buf, buflen,
-                                         DPP_ATTR_FINITE_CYCLIC_GROUP,
-                                         &attr_group_len);
-               if (attr_group && attr_group_len == 2) {
-                       wpa_msg(pkex->msg_ctx, MSG_INFO, DPP_EVENT_FAIL
-                               "Peer indicated mismatching PKEX group - proposed %u",
-                               WPA_GET_LE16(attr_group));
-                       return NULL;
-               }
-       }
+       if (!conn->ctrl)
+               return 0;
 
-       if (attr_status[0] != DPP_STATUS_OK) {
-               dpp_pkex_fail(pkex, "PKEX failed (peer indicated failure)");
-               return NULL;
-       }
+       wpa_printf(MSG_DEBUG, "DPP: Connection Status Result");
 
-       attr_id = dpp_get_attr(buf, buflen, DPP_ATTR_CODE_IDENTIFIER,
-                              &attr_id_len);
-       if (!attr_id && pkex->identifier) {
+       if (!auth || !auth->waiting_conn_status_result) {
                wpa_printf(MSG_DEBUG,
-                          "DPP: No PKEX code identifier received, but expected one");
-               return NULL;
-       }
-       if (attr_id && pkex->identifier &&
-           (os_strlen(pkex->identifier) != attr_id_len ||
-            os_memcmp(pkex->identifier, attr_id, attr_id_len) != 0)) {
-               dpp_pkex_fail(pkex, "PKEX code identifier mismatch");
-               return NULL;
-       }
-
-       /* N in Encrypted Key attribute */
-       attr_key = dpp_get_attr(buf, buflen, DPP_ATTR_ENCRYPTED_KEY,
-                               &attr_key_len);
-       if (!attr_key || attr_key_len & 0x01 || attr_key_len < 2) {
-               dpp_pkex_fail(pkex, "Missing Encrypted Key attribute");
-               return NULL;
+                          "DPP: No DPP Configuration waiting for connection status result - drop");
+               return -1;
        }
 
-       /* Qr = H(MAC-Responder | [identifier |] code) * Pr */
-       bnctx = BN_CTX_new();
-       if (!bnctx)
-               goto fail;
-       Qr = dpp_pkex_derive_Qr(curve, pkex->peer_mac, pkex->code,
-                               pkex->identifier, bnctx, &group);
-       if (!Qr)
-               goto fail;
+       status = dpp_conn_status_result_rx(auth, hdr, buf, len,
+                                          ssid, &ssid_len, &channel_list);
+       wpa_msg(conn->ctrl->global->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);
+       return -1; /* to remove the completed connection */
+}
 
-       /* Y' = N - Qr */
-       Y = EC_POINT_new(group);
-       N = EC_POINT_new(group);
-       Nx = BN_bin2bn(attr_key, attr_key_len / 2, NULL);
-       Ny = BN_bin2bn(attr_key + attr_key_len / 2, attr_key_len / 2, NULL);
-       if (!Y || !N || !Nx || !Ny ||
-           EC_POINT_set_affine_coordinates_GFp(group, N, Nx, Ny, bnctx) != 1 ||
-           EC_POINT_is_at_infinity(group, N) ||
-           !EC_POINT_is_on_curve(group, N, bnctx) ||
-           EC_POINT_invert(group, Qr, bnctx) != 1 ||
-           EC_POINT_add(group, Y, N, Qr, bnctx) != 1 ||
-           EC_POINT_is_at_infinity(group, Y) ||
-           !EC_POINT_is_on_curve(group, Y, bnctx)) {
-               dpp_pkex_fail(pkex, "Invalid Encrypted Key value");
-               pkex->t++;
-               goto fail;
-       }
-       dpp_debug_print_point("DPP: N", group, N);
-       dpp_debug_print_point("DPP: Y'", group, Y);
 
-       pkex->exchange_done = 1;
+static int dpp_controller_rx_presence_announcement(struct dpp_connection *conn,
+                                                  const u8 *hdr, const u8 *buf,
+                                                  size_t len)
+{
+       const u8 *r_bootstrap;
+       u16 r_bootstrap_len;
+       struct dpp_bootstrap_info *peer_bi;
+       struct dpp_authentication *auth;
+       struct dpp_global *dpp = conn->ctrl->global;
 
-       /* ECDH: J = a * Y’ */
-       Y_ec = EC_KEY_new();
-       if (!Y_ec ||
-           EC_KEY_set_group(Y_ec, group) != 1 ||
-           EC_KEY_set_public_key(Y_ec, Y) != 1)
-               goto fail;
-       pkex->y = EVP_PKEY_new();
-       if (!pkex->y ||
-           EVP_PKEY_set1_EC_KEY(pkex->y, Y_ec) != 1)
-               goto fail;
-       ctx = EVP_PKEY_CTX_new(pkex->own_bi->pubkey, NULL);
-       if (!ctx ||
-           EVP_PKEY_derive_init(ctx) != 1 ||
-           EVP_PKEY_derive_set_peer(ctx, pkex->y) != 1 ||
-           EVP_PKEY_derive(ctx, NULL, &Jx_len) != 1 ||
-           Jx_len > DPP_MAX_SHARED_SECRET_LEN ||
-           EVP_PKEY_derive(ctx, Jx, &Jx_len) != 1) {
-               wpa_printf(MSG_ERROR,
-                          "DPP: Failed to derive ECDH shared secret: %s",
-                          ERR_error_string(ERR_get_error(), NULL));
-               goto fail;
+       if (conn->auth) {
+               wpa_printf(MSG_DEBUG,
+                          "DPP: Ignore Presence Announcement during ongoing Authentication");
+               return -1;
        }
 
-       wpa_hexdump_key(MSG_DEBUG, "DPP: ECDH shared secret (J.x)",
-                       Jx, Jx_len);
-
-       /* u = HMAC(J.x,  MAC-Initiator | A.x | Y’.x | X.x ) */
-       A_pub = dpp_get_pubkey_point(pkex->own_bi->pubkey, 0);
-       Y_pub = dpp_get_pubkey_point(pkex->y, 0);
-       X_pub = dpp_get_pubkey_point(pkex->x, 0);
-       if (!A_pub || !Y_pub || !X_pub)
-               goto fail;
-       addr[0] = pkex->own_mac;
-       len[0] = ETH_ALEN;
-       addr[1] = wpabuf_head(A_pub);
-       len[1] = wpabuf_len(A_pub) / 2;
-       addr[2] = wpabuf_head(Y_pub);
-       len[2] = wpabuf_len(Y_pub) / 2;
-       addr[3] = wpabuf_head(X_pub);
-       len[3] = wpabuf_len(X_pub) / 2;
-       if (dpp_hmac_vector(curve->hash_len, Jx, Jx_len, 4, addr, len, u) < 0)
-               goto fail;
-       wpa_hexdump(MSG_DEBUG, "DPP: u", u, curve->hash_len);
+       wpa_printf(MSG_DEBUG, "DPP: Presence Announcement");
 
-       /* K = x * Y’ */
-       EVP_PKEY_CTX_free(ctx);
-       ctx = EVP_PKEY_CTX_new(pkex->x, NULL);
-       if (!ctx ||
-           EVP_PKEY_derive_init(ctx) != 1 ||
-           EVP_PKEY_derive_set_peer(ctx, pkex->y) != 1 ||
-           EVP_PKEY_derive(ctx, NULL, &Kx_len) != 1 ||
-           Kx_len > DPP_MAX_SHARED_SECRET_LEN ||
-           EVP_PKEY_derive(ctx, Kx, &Kx_len) != 1) {
-               wpa_printf(MSG_ERROR,
-                          "DPP: Failed to derive ECDH shared secret: %s",
-                          ERR_error_string(ERR_get_error(), NULL));
-               goto fail;
+       r_bootstrap = dpp_get_attr(buf, len, DPP_ATTR_R_BOOTSTRAP_KEY_HASH,
+                                  &r_bootstrap_len);
+       if (!r_bootstrap || r_bootstrap_len != SHA256_MAC_LEN) {
+               wpa_msg(dpp->msg_ctx, MSG_INFO, DPP_EVENT_FAIL
+                       "Missing or invalid required Responder Bootstrapping Key Hash attribute");
+               return -1;
+       }
+       wpa_hexdump(MSG_MSGDUMP, "DPP: Responder Bootstrapping Key Hash",
+                   r_bootstrap, r_bootstrap_len);
+       peer_bi = dpp_bootstrap_find_chirp(dpp, r_bootstrap);
+       if (!peer_bi) {
+               wpa_printf(MSG_DEBUG,
+                          "DPP: No matching bootstrapping information found");
+               return -1;
        }
 
-       wpa_hexdump_key(MSG_DEBUG, "DPP: ECDH shared secret (K.x)",
-                       Kx, Kx_len);
+       auth = dpp_auth_init(dpp, dpp->msg_ctx, peer_bi, NULL,
+                            DPP_CAPAB_CONFIGURATOR, -1, NULL, 0);
+       if (!auth)
+               return -1;
+       if (dpp_set_configurator(conn->auth,
+                                conn->ctrl->configurator_params) < 0) {
+               dpp_auth_deinit(auth);
+               dpp_connection_remove(conn);
+               return -1;
+       }
 
-       /* z = HKDF(<>, MAC-Initiator | MAC-Responder | M.x | N.x | code, K.x)
-        */
-       res = dpp_pkex_derive_z(pkex->own_mac, pkex->peer_mac,
-                               pkex->Mx, curve->prime_len,
-                               attr_key /* N.x */, attr_key_len / 2,
-                               pkex->code, Kx, Kx_len,
-                               pkex->z, curve->hash_len);
-       os_memset(Kx, 0, Kx_len);
-       if (res < 0)
-               goto fail;
+       conn->auth = auth;
 
-       msg = dpp_pkex_build_commit_reveal_req(pkex, A_pub, u);
-       if (!msg)
-               goto fail;
+       wpabuf_free(conn->msg_out);
+       conn->msg_out_pos = 0;
+       conn->msg_out = wpabuf_alloc(4 + wpabuf_len(conn->auth->req_msg) - 1);
+       if (!conn->msg_out)
+               return -1;
+       wpabuf_put_be32(conn->msg_out, wpabuf_len(conn->auth->req_msg) - 1);
+       wpabuf_put_data(conn->msg_out, wpabuf_head_u8(conn->auth->req_msg) + 1,
+                       wpabuf_len(conn->auth->req_msg) - 1);
+
+       if (dpp_tcp_send(conn) == 1) {
+               if (!conn->write_eloop) {
+                       if (eloop_register_sock(conn->sock, EVENT_TYPE_WRITE,
+                                               dpp_conn_tx_ready,
+                                               conn, NULL) < 0)
+                               return -1;
+                       conn->write_eloop = 1;
+               }
+       }
 
-out:
-       wpabuf_free(A_pub);
-       wpabuf_free(X_pub);
-       wpabuf_free(Y_pub);
-       EC_POINT_free(Qr);
-       EC_POINT_free(Y);
-       EC_POINT_free(N);
-       BN_free(Nx);
-       BN_free(Ny);
-       EC_KEY_free(Y_ec);
-       EVP_PKEY_CTX_free(ctx);
-       BN_CTX_free(bnctx);
-       return msg;
-fail:
-       wpa_printf(MSG_DEBUG, "DPP: PKEX Exchange Response processing failed");
-       goto out;
+       return 0;
 }
 
 
-static struct wpabuf *
-dpp_pkex_build_commit_reveal_resp(struct dpp_pkex *pkex,
-                                 const struct wpabuf *B_pub, const u8 *v)
+static int dpp_controller_rx_action(struct dpp_connection *conn, const u8 *msg,
+                                   size_t len)
 {
-       const struct dpp_curve_params *curve = pkex->own_bi->curve;
-       struct wpabuf *msg = NULL;
-       const u8 *addr[2];
-       size_t len[2];
-       u8 octet;
-       u8 *wrapped;
-       struct wpabuf *clear = NULL;
-       size_t clear_len, attr_len;
+       const u8 *pos, *end;
+       u8 type;
 
-       /* {B, v [bootstrapping info]}z */
-       clear_len = 4 + 2 * curve->prime_len + 4 + curve->hash_len;
-       clear = wpabuf_alloc(clear_len);
-       attr_len = 4 + clear_len + AES_BLOCK_SIZE;
-#ifdef CONFIG_TESTING_OPTIONS
-       if (dpp_test == DPP_TEST_AFTER_WRAPPED_DATA_PKEX_CR_RESP)
-               attr_len += 5;
-#endif /* CONFIG_TESTING_OPTIONS */
-       msg = dpp_alloc_msg(DPP_PA_PKEX_COMMIT_REVEAL_RESP, attr_len);
-       if (!clear || !msg)
-               goto fail;
+       wpa_printf(MSG_DEBUG, "DPP: Received DPP Action frame over TCP");
+       pos = msg;
+       end = msg + len;
 
-#ifdef CONFIG_TESTING_OPTIONS
-       if (dpp_test == DPP_TEST_NO_BOOTSTRAP_KEY_PKEX_CR_RESP) {
-               wpa_printf(MSG_INFO, "DPP: TESTING - no Bootstrap Key");
-               goto skip_bootstrap_key;
-       }
-       if (dpp_test == DPP_TEST_INVALID_BOOTSTRAP_KEY_PKEX_CR_RESP) {
-               wpa_printf(MSG_INFO, "DPP: TESTING - invalid Bootstrap Key");
-               wpabuf_put_le16(clear, DPP_ATTR_BOOTSTRAP_KEY);
-               wpabuf_put_le16(clear, 2 * curve->prime_len);
-               if (dpp_test_gen_invalid_key(clear, curve) < 0)
-                       goto fail;
-               goto skip_bootstrap_key;
+       if (end - pos < DPP_HDR_LEN ||
+           WPA_GET_BE24(pos) != OUI_WFA ||
+           pos[3] != DPP_OUI_TYPE) {
+               wpa_printf(MSG_DEBUG, "DPP: Unrecognized header");
+               return -1;
        }
-#endif /* CONFIG_TESTING_OPTIONS */
 
-       /* B in Bootstrap Key attribute */
-       wpabuf_put_le16(clear, DPP_ATTR_BOOTSTRAP_KEY);
-       wpabuf_put_le16(clear, wpabuf_len(B_pub));
-       wpabuf_put_buf(clear, B_pub);
+       if (pos[4] != 1) {
+               wpa_printf(MSG_DEBUG, "DPP: Unsupported Crypto Suite %u",
+                          pos[4]);
+               return -1;
+       }
+       type = pos[5];
+       wpa_printf(MSG_DEBUG, "DPP: Received message type %u", type);
+       pos += DPP_HDR_LEN;
 
-#ifdef CONFIG_TESTING_OPTIONS
-skip_bootstrap_key:
-       if (dpp_test == DPP_TEST_NO_R_AUTH_TAG_PKEX_CR_RESP) {
-               wpa_printf(MSG_INFO, "DPP: TESTING - no R-Auth tag");
-               goto skip_r_auth_tag;
+       wpa_hexdump(MSG_MSGDUMP, "DPP: Received message attributes",
+                   pos, end - pos);
+       if (dpp_check_attrs(pos, end - pos) < 0)
+               return -1;
+
+       if (conn->relay) {
+               wpa_printf(MSG_DEBUG, "DPP: Relay - send over WLAN");
+               conn->relay->tx(conn->relay->cb_ctx, conn->mac_addr,
+                               conn->freq, msg, len);
+               return 0;
        }
-       if (dpp_test == DPP_TEST_R_AUTH_TAG_MISMATCH_PKEX_CR_RESP) {
-               wpa_printf(MSG_INFO, "DPP: TESTING - R-Auth tag mismatch");
-               wpabuf_put_le16(clear, DPP_ATTR_R_AUTH_TAG);
-               wpabuf_put_le16(clear, curve->hash_len);
-               wpabuf_put_data(clear, v, curve->hash_len - 1);
-               wpabuf_put_u8(clear, v[curve->hash_len - 1] ^ 0x01);
-               goto skip_r_auth_tag;
+
+       switch (type) {
+       case DPP_PA_AUTHENTICATION_REQ:
+               return dpp_controller_rx_auth_req(conn, msg, pos, end - pos);
+       case DPP_PA_AUTHENTICATION_RESP:
+               return dpp_controller_rx_auth_resp(conn, msg, pos, end - pos);
+       case DPP_PA_AUTHENTICATION_CONF:
+               return dpp_controller_rx_auth_conf(conn, msg, pos, end - pos);
+       case DPP_PA_CONFIGURATION_RESULT:
+               return dpp_controller_rx_conf_result(conn, msg, pos, end - pos);
+       case DPP_PA_CONNECTION_STATUS_RESULT:
+               return dpp_controller_rx_conn_status_result(conn, msg, pos,
+                                                           end - pos);
+       case DPP_PA_PRESENCE_ANNOUNCEMENT:
+               return dpp_controller_rx_presence_announcement(conn, msg, pos,
+                                                              end - pos);
+       default:
+               /* TODO: missing messages types */
+               wpa_printf(MSG_DEBUG,
+                          "DPP: Unsupported frame subtype %d", type);
+               return -1;
        }
-#endif /* CONFIG_TESTING_OPTIONS */
+}
 
-       /* v in R-Auth tag attribute */
-       wpabuf_put_le16(clear, DPP_ATTR_R_AUTH_TAG);
-       wpabuf_put_le16(clear, curve->hash_len);
-       wpabuf_put_data(clear, v, curve->hash_len);
 
-#ifdef CONFIG_TESTING_OPTIONS
-skip_r_auth_tag:
-       if (dpp_test == DPP_TEST_NO_WRAPPED_DATA_PKEX_CR_RESP) {
-               wpa_printf(MSG_INFO, "DPP: TESTING - no Wrapped Data");
-               goto skip_wrapped_data;
+static int dpp_controller_rx_gas_req(struct dpp_connection *conn, const u8 *msg,
+                                    size_t len)
+{
+       const u8 *pos, *end, *next;
+       u8 dialog_token;
+       const u8 *adv_proto;
+       u16 slen;
+       struct wpabuf *resp, *buf;
+       struct dpp_authentication *auth = conn->auth;
+
+       if (len < 1 + 2)
+               return -1;
+
+       wpa_printf(MSG_DEBUG,
+                  "DPP: Received DPP Configuration Request over TCP");
+
+       if (!conn->ctrl || !auth || !auth->auth_success) {
+               wpa_printf(MSG_DEBUG, "DPP: No matching exchange in progress");
+               return -1;
        }
-#endif /* CONFIG_TESTING_OPTIONS */
 
-       addr[0] = wpabuf_head_u8(msg) + 2;
-       len[0] = DPP_HDR_LEN;
-       octet = 1;
-       addr[1] = &octet;
-       len[1] = sizeof(octet);
-       wpa_hexdump(MSG_DEBUG, "DDP: AES-SIV AD[0]", addr[0], len[0]);
-       wpa_hexdump(MSG_DEBUG, "DDP: AES-SIV AD[1]", addr[1], len[1]);
+       pos = msg;
+       end = msg + len;
 
-       wpabuf_put_le16(msg, DPP_ATTR_WRAPPED_DATA);
-       wpabuf_put_le16(msg, wpabuf_len(clear) + AES_BLOCK_SIZE);
-       wrapped = wpabuf_put(msg, wpabuf_len(clear) + AES_BLOCK_SIZE);
+       dialog_token = *pos++;
+       adv_proto = pos++;
+       slen = *pos++;
+       if (*adv_proto != WLAN_EID_ADV_PROTO ||
+           slen > end - pos || slen < 2)
+               return -1;
 
-       wpa_hexdump_buf(MSG_DEBUG, "DPP: AES-SIV cleartext", clear);
-       if (aes_siv_encrypt(pkex->z, curve->hash_len,
-                           wpabuf_head(clear), wpabuf_len(clear),
-                           2, addr, len, wrapped) < 0)
-               goto fail;
-       wpa_hexdump(MSG_DEBUG, "DPP: AES-SIV ciphertext",
-                   wrapped, wpabuf_len(clear) + AES_BLOCK_SIZE);
+       next = pos + slen;
+       pos++; /* skip QueryRespLenLimit and PAME-BI */
 
-#ifdef CONFIG_TESTING_OPTIONS
-       if (dpp_test == DPP_TEST_AFTER_WRAPPED_DATA_PKEX_CR_RESP) {
-               wpa_printf(MSG_INFO, "DPP: TESTING - attr after Wrapped Data");
-               dpp_build_attr_status(msg, DPP_STATUS_OK);
+       if (slen != 8 || *pos != WLAN_EID_VENDOR_SPECIFIC ||
+           pos[1] != 5 || WPA_GET_BE24(&pos[2]) != OUI_WFA ||
+           pos[5] != DPP_OUI_TYPE || pos[6] != 0x01)
+               return -1;
+
+       pos = next;
+       /* Query Request */
+       if (end - pos < 2)
+               return -1;
+       slen = WPA_GET_LE16(pos);
+       pos += 2;
+       if (slen > end - pos)
+               return -1;
+
+       resp = dpp_conf_req_rx(auth, pos, slen);
+       if (!resp)
+               return -1;
+
+       buf = wpabuf_alloc(4 + 18 + wpabuf_len(resp));
+       if (!buf) {
+               wpabuf_free(resp);
+               return -1;
        }
-skip_wrapped_data:
-#endif /* CONFIG_TESTING_OPTIONS */
 
-out:
-       wpabuf_free(clear);
-       return msg;
+       wpabuf_put_be32(buf, 18 + wpabuf_len(resp));
 
-fail:
-       wpabuf_free(msg);
-       msg = NULL;
-       goto out;
+       wpabuf_put_u8(buf, WLAN_PA_GAS_INITIAL_RESP);
+       wpabuf_put_u8(buf, dialog_token);
+       wpabuf_put_le16(buf, WLAN_STATUS_SUCCESS);
+       wpabuf_put_le16(buf, 0); /* GAS Comeback Delay */
+
+       dpp_write_adv_proto(buf);
+       dpp_write_gas_query(buf, resp);
+       wpabuf_free(resp);
+
+       /* Send Config Response over TCP; GAS fragmentation is taken care of by
+        * the Relay */
+       wpa_hexdump_buf(MSG_MSGDUMP, "DPP: Outgoing TCP message", buf);
+       wpabuf_free(conn->msg_out);
+       conn->msg_out_pos = 0;
+       conn->msg_out = buf;
+       conn->on_tcp_tx_complete_gas_done = 1;
+       dpp_tcp_send(conn);
+       return 0;
 }
 
 
-struct wpabuf * dpp_pkex_rx_commit_reveal_req(struct dpp_pkex *pkex,
-                                             const u8 *hdr,
-                                             const u8 *buf, size_t buflen)
+static int dpp_tcp_rx_gas_resp(struct dpp_connection *conn, struct wpabuf *resp)
 {
-       const struct dpp_curve_params *curve = pkex->own_bi->curve;
-       EVP_PKEY_CTX *ctx = NULL;
-       size_t Jx_len, Lx_len;
-       u8 Jx[DPP_MAX_SHARED_SECRET_LEN];
-       u8 Lx[DPP_MAX_SHARED_SECRET_LEN];
-       const u8 *wrapped_data, *b_key, *peer_u;
-       u16 wrapped_data_len, b_key_len, peer_u_len = 0;
-       const u8 *addr[4];
-       size_t len[4];
-       u8 octet;
-       u8 *unwrapped = NULL;
-       size_t unwrapped_len = 0;
-       struct wpabuf *msg = NULL, *A_pub = NULL, *X_pub = NULL, *Y_pub = NULL;
-       struct wpabuf *B_pub = NULL;
-       u8 u[DPP_MAX_HASH_LEN], v[DPP_MAX_HASH_LEN];
+       struct dpp_authentication *auth = conn->auth;
+       int res;
+       struct wpabuf *msg, *encaps;
+       enum dpp_status_error status;
 
-#ifdef CONFIG_TESTING_OPTIONS
-       if (dpp_test == DPP_TEST_STOP_AT_PKEX_CR_REQ) {
-               wpa_printf(MSG_INFO,
-                          "DPP: TESTING - stop at PKEX CR Request");
-               pkex->failed = 1;
-               return NULL;
+       wpa_printf(MSG_DEBUG,
+                  "DPP: Configuration Response for local stack from TCP");
+
+       res = dpp_conf_resp_rx(auth, resp);
+       wpabuf_free(resp);
+       if (res < 0) {
+               wpa_printf(MSG_DEBUG, "DPP: Configuration attempt failed");
+               return -1;
        }
-#endif /* CONFIG_TESTING_OPTIONS */
 
-       if (!pkex->exchange_done || pkex->failed ||
-           pkex->t >= PKEX_COUNTER_T_LIMIT || pkex->initiator)
-               goto fail;
+       if (conn->global->process_conf_obj)
+               res = conn->global->process_conf_obj(conn->global->cb_ctx,
+                                                    auth);
+       else
+               res = 0;
 
-       wrapped_data = dpp_get_attr(buf, buflen, DPP_ATTR_WRAPPED_DATA,
-                                   &wrapped_data_len);
-       if (!wrapped_data || wrapped_data_len < AES_BLOCK_SIZE) {
-               dpp_pkex_fail(pkex,
-                             "Missing or invalid required Wrapped Data attribute");
-               goto fail;
+       if (auth->peer_version < 2 || auth->conf_resp_status != DPP_STATUS_OK)
+               return -1;
+
+#ifdef CONFIG_DPP2
+       wpa_printf(MSG_DEBUG, "DPP: Send DPP Configuration Result");
+       status = res < 0 ? DPP_STATUS_CONFIG_REJECTED : DPP_STATUS_OK;
+       msg = dpp_build_conf_result(auth, status);
+       if (!msg)
+               return -1;
+
+       encaps = wpabuf_alloc(4 + wpabuf_len(msg) - 1);
+       if (!encaps) {
+               wpabuf_free(msg);
+               return -1;
        }
+       wpabuf_put_be32(encaps, wpabuf_len(msg) - 1);
+       wpabuf_put_data(encaps, wpabuf_head_u8(msg) + 1, wpabuf_len(msg) - 1);
+       wpabuf_free(msg);
+       wpa_hexdump_buf(MSG_MSGDUMP, "DPP: Outgoing TCP message", encaps);
 
-       wpa_hexdump(MSG_DEBUG, "DPP: AES-SIV ciphertext",
-                   wrapped_data, wrapped_data_len);
-       unwrapped_len = wrapped_data_len - AES_BLOCK_SIZE;
-       unwrapped = os_malloc(unwrapped_len);
-       if (!unwrapped)
-               goto fail;
+       wpabuf_free(conn->msg_out);
+       conn->msg_out_pos = 0;
+       conn->msg_out = encaps;
+       conn->on_tcp_tx_complete_remove = 1;
+       dpp_tcp_send(conn);
 
-       addr[0] = hdr;
-       len[0] = DPP_HDR_LEN;
-       octet = 0;
-       addr[1] = &octet;
-       len[1] = sizeof(octet);
-       wpa_hexdump(MSG_DEBUG, "DDP: AES-SIV AD[0]", addr[0], len[0]);
-       wpa_hexdump(MSG_DEBUG, "DDP: AES-SIV AD[1]", addr[1], len[1]);
+       /* This exchange will be terminated in the TX status handler */
 
-       if (aes_siv_decrypt(pkex->z, curve->hash_len,
-                           wrapped_data, wrapped_data_len,
-                           2, addr, len, unwrapped) < 0) {
-               dpp_pkex_fail(pkex,
-                             "AES-SIV decryption failed - possible PKEX code mismatch");
-               pkex->failed = 1;
-               pkex->t++;
-               goto fail;
-       }
-       wpa_hexdump(MSG_DEBUG, "DPP: AES-SIV cleartext",
-                   unwrapped, unwrapped_len);
+       return 0;
+#else /* CONFIG_DPP2 */
+       return -1;
+#endif /* CONFIG_DPP2 */
+}
 
-       if (dpp_check_attrs(unwrapped, unwrapped_len) < 0) {
-               dpp_pkex_fail(pkex, "Invalid attribute in unwrapped data");
-               goto fail;
-       }
 
-       b_key = dpp_get_attr(unwrapped, unwrapped_len, DPP_ATTR_BOOTSTRAP_KEY,
-                            &b_key_len);
-       if (!b_key || b_key_len != 2 * curve->prime_len) {
-               dpp_pkex_fail(pkex, "No valid peer bootstrapping key found");
-               goto fail;
-       }
-       pkex->peer_bootstrap_key = dpp_set_pubkey_point(pkex->x, b_key,
-                                                       b_key_len);
-       if (!pkex->peer_bootstrap_key) {
-               dpp_pkex_fail(pkex, "Peer bootstrapping key is invalid");
-               goto fail;
+static int dpp_rx_gas_resp(struct dpp_connection *conn, const u8 *msg,
+                          size_t len)
+{
+       struct wpabuf *buf;
+       u8 dialog_token;
+       const u8 *pos, *end, *next, *adv_proto;
+       u16 status, slen;
+
+       if (len < 5 + 2)
+               return -1;
+
+       wpa_printf(MSG_DEBUG,
+                  "DPP: Received DPP Configuration Response over TCP");
+
+       pos = msg;
+       end = msg + len;
+
+       dialog_token = *pos++;
+       status = WPA_GET_LE16(pos);
+       if (status != WLAN_STATUS_SUCCESS) {
+               wpa_printf(MSG_DEBUG, "DPP: Unexpected Status Code %u", status);
+               return -1;
        }
-       dpp_debug_print_key("DPP: Peer bootstrap public key",
-                           pkex->peer_bootstrap_key);
+       pos += 2;
+       pos += 2; /* ignore GAS Comeback Delay */
 
-       /* ECDH: J' = y * A' */
-       ctx = EVP_PKEY_CTX_new(pkex->y, NULL);
-       if (!ctx ||
-           EVP_PKEY_derive_init(ctx) != 1 ||
-           EVP_PKEY_derive_set_peer(ctx, pkex->peer_bootstrap_key) != 1 ||
-           EVP_PKEY_derive(ctx, NULL, &Jx_len) != 1 ||
-           Jx_len > DPP_MAX_SHARED_SECRET_LEN ||
-           EVP_PKEY_derive(ctx, Jx, &Jx_len) != 1) {
-               wpa_printf(MSG_ERROR,
-                          "DPP: Failed to derive ECDH shared secret: %s",
-                          ERR_error_string(ERR_get_error(), NULL));
-               goto fail;
+       adv_proto = pos++;
+       slen = *pos++;
+       if (*adv_proto != WLAN_EID_ADV_PROTO ||
+           slen > end - pos || slen < 2)
+               return -1;
+
+       next = pos + slen;
+       pos++; /* skip QueryRespLenLimit and PAME-BI */
+
+       if (slen != 8 || *pos != WLAN_EID_VENDOR_SPECIFIC ||
+           pos[1] != 5 || WPA_GET_BE24(&pos[2]) != OUI_WFA ||
+           pos[5] != DPP_OUI_TYPE || pos[6] != 0x01)
+               return -1;
+
+       pos = next;
+       /* Query Response */
+       if (end - pos < 2)
+               return -1;
+       slen = WPA_GET_LE16(pos);
+       pos += 2;
+       if (slen > end - pos)
+               return -1;
+
+       buf = wpabuf_alloc(slen);
+       if (!buf)
+               return -1;
+       wpabuf_put_data(buf, pos, slen);
+
+       if (!conn->relay && !conn->ctrl)
+               return dpp_tcp_rx_gas_resp(conn, buf);
+
+       if (!conn->relay) {
+               wpa_printf(MSG_DEBUG, "DPP: No matching exchange in progress");
+               wpabuf_free(buf);
+               return -1;
        }
+       wpa_printf(MSG_DEBUG, "DPP: Relay - send over WLAN");
+       conn->relay->gas_resp_tx(conn->relay->cb_ctx, conn->mac_addr,
+                                dialog_token, 0, buf);
 
-       wpa_hexdump_key(MSG_DEBUG, "DPP: ECDH shared secret (J.x)",
-                       Jx, Jx_len);
+       return 0;
+}
 
-       /* u' = HMAC(J'.x, MAC-Initiator | A'.x | Y.x | X'.x) */
-       A_pub = dpp_get_pubkey_point(pkex->peer_bootstrap_key, 0);
-       Y_pub = dpp_get_pubkey_point(pkex->y, 0);
-       X_pub = dpp_get_pubkey_point(pkex->x, 0);
-       if (!A_pub || !Y_pub || !X_pub)
-               goto fail;
-       addr[0] = pkex->peer_mac;
-       len[0] = ETH_ALEN;
-       addr[1] = wpabuf_head(A_pub);
-       len[1] = wpabuf_len(A_pub) / 2;
-       addr[2] = wpabuf_head(Y_pub);
-       len[2] = wpabuf_len(Y_pub) / 2;
-       addr[3] = wpabuf_head(X_pub);
-       len[3] = wpabuf_len(X_pub) / 2;
-       if (dpp_hmac_vector(curve->hash_len, Jx, Jx_len, 4, addr, len, u) < 0)
-               goto fail;
 
-       peer_u = dpp_get_attr(unwrapped, unwrapped_len, DPP_ATTR_I_AUTH_TAG,
-                             &peer_u_len);
-       if (!peer_u || peer_u_len != curve->hash_len ||
-           os_memcmp(peer_u, u, curve->hash_len) != 0) {
-               dpp_pkex_fail(pkex, "No valid u (I-Auth tag) found");
-               wpa_hexdump(MSG_DEBUG, "DPP: Calculated u'",
-                           u, curve->hash_len);
-               wpa_hexdump(MSG_DEBUG, "DPP: Received u", peer_u, peer_u_len);
-               pkex->t++;
-               goto fail;
+static void dpp_controller_rx(int sd, void *eloop_ctx, void *sock_ctx)
+{
+       struct dpp_connection *conn = eloop_ctx;
+       int res;
+       const u8 *pos;
+
+       wpa_printf(MSG_DEBUG, "DPP: TCP data available for reading (sock %d)",
+                  sd);
+
+       if (conn->msg_len_octets < 4) {
+               u32 msglen;
+
+               res = recv(sd, &conn->msg_len[conn->msg_len_octets],
+                          4 - conn->msg_len_octets, 0);
+               if (res < 0) {
+                       wpa_printf(MSG_DEBUG, "DPP: recv failed: %s",
+                                  strerror(errno));
+                       dpp_connection_remove(conn);
+                       return;
+               }
+               if (res == 0) {
+                       wpa_printf(MSG_DEBUG,
+                                  "DPP: No more data available over TCP");
+                       dpp_connection_remove(conn);
+                       return;
+               }
+               wpa_printf(MSG_DEBUG,
+                          "DPP: Received %d/%d octet(s) of message length field",
+                          res, (int) (4 - conn->msg_len_octets));
+               conn->msg_len_octets += res;
+
+               if (conn->msg_len_octets < 4) {
+                       wpa_printf(MSG_DEBUG,
+                                  "DPP: Need %d more octets of message length field",
+                                  (int) (4 - conn->msg_len_octets));
+                       return;
+               }
+
+               msglen = WPA_GET_BE32(conn->msg_len);
+               wpa_printf(MSG_DEBUG, "DPP: Message length: %u", msglen);
+               if (msglen > 65535) {
+                       wpa_printf(MSG_INFO, "DPP: Unexpectedly long message");
+                       dpp_connection_remove(conn);
+                       return;
+               }
+
+               wpabuf_free(conn->msg);
+               conn->msg = wpabuf_alloc(msglen);
+       }
+
+       if (!conn->msg) {
+               wpa_printf(MSG_DEBUG,
+                          "DPP: No buffer available for receiving the message");
+               dpp_connection_remove(conn);
+               return;
        }
-       wpa_printf(MSG_DEBUG, "DPP: Valid u (I-Auth tag) received");
 
-       /* ECDH: L = b * X' */
-       EVP_PKEY_CTX_free(ctx);
-       ctx = EVP_PKEY_CTX_new(pkex->own_bi->pubkey, NULL);
-       if (!ctx ||
-           EVP_PKEY_derive_init(ctx) != 1 ||
-           EVP_PKEY_derive_set_peer(ctx, pkex->x) != 1 ||
-           EVP_PKEY_derive(ctx, NULL, &Lx_len) != 1 ||
-           Lx_len > DPP_MAX_SHARED_SECRET_LEN ||
-           EVP_PKEY_derive(ctx, Lx, &Lx_len) != 1) {
-               wpa_printf(MSG_ERROR,
-                          "DPP: Failed to derive ECDH shared secret: %s",
-                          ERR_error_string(ERR_get_error(), NULL));
-               goto fail;
-       }
+       wpa_printf(MSG_DEBUG, "DPP: Need %u more octets of message payload",
+                  (unsigned int) wpabuf_tailroom(conn->msg));
 
-       wpa_hexdump_key(MSG_DEBUG, "DPP: ECDH shared secret (L.x)",
-                       Lx, Lx_len);
+       res = recv(sd, wpabuf_put(conn->msg, 0), wpabuf_tailroom(conn->msg), 0);
+       if (res < 0) {
+               wpa_printf(MSG_DEBUG, "DPP: recv failed: %s", strerror(errno));
+               dpp_connection_remove(conn);
+               return;
+       }
+       if (res == 0) {
+               wpa_printf(MSG_DEBUG, "DPP: No more data available over TCP");
+               dpp_connection_remove(conn);
+               return;
+       }
+       wpa_printf(MSG_DEBUG, "DPP: Received %d octets", res);
+       wpabuf_put(conn->msg, res);
 
-       /* v = HMAC(L.x, MAC-Responder | B.x | X'.x | Y.x) */
-       B_pub = dpp_get_pubkey_point(pkex->own_bi->pubkey, 0);
-       if (!B_pub)
-               goto fail;
-       addr[0] = pkex->own_mac;
-       len[0] = ETH_ALEN;
-       addr[1] = wpabuf_head(B_pub);
-       len[1] = wpabuf_len(B_pub) / 2;
-       addr[2] = wpabuf_head(X_pub);
-       len[2] = wpabuf_len(X_pub) / 2;
-       addr[3] = wpabuf_head(Y_pub);
-       len[3] = wpabuf_len(Y_pub) / 2;
-       if (dpp_hmac_vector(curve->hash_len, Lx, Lx_len, 4, addr, len, v) < 0)
-               goto fail;
-       wpa_hexdump(MSG_DEBUG, "DPP: v", v, curve->hash_len);
+       if (wpabuf_tailroom(conn->msg) > 0) {
+               wpa_printf(MSG_DEBUG,
+                          "DPP: Need %u more octets of message payload",
+                          (unsigned int) wpabuf_tailroom(conn->msg));
+               return;
+       }
 
-       msg = dpp_pkex_build_commit_reveal_resp(pkex, B_pub, v);
-       if (!msg)
-               goto fail;
+       conn->msg_len_octets = 0;
+       wpa_hexdump_buf(MSG_DEBUG, "DPP: Received TCP message", conn->msg);
+       if (wpabuf_len(conn->msg) < 1) {
+               dpp_connection_remove(conn);
+               return;
+       }
 
-out:
-       EVP_PKEY_CTX_free(ctx);
-       os_free(unwrapped);
-       wpabuf_free(A_pub);
-       wpabuf_free(B_pub);
-       wpabuf_free(X_pub);
-       wpabuf_free(Y_pub);
-       return msg;
-fail:
-       wpa_printf(MSG_DEBUG,
-                  "DPP: PKEX Commit-Reveal Request processing failed");
-       goto out;
+       pos = wpabuf_head(conn->msg);
+       switch (*pos) {
+       case WLAN_PA_VENDOR_SPECIFIC:
+               if (dpp_controller_rx_action(conn, pos + 1,
+                                            wpabuf_len(conn->msg) - 1) < 0)
+                       dpp_connection_remove(conn);
+               break;
+       case WLAN_PA_GAS_INITIAL_REQ:
+               if (dpp_controller_rx_gas_req(conn, pos + 1,
+                                             wpabuf_len(conn->msg) - 1) < 0)
+                       dpp_connection_remove(conn);
+               break;
+       case WLAN_PA_GAS_INITIAL_RESP:
+               if (dpp_rx_gas_resp(conn, pos + 1,
+                                   wpabuf_len(conn->msg) - 1) < 0)
+                       dpp_connection_remove(conn);
+               break;
+       default:
+               wpa_printf(MSG_DEBUG, "DPP: Ignore unsupported message type %u",
+                          *pos);
+               break;
+       }
 }
 
 
-int dpp_pkex_rx_commit_reveal_resp(struct dpp_pkex *pkex, const u8 *hdr,
-                                  const u8 *buf, size_t buflen)
+static void dpp_controller_tcp_cb(int sd, void *eloop_ctx, void *sock_ctx)
 {
-       const struct dpp_curve_params *curve = pkex->own_bi->curve;
-       const u8 *wrapped_data, *b_key, *peer_v;
-       u16 wrapped_data_len, b_key_len, peer_v_len = 0;
-       const u8 *addr[4];
-       size_t len[4];
-       u8 octet;
-       u8 *unwrapped = NULL;
-       size_t unwrapped_len = 0;
-       int ret = -1;
-       u8 v[DPP_MAX_HASH_LEN];
-       size_t Lx_len;
-       u8 Lx[DPP_MAX_SHARED_SECRET_LEN];
-       EVP_PKEY_CTX *ctx = NULL;
-       struct wpabuf *B_pub = NULL, *X_pub = NULL, *Y_pub = NULL;
+       struct dpp_controller *ctrl = eloop_ctx;
+       struct sockaddr_in addr;
+       socklen_t addr_len = sizeof(addr);
+       int fd;
+       struct dpp_connection *conn;
 
-#ifdef CONFIG_TESTING_OPTIONS
-       if (dpp_test == DPP_TEST_STOP_AT_PKEX_CR_RESP) {
-               wpa_printf(MSG_INFO,
-                          "DPP: TESTING - stop at PKEX CR Response");
-               pkex->failed = 1;
-               goto fail;
+       wpa_printf(MSG_DEBUG, "DPP: New TCP connection");
+
+       fd = accept(ctrl->sock, (struct sockaddr *) &addr, &addr_len);
+       if (fd < 0) {
+               wpa_printf(MSG_DEBUG,
+                          "DPP: Failed to accept new connection: %s",
+                          strerror(errno));
+               return;
        }
-#endif /* CONFIG_TESTING_OPTIONS */
+       wpa_printf(MSG_DEBUG, "DPP: Connection from %s:%d",
+                  inet_ntoa(addr.sin_addr), ntohs(addr.sin_port));
 
-       if (!pkex->exchange_done || pkex->failed ||
-           pkex->t >= PKEX_COUNTER_T_LIMIT || !pkex->initiator)
+       conn = os_zalloc(sizeof(*conn));
+       if (!conn)
                goto fail;
 
-       wrapped_data = dpp_get_attr(buf, buflen, DPP_ATTR_WRAPPED_DATA,
-                                   &wrapped_data_len);
-       if (!wrapped_data || wrapped_data_len < AES_BLOCK_SIZE) {
-               dpp_pkex_fail(pkex,
-                             "Missing or invalid required Wrapped Data attribute");
+       conn->global = ctrl->global;
+       conn->ctrl = ctrl;
+       conn->sock = fd;
+
+       if (fcntl(conn->sock, F_SETFL, O_NONBLOCK) != 0) {
+               wpa_printf(MSG_DEBUG, "DPP: fnctl(O_NONBLOCK) failed: %s",
+                          strerror(errno));
                goto fail;
        }
 
-       wpa_hexdump(MSG_DEBUG, "DPP: AES-SIV ciphertext",
-                   wrapped_data, wrapped_data_len);
-       unwrapped_len = wrapped_data_len - AES_BLOCK_SIZE;
-       unwrapped = os_malloc(unwrapped_len);
-       if (!unwrapped)
+       if (eloop_register_sock(conn->sock, EVENT_TYPE_READ,
+                               dpp_controller_rx, conn, NULL) < 0)
                goto fail;
+       conn->read_eloop = 1;
 
-       addr[0] = hdr;
-       len[0] = DPP_HDR_LEN;
-       octet = 1;
-       addr[1] = &octet;
-       len[1] = sizeof(octet);
-       wpa_hexdump(MSG_DEBUG, "DDP: AES-SIV AD[0]", addr[0], len[0]);
-       wpa_hexdump(MSG_DEBUG, "DDP: AES-SIV AD[1]", addr[1], len[1]);
+       /* TODO: eloop timeout to expire connections that do not complete in
+        * reasonable time */
+       dl_list_add(&ctrl->conn, &conn->list);
+       return;
 
-       if (aes_siv_decrypt(pkex->z, curve->hash_len,
-                           wrapped_data, wrapped_data_len,
-                           2, addr, len, unwrapped) < 0) {
-               dpp_pkex_fail(pkex,
-                             "AES-SIV decryption failed - possible PKEX code mismatch");
-               pkex->t++;
-               goto fail;
-       }
-       wpa_hexdump(MSG_DEBUG, "DPP: AES-SIV cleartext",
-                   unwrapped, unwrapped_len);
+fail:
+       close(fd);
+       os_free(conn);
+}
 
-       if (dpp_check_attrs(unwrapped, unwrapped_len) < 0) {
-               dpp_pkex_fail(pkex, "Invalid attribute in unwrapped data");
-               goto fail;
+
+int dpp_tcp_init(struct dpp_global *dpp, struct dpp_authentication *auth,
+                const struct hostapd_ip_addr *addr, int port)
+{
+       struct dpp_connection *conn;
+       struct sockaddr_storage saddr;
+       socklen_t addrlen;
+       const u8 *hdr, *pos, *end;
+       char txt[100];
+
+       wpa_printf(MSG_DEBUG, "DPP: Initialize TCP connection to %s port %d",
+                  hostapd_ip_txt(addr, txt, sizeof(txt)), port);
+       if (dpp_ipaddr_to_sockaddr((struct sockaddr *) &saddr, &addrlen,
+                                  addr, port) < 0) {
+               dpp_auth_deinit(auth);
+               return -1;
        }
 
-       b_key = dpp_get_attr(unwrapped, unwrapped_len, DPP_ATTR_BOOTSTRAP_KEY,
-                            &b_key_len);
-       if (!b_key || b_key_len != 2 * curve->prime_len) {
-               dpp_pkex_fail(pkex, "No valid peer bootstrapping key found");
-               goto fail;
+       conn = os_zalloc(sizeof(*conn));
+       if (!conn) {
+               dpp_auth_deinit(auth);
+               return -1;
        }
-       pkex->peer_bootstrap_key = dpp_set_pubkey_point(pkex->x, b_key,
-                                                       b_key_len);
-       if (!pkex->peer_bootstrap_key) {
-               dpp_pkex_fail(pkex, "Peer bootstrapping key is invalid");
+
+       conn->global = dpp;
+       conn->auth = auth;
+       conn->sock = socket(AF_INET, SOCK_STREAM, 0);
+       if (conn->sock < 0)
                goto fail;
-       }
-       dpp_debug_print_key("DPP: Peer bootstrap public key",
-                           pkex->peer_bootstrap_key);
 
-       /* ECDH: L' = x * B' */
-       ctx = EVP_PKEY_CTX_new(pkex->x, NULL);
-       if (!ctx ||
-           EVP_PKEY_derive_init(ctx) != 1 ||
-           EVP_PKEY_derive_set_peer(ctx, pkex->peer_bootstrap_key) != 1 ||
-           EVP_PKEY_derive(ctx, NULL, &Lx_len) != 1 ||
-           Lx_len > DPP_MAX_SHARED_SECRET_LEN ||
-           EVP_PKEY_derive(ctx, Lx, &Lx_len) != 1) {
-               wpa_printf(MSG_ERROR,
-                          "DPP: Failed to derive ECDH shared secret: %s",
-                          ERR_error_string(ERR_get_error(), NULL));
+       if (fcntl(conn->sock, F_SETFL, O_NONBLOCK) != 0) {
+               wpa_printf(MSG_DEBUG, "DPP: fnctl(O_NONBLOCK) failed: %s",
+                          strerror(errno));
                goto fail;
        }
 
-       wpa_hexdump_key(MSG_DEBUG, "DPP: ECDH shared secret (L.x)",
-                       Lx, Lx_len);
+       if (connect(conn->sock, (struct sockaddr *) &saddr, addrlen) < 0) {
+               if (errno != EINPROGRESS) {
+                       wpa_printf(MSG_DEBUG, "DPP: Failed to connect: %s",
+                                  strerror(errno));
+                       goto fail;
+               }
 
-       /* v' = HMAC(L.x, MAC-Responder | B'.x | X.x | Y'.x) */
-       B_pub = dpp_get_pubkey_point(pkex->peer_bootstrap_key, 0);
-       X_pub = dpp_get_pubkey_point(pkex->x, 0);
-       Y_pub = dpp_get_pubkey_point(pkex->y, 0);
-       if (!B_pub || !X_pub || !Y_pub)
-               goto fail;
-       addr[0] = pkex->peer_mac;
-       len[0] = ETH_ALEN;
-       addr[1] = wpabuf_head(B_pub);
-       len[1] = wpabuf_len(B_pub) / 2;
-       addr[2] = wpabuf_head(X_pub);
-       len[2] = wpabuf_len(X_pub) / 2;
-       addr[3] = wpabuf_head(Y_pub);
-       len[3] = wpabuf_len(Y_pub) / 2;
-       if (dpp_hmac_vector(curve->hash_len, Lx, Lx_len, 4, addr, len, v) < 0)
+               /*
+                * Continue connecting in the background; eloop will call us
+                * once the connection is ready (or failed).
+                */
+       }
+
+       if (eloop_register_sock(conn->sock, EVENT_TYPE_WRITE,
+                               dpp_conn_tx_ready, conn, NULL) < 0)
                goto fail;
+       conn->write_eloop = 1;
 
-       peer_v = dpp_get_attr(unwrapped, unwrapped_len, DPP_ATTR_R_AUTH_TAG,
-                             &peer_v_len);
-       if (!peer_v || peer_v_len != curve->hash_len ||
-           os_memcmp(peer_v, v, curve->hash_len) != 0) {
-               dpp_pkex_fail(pkex, "No valid v (R-Auth tag) found");
-               wpa_hexdump(MSG_DEBUG, "DPP: Calculated v'",
-                           v, curve->hash_len);
-               wpa_hexdump(MSG_DEBUG, "DPP: Received v", peer_v, peer_v_len);
-               pkex->t++;
+       hdr = wpabuf_head(auth->req_msg);
+       end = hdr + wpabuf_len(auth->req_msg);
+       hdr += 2; /* skip Category and Actiom */
+       pos = hdr + DPP_HDR_LEN;
+       conn->msg_out = dpp_tcp_encaps(hdr, pos, end - pos);
+       if (!conn->msg_out)
                goto fail;
-       }
-       wpa_printf(MSG_DEBUG, "DPP: Valid v (R-Auth tag) received");
+       /* Message will be sent in dpp_conn_tx_ready() */
 
-       ret = 0;
-out:
-       wpabuf_free(B_pub);
-       wpabuf_free(X_pub);
-       wpabuf_free(Y_pub);
-       EVP_PKEY_CTX_free(ctx);
-       os_free(unwrapped);
-       return ret;
+       /* TODO: eloop timeout to clear a connection if it does not complete
+        * properly */
+       dl_list_add(&dpp->tcp_init, &conn->list);
+       return 0;
 fail:
-       goto out;
+       dpp_connection_free(conn);
+       return -1;
 }
 
 
-void dpp_pkex_free(struct dpp_pkex *pkex)
+int dpp_controller_start(struct dpp_global *dpp,
+                        struct dpp_controller_config *config)
 {
-       if (!pkex)
-               return;
-
-       os_free(pkex->identifier);
-       os_free(pkex->code);
-       EVP_PKEY_free(pkex->x);
-       EVP_PKEY_free(pkex->y);
-       EVP_PKEY_free(pkex->peer_bootstrap_key);
-       wpabuf_free(pkex->exchange_req);
-       wpabuf_free(pkex->exchange_resp);
-       os_free(pkex);
-}
+       struct dpp_controller *ctrl;
+       int on = 1;
+       struct sockaddr_in sin;
+       int port;
 
+       if (!dpp || dpp->controller)
+               return -1;
 
-#ifdef CONFIG_TESTING_OPTIONS
-char * dpp_corrupt_connector_signature(const char *connector)
-{
-       char *tmp, *pos, *signed3 = NULL;
-       unsigned char *signature = NULL;
-       size_t signature_len = 0, signed3_len;
+       ctrl = os_zalloc(sizeof(*ctrl));
+       if (!ctrl)
+               return -1;
+       ctrl->global = dpp;
+       if (config->configurator_params)
+               ctrl->configurator_params =
+                       os_strdup(config->configurator_params);
+       dl_list_init(&ctrl->conn);
+       /* TODO: configure these somehow */
+       ctrl->allowed_roles = DPP_CAPAB_ENROLLEE | DPP_CAPAB_CONFIGURATOR;
+       ctrl->qr_mutual = 0;
 
-       tmp = os_zalloc(os_strlen(connector) + 5);
-       if (!tmp)
+       ctrl->sock = socket(AF_INET, SOCK_STREAM, 0);
+       if (ctrl->sock < 0)
                goto fail;
-       os_memcpy(tmp, connector, os_strlen(connector));
 
-       pos = os_strchr(tmp, '.');
-       if (!pos)
-               goto fail;
+       if (setsockopt(ctrl->sock, SOL_SOCKET, SO_REUSEADDR,
+                      &on, sizeof(on)) < 0) {
+               wpa_printf(MSG_DEBUG,
+                          "DPP: setsockopt(SO_REUSEADDR) failed: %s",
+                          strerror(errno));
+               /* try to continue anyway */
+       }
 
-       pos = os_strchr(pos + 1, '.');
-       if (!pos)
+       if (fcntl(ctrl->sock, F_SETFL, O_NONBLOCK) < 0) {
+               wpa_printf(MSG_INFO, "DPP: fnctl(O_NONBLOCK) failed: %s",
+                          strerror(errno));
                goto fail;
-       pos++;
+       }
 
-       wpa_printf(MSG_DEBUG, "DPP: Original base64url encoded signature: %s",
-                  pos);
-       signature = base64_url_decode((const unsigned char *) pos,
-                                     os_strlen(pos), &signature_len);
-       if (!signature || signature_len == 0)
+       /* TODO: IPv6 */
+       os_memset(&sin, 0, sizeof(sin));
+       sin.sin_family = AF_INET;
+       sin.sin_addr.s_addr = INADDR_ANY;
+       port = config->tcp_port ? config->tcp_port : DPP_TCP_PORT;
+       sin.sin_port = htons(port);
+       if (bind(ctrl->sock, (struct sockaddr *) &sin, sizeof(sin)) < 0) {
+               wpa_printf(MSG_INFO,
+                          "DPP: Failed to bind Controller TCP port: %s",
+                          strerror(errno));
                goto fail;
-       wpa_hexdump(MSG_DEBUG, "DPP: Original Connector signature",
-                   signature, signature_len);
-       signature[signature_len - 1] ^= 0x01;
-       wpa_hexdump(MSG_DEBUG, "DPP: Corrupted Connector signature",
-                   signature, signature_len);
-       signed3 = (char *) base64_url_encode(signature, signature_len,
-                                            &signed3_len, 0);
-       if (!signed3)
+       }
+       if (listen(ctrl->sock, 10 /* max backlog */) < 0 ||
+           fcntl(ctrl->sock, F_SETFL, O_NONBLOCK) < 0 ||
+           eloop_register_sock(ctrl->sock, EVENT_TYPE_READ,
+                               dpp_controller_tcp_cb, ctrl, NULL))
                goto fail;
-       os_memcpy(pos, signed3, signed3_len);
-       pos[signed3_len] = '\0';
-       wpa_printf(MSG_DEBUG, "DPP: Corrupted base64url encoded signature: %s",
-                  pos);
 
-out:
-       os_free(signature);
-       os_free(signed3);
-       return tmp;
+       dpp->controller = ctrl;
+       wpa_printf(MSG_DEBUG, "DPP: Controller started on TCP port %d", port);
+       return 0;
 fail:
-       os_free(tmp);
-       tmp = NULL;
-       goto out;
+       dpp_controller_free(ctrl);
+       return -1;
 }
-#endif /* CONFIG_TESTING_OPTIONS */
+
+
+void dpp_controller_stop(struct dpp_global *dpp)
+{
+       if (dpp) {
+               dpp_controller_free(dpp->controller);
+               dpp->controller = NULL;
+       }
+}
+
+
+struct wpabuf * dpp_build_presence_announcement(struct dpp_bootstrap_info *bi)
+{
+       struct wpabuf *msg;
+
+       wpa_printf(MSG_DEBUG, "DPP: Build Presence Announcement frame");
+
+       msg = dpp_alloc_msg(DPP_PA_PRESENCE_ANNOUNCEMENT, 4 + SHA256_MAC_LEN);
+       if (!msg)
+               return NULL;
+
+       /* Responder Bootstrapping Key Hash */
+       dpp_build_attr_r_bootstrap_key_hash(msg, bi->pubkey_hash_chirp);
+       wpa_hexdump_buf(MSG_DEBUG,
+                       "DPP: Presence Announcement frame attributes", msg);
+       return msg;
+}
+
+#endif /* CONFIG_DPP2 */