mirror of
				git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
				synced 2025-10-31 08:44:41 +00:00 
			
		
		
		
	ethernet/netronome/nfp: Fix a use after free in nfp_bpf_ctrl_msg_rx
In nfp_bpf_ctrl_msg_rx, if
nfp_ccm_get_type(skb) == NFP_CCM_TYPE_BPF_BPF_EVENT is true, the skb
will be freed. But the skb is still used by nfp_ccm_rx(&bpf->ccm, skb).
My patch adds a return when the skb was freed.
Fixes: bcf0cafab4 ("nfp: split out common control message handling code")
Signed-off-by: Lv Yunlong <lyl2019@mail.ustc.edu.cn>
Reviewed-by: Jakub Kicinski <kuba@kernel.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
			
			
This commit is contained in:
		
							parent
							
								
									ca441a7129
								
							
						
					
					
						commit
						6e5a03bcba
					
				
					 1 changed files with 1 additions and 0 deletions
				
			
		|  | @ -454,6 +454,7 @@ void nfp_bpf_ctrl_msg_rx(struct nfp_app *app, struct sk_buff *skb) | |||
| 			dev_consume_skb_any(skb); | ||||
| 		else | ||||
| 			dev_kfree_skb_any(skb); | ||||
| 		return; | ||||
| 	} | ||||
| 
 | ||||
| 	nfp_ccm_rx(&bpf->ccm, skb); | ||||
|  |  | |||
		Loading…
	
	Add table
		
		Reference in a new issue
	
	 Lv Yunlong
						Lv Yunlong