|
@@ -375,84 +375,6 @@ struct wpabuf * wps_build_nfc_pw_token(u16 dev_pw_id,
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
-static struct wpabuf * wps_get_oob_dev_pwd(struct wps_context *wps)
|
|
|
|
-{
|
|
|
|
- struct wpabuf *data;
|
|
|
|
-
|
|
|
|
- data = wpabuf_alloc(200);
|
|
|
|
- if (data == NULL) {
|
|
|
|
- wpa_printf(MSG_ERROR, "WPS: Failed to allocate memory for OOB "
|
|
|
|
- "device password attribute");
|
|
|
|
- return NULL;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- wpabuf_free(wps->oob_conf.dev_password);
|
|
|
|
- wps->oob_conf.dev_password =
|
|
|
|
- wpabuf_alloc(WPS_OOB_DEVICE_PASSWORD_LEN * 2 + 1);
|
|
|
|
- if (wps->oob_conf.dev_password == NULL) {
|
|
|
|
- wpa_printf(MSG_ERROR, "WPS: Failed to allocate memory for OOB "
|
|
|
|
- "device password");
|
|
|
|
- wpabuf_free(data);
|
|
|
|
- return NULL;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- if (wps_build_version(data) ||
|
|
|
|
- wps_build_oob_dev_password(data, wps) ||
|
|
|
|
- wps_build_wfa_ext(data, 0, NULL, 0)) {
|
|
|
|
- wpa_printf(MSG_ERROR, "WPS: Build OOB device password "
|
|
|
|
- "attribute error");
|
|
|
|
- wpabuf_free(data);
|
|
|
|
- return NULL;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- return data;
|
|
|
|
-}
|
|
|
|
-
|
|
|
|
-
|
|
|
|
-static int wps_parse_oob_dev_pwd(struct wps_context *wps,
|
|
|
|
- struct wpabuf *data)
|
|
|
|
-{
|
|
|
|
- struct oob_conf_data *oob_conf = &wps->oob_conf;
|
|
|
|
- struct wps_parse_attr attr;
|
|
|
|
- const u8 *pos;
|
|
|
|
- size_t pw_len;
|
|
|
|
-
|
|
|
|
- if (wps_parse_msg(data, &attr) < 0 ||
|
|
|
|
- attr.oob_dev_password == NULL) {
|
|
|
|
- wpa_printf(MSG_ERROR, "WPS: OOB device password not found");
|
|
|
|
- return -1;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- pos = attr.oob_dev_password;
|
|
|
|
-
|
|
|
|
- wpabuf_free(oob_conf->pubkey_hash);
|
|
|
|
- oob_conf->pubkey_hash =
|
|
|
|
- wpabuf_alloc_copy(pos, WPS_OOB_PUBKEY_HASH_LEN);
|
|
|
|
- if (oob_conf->pubkey_hash == NULL) {
|
|
|
|
- wpa_printf(MSG_ERROR, "WPS: Failed to allocate memory for OOB "
|
|
|
|
- "public key hash");
|
|
|
|
- return -1;
|
|
|
|
- }
|
|
|
|
- pos += WPS_OOB_PUBKEY_HASH_LEN;
|
|
|
|
-
|
|
|
|
- wps->oob_dev_pw_id = WPA_GET_BE16(pos);
|
|
|
|
- pos += sizeof(wps->oob_dev_pw_id);
|
|
|
|
-
|
|
|
|
- pw_len = attr.oob_dev_password_len - WPS_OOB_PUBKEY_HASH_LEN - 2;
|
|
|
|
- oob_conf->dev_password = wpabuf_alloc(pw_len * 2 + 1);
|
|
|
|
- if (oob_conf->dev_password == NULL) {
|
|
|
|
- wpa_printf(MSG_ERROR, "WPS: Failed to allocate memory for OOB "
|
|
|
|
- "device password");
|
|
|
|
- return -1;
|
|
|
|
- }
|
|
|
|
- wpa_snprintf_hex_uppercase(wpabuf_put(oob_conf->dev_password,
|
|
|
|
- pw_len * 2 + 1),
|
|
|
|
- pw_len * 2 + 1, pos, pw_len);
|
|
|
|
-
|
|
|
|
- return 0;
|
|
|
|
-}
|
|
|
|
-
|
|
|
|
-
|
|
|
|
int wps_oob_use_cred(struct wps_context *wps, struct wps_parse_attr *attr)
|
|
int wps_oob_use_cred(struct wps_context *wps, struct wps_parse_attr *attr)
|
|
{
|
|
{
|
|
struct wpabuf msg;
|
|
struct wpabuf msg;
|
|
@@ -477,88 +399,6 @@ int wps_oob_use_cred(struct wps_context *wps, struct wps_parse_attr *attr)
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
-static int wps_parse_oob_cred(struct wps_context *wps, struct wpabuf *data)
|
|
|
|
-{
|
|
|
|
- struct wps_parse_attr attr;
|
|
|
|
-
|
|
|
|
- if (wps_parse_msg(data, &attr) < 0 || attr.num_cred <= 0) {
|
|
|
|
- wpa_printf(MSG_ERROR, "WPS: OOB credential not found");
|
|
|
|
- return -1;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- return wps_oob_use_cred(wps, &attr);
|
|
|
|
-}
|
|
|
|
-
|
|
|
|
-
|
|
|
|
-int wps_process_oob(struct wps_context *wps, struct oob_device_data *oob_dev,
|
|
|
|
- int registrar)
|
|
|
|
-{
|
|
|
|
- struct wpabuf *data;
|
|
|
|
- int ret, write_f, oob_method = wps->oob_conf.oob_method;
|
|
|
|
- void *oob_priv;
|
|
|
|
-
|
|
|
|
- write_f = oob_method == OOB_METHOD_DEV_PWD_E ? !registrar : registrar;
|
|
|
|
-
|
|
|
|
- oob_priv = oob_dev->init_func(wps, oob_dev, registrar);
|
|
|
|
- if (oob_priv == NULL) {
|
|
|
|
- wpa_printf(MSG_ERROR, "WPS: Failed to initialize OOB device");
|
|
|
|
- return -1;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- if (write_f) {
|
|
|
|
- if (oob_method == OOB_METHOD_CRED)
|
|
|
|
- data = wps_get_oob_cred(wps);
|
|
|
|
- else
|
|
|
|
- data = wps_get_oob_dev_pwd(wps);
|
|
|
|
-
|
|
|
|
- ret = 0;
|
|
|
|
- if (data == NULL || oob_dev->write_func(oob_priv, data) < 0)
|
|
|
|
- ret = -1;
|
|
|
|
- } else {
|
|
|
|
- data = oob_dev->read_func(oob_priv);
|
|
|
|
- if (data == NULL)
|
|
|
|
- ret = -1;
|
|
|
|
- else {
|
|
|
|
- if (oob_method == OOB_METHOD_CRED)
|
|
|
|
- ret = wps_parse_oob_cred(wps, data);
|
|
|
|
- else
|
|
|
|
- ret = wps_parse_oob_dev_pwd(wps, data);
|
|
|
|
- }
|
|
|
|
- }
|
|
|
|
- wpabuf_free(data);
|
|
|
|
- oob_dev->deinit_func(oob_priv);
|
|
|
|
-
|
|
|
|
- if (ret < 0) {
|
|
|
|
- wpa_printf(MSG_ERROR, "WPS: Failed to process OOB data");
|
|
|
|
- return -1;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- return 0;
|
|
|
|
-}
|
|
|
|
-
|
|
|
|
-
|
|
|
|
-struct oob_device_data * wps_get_oob_device(char *device_type)
|
|
|
|
-{
|
|
|
|
-#ifdef CONFIG_WPS_UFD
|
|
|
|
- if (os_strstr(device_type, "ufd") != NULL)
|
|
|
|
- return &oob_ufd_device_data;
|
|
|
|
-#endif /* CONFIG_WPS_UFD */
|
|
|
|
-
|
|
|
|
- return NULL;
|
|
|
|
-}
|
|
|
|
-
|
|
|
|
-
|
|
|
|
-int wps_get_oob_method(char *method)
|
|
|
|
-{
|
|
|
|
- if (os_strstr(method, "pin-e") != NULL)
|
|
|
|
- return OOB_METHOD_DEV_PWD_E;
|
|
|
|
- if (os_strstr(method, "pin-r") != NULL)
|
|
|
|
- return OOB_METHOD_DEV_PWD_R;
|
|
|
|
- if (os_strstr(method, "cred") != NULL)
|
|
|
|
- return OOB_METHOD_CRED;
|
|
|
|
- return OOB_METHOD_UNKNOWN;
|
|
|
|
-}
|
|
|
|
-
|
|
|
|
#endif /* CONFIG_WPS_OOB */
|
|
#endif /* CONFIG_WPS_OOB */
|
|
|
|
|
|
|
|
|
|
@@ -638,15 +478,10 @@ u16 wps_config_methods_str2bin(const char *str)
|
|
#ifdef CONFIG_WPS2
|
|
#ifdef CONFIG_WPS2
|
|
methods |= WPS_CONFIG_VIRT_DISPLAY;
|
|
methods |= WPS_CONFIG_VIRT_DISPLAY;
|
|
#endif /* CONFIG_WPS2 */
|
|
#endif /* CONFIG_WPS2 */
|
|
-#ifdef CONFIG_WPS_UFD
|
|
|
|
- methods |= WPS_CONFIG_USBA;
|
|
|
|
-#endif /* CONFIG_WPS_UFD */
|
|
|
|
#ifdef CONFIG_WPS_NFC
|
|
#ifdef CONFIG_WPS_NFC
|
|
methods |= WPS_CONFIG_NFC_INTERFACE;
|
|
methods |= WPS_CONFIG_NFC_INTERFACE;
|
|
#endif /* CONFIG_WPS_NFC */
|
|
#endif /* CONFIG_WPS_NFC */
|
|
} else {
|
|
} else {
|
|
- if (os_strstr(str, "usba"))
|
|
|
|
- methods |= WPS_CONFIG_USBA;
|
|
|
|
if (os_strstr(str, "ethernet"))
|
|
if (os_strstr(str, "ethernet"))
|
|
methods |= WPS_CONFIG_ETHERNET;
|
|
methods |= WPS_CONFIG_ETHERNET;
|
|
if (os_strstr(str, "label"))
|
|
if (os_strstr(str, "label"))
|