summaryrefslogtreecommitdiff
path: root/libcli/util
diff options
context:
space:
mode:
authorStefan Metzmacher <metze@samba.org>2010-09-22 20:31:06 +0200
committerStefan Metzmacher <metze@samba.org>2010-09-26 06:45:38 +0200
commite628bf1081929684d888353101296cc17d9f3ae4 (patch)
treed01752ba3cea57f3c70c34bca84da78d4f60828d /libcli/util
parent0b5a556b76f0d05457c1c370b0f81fba124190a3 (diff)
downloadsamba-e628bf1081929684d888353101296cc17d9f3ae4.tar.gz
samba-e628bf1081929684d888353101296cc17d9f3ae4.tar.bz2
samba-e628bf1081929684d888353101296cc17d9f3ae4.zip
libcli/util: let tstream_read_pdu_blob_* cope with variable length headers
metze
Diffstat (limited to 'libcli/util')
-rw-r--r--libcli/util/tstream.c18
1 files changed, 13 insertions, 5 deletions
diff --git a/libcli/util/tstream.c b/libcli/util/tstream.c
index 5d0e561193..b287597c62 100644
--- a/libcli/util/tstream.c
+++ b/libcli/util/tstream.c
@@ -97,7 +97,9 @@ static void tstream_read_pdu_blob_done(struct tevent_req *subreq)
struct tstream_read_pdu_blob_state);
ssize_t ret;
int sys_errno;
- size_t pdu_size;
+ size_t old_buf_size = state->pdu_blob.length;
+ size_t new_buf_size = 0;
+ size_t pdu_size = 0;
NTSTATUS status;
uint8_t *buf;
@@ -116,20 +118,26 @@ static void tstream_read_pdu_blob_done(struct tevent_req *subreq)
return;
} else if (NT_STATUS_EQUAL(status, STATUS_MORE_ENTRIES)) {
/* more to get */
+ if (pdu_size > 0) {
+ new_buf_size = pdu_size;
+ } else {
+ /* we don't know the size yet, so get one more byte */
+ new_buf_size = old_buf_size + 1;
+ }
} else if (!NT_STATUS_IS_OK(status)) {
tevent_req_nterror(req, status);
return;
}
- buf = talloc_realloc(state, state->pdu_blob.data, uint8_t, pdu_size);
+ buf = talloc_realloc(state, state->pdu_blob.data, uint8_t, new_buf_size);
if (tevent_req_nomem(buf, req)) {
return;
}
state->pdu_blob.data = buf;
- state->pdu_blob.length = pdu_size;
+ state->pdu_blob.length = new_buf_size;
- state->tmp_vector.iov_base = (char *) (buf + state->tmp_vector.iov_len);
- state->tmp_vector.iov_len = pdu_size - state->tmp_vector.iov_len;
+ state->tmp_vector.iov_base = (char *) (buf + old_buf_size);
+ state->tmp_vector.iov_len = new_buf_size - old_buf_size;
subreq = tstream_readv_send(state,
state->caller.ev,