Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753369Ab1FNPnd (ORCPT ); Tue, 14 Jun 2011 11:43:33 -0400 Received: from mx1.redhat.com ([209.132.183.28]:65400 "EHLO mx1.redhat.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1750947Ab1FNPnb (ORCPT ); Tue, 14 Jun 2011 11:43:31 -0400 Date: Tue, 14 Jun 2011 17:40:52 +0200 From: Oleg Nesterov To: Peter Zijlstra Cc: Srikar Dronamraju , Ingo Molnar , Steven Rostedt , Linux-mm , Arnaldo Carvalho de Melo , Linus Torvalds , Masami Hiramatsu , Hugh Dickins , Christoph Hellwig , Andi Kleen , Thomas Gleixner , Jonathan Corbet , Andrew Morton , Jim Keniston , Roland McGrath , Ananth N Mavinakayanahalli , LKML Subject: Re: [PATCH v4 3.0-rc2-tip 2/22] 2: uprobes: Breakground page replacement. Message-ID: <20110614154052.GA22082@redhat.com> References: <20110607125804.28590.92092.sendpatchset@localhost6.localdomain6> <20110607125835.28590.25476.sendpatchset@localhost6.localdomain6> <20110613170020.GA27137@redhat.com> <1308056477.19856.35.camel@twins> <20110614142710.GB5139@redhat.com> <1308064053.19856.75.camel@twins> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1308064053.19856.75.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 Content-Length: 1652 Lines: 45 On 06/14, Peter Zijlstra wrote: > > On Tue, 2011-06-14 at 16:27 +0200, Oleg Nesterov wrote: > > On 06/14, Peter Zijlstra wrote: > > > > > > On Mon, 2011-06-13 at 19:00 +0200, Oleg Nesterov wrote: > > > > > > > > Also. This is called under down_read(mmap_sem), can't we race with > > > > access_process_vm() modifying the same memory? > > > > > > Shouldn't matter COW and similar things are serialized using the pte > > > lock. > > > > Yes, but afaics this doesn't matter. Suppose that write_opcode() is > > called when access_process_vm() does copy_to_user_page(). We can cow > > the page before memcpy() completes. > > access_process_vm() will end up doing a FOLL_WRITE itself when > copy_to_user_page() is called since write=1 in that case. > > At that point we have a COW-race, someone wins, but the other will then > return the same page. > > At this point further PTRACE pokes can indeed race with the memcpy in > write_opcode(). Currently it can't, write_opcode() does another cow. But that cow can, and this is the same, yes. > A possible fix would be to lock_page() around > copy_to_user_page() (its already done in set_page_dirty_lock(), so > pulling it out shouldn't matter much). Yes, or write_opcode() could take mmap_sem for writing as Srikar suggests. But do we really care? Whatever we do we can race with the other updates to this memory. Say, someone can write to vma->vm_file. Oleg. -- 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/