mirror of
https://github.com/samba-team/samba.git
synced 2025-01-11 05:18:09 +03:00
s3:smbd: implement SMB2 Tree Disconnect
metze
This commit is contained in:
parent
7dfbb2835f
commit
202509a347
@ -229,6 +229,7 @@ NTSTATUS smbd_smb2_request_process_negprot(struct smbd_smb2_request *req);
|
||||
NTSTATUS smbd_smb2_request_process_sesssetup(struct smbd_smb2_request *req);
|
||||
NTSTATUS smbd_smb2_request_process_logoff(struct smbd_smb2_request *req);
|
||||
NTSTATUS smbd_smb2_request_process_tcon(struct smbd_smb2_request *req);
|
||||
NTSTATUS smbd_smb2_request_process_tdis(struct smbd_smb2_request *req);
|
||||
NTSTATUS smbd_smb2_request_process_keepalive(struct smbd_smb2_request *req);
|
||||
|
||||
struct smbd_smb2_request {
|
||||
|
@ -326,7 +326,7 @@ static NTSTATUS smbd_smb2_request_dispatch(struct smbd_smb2_request *req)
|
||||
if (!NT_STATUS_IS_OK(status)) {
|
||||
return smbd_smb2_request_error(req, status);
|
||||
}
|
||||
return smbd_smb2_request_error(req, NT_STATUS_NOT_IMPLEMENTED);
|
||||
return smbd_smb2_request_process_tdis(req);
|
||||
|
||||
case SMB2_OP_CREATE:
|
||||
status = smbd_smb2_request_check_session(req);
|
||||
|
@ -194,3 +194,39 @@ NTSTATUS smbd_smb2_request_check_tcon(struct smbd_smb2_request *req)
|
||||
req->tcon = tcon;
|
||||
return NT_STATUS_OK;
|
||||
}
|
||||
|
||||
NTSTATUS smbd_smb2_request_process_tdis(struct smbd_smb2_request *req)
|
||||
{
|
||||
const uint8_t *inbody;
|
||||
int i = req->current_idx;
|
||||
DATA_BLOB outbody;
|
||||
size_t expected_body_size = 0x04;
|
||||
size_t body_size;
|
||||
|
||||
if (req->in.vector[i+1].iov_len != (expected_body_size & 0xFFFFFFFE)) {
|
||||
return smbd_smb2_request_error(req, NT_STATUS_INVALID_PARAMETER);
|
||||
}
|
||||
|
||||
inbody = (const uint8_t *)req->in.vector[i+1].iov_base;
|
||||
|
||||
body_size = SVAL(inbody, 0x00);
|
||||
if (body_size != expected_body_size) {
|
||||
return smbd_smb2_request_error(req, NT_STATUS_INVALID_PARAMETER);
|
||||
}
|
||||
|
||||
/*
|
||||
* TODO: cancel all outstanding requests on the tcon
|
||||
* and delete all file handles.
|
||||
*/
|
||||
TALLOC_FREE(req->tcon);
|
||||
|
||||
outbody = data_blob_talloc(req->out.vector, NULL, 0x04);
|
||||
if (outbody.data == NULL) {
|
||||
return smbd_smb2_request_error(req, NT_STATUS_NO_MEMORY);
|
||||
}
|
||||
|
||||
SSVAL(outbody.data, 0x00, 0x04); /* struct size */
|
||||
SSVAL(outbody.data, 0x02, 0); /* reserved */
|
||||
|
||||
return smbd_smb2_request_done(req, outbody, NULL);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user