From owner-svn-src-head@FreeBSD.ORG Wed Jun 18 13:41:20 2014 Return-Path: Delivered-To: svn-src-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id A8B314AF; Wed, 18 Jun 2014 13:41:20 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 959EF242D; Wed, 18 Jun 2014 13:41:20 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s5IDfKNT065440; Wed, 18 Jun 2014 13:41:20 GMT (envelope-from royger@svn.freebsd.org) Received: (from royger@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s5IDfKwG065439; Wed, 18 Jun 2014 13:41:20 GMT (envelope-from royger@svn.freebsd.org) Message-Id: <201406181341.s5IDfKwG065439@svn.freebsd.org> From: Roger Pau Monné Date: Wed, 18 Jun 2014 13:41:20 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r267607 - head/sys/x86/xen X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: SVN commit messages for the src tree for head/-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 18 Jun 2014 13:41:20 -0000 Author: royger Date: Wed Jun 18 13:41:20 2014 New Revision: 267607 URL: http://svnweb.freebsd.org/changeset/base/267607 Log: xen: fix out-of-bounds access to ipi_handle Fix the gate in xen_pv_lapic_ipi_vectored to prevent access to element at position nitems(xen_ipis). Sponsored by: Citrix Systems R&D Coverity ID: 1223203 Approved by: gibbs Modified: head/sys/x86/xen/xen_apic.c Modified: head/sys/x86/xen/xen_apic.c ============================================================================== --- head/sys/x86/xen/xen_apic.c Wed Jun 18 12:26:02 2014 (r267606) +++ head/sys/x86/xen/xen_apic.c Wed Jun 18 13:41:20 2014 (r267607) @@ -272,7 +272,7 @@ xen_pv_lapic_ipi_vectored(u_int vector, int ipi_idx, to_cpu, self; ipi_idx = IPI_TO_IDX(vector); - if (ipi_idx > nitems(xen_ipis)) + if (ipi_idx >= nitems(xen_ipis)) panic("IPI out of range"); switch(dest) {