Received: by 10.192.165.148 with SMTP id m20csp4182118imm; Mon, 30 Apr 2018 13:21:17 -0700 (PDT) X-Google-Smtp-Source: AB8JxZqv/Upae4BAjy2JYl8yLRH3RzSvI7k5zIssKNBhkm0GS6uM0Q0BjSiVCrYh7beX3D7OThHA X-Received: by 10.98.152.203 with SMTP id d72mr13158818pfk.98.1525119677025; Mon, 30 Apr 2018 13:21:17 -0700 (PDT) ARC-Seal: i=1; a=rsa-sha256; t=1525119676; cv=none; d=google.com; s=arc-20160816; b=QeYcKrWgfNTQI+RNQii8Ci1WdNPcCeBfS+eW0jjh9eoG4ey/PhSa9XgCPi67vZjRl0 BMnbHO/L0lgTcfmX++tGgN6E3CMyajfrV8Q6MhsZ4avrq0Vw+ot/hGHoMyo+YiV4lEDB zqd0Op6NbYXVI+fE26nLNMNyKYc6zcsVh1uMgeOri7qUhQtwlKA4x23pqA3ruqO9oJzv K6oK11eVuwDpg1mtTIeTt9/mPY6qbpedywAE/ROieItRp5qVV+7ARnFjTTXC2Jfqgewz iaBWk5r2Ui/4u+BHDs1CioFDlZwHT4G981yOPJJSvMdyYUDv4qeSj4Bl4i56HywLK/45 W5wA== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:sender:mime-version:user-agent:references :in-reply-to:message-id:date:subject:cc:to:from:dmarc-filter :arc-authentication-results; bh=kF4ivaeEtMWPjOKUHkei05Fcx7rXCZ/buYyo5WmLDvk=; b=l8aAvLGVPxcCb7BJYG2clYKXCqXZcXLB+axskapzHm6fps8AKqIu0rSjeolOLXLOJm oyFua/0THasT8LX6haiJPa9paXBiEi184FmdkncEmp1fnV0FuIGfC4cg8lXF4bNlx384 qU1XWWf9gp2YJI2UphXzpXMXlbpKdS2uu2fFKUhwelzCJ9jhCo0tNKqfuxg/FYOb9/eK 2VtUQDgvDI7l7KXA2x0rFtQTsOUGC6b9G5psaec49e1iJqTQy+I5J2gwEiZyLS7cQDMM c1fSJXGSCteSwmFR/lj+EuwUFVJO0EbPdinCD8SCEyz7ljH1oQjk/raXVQdJypOSxJmB GFeA== 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 e71si8230957pfj.250.2018.04.30.13.21.03; Mon, 30 Apr 2018 13:21:16 -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 S1755761AbeD3T0n (ORCPT + 99 others); Mon, 30 Apr 2018 15:26:43 -0400 Received: from mail.kernel.org ([198.145.29.99]:60556 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1755700AbeD3T0j (ORCPT ); Mon, 30 Apr 2018 15:26:39 -0400 Received: from localhost (unknown [104.132.1.102]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPSA id 1033422DAE; Mon, 30 Apr 2018 19:26:39 +0000 (UTC) DMARC-Filter: OpenDMARC Filter v1.3.2 mail.kernel.org 1033422DAE Authentication-Results: mail.kernel.org; dmarc=none (p=none dis=none) header.from=linuxfoundation.org Authentication-Results: mail.kernel.org; spf=fail smtp.mailfrom=gregkh@linuxfoundation.org From: Greg Kroah-Hartman To: linux-kernel@vger.kernel.org Cc: Greg Kroah-Hartman , stable@vger.kernel.org, syzbot+06c885be0edcdaeab40c@syzkaller.appspotmail.com, Eric Biggers , Theodore Tso Subject: [PATCH 4.9 01/61] ext4: prevent right-shifting extents beyond EXT_MAX_BLOCKS Date: Mon, 30 Apr 2018 12:24:04 -0700 Message-Id: <20180430183951.424844189@linuxfoundation.org> X-Mailer: git-send-email 2.17.0 In-Reply-To: <20180430183951.312721450@linuxfoundation.org> References: <20180430183951.312721450@linuxfoundation.org> User-Agent: quilt/0.65 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org 4.9-stable review patch. If anyone has any objections, please let me know. ------------------ From: Eric Biggers commit 349fa7d6e1935f49bf4161c4900711b2989180a9 upstream. During the "insert range" fallocate operation, extents starting at the range offset are shifted "right" (to a higher file offset) by the range length. But, as shown by syzbot, it's not validated that this doesn't cause extents to be shifted beyond EXT_MAX_BLOCKS. In that case ->ee_block can wrap around, corrupting the extent tree. Fix it by returning an error if the space between the end of the last extent and EXT4_MAX_BLOCKS is smaller than the range being inserted. This bug can be reproduced by running the following commands when the current directory is on an ext4 filesystem with a 4k block size: fallocate -l 8192 file fallocate --keep-size -o 0xfffffffe000 -l 4096 -n file fallocate --insert-range -l 8192 file Then after unmounting the filesystem, e2fsck reports corruption. Reported-by: syzbot+06c885be0edcdaeab40c@syzkaller.appspotmail.com Fixes: 331573febb6a ("ext4: Add support FALLOC_FL_INSERT_RANGE for fallocate") Cc: stable@vger.kernel.org # v4.2+ Signed-off-by: Eric Biggers Signed-off-by: Theodore Ts'o Signed-off-by: Greg Kroah-Hartman --- fs/ext4/extents.c | 16 +++++++++++----- 1 file changed, 11 insertions(+), 5 deletions(-) --- a/fs/ext4/extents.c +++ b/fs/ext4/extents.c @@ -5356,8 +5356,9 @@ ext4_ext_shift_extents(struct inode *ino stop = le32_to_cpu(extent->ee_block); /* - * In case of left shift, Don't start shifting extents until we make - * sure the hole is big enough to accommodate the shift. + * For left shifts, make sure the hole on the left is big enough to + * accommodate the shift. For right shifts, make sure the last extent + * won't be shifted beyond EXT_MAX_BLOCKS. */ if (SHIFT == SHIFT_LEFT) { path = ext4_find_extent(inode, start - 1, &path, @@ -5377,9 +5378,14 @@ ext4_ext_shift_extents(struct inode *ino if ((start == ex_start && shift > ex_start) || (shift > start - ex_end)) { - ext4_ext_drop_refs(path); - kfree(path); - return -EINVAL; + ret = -EINVAL; + goto out; + } + } else { + if (shift > EXT_MAX_BLOCKS - + (stop + ext4_ext_get_actual_len(extent))) { + ret = -EINVAL; + goto out; } }