lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <20200710053850.GA27019@infradead.org>
Date:   Fri, 10 Jul 2020 06:38:50 +0100
From:   Christoph Hellwig <hch@...radead.org>
To:     Mike Rapoport <rppt@...ux.ibm.com>
Cc:     Palmer Dabbelt <palmer@...belt.com>, mark.rutland@....com,
        steve@....org, davidgow@...gle.com, catalin.marinas@....com,
        linus.walleij@...aro.org,
        Palmer Dabbelt <palmerdabbelt@...gle.com>, elver@...gle.com,
        glider@...gle.com, willy@...radead.org, zong.li@...ive.com,
        mchehab+samsung@...nel.org, linux-riscv@...ts.infradead.org,
        alex.shi@...ux.alibaba.com, will@...nel.org,
        dan.j.williams@...el.com, linux-arch@...r.kernel.org,
        uwe@...ine-koenig.org, alex@...ti.fr, takahiro.akashi@...aro.org,
        paulmck@...nel.org, masahiroy@...nel.org, linux@...linux.org.uk,
        krzk@...nel.org, ardb@...nel.org, bgolaszewski@...libre.com,
        kernel-team@...roid.com, pmladek@...e.com, zaslonko@...ux.ibm.com,
        aou@...s.berkeley.edu, keescook@...omium.org,
        Arnd Bergmann <arnd@...db.de>, rostedt@...dmis.org,
        broonie@...nel.org, matti.vaittinen@...rohmeurope.com,
        gregory.0xf0@...il.com, Paul Walmsley <paul.walmsley@...ive.com>,
        tglx@...utronix.de, andriy.shevchenko@...ux.intel.com,
        gxt@....edu.cn, linux-arm-kernel@...ts.infradead.org,
        rdunlap@...radead.org, Nick Desaulniers <ndesaulniers@...gle.com>,
        linux-kernel@...r.kernel.org, mcgrof@...nel.org,
        james.morse@....com, mhiramat@...nel.org,
        akpm@...ux-foundation.org, davem@...emloft.net
Subject: Re: [PATCH 1/5] lib: Add a generic version of devmem_is_allowed()

On Thu, Jul 09, 2020 at 11:49:21PM +0300, Mike Rapoport wrote:
> > +#ifndef CONFIG_GENERIC_DEVMEM_IS_ALLOWED
> > +extern int devmem_is_allowed(unsigned long pfn);
> > +#endif

Nit: no need for the extern here.

> > +config GENERIC_LIB_DEVMEM_IS_ALLOWED
> > +	bool
> > +	select ARCH_HAS_DEVMEM_IS_ALLOWED
> 
> This seems to work the other way around from the usual Kconfig chains.
> In the most cases ARCH_HAS_SOMETHING selects GENERIC_SOMETHING.
> 
> I believe nicer way would be to make 
> 
> config STRICT_DEVMEM
> 	bool "Filter access to /dev/mem"
> 	depends on MMU && DEVMEM
> 	depends on ARCH_HAS_DEVMEM_IS_ALLOWED || GENERIC_LIB_DEVMEM_IS_ALLOWED
> 
> config GENERIC_LIB_DEVMEM_IS_ALLOWED
> 	bool
> 
> and then s/select ARCH_HAS_DEVMEM_IS_ALLOWED/select GENERIC_LIB_DEVMEM_IS_ALLOWED/
> in the arch Kconfigs and drop ARCH_HAS_DEVMEM_IS_ALLOWED in the end.

To take a step back:  Is there any reason to not just always
STRICT_DEVMEM? Maybe for a few architectures that don't currently
support a strict /dev/mem the generic version isn't quite correct, but
someone selecting the option and finding the issue is the best way to
figure that out..

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ