Browse Source

qcacmn: dp_peer use after free condition

there is a use after free case observed with the
recent changes to wait for a WMI WDS delete response
Basically the peer got deleted by the time we got
response for WDS delete and we are trying to access this
peer when trying to delete the AST entry from host.

Change-Id: I78215345ccd12d5bdd801fccf8d9f5cd196466de
Tallapragada Kalyan 6 years ago
parent
commit
887fb5d580
1 changed files with 2 additions and 2 deletions
  1. 2 2
      dp/wifi3.0/dp_peer.c

+ 2 - 2
dp/wifi3.0/dp_peer.c

@@ -666,6 +666,7 @@ void dp_peer_del_ast(struct dp_soc *soc, struct dp_ast_entry *ast_entry)
 
 	if (ast_entry->next_hop &&
 	    ast_entry->type != CDP_TXRX_AST_TYPE_WDS_HM_SEC) {
+		TAILQ_REMOVE(&peer->ast_entry_list, ast_entry, ase_list_elem);
 		dp_peer_ast_send_wds_del(soc, ast_entry);
 	} else {
 		/*
@@ -927,7 +928,6 @@ bool dp_peer_ast_get_wmi_sent(struct dp_soc *soc,
 void dp_peer_ast_free_entry(struct dp_soc *soc,
 			    struct dp_ast_entry *ast_entry)
 {
-	struct dp_peer *peer = ast_entry->peer;
 
 	/*
 	 * release the reference only if it is mapped
@@ -935,7 +935,7 @@ void dp_peer_ast_free_entry(struct dp_soc *soc,
 	 */
 	if (ast_entry->is_mapped)
 		soc->ast_table[ast_entry->ast_idx] = NULL;
-	TAILQ_REMOVE(&peer->ast_entry_list, ast_entry, ase_list_elem);
+
 	DP_STATS_INC(soc, ast.deleted, 1);
 	dp_peer_ast_hash_remove(soc, ast_entry);
 	qdf_mem_free(ast_entry);