[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] Re: [Xen-devel] Woes of NMIs and MCEs, and possibly how to fix
On 30/11/12 17:34, Andrew Cooper wrote: Hello, Yesterday, Tim and myself spent a very long time in front of a whiteboard trying to develop a fix which covered all the problems, and sadly it is very hard. We managed to possibly come up with a long solution which we think has no race conditions, but relies on very large sections of reentrant code which cant use the stack or trash registers. As such, is it is not practical at all (assuming that any of us could actually code it) As a result, I thought instead that I would outline all the issues we currently face. We can then: * Decide which issues need fixing * Decide which issues need to at least be detected and crash gracefully * Decide which issues we are happy (or perhaps at least willing, if not happy) to ignore So, the issues are as follows. (I have tried to list them in a logical order, with 1 individual problem per number, but please do point out if I have missed/miss-attributed entries) 1) Faults on the NMI path will re-enable NMIs before the handler returns, leading to reentrant behaviour. We should audit the NMI path to try and remove any needless cases which might fault, but getting a fault-free path will be hard (and is not going so solve the reentrant behaviour itself). What sort of faults are we expecting on the NMI path? Surely the trap handler isn't paged out? Other faults would be that the code is cause GP fault or illegal instructions, divide by zero or similar - these should all cause hypervisor panic anyways, surely? I'm sure I've missed something really important here, but I don't really see what faults we can expect to see within the NMI handler, that are "recoverable". 2) Faults on the MCE path will re-enable NMIs, as will the iret of the MCE itself if an MCE interrupts an NMI. The same questions apply as to #1 (just replace NMI with MCE) SMM is a messy thing that can interfere with most things in a system. We will have to rely on the BIOS developers to not mess up here. We can't do anything else in our code (on AMD hardware, in a HVM guest you could trap SMI as a VMEXIT, and then "deal with it in a container", but that doesn't fix SMI that happen whilst in the hypervisor, or in a PV kernel, so doesn't really help much).3) SMM mode executing an iret will re-enable NMIs. There is nothing we can do to prevent this, and as an SMI can interrupt NMIs and MCEs, no way to predict if/when it may happen. The best we can do is accept that it might happen, and try to deal with the after effects. Surely both 4 & 5 are "bad guest behaviour", and whilst it's a "nice to have" to catch that, it's no different from running on bare metal doing daft things with vectors or writing code that doesn't behave at all "friendly". (4 is only available to Xen developers, which we hope are most of the time sane enough not to try these crazy things in a "live" system that matters). 5 is only available if you have pass through enabled. I don't think either is a particularly likely cause of real, in the field, problems.4) "Fake NMIs" can be caused by hardware with access to the INTR pin (very unlikely in modern systems with the LAPIC supporting virtual wire mode), or by software executing an `int $0x2`. This can cause the NMI handler to run on the NMI stack, but without the normal hardware NMI cessation logic being triggered. 5) "Fake MCEs" can be caused by software executing `int $0x18`, and by any MSI/IOMMU/IOAPIC programmed to deliver vector 0x18. Normally, this could only be caused by a bug in Xen, although it is also possible on a system with out interrupt remapping. (Where the host administrator has accepted the documented security issue, and decided still to pass-though a device to a trusted VM, and the VM in question has a buggy driver for the passed-through hardware) That said, if it's a trivial fix on top of something that fixes the other problems mentioned, I'm OK with that being added. From what I understand, the purpose of this bit is really to ensure that any data needed from the MCE status registers has been fetched before the processor issues another MCE - otherwise you have a big race of "what data are we reading, and which of the multiple, in short succession, MCEs does this belong to. If you get two MCEs in such a short time that the MCE handler doesn't have time to gather the data from the status registers, it's likely that the machine isn't going to do very well for much longer anyways. Now, if we have a common stack, we should not reset the MCIP bit until it is time to return from the MCE handler - ideally on the last instruction before that, but that may be a little difficult to achieve, seeing as at that point, no registers will be available [as we're restoring those to return back to previous context], but something close to that should make for a very minimal (but admittedly still existing) window for a race. It is questionable if the MCE logic and processor trapping mechanism will react quickly enough to the MCIP bit being set, without getting to the iret [or whatever instruction is ending the handler]. If it does, then we die. It is not much different from the case where a MCE happens while the MCIP bit is set, which will cause a processor shutdown - that's a reboot for anything with a "PC compatible chipset", as CPU shutdown is pretty much a useless dead state for the processor, and the chipset therefore pulls the reset pin as soon as this state is detected.6) Because of interrupt stack tables, real NMIs/MCEs can race with their fake alternatives, where the real interrupt interrupts the fake one and corrupts the exception frame of the fake one, loosing the original context to return to. (This is one of the two core problem of reentrancy with NMIs and MCEs) 7) Real MCEs can race with each other. If two real MCEs occur too close together, the processor shuts down (We cant avoid this). However, there is large race condition between the MCE handler clearing the MCIP bit of IA32_MCG_STATUS and the handler returning during which a new MCE can occur and the exception frame will be corrupted. The solution to this bug is to call the nmi handler either via the INT 2 instruction or via a call to do_nmi() or something similar. There are not many other options, and code to fix this has been posted a couple of weeks ago. No, it's not completely "safe", but it's a whole lot better than the current non-working code. And that applies regardless of other issues with MCE and NMI handling.In addition to the above issues, we have two NMI related bugs in Xen which need fixing (which shall be part of the series which fixes the above) 8) VMEXIT reason NMI on Intel calls self_nmi() while NMIs are latched, causing the PCPU to fall into loop of VMEXITs until the VCPU timeslice has expired, at which point the return-to-guest path decides to schedule instead of resuming the guest. That should also be relatively easy to fix, either by actually using an IRET at the end of NMI handler (and using the "INT 2" solution above), or by making a fake stackframe for the "next instruction after IRET" on the stack, and then performing an IRET.9) The NMI handler when returning to ring3 will leave NMIs latched, as it uses the sysret path. As for 1 possible solution which we cant use: If it were not for the sysret stupidness[1] of requiring the hypervisor to move to the guest stack before executing the `sysret` instruction, we could do away with the stack tables for NMIs and MCEs alltogether, and the above crazyness would be easy to fix. However, the overhead of always using iret to return to ring3 is not likely to be acceptable, meaning that we cannot "fix" the problem by discarding interrupt stacks and doing everything properly on the main hypervisor stack. Looking at the above problems, I believe there is a solution if we are willing to ignore the problem to do with SMM re-enabling NMIs, and if we are happy to crash gracefully when mixes of NMIs and MCEs interrupt each other and trash their exception frames (in situations were we could technically fix up correctly), which is based on the Linux NMI solution. As questions to the community - have I missed, or misrepresented any points above which might perhaps influence the design of the solution? I think the list is complete, but would not be supprised if there is a case still not considered yet. ~Andrew [1] In an effort to prevent a flamewar with my comment, the situation we find outself in now is almost certainly the result of unforseen interactions of individual features, but we are left to pick up the many pieces in way which cant completely be solved. Happy to have my comments completely shot down into little bits, but I'm worrying that we're looking to solve a problem that doesn't actually need solving - at least as long as the code in the respective handlers are "doing the right thing", and if that happens to be broken, then we should fix THAT, not build lots of extra code to recover from such a thing. -- Mats _______________________________________________ Xen-devel mailing list Xen-devel@xxxxxxxxxxxxx http://lists.xen.org/xen-devel
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |