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()

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 <[email protected]>
  • Loading branch information
namjaejeon committed Dec 22, 2023
1 parent 1e25d8e commit 9141a3a
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions smb2pdu.c
Original file line number Diff line number Diff line change
Expand Up @@ -8876,18 +8876,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 9141a3a

Please sign in to comment.