Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1162171AbbKEQUq (ORCPT ); Thu, 5 Nov 2015 11:20:46 -0500 Received: from mx1.redhat.com ([209.132.183.28]:34019 "EHLO mx1.redhat.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1161605AbbKEQUp (ORCPT ); Thu, 5 Nov 2015 11:20:45 -0500 Subject: Re: [PATCH] arm: Use kernel mm when updating section permissions To: Russell King - ARM Linux , Laura Abbott References: <1446685239-28522-1-git-send-email-labbott@fedoraproject.org> <20151105094615.GP8644@n2100.arm.linux.org.uk> Cc: Kees Cook , Catalin Marinas , Will Deacon , linux-arm-kernel@lists.infradead.org, linux-kernel@vger.kernel.org, linux-mm@kvack.org From: Laura Abbott Message-ID: <563B81DA.2080409@redhat.com> Date: Thu, 5 Nov 2015 08:20:42 -0800 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Thunderbird/38.3.0 MIME-Version: 1.0 In-Reply-To: <20151105094615.GP8644@n2100.arm.linux.org.uk> Content-Type: text/plain; charset=windows-1252; format=flowed Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1573 Lines: 37 On 11/05/2015 01:46 AM, Russell King - ARM Linux wrote: > On Wed, Nov 04, 2015 at 05:00:39PM -0800, Laura Abbott wrote: >> Currently, read only permissions are not being applied even >> when CONFIG_DEBUG_RODATA is set. This is because section_update >> uses current->mm for adjusting the page tables. current->mm >> need not be equivalent to the kernel version. Use pgd_offset_k >> to get the proper page directory for updating. > > What are you trying to achieve here? You can't use these functions > at run time (after the first thread has been spawned) to change > permissions, because there will be multiple copies of the kernel > section mappings, and those copies will not get updated. > > In any case, this change will probably break kexec and ftrace, as > the running thread will no longer see the updated page tables. > I think I was hitting that exact problem with multiple copies not getting updated. The section_update code was being called and I was seeing the tables get updated but nothing was being applied when I tried to write to text or check the debugfs page table. The current flow is: rest_init -> kernel_thread(kernel_init) and from that thread mark_rodata_ro. So mark_rodata_ro is always going to happen in a thread. Do we need to update for both init_mm and the first running thread? Thanks, Laura -- 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/