From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754561Ab2DPOqI (ORCPT ); Mon, 16 Apr 2012 10:46:08 -0400 Received: from mx1.redhat.com ([209.132.183.28]:13163 "EHLO mx1.redhat.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1754346Ab2DPOqG (ORCPT ); Mon, 16 Apr 2012 10:46:06 -0400 Date: Mon, 16 Apr 2012 16:44:57 +0200 From: Oleg Nesterov To: Peter Zijlstra Cc: Ingo Molnar , Srikar Dronamraju , Andrew Morton , Linus Torvalds , Ananth N Mavinakayanahalli , Jim Keniston , LKML , Linux-mm , Andi Kleen , Christoph Hellwig , Steven Rostedt , Arnaldo Carvalho de Melo , Masami Hiramatsu , Thomas Gleixner , Anton Arapov Subject: Re: [PATCH 2/6] uprobes: introduce is_swbp_at_addr_fast() Message-ID: <20120416144457.GA7018@redhat.com> References: <20120405222024.GA19154@redhat.com> <20120405222106.GB19166@redhat.com> <1334570935.28150.25.camel@twins> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1334570935.28150.25.camel@twins> User-Agent: Mutt/1.5.18 (2008-05-17) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On 04/16, Peter Zijlstra wrote: > > On Fri, 2012-04-06 at 00:21 +0200, Oleg Nesterov wrote: > > +int __weak is_swbp_at_addr_fast(unsigned long vaddr) > > +{ > > + uprobe_opcode_t opcode; > > + int fault; > > + > > + pagefault_disable(); > > + fault = __copy_from_user_inatomic(&opcode, (void __user*)vaddr, > > + sizeof(opcode)); > > + pagefault_enable(); > > + > > + if (unlikely(fault)) { > > + /* > > + * XXX: read_opcode() lacks FOLL_FORCE, it can fail if > > + * we race with another thread which does mprotect(NONE) > > + * after we hit bp. > > + */ > > + if (read_opcode(current->mm, vaddr, &opcode)) > > + return -EFAULT; > > + } > > + > > + return is_swbp_insn(&opcode); > > +} > > Why bother with the pagefault_disable() and unlikely fault case and not > simply do copy_from_user() and have it deal with the fault if its needed > anyway? But we can't do this under down_read(mmap_sem) ? If another thread waits for down_write() then do_page_fault() can't take this lock, right? Oleg.