[SCSI] qla4xxx: Fix memory corruption issue in qla4xxx_ep_connect.
authorManish Rangankar <manish.rangankar@qlogic.com>
Tue, 7 Aug 2012 11:57:13 +0000 (07:57 -0400)
committerJames Bottomley <JBottomley@Parallels.com>
Fri, 14 Sep 2012 16:59:19 +0000 (17:59 +0100)
commitd46bdeb14447f0b7e4420c7b1525c8ad9f64ed1b
tree9dd508922030f7b37caded1e5d8d6941bb2aad98
parent95ab000388974d8ffef8257306b4be6e8778b768
[SCSI] qla4xxx: Fix memory corruption issue in qla4xxx_ep_connect.

In qla4xxx_ep_connect(), qla_ep->dst_addr and dst_addr are type
struct sockaddr. We are copying sizeof(struct sockaddr_in6) bytes
from dst_addr to qla_ep->dst_addr which is 12 bytes larger. This
will cause memory corruption. So we change qla_ep->dst_addr to
struct sockaddr_storage which is of 128 byte, large enough to
hold sizeof(struct sockaddr_in6).

Signed-off-by: Manish Rangankar <manish.rangankar@qlogic.com>
Signed-off-by: Vikas Chaudhary <vikas.chaudhary@qlogic.com>
Reviewed-by: Mike Christie <michaelc@cs.wisc.edu>
Signed-off-by: James Bottomley <JBottomley@Parallels.com>
drivers/scsi/qla4xxx/ql4_def.h
drivers/scsi/qla4xxx/ql4_mbx.c
drivers/scsi/qla4xxx/ql4_os.c