Received: by 2002:ac0:bc90:0:0:0:0:0 with SMTP id a16csp3121745img; Mon, 25 Mar 2019 04:19:33 -0700 (PDT) X-Google-Smtp-Source: APXvYqyNFqzO0hj8JFJFofI31uQBfr1yjEoHxUJUL2etW9EuIKRTwexE9Zi3GSCun4BTIv2jGXmm X-Received: by 2002:a63:e813:: with SMTP id s19mr22472888pgh.12.1553512773050; Mon, 25 Mar 2019 04:19:33 -0700 (PDT) ARC-Seal: i=1; a=rsa-sha256; t=1553512773; cv=none; d=google.com; s=arc-20160816; b=QGbzZyxNe40VC6Jjq0q2OTleh/YdKzNZhXDdVAOSr8KZNaPNn6k1UaNQa15Jc/7y+0 KUSORWVzwLlBppSDY54LqEuHEvmIRgok0LNeDC2mDTn4UqD/P47h+etqH7NMxrcDhdlm VclUn4KhJaFAH/z5VjbJPmAEM7m5x8vDIvX6V+wcP9NcaUSVNDuYpolbx3Es7Hw9X2RD cLF6J7Sf8Cb7J4KareCyCNtmKdznD/ICuqpRtC++glnvlH9+BH48pnATW4J/On6jIPmN Hx9+HgKRNcH8Dq8HqftezSZvgnJkoDzrX4TfFNkZcxnKjhTcsdord4XYhCTM9mp16Sbx fg0w== 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=VIpnNIgJfCOV1jp9hcCA9qKoYr4O2BlxBPGF9cvcA34=; b=MGDR2rmB78sjQYno/+Nt5VrPW5mumlQBlQwTKmiRzE/xGXMSO4htT6wDlov1HjEK65 KtPkGVYFypZD0ymyg3AfGq9ENY3DldpckAiRw1cDw2tc6t4GHUDBGznxNC5hQvUJacBv VMV55YK3GYvWkfo4JV9rAF+WNz0EcfGJ+lI0yOwA1naFxt/YEMkrDpl7906lLW+kXI9w hiWbf3QOKbktKbNFZxwtMYum0mbsMmW408E6o0g417H7KzJnJLuTfpO2UoEaN0xtwkPl Ob/0loyFEIsY/nP9nOLzoA7d6fE2J3zEKrAE1gIAGqROtzXKMrl3dOp9ONG6v16P89Nk PT7w== 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 ([209.132.180.67]) by mx.google.com with ESMTP id a5si13199544pgq.384.2019.03.25.04.19.18; Mon, 25 Mar 2019 04:19:33 -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 S1730959AbfCYLSD (ORCPT + 99 others); Mon, 25 Mar 2019 07:18:03 -0400 Received: from zeniv.linux.org.uk ([195.92.253.2]:47904 "EHLO ZenIV.linux.org.uk" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1729727AbfCYLSD (ORCPT ); Mon, 25 Mar 2019 07:18:03 -0400 Received: from viro by ZenIV.linux.org.uk with local (Exim 4.92 #3 (Red Hat Linux)) id 1h8Nc5-0006Jm-13; Mon, 25 Mar 2019 11:17:57 +0000 Date: Mon, 25 Mar 2019 11:17:57 +0000 From: Al Viro To: Daniel Borkmann Cc: Linus Torvalds , syzbot , Alexei Starovoitov , linux-fsdevel , Linux List Kernel Mailing , syzkaller-bugs Subject: Re: KASAN: use-after-free Read in path_lookupat Message-ID: <20190325111756.GN2217@ZenIV.linux.org.uk> References: <0000000000006946d2057bbd0eef@google.com> <20190325045744.GK2217@ZenIV.linux.org.uk> <717eaff9-1f49-28f3-bbb6-c8f14ebbe03b@iogearbox.net> <20190325111123.GM2217@ZenIV.linux.org.uk> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20190325111123.GM2217@ZenIV.linux.org.uk> User-Agent: Mutt/1.10.1 (2018-07-13) Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Mon, Mar 25, 2019 at 11:11:23AM +0000, Al Viro wrote: > On Mon, Mar 25, 2019 at 10:15:40AM +0100, Daniel Borkmann wrote: > > > So we have 5 broken cases, all with the same kind of fix: move freeing > > > into the RCU-delayed part of ->destroy_inode(); for debugfs and bpf > > > that requires adding ->alloc_inode()/->destroy_inode(), rather than > > > relying upon the defaults from fs/inode.c > > > > I believe I copied that logic from one of the other fs'es back then, sigh. > > Thanks for the analysis and hints for fixing. Would the below (only compile > > tested for now) look reasonable to you? I believe there is no other way > > around than to add our own inode cache, but so be it. The freeing of the > > i_link is then RCU-deferred in bpf_destroy_inode_deferred(): > > It looks like it would suffice, but it's way too much boilerplate for my > taste ;-/ > > Most of your headache here comes from messing with slab setup and the > only reason for that is being unable to free stuff into inode_cachep. > So grep for inode_cachep would be a good idea, and it digs up the > following sucker: > void free_inode_nonrcu(struct inode *inode) > { > kmem_cache_free(inode_cachep, inode); > } > EXPORT_SYMBOL(free_inode_nonrcu); > > IOW, you need nothing on ->alloc_inode() side and for ->destroy_inode() > just do call_rcu() of a callback, that would kfree(inode->link) if > it was a symlink, then call free_inode_nonrcu(inode). > > Considerably smaller patch that way... AFAICS, it boils down to just this (also only compile-tested): diff --git a/kernel/bpf/inode.c b/kernel/bpf/inode.c index 2ada5e21dfa6..9437f88b6acf 100644 --- a/kernel/bpf/inode.c +++ b/kernel/bpf/inode.c @@ -80,6 +80,20 @@ static const struct inode_operations bpf_dir_iops; static const struct inode_operations bpf_prog_iops = { }; static const struct inode_operations bpf_map_iops = { }; +static void bpf_destroy_inode_deferred(struct rcu_head *head) +{ + struct inode *inode = container_of(head, struct inode, i_rcu); + + if (S_ISLNK(inode->i_mode)) + kfree(inode->i_link); + free_inode_nonrcu(inode); +} + +static void bpf_destroy_inode(struct inode *inode) +{ + call_rcu(&inode->i_rcu, bpf_destroy_inode_deferred); +} + static struct inode *bpf_get_inode(struct super_block *sb, const struct inode *dir, umode_t mode) @@ -561,8 +575,6 @@ static void bpf_evict_inode(struct inode *inode) truncate_inode_pages_final(&inode->i_data); clear_inode(inode); - if (S_ISLNK(inode->i_mode)) - kfree(inode->i_link); if (!bpf_inode_type(inode, &type)) bpf_any_put(inode->i_private, type); } @@ -584,6 +596,7 @@ static const struct super_operations bpf_super_ops = { .drop_inode = generic_delete_inode, .show_options = bpf_show_options, .evict_inode = bpf_evict_inode, + .destroy_inode = bpf_destroy_inode, }; enum {