aboutsummaryrefslogtreecommitdiff
path: root/src/service/transport/transport_api2_core.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/service/transport/transport_api2_core.c')
-rw-r--r--src/service/transport/transport_api2_core.c826
1 files changed, 826 insertions, 0 deletions
diff --git a/src/service/transport/transport_api2_core.c b/src/service/transport/transport_api2_core.c
new file mode 100644
index 000000000..0d2a0ac7f
--- /dev/null
+++ b/src/service/transport/transport_api2_core.c
@@ -0,0 +1,826 @@
1/*
2 This file is part of GNUnet.
3 Copyright (C) 2009-2013, 2016, 2018 GNUnet e.V.
4
5 GNUnet is free software: you can redistribute it and/or modify it
6 under the terms of the GNU Affero General Public License as published
7 by the Free Software Foundation, either version 3 of the License,
8 or (at your option) any later version.
9
10 GNUnet is distributed in the hope that it will be useful, but
11 WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 Affero General Public License for more details.
14
15 You should have received a copy of the GNU Affero General Public License
16 along with this program. If not, see <http://www.gnu.org/licenses/>.
17
18 SPDX-License-Identifier: AGPL3.0-or-later
19 */
20
21/**
22 * @file transport/transport_api_core.c
23 * @brief library to access the transport service for message exchange
24 * @author Christian Grothoff
25 */
26#include "platform.h"
27#include "gnunet_util_lib.h"
28#include "gnunet_constants.h"
29#include "gnunet_arm_service.h"
30#include "gnunet_hello_lib.h"
31#include "gnunet_protocols.h"
32#include "gnunet_transport_core_service.h"
33#include "transport.h"
34
35#define LOG(kind, ...) GNUNET_log_from (kind, "transport-api-core", __VA_ARGS__)
36
37/**
38 * How large to start with for the hashmap of neighbours.
39 */
40#define STARTING_NEIGHBOURS_SIZE 16
41
42/**
43 * Window size. How many messages to the same target do we pass
44 * to TRANSPORT without a SEND_OK in between? Small values limit
45 * thoughput, large values will increase latency.
46 *
47 * FIXME-OPTIMIZE: find out what good values are experimentally,
48 * maybe set adaptively (i.e. to observed available bandwidth).
49 */
50#define SEND_WINDOW_SIZE 4
51
52
53/**
54 * Entry in hash table of all of our current (connected) neighbours.
55 */
56struct Neighbour
57{
58 /**
59 * Identity of this neighbour.
60 */
61 struct GNUNET_PeerIdentity id;
62
63 /**
64 * Overall transport handle.
65 */
66 struct GNUNET_TRANSPORT_CoreHandle *h;
67
68 /**
69 * Active message queue for the peer.
70 */
71 struct GNUNET_MQ_Handle *mq;
72
73 /**
74 * Envelope with the message we are currently transmitting (or NULL).
75 */
76 struct GNUNET_MQ_Envelope *env;
77
78 /**
79 * Closure for @e mq handlers.
80 */
81 void *handlers_cls;
82
83 /**
84 * How many messages can we still send to this peer before we should
85 * throttle?
86 */
87 unsigned int ready_window;
88
89 /**
90 * Used to indicate our status if @e env is non-NULL. Set to
91 * #GNUNET_YES if we did pass a message to the MQ and are waiting
92 * for the call to #notify_send_done(). Set to #GNUNET_NO if the @e
93 * ready_window is 0 and @e env is waiting for a
94 * #GNUNET_MESSAGE_TYPE_TRANSPORT_RECV_OK?
95 */
96 int16_t awaiting_done;
97
98 /**
99 * Size of the message in @e env.
100 */
101 uint16_t env_size;
102};
103
104
105/**
106 * Handle for the transport service (includes all of the
107 * state for the transport service).
108 */
109struct GNUNET_TRANSPORT_CoreHandle
110{
111 /**
112 * Closure for the callbacks.
113 */
114 void *cls;
115
116 /**
117 * Functions to call for received data (template for
118 * new message queues).
119 */
120 struct GNUNET_MQ_MessageHandler *handlers;
121
122 /**
123 * function to call on connect events
124 */
125 GNUNET_TRANSPORT_NotifyConnect nc_cb;
126
127 /**
128 * function to call on disconnect events
129 */
130 GNUNET_TRANSPORT_NotifyDisconnect nd_cb;
131
132 /**
133 * My client connection to the transport service.
134 */
135 struct GNUNET_MQ_Handle *mq;
136
137 /**
138 * My configuration.
139 */
140 const struct GNUNET_CONFIGURATION_Handle *cfg;
141
142 /**
143 * Hash map of the current connected neighbours of this peer.
144 * Maps peer identities to `struct Neighbour` entries.
145 */
146 struct GNUNET_CONTAINER_MultiPeerMap *neighbours;
147
148 /**
149 * Peer identity as assumed by this process, or all zeros.
150 */
151 struct GNUNET_PeerIdentity self;
152
153 /**
154 * ID of the task trying to reconnect to the service.
155 */
156 struct GNUNET_SCHEDULER_Task *reconnect_task;
157
158 /**
159 * Delay until we try to reconnect.
160 */
161 struct GNUNET_TIME_Relative reconnect_delay;
162
163 /**
164 * Should we check that @e self matches what the service thinks?
165 * (if #GNUNET_NO, then @e self is all zeros!).
166 */
167 int check_self;
168};
169
170
171/**
172 * Function that will schedule the job that will try
173 * to connect us again to the client.
174 *
175 * @param h transport service to reconnect
176 */
177static void
178disconnect_and_schedule_reconnect (struct GNUNET_TRANSPORT_CoreHandle *h);
179
180
181/**
182 * Get the neighbour list entry for the given peer
183 *
184 * @param h our context
185 * @param peer peer to look up
186 * @return NULL if no such peer entry exists
187 */
188static struct Neighbour *
189neighbour_find (struct GNUNET_TRANSPORT_CoreHandle *h,
190 const struct GNUNET_PeerIdentity *peer)
191{
192 return GNUNET_CONTAINER_multipeermap_get (h->neighbours, peer);
193}
194
195
196/**
197 * Iterator over hash map entries, for deleting state of a neighbour.
198 *
199 * @param cls the `struct GNUNET_TRANSPORT_CoreHandle *`
200 * @param key peer identity
201 * @param value value in the hash map, the neighbour entry to delete
202 * @return #GNUNET_YES if we should continue to
203 * iterate,
204 * #GNUNET_NO if not.
205 */
206static int
207neighbour_delete (void *cls, const struct GNUNET_PeerIdentity *key, void *value)
208{
209 struct GNUNET_TRANSPORT_CoreHandle *handle = cls;
210 struct Neighbour *n = value;
211
212 LOG (GNUNET_ERROR_TYPE_DEBUG,
213 "Dropping entry for neighbour `%s'.\n",
214 GNUNET_i2s (key));
215 if (NULL != handle->nd_cb)
216 handle->nd_cb (handle->cls, &n->id, n->handlers_cls);
217 if (NULL != n->env)
218 {
219 GNUNET_MQ_send_cancel (n->env);
220 n->env = NULL;
221 }
222 GNUNET_MQ_destroy (n->mq);
223 GNUNET_assert (NULL == n->mq);
224 GNUNET_assert (
225 GNUNET_YES ==
226 GNUNET_CONTAINER_multipeermap_remove (handle->neighbours, key, n));
227 GNUNET_free (n);
228 return GNUNET_YES;
229}
230
231
232/**
233 * Generic error handler, called with the appropriate
234 * error code and the same closure specified at the creation of
235 * the message queue.
236 * Not every message queue implementation supports an error handler.
237 *
238 * @param cls closure with the `struct GNUNET_TRANSPORT_CoreHandle *`
239 * @param error error code
240 */
241static void
242mq_error_handler (void *cls, enum GNUNET_MQ_Error error)
243{
244 struct GNUNET_TRANSPORT_CoreHandle *h = cls;
245
246 LOG (GNUNET_ERROR_TYPE_DEBUG,
247 "Error %u received from transport service, disconnecting temporarily.\n",
248 error);
249 disconnect_and_schedule_reconnect (h);
250}
251
252
253/**
254 * A message from the handler's message queue to a neighbour was
255 * transmitted. Now trigger (possibly delayed) notification of the
256 * neighbour's message queue that we are done and thus ready for
257 * the next message. Note that the MQ being ready is independent
258 * of the send window, as we may queue many messages and simply
259 * not pass them to TRANSPORT if the send window is insufficient.
260 *
261 * @param cls the `struct Neighbour` where the message was sent
262 */
263static void
264notify_send_done (void *cls)
265{
266 struct Neighbour *n = cls;
267
268 n->awaiting_done = GNUNET_NO;
269 n->env = NULL;
270 if (0 < n->ready_window)
271 GNUNET_MQ_impl_send_continue (n->mq);
272}
273
274
275/**
276 * We have an envelope waiting for transmission at @a n, and
277 * our transmission window is positive. Perform the transmission.
278 *
279 * @param n neighbour to perform transmission for
280 */
281static void
282do_send (struct Neighbour *n)
283{
284 GNUNET_assert (0 < n->ready_window);
285 GNUNET_assert (NULL != n->env);
286 n->ready_window--;
287 n->awaiting_done = GNUNET_YES;
288 GNUNET_MQ_notify_sent (n->env, &notify_send_done, n);
289 GNUNET_MQ_send (n->h->mq, n->env);
290 LOG (GNUNET_ERROR_TYPE_DEBUG,
291 "Passed message of type %u for neighbour `%s' to TRANSPORT. ready_window %u\n",
292 ntohs (GNUNET_MQ_env_get_msg (n->env)->type),
293 GNUNET_i2s (&n->id),
294 n->ready_window);
295}
296
297
298/**
299 * Implement sending functionality of a message queue.
300 * Called one message at a time. Should send the @a msg
301 * to the transport service and then notify the queue
302 * once we are ready for the next one.
303 *
304 * @param mq the message queue
305 * @param msg the message to send
306 * @param impl_state state of the implementation
307 */
308static void
309mq_send_impl (struct GNUNET_MQ_Handle *mq,
310 const struct GNUNET_MessageHeader *msg,
311 void *impl_state)
312{
313 struct Neighbour *n = impl_state;
314 struct OutboundMessage *obm;
315 uint16_t msize;
316
317 msize = ntohs (msg->size);
318 if (msize >= GNUNET_MAX_MESSAGE_SIZE - sizeof(*obm))
319 {
320 GNUNET_break (0);
321 GNUNET_MQ_impl_send_continue (mq);
322 return;
323 }
324 LOG (GNUNET_ERROR_TYPE_DEBUG,
325 "CORE requested transmission of message of type %u to neighbour `%s'.\n",
326 ntohs (msg->type),
327 GNUNET_i2s (&n->id));
328
329 GNUNET_assert (NULL == n->env);
330 n->env =
331 GNUNET_MQ_msg_nested_mh (obm, GNUNET_MESSAGE_TYPE_TRANSPORT_SEND, msg);
332 n->env_size = ntohs (msg->size);
333 {
334 struct GNUNET_MQ_Envelope *env;
335
336 env = GNUNET_MQ_get_current_envelope (mq);
337 obm->priority = htonl ((uint32_t) GNUNET_MQ_env_get_options (env));
338 }
339 obm->peer = n->id;
340 if (0 == n->ready_window)
341 {
342 LOG (GNUNET_ERROR_TYPE_DEBUG,
343 "Flow control delays transmission to CORE until we see SEND_OK.\n");
344 return; /* can't send yet, need to wait for SEND_OK */
345 }
346 do_send (n);
347}
348
349
350/**
351 * Handle destruction of a message queue. Implementations must not
352 * free @a mq, but should take care of @a impl_state.
353 *
354 * @param mq the message queue to destroy
355 * @param impl_state state of the implementation
356 */
357static void
358mq_destroy_impl (struct GNUNET_MQ_Handle *mq, void *impl_state)
359{
360 struct Neighbour *n = impl_state;
361
362 GNUNET_assert (mq == n->mq);
363 n->mq = NULL;
364}
365
366
367/**
368 * Implementation function that cancels the currently sent message.
369 * Should basically undo whatever #mq_send_impl() did.
370 *
371 * @param mq message queue
372 * @param impl_state state specific to the implementation
373 */
374static void
375mq_cancel_impl (struct GNUNET_MQ_Handle *mq, void *impl_state)
376{
377 struct Neighbour *n = impl_state;
378
379 n->ready_window++;
380 if (GNUNET_YES == n->awaiting_done)
381 {
382 GNUNET_MQ_send_cancel (n->env);
383 n->env = NULL;
384 n->awaiting_done = GNUNET_NO;
385 }
386 else
387 {
388 GNUNET_assert (0 == n->ready_window);
389 n->env = NULL;
390 }
391}
392
393
394/**
395 * We had an error processing a message we forwarded from a peer to
396 * the CORE service. We should just complain about it but otherwise
397 * continue processing.
398 *
399 * @param cls closure
400 * @param error error code
401 */
402static void
403peer_mq_error_handler (void *cls, enum GNUNET_MQ_Error error)
404{
405 struct Neighbour *n = cls;
406
407 if (GNUNET_MQ_ERROR_MALFORMED == error)
408 GNUNET_break_op (0);
409 //TODO Look into bug #7887
410
411 GNUNET_TRANSPORT_core_receive_continue (n->h, &n->id);
412}
413
414
415/**
416 * Function we use for handling incoming connect messages.
417 *
418 * @param cls closure, a `struct GNUNET_TRANSPORT_Handle *`
419 * @param cim message received
420 */
421static void
422handle_connect (void *cls, const struct ConnectInfoMessage *cim)
423{
424 struct GNUNET_TRANSPORT_CoreHandle *h = cls;
425 struct Neighbour *n;
426
427 LOG (GNUNET_ERROR_TYPE_DEBUG,
428 "Receiving CONNECT message for `%s'\n",
429 GNUNET_i2s (&cim->id));
430 n = neighbour_find (h, &cim->id);
431 if (NULL != n)
432 {
433 GNUNET_break (0);
434 disconnect_and_schedule_reconnect (h);
435 return;
436 }
437 n = GNUNET_new (struct Neighbour);
438 n->id = cim->id;
439 n->h = h;
440 n->ready_window = SEND_WINDOW_SIZE;
441 GNUNET_assert (GNUNET_OK ==
442 GNUNET_CONTAINER_multipeermap_put (
443 h->neighbours,
444 &n->id,
445 n,
446 GNUNET_CONTAINER_MULTIHASHMAPOPTION_UNIQUE_ONLY));
447
448 n->mq = GNUNET_MQ_queue_for_callbacks (&mq_send_impl,
449 &mq_destroy_impl,
450 &mq_cancel_impl,
451 n,
452 h->handlers,
453 &peer_mq_error_handler,
454 n);
455 if (NULL != h->nc_cb)
456 {
457 n->handlers_cls = h->nc_cb (h->cls, &n->id, n->mq);
458 GNUNET_MQ_set_handlers_closure (n->mq, n->handlers_cls);
459 }
460}
461
462
463/**
464 * Function we use for handling incoming disconnect messages.
465 *
466 * @param cls closure, a `struct GNUNET_TRANSPORT_CoreHandle *`
467 * @param dim message received
468 */
469static void
470handle_disconnect (void *cls, const struct DisconnectInfoMessage *dim)
471{
472 struct GNUNET_TRANSPORT_CoreHandle *h = cls;
473 struct Neighbour *n;
474
475 GNUNET_break (ntohl (dim->reserved) == 0);
476 LOG (GNUNET_ERROR_TYPE_DEBUG,
477 "Receiving DISCONNECT message for `%s'.\n",
478 GNUNET_i2s (&dim->peer));
479 n = neighbour_find (h, &dim->peer);
480 if (NULL == n)
481 {
482 GNUNET_break (0);
483 disconnect_and_schedule_reconnect (h);
484 return;
485 }
486 GNUNET_assert (GNUNET_YES == neighbour_delete (h, &dim->peer, n));
487}
488
489
490/**
491 * Function we use for handling incoming send-ok messages.
492 *
493 * @param cls closure, a `struct GNUNET_TRANSPORT_CoreHandle *`
494 * @param okm message received
495 */
496static void
497handle_send_ok (void *cls, const struct SendOkMessage *okm)
498{
499 struct GNUNET_TRANSPORT_CoreHandle *h = cls;
500 struct Neighbour *n;
501
502 LOG (GNUNET_ERROR_TYPE_DEBUG,
503 "Receiving SEND_OK message for transmission to %s\n",
504 GNUNET_i2s (&okm->peer));
505
506 n = neighbour_find (h, &okm->peer);
507
508 if (NULL == n)
509 {
510 /* We should never get a 'SEND_OK' for a peer that we are not
511 connected to */
512 GNUNET_break (0);
513 disconnect_and_schedule_reconnect (h);
514 return;
515 }
516
517 if ((GNUNET_NO == n->awaiting_done) &&
518 (NULL != n->env) &&
519 (0 == n->ready_window))
520 {
521 n->ready_window++;
522 do_send (n);
523 return;
524 }
525 else if ((GNUNET_NO == n->awaiting_done) &&
526 (0 == n->ready_window))
527 {
528 n->ready_window++;
529 GNUNET_MQ_impl_send_continue (n->mq);
530 return;
531 }
532 n->ready_window++;
533}
534
535
536/**
537 * Function we use for checking incoming "inbound" messages.
538 *
539 * @param cls closure, a `struct GNUNET_TRANSPORT_CoreHandle *`
540 * @param im message received
541 */
542static int
543check_recv (void *cls, const struct InboundMessage *im)
544{
545 const struct GNUNET_MessageHeader *imm;
546 uint16_t size;
547
548 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
549 "check_recv\n");
550 size = ntohs (im->header.size) - sizeof(*im);
551 if (size < sizeof(struct GNUNET_MessageHeader))
552 {
553 GNUNET_break (0);
554 return GNUNET_SYSERR;
555 }
556 imm = (const struct GNUNET_MessageHeader *) &im[1];
557 if (ntohs (imm->size) != size)
558 {
559 GNUNET_break (0);
560 return GNUNET_SYSERR;
561 }
562 return GNUNET_OK;
563}
564
565
566/**
567 * Function we use for handling incoming messages.
568 *
569 * @param cls closure, a `struct GNUNET_TRANSPORT_CoreHandle *`
570 * @param im message received
571 */
572static void
573handle_recv (void *cls, const struct InboundMessage *im)
574{
575 struct GNUNET_TRANSPORT_CoreHandle *h = cls;
576 const struct GNUNET_MessageHeader *imm =
577 (const struct GNUNET_MessageHeader *) &im[1];
578 struct Neighbour *n;
579
580 LOG (GNUNET_ERROR_TYPE_DEBUG,
581 "Received message of type %u with %u bytes from `%s'.\n",
582 (unsigned int) ntohs (imm->type),
583 (unsigned int) ntohs (imm->size),
584 GNUNET_i2s (&im->peer));
585 n = neighbour_find (h, &im->peer);
586 if (NULL == n)
587 {
588 GNUNET_break (0);
589 disconnect_and_schedule_reconnect (h);
590 return;
591 }
592 GNUNET_MQ_inject_message (n->mq, imm);
593}
594
595
596/**
597 * Try again to connect to transport service.
598 *
599 * @param cls the handle to the transport service
600 */
601static void
602reconnect (void *cls)
603{
604 struct GNUNET_TRANSPORT_CoreHandle *h = cls;
605 struct GNUNET_MQ_MessageHandler handlers[] =
606 { GNUNET_MQ_hd_fixed_size (connect,
607 GNUNET_MESSAGE_TYPE_TRANSPORT_CONNECT,
608 struct ConnectInfoMessage,
609 h),
610 GNUNET_MQ_hd_fixed_size (disconnect,
611 GNUNET_MESSAGE_TYPE_TRANSPORT_DISCONNECT,
612 struct DisconnectInfoMessage,
613 h),
614 GNUNET_MQ_hd_fixed_size (send_ok,
615 GNUNET_MESSAGE_TYPE_TRANSPORT_SEND_OK,
616 struct SendOkMessage,
617 h),
618 GNUNET_MQ_hd_var_size (recv,
619 GNUNET_MESSAGE_TYPE_TRANSPORT_RECV,
620 struct InboundMessage,
621 h),
622 GNUNET_MQ_handler_end () };
623 struct GNUNET_MQ_Envelope *env;
624 struct StartMessage *s;
625 uint32_t options;
626
627 h->reconnect_task = NULL;
628 LOG (GNUNET_ERROR_TYPE_DEBUG, "Connecting to transport service.\n");
629 GNUNET_assert (NULL == h->mq);
630 h->mq =
631 GNUNET_CLIENT_connect (h->cfg, "transport", handlers, &mq_error_handler, h);
632 if (NULL == h->mq)
633 return;
634 env = GNUNET_MQ_msg (s, GNUNET_MESSAGE_TYPE_TRANSPORT_START);
635 options = 0;
636 if (h->check_self)
637 options |= 1;
638 if (NULL != h->handlers)
639 options |= 2;
640 s->options = htonl (options);
641 s->self = h->self;
642 GNUNET_MQ_send (h->mq, env);
643}
644
645
646/**
647 * Disconnect from the transport service.
648 *
649 * @param h transport service to reconnect
650 */
651static void
652disconnect (struct GNUNET_TRANSPORT_CoreHandle *h)
653{
654 GNUNET_CONTAINER_multipeermap_iterate (h->neighbours, &neighbour_delete, h);
655 if (NULL != h->mq)
656 {
657 GNUNET_MQ_destroy (h->mq);
658 h->mq = NULL;
659 }
660}
661
662
663/**
664 * Function that will schedule the job that will try
665 * to connect us again to the client.
666 *
667 * @param h transport service to reconnect
668 */
669static void
670disconnect_and_schedule_reconnect (struct GNUNET_TRANSPORT_CoreHandle *h)
671{
672 GNUNET_assert (NULL == h->reconnect_task);
673 disconnect (h);
674 LOG (GNUNET_ERROR_TYPE_DEBUG,
675 "Scheduling task to reconnect to transport service in %s.\n",
676 GNUNET_STRINGS_relative_time_to_string (h->reconnect_delay, GNUNET_YES));
677 h->reconnect_task =
678 GNUNET_SCHEDULER_add_delayed (h->reconnect_delay, &reconnect, h);
679 h->reconnect_delay = GNUNET_TIME_STD_BACKOFF (h->reconnect_delay);
680}
681
682
683/**
684 * Checks if a given peer is connected to us and get the message queue.
685 *
686 * @param handle connection to transport service
687 * @param peer the peer to check
688 * @return NULL if disconnected, otherwise message queue for @a peer
689 */
690struct GNUNET_MQ_Handle *
691GNUNET_TRANSPORT_core_get_mq (struct GNUNET_TRANSPORT_CoreHandle *handle,
692 const struct GNUNET_PeerIdentity *peer)
693{
694 struct Neighbour *n;
695
696 n = neighbour_find (handle, peer);
697 if (NULL == n)
698 return NULL;
699 return n->mq;
700}
701
702
703/**
704 * Notification from the CORE service to the TRANSPORT service
705 * that the CORE service has finished processing a message from
706 * TRANSPORT (via the @code{handlers} of #GNUNET_TRANSPORT_core_connect())
707 * and that it is thus now OK for TRANSPORT to send more messages
708 * for @a pid.
709 *
710 * Used to provide flow control, this is our equivalent to
711 * #GNUNET_SERVICE_client_continue() of an ordinary service.
712 *
713 * Note that due to the use of a window, TRANSPORT may send multiple
714 * messages destined for the same peer even without an intermediate
715 * call to this function. However, CORE must still call this function
716 * once per message received, as otherwise eventually the window will
717 * be full and TRANSPORT will stop providing messages to CORE for @a
718 * pid.
719 *
720 * @param ch core handle
721 * @param pid which peer was the message from that was fully processed by CORE
722 */
723void
724GNUNET_TRANSPORT_core_receive_continue (struct GNUNET_TRANSPORT_CoreHandle *ch,
725 const struct GNUNET_PeerIdentity *pid)
726{
727 struct GNUNET_MQ_Envelope *env;
728 struct RecvOkMessage *rok;
729
730 LOG (GNUNET_ERROR_TYPE_DEBUG,
731 "Message for %s finished CORE processing, sending RECV_OK.\n",
732 GNUNET_i2s (pid));
733 if (NULL == ch->mq)
734 return;
735 env = GNUNET_MQ_msg (rok, GNUNET_MESSAGE_TYPE_TRANSPORT_RECV_OK);
736 rok->increase_window_delta = htonl (1);
737 rok->peer = *pid;
738 GNUNET_MQ_send (ch->mq, env);
739}
740
741
742/**
743 * Connect to the transport service. Note that the connection may
744 * complete (or fail) asynchronously.
745 *
746 * @param cfg configuration to use
747 * @param self our own identity (API should check that it matches
748 * the identity found by transport), or NULL (no check)
749 * @param cls closure for the callbacks
750 * @param rec receive function to call
751 * @param nc function to call on connect events
752 * @param nd function to call on disconnect events
753 * @return NULL on error
754 */
755struct GNUNET_TRANSPORT_CoreHandle *
756GNUNET_TRANSPORT_core_connect (const struct GNUNET_CONFIGURATION_Handle *cfg,
757 const struct GNUNET_PeerIdentity *self,
758 const struct GNUNET_MQ_MessageHandler *handlers,
759 void *cls,
760 GNUNET_TRANSPORT_NotifyConnect nc,
761 GNUNET_TRANSPORT_NotifyDisconnect nd)
762{
763 struct GNUNET_TRANSPORT_CoreHandle *h;
764 unsigned int i;
765
766 h = GNUNET_new (struct GNUNET_TRANSPORT_CoreHandle);
767 if (NULL != self)
768 {
769 h->self = *self;
770 h->check_self = GNUNET_YES;
771 }
772 h->cfg = cfg;
773 h->cls = cls;
774 h->nc_cb = nc;
775 h->nd_cb = nd;
776 h->reconnect_delay = GNUNET_TIME_UNIT_ZERO;
777 if (NULL != handlers)
778 {
779 for (i = 0; NULL != handlers[i].cb; i++)
780 ;
781 h->handlers = GNUNET_new_array (i + 1, struct GNUNET_MQ_MessageHandler);
782 GNUNET_memcpy (h->handlers,
783 handlers,
784 i * sizeof(struct GNUNET_MQ_MessageHandler));
785 }
786 LOG (GNUNET_ERROR_TYPE_DEBUG, "Connecting to transport service\n");
787 reconnect (h);
788 if (NULL == h->mq)
789 {
790 GNUNET_free (h->handlers);
791 GNUNET_free (h);
792 return NULL;
793 }
794 h->neighbours =
795 GNUNET_CONTAINER_multipeermap_create (STARTING_NEIGHBOURS_SIZE, GNUNET_YES);
796 return h;
797}
798
799
800/**
801 * Disconnect from the transport service.
802 *
803 * @param handle handle to the service as returned from
804 * #GNUNET_TRANSPORT_core_connect()
805 */
806void
807GNUNET_TRANSPORT_core_disconnect (struct GNUNET_TRANSPORT_CoreHandle *handle)
808{
809 LOG (GNUNET_ERROR_TYPE_DEBUG, "Transport disconnect called!\n");
810 /* this disconnects all neighbours... */
811 disconnect (handle);
812 /* and now we stop trying to connect again... */
813 if (NULL != handle->reconnect_task)
814 {
815 GNUNET_SCHEDULER_cancel (handle->reconnect_task);
816 handle->reconnect_task = NULL;
817 }
818 GNUNET_CONTAINER_multipeermap_destroy (handle->neighbours);
819 handle->neighbours = NULL;
820 GNUNET_free (handle->handlers);
821 handle->handlers = NULL;
822 GNUNET_free (handle);
823}
824
825
826/* end of transport_api_core.c */