From: Dan Carpenter <dan.carpenter@oracle.com>
To: kbuild@01.org, Steve French <stfrench@microsoft.com>
Cc: kbuild-all@01.org, linux-cifs@vger.kernel.org,
samba-technical@lists.samba.org,
Ronnie Sahlberg <lsahlber@redhat.com>
Subject: [cifs:for-next 24/31] fs/cifs/smb2ops.c:4056 smb2_decrypt_offload() error: we previously assumed 'mid' could be null (see line 4045)
Date: Fri, 13 Sep 2019 16:46:34 +0300 [thread overview]
Message-ID: <20190913134634.GR20699@kadam> (raw)
tree: git://git.samba.org/sfrench/cifs-2.6.git for-next
head: 5fc321fb644fc787710353be11129edadd313f3a
commit: a091c5f67c994d154e8faf95ab774644be2f4dd7 [24/31] smb3: allow parallelizing decryption of reads
If you fix the issue, kindly add following tag
Reported-by: kbuild test robot <lkp@intel.com>
Reported-by: Dan Carpenter <dan.carpenter@oracle.com>
New smatch warnings:
fs/cifs/smb2ops.c:4056 smb2_decrypt_offload() error: we previously assumed 'mid' could be null (see line 4045)
git remote add cifs git://git.samba.org/sfrench/cifs-2.6.git
git remote update cifs
git checkout a091c5f67c994d154e8faf95ab774644be2f4dd7
vim +/mid +4056 fs/cifs/smb2ops.c
a091c5f67c994d Steve French 2019-09-07 4030 static void smb2_decrypt_offload(struct work_struct *work)
a091c5f67c994d Steve French 2019-09-07 4031 {
a091c5f67c994d Steve French 2019-09-07 4032 struct smb2_decrypt_work *dw = container_of(work,
a091c5f67c994d Steve French 2019-09-07 4033 struct smb2_decrypt_work, decrypt);
a091c5f67c994d Steve French 2019-09-07 4034 int i, rc;
a091c5f67c994d Steve French 2019-09-07 4035 struct mid_q_entry *mid;
a091c5f67c994d Steve French 2019-09-07 4036
a091c5f67c994d Steve French 2019-09-07 4037 rc = decrypt_raw_data(dw->server, dw->buf, dw->server->vals->read_rsp_size,
a091c5f67c994d Steve French 2019-09-07 4038 dw->ppages, dw->npages, dw->len);
a091c5f67c994d Steve French 2019-09-07 4039 if (rc) {
a091c5f67c994d Steve French 2019-09-07 4040 cifs_dbg(VFS, "error decrypting rc=%d\n", rc);
a091c5f67c994d Steve French 2019-09-07 4041 goto free_pages;
a091c5f67c994d Steve French 2019-09-07 4042 }
a091c5f67c994d Steve French 2019-09-07 4043
a091c5f67c994d Steve French 2019-09-07 4044 mid = smb2_find_mid(dw->server, dw->buf);
a091c5f67c994d Steve French 2019-09-07 @4045 if (mid == NULL)
a091c5f67c994d Steve French 2019-09-07 4046 cifs_dbg(FYI, "mid not found\n");
Return here?
a091c5f67c994d Steve French 2019-09-07 4047 else {
a091c5f67c994d Steve French 2019-09-07 4048 mid->decrypted = true;
a091c5f67c994d Steve French 2019-09-07 4049 rc = handle_read_data(dw->server, mid, dw->buf,
a091c5f67c994d Steve French 2019-09-07 4050 dw->server->vals->read_rsp_size,
a091c5f67c994d Steve French 2019-09-07 4051 dw->ppages, dw->npages, dw->len);
a091c5f67c994d Steve French 2019-09-07 4052 }
a091c5f67c994d Steve French 2019-09-07 4053
a091c5f67c994d Steve French 2019-09-07 4054 dw->server->lstrp = jiffies;
a091c5f67c994d Steve French 2019-09-07 4055
a091c5f67c994d Steve French 2019-09-07 @4056 mid->callback(mid);
^^^^^^^^^^^^^
Potential NULL derference.
a091c5f67c994d Steve French 2019-09-07 4057
a091c5f67c994d Steve French 2019-09-07 4058 cifs_mid_q_entry_release(mid);
a091c5f67c994d Steve French 2019-09-07 4059
a091c5f67c994d Steve French 2019-09-07 4060 free_pages:
a091c5f67c994d Steve French 2019-09-07 4061 for (i = dw->npages-1; i >= 0; i--)
a091c5f67c994d Steve French 2019-09-07 4062 put_page(dw->ppages[i]);
a091c5f67c994d Steve French 2019-09-07 4063
a091c5f67c994d Steve French 2019-09-07 4064 kfree(dw->ppages);
a091c5f67c994d Steve French 2019-09-07 4065 cifs_small_buf_release(dw->buf);
a091c5f67c994d Steve French 2019-09-07 4066 }
---
0-DAY kernel test infrastructure Open Source Technology Center
https://lists.01.org/pipermail/kbuild-all Intel Corporation
next reply other threads:[~2019-09-13 13:47 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-09-13 13:46 Dan Carpenter [this message]
2019-09-13 17:08 ` [cifs:for-next 24/31] fs/cifs/smb2ops.c:4056 smb2_decrypt_offload() error: we previously assumed 'mid' could be null (see line 4045) Pavel Shilovsky
2019-09-13 21:52 ` Steve French
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20190913134634.GR20699@kadam \
--to=dan.carpenter@oracle.com \
--cc=kbuild-all@01.org \
--cc=kbuild@01.org \
--cc=linux-cifs@vger.kernel.org \
--cc=lsahlber@redhat.com \
--cc=samba-technical@lists.samba.org \
--cc=stfrench@microsoft.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).