lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <44EBB97B.9030707@vmware.com>
Date:	Tue, 22 Aug 2006 19:12:11 -0700
From:	Zachary Amsden <zach@...are.com>
To:	Rusty Russell <rusty@...tcorp.com.au>
Cc:	Andi Kleen <ak@...e.de>, Andrew Morton <akpm@...l.org>,
	virtualization@...ts.osdl.org, Chris Wright <chrisw@...s-sol.org>,
	Linux Kernel Mailing List <linux-kernel@...r.kernel.org>,
	Arjan van de Ven <arjan@...radead.org>
Subject: Re: [PATCH] paravirt.h

Rusty Russell wrote:
> On Tue, 2006-08-22 at 15:02 -0700, Zachary Amsden wrote:
>   
>> Well, I don't think anything is sufficient for a preemptible kernel.  I 
>> think that's just plain not going to work.  You could have a kernel 
>> thread that got preempted in a paravirt-op patch point
>>     
>
> Patching over the 6 native cases is actually not that bad: they're
> listed below (each one has trailing noops).
>
> 	cli
> 	sti
> 	push %eax; popf
> 	pushf; pop %eax
> 	pushf; pop %eax; cli
> 	iret
> 	sti; sysexit
>
> If you're at the first insn you don't have to do anything, since you're
> about to replace that code.  If you're in the noops, you can just
> advance EIP to the end.  You can't be preempted between sti and sysexit,
> since we only use that when interrupts are already disabled.  And
> reversing either "push %eax" or "pushf; pop %eax" is fairly easy.
>
> Depending on your hypervisor, you might need to catch those threads who
> are currently doing the paravirt_ops function calls, as well.  This
> introduces more (and more complex) cases.
>   

Yes, but the problem gets far worse.  You don't need to worry about just 
those.  You need to worry about all that C code that runs in the native 
paravirt-ops as well, because you could have preempted it in the middle 
of a callout.  And the paravirt_ops code isn't isolated in a separate 
section (though it well could be).

Zach
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ