* [PATCH] af_iucv: Move sockaddr length checks to before accessing sa_family in bind and connect handlers
@ 2017-06-13 17:42 Mateusz Jurczyk
2017-06-13 20:15 ` David Miller
2017-06-14 14:49 ` Julian Wiedmann
0 siblings, 2 replies; 3+ messages in thread
From: Mateusz Jurczyk @ 2017-06-13 17:42 UTC (permalink / raw)
To: Julian Wiedmann, Ursula Braun, David S. Miller, linux-s390,
netdev, linux-kernel
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_IUCV 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>
---
net/iucv/af_iucv.c | 8 +++-----
1 file changed, 3 insertions(+), 5 deletions(-)
diff --git a/net/iucv/af_iucv.c b/net/iucv/af_iucv.c
index 84de7b6326dc..1f63e704ab50 100644
--- a/net/iucv/af_iucv.c
+++ b/net/iucv/af_iucv.c
@@ -716,10 +716,8 @@ static int iucv_sock_bind(struct socket *sock, struct sockaddr *addr,
char uid[9];
/* Verify the input sockaddr */
- if (!addr || addr->sa_family != AF_IUCV)
- return -EINVAL;
-
- if (addr_len < sizeof(struct sockaddr_iucv))
+ if (!addr || addr_len < sizeof(struct sockaddr_iucv) ||
+ addr->sa_family != AF_IUCV)
return -EINVAL;
lock_sock(sk);
@@ -863,7 +861,7 @@ static int iucv_sock_connect(struct socket *sock, struct sockaddr *addr,
struct iucv_sock *iucv = iucv_sk(sk);
int err;
- if (addr->sa_family != AF_IUCV || alen < sizeof(struct sockaddr_iucv))
+ if (alen < sizeof(struct sockaddr_iucv) || addr->sa_family != AF_IUCV)
return -EINVAL;
if (sk->sk_state != IUCV_OPEN && sk->sk_state != IUCV_BOUND)
--
2.13.1.508.gb3defc5cc-goog
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH] af_iucv: Move sockaddr length checks to before accessing sa_family in bind and connect handlers
2017-06-13 17:42 [PATCH] af_iucv: Move sockaddr length checks to before accessing sa_family in bind and connect handlers Mateusz Jurczyk
@ 2017-06-13 20:15 ` David Miller
2017-06-14 14:49 ` Julian Wiedmann
1 sibling, 0 replies; 3+ messages in thread
From: David Miller @ 2017-06-13 20:15 UTC (permalink / raw)
To: mjurczyk; +Cc: jwi, ubraun, linux-s390, netdev, linux-kernel
From: Mateusz Jurczyk <mjurczyk@google.com>
Date: Tue, 13 Jun 2017 19:42:28 +0200
> 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_IUCV 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>
...
> /* Verify the input sockaddr */
> - if (!addr || addr->sa_family != AF_IUCV)
> - return -EINVAL;
> -
> - if (addr_len < sizeof(struct sockaddr_iucv))
> + if (!addr || addr_len < sizeof(struct sockaddr_iucv) ||
> + addr->sa_family != AF_IUCV)
The 'addr' can never be NULL so please remove that check, thank you.
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH] af_iucv: Move sockaddr length checks to before accessing sa_family in bind and connect handlers
2017-06-13 17:42 [PATCH] af_iucv: Move sockaddr length checks to before accessing sa_family in bind and connect handlers Mateusz Jurczyk
2017-06-13 20:15 ` David Miller
@ 2017-06-14 14:49 ` Julian Wiedmann
1 sibling, 0 replies; 3+ messages in thread
From: Julian Wiedmann @ 2017-06-14 14:49 UTC (permalink / raw)
To: Mateusz Jurczyk, Ursula Braun, David S. Miller, linux-s390,
netdev, linux-kernel
On 06/13/2017 07:42 PM, Mateusz Jurczyk wrote:
> 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_IUCV 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>
Thanks Mateusz!
Fixes: 52a82e23b9f2
Acked-by: Julian Wiedmann <jwi@linux.vnet.ibm.com>
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2017-06-14 14:49 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-06-13 17:42 [PATCH] af_iucv: Move sockaddr length checks to before accessing sa_family in bind and connect handlers Mateusz Jurczyk
2017-06-13 20:15 ` David Miller
2017-06-14 14:49 ` Julian Wiedmann
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).