Received: by 2002:a5b:505:0:0:0:0:0 with SMTP id o5csp5803078ybp; Tue, 8 Oct 2019 08:31:51 -0700 (PDT) X-Google-Smtp-Source: APXvYqxKxmQCvs6FmRzBdlkjs4i1TJmUG032GjuJwFSpbPtmYSjcJjdLqE0FBmcLlhRV1VWISZDl X-Received: by 2002:aa7:dc4b:: with SMTP id g11mr34840002edu.70.1570548711722; Tue, 08 Oct 2019 08:31:51 -0700 (PDT) ARC-Seal: i=1; a=rsa-sha256; t=1570548711; cv=none; d=google.com; s=arc-20160816; b=s9Q2I7xwCPCf4Jibk1fuzpkOTD2RDvjCtdU6TB4RykkrrW59HyqobFeVR5onGiaZ2x 2tvbt9OhaPitat+cmlcIlMDoWOiia08fKg72y50Vy1K2gK62IdCjvdt30QLWZZk1fqbW keW267RDsMqvSDZCJ9msaDq/G/Ygz00Q0424YRWlBE0uEtlp51yp5b2tPCEwFKx+fDKM FQoIrIuohwHINJ5AKMKfnqOq0rkExEg/ND5Bx3Lvam+4PWpcnyOHVk/WQkrjFnP+lX7V zi1Paxp7UGuPY7deCk6m8/j5kA+Y196aMS973KWoIej7rZeqlfS1h+Njyd8FRs3BfRAs gGNA== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:sender:user-agent:in-reply-to :content-disposition:mime-version:references:message-id:subject:cc :to:from:date; bh=HIWPmSDs93bkJhxkCQtQ3ssnlDoxygyE/8IB7Hquv8M=; b=j1IRKE2gMa5PY3+/vCbVOqrhJ2/fMd1espJkKhDAr7aXwc+SgGevV6+O6mjVX8QgPr cIb1DIazD98h1bAm0YvTRkCna/9bcHg+i7POEK8xplPdaVOxOYMh3wB6f37yvyvF0np/ Lo7F+aprgEDKljy2ep/C1ESnEa5YZKnv5LHKGMQjpslRdEcWzMDVz1+vwUqh1DcRkF7+ NTu6TCQEL0Tnfv//DDCuYvyv6yTDKhpXEbElpFLcx4DQgUOByKbHRHWN42ZTUE+SGAB8 Ipf3VE2Max0Qu9A/nTbgddnrxixg7A8VmX8higIONkwW1FKiDZQ8wPdal3uGn7zqv2yJ wxSA== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Return-Path: Received: from vger.kernel.org (vger.kernel.org. [209.132.180.67]) by mx.google.com with ESMTP id o2si8669670ejm.367.2019.10.08.08.31.25; Tue, 08 Oct 2019 08:31:51 -0700 (PDT) Received-SPF: pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) client-ip=209.132.180.67; Authentication-Results: mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1727730AbfJHP3E (ORCPT + 99 others); Tue, 8 Oct 2019 11:29:04 -0400 Received: from zeniv.linux.org.uk ([195.92.253.2]:58786 "EHLO ZenIV.linux.org.uk" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726134AbfJHP3E (ORCPT ); Tue, 8 Oct 2019 11:29:04 -0400 Received: from viro by ZenIV.linux.org.uk with local (Exim 4.92.2 #3 (Red Hat Linux)) id 1iHrQ4-00038Y-RO; Tue, 08 Oct 2019 15:29:00 +0000 Date: Tue, 8 Oct 2019 16:29:00 +0100 From: Al Viro To: Greg KH Cc: Linus Torvalds , Guenter Roeck , Linux Kernel Mailing List , linux-fsdevel Subject: Re: [PATCH] Convert filldir[64]() from __put_user() to unsafe_put_user() Message-ID: <20191008152900.GT26530@ZenIV.linux.org.uk> References: <20191007012437.GK26530@ZenIV.linux.org.uk> <20191007025046.GL26530@ZenIV.linux.org.uk> <20191008032912.GQ26530@ZenIV.linux.org.uk> <20191008045712.GR26530@ZenIV.linux.org.uk> <20191008131416.GA2860109@kroah.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20191008131416.GA2860109@kroah.com> User-Agent: Mutt/1.12.1 (2019-06-15) Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Tue, Oct 08, 2019 at 03:14:16PM +0200, Greg KH wrote: > On Tue, Oct 08, 2019 at 05:57:12AM +0100, Al Viro wrote: > > > > OK... BTW, do you agree that the use of access_ok() in > > drivers/tty/n_hdlc.c:n_hdlc_tty_read() is wrong? It's used as an early > > cutoff, so we don't bother waiting if user has passed an obviously bogus > > address. copy_to_user() is used for actual copying there... > > Yes, it's wrong, and not needed. I'll go rip it out unless you want to? I'll throw it into misc queue for now; it has no prereqs and nothing is going to depend upon it. While looking for more of the same pattern: usb_device_read(). Frankly, usb_device_dump() calling conventions look ugly - it smells like it would be much happier as seq_file. Iterator would take some massage, but that seems to be doable. Anyway, that's a separate story...