* [PATCH v2] smb2: fix uninitialized variable bug in smb2_ioctl_query_info
@ 2018-10-09 20:17 Gustavo A. R. Silva
2018-10-09 21:47 ` Ronnie Sahlberg
0 siblings, 1 reply; 3+ messages in thread
From: Gustavo A. R. Silva @ 2018-10-09 20:17 UTC (permalink / raw)
To: Steve French, Ronnie Sahlberg
Cc: linux-cifs, samba-technical, linux-kernel, Gustavo A. R. Silva
There is a potential execution path in which variable *resp_buftype*
is passed as an argument to function free_rsp_buf(), in which it is
used in a comparison without being properly initialized previously.
Fix this by initializing variable *resp_buftype* to -1 in order to
avoid unpredictable or unintended results.
Addresses-Coverity-ID: 1473971 ("Uninitialized scalar variable")
Fixes: c5d25bdb2967 ("cifs: add IOCTL for QUERY_INFO passthrough to userspace")
Signed-off-by: Gustavo A. R. Silva <gustavo@embeddedor.com>
---
Changes in v2:
- Fix Coverity and Fixes tag.
- Update commit log.
fs/cifs/smb2ops.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/fs/cifs/smb2ops.c b/fs/cifs/smb2ops.c
index c6c6450d..927aadd 100644
--- a/fs/cifs/smb2ops.c
+++ b/fs/cifs/smb2ops.c
@@ -1133,7 +1133,7 @@ smb2_ioctl_query_info(const unsigned int xid,
struct smb_rqst rqst;
struct kvec iov[1];
struct kvec rsp_iov;
- int resp_buftype;
+ int resp_buftype = -1;
struct smb2_query_info_rsp *rsp = NULL;
void *buffer;
--
2.7.4
^ permalink raw reply related [flat|nested] 3+ messages in thread* Re: [PATCH v2] smb2: fix uninitialized variable bug in smb2_ioctl_query_info
2018-10-09 20:17 [PATCH v2] smb2: fix uninitialized variable bug in smb2_ioctl_query_info Gustavo A. R. Silva
@ 2018-10-09 21:47 ` Ronnie Sahlberg
2018-10-09 21:53 ` Gustavo A. R. Silva
0 siblings, 1 reply; 3+ messages in thread
From: Ronnie Sahlberg @ 2018-10-09 21:47 UTC (permalink / raw)
To: Gustavo A. R. Silva
Cc: Steve French, linux-cifs, samba-technical, linux-kernel
Good catch, but I think it should be :
int resp_buftype = CIFS_NO_BUFFER;
----- Original Message -----
From: "Gustavo A. R. Silva" <gustavo@embeddedor.com>
To: "Steve French" <sfrench@samba.org>, "Ronnie Sahlberg" <lsahlber@redhat.com>
Cc: linux-cifs@vger.kernel.org, samba-technical@lists.samba.org, linux-kernel@vger.kernel.org, "Gustavo A. R. Silva" <gustavo@embeddedor.com>
Sent: Wednesday, 10 October, 2018 6:17:48 AM
Subject: [PATCH v2] smb2: fix uninitialized variable bug in smb2_ioctl_query_info
There is a potential execution path in which variable *resp_buftype*
is passed as an argument to function free_rsp_buf(), in which it is
used in a comparison without being properly initialized previously.
Fix this by initializing variable *resp_buftype* to -1 in order to
avoid unpredictable or unintended results.
Addresses-Coverity-ID: 1473971 ("Uninitialized scalar variable")
Fixes: c5d25bdb2967 ("cifs: add IOCTL for QUERY_INFO passthrough to userspace")
Signed-off-by: Gustavo A. R. Silva <gustavo@embeddedor.com>
---
Changes in v2:
- Fix Coverity and Fixes tag.
- Update commit log.
fs/cifs/smb2ops.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/fs/cifs/smb2ops.c b/fs/cifs/smb2ops.c
index c6c6450d..927aadd 100644
--- a/fs/cifs/smb2ops.c
+++ b/fs/cifs/smb2ops.c
@@ -1133,7 +1133,7 @@ smb2_ioctl_query_info(const unsigned int xid,
struct smb_rqst rqst;
struct kvec iov[1];
struct kvec rsp_iov;
- int resp_buftype;
+ int resp_buftype = -1;
struct smb2_query_info_rsp *rsp = NULL;
void *buffer;
--
2.7.4
^ permalink raw reply related [flat|nested] 3+ messages in thread* Re: [PATCH v2] smb2: fix uninitialized variable bug in smb2_ioctl_query_info
2018-10-09 21:47 ` Ronnie Sahlberg
@ 2018-10-09 21:53 ` Gustavo A. R. Silva
0 siblings, 0 replies; 3+ messages in thread
From: Gustavo A. R. Silva @ 2018-10-09 21:53 UTC (permalink / raw)
To: Ronnie Sahlberg; +Cc: Steve French, linux-cifs, samba-technical, linux-kernel
Hey Ronnie,
On 10/9/18 11:47 PM, Ronnie Sahlberg wrote:
> Good catch, but I think it should be :
>
> int resp_buftype = CIFS_NO_BUFFER;
>
Oh okay. I'll send v3 shortly.
Thanks for the feedback.
--
Gustavo
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2018-10-09 21:53 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-10-09 20:17 [PATCH v2] smb2: fix uninitialized variable bug in smb2_ioctl_query_info Gustavo A. R. Silva
2018-10-09 21:47 ` Ronnie Sahlberg
2018-10-09 21:53 ` Gustavo A. R. Silva
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox