svn commit: r356897 - head/sys/x86/x86

Mateusz Guzik mjg at FreeBSD.org
Sun Jan 19 21:35:52 UTC 2020


Author: mjg
Date: Sun Jan 19 21:35:51 2020
New Revision: 356897
URL: https://svnweb.freebsd.org/changeset/base/356897

Log:
  x86: fix assertion in ipi_send_cpu to range check the passed id
  
  Prior to the change for sufficiently bad id (and in particular NOCPU which is -1)
  it would access memory outside of the cpu_apic_ids array.

Modified:
  head/sys/x86/x86/mp_x86.c

Modified: head/sys/x86/x86/mp_x86.c
==============================================================================
--- head/sys/x86/x86/mp_x86.c	Sun Jan 19 21:17:57 2020	(r356896)
+++ head/sys/x86/x86/mp_x86.c	Sun Jan 19 21:35:51 2020	(r356897)
@@ -1233,7 +1233,8 @@ ipi_send_cpu(int cpu, u_int ipi)
 	u_int bitmap, old, new;
 	u_int *cpu_bitmap;
 
-	KASSERT(cpu_apic_ids[cpu] != -1, ("IPI to non-existent CPU %d", cpu));
+	KASSERT((u_int)cpu < MAXCPU && cpu_apic_ids[cpu] != -1,
+	    ("IPI to non-existent CPU %d", cpu));
 
 	if (IPI_IS_BITMAPED(ipi)) {
 		bitmap = 1 << ipi;


More information about the svn-src-all mailing list