Browse Source

P2P: Save a copy of P2P IE(s) data from (Re)Association Request

Jouni Malinen 14 years ago
parent
commit
b305c684b8
4 changed files with 25 additions and 0 deletions
  1. 12 0
      src/ap/drv_callbacks.c
  2. 11 0
      src/ap/ieee802_11.c
  3. 1 0
      src/ap/sta_info.c
  4. 1 0
      src/ap/sta_info.h

+ 12 - 0
src/ap/drv_callbacks.c

@@ -40,6 +40,10 @@ int hostapd_notif_assoc(struct hostapd_data *hapd, const u8 *addr,
 	struct sta_info *sta;
 	int new_assoc, res;
 	struct ieee802_11_elems elems;
+#ifdef CONFIG_P2P
+	const u8 *all_ies = ie;
+	size_t all_ies_len = ielen;
+#endif /* CONFIG_P2P */
 
 	if (addr == NULL) {
 		/*
@@ -87,6 +91,14 @@ int hostapd_notif_assoc(struct hostapd_data *hapd, const u8 *addr,
 	}
 	sta->flags &= ~(WLAN_STA_WPS | WLAN_STA_MAYBE_WPS);
 
+#ifdef CONFIG_P2P
+	if (elems.p2p) {
+		wpabuf_free(sta->p2p_ie);
+		sta->p2p_ie = ieee802_11_vendor_ie_concat(all_ies, all_ies_len,
+							  P2P_IE_VENDOR_TYPE);
+	}
+#endif /* CONFIG_P2P */
+
 	if (hapd->conf->wpa) {
 		if (ie == NULL || ielen == 0) {
 			if (hapd->conf->wps_state) {

+ 11 - 0
src/ap/ieee802_11.c

@@ -773,6 +773,17 @@ static u16 check_assoc_ies(struct hostapd_data *hapd, struct sta_info *sta,
 	} else
 		wpa_auth_sta_no_wpa(sta->wpa_sm);
 
+#ifdef CONFIG_P2P
+	if (elems.p2p) {
+		wpabuf_free(sta->p2p_ie);
+		sta->p2p_ie = ieee802_11_vendor_ie_concat(ies, ies_len,
+							  P2P_IE_VENDOR_TYPE);
+	} else {
+		wpabuf_free(sta->p2p_ie);
+		sta->p2p_ie = NULL;
+	}
+#endif /* CONFIG_P2P */
+
 	return WLAN_STATUS_SUCCESS;
 }
 

+ 1 - 0
src/ap/sta_info.c

@@ -200,6 +200,7 @@ void ap_free_sta(struct hostapd_data *hapd, struct sta_info *sta)
 #endif /* CONFIG_IEEE80211W */
 
 	wpabuf_free(sta->wps_ie);
+	wpabuf_free(sta->p2p_ie);
 
 	os_free(sta->ht_capabilities);
 

+ 1 - 0
src/ap/sta_info.h

@@ -104,6 +104,7 @@ struct sta_info {
 #endif /* CONFIG_IEEE80211W */
 
 	struct wpabuf *wps_ie; /* WPS IE from (Re)Association Request */
+	struct wpabuf *p2p_ie; /* P2P IE from (Re)Association Request */
 };