From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S932626AbcCCQaD (ORCPT ); Thu, 3 Mar 2016 11:30:03 -0500 Received: from mail.skyhub.de ([78.46.96.112]:42934 "EHLO mail.skyhub.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S932521AbcCCQaA (ORCPT ); Thu, 3 Mar 2016 11:30:00 -0500 Date: Thu, 3 Mar 2016 17:29:52 +0100 From: Borislav Petkov To: "H. Peter Anvin" Cc: Brian Gerst , X86 ML , LKML , Tom Lendacky Subject: Re: [RFC PATCH] x86: Make sure verify_cpu has a good stack Message-ID: <20160303162952.GE24621@pd.tnic> References: <20160302195053.GG8362@pd.tnic> <56D75C8D.90800@zytor.com> <20160302214654.GK8362@pd.tnic> <56D7612A.4080107@zytor.com> <20160302220954.GL8362@pd.tnic> <56D76527.5020806@zytor.com> <20160302222842.GM8362@pd.tnic> <20160303122836.GC24621@pd.tnic> <395B06E1-314F-4F8A-9C89-57F8E4A61B3D@zytor.com> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline In-Reply-To: <395B06E1-314F-4F8A-9C89-57F8E4A61B3D@zytor.com> User-Agent: Mutt/1.5.24 (2015-08-30) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Thu, Mar 03, 2016 at 07:26:06AM -0800, H. Peter Anvin wrote: > Why -8? GLOBAL(stack_start) .quad init_thread_union+THREAD_SIZE-8 ^^^ But I don't see why it needed the -8 then. It came with a conglomerate dump in 2002: commit af53c7a2c81399b805b6d4eff887401a5e50feef Author: Andi Kleen Date: Fri Apr 19 20:23:17 2002 -0700 [PATCH] x86-64 architecture specific sync for 2.5.8 - /* Setup the first kernel stack (this instruction is modified by smpboot) */ - .byte 0x48, 0xb8 /* movq *init_rsp,%rax */ -init_rsp: - .quad init_thread_union+THREAD_SIZE - movq %rax, %rsp ... - - /* SMP bootup changes this */ + /* SMP bootup changes these two */ .globl initial_code initial_code: .quad x86_64_start_kernel + .globl init_rsp +init_rsp: + .quad init_thread_union+THREAD_SIZE-8 + --- But since we decrement first and then copy to stack ptr when we push, I don't see why we need the -8. Do you have a better clue? -- Regards/Gruss, Boris. ECO tip #101: Trim your mails when you reply.