]> git.baikalelectronics.ru Git - kernel.git/commit
net/sctp: Validate parameter size for SCTP_GET_ASSOC_STATS
authorGuenter Roeck <linux@roeck-us.net>
Wed, 27 Feb 2013 10:57:31 +0000 (10:57 +0000)
committerDavid S. Miller <davem@davemloft.net>
Wed, 27 Feb 2013 21:09:19 +0000 (16:09 -0500)
commitc3d2e54c9e9dac97c08e0a48be92818936a1dd33
tree4895b99cab1b958007b0b71d4dd49947f41e234a
parent8d137f8739c7c895a0a5b58d3d9ce12bb6643ff6
net/sctp: Validate parameter size for SCTP_GET_ASSOC_STATS

Building sctp may fail with:

In function ‘copy_from_user’,
    inlined from ‘sctp_getsockopt_assoc_stats’ at
    net/sctp/socket.c:5656:20:
arch/x86/include/asm/uaccess_32.h:211:26: error: call to
    ‘copy_from_user_overflow’ declared with attribute error: copy_from_user()
    buffer size is not provably correct

if built with W=1 due to a missing parameter size validation
before the call to copy_from_user.

Signed-off-by: Guenter Roeck <linux@roeck-us.net>
Acked-by: Vlad Yasevich <vyasevich@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
net/sctp/socket.c