mirror of
https://bitbucket.org/padavan/rt-n56u.git
synced 2025-12-18 11:21:45 +08:00
pppoe: check sockaddr length in pppoe_connect()
We must validate sockaddr_len, otherwise userspace can pass fewer data
than we expect and we end up accessing invalid data.
Fixes: 224cf5ad14c0 ("ppp: Move the PPP drivers")
Reported-by: syzbot+4f03bdf92fdf9ef5ddab@syzkaller.appspotmail.com
Signed-off-by: Guillaume Nault <g.nault@alphalink.fr>
Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
committed by
andy.padavan
parent
370f9d31f3
commit
2174ccb82f
@@ -624,6 +624,10 @@ static int pppoe_connect(struct socket *sock, struct sockaddr *uservaddr,
|
||||
lock_sock(sk);
|
||||
|
||||
error = -EINVAL;
|
||||
|
||||
if (sockaddr_len != sizeof(struct sockaddr_pppox))
|
||||
goto end;
|
||||
|
||||
if (sp->sa_protocol != PX_PROTO_OE)
|
||||
goto end;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user