Bluetooth: Add sockaddr length checks before accessing sa_family in bind and connect...
authorMateusz Jurczyk <mjurczyk@google.com>
Thu, 29 Jun 2017 12:04:59 +0000 (14:04 +0200)
committerMarcel Holtmann <marcel@holtmann.org>
Thu, 29 Jun 2017 12:37:57 +0000 (14:37 +0200)
commitd2ecfa765dff59145a4ba9c84856e50c4f43c2b2
tree234b4b6a034d7398be70b2ca7dd655de5aad864d
parent29e2dd0d56ea0d6c4a95c080760e1cc748fb6f14
Bluetooth: 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 Bluetooth sockets. 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: Marcel Holtmann <marcel@holtmann.org>
net/bluetooth/l2cap_sock.c
net/bluetooth/rfcomm/sock.c
net/bluetooth/sco.c