mirror of
https://github.com/vanhoefm/fragattacks.git
synced 2024-11-25 00:38:24 -05:00
WPS: Limit number of active wildcard PINs to one
Previously, WPS Registrar allowed multiple wildcard PINs to be configured. This can get confusing since these PINs get assigned to any Enrollee that does not have a specific PIN and as such, cannot really be used with different PIN values in reasonable ways. To avoid confusion with multiple enabled PINs, invalidate any previously configured wildcard PIN whenever adding a new one. Signed-hostap: Jouni Malinen <jouni@qca.qualcomm.com>
This commit is contained in:
parent
c423708f02
commit
3a643324c6
@ -187,6 +187,8 @@ static int wps_set_ie(struct wps_registrar *reg);
|
||||
static void wps_registrar_pbc_timeout(void *eloop_ctx, void *timeout_ctx);
|
||||
static void wps_registrar_set_selected_timeout(void *eloop_ctx,
|
||||
void *timeout_ctx);
|
||||
static void wps_registrar_remove_pin(struct wps_registrar *reg,
|
||||
struct wps_uuid_pin *pin);
|
||||
|
||||
|
||||
static void wps_registrar_add_authorized_mac(struct wps_registrar *reg,
|
||||
@ -691,6 +693,21 @@ void wps_registrar_deinit(struct wps_registrar *reg)
|
||||
}
|
||||
|
||||
|
||||
static void wps_registrar_invalidate_unused(struct wps_registrar *reg)
|
||||
{
|
||||
struct wps_uuid_pin *pin;
|
||||
|
||||
dl_list_for_each(pin, ®->pins, struct wps_uuid_pin, list) {
|
||||
if (pin->wildcard_uuid == 1 && !(pin->flags & PIN_LOCKED)) {
|
||||
wpa_printf(MSG_DEBUG, "WPS: Invalidate previously "
|
||||
"configured wildcard PIN");
|
||||
wps_registrar_remove_pin(reg, pin);
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* wps_registrar_add_pin - Configure a new PIN for Registrar
|
||||
* @reg: Registrar data from wps_registrar_init()
|
||||
@ -730,6 +747,9 @@ int wps_registrar_add_pin(struct wps_registrar *reg, const u8 *addr,
|
||||
p->expiration.sec += timeout;
|
||||
}
|
||||
|
||||
if (p->wildcard_uuid)
|
||||
wps_registrar_invalidate_unused(reg);
|
||||
|
||||
dl_list_add(®->pins, &p->list);
|
||||
|
||||
wpa_printf(MSG_DEBUG, "WPS: A new PIN configured (timeout=%d)",
|
||||
|
Loading…
Reference in New Issue
Block a user