Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S964914AbbD0MtO (ORCPT ); Mon, 27 Apr 2015 08:49:14 -0400 Received: from mail.skyhub.de ([78.46.96.112]:54088 "EHLO mail.skyhub.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S932661AbbD0MtL (ORCPT ); Mon, 27 Apr 2015 08:49:11 -0400 Date: Mon, 27 Apr 2015 14:48:54 +0200 From: Borislav Petkov To: Denys Vlasenko Cc: Andy Lutomirski , Andy Lutomirski , X86 ML , "H. Peter Anvin" , Denys Vlasenko , Linus Torvalds , Brian Gerst , Ingo Molnar , Steven Rostedt , Oleg Nesterov , Frederic Weisbecker , Alexei Starovoitov , Will Drewry , Kees Cook , Linux Kernel Mailing List Subject: Re: [PATCH] x86_64, asm: Work around AMD SYSRET SS descriptor attribute issue Message-ID: <20150427124854.GH6774@pd.tnic> References: <5d120f358612d73fc909f5bfa47e7bd082db0af0.1429841474.git.luto@kernel.org> <20150425211206.GE32099@pd.tnic> <20150427085305.GB6774@pd.tnic> <20150427113506.GG6774@pd.tnic> <553E26C8.3020906@redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline In-Reply-To: <553E26C8.3020906@redhat.com> User-Agent: Mutt/1.5.23 (2014-03-12) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1788 Lines: 42 On Mon, Apr 27, 2015 at 02:08:40PM +0200, Denys Vlasenko wrote: > > ffffffff819ef40c: 48 c1 e1 10 shl $0x10,%rcx > > ffffffff819ef410: 48 c1 f9 10 sar $0x10,%rcx > > ffffffff819ef414: 49 39 cb cmp %rcx,%r11 > > ffffffff819ef417: 0f 85 ff 9c bc ff jne ffffffff815b911c > > This looks strange. opportunistic_sysret_failed label is just a few > instructions below. Why are you getting "ff 9c bc ff" offset in JNE > instead of short jump of 0x5f bytes I see without ALTERNATIVE? Because the replacement instructions are placed far away in the section .altinstr_replacement and since we have relative JMPs, gas generates JMP from that section to opportunistic_sysret_failed. That's why it is negative too. And by looking at this more, I'm afraid even this current version won't work because even after I added recompute_jump() recently which is supposed to fixup the JMPs and even make them smaller, it won't work in this case because it won't detect the JMP as it is the 4th instruction and not the first byte. (And even if, it won't detect it still because we're not looking at conditional JMPs yet, i.e. Jcc). What we could do is something like this instead: jne opportunistic_sysret_failed - 1f 1: so that the offset is correct. Need to experiment with this a bit first though, for the exact placement of the label but it should show the idea. -- Regards/Gruss, Boris. ECO tip #101: Trim your mails when you reply. -- -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/