All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] udf: fix nls leak on udf_fill_super() failure
@ 2026-02-11 20:18 Al Viro
  2026-02-12  9:59 ` Jan Kara
  0 siblings, 1 reply; 4+ messages in thread
From: Al Viro @ 2026-02-11 20:18 UTC (permalink / raw)
  To: Jan Kara; +Cc: linux-fsdevel, Eric Sandeen

[in viro/vfs.git #fixes at the moment; if you want to put it through your
tree, just say so]

On all failure exits that go to error_out there we have already moved the
nls reference from uopt->nls_map to sbi->s_nls_map, leaving NULL behind.
    
Fixes: c4e89cc674ac ("udf: convert to new mount API")
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
---
diff --git a/fs/udf/super.c b/fs/udf/super.c
index b2f168b0a0d1..97a51c64ad48 100644
--- a/fs/udf/super.c
+++ b/fs/udf/super.c
@@ -2320,7 +2320,7 @@ static int udf_fill_super(struct super_block *sb, struct fs_context *fc)
 
 error_out:
 	iput(sbi->s_vat_inode);
-	unload_nls(uopt->nls_map);
+	unload_nls(sbi->s_nls_map);
 	if (lvid_open)
 		udf_close_lvid(sb);
 	brelse(sbi->s_lvid_bh);

^ permalink raw reply related	[flat|nested] 4+ messages in thread

* Re: [PATCH] udf: fix nls leak on udf_fill_super() failure
  2026-02-11 20:18 [PATCH] udf: fix nls leak on udf_fill_super() failure Al Viro
@ 2026-02-12  9:59 ` Jan Kara
  2026-06-15  2:36   ` [git pull] old udf fix Al Viro
  0 siblings, 1 reply; 4+ messages in thread
From: Jan Kara @ 2026-02-12  9:59 UTC (permalink / raw)
  To: Al Viro; +Cc: Jan Kara, linux-fsdevel, Eric Sandeen

On Wed 11-02-26 20:18:45, Al Viro wrote:
> [in viro/vfs.git #fixes at the moment; if you want to put it through your
> tree, just say so]
> 
> On all failure exits that go to error_out there we have already moved the
> nls reference from uopt->nls_map to sbi->s_nls_map, leaving NULL behind.
>     
> Fixes: c4e89cc674ac ("udf: convert to new mount API")
> Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>

Thanks for catching this! It's fine if you merge it so feel free to add:

Acked-by: Jan Kara <jack@suse.cz>

								Honza

> ---
> diff --git a/fs/udf/super.c b/fs/udf/super.c
> index b2f168b0a0d1..97a51c64ad48 100644
> --- a/fs/udf/super.c
> +++ b/fs/udf/super.c
> @@ -2320,7 +2320,7 @@ static int udf_fill_super(struct super_block *sb, struct fs_context *fc)
>  
>  error_out:
>  	iput(sbi->s_vat_inode);
> -	unload_nls(uopt->nls_map);
> +	unload_nls(sbi->s_nls_map);
>  	if (lvid_open)
>  		udf_close_lvid(sb);
>  	brelse(sbi->s_lvid_bh);
-- 
Jan Kara <jack@suse.com>
SUSE Labs, CR

^ permalink raw reply	[flat|nested] 4+ messages in thread

* [git pull] old udf fix
  2026-02-12  9:59 ` Jan Kara
@ 2026-06-15  2:36   ` Al Viro
  2026-06-15 10:27     ` pr-tracker-bot
  0 siblings, 1 reply; 4+ messages in thread
From: Al Viro @ 2026-06-15  2:36 UTC (permalink / raw)
  To: Linus Torvalds; +Cc: Jan Kara, linux-fsdevel, Eric Sandeen

[just noticed that udf fix had been sitting in #fixes since February;
still applicable, Jan's Acked-by applied, very belated pull request
follows]

The following changes since commit 2005aabe94eaab8608879d98afb901bc99bc3a31:

  functionfs: use spinlock for FFS_DEACTIVATED/FFS_CLOSING transitions (2026-02-05 13:53:12 -0500)

are available in the Git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/viro/vfs.git tags/pull-fixes

for you to fetch changes up to 462bdd08fbdf41db223c6117d907c8fd68d666ea:

  udf: fix nls leak on udf_fill_super() failure (2026-06-14 22:29:21 -0400)

----------------------------------------------------------------
old udf fix that had fallen through the cracks...

Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>

----------------------------------------------------------------
Al Viro (1):
      udf: fix nls leak on udf_fill_super() failure

 fs/udf/super.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [git pull] old udf fix
  2026-06-15  2:36   ` [git pull] old udf fix Al Viro
@ 2026-06-15 10:27     ` pr-tracker-bot
  0 siblings, 0 replies; 4+ messages in thread
From: pr-tracker-bot @ 2026-06-15 10:27 UTC (permalink / raw)
  To: Al Viro; +Cc: Linus Torvalds, Jan Kara, linux-fsdevel, Eric Sandeen

The pull request you sent on Mon, 15 Jun 2026 03:36:21 +0100:

> git://git.kernel.org/pub/scm/linux/kernel/git/viro/vfs.git tags/pull-fixes

has been merged into torvalds/linux.git:
https://git.kernel.org/torvalds/c/0e0611827f3349d0a2ac121c023a6d3260dcecdb

Thank you!

-- 
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/prtracker.html

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2026-06-15 10:27 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-02-11 20:18 [PATCH] udf: fix nls leak on udf_fill_super() failure Al Viro
2026-02-12  9:59 ` Jan Kara
2026-06-15  2:36   ` [git pull] old udf fix Al Viro
2026-06-15 10:27     ` pr-tracker-bot

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.