linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Juergen Gross <jgross@suse.com>
To: linux-kernel@vger.kernel.org, xen-devel@lists.xensource.com,
	konrad.wilk@oracle.com, david.vrabel@citrix.com,
	boris.ostrovsky@oracle.com
Subject: Re: [PATCH] xen: avoid NULL pointer dereference in dom0 on large machines
Date: Fri, 06 Mar 2015 13:32:56 +0100	[thread overview]
Message-ID: <54F99E78.5010208@suse.com> (raw)
In-Reply-To: <1424929925-18501-1-git-send-email-jgross@suse.com>

Ping?

On 02/26/2015 06:52 AM, Juergen Gross wrote:
> Using the pvops kernel a NULL pointer dereference was detected on a
> large machine (144 processors) when booting as dom0 in
> evtchn_fifo_unmask() during assignment of a pirq.
>
> The event channel in question was the first to need a new entry in
> event_array[] in events_fifo.c. Unfortunately xen_irq_info_pirq_setup()
> is called with evtchn being 0 for a new pirq and the real event channel
> number is assigned to the pirq only during __startup_pirq().
>
> It is mandatory to call xen_evtchn_port_setup() after assigning the
> event channel number to the pirq to make sure all memory needed for the
> event channel is allocated.
>
> Signed-off-by: Juergen Gross <jgross@suse.com>
> ---
>   drivers/xen/events/events_base.c | 18 ++++++++++++------
>   1 file changed, 12 insertions(+), 6 deletions(-)
>
> diff --git a/drivers/xen/events/events_base.c b/drivers/xen/events/events_base.c
> index b4bca2d..70fba97 100644
> --- a/drivers/xen/events/events_base.c
> +++ b/drivers/xen/events/events_base.c
> @@ -526,20 +526,26 @@ static unsigned int __startup_pirq(unsigned int irq)
>   	pirq_query_unmask(irq);
>
>   	rc = set_evtchn_to_irq(evtchn, irq);
> -	if (rc != 0) {
> -		pr_err("irq%d: Failed to set port to irq mapping (%d)\n",
> -		       irq, rc);
> -		xen_evtchn_close(evtchn);
> -		return 0;
> -	}
> +	if (rc)
> +		goto err;
> +
>   	bind_evtchn_to_cpu(evtchn, 0);
>   	info->evtchn = evtchn;
>
> +	rc = xen_evtchn_port_setup(info);
> +	if (rc)
> +		goto err;
> +
>   out:
>   	unmask_evtchn(evtchn);
>   	eoi_pirq(irq_get_irq_data(irq));
>
>   	return 0;
> +
> +err:
> +	pr_err("irq%d: Failed to set port to irq mapping (%d)\n", irq, rc);
> +	xen_evtchn_close(evtchn);
> +	return 0;
>   }
>
>   static unsigned int startup_pirq(struct irq_data *data)
>


  reply	other threads:[~2015-03-06 12:33 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-02-26  5:52 [PATCH] xen: avoid NULL pointer dereference in dom0 on large machines Juergen Gross
2015-03-06 12:32 ` Juergen Gross [this message]
2015-03-06 13:18 ` [Xen-devel] " David Vrabel

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=54F99E78.5010208@suse.com \
    --to=jgross@suse.com \
    --cc=boris.ostrovsky@oracle.com \
    --cc=david.vrabel@citrix.com \
    --cc=konrad.wilk@oracle.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=xen-devel@lists.xensource.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).