af_unix: Add sockaddr length checks before accessing sa_family in bind and connect...
authorMateusz Jurczyk <mjurczyk@google.com>
Thu, 8 Jun 2017 09:13:36 +0000 (11:13 +0200)
committerDavid S. Miller <davem@davemloft.net>
Fri, 9 Jun 2017 14:10:24 +0000 (10:10 -0400)
commitdefbcf2decc903a28d8398aa477b6881e711e3ea
treee347eafc099d97c7570f56124209c90a5ebca176
parentfc5b775da468e359154795afeb27be79b509b76d
af_unix: Add sockaddr length checks before accessing sa_family in bind and connect handlers

Verify that the caller-provided sockaddr structure is large enough to
contain the sa_family field, before accessing it in bind() and connect()
handlers of the AF_UNIX socket. Since neither syscall enforces a minimum
size of the corresponding memory region, very short sockaddrs (zero or
one byte long) result in operating on uninitialized memory while
referencing .sa_family.

Signed-off-by: Mateusz Jurczyk <mjurczyk@google.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
net/unix/af_unix.c