diff options
author | Andrew Tridgell <tridge@samba.org> | 2005-12-01 00:18:29 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 13:46:53 -0500 |
commit | 6615907b94eb2395ddf907e92a543ff0525b9d02 (patch) | |
tree | b95434fb1798f78ac2753cd55e4b2da19ea26fde /source4/librpc/rpc | |
parent | a9cdc6321ac1aeafae6200afefd12f83c5786868 (diff) | |
download | samba-6615907b94eb2395ddf907e92a543ff0525b9d02.tar.gz samba-6615907b94eb2395ddf907e92a543ff0525b9d02.tar.bz2 samba-6615907b94eb2395ddf907e92a543ff0525b9d02.zip |
r11980: ronnie worked out that opcode 0xb in SMB2 is in fact ioctl, and that
it only appeared to be like a SMBtrans request as it was being called
with function 0x11c017 which is "named pipe read write"
I wonder if this means we could do DCE/RPC over SMB using ntioctl
calls as well?
(This used to be commit f2b8857797328be64b0b85e875ae6d108e2aeaaa)
Diffstat (limited to 'source4/librpc/rpc')
-rw-r--r-- | source4/librpc/rpc/dcerpc_smb2.c | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/source4/librpc/rpc/dcerpc_smb2.c b/source4/librpc/rpc/dcerpc_smb2.c index d733ab4713..46e11d4edd 100644 --- a/source4/librpc/rpc/dcerpc_smb2.c +++ b/source4/librpc/rpc/dcerpc_smb2.c @@ -26,6 +26,7 @@ #include "libcli/composite/composite.h" #include "libcli/smb2/smb2.h" #include "libcli/smb2/smb2_calls.h" +#include "ioctl.h" /* transport private information used by SMB2 pipe transport */ struct smb2_private { @@ -191,9 +192,9 @@ static void smb2_trans_callback(struct smb2_request *req) struct smb2_trans_state); struct dcerpc_connection *c = state->c; NTSTATUS status; - struct smb2_trans io; + struct smb2_ioctl io; - status = smb2_trans_recv(req, state, &io); + status = smb2_ioctl_recv(req, state, &io); if (NT_STATUS_IS_ERR(status)) { pipe_dead(c, status); return; @@ -213,13 +214,13 @@ static void smb2_trans_callback(struct smb2_request *req) } /* - send a SMBtrans style request + send a SMBtrans style request, using a named pipe read_write fsctl */ static NTSTATUS smb2_send_trans_request(struct dcerpc_connection *c, DATA_BLOB *blob) { struct smb2_private *smb = talloc_get_type(c->transport.private, struct smb2_private); - struct smb2_trans io; + struct smb2_ioctl io; struct smb2_trans_state *state; struct smb2_request *req; @@ -231,13 +232,13 @@ static NTSTATUS smb2_send_trans_request(struct dcerpc_connection *c, DATA_BLOB * state->c = c; ZERO_STRUCT(io); - io.in.pipe_flags = SMB2_TRANS_PIPE_FLAGS; + io.in.function = FSCTL_NAMED_PIPE_READ_WRITE; io.in.handle = smb->handle; io.in.max_response_size = 0x1000; io.in.flags = 1; io.in.out = *blob; - req = smb2_trans_send(smb->tree, &io); + req = smb2_ioctl_send(smb->tree, &io); if (req == NULL) { talloc_free(state); return NT_STATUS_NO_MEMORY; |