]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
SCTP scope_id handling fix
authorVlad Yasevich <vladislav.yasevich@hp.com>
Wed, 18 Jul 2007 09:44:12 +0000 (02:44 -0700)
committerGreg Kroah-Hartman <gregkh@suse.de>
Thu, 9 Aug 2007 21:27:27 +0000 (14:27 -0700)
SCTP: Add scope_id validation for link-local binds

SCTP currently permits users to bind to link-local addresses,
but doesn't verify that the scope id specified at bind matches
the interface that the address is configured on.  It was report
that this can hang a system.

Signed-off-by: Vlad Yasevich <vladislav.yasevich@hp.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
net/sctp/ipv6.c

index 2c29394fd92ebf4367a24d7bb8883b657832c10f..2164b511fe5190dc4c45ab8b1168f84a1ae85ac0 100644 (file)
@@ -875,6 +875,10 @@ static int sctp_inet6_send_verify(struct sctp_sock *opt, union sctp_addr *addr)
                        dev = dev_get_by_index(addr->v6.sin6_scope_id);
                        if (!dev)
                                return 0;
+                       if (!ipv6_chk_addr(&addr->v6.sin6_addr, dev, 0)) {
+                               dev_put(dev);
+                               return 0;
+                       }
                        dev_put(dev);
                }
                af = opt->pf->af;