summaryrefslogtreecommitdiff
path: root/source4/ntvfs
diff options
context:
space:
mode:
authorStefan Metzmacher <metze@samba.org>2005-07-01 06:05:49 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 13:19:01 -0500
commit8ab3f59a10d00357cb129a2051fd0f694b5c8081 (patch)
treeb1bfb55da681c76d7404216613ad8d5b56795d7d /source4/ntvfs
parent324de0b36d3c128d9fb40c27cd5667aa8bbc62ba (diff)
downloadsamba-8ab3f59a10d00357cb129a2051fd0f694b5c8081.tar.gz
samba-8ab3f59a10d00357cb129a2051fd0f694b5c8081.tar.bz2
samba-8ab3f59a10d00357cb129a2051fd0f694b5c8081.zip
r8036: revert rev 8023/8024 as they have a bugs.
metze (This used to be commit 66d6b1d5783cba98f2f8e1c8eed1bdc26a5bad4f)
Diffstat (limited to 'source4/ntvfs')
-rw-r--r--source4/ntvfs/ipc/vfs_ipc.c71
1 files changed, 30 insertions, 41 deletions
diff --git a/source4/ntvfs/ipc/vfs_ipc.c b/source4/ntvfs/ipc/vfs_ipc.c
index 1be877d7ec..2c148fbd0c 100644
--- a/source4/ntvfs/ipc/vfs_ipc.c
+++ b/source4/ntvfs/ipc/vfs_ipc.c
@@ -350,14 +350,14 @@ static NTSTATUS ipc_copy(struct ntvfs_module_context *ntvfs,
return NT_STATUS_ACCESS_DENIED;
}
-static NTSTATUS ipc_readx_dcesrv_output(void *private_data, DATA_BLOB *output, size_t *nwritten)
+static NTSTATUS ipc_readx_dcesrv_output(void *private_data, DATA_BLOB *out, size_t *nwritten)
{
DATA_BLOB *blob = private_data;
- if (output->length < blob->length) {
- blob->length = output->length;
+ if (out->length < blob->length) {
+ blob->length = out->length;
}
- memcpy(blob->data, output->data, blob->length);
+ memcpy(blob->data, out->data, blob->length);
*nwritten = blob->length;
return NT_STATUS_OK;
}
@@ -616,33 +616,20 @@ static NTSTATUS ipc_search_close(struct ntvfs_module_context *ntvfs,
return NT_STATUS_ACCESS_DENIED;
}
-struct ipctp_dcesrv_output {
- struct smbsrv_request *req;
- struct smb_trans2 *trans;
-};
-static NTSTATUS ipc_trans_dcesrv_output(void *private_data, DATA_BLOB *_output, size_t *nwritten)
+static NTSTATUS ipc_trans_dcesrv_output(void *private_data, DATA_BLOB *out, size_t *nwritten)
{
NTSTATUS status = NT_STATUS_OK;
- DATA_BLOB *output;
- struct ipctp_dcesrv_output *ipctp = private_data;
-
- /*
- * do it the fast way without doing an extra memcpy()
- *
- * we need to reference the the DATA_BLOB itself,
- * because out->data isn't always a valid talloc pointer
- */
- output = talloc_reference(ipctp->req, _output);
- NT_STATUS_HAVE_NO_MEMORY(output);
+ DATA_BLOB *blob = private_data;
- if (output->length > ipctp->trans->in.max_data) {
+ if (out->length > blob->length) {
status = STATUS_BUFFER_OVERFLOW;
}
- ipctp->trans->out.data.data = output->data;
- ipctp->trans->out.data.length = MIN(ipctp->trans->in.max_data, output->length);
-
- *nwritten = ipctp->trans->out.data.length;
+ if (out->length < blob->length) {
+ blob->length = out->length;
+ }
+ memcpy(blob->data, out->data, blob->length);
+ *nwritten = blob->length;
return status;
}
@@ -651,36 +638,38 @@ static NTSTATUS ipc_dcerpc_cmd(struct ntvfs_module_context *ntvfs,
struct smbsrv_request *req, struct smb_trans2 *trans)
{
struct pipe_state *p;
- struct ipc_private *ipcp = ntvfs->private_data;
- struct ipctp_dcesrv_output ipctp;
+ struct ipc_private *private = ntvfs->private_data;
NTSTATUS status;
/* the fnum is in setup[1] */
- p = pipe_state_find(ipcp, trans->in.setup[1]);
- if (!p) return NT_STATUS_INVALID_HANDLE;
+ p = pipe_state_find(private, trans->in.setup[1]);
+ if (!p) {
+ return NT_STATUS_INVALID_HANDLE;
+ }
- /*
- * just to be sure we doesn't have something uninitialized
- * the real work is done in the dcesrv_output() callback
- */
- trans->out.data = data_blob(NULL, 0);
+ trans->out.data = data_blob_talloc(req, NULL, trans->in.max_data);
+ if (!trans->out.data.data) {
+ return NT_STATUS_NO_MEMORY;
+ }
/* pass the data to the dcerpc server. Note that we don't
expect this to fail, and things like NDR faults are not
reported at this stage. Those sorts of errors happen in the
dcesrv_output stage */
status = dcesrv_input(p->dce_conn, &trans->in.data);
- NT_STATUS_NOT_OK_RETURN(status);
+ if (!NT_STATUS_IS_OK(status)) {
+ return status;
+ }
/*
now ask the dcerpc system for some output. This doesn't yet handle
- async calls. Again, we only expect NT_STATUS_OK or STATUS_BUFFER_OVERFLOW.
- If the call fails then the error is encoded at the dcerpc level
+ async calls. Again, we only expect NT_STATUS_OK. If the call fails then
+ the error is encoded at the dcerpc level
*/
- ipctp.req = req;
- ipctp.trans = trans;
- status = dcesrv_output(p->dce_conn, &ipctp, ipc_trans_dcesrv_output);
- NT_STATUS_IS_ERR_RETURN(status);
+ status = dcesrv_output(p->dce_conn, &trans->out.data, ipc_trans_dcesrv_output);
+ if (NT_STATUS_IS_ERR(status)) {
+ return status;
+ }
trans->out.setup_count = 0;
trans->out.setup = NULL;