From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752010AbdF3Mne (ORCPT ); Fri, 30 Jun 2017 08:43:34 -0400 Received: from out02.mta.xmission.com ([166.70.13.232]:39512 "EHLO out02.mta.xmission.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751545AbdF3Mna (ORCPT ); Fri, 30 Jun 2017 08:43:30 -0400 From: ebiederm@xmission.com (Eric W. Biederman) To: Cc: Andy Lutomirski , Linus Torvalds , Al Viro , Oleg Nesterov , Andrei Vagin , Thomas Gleixner , Greg KH , Andrey Vagin , Serge Hallyn , Pavel Emelyanov , Cyrill Gorcunov , Peter Zijlstra , Willy Tarreau , , , Linux Containers , Michael Kerrisk References: <87lgot2loq.fsf@xmission.com> <87zid90vye.fsf_-_@xmission.com> <20170615225426.GP31671@ZenIV.linux.org.uk> <87poe4zrs1.fsf@xmission.com> <87poe3vsa9.fsf@xmission.com> <87h8zfua59.fsf@xmission.com> <87r2yjsuwl.fsf@xmission.com> <20170616191602.GA10675@1wt.eu> Date: Fri, 30 Jun 2017 07:36:16 -0500 In-Reply-To: <20170616191602.GA10675@1wt.eu> (Willy Tarreau's message of "Fri, 16 Jun 2017 21:16:02 +0200") Message-ID: <87bmp5y7nj.fsf_-_@xmission.com> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/25.1 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain X-XM-SPF: eid=1dQvGg-0002Rg-EJ;;;mid=<87bmp5y7nj.fsf_-_@xmission.com>;;;hst=in02.mta.xmission.com;;;ip=67.3.213.87;;;frm=ebiederm@xmission.com;;;spf=neutral X-XM-AID: U2FsdGVkX189InskUVqYrr8FgjztW0oJ7sNhWAKGj4Q= X-SA-Exim-Connect-IP: 67.3.213.87 X-SA-Exim-Mail-From: ebiederm@xmission.com X-Spam-Report: * -1.0 ALL_TRUSTED Passed through trusted hosts only via SMTP * 1.5 XMNoVowels Alpha-numberic number with no vowels * 0.0 TVD_RCVD_IP Message was received from an IP address * 0.8 BAYES_50 BODY: Bayes spam probability is 40 to 60% * [score: 0.5000] * -0.0 DCC_CHECK_NEGATIVE Not listed in DCC * [sa01 1397; Body=1 Fuz1=1 Fuz2=1] X-Spam-DCC: XMission; sa01 1397; Body=1 Fuz1=1 Fuz2=1 X-Spam-Combo: *; X-Spam-Relay-Country: X-Spam-Timing: total 1046 ms - load_scoreonly_sql: 0.05 (0.0%), signal_user_changed: 3.0 (0.3%), b_tie_ro: 2.1 (0.2%), parse: 1.55 (0.1%), extract_message_metadata: 7 (0.7%), get_uri_detail_list: 4.4 (0.4%), tests_pri_-1000: 8 (0.8%), tests_pri_-950: 2.1 (0.2%), tests_pri_-900: 1.74 (0.2%), tests_pri_-400: 50 (4.7%), check_bayes: 47 (4.5%), b_tokenize: 22 (2.1%), b_tok_get_all: 12 (1.1%), b_comp_prob: 6 (0.6%), b_tok_touch_all: 3.9 (0.4%), b_finish: 0.88 (0.1%), tests_pri_0: 944 (90.2%), check_dkim_signature: 0.99 (0.1%), check_dkim_adsp: 4.7 (0.5%), tests_pri_500: 6 (0.6%), rewrite_mail: 0.00 (0.0%) Subject: [PATCH 0/8] signal: Fix sending signals with siginfo X-Spam-Flag: No X-SA-Exim-Version: 4.2.1 (built Thu, 05 May 2016 13:38:54 -0600) X-SA-Exim-Scanned: Yes (on in02.mta.xmission.com) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Today sending a signal with rt_sigqueueinfo and receving it on a signalfd does not work reliably. The issue is that reading a signalfd instead of returning a siginfo returns a signalfd_siginfo and the kernel must convert from one to the other. The kernel does not currently have the code to deduce which union members of struct siginfo are in use. In this patchset I fix that by introducing a new function siginfo_layout that can look at a siginfo and report which union member of struct nnsiginfo is in use. Before that I clean up how we populate struct siginfo. The siginfo structure has two key members si_signo and si_code. Some si_codes are signal specific and for those it takes si_signo and si_code to indicate the members of siginfo that are valid. The rest of the si_code values are signal independent like SI_USER, SI_KERNEL, SI_QUEUE, and SI_TIMER and only si_code is needed to indicate which members of siginfo are valid. At least that is how POSIX documents them, and how common sense would indicate they should function. In practice we have been rather sloppy about maintaining the ABI in linux and we have some exceptions. We have a couple of buggy architectures that make SI_USER mean something different when combined with SIGFPE or SIGTRAP. Worse we have fcntl(F_SETSIG) which results in the si_codes POLL_IN, POLL_OUT, POLL_MSG, POLL_ERR, POLL_PRI, POLL_HUP being sent with any arbitrary signal, while the values are in a range that overlaps the signal specific si_codes. Thankfully the ambiguous cases are for things no sane persion would do that so we can rectify the situtation. AKA no one cares so we won't cause a regression fixing it. As part of fixing this I stop leaking the __SI_xxxx codes to userspace and stop storing them in the high 16bits of si_code. Making the kernel code fundamentally simpler. We have already confirmed that the one application that would see this difference in kernel behavior CRIU won't be affected by this change as it copies values verbatim from one kernel interface to another. Eric Eric W. Biederman (8): signal/alpha: Document a conflict with SI_USER for SIGTRAP signal/ia64: Document a conflict with SI_USER with SIGFPE signal/sparc: Document a conflict with SI_USER with SIGFPE signal/mips: Document a conflict with SI_USER with SIGFPE signal/testing: Don't look for __SI_FAULT in userspace signal/x86: Fix SIGSYS handling in copy_siginfo_to_user32 fcntl: Don't use ambiguous SIG_POLL si_codes signal: Remove kernel interal si_code magic arch/alpha/include/uapi/asm/siginfo.h | 5 ++ arch/alpha/kernel/traps.c | 6 +- arch/arm64/kernel/signal32.c | 23 +++--- arch/blackfin/include/uapi/asm/siginfo.h | 30 +++++--- arch/frv/include/uapi/asm/siginfo.h | 2 +- arch/ia64/include/uapi/asm/siginfo.h | 19 ++--- arch/ia64/kernel/signal.c | 17 ++--- arch/ia64/kernel/traps.c | 4 +- arch/mips/include/uapi/asm/siginfo.h | 9 ++- arch/mips/kernel/signal32.c | 19 +++-- arch/mips/kernel/traps.c | 2 +- arch/parisc/kernel/signal32.c | 31 ++++---- arch/powerpc/kernel/signal_32.c | 20 +++-- arch/s390/kernel/compat_signal.c | 32 ++++---- arch/sparc/include/uapi/asm/siginfo.h | 7 +- arch/sparc/kernel/signal32.c | 16 ++-- arch/sparc/kernel/traps_32.c | 2 +- arch/sparc/kernel/traps_64.c | 2 +- arch/tile/include/uapi/asm/siginfo.h | 4 +- arch/tile/kernel/compat_signal.c | 18 ++--- arch/tile/kernel/traps.c | 1 - arch/x86/kernel/signal_compat.c | 22 +++--- fs/fcntl.c | 13 +++- fs/signalfd.c | 22 ++---- include/asm-generic/siginfo.h | 22 +++--- include/linux/signal.h | 8 ++ include/uapi/asm-generic/siginfo.h | 104 ++++++++++++-------------- kernel/compat.c | 2 - kernel/exit.c | 6 +- kernel/ptrace.c | 6 +- kernel/signal.c | 72 +++++++++++++----- tools/testing/selftests/x86/mpx-mini-test.c | 3 +- tools/testing/selftests/x86/protection_keys.c | 13 ++-- 33 files changed, 302 insertions(+), 260 deletions(-)