[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <20231113145232.12448-1-abelova@astralinux.ru>
Date: Mon, 13 Nov 2023 17:52:32 +0300
From: Anastasia Belova <abelova@...ralinux.ru>
To: Steve French <sfrench@...ba.org>
Cc: Anastasia Belova <abelova@...ralinux.ru>,
Paulo Alcantara <pc@...guebit.com>,
Ronnie Sahlberg <lsahlber@...hat.com>,
Shyam Prasad N <sprasad@...rosoft.com>,
Tom Talpey <tom@...pey.com>, Jeff Layton <jlayton@...nel.org>,
linux-cifs@...r.kernel.org, samba-technical@...ts.samba.org,
linux-kernel@...r.kernel.org, lvc-project@...uxtesting.org,
Ekaterina Esina <eesina@...ralinux.ru>
Subject: [PATCH] cifs: spnego: add ';' in HOST_KEY_LEN
"host=" should start with ';' (as in cifs_get_spnego_key)
So its length should be 6.
Found by Linux Verification Center (linuxtesting.org) with SVACE.
Fixes: 7c9c3760b3a5 ("[CIFS] add constants for string lengths of keynames in SPNEGO upcall string")
Signed-off-by: Anastasia Belova <abelova@...ralinux.ru>
Co-developed-by: Ekaterina Esina <eesina@...ralinux.ru>
Signed-off-by: Ekaterina Esina <eesina@...ralinux.ru>
---
fs/smb/client/cifs_spnego.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/fs/smb/client/cifs_spnego.c b/fs/smb/client/cifs_spnego.c
index 6f3285f1dfee..af7849e5974f 100644
--- a/fs/smb/client/cifs_spnego.c
+++ b/fs/smb/client/cifs_spnego.c
@@ -64,8 +64,8 @@ struct key_type cifs_spnego_key_type = {
* strlen(";sec=ntlmsspi") */
#define MAX_MECH_STR_LEN 13
-/* strlen of "host=" */
-#define HOST_KEY_LEN 5
+/* strlen of ";host=" */
+#define HOST_KEY_LEN 6
/* strlen of ";ip4=" or ";ip6=" */
#define IP_KEY_LEN 5
--
2.30.2
Powered by blists - more mailing lists