From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752986AbbCPIMF (ORCPT ); Mon, 16 Mar 2015 04:12:05 -0400 Received: from mail-wg0-f41.google.com ([74.125.82.41]:33870 "EHLO mail-wg0-f41.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1750937AbbCPIL7 (ORCPT ); Mon, 16 Mar 2015 04:11:59 -0400 Date: Mon, 16 Mar 2015 09:11:53 +0100 From: Ingo Molnar To: Andy Lutomirski Cc: Andi Kleen , "H. Peter Anvin" , Al Viro , x86@kernel.org, linux-kernel@vger.kernel.org, Linus Torvalds , Oleg Nesterov , Borislav Petkov , Andy Lutomirski Subject: Re: [PATCH v3 1/2] x86_64,signal: Fix SS handling for signals delivered to 64-bit programs Message-ID: <20150316081153.GA16393@gmail.com> References: <405594361340a2ec32f8e2b115c142df0e180d8e.1426193719.git.luto@kernel.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <405594361340a2ec32f8e2b115c142df0e180d8e.1426193719.git.luto@kernel.org> 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 * Andy Lutomirski wrote: > From: Andy Lutomirski > > The comment in the signal code says that apps can save/restore other > segments on their own. It's true that apps can *save* SS on their > own, but there's no way for apps to restore it: SYSCALL effectively > resets SS to __USER_DS, so any value that user code tries to load > into SS gets lost on entry to sigreturn. > > This recycles two padding bytes in the segment selector area for SS. > > While we're at it, we need a second change to make this useful. If > the signal we're delivering is caused by a bad SS value, saving that > value isn't enough. We need to remove that bad value from the regs > before we try to deliver the signal. Oddly, x32 already got this > right. Note, it's the original i386 code that got this right, not the (relatively new) x32 code. I fixed this in the commit that I applied. Thanks, Ingo