From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754169AbcEBQVj (ORCPT ); Mon, 2 May 2016 12:21:39 -0400 Received: from mail-lf0-f47.google.com ([209.85.215.47]:36164 "EHLO mail-lf0-f47.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1750962AbcEBQVc (ORCPT ); Mon, 2 May 2016 12:21:32 -0400 Date: Mon, 2 May 2016 19:21:28 +0300 From: "Kirill A. Shutemov" To: Oleg Nesterov Cc: Jerome Glisse , Hugh Dickins , Linus Torvalds , Andrew Morton , Andrea Arcangeli , Alex Williamson , kirill.shutemov@linux.intel.com, linux-kernel@vger.kernel.org, "linux-mm@kvack.org" Subject: Re: GUP guarantees wrt to userspace mappings redesign Message-ID: <20160502162128.GF24419@node.shutemov.name> References: <20160428125808.29ad59e5@t450s.home> <20160428232127.GL11700@redhat.com> <20160429005106.GB2847@node.shutemov.name> <20160428204542.5f2053f7@ul30vt.home> <20160429070611.GA4990@node.shutemov.name> <20160429163444.GM11700@redhat.com> <20160502104119.GA23305@node.shutemov.name> <20160502111513.GA4079@gmail.com> <20160502121402.GB23305@node.shutemov.name> <20160502141538.GA5961@redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20160502141538.GA5961@redhat.com> User-Agent: Mutt/1.5.23.1 (2014-03-12) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Mon, May 02, 2016 at 04:15:38PM +0200, Oleg Nesterov wrote: > I am sure I missed the problem, but... > > On 05/02, Kirill A. Shutemov wrote: > > > > Quick look around: > > > > - I don't see any check page_count() around __replace_page() in uprobes, > > so it can easily replace pinned page. > > Why it should? even if it races with get_user_pages_fast()... this doesn't > differ from the case when an application writes to MAP_PRIVATE non-anonymous > region, no? < I know nothing about uprobes or ptrace in general > I think the difference is that the write is initiated by the process itself, but IIUC __replace_page() can be initiated by other process, so it's out of control of the application. So we have pages pinned by a driver and the driver expects the pinned pages to be mapped into userspace, then __replace_page() kicks in and put different page there -- driver's expectation is broken. -- Kirill A. Shutemov