Received: by 2002:a05:6a10:1d13:0:0:0:0 with SMTP id pp19csp4610475pxb; Tue, 31 Aug 2021 09:05:40 -0700 (PDT) X-Google-Smtp-Source: ABdhPJxrIz/gWd28okFuvLhmFn6WfScKgd04HzZ9IlHndq/o20LIXADbd138oWuTTBsVKLCAyKlT X-Received: by 2002:a50:aba4:: with SMTP id u33mr22257105edc.45.1630425940388; Tue, 31 Aug 2021 09:05:40 -0700 (PDT) ARC-Seal: i=1; a=rsa-sha256; t=1630425940; cv=none; d=google.com; s=arc-20160816; b=dtciVIiNHSOAg0VnPzMNRIlaLjBNiaT4qxK1kaePmQUuvWcV7gMsjd2Ny/y+PRipTw COdfNraSXRQ07BAnN3Nur67CHctWlz5IHkrK8T7HrU4ElA0wsnyuCqF8f17FhLMHk5K8 7AgypWVnC/G18YlEDFXOHg4e2KyjNvRFO8DZebeaVi63HwaCSjxQWwctZ6rziAV2kZCb JIzapy+8tKNUsva2TUb3s6SmW0CQQ2e01Z4FA3nsjN+YvWxv8KYNewdEj8f9ie+QRmOq h+2BztI1TSplK+kC+rNThE81UQtpSOnTOi0KbXTBgp/VfmAThE8rEs+rgwgELpHuMggu ZG0A== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:in-reply-to:content-disposition:mime-version :references:message-id:subject:cc:to:from:date; bh=xulp+1LHMLEyvaf0PSOPxbv2VfKeaW9zsBGe4NHuxEc=; b=v2helG8dutQg9VSGUIcwITd5Y/yE3S7bCM6mReP0GOSWvXp8MLHafwkOdU9mVevs6b qblEpEUFouSjnAOz0+XLrLtnJcCznIzsVFca56ypnVFQLvN7/sEWItjLBJF5dZibGG8E TYu4+VOP3I659zo0+miYxr+JyCG+1I/7RkSiCOXL01AzENPGWbEpvbTU3wdcbqr2/LBn vUMKdWU4pRGtNFQ4OI7A5kfYVbQL0Pg3crVybESfFKTTl4XtLoOrGhPYRwjFhplsaPrG BNcBA1mHGWaxWDyPLHNpaGuyYXIO5WIwyfWjQPTjoR3oN3WBUtp4tR5XMhUcS94ldCf7 fe/g== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org; dmarc=fail (p=NONE sp=NONE dis=NONE) header.from=arm.com Return-Path: Received: from vger.kernel.org (vger.kernel.org. [23.128.96.18]) by mx.google.com with ESMTP id i17si17146015edq.189.2021.08.31.09.05.14; Tue, 31 Aug 2021 09:05:40 -0700 (PDT) Received-SPF: pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) client-ip=23.128.96.18; Authentication-Results: mx.google.com; spf=pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org; dmarc=fail (p=NONE sp=NONE dis=NONE) header.from=arm.com Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S239520AbhHaQDA (ORCPT + 99 others); Tue, 31 Aug 2021 12:03:00 -0400 Received: from mail.kernel.org ([198.145.29.99]:39366 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S232770AbhHaQC7 (ORCPT ); Tue, 31 Aug 2021 12:02:59 -0400 Received: by mail.kernel.org (Postfix) with ESMTPSA id B0F4160F6B; Tue, 31 Aug 2021 16:02:01 +0000 (UTC) Date: Tue, 31 Aug 2021 17:01:58 +0100 From: Catalin Marinas To: Al Viro Cc: Linus Torvalds , Andreas Gruenbacher , Christoph Hellwig , "Darrick J. Wong" , Jan Kara , Matthew Wilcox , cluster-devel , linux-fsdevel , Linux Kernel Mailing List , "ocfs2-devel@oss.oracle.com" , Josef Bacik , Will Deacon Subject: Re: [RFC][arm64] possible infinite loop in btrfs search_ioctl() Message-ID: References: <20210827164926.1726765-6-agruenba@redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Tue, Aug 31, 2021 at 03:28:57PM +0000, Al Viro wrote: > On Tue, Aug 31, 2021 at 02:54:50PM +0100, Catalin Marinas wrote: > > > An arm64-specific workaround would be for pagefault_disable() to disable > > tag checking. It's a pretty big hammer, weakening the out of bounds > > access detection of MTE. My preference would be a fix in the btrfs code. > > > > A btrfs option would be for copy_to_sk() to return an indication of > > where the fault occurred and get fault_in_pages_writeable() to check > > that location, even if the copying would restart from an earlier offset > > (this requires open-coding copy_to_user_nofault()). An attempt below, > > untested and does not cover read_extent_buffer_to_user_nofault(): > > Umm... There's another copy_to_user_nofault() call in the same function > (same story, AFAICS). Yeah, I was too lazy to do it all and I don't have a setup to test the patch quickly either. BTW, my hack is missing an access_ok() check. I wonder whether copy_{to,from}_user_nofault() could actually return the number of bytes left to copy, just like their non-nofault counterparts. These are only used in a few places, so fairly easy to change. If we go for a btrfs fix along the lines of my diff, it saves us from duplicating the copy_to_user_nofault() code. -- Catalin