From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (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 C882A3BB42 for ; Mon, 11 Dec 2023 12:47:41 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b="sbBli2VT" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 4B02AC433C7; Mon, 11 Dec 2023 12:47:41 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1702298861; bh=14Royubt+9H+h8EaWGq2BV88PNODzYWhwOpfY16axlM=; h=Subject:To:Cc:From:Date:From; b=sbBli2VTyxfhVyav4nJzkLgOXTAR9BQZoa+C+9QjMZ5c/cs34FwGi4gAY2ngZ2NQm gFcoXrkUnF+CMX5cpRkdwiyglc5pORspotxRZaF+vgJBdsF6QQMUmvcf92rNerYJ6m 0f9vdbAGirGu0ug41bNjMFt1cOyJi2B/eDzY1fYc= Subject: FAILED: patch "[PATCH] smb: client: fix potential NULL deref in" failed to apply to 5.15-stable tree To: pc@manguebit.com,rtm@csail.mit.edu,stfrench@microsoft.com Cc: From: Date: Mon, 11 Dec 2023 13:47:38 +0100 Message-ID: <2023121138-alias-goofiness-2060@gregkh> Precedence: bulk X-Mailing-List: stable@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Type: text/plain; charset=ANSI_X3.4-1968 Content-Transfer-Encoding: 8bit The patch below does not apply to the 5.15-stable tree. If someone wants it applied there, or to any other stable or longterm tree, then please email the backport, including the original git commit id to . To reproduce the conflict and resubmit, you may use the following commands: git fetch https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/ linux-5.15.y git checkout FETCH_HEAD git cherry-pick -x 92414333eb375ed64f4ae92d34d579e826936480 # git commit -s git send-email --to '' --in-reply-to '2023121138-alias-goofiness-2060@gregkh' --subject-prefix 'PATCH 5.15.y' HEAD^.. Possible dependencies: 92414333eb37 ("smb: client: fix potential NULL deref in parse_dfs_referrals()") thanks, greg k-h ------------------ original commit in Linus's tree ------------------ >From 92414333eb375ed64f4ae92d34d579e826936480 Mon Sep 17 00:00:00 2001 From: Paulo Alcantara Date: Tue, 5 Dec 2023 21:49:29 -0300 Subject: [PATCH] smb: client: fix potential NULL deref in parse_dfs_referrals() If server returned no data for FSCTL_DFS_GET_REFERRALS, @dfs_rsp will remain NULL and then parse_dfs_referrals() will dereference it. Fix this by returning -EIO when no output data is returned. Besides, we can't fix it in SMB2_ioctl() as some FSCTLs are allowed to return no data as per MS-SMB2 2.2.32. Fixes: 9d49640a21bf ("CIFS: implement get_dfs_refer for SMB2+") Cc: stable@vger.kernel.org Reported-by: Robert Morris Signed-off-by: Paulo Alcantara (SUSE) Signed-off-by: Steve French diff --git a/fs/smb/client/smb2ops.c b/fs/smb/client/smb2ops.c index 45931115f475..fcfb6566b899 100644 --- a/fs/smb/client/smb2ops.c +++ b/fs/smb/client/smb2ops.c @@ -2836,6 +2836,8 @@ smb2_get_dfs_refer(const unsigned int xid, struct cifs_ses *ses, usleep_range(512, 2048); } while (++retry_count < 5); + if (!rc && !dfs_rsp) + rc = -EIO; if (rc) { if (!is_retryable_error(rc) && rc != -ENOENT && rc != -EOPNOTSUPP) cifs_tcon_dbg(VFS, "%s: ioctl error: rc=%d\n", __func__, rc);