From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754634AbaIDR13 (ORCPT ); Thu, 4 Sep 2014 13:27:29 -0400 Received: from cam-admin0.cambridge.arm.com ([217.140.96.50]:61357 "EHLO cam-admin0.cambridge.arm.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751449AbaIDR12 (ORCPT ); Thu, 4 Sep 2014 13:27:28 -0400 Date: Thu, 4 Sep 2014 18:27:48 +0100 From: Will Deacon To: Kees Cook Cc: "linux-kernel@vger.kernel.org" , Rabin Vincent , Laura Abbott , Rob Herring , Leif Lindholm , "msalter@redhat.com" , Liu hua , Nikolay Borisov , Nicolas Pitre , Doug Anderson , Jason Wessel , Catalin Marinas , Russell King - ARM Linux , "linux-arm-kernel@lists.infradead.org" Subject: Re: [PATCH v5 3/8] arm: fixmap: implement __set_fixmap() Message-ID: <20140904172748.GO7156@arm.com> References: <1409781429-27593-1-git-send-email-keescook@chromium.org> <1409781429-27593-4-git-send-email-keescook@chromium.org> <20140904170349.GL7156@arm.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.5.23 (2014-03-12) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Thu, Sep 04, 2014 at 06:23:42PM +0100, Kees Cook wrote: > On Thu, Sep 4, 2014 at 10:03 AM, Will Deacon wrote: > > Hi Kees, > > > > On Wed, Sep 03, 2014 at 10:57:04PM +0100, Kees Cook wrote: > >> This is used from set_fixmap() and clear_fixmap() via asm-generic/fixmap.h. > >> Also makes sure that the fixmap allocation fits into the expected range. > >> > >> Based on patch by Rabin Vincent. > > > > [...] > > > >> +void __set_fixmap(enum fixed_addresses idx, phys_addr_t phys, pgprot_t prot) > >> +{ > >> + unsigned long vaddr = __fix_to_virt(idx); > >> + pte_t *pte = pte_offset_kernel(pmd_off_k(vaddr), vaddr); > >> + > >> + /* Make sure fixmap region does not exceed available allocation. */ > >> + BUILD_BUG_ON(FIXADDR_START + (__end_of_fixed_addresses * PAGE_SIZE) > > >> + FIXADDR_END); > >> + BUG_ON(idx >= __end_of_fixed_addresses); > >> + > >> + if (pgprot_val(prot)) > >> + set_pte_at(NULL, vaddr, pte, > >> + pfn_pte(phys >> PAGE_SHIFT, prot)); > >> + else > >> + pte_clear(NULL, vaddr, pte); > >> + > >> + /* > >> + * Given the potential a15 tlbi errata, we can only do tlb flushes > >> + * with interrupts disabled. Callers must have taken care of this. > >> + */ > >> + WARN_ON_ONCE(!irqs_disabled()); > >> + flush_tlb_kernel_range(vaddr, vaddr + PAGE_SIZE); > > > > Aha, this explains why we were confusing each other! The issue is that > > interrupts must be *enabled*, so this code does the exact opposite of > > what we need. > > > > I think this got lost in a sea of double negatives during the last round > > of review. > > Ah! If this is the case, perhaps we can get away with > local_flush_tlb_kernel_range() then? That's a bit tricky, since you need to ensure that preemption is disabled until the mapping is put back like it was. Will