From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-alma10-1.taild15c8.ts.net [100.103.45.18]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 784693806BD; Thu, 30 Jul 2026 15:47:42 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=100.103.45.18 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1785426463; cv=none; b=Hm1yotCXtg36D33IiGk1Tw5z9mV0wi4I7QUE+uZzmi+1x+2Y4WdnEwHWIPYGXLWNKTmSEkmlueZBXAs+PF/3Zr9DJYzHGIjP8jiJkXh5Gn6dI8HiYc9Rto5xelzjOd9sM4LnkteP4PlSqzI0oT1Qrl2kBCqWJRgryjJARQhimYg= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1785426463; c=relaxed/simple; bh=gwZQwoZBm95Ae+1kQbKstLzijXH7GuLGbJfExBRpTM4=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=OOYyiiHlXSY9Df8lCOV1hyErUQLQ3dlFEdC9OthBUbF/0VwF24292ZncFo2PdNd2C/3OAab3hsXMPoHv9G002W3AGf7Fd7OWXpNPVUATyvyE7xx5GvfCChCdkqtnwKweVYiAZxChKr8Hf7/FOUY8pp3wNZSLegBDVR6VygWEy4E= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=CRDhvv0y; arc=none smtp.client-ip=100.103.45.18 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b="CRDhvv0y" Received: by smtp.kernel.org (Postfix) with ESMTPSA id CC0731F000E9; Thu, 30 Jul 2026 15:47:41 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linuxfoundation.org; s=korg; t=1785426462; bh=eMeoBjF2eRqVOnCfcKpNT/11HPuQwq286r3UQtsiihA=; h=From:To:Cc:Subject:Date:In-Reply-To:References; b=CRDhvv0y72nDyUeiq/RDC+j/C0loBnWDSpDqnYHITz1vCS/aWviLvsXcXqC/zMAs9 6djURTWEw8lXPi9woDT4dGA4mIYiMJf1zgRfNgZZNVXwJwHRfzsc2DmaLswwbMNYfr q78+JwZS4xb/cyMaWELEBi9fv9gn7yv5njdWRg9I= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, James Montgomery , Namjae Jeon , Steve French Subject: [PATCH 6.12 421/602] ksmbd: defer destroy_previous_session() until after NTLM authentication Date: Thu, 30 Jul 2026 16:13:33 +0200 Message-ID: <20260730141444.812587056@linuxfoundation.org> X-Mailer: git-send-email 2.55.0 In-Reply-To: <20260730141435.976815864@linuxfoundation.org> References: <20260730141435.976815864@linuxfoundation.org> User-Agent: quilt/0.69 X-stable: review X-Patchwork-Hint: ignore Precedence: bulk X-Mailing-List: patches@lists.linux.dev List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit 6.12-stable review patch. If anyone has any objections, please let me know. ------------------ From: James Montgomery commit c74801ee524f477c174a1899782b6c3b6918d407 upstream. In ntlm_authenticate(), destroy_previous_session() is called using a user pointer resolved from the client-supplied NTLM blob username field before the NTLMv2 response is validated. An authenticated attacker can set the NTLM blob username to match a victim account and set PreviousSessionId to the victim's session ID; destroy_previous_session() destroys the victim's session while ksmbd_decode_ntlmssp_auth_blob() subsequently rejects the request with -EPERM. Move destroy_previous_session() and the prev_id assignment to after ksmbd_decode_ntlmssp_auth_blob() returns success and use sess->user rather than the pre-authentication lookup result. This matches the ordering already used by krb5_authenticate(), where destroy_previous_session() is called only after ksmbd_krb5_authenticate() returns success. Fixes: e2f34481b24d ("cifsd: add server-side procedures for SMB3") Cc: stable@vger.kernel.org Link: https://lore.kernel.org/linux-cifs/20260702155449.3639773-1-james_montgomery@disroot.org/ Signed-off-by: James Montgomery Acked-by: Namjae Jeon Signed-off-by: Steve French Signed-off-by: Greg Kroah-Hartman --- fs/smb/server/smb2pdu.c | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) --- a/fs/smb/server/smb2pdu.c +++ b/fs/smb/server/smb2pdu.c @@ -1489,11 +1489,6 @@ static int ntlm_authenticate(struct ksmb return -EPERM; } - /* Check for previous session */ - prev_id = le64_to_cpu(req->PreviousSessionId); - if (prev_id && prev_id != sess->id) - destroy_previous_session(conn, user, prev_id); - if (sess->state == SMB2_SESSION_VALID) { /* * Reuse session if anonymous try to connect @@ -1531,6 +1526,10 @@ static int ntlm_authenticate(struct ksmb } } + prev_id = le64_to_cpu(req->PreviousSessionId); + if (prev_id && prev_id != sess->id) + destroy_previous_session(conn, sess->user, prev_id); + /* * If session state is SMB2_SESSION_VALID, We can assume * that it is reauthentication. And the user/password