From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753561AbcBAUlZ (ORCPT ); Mon, 1 Feb 2016 15:41:25 -0500 Received: from mx1.redhat.com ([209.132.183.28]:36342 "EHLO mx1.redhat.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S932119AbcBAUlW (ORCPT ); Mon, 1 Feb 2016 15:41:22 -0500 Date: Mon, 1 Feb 2016 21:41:14 +0100 From: Oleg Nesterov To: Stas Sergeev Cc: Linux kernel , linux-api@vger.kernel.org, Andy Lutomirski , Ingo Molnar , Peter Zijlstra , Andrew Morton , "Amanieu d'Antras" , Richard Weinberger , Tejun Heo , "Kirill A. Shutemov" , Jason Low , Heinrich Schuchardt , Andrea Arcangeli , Konstantin Khlebnikov , Josh Triplett , "Eric W. Biederman" , Aleksa Sarai , Paul Moore , Palmer Dabbelt , Vladimir Davydov Subject: Re: [PATCH 4/4] sigaltstack: allow disabling and re-enabling sas within sighandler Message-ID: <20160201204114.GA21638@redhat.com> References: <56AE3626.7080706@list.ru> <20160201160625.GA18276@redhat.com> <20160201170958.GA20735@redhat.com> <56AF955D.7060601@list.ru> <20160201180443.GA21064@redhat.com> <56AFA0E2.1030302@list.ru> <20160201185223.GA21136@redhat.com> <56AFAB9D.4070007@list.ru> <20160201192936.GA21214@redhat.com> <56AFB604.4010008@list.ru> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: <56AFB604.4010008@list.ru> 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 02/01, Stas Sergeev wrote: > > 01.02.2016 22:29, Oleg Nesterov пишет: > >>> > >>> sigaltstack({ DISABLE | FORCE}, &old_ss); > >>> swapcontext(); > >>> sigaltstack(&old_ss, NULL); > >>> rt_sigreturn(); > >>> > >>>and if you are going to return from sighandler you do not even need the 2nd > >>>sigaltstack(), you can rely on sigreturn. > >>Yes, that's what I do in my app already. > >>But its only there when SA_SIGINFO is used. > >Hmm. how this connects to SA_SIGINFO ? > AFAIK without SA_SIGINFO you get sigreturn instead of > rt_sigreturn, which doesn't seem to do restore_altstack(). > Or am I wrong? > > Hmm: > > /* Set up the stack frame */ > if (is_ia32_frame()) { > if (ksig->ka.sa.sa_flags & SA_SIGINFO) > return ia32_setup_rt_frame(usig, ksig, cset, regs); > else > return ia32_setup_frame(usig, ksig, cset, regs); Ah, ia32... So this is even more confusing. > >>>>What's at the end? Do we want a surprise for the user > >>>>that he's new_sas got ignored? > >>>Can't understand.... do you mean "set up new_sas" will be ignored because > >>>rt_sigreturn() does restore_sigaltstack() ? I see no problem here... > >>Allowing the modifications that were previously EPERMed > >>but will now be silently ignored, may be seen as a problem. > >>But if it isn't - fine, lets code that. > >Still can't understand. The 2nd sigaltstack() is no longer EPERMed because > >application used SS_FORCED before that and disabled altstack. > > > >And it is not ignored, it actually changes alt stack. Until we return from > >handler. > Before we return, the signals are usually blocked. > So whatever is after return is most important. Yes, but I still can't understand your "silently ignored". At least how does this differ from the case when a non-SA_ONSTACK signal handler does sigaltstack() and then rt_sigreturn() restores the old stack. Oleg.