From: "Furkan Çalışkan" <frn1furkan10@gmail.com>
To: "Jürgen Groß" <jgross@suse.com>, xen-devel@lists.xenproject.org
Cc: jbeulich@suse.com, andrew.cooper3@citrix.com, dfaggioli@suse.com,
gwd@xenproject.org
Subject: Re: [PATCH 1/2] xen/sched: core: skip missing vcpu slots in sched_move_domain()
Date: Tue, 18 Aug 2026 10:53:06 +0300 [thread overview]
Message-ID: <1d50520d-68bf-4765-8a13-c7c047580f2e@gmail.com> (raw)
In-Reply-To: <030c7756-c959-465d-9d14-9bb3523e8c31@suse.com>
On 8/18/26 10:11, Jürgen Groß wrote:
> On 18.08.26 08:32, Furkan Caliskan wrote:
>> sched_move_domain() derives the number of units to rebuild from
>> d->max_vcpus, which is fixed at domain creation and never rolled
>> back if vcpu_create() fails partway through building a domain. So
>> d->vcpu[i] can be NULL for some i even though max_vcpus still
>> counts it - this happens if sched_alloc_udata() returns NULL.
>>
>> The per-unit loop doesn't check for this: it sets
>> unit->vcpu_list = d->vcpu[unit_id] (NULL) and hands that broken
>> unit straight to the destination scheduler's alloc_udata(),
>> which assumes vcpu_list is always valid and crashes Xen when
>> it is not.
>>
>> Reproduced by building a domain in a non-default cpupool where
>> vcpu creation fails partway through, then destroying it.
>> domain_kill() moves the domain back to the default cpupool via
>> sched_move_domain() before actually destroying it, crashing
>> inside the destination scheduler's alloc_udata() (seen in
>> Credit2's csched2_alloc_udata() -> is_idle_unit() -> NULL deref).
>>
>> Before building a unit in sched_move_domain(), check that all of
>> its vcpu slots are populated, and skip it if any are missing. The
>> rest of the function walks the vcpus that actually exist, via
>> for_each_vcpu() rather than n_units, so skipping a unit here
>> does not leave anything else out of sync.
>>
>> Signed-off-by: Furkan Caliskan <frn1furkan10@gmail.com>
>> ---
>> xen/common/sched/core.c | 19 +++++++++++++++++++
>> 1 file changed, 19 insertions(+)
>>
>> diff --git a/xen/common/sched/core.c b/xen/common/sched/core.c
>> index d3a0a97e1d..d542c76543 100644
>> --- a/xen/common/sched/core.c
>> +++ b/xen/common/sched/core.c
>> @@ -745,6 +745,25 @@ int sched_move_domain(struct domain *d, struct cpupool *c)
>> for ( unit_idx = 0; unit_idx < n_units; unit_idx++ )
>> {
>> + /*
>> + * Skip this unit if any of its vcpus is missing. Bounded by
>> + * max_vcpus.
>> + */
>> + bool vcpu_failed = false;
>> +
>> + for ( unsigned int i = 0;
>> + i < gran && unit_idx * gran + i < d->max_vcpus; i++ )
>> + {
>> + if ( !d->vcpu[unit_idx * gran + i] )
>> + {
>> + vcpu_failed = true;
>> + break;
>> + }
>> + }
>> +
>> + if ( vcpu_failed )
>> + continue;
>
> I don't think this is correct.
>
> If there are some vcpus in the unit you will loose them (i.e. make them no
> longer be able to be scheduled), right?
>
> For a dying domain this might be okay, but not for one still active. So I think
> you should at least verify the domain is dying, otherwise sched_move_domain()
> should just fail.
>
> An alternative might be to fix the NULL dereferencing where needed, but this
> could become tedious.
>
>
> Juergen
Right. My initial attempt only checked 'd->vcpu[unit_idx*gran]'
for the head vCPU. The crash happens when unit->vcpu_list is set
to d->vcpu[unit_idx*gran] (which is NULL) and passed to 'alloc_udata()',
causing a NULL dereference.
I expanded the loop over 'gran' to handle core-scheduling cases where a
subsequent vCPU fails mid-unit, but as you pointed out, that drops the
whole unit for active domain.
I'll update the patch to check d->is_dying to skip incomplete units
only for dying domains, and have sched_move_domain() fail if an active
domain has missing vCPUs
Furkan
next prev parent reply other threads:[~2026-08-18 7:53 UTC|newest]
Thread overview: 14+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-08-18 6:32 [PATCH 0/2] xen/sched: fix crashes when vcpu creation fails Furkan Caliskan
2026-08-18 6:32 ` [PATCH 1/2] xen/sched: core: skip missing vcpu slots in sched_move_domain() Furkan Caliskan
2026-08-18 7:11 ` Jürgen Groß
2026-08-18 7:53 ` Furkan Çalışkan [this message]
2026-08-18 10:04 ` Andrew Cooper
2026-08-18 10:13 ` Jürgen Groß
2026-08-18 10:35 ` Andrew Cooper
2026-08-18 10:47 ` Juergen Gross
2026-08-18 10:53 ` Jan Beulich
2026-08-18 12:12 ` Furkan Çalışkan
2026-08-18 12:19 ` Jan Beulich
2026-08-18 6:32 ` [PATCH 2/2] xen/sched: core: kill unarmed timers on sched_init_vcpu() failure Furkan Caliskan
2026-08-18 7:23 ` Jürgen Groß
2026-08-18 6:48 ` [PATCH 0/2] xen/sched: fix crashes when vcpu creation fails Jan Beulich
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=1d50520d-68bf-4765-8a13-c7c047580f2e@gmail.com \
--to=frn1furkan10@gmail.com \
--cc=andrew.cooper3@citrix.com \
--cc=dfaggioli@suse.com \
--cc=gwd@xenproject.org \
--cc=jbeulich@suse.com \
--cc=jgross@suse.com \
--cc=xen-devel@lists.xenproject.org \
/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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.