svn commit: r314441 - stable/11/sys/dev/mpr

Alan Somers asomers at FreeBSD.org
Wed Mar 1 00:17:05 UTC 2017


Author: asomers
Date: Wed Mar  1 00:17:04 2017
New Revision: 314441
URL: https://svnweb.freebsd.org/changeset/base/314441

Log:
  MFC r312995:
  
  Initialize a stack variable in mprsas_get_sas_address_for_sata_disk
  
  Thought it's difficult to reproduce, I think this variable was responsible
  for a use-after-free panic when a SATA disk timed out responding to a SATA
  identify command during boot.
  
  Submitted by:	slm
  Reviewed by:	slm
  MFC after:	4 weeks
  Sponsored by:	Spectra Logic Corp
  Differential Revision:	https://reviews.freebsd.org/D9364

Modified:
  stable/11/sys/dev/mpr/mpr_sas_lsi.c
Directory Properties:
  stable/11/   (props changed)

Modified: stable/11/sys/dev/mpr/mpr_sas_lsi.c
==============================================================================
--- stable/11/sys/dev/mpr/mpr_sas_lsi.c	Wed Mar  1 00:13:58 2017	(r314440)
+++ stable/11/sys/dev/mpr/mpr_sas_lsi.c	Wed Mar  1 00:17:04 2017	(r314441)
@@ -893,6 +893,7 @@ mprsas_get_sas_address_for_sata_disk(str
 	u8 sas_status;
 
 	memset(&ata_identify, 0, sizeof(ata_identify));
+	memset(&mpi_reply, 0, sizeof(mpi_reply));
 	try_count = 0;
 	do {
 		rc = mprsas_get_sata_identify(sc, handle, &mpi_reply,


More information about the svn-src-all mailing list