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 Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id 822CAC43217 for ; Wed, 9 Nov 2022 09:32:48 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S230338AbiKIJcr (ORCPT ); Wed, 9 Nov 2022 04:32:47 -0500 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:37696 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229997AbiKIJco (ORCPT ); Wed, 9 Nov 2022 04:32:44 -0500 Received: from smtp-out2.suse.de (smtp-out2.suse.de [195.135.220.29]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 6EE7122B04; Wed, 9 Nov 2022 01:32:43 -0800 (PST) Received: from imap2.suse-dmz.suse.de (imap2.suse-dmz.suse.de [192.168.254.74]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature ECDSA (P-521) server-digest SHA512) (No client certificate requested) by smtp-out2.suse.de (Postfix) with ESMTPS id 0F76F1F8FB; Wed, 9 Nov 2022 09:32:42 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=suse.de; s=susede2_rsa; t=1667986362; h=from:from:reply-to:date:date:message-id:message-id:to:to:cc:cc: mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=UBBqLayw5d+VJ/DV0NpEfW4laSWX61hqXZ6+3KMLDyU=; b=yRFM5fbUC8yXfKcJU04FlyfXwmYi+MZbJWuNpegESaXvxXD5XvyDobgfcxLbqb5enmBu+q oyJSqwbH/G4VJb40ivcIWNR5rs5l5cwMl2HHR1lRkMJY8YSB0Z17LQk9UM56uYxyzcB2Df D7ZOOOmLdhnTSCG6ENL0kn/L7qLeQTw= DKIM-Signature: v=1; a=ed25519-sha256; c=relaxed/relaxed; d=suse.de; s=susede2_ed25519; t=1667986362; h=from:from:reply-to:date:date:message-id:message-id:to:to:cc:cc: mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=UBBqLayw5d+VJ/DV0NpEfW4laSWX61hqXZ6+3KMLDyU=; b=BF7JYehH2mYZm8BFWYUVhQFrvRwgvRbKNd3+/IWLijbf3wF1UlyA8X8p8X5oGtWk/1UIgR 4/luNjqKRYS9+8CA== Received: from imap2.suse-dmz.suse.de (imap2.suse-dmz.suse.de [192.168.254.74]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature ECDSA (P-521) server-digest SHA512) (No client certificate requested) by imap2.suse-dmz.suse.de (Postfix) with ESMTPS id A30FD1331F; Wed, 9 Nov 2022 09:32:41 +0000 (UTC) Received: from dovecot-director2.suse.de ([192.168.254.65]) by imap2.suse-dmz.suse.de with ESMTPSA id du3UJLlza2MEdwAAMHmgww (envelope-from ); Wed, 09 Nov 2022 09:32:41 +0000 Received: from localhost (brahms.olymp [local]) by brahms.olymp (OpenSMTPD) with ESMTPA id 2f4229d2; Wed, 9 Nov 2022 09:33:39 +0000 (UTC) Date: Wed, 9 Nov 2022 09:33:39 +0000 From: =?iso-8859-1?Q?Lu=EDs?= Henriques To: Xiubo Li Cc: Ilya Dryomov , Jeff Layton , ceph-devel@vger.kernel.org, linux-kernel@vger.kernel.org Subject: Re: [PATCH v2] ceph: fix memory leak in mount error path when using test_dummy_encryption Message-ID: References: <20221108143421.30993-1-lhenriques@suse.de> <215b729e-0af0-45d8-96af-3d3c319581c9@redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: <215b729e-0af0-45d8-96af-3d3c319581c9@redhat.com> Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Wed, Nov 09, 2022 at 11:08:49AM +0800, Xiubo Li wrote: > > On 08/11/2022 22:34, Luís Henriques wrote: > > Because ceph_init_fs_context() will never be invoced in case we get a > > mount error, destroy_mount_options() won't be releasing fscrypt resources > > with fscrypt_free_dummy_policy(). This will result in a memory leak. Add > > an invocation to this function in the mount error path. > > > > Signed-off-by: Luís Henriques > > --- > > * Changes since v1: > > > > As suggested by Xiubo, moved fscrypt free from ceph_get_tree() to > > ceph_real_mount(). > > > > (Also used 'git format-patch' with '--base' so that the bots know what to > > (not) do with this patch.) > > > > fs/ceph/super.c | 1 + > > 1 file changed, 1 insertion(+) > > > > diff --git a/fs/ceph/super.c b/fs/ceph/super.c > > index 2224d44d21c0..f10a076f47e5 100644 > > --- a/fs/ceph/super.c > > +++ b/fs/ceph/super.c > > @@ -1196,6 +1196,7 @@ static struct dentry *ceph_real_mount(struct ceph_fs_client *fsc, > > out: > > mutex_unlock(&fsc->client->mount_mutex); > > + ceph_fscrypt_free_dummy_policy(fsc); > > return ERR_PTR(err); > > } > > > > base-commit: 8b9ee21dfceadd4cc35a87bbe7f0ad547cffa1be > > prerequisite-patch-id: 34ba9e6b37b68668d261ddbda7858ee6f83c82fa > > prerequisite-patch-id: 87f1b323c29ab8d0a6d012d30fdc39bc49179624 > > prerequisite-patch-id: c94f448ef026375b10748457a3aa46070aa7046e > > > LGTM. > > Thanks Luis. > > Could I fold this into the previous commit ? Yes, sure. I'm fine with that. Cheers, -- Luís