Received: by 10.213.65.68 with SMTP id h4csp1727797imn; Mon, 19 Mar 2018 11:35:15 -0700 (PDT) X-Google-Smtp-Source: AG47ELumbZMcEg4+WQdf5sv9bTNpt8eMpWIVKve7HWSvYIsIlIm1ys5N15KyG3eSKqKuTtiVns3D X-Received: by 2002:a17:902:8c94:: with SMTP id t20-v6mr4143240plo.95.1521484515732; Mon, 19 Mar 2018 11:35:15 -0700 (PDT) ARC-Seal: i=1; a=rsa-sha256; t=1521484515; cv=none; d=google.com; s=arc-20160816; b=oUc3aJKmsyKCjeRp5ORYbOcp+JooPZWhRb91u5j6cQGbdlSk+cajA6zdxlDY4OmP/0 EK86S3XKYuoZ2IZFTYWLeN1W/B0qFLxoRGf+pm9E2ST2WXGAL5LXqKucp5EGuCb7opPu 8Z4IAyKOsnY1hf8zyH6ZBadqmHU/l9jE7y6vVY38jFMxEQhUHGpRfw0QGi8oeq6VR/xX XAwySX2u8ZUoqoOAd5WjIExIcy46Y6dm7bfRyJmz+rYIwv0w/kWbGkWmzVSq/OEou8J7 wSLfoHQOp6TviCBjx3oriLGmUbCzmY4fbkG6jME6S9eiVzINFUvYBbVo8toryLPKUclm fe4w== 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 :arc-authentication-results; bh=2LrGX6z98xpwFFOjPjbsxta7utjDU6uuVkfnrp1162Q=; b=A9ODVC/ePBpT230f3ef550/oVIK8nuVsTPkxkOfqbQ0E/0RmaErGWKHL1XUgz3YNPc 1OgTn5iRHVCH7YfhMPXgS7VQN0bkCql6UVml3Lmciih6MvulAdz1q8ZdBqWCcAMyyOUY 8No5QXGnlnfIGCFbwRHe56Al1HrWFp6Csa7jbl2aSCY3CRg7Yl6fgxC7oQwZ2l+HGOAw u9Suun+1LPRfCtM56kCPekiB9+0PYb/co5pPB/+cNhNL+pxFGH8joV6Zx4zBrsud0yw8 OBqGy4SfjCakCWeAviiW4V+AiuZFGHf0WIMWpJKg218yE0xiXqf+2YP3DQCncGvhqRtm tfJA== 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 k7si328127pgo.509.2018.03.19.11.35.01; Mon, 19 Mar 2018 11:35:15 -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 S970287AbeCSScX (ORCPT + 99 others); Mon, 19 Mar 2018 14:32:23 -0400 Received: from mail.linuxfoundation.org ([140.211.169.12]:53896 "EHLO mail.linuxfoundation.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S934606AbeCSScQ (ORCPT ); Mon, 19 Mar 2018 14:32:16 -0400 Received: from localhost (LFbn-1-12247-202.w90-92.abo.wanadoo.fr [90.92.61.202]) by mail.linuxfoundation.org (Postfix) with ESMTPSA id 264F312A8; Mon, 19 Mar 2018 18:32:16 +0000 (UTC) From: Greg Kroah-Hartman To: linux-kernel@vger.kernel.org Cc: Greg Kroah-Hartman , stable@vger.kernel.org, Tejun Heo , Jann Horn , Kent Overstreet , Linus Torvalds Subject: [PATCH 4.15 26/52] fs/aio: Add explicit RCU grace period when freeing kioctx Date: Mon, 19 Mar 2018 19:08:24 +0100 Message-Id: <20180319180736.546283861@linuxfoundation.org> X-Mailer: git-send-email 2.16.2 In-Reply-To: <20180319180734.976730813@linuxfoundation.org> References: <20180319180734.976730813@linuxfoundation.org> User-Agent: quilt/0.65 X-stable: review 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.15-stable review patch. If anyone has any objections, please let me know. ------------------ From: Tejun Heo commit a6d7cff472eea87d96899a20fa718d2bab7109f3 upstream. While fixing refcounting, e34ecee2ae79 ("aio: Fix a trinity splat") incorrectly removed explicit RCU grace period before freeing kioctx. The intention seems to be depending on the internal RCU grace periods of percpu_ref; however, percpu_ref uses a different flavor of RCU, sched-RCU. This can lead to kioctx being freed while RCU read protected dereferences are still in progress. Fix it by updating free_ioctx() to go through call_rcu() explicitly. v2: Comment added to explain double bouncing. Signed-off-by: Tejun Heo Reported-by: Jann Horn Fixes: e34ecee2ae79 ("aio: Fix a trinity splat") Cc: Kent Overstreet Cc: Linus Torvalds Cc: stable@vger.kernel.org # v3.13+ Signed-off-by: Greg Kroah-Hartman --- fs/aio.c | 23 +++++++++++++++++++---- 1 file changed, 19 insertions(+), 4 deletions(-) --- a/fs/aio.c +++ b/fs/aio.c @@ -115,7 +115,8 @@ struct kioctx { struct page **ring_pages; long nr_pages; - struct work_struct free_work; + struct rcu_head free_rcu; + struct work_struct free_work; /* see free_ioctx() */ /* * signals when all in-flight requests are done @@ -588,6 +589,12 @@ static int kiocb_cancel(struct aio_kiocb return cancel(&kiocb->common); } +/* + * free_ioctx() should be RCU delayed to synchronize against the RCU + * protected lookup_ioctx() and also needs process context to call + * aio_free_ring(), so the double bouncing through kioctx->free_rcu and + * ->free_work. + */ static void free_ioctx(struct work_struct *work) { struct kioctx *ctx = container_of(work, struct kioctx, free_work); @@ -601,6 +608,14 @@ static void free_ioctx(struct work_struc kmem_cache_free(kioctx_cachep, ctx); } +static void free_ioctx_rcufn(struct rcu_head *head) +{ + struct kioctx *ctx = container_of(head, struct kioctx, free_rcu); + + INIT_WORK(&ctx->free_work, free_ioctx); + schedule_work(&ctx->free_work); +} + static void free_ioctx_reqs(struct percpu_ref *ref) { struct kioctx *ctx = container_of(ref, struct kioctx, reqs); @@ -609,8 +624,8 @@ static void free_ioctx_reqs(struct percp if (ctx->rq_wait && atomic_dec_and_test(&ctx->rq_wait->count)) complete(&ctx->rq_wait->comp); - INIT_WORK(&ctx->free_work, free_ioctx); - schedule_work(&ctx->free_work); + /* Synchronize against RCU protected table->table[] dereferences */ + call_rcu(&ctx->free_rcu, free_ioctx_rcufn); } /* @@ -838,7 +853,7 @@ static int kill_ioctx(struct mm_struct * table->table[ctx->id] = NULL; spin_unlock(&mm->ioctx_lock); - /* percpu_ref_kill() will do the necessary call_rcu() */ + /* free_ioctx_reqs() will do the necessary RCU synchronization */ wake_up_all(&ctx->wait); /*