Skip to content

Commit

Permalink
ksmbd: avoid duplicate opinfo_put() call on error of smb21_lease_brea…
Browse files Browse the repository at this point in the history
…k_ack()

[ Upstream commit 658609d ]

opinfo_put() could be called twice on error of smb21_lease_break_ack().
It will cause UAF issue if opinfo is referenced on other places.

Signed-off-by: Namjae Jeon <linkinjeon@kernel.org>
Signed-off-by: Steve French <stfrench@microsoft.com>
Signed-off-by: Sasha Levin <sashal@kernel.org>
  • Loading branch information
namjaejeon authored and gregkh committed Jan 5, 2024
1 parent ab5a0a1 commit 861eaba
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions fs/smb/server/smb2pdu.c
Original file line number Diff line number Diff line change
Expand Up @@ -8219,18 +8219,18 @@ static void smb21_lease_break_ack(struct ksmbd_work *work)
le32_to_cpu(req->LeaseState));
}

if (ret < 0) {
rsp->hdr.Status = err;
goto err_out;
}

lease_state = lease->state;
opinfo->op_state = OPLOCK_STATE_NONE;
wake_up_interruptible_all(&opinfo->oplock_q);
atomic_dec(&opinfo->breaking_cnt);
wake_up_interruptible_all(&opinfo->oplock_brk);
opinfo_put(opinfo);

if (ret < 0) {
rsp->hdr.Status = err;
goto err_out;
}

rsp->StructureSize = cpu_to_le16(36);
rsp->Reserved = 0;
rsp->Flags = 0;
Expand Down

0 comments on commit 861eaba

Please sign in to comment.