]> git.baikalelectronics.ru Git - kernel.git/commit
l2tp: copy 4 more bytes to linear part if necessary
authorJacob Wen <jian.w.wen@oracle.com>
Thu, 31 Jan 2019 07:18:56 +0000 (15:18 +0800)
committerDavid S. Miller <davem@davemloft.net>
Thu, 31 Jan 2019 16:58:46 +0000 (08:58 -0800)
commit3a43fda91d50d11df4c94721424954d343fe691f
tree5e9c1df39ce270ed192b5dfa534a9a866ff7f9c0
parent1bf9fbcbff5825cd83fa55d94b2ad20f15fe9813
l2tp: copy 4 more bytes to linear part if necessary

The size of L2TPv2 header with all optional fields is 14 bytes.
l2tp_udp_recv_core only moves 10 bytes to the linear part of a
skb. This may lead to l2tp_recv_common read data outside of a skb.

This patch make sure that there is at least 14 bytes in the linear
part of a skb to meet the maximum need of l2tp_udp_recv_core and
l2tp_recv_common. The minimum size of both PPP HDLC-like frame and
Ethernet frame is larger than 14 bytes, so we are safe to do so.

Also remove L2TP_HDR_SIZE_NOSEQ, it is unused now.

Fixes: b2079113577e ("l2tp: Split pppol2tp patch into separate l2tp and ppp parts")
Suggested-by: Guillaume Nault <gnault@redhat.com>
Signed-off-by: Jacob Wen <jian.w.wen@oracle.com>
Acked-by: Guillaume Nault <gnault@redhat.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
net/l2tp/l2tp_core.c