s3:idmap_autorid: use "idmap config * : rangesize" instead of "autorid : rangesize"
[Samba/gebeck_regimport.git] / source4 / lib / stream / packet.c
blob98343707c12e441ca4d406f68b91932f8e0a71da
1 /*
2 Unix SMB/CIFS mplementation.
4 helper layer for breaking up streams into discrete requests
6 Copyright (C) Andrew Tridgell 2005
8 This program is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 3 of the License, or
11 (at your option) any later version.
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with this program. If not, see <http://www.gnu.org/licenses/>.
23 #include "includes.h"
24 #include "../lib/util/dlinklist.h"
25 #include "lib/events/events.h"
26 #include "lib/socket/socket.h"
27 #include "lib/stream/packet.h"
28 #include "libcli/raw/smb.h"
30 struct packet_context {
31 packet_callback_fn_t callback;
32 packet_full_request_fn_t full_request;
33 packet_error_handler_fn_t error_handler;
34 DATA_BLOB partial;
35 uint32_t num_read;
36 uint32_t initial_read;
37 struct socket_context *sock;
38 struct tevent_context *ev;
39 size_t packet_size;
40 void *private_data;
41 struct tevent_fd *fde;
42 bool serialise;
43 int processing;
44 bool recv_disable;
45 bool recv_need_enable;
46 bool nofree;
48 bool busy;
49 bool destructor_called;
51 bool unreliable_select;
53 struct send_element {
54 struct send_element *next, *prev;
55 DATA_BLOB blob;
56 size_t nsent;
57 packet_send_callback_fn_t send_callback;
58 void *send_callback_private;
59 } *send_queue;
63 a destructor used when we are processing packets to prevent freeing of this
64 context while it is being used
66 static int packet_destructor(struct packet_context *pc)
68 if (pc->busy) {
69 pc->destructor_called = true;
70 /* now we refuse the talloc_free() request. The free will
71 happen again in the packet_recv() code */
72 return -1;
75 return 0;
80 initialise a packet receiver
82 _PUBLIC_ struct packet_context *packet_init(TALLOC_CTX *mem_ctx)
84 struct packet_context *pc = talloc_zero(mem_ctx, struct packet_context);
85 if (pc != NULL) {
86 talloc_set_destructor(pc, packet_destructor);
88 return pc;
93 set the request callback, called when a full request is ready
95 _PUBLIC_ void packet_set_callback(struct packet_context *pc, packet_callback_fn_t callback)
97 pc->callback = callback;
101 set the error handler
103 _PUBLIC_ void packet_set_error_handler(struct packet_context *pc, packet_error_handler_fn_t handler)
105 pc->error_handler = handler;
109 set the private pointer passed to the callback functions
111 _PUBLIC_ void packet_set_private(struct packet_context *pc, void *private_data)
113 pc->private_data = private_data;
117 set the full request callback. Should return as follows:
118 NT_STATUS_OK == blob is a full request.
119 STATUS_MORE_ENTRIES == blob is not complete yet
120 any error == blob is not a valid
122 _PUBLIC_ void packet_set_full_request(struct packet_context *pc, packet_full_request_fn_t callback)
124 pc->full_request = callback;
128 set a socket context to use. You must set a socket_context
130 _PUBLIC_ void packet_set_socket(struct packet_context *pc, struct socket_context *sock)
132 pc->sock = sock;
136 set an event context. If this is set then the code will ensure that
137 packets arrive with separate events, by creating a immediate event
138 for any secondary packets when more than one packet is read at one
139 time on a socket. This can matter for code that relies on not
140 getting more than one packet per event
142 _PUBLIC_ void packet_set_event_context(struct packet_context *pc, struct tevent_context *ev)
144 pc->ev = ev;
148 tell the packet layer the fde for the socket
150 _PUBLIC_ void packet_set_fde(struct packet_context *pc, struct tevent_fd *fde)
152 pc->fde = fde;
156 tell the packet layer to serialise requests, so we don't process two
157 requests at once on one connection. You must have set the
158 event_context and fde
160 _PUBLIC_ void packet_set_serialise(struct packet_context *pc)
162 pc->serialise = true;
166 tell the packet layer how much to read when starting a new packet
167 this ensures it doesn't overread
169 _PUBLIC_ void packet_set_initial_read(struct packet_context *pc, uint32_t initial_read)
171 pc->initial_read = initial_read;
175 tell the packet system not to steal/free blobs given to packet_send()
177 _PUBLIC_ void packet_set_nofree(struct packet_context *pc)
179 pc->nofree = true;
183 tell the packet system that select/poll/epoll on the underlying
184 socket may not be a reliable way to determine if data is available
185 for receive. This happens with underlying socket systems such as the
186 one implemented on top of GNUTLS, where there may be data in
187 encryption/compression buffers that could be received by
188 socket_recv(), while there is no data waiting at the real socket
189 level as seen by select/poll/epoll. The GNUTLS library is supposed
190 to cope with this by always leaving some data sitting in the socket
191 buffer, but it does not seem to be reliable.
193 _PUBLIC_ void packet_set_unreliable_select(struct packet_context *pc)
195 pc->unreliable_select = true;
199 tell the caller we have an error
201 static void packet_error(struct packet_context *pc, NTSTATUS status)
203 pc->sock = NULL;
204 if (pc->error_handler) {
205 pc->error_handler(pc->private_data, status);
206 return;
208 /* default error handler is to free the callers private pointer */
209 if (!NT_STATUS_EQUAL(status, NT_STATUS_END_OF_FILE)) {
210 DEBUG(0,("packet_error on %s - %s\n",
211 talloc_get_name(pc->private_data), nt_errstr(status)));
213 talloc_free(pc->private_data);
214 return;
219 tell the caller we have EOF
221 static void packet_eof(struct packet_context *pc)
223 packet_error(pc, NT_STATUS_END_OF_FILE);
228 used to put packets on event boundaries
230 static void packet_next_event(struct tevent_context *ev, struct tevent_timer *te,
231 struct timeval t, void *private_data)
233 struct packet_context *pc = talloc_get_type(private_data, struct packet_context);
234 if (pc->num_read != 0 && pc->packet_size != 0 &&
235 pc->packet_size <= pc->num_read) {
236 packet_recv(pc);
242 call this when the socket becomes readable to kick off the whole
243 stream parsing process
245 _PUBLIC_ void packet_recv(struct packet_context *pc)
247 size_t npending;
248 NTSTATUS status;
249 size_t nread = 0;
250 DATA_BLOB blob;
251 bool recv_retry = false;
253 if (pc->processing) {
254 EVENT_FD_NOT_READABLE(pc->fde);
255 pc->processing++;
256 return;
259 if (pc->recv_disable) {
260 pc->recv_need_enable = true;
261 EVENT_FD_NOT_READABLE(pc->fde);
262 return;
265 if (pc->packet_size != 0 && pc->num_read >= pc->packet_size) {
266 goto next_partial;
269 if (pc->packet_size != 0) {
270 /* we've already worked out how long this next packet is, so skip the
271 socket_pending() call */
272 npending = pc->packet_size - pc->num_read;
273 } else if (pc->initial_read != 0) {
274 npending = pc->initial_read - pc->num_read;
275 } else {
276 if (pc->sock) {
277 status = socket_pending(pc->sock, &npending);
278 } else {
279 status = NT_STATUS_CONNECTION_DISCONNECTED;
281 if (!NT_STATUS_IS_OK(status)) {
282 packet_error(pc, status);
283 return;
287 if (npending == 0) {
288 packet_eof(pc);
289 return;
292 again:
294 if (npending + pc->num_read < npending) {
295 packet_error(pc, NT_STATUS_INVALID_PARAMETER);
296 return;
299 if (npending + pc->num_read < pc->num_read) {
300 packet_error(pc, NT_STATUS_INVALID_PARAMETER);
301 return;
304 /* possibly expand the partial packet buffer */
305 if (npending + pc->num_read > pc->partial.length) {
306 if (!data_blob_realloc(pc, &pc->partial, npending+pc->num_read)) {
307 packet_error(pc, NT_STATUS_NO_MEMORY);
308 return;
312 if (pc->partial.length < pc->num_read + npending) {
313 packet_error(pc, NT_STATUS_INVALID_PARAMETER);
314 return;
317 if ((uint8_t *)pc->partial.data + pc->num_read < (uint8_t *)pc->partial.data) {
318 packet_error(pc, NT_STATUS_INVALID_PARAMETER);
319 return;
321 if ((uint8_t *)pc->partial.data + pc->num_read + npending < (uint8_t *)pc->partial.data) {
322 packet_error(pc, NT_STATUS_INVALID_PARAMETER);
323 return;
326 status = socket_recv(pc->sock, pc->partial.data + pc->num_read,
327 npending, &nread);
329 if (NT_STATUS_IS_ERR(status)) {
330 packet_error(pc, status);
331 return;
333 if (recv_retry && NT_STATUS_EQUAL(status, STATUS_MORE_ENTRIES)) {
334 nread = 0;
335 status = NT_STATUS_OK;
337 if (!NT_STATUS_IS_OK(status)) {
338 return;
341 if (nread == 0 && !recv_retry) {
342 packet_eof(pc);
343 return;
346 pc->num_read += nread;
348 if (pc->unreliable_select && nread != 0) {
349 recv_retry = true;
350 status = socket_pending(pc->sock, &npending);
351 if (!NT_STATUS_IS_OK(status)) {
352 packet_error(pc, status);
353 return;
355 if (npending != 0) {
356 goto again;
360 next_partial:
361 if (pc->partial.length != pc->num_read) {
362 if (!data_blob_realloc(pc, &pc->partial, pc->num_read)) {
363 packet_error(pc, NT_STATUS_NO_MEMORY);
364 return;
368 /* see if its a full request */
369 blob = pc->partial;
370 blob.length = pc->num_read;
371 status = pc->full_request(pc->private_data, blob, &pc->packet_size);
372 if (NT_STATUS_IS_ERR(status)) {
373 packet_error(pc, status);
374 return;
376 if (!NT_STATUS_IS_OK(status)) {
377 return;
380 if (pc->packet_size > pc->num_read) {
381 /* the caller made an error */
382 DEBUG(0,("Invalid packet_size %lu greater than num_read %lu\n",
383 (long)pc->packet_size, (long)pc->num_read));
384 packet_error(pc, NT_STATUS_INVALID_PARAMETER);
385 return;
388 /* it is a full request - give it to the caller */
389 blob = pc->partial;
390 blob.length = pc->num_read;
392 if (pc->packet_size < pc->num_read) {
393 pc->partial = data_blob_talloc(pc, blob.data + pc->packet_size,
394 pc->num_read - pc->packet_size);
395 if (pc->partial.data == NULL) {
396 packet_error(pc, NT_STATUS_NO_MEMORY);
397 return;
399 /* Trunate the blob sent to the caller to only the packet length */
400 if (!data_blob_realloc(pc, &blob, pc->packet_size)) {
401 packet_error(pc, NT_STATUS_NO_MEMORY);
402 return;
404 } else {
405 pc->partial = data_blob(NULL, 0);
407 pc->num_read -= pc->packet_size;
408 pc->packet_size = 0;
410 if (pc->serialise) {
411 pc->processing = 1;
414 pc->busy = true;
416 status = pc->callback(pc->private_data, blob);
418 pc->busy = false;
420 if (pc->destructor_called) {
421 talloc_free(pc);
422 return;
425 if (pc->processing) {
426 if (pc->processing > 1) {
427 EVENT_FD_READABLE(pc->fde);
429 pc->processing = 0;
432 if (!NT_STATUS_IS_OK(status)) {
433 packet_error(pc, status);
434 return;
437 /* Have we consumed the whole buffer yet? */
438 if (pc->partial.length == 0) {
439 return;
442 /* we got multiple packets in one tcp read */
443 if (pc->ev == NULL) {
444 goto next_partial;
447 blob = pc->partial;
448 blob.length = pc->num_read;
450 status = pc->full_request(pc->private_data, blob, &pc->packet_size);
451 if (NT_STATUS_IS_ERR(status)) {
452 packet_error(pc, status);
453 return;
456 if (!NT_STATUS_IS_OK(status)) {
457 return;
460 event_add_timed(pc->ev, pc, timeval_zero(), packet_next_event, pc);
465 temporarily disable receiving
467 _PUBLIC_ void packet_recv_disable(struct packet_context *pc)
469 pc->recv_disable = true;
473 re-enable receiving
475 _PUBLIC_ void packet_recv_enable(struct packet_context *pc)
477 if (pc->recv_need_enable) {
478 pc->recv_need_enable = false;
479 EVENT_FD_READABLE(pc->fde);
481 pc->recv_disable = false;
482 if (pc->num_read != 0 && pc->packet_size >= pc->num_read) {
483 event_add_timed(pc->ev, pc, timeval_zero(), packet_next_event, pc);
488 trigger a run of the send queue
490 _PUBLIC_ void packet_queue_run(struct packet_context *pc)
492 while (pc->send_queue) {
493 struct send_element *el = pc->send_queue;
494 NTSTATUS status;
495 size_t nwritten;
496 DATA_BLOB blob = data_blob_const(el->blob.data + el->nsent,
497 el->blob.length - el->nsent);
499 status = socket_send(pc->sock, &blob, &nwritten);
501 if (NT_STATUS_IS_ERR(status)) {
502 packet_error(pc, status);
503 return;
505 if (!NT_STATUS_IS_OK(status)) {
506 return;
508 el->nsent += nwritten;
509 if (el->nsent == el->blob.length) {
510 DLIST_REMOVE(pc->send_queue, el);
511 if (el->send_callback) {
512 pc->busy = true;
513 el->send_callback(el->send_callback_private);
514 pc->busy = false;
515 if (pc->destructor_called) {
516 talloc_free(pc);
517 return;
520 talloc_free(el);
524 /* we're out of requests to send, so don't wait for write
525 events any more */
526 EVENT_FD_NOT_WRITEABLE(pc->fde);
530 put a packet in the send queue. When the packet is actually sent,
531 call send_callback.
533 Useful for operations that must occur after sending a message, such
534 as the switch to SASL encryption after as sucessful LDAP bind relpy.
536 _PUBLIC_ NTSTATUS packet_send_callback(struct packet_context *pc, DATA_BLOB blob,
537 packet_send_callback_fn_t send_callback,
538 void *private_data)
540 struct send_element *el;
541 el = talloc(pc, struct send_element);
542 NT_STATUS_HAVE_NO_MEMORY(el);
544 DLIST_ADD_END(pc->send_queue, el, struct send_element *);
545 el->blob = blob;
546 el->nsent = 0;
547 el->send_callback = send_callback;
548 el->send_callback_private = private_data;
550 /* if we aren't going to free the packet then we must reference it
551 to ensure it doesn't disappear before going out */
552 if (pc->nofree) {
553 if (!talloc_reference(el, blob.data)) {
554 return NT_STATUS_NO_MEMORY;
556 } else {
557 talloc_steal(el, blob.data);
560 if (private_data && !talloc_reference(el, private_data)) {
561 return NT_STATUS_NO_MEMORY;
564 EVENT_FD_WRITEABLE(pc->fde);
566 return NT_STATUS_OK;
570 put a packet in the send queue
572 _PUBLIC_ NTSTATUS packet_send(struct packet_context *pc, DATA_BLOB blob)
574 return packet_send_callback(pc, blob, NULL, NULL);
579 a full request checker for NBT formatted packets (first 3 bytes are length)
581 _PUBLIC_ NTSTATUS packet_full_request_nbt(void *private_data, DATA_BLOB blob, size_t *size)
583 if (blob.length < 4) {
584 return STATUS_MORE_ENTRIES;
586 *size = 4 + smb_len(blob.data);
587 if (*size > blob.length) {
588 return STATUS_MORE_ENTRIES;
590 return NT_STATUS_OK;
595 work out if a packet is complete for protocols that use a 32 bit network byte
596 order length
598 _PUBLIC_ NTSTATUS packet_full_request_u32(void *private_data, DATA_BLOB blob, size_t *size)
600 if (blob.length < 4) {
601 return STATUS_MORE_ENTRIES;
603 *size = 4 + RIVAL(blob.data, 0);
604 if (*size > blob.length) {
605 return STATUS_MORE_ENTRIES;
607 return NT_STATUS_OK;