[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] Re: Introduction of stable interface between Xenstore and hypervisor
On 10.09.21 15:22, Jan Beulich wrote: On 09.09.2021 08:27, Juergen Gross wrote:Today Xenstore is using one unstable interface to retrieve the state of a domain (existing, dying). In order to decouple Xenstore further from the hypervisor, a stable interface should be established. This new interface should cover the following functionality: - get the needed state of a domain (existing, dying) - get a unique identifier per domain telling Xenstore that a domid has been reused (today Xenstore could in theory miss this) - provide a way to avoid having to get the state of all domains when a state change of a domain has been signaled (there is only an event "some domain has changed state" today: VIRQ_DOM_EXC) I'm suggesting the following hypervisor modifications: - Addition of a global 64 bit domain sequence counter. This counter will be incremented each time a new domain is created. - Addition of a sequence count to struct domain. It will be set to the value of the new global domain sequence counter when the domain is being created.This looks like an "extended domain ID", which I think we want to avoid unless exposure is extremely limited. Since we can't easily predict what future usage this may have, I would suggest to seed the global with a 15-bit (or wider) random value. I'd like to further suggest considering to not have this be maintained by simply incrementing, to make very clear to consumers that the actual value has no other meaning. This could be done by multiplying by a random odd number larger than 1 (determined at build or boot time). All we want to guarantee is that numbers don't repeat (earlier than a 64-bit value would wrap when linearly incremented). Fine with me. - Addition of a global bitmap with one bit for each possible domid (resulting in a 4 kB page). Each time the state of a domain is changed (domain creation, shutdown, deletion) the related bit is set. When the VIRQ_DOM_EXC event is being registered the bitmap is reset to have the bits set for all existing domains.This page, as I understand from the subsequent item, is not intended to be exposed to the domain running xenstored (or any other one)? Correct. - Addition of a new stable hypercall ("get domain state") returning the following information: + domid of a domain having the bit set in above bitmap + state of that domain (existing, dying) + sequence count of that domain The related bit is reset in the bitmap as a side effect of the call.What I'd like us to consider up front is whether xenstored is going to remain only entity interested in this kind of information. The entire design looks to leverage that there's only a single consumer in the system. Right. I'm just writing some RFC patches, and I have coded this interface to be usable only for the domain having VIRQ_DOM_EXC registered. The alternative (IMO) would have been to expose the domain-state bitmap to Xenstore (and/or other interested parties). I understand the caller would iterate over this hypercall. Is there concern about this iteration never finishing, if e.g. a guest gets rebooted quickly enough? No. As a reboot will always include Xenstore activity, there is no chance for that to happen. Juergen Attachment:
OpenPGP_0xB0DE9DD628BF132F.asc Attachment:
OpenPGP_signature
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |