From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-qk0-f198.google.com (mail-qk0-f198.google.com [209.85.220.198]) by kanga.kvack.org (Postfix) with ESMTP id D76956B0292 for ; Mon, 2 Jul 2018 18:23:47 -0400 (EDT) Received: by mail-qk0-f198.google.com with SMTP id 123-v6so20042897qkg.8 for ; Mon, 02 Jul 2018 15:23:47 -0700 (PDT) Received: from mx1.redhat.com (mx3-rdu2.redhat.com. [66.187.233.73]) by mx.google.com with ESMTPS id c18-v6si4883569qtc.33.2018.07.02.15.23.46 for (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Mon, 02 Jul 2018 15:23:47 -0700 (PDT) Reply-To: crecklin@redhat.com Subject: Re: [PATCH v3] add param that allows bootline control of hardened usercopy References: <1530101255-13988-1-git-send-email-crecklin@redhat.com> <5506a72f-99ac-b47c-4ace-86c43b17b5c5@redhat.com> <0076b929-4785-0665-0e08-789c504f6b78@redhat.com> From: Christoph von Recklinghausen Message-ID: <5f21bb3c-0165-38d1-b68b-96d53c2b70f4@redhat.com> Date: Mon, 2 Jul 2018 18:23:44 -0400 MIME-Version: 1.0 In-Reply-To: Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit Content-Language: en-US Sender: owner-linux-mm@kvack.org List-ID: To: Kees Cook Cc: Laura Abbott , Paolo Abeni , LKML , Linux-MM , Kernel Hardening , Josh Poimboeuf , Peter Zijlstra On 07/02/2018 04:54 PM, Kees Cook wrote: > On Mon, Jul 2, 2018 at 11:55 AM, Christoph von Recklinghausen > wrote: >> On 07/02/2018 02:43 PM, Kees Cook wrote: >>> On Sat, Jun 30, 2018 at 1:43 PM, Christoph von Recklinghausen >>> wrote: >>>> The last issue I'm chasing is build failures on ARCH=m68k. The error is >>>> atomic_read and friends needed by the jump label code not being found. >>>> The config has CONFIG_BROKEN_ON_SMP=y, so the jump label calls I added >>>> will only be made #ifndef CONFIG_BROKEN_ON_SMP. Do you think that's >>>> worth a mention in the blurb that's added to >>>> Documentation/admin-guide/kernel-parameters.txt? >>> Uhm, that's weird -- I think the configs on m68k need fixing then? I >>> don't want to have to sprinkle that ifdef in generic code. >>> >>> How are other users of static keys and jump labels dealing with m68k weirdness? >>> >> There's also CONFIG_JUMP_LABEL which is defined in x86_64 but not >> defined in the m68k configs. I'll use that instead. In hindsight I >> should have spotted that but didn't. > I think what I mean is that jump labels should always work. There > shouldn't be a need to #ifdef the common usercopy code. i.e. > include/linux/jump_label.h should work on all architectures already. I > see HAVE_JUMP_LABEL tests there, for example: > > #if defined(CC_HAVE_ASM_GOTO) && defined(CONFIG_JUMP_LABEL) > # define HAVE_JUMP_LABEL > #endif > > Other core code uses static keys without this; what is the failing combination? The complaints were when there was jump_label code in include/linux/thread_info.h. Now that the code is isolated to mm/usercopy.c, it successfully builds for m68k with mention of CONFIG_JUMP_LABEL and CONFIG_SMP_BROKEN removed. I'll send out a new patch in the morning after I test some more. Thanks, Chris > -Kees >