Commit cb6d5aa9 authored by Zilin Guan's avatar Zilin Guan Committed by Steve French
Browse files

cifs: Fix memory and information leak in smb3_reconfigure()



In smb3_reconfigure(), if smb3_sync_session_ctx_passwords() fails, the
function returns immediately without freeing and erasing the newly
allocated new_password and new_password2. This causes both a memory leak
and a potential information leak.

Fix this by calling kfree_sensitive() on both password buffers before
returning in this error case.

Fixes: 0f0e3579 ("cifs: during remount, make sure passwords are in sync")
Signed-off-by: default avatarZilin Guan <zilin@seu.edu.cn>
Reviewed-by: default avatarChenXiaoSong <chenxiaosong@kylinos.cn>
Signed-off-by: default avatarSteve French <stfrench@microsoft.com>
parent 9448598b
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -1139,6 +1139,8 @@ static int smb3_reconfigure(struct fs_context *fc)
	rc = smb3_sync_session_ctx_passwords(cifs_sb, ses);
	if (rc) {
		mutex_unlock(&ses->session_mutex);
		kfree_sensitive(new_password);
		kfree_sensitive(new_password2);
		return rc;
	}