All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 3/9] sctp: Check address length before reading srx_service field
@ 2019-04-12 10:53 Tetsuo Handa
  2019-04-12 11:12 ` Neil Horman
  2019-04-12 17:25 ` David Miller
  0 siblings, 2 replies; 6+ messages in thread
From: Tetsuo Handa @ 2019-04-12 10:53 UTC (permalink / raw)
  To: Vlad Yasevich, Neil Horman, Marcelo Ricardo Leitner
  Cc: David S. Miller, netdev, Tetsuo Handa

KMSAN will complain if valid address length passed to connect() is shorter
than sizeof("struct sockaddr"->sa_family) bytes.

Signed-off-by: Tetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp>
---
 net/sctp/socket.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/net/sctp/socket.c b/net/sctp/socket.c
index 9874e60c9b0d..4583fa914e62 100644
--- a/net/sctp/socket.c
+++ b/net/sctp/socket.c
@@ -4847,7 +4847,8 @@ static int sctp_connect(struct sock *sk, struct sockaddr *addr,
 	}
 
 	/* Validate addr_len before calling common connect/connectx routine. */
-	af = sctp_get_af_specific(addr->sa_family);
+	af = addr_len < offsetofend(struct sockaddr, sa_family) ? NULL :
+		sctp_get_af_specific(addr->sa_family);
 	if (!af || addr_len < af->sockaddr_len) {
 		err = -EINVAL;
 	} else {
-- 
2.16.5


^ permalink raw reply related	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2019-04-12 17:25 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-04-12 10:53 [PATCH 3/9] sctp: Check address length before reading srx_service field Tetsuo Handa
2019-04-12 11:12 ` Neil Horman
2019-04-12 11:21   ` Tetsuo Handa
2019-04-12 12:38     ` Tetsuo Handa
2019-04-12 16:48     ` Neil Horman
2019-04-12 17:25 ` David Miller

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.