“1b0f84380b10ee97f7d2dd191294de9017e94d1d”上不存在“...nouveau/nvkm/git@gitcode.net:openharmony/kernel_linux.git”
提交 cab46214 编写于 作者: H Haggai Eran 提交者: Greg Kroah-Hartman

staging: rtl8712: prevent buffer overrun in recvbuf2recvframe

With an RTL8191SU USB adaptor, sometimes the hints for a fragmented
packet are set, but the packet length is too large. Allocate enough
space to prevent memory corruption and a resulting kernel panic [1].

[1] http://www.spinics.net/lists/linux-wireless/msg136546.html

Cc: <stable@vger.kernel.org>
Signed-off-by: NHaggai Eran <haggai.eran@gmail.com>
ACKed-by: NLarry Finger <Larry.Finger@lwfinger.net>
Signed-off-by: NGreg Kroah-Hartman <gregkh@linuxfoundation.org>
上级 a1471eb9
...@@ -1056,7 +1056,8 @@ static int recvbuf2recvframe(struct _adapter *padapter, struct sk_buff *pskb) ...@@ -1056,7 +1056,8 @@ static int recvbuf2recvframe(struct _adapter *padapter, struct sk_buff *pskb)
/* for first fragment packet, driver need allocate 1536 + /* for first fragment packet, driver need allocate 1536 +
* drvinfo_sz + RXDESC_SIZE to defrag packet. */ * drvinfo_sz + RXDESC_SIZE to defrag packet. */
if ((mf == 1) && (frag == 0)) if ((mf == 1) && (frag == 0))
alloc_sz = 1658;/*1658+6=1664, 1664 is 128 alignment.*/ /*1658+6=1664, 1664 is 128 alignment.*/
alloc_sz = max_t(u16, tmp_len, 1658);
else else
alloc_sz = tmp_len; alloc_sz = tmp_len;
/* 2 is for IP header 4 bytes alignment in QoS packet case. /* 2 is for IP header 4 bytes alignment in QoS packet case.
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册