* re: CIFS: Add session setup/logoff capability for SMB2
@ 2012-09-19 11:31 Dan Carpenter
[not found] ` <20120919113120.GA32381-mgFCXtclrQlZLf2FXnZxJA@public.gmane.org>
0 siblings, 1 reply; 2+ messages in thread
From: Dan Carpenter @ 2012-09-19 11:31 UTC (permalink / raw)
To: piastry-7qunaywFIewox3rIn2DAYQ
Cc: linux-cifs-u79uwXL29TY76Z2rM5mHXA,
samba-technical-w/Ol4Ecudpl8XjKLYN78aQ
Hello Pavel Shilovsky,
This is a semi-automatic email about new static checker warnings.
The patch 5478f9ba9a34: "CIFS: Add session setup/logoff capability
for SMB2" from Dec 27, 2011, leads to the following Smatch complaint:
fs/cifs/smb2pdu.c:672 SMB2_sess_setup()
warn: variable dereferenced before check 'rsp' (see line 657)
fs/cifs/smb2pdu.c
656 ses->Suid = rsp->hdr.SessionId;
^^^^^^^^^^^^^^^^^^
New dereference.
657 rc = decode_ntlmssp_challenge(rsp->Buffer,
658 le16_to_cpu(rsp->SecurityBufferLength), ses);
659 }
660
661 /*
662 * BB eventually add code for SPNEGO decoding of NtlmChallenge blob,
663 * but at least the raw NTLMSSP case works.
664 */
665 /*
666 * No tcon so can't do
667 * cifs_stats_inc(&tcon->stats.smb2_stats.smb2_com_fail[SMB2...]);
668 */
669 if (rc != 0)
670 goto ssetup_exit;
671
672 if (rsp == NULL) {
^^^^^^^^^^^
New check.
673 rc = -EIO;
674 goto ssetup_exit;
regards,
dan carpenter
^ permalink raw reply [flat|nested] 2+ messages in thread[parent not found: <20120919113120.GA32381-mgFCXtclrQlZLf2FXnZxJA@public.gmane.org>]
* Re: CIFS: Add session setup/logoff capability for SMB2 [not found] ` <20120919113120.GA32381-mgFCXtclrQlZLf2FXnZxJA@public.gmane.org> @ 2012-09-19 11:57 ` Pavel Shilovsky 0 siblings, 0 replies; 2+ messages in thread From: Pavel Shilovsky @ 2012-09-19 11:57 UTC (permalink / raw) To: Dan Carpenter Cc: linux-cifs-u79uwXL29TY76Z2rM5mHXA, samba-technical-w/Ol4Ecudpl8XjKLYN78aQ 2012/9/19 Dan Carpenter <dan.carpenter-QHcLZuEGTsvQT0dZR+AlfA@public.gmane.org>: > Hello Pavel Shilovsky, > > This is a semi-automatic email about new static checker warnings. > > The patch 5478f9ba9a34: "CIFS: Add session setup/logoff capability > for SMB2" from Dec 27, 2011, leads to the following Smatch complaint: > > fs/cifs/smb2pdu.c:672 SMB2_sess_setup() > warn: variable dereferenced before check 'rsp' (see line 657) > > fs/cifs/smb2pdu.c > 656 ses->Suid = rsp->hdr.SessionId; > ^^^^^^^^^^^^^^^^^^ > New dereference. > > 657 rc = decode_ntlmssp_challenge(rsp->Buffer, > 658 le16_to_cpu(rsp->SecurityBufferLength), ses); > 659 } > 660 > 661 /* > 662 * BB eventually add code for SPNEGO decoding of NtlmChallenge blob, > 663 * but at least the raw NTLMSSP case works. > 664 */ > 665 /* > 666 * No tcon so can't do > 667 * cifs_stats_inc(&tcon->stats.smb2_stats.smb2_com_fail[SMB2...]); > 668 */ > 669 if (rc != 0) > 670 goto ssetup_exit; > 671 > 672 if (rsp == NULL) { > ^^^^^^^^^^^ > New check. > > 673 rc = -EIO; > 674 goto ssetup_exit; > > regards, > dan carpenter > Ok, it makes sense. Also I think we should remove all checks like: if (rsp == NULL) { ... } because rsp can't be NULL in rc == 0 case. -- Best regards, Pavel Shilovsky. ^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2012-09-19 11:57 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-09-19 11:31 CIFS: Add session setup/logoff capability for SMB2 Dan Carpenter
[not found] ` <20120919113120.GA32381-mgFCXtclrQlZLf2FXnZxJA@public.gmane.org>
2012-09-19 11:57 ` Pavel Shilovsky
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox