sctp: fix overrun in sctp_diag_dump_one()
authorLance Richardson <lrichard@redhat.com>
Tue, 23 Aug 2016 15:40:52 +0000 (11:40 -0400)
committerDavid S. Miller <davem@davemloft.net>
Wed, 24 Aug 2016 00:22:53 +0000 (17:22 -0700)
commit232cb53a45965f8789fbf0a9a1962f8c67ab1a3c
treec38b98c67c82791ae2612d4883bb5d8b72f632dc
parenta8184003c0bb1d6362c2af76c560b3caae6832cb
sctp: fix overrun in sctp_diag_dump_one()

The function sctp_diag_dump_one() currently performs a memcpy()
of 64 bytes from a 16 byte field into another 16 byte field. Fix
by using correct size, use sizeof to obtain correct size instead
of using a hard-coded constant.

Fixes: 8f840e47f190 ("sctp: add the sctp_diag.c file")
Signed-off-by: Lance Richardson <lrichard@redhat.com>
Reviewed-by: Xin Long <lucien.xin@gmail.com>
Acked-by: Marcelo Ricardo Leitner <marcelo.leitner@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
net/sctp/sctp_diag.c