From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-10.5 required=3.0 tests=BAYES_00,DKIMWL_WL_HIGH, DKIM_SIGNED,DKIM_VALID,HEADER_FROM_DIFFERENT_DOMAINS,MAILING_LIST_MULTI, SIGNED_OFF_BY,SPF_HELO_NONE,SPF_PASS,URIBL_BLOCKED,USER_AGENT_GIT autolearn=unavailable autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 8AC58C4363A for ; Mon, 5 Oct 2020 15:34:54 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 4A2F8207BC for ; Mon, 5 Oct 2020 15:34:54 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1601912094; bh=VnHJlXDtB5Ll4IxeGyEK24Vc2mPCDLLSkEaY4eh9zBE=; h=From:To:Cc:Subject:Date:In-Reply-To:References:List-ID:From; b=yNpVJy1qWBhnKAAela1UqlUPA198Vzj5pRBfRac1Qh3TI431ZyPWrh9WHcz73lyik Ps63ceL2DE4TURg4fd+/EuVNk4UyHalA0/96KnQsAG7iUT9KG4LOaILMWnlhxyyxJp h3g3cZO42SqK6IU+/M71qPabVyh4rkrCRR42i1A8= Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1727893AbgJEPex (ORCPT ); Mon, 5 Oct 2020 11:34:53 -0400 Received: from mail.kernel.org ([198.145.29.99]:34864 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1728263AbgJEPeS (ORCPT ); Mon, 5 Oct 2020 11:34:18 -0400 Received: from localhost (83-86-74-64.cable.dynamic.v4.ziggo.nl [83.86.74.64]) (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 1A03620637; Mon, 5 Oct 2020 15:34:16 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1601912057; bh=VnHJlXDtB5Ll4IxeGyEK24Vc2mPCDLLSkEaY4eh9zBE=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=fvfx39FJxLfUngP6SnqELol2YSiIZ1TlFT+r7ykYFjPccrJnLD7Zc8IWhoB3BXaOh I8HJKLNtleNYYfDfXDCN00RJczfrahB6HO0/qvjolaW7LuuZ7zJ9NExxmKiojpTMCJ kfFZ3ACbpRlApPs1FOoN5xr89GhAuPffwzMUqzK8= From: Greg Kroah-Hartman To: linux-kernel@vger.kernel.org Cc: Greg Kroah-Hartman , stable@vger.kernel.org, Al Viro Subject: [PATCH 5.8 85/85] ep_create_wakeup_source(): dentry name can change under you... Date: Mon, 5 Oct 2020 17:27:21 +0200 Message-Id: <20201005142118.822227725@linuxfoundation.org> X-Mailer: git-send-email 2.28.0 In-Reply-To: <20201005142114.732094228@linuxfoundation.org> References: <20201005142114.732094228@linuxfoundation.org> User-Agent: quilt/0.66 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org From: Al Viro commit 3701cb59d892b88d569427586f01491552f377b1 upstream. or get freed, for that matter, if it's a long (separately stored) name. Signed-off-by: Al Viro Signed-off-by: Greg Kroah-Hartman --- fs/eventpoll.c | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) --- a/fs/eventpoll.c +++ b/fs/eventpoll.c @@ -1448,7 +1448,7 @@ static int reverse_path_check(void) static int ep_create_wakeup_source(struct epitem *epi) { - const char *name; + struct name_snapshot n; struct wakeup_source *ws; if (!epi->ep->ws) { @@ -1457,8 +1457,9 @@ static int ep_create_wakeup_source(struc return -ENOMEM; } - name = epi->ffd.file->f_path.dentry->d_name.name; - ws = wakeup_source_register(NULL, name); + take_dentry_name_snapshot(&n, epi->ffd.file->f_path.dentry); + ws = wakeup_source_register(NULL, n.name.name); + release_dentry_name_snapshot(&n); if (!ws) return -ENOMEM;