s3: Rename new parameter "ldap ref follow" to "ldap follow referral".
[Samba/gebeck_regimport.git] / source3 / lib / packet.c
blobef28bf9f625b53b0f8ef214eaf1e0ac3fe9262d4
1 /*
2 Unix SMB/CIFS implementation.
3 Packet handling
4 Copyright (C) Volker Lendecke 2007
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 3 of the License, or
9 (at your option) any later version.
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with this program. If not, see <http://www.gnu.org/licenses/>.
20 #include "includes.h"
22 struct packet_context {
23 int fd;
24 DATA_BLOB in, out;
28 * Close the underlying fd
30 static int packet_context_destructor(struct packet_context *ctx)
32 return close(ctx->fd);
36 * Initialize a packet context. The fd is given to the packet context, meaning
37 * that it is automatically closed when the packet context is freed.
39 struct packet_context *packet_init(TALLOC_CTX *mem_ctx, int fd)
41 struct packet_context *result;
43 if (!(result = TALLOC_ZERO_P(mem_ctx, struct packet_context))) {
44 return NULL;
47 result->fd = fd;
48 talloc_set_destructor(result, packet_context_destructor);
49 return result;
53 * Pull data from the fd
55 NTSTATUS packet_fd_read(struct packet_context *ctx)
57 int res, available;
58 size_t new_size;
59 uint8 *in;
61 res = ioctl(ctx->fd, FIONREAD, &available);
63 if (res == -1) {
64 DEBUG(10, ("ioctl(FIONREAD) failed: %s\n", strerror(errno)));
65 return map_nt_error_from_unix(errno);
68 SMB_ASSERT(available >= 0);
70 if (available == 0) {
71 return NT_STATUS_END_OF_FILE;
74 new_size = ctx->in.length + available;
76 if (new_size < ctx->in.length) {
77 DEBUG(0, ("integer wrap\n"));
78 return NT_STATUS_NO_MEMORY;
81 if (!(in = TALLOC_REALLOC_ARRAY(ctx, ctx->in.data, uint8, new_size))) {
82 DEBUG(10, ("talloc failed\n"));
83 return NT_STATUS_NO_MEMORY;
86 ctx->in.data = in;
88 res = recv(ctx->fd, in + ctx->in.length, available, 0);
90 if (res < 0) {
91 DEBUG(10, ("recv failed: %s\n", strerror(errno)));
92 return map_nt_error_from_unix(errno);
95 if (res == 0) {
96 return NT_STATUS_END_OF_FILE;
99 ctx->in.length += res;
101 return NT_STATUS_OK;
104 NTSTATUS packet_fd_read_sync(struct packet_context *ctx)
106 int res;
107 fd_set r_fds;
109 FD_ZERO(&r_fds);
110 FD_SET(ctx->fd, &r_fds);
112 res = sys_select(ctx->fd+1, &r_fds, NULL, NULL, NULL);
114 if (res == -1) {
115 DEBUG(10, ("select returned %s\n", strerror(errno)));
116 return map_nt_error_from_unix(errno);
119 return packet_fd_read(ctx);
122 bool packet_handler(struct packet_context *ctx,
123 bool (*full_req)(const uint8_t *buf,
124 size_t available,
125 size_t *length,
126 void *priv),
127 NTSTATUS (*callback)(uint8_t *buf, size_t length,
128 void *priv),
129 void *priv, NTSTATUS *status)
131 size_t length;
132 uint8_t *buf;
134 if (!full_req(ctx->in.data, ctx->in.length, &length, priv)) {
135 return False;
138 if (length > ctx->in.length) {
139 *status = NT_STATUS_INTERNAL_ERROR;
140 return true;
143 if (length == ctx->in.length) {
144 buf = ctx->in.data;
145 ctx->in.data = NULL;
146 ctx->in.length = 0;
147 } else {
148 buf = (uint8_t *)TALLOC_MEMDUP(ctx, ctx->in.data, length);
149 if (buf == NULL) {
150 *status = NT_STATUS_NO_MEMORY;
151 return true;
154 memmove(ctx->in.data, ctx->in.data + length,
155 ctx->in.length - length);
156 ctx->in.length -= length;
159 *status = callback(buf, length, priv);
160 return True;
164 * How many bytes of outgoing data do we have pending?
166 size_t packet_outgoing_bytes(struct packet_context *ctx)
168 return ctx->out.length;
172 * Push data to the fd
174 NTSTATUS packet_fd_write(struct packet_context *ctx)
176 ssize_t sent;
178 sent = send(ctx->fd, ctx->out.data, ctx->out.length, 0);
180 if (sent == -1) {
181 DEBUG(0, ("send failed: %s\n", strerror(errno)));
182 return map_nt_error_from_unix(errno);
185 memmove(ctx->out.data, ctx->out.data + sent,
186 ctx->out.length - sent);
187 ctx->out.length -= sent;
189 return NT_STATUS_OK;
193 * Sync flush all outgoing bytes
195 NTSTATUS packet_flush(struct packet_context *ctx)
197 while (ctx->out.length != 0) {
198 NTSTATUS status = packet_fd_write(ctx);
199 if (!NT_STATUS_IS_OK(status)) {
200 return status;
203 return NT_STATUS_OK;
207 * Send a list of DATA_BLOBs
209 * Example: packet_send(ctx, 2, data_blob_const(&size, sizeof(size)),
210 * data_blob_const(buf, size));
212 NTSTATUS packet_send(struct packet_context *ctx, int num_blobs, ...)
214 va_list ap;
215 int i;
216 size_t len;
217 uint8 *out;
219 len = ctx->out.length;
221 va_start(ap, num_blobs);
222 for (i=0; i<num_blobs; i++) {
223 size_t tmp;
224 DATA_BLOB blob = va_arg(ap, DATA_BLOB);
226 tmp = len + blob.length;
227 if (tmp < len) {
228 DEBUG(0, ("integer overflow\n"));
229 va_end(ap);
230 return NT_STATUS_NO_MEMORY;
232 len = tmp;
234 va_end(ap);
236 if (len == 0) {
237 return NT_STATUS_OK;
240 if (!(out = TALLOC_REALLOC_ARRAY(ctx, ctx->out.data, uint8, len))) {
241 DEBUG(0, ("talloc failed\n"));
242 return NT_STATUS_NO_MEMORY;
245 ctx->out.data = out;
247 va_start(ap, num_blobs);
248 for (i=0; i<num_blobs; i++) {
249 DATA_BLOB blob = va_arg(ap, DATA_BLOB);
251 memcpy(ctx->out.data+ctx->out.length, blob.data, blob.length);
252 ctx->out.length += blob.length;
254 va_end(ap);
256 SMB_ASSERT(ctx->out.length == len);
257 return NT_STATUS_OK;
261 * Get the packet context's file descriptor
263 int packet_get_fd(struct packet_context *ctx)
265 return ctx->fd;