Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752912AbbGWXki (ORCPT ); Thu, 23 Jul 2015 19:40:38 -0400 Received: from mail-lb0-f182.google.com ([209.85.217.182]:36750 "EHLO mail-lb0-f182.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752218AbbGWXkf (ORCPT ); Thu, 23 Jul 2015 19:40:35 -0400 MIME-Version: 1.0 In-Reply-To: References: <7bfde005b84a90a83bf668a320c7d4ad1b940065.1437592883.git.luto@kernel.org> <20150723102434.GA2929@1wt.eu> From: Andy Lutomirski Date: Thu, 23 Jul 2015 16:40:14 -0700 Message-ID: Subject: Re: [PATCH v3 2/3] x86/ldt: Make modify_ldt optional To: Kees Cook Cc: Willy Tarreau , Andy Lutomirski , Peter Zijlstra , Steven Rostedt , "security@kernel.org" , X86 ML , Borislav Petkov , Sasha Levin , LKML , Konrad Rzeszutek Wilk , Boris Ostrovsky , Andrew Cooper , Jan Beulich , xen-devel Content-Type: text/plain; charset=UTF-8 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 2222 Lines: 63 On Thu, Jul 23, 2015 at 4:36 PM, Kees Cook wrote: > On Thu, Jul 23, 2015 at 3:24 AM, Willy Tarreau wrote: >> #ifdef CONFIG_SMP >> static void flush_ldt(void *current_mm) >> { >> @@ -254,6 +260,9 @@ asmlinkage int sys_modify_ldt(int func, void __user *ptr, >> { >> int ret = -ENOSYS; >> >> + if (!sysctl_modify_ldt) >> + return ret; >> + >> switch (func) { >> case 0: >> ret = read_ldt(ptr, bytecount); >> diff --git a/kernel/sysctl.c b/kernel/sysctl.c >> index 2082b1a..60270c6 100644 >> --- a/kernel/sysctl.c >> +++ b/kernel/sysctl.c >> @@ -111,6 +111,9 @@ extern int sysctl_nr_open_min, sysctl_nr_open_max; >> #ifndef CONFIG_MMU >> extern int sysctl_nr_trim_pages; >> #endif >> +#ifdef CONFIG_X86 >> +extern int sysctl_modify_ldt; >> +#endif >> >> /* Constants used for minimum and maximum */ >> #ifdef CONFIG_LOCKUP_DETECTOR >> @@ -962,6 +965,13 @@ static struct ctl_table kern_table[] = { >> .mode = 0644, >> .proc_handler = proc_dointvec, >> }, >> + { >> + .procname = "modify_ldt", >> + .data = &sysctl_modify_ldt, >> + .maxlen = sizeof(int), >> + .mode = 0644, >> + .proc_handler = proc_dointvec, >> + }, >> #endif >> #if defined(CONFIG_MMU) >> { > > I've been pondering something like this that is even MORE generic, for > any syscall. Something like a "syscalls" directory under > /proc/sys/kernel, with 1 entry per syscall. "0" is "available", "1" is > disabled, and "-1" disabled until next boot. > It might want to be /proc/sys/kernel/syscalls/[abi]/[name], possibly with more than just those options. We might want "disabled, returns ENOSYS", "disabled, returns EPERM", and a lock bit. On x86 at least, the implementation's easy -- we can just poke the syscall table. --Andy -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/