From mboxrd@z Thu Jan 1 00:00:00 1970 From: Oleg Nesterov Subject: Re: [PATCH 4/4] sigaltstack: allow disabling and re-enabling sas within sighandler Date: Mon, 1 Feb 2016 19:52:23 +0100 Message-ID: <20160201185223.GA21136@redhat.com> References: <56AE3369.2090709@list.ru> <56AE3626.7080706@list.ru> <20160201160625.GA18276@redhat.com> <20160201170958.GA20735@redhat.com> <56AF955D.7060601@list.ru> <20160201180443.GA21064@redhat.com> <56AFA0E2.1030302@list.ru> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: QUOTED-PRINTABLE Return-path: Content-Disposition: inline In-Reply-To: <56AFA0E2.1030302-cmBhpYW9OiY@public.gmane.org> Sender: linux-api-owner-u79uwXL29TY76Z2rM5mHXA@public.gmane.org To: Stas Sergeev Cc: Linux kernel , linux-api-u79uwXL29TY76Z2rM5mHXA@public.gmane.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 List-Id: linux-api@vger.kernel.org Stas, I probably missed something, but I don't understand your concerns= , On 02/01, Stas Sergeev wrote: > > 01.02.2016 21:04, Oleg Nesterov =D0=BF=D0=B8=D1=88=D0=B5=D1=82: > > Yes, and SS_FORCE means "I know what I do", looks very simple. > But to me its not because I don't know what to do with > uc_stack after SS_FORCE is applied. Nothing? restore_sigaltstack() should work as expected? > >I won't argue, but to me it would be better to keep this EPERM if !f= orce. > >Just because we should avoid the incompatible changes if possible. > Ok then. Lets implement SS_FORCE. > What semantic should it have wrt uc_stack? > > sigaltstack(SS_DISABLE | SS_FORCE); > swapcontext(); > sigaltstack(set up new_sas); > rt_sigreturn(); Yes, or 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. > 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 becau= se rt_sigreturn() does restore_sigaltstack() ? I see no problem here... Oleg.