From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-qt0-f197.google.com (mail-qt0-f197.google.com [209.85.216.197]) by kanga.kvack.org (Postfix) with ESMTP id 2322F6B039F for ; Thu, 30 Mar 2017 15:41:48 -0400 (EDT) Received: by mail-qt0-f197.google.com with SMTP id w34so19481567qtw.17 for ; Thu, 30 Mar 2017 12:41:48 -0700 (PDT) Received: from scorn.kernelslacker.org (scorn.kernelslacker.org. [2600:3c03::f03c:91ff:fe59:ec69]) by mx.google.com with ESMTPS id l90si2648858qte.273.2017.03.30.12.41.46 for (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Thu, 30 Mar 2017 12:41:47 -0700 (PDT) Date: Thu, 30 Mar 2017 15:41:43 -0400 From: Dave Jones Subject: Re: sudo x86info -a => kernel BUG at mm/usercopy.c:78! Message-ID: <20170330194143.cbracica3w3ijrcx@codemonkey.org.uk> References: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: Sender: owner-linux-mm@kvack.org List-ID: To: Kees Cook Cc: Tommi Rantala , Linux-MM , LKML , Laura Abbott , Ingo Molnar , Josh Poimboeuf , Mark Rutland , Eric Biggers On Thu, Mar 30, 2017 at 09:45:26AM -0700, Kees Cook wrote: > On Wed, Mar 29, 2017 at 11:44 PM, Tommi Rantala > wrote: > > Hi, > > > > Running: > > > > $ sudo x86info -a > > > > On this HP ZBook 15 G3 laptop kills the x86info process with segfault and > > produces the following kernel BUG. > > > > $ git describe > > v4.11-rc4-40-gfe82203 > > > > It is also reproducible with the fedora kernel: 4.9.14-200.fc25.x86_64 > > > > Full dmesg output here: https://pastebin.com/raw/Kur2mpZq > > > > [ 51.418954] usercopy: kernel memory exposure attempt detected from > > ffff880000090000 (dma-kmalloc-256) (4096 bytes) > > This seems like a real exposure: the copy is attempting to read 4096 > bytes from a 256 byte object. The code[1] is doing a 4k read from /dev/mem in the range 0x90000 -> 0xa0000 According to arch/x86/mm/init.c:devmem_is_allowed, that's still valid.. Note that the printk is using the direct mapping address. Is that what's being passed down to devmem_is_allowed now ? If so, that's probably what broke. Dave [1] https://github.com/kernelslacker/x86info/blob/master/mptable.c -- To unsubscribe, send a message with 'unsubscribe linux-mm' in the body to majordomo@kvack.org. For more info on Linux MM, see: http://www.linux-mm.org/ . Don't email: email@kvack.org