Re: Race betwen the NMI handler and the RTC clock in practially allkernels II

From: linux-os
Date: Tue Oct 26 2004 - 07:04:59 EST


On Mon, 25 Oct 2004, Corey Minyard wrote:

Maciej W. Rozycki wrote:

On Mon, 25 Oct 2004, Andi Kleen wrote:


So it's impossible to check the old value. The original code is the only
way to do this (if it's even needed, Intel also doesn't say anything
about this bit being a flip-flop). Only possible change would be to write an alternative index.


You can't read the old value, but you can have a shadow variable written
every time the real index is written. Since NMIs are not preemptible and
this is a simple producer-consumer access, no mutex around accesses to the
variable is needed.


Yes it is!

Task 1 NMI
------- ----
Sets index register
Sets index register to something else
Reads wrong value

The NMI, by definition can't be masked so there is nothing that
can be done with interrupts to prevent task 1 from getting
the wrong value except spin-locks.

Anybody who accesses that shared device must use that device's
spin-lock and the lock must be obtained prior to caching the
shadow value.


Maciej

If you look at my patch, it does create a shadow index.

And you need a mutex for SMP systems. If one processor is handling an NMI, another processor may still be accessing the device.

The complexity comes because the claiming of the lock, the CPU that owns the lock, and the index has to be atomic because the NMI handler has to know all these things when the lock is claimed.

-Corey

Cheers,
Dick Johnson
Penguin : Linux version 2.6.9 on an i686 machine (5537.79 GrumpyMips).
98.36% of all statistics are fiction.
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/