Merge branch 'master' of git+ssh://gnunet.org/gnunet
[oweals/gnunet.git] / src / transport / transport_api_core.c
1 /*
2      This file is part of GNUnet.
3      Copyright (C) 2009-2013, 2016 GNUnet e.V.
4
5      GNUnet is free software; you can redistribute it and/or modify
6      it under the terms of the GNU General Public License as published
7      by the Free Software Foundation; either version 3, or (at your
8      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      General Public License for more details.
14
15      You should have received a copy of the GNU General Public License
16      along with GNUnet; see the file COPYING.  If not, write to the
17      Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
18      Boston, MA 02110-1301, USA.
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  * If we could not send any payload to a peer for this amount of
39  * time, we print a warning.
40  */
41 #define UNREADY_WARN_TIME GNUNET_TIME_UNIT_MINUTES
42
43 /**
44  * How large to start with for the hashmap of neighbours.
45  */
46 #define STARTING_NEIGHBOURS_SIZE 16
47
48
49 /**
50  * Entry in hash table of all of our current (connected) neighbours.
51  */
52 struct Neighbour
53 {
54   /**
55    * Overall transport handle.
56    */
57   struct GNUNET_TRANSPORT_CoreHandle *h;
58
59   /**
60    * Active message queue for the peer.
61    */
62   struct GNUNET_MQ_Handle *mq;
63
64   /**
65    * Envelope with the message we are currently transmitting (or NULL).
66    */
67   struct GNUNET_MQ_Envelope *env;
68
69   /**
70    * Closure for @e mq handlers.
71    */
72   void *handlers_cls;
73
74   /**
75    * Identity of this neighbour.
76    */
77   struct GNUNET_PeerIdentity id;
78
79   /**
80    * Outbound bandwidh tracker.
81    */
82   struct GNUNET_BANDWIDTH_Tracker out_tracker;
83
84   /**
85    * Entry in our readyness heap (which is sorted by @e next_ready
86    * value).  NULL if there is no pending transmission request for
87    * this neighbour or if we're waiting for @e is_ready to become
88    * true AFTER the @e out_tracker suggested that this peer's quota
89    * has been satisfied (so once @e is_ready goes to #GNUNET_YES,
90    * we should immediately go back into the heap).
91    */
92   struct GNUNET_CONTAINER_HeapNode *hn;
93
94   /**
95    * Task to trigger MQ when we have enough bandwidth for the
96    * next transmission.
97    */
98   struct GNUNET_SCHEDULER_Task *timeout_task;
99
100   /**
101    * Sending consumed more bytes on wire than payload was announced
102    * This overhead is added to the delay of next sending operation
103    */
104   unsigned long long traffic_overhead;
105
106   /**
107    * Is this peer currently ready to receive a message?
108    */
109   int is_ready;
110
111   /**
112    * Size of the message in @e env.
113    */
114   uint16_t env_size;
115
116 };
117
118
119
120 /**
121  * Handle for the transport service (includes all of the
122  * state for the transport service).
123  */
124 struct GNUNET_TRANSPORT_CoreHandle
125 {
126
127   /**
128    * Closure for the callbacks.
129    */
130   void *cls;
131
132   /**
133    * Functions to call for received data (template for
134    * new message queues).
135    */
136   struct GNUNET_MQ_MessageHandler *handlers;
137
138   /**
139    * function to call on connect events
140    */
141   GNUNET_TRANSPORT_NotifyConnecT nc_cb;
142
143   /**
144    * function to call on disconnect events
145    */
146   GNUNET_TRANSPORT_NotifyDisconnecT nd_cb;
147
148   /**
149    * function to call on excess bandwidth events
150    */
151   GNUNET_TRANSPORT_NotifyExcessBandwidtH neb_cb;
152
153   /**
154    * My client connection to the transport service.
155    */
156   struct GNUNET_MQ_Handle *mq;
157
158   /**
159    * My configuration.
160    */
161   const struct GNUNET_CONFIGURATION_Handle *cfg;
162
163   /**
164    * Hash map of the current connected neighbours of this peer.
165    * Maps peer identities to `struct Neighbour` entries.
166    */
167   struct GNUNET_CONTAINER_MultiPeerMap *neighbours;
168
169   /**
170    * Peer identity as assumed by this process, or all zeros.
171    */
172   struct GNUNET_PeerIdentity self;
173
174   /**
175    * ID of the task trying to reconnect to the service.
176    */
177   struct GNUNET_SCHEDULER_Task *reconnect_task;
178
179   /**
180    * Delay until we try to reconnect.
181    */
182   struct GNUNET_TIME_Relative reconnect_delay;
183
184   /**
185    * Should we check that @e self matches what the service thinks?
186    * (if #GNUNET_NO, then @e self is all zeros!).
187    */
188   int check_self;
189
190 };
191
192
193 /**
194  * Function that will schedule the job that will try
195  * to connect us again to the client.
196  *
197  * @param h transport service to reconnect
198  */
199 static void
200 disconnect_and_schedule_reconnect (struct GNUNET_TRANSPORT_CoreHandle *h);
201
202
203 /**
204  * Get the neighbour list entry for the given peer
205  *
206  * @param h our context
207  * @param peer peer to look up
208  * @return NULL if no such peer entry exists
209  */
210 static struct Neighbour *
211 neighbour_find (struct GNUNET_TRANSPORT_CoreHandle *h,
212                 const struct GNUNET_PeerIdentity *peer)
213 {
214   return GNUNET_CONTAINER_multipeermap_get (h->neighbours,
215                                             peer);
216 }
217
218
219 /**
220  * Function called by the bandwidth tracker if we have excess
221  * bandwidth.
222  *
223  * @param cls the `struct Neighbour` that has excess bandwidth
224  */
225 static void
226 notify_excess_cb (void *cls)
227 {
228   struct Neighbour *n = cls;
229   struct GNUNET_TRANSPORT_CoreHandle *h = n->h;
230
231   LOG (GNUNET_ERROR_TYPE_DEBUG,
232        "Notifying CORE that more bandwidth is available for %s\n",
233        GNUNET_i2s (&n->id));
234
235   if (NULL != h->neb_cb)
236     h->neb_cb (h->cls,
237                &n->id,
238                n->handlers_cls);
239 }
240
241
242 /**
243  * Iterator over hash map entries, for deleting state of a neighbour.
244  *
245  * @param cls the `struct GNUNET_TRANSPORT_CoreHandle *`
246  * @param key peer identity
247  * @param value value in the hash map, the neighbour entry to delete
248  * @return #GNUNET_YES if we should continue to
249  *         iterate,
250  *         #GNUNET_NO if not.
251  */
252 static int
253 neighbour_delete (void *cls,
254                   const struct GNUNET_PeerIdentity *key,
255                   void *value)
256 {
257   struct GNUNET_TRANSPORT_CoreHandle *handle = cls;
258   struct Neighbour *n = value;
259
260   LOG (GNUNET_ERROR_TYPE_DEBUG,
261        "Dropping entry for neighbour `%s'.\n",
262        GNUNET_i2s (key));
263   GNUNET_BANDWIDTH_tracker_notification_stop (&n->out_tracker);
264   if (NULL != handle->nd_cb)
265     handle->nd_cb (handle->cls,
266                    &n->id,
267                    n->handlers_cls);
268   if (NULL != n->timeout_task)
269   {
270     GNUNET_SCHEDULER_cancel (n->timeout_task);
271     n->timeout_task = NULL;
272   }
273   if (NULL != n->env)
274   {
275     GNUNET_MQ_send_cancel (n->env);
276     n->env = NULL;
277   }
278   GNUNET_MQ_destroy (n->mq);
279   GNUNET_assert (NULL == n->mq);
280   GNUNET_assert (GNUNET_YES ==
281                  GNUNET_CONTAINER_multipeermap_remove (handle->neighbours,
282                                                        key,
283                                                        n));
284   GNUNET_free (n);
285   return GNUNET_YES;
286 }
287
288
289 /**
290  * Generic error handler, called with the appropriate
291  * error code and the same closure specified at the creation of
292  * the message queue.
293  * Not every message queue implementation supports an error handler.
294  *
295  * @param cls closure with the `struct GNUNET_TRANSPORT_CoreHandle *`
296  * @param error error code
297  */
298 static void
299 mq_error_handler (void *cls,
300                   enum GNUNET_MQ_Error error)
301 {
302   struct GNUNET_TRANSPORT_CoreHandle *h = cls;
303
304   LOG (GNUNET_ERROR_TYPE_DEBUG,
305        "Error receiving from transport service, disconnecting temporarily.\n");
306   disconnect_and_schedule_reconnect (h);
307 }
308
309
310 /**
311  * Function we use for checking incoming HELLO messages.
312  *
313  * @param cls closure, a `struct GNUNET_TRANSPORT_CoreHandle *`
314  * @param msg message received
315  * @return #GNUNET_OK if message is well-formed
316  */
317 static int
318 check_hello (void *cls,
319              const struct GNUNET_MessageHeader *msg)
320 {
321   struct GNUNET_PeerIdentity me;
322
323   if (GNUNET_OK !=
324       GNUNET_HELLO_get_id ((const struct GNUNET_HELLO_Message *) msg,
325                            &me))
326   {
327     GNUNET_break (0);
328     return GNUNET_SYSERR;
329   }
330   return GNUNET_OK;
331 }
332
333
334 /**
335  * Function we use for handling incoming HELLO messages.
336  *
337  * @param cls closure, a `struct GNUNET_TRANSPORT_CoreHandle *`
338  * @param msg message received
339  */
340 static void
341 handle_hello (void *cls,
342               const struct GNUNET_MessageHeader *msg)
343 {
344   /* we do not care => FIXME: signal in options to NEVER send HELLOs! */
345 }
346
347
348 /**
349  * A message from the handler's message queue to a neighbour was
350  * transmitted.  Now trigger (possibly delayed) notification of the
351  * neighbour's message queue that we are done and thus ready for
352  * the next message.
353  *
354  * @param cls the `struct Neighbour` where the message was sent
355  */
356 static void
357 notify_send_done_fin (void *cls)
358 {
359   struct Neighbour *n = cls;
360
361   n->timeout_task = NULL;
362   n->is_ready = GNUNET_YES;
363   GNUNET_MQ_impl_send_continue (n->mq);
364 }
365
366
367 /**
368  * A message from the handler's message queue to a neighbour was
369  * transmitted.  Now trigger (possibly delayed) notification of the
370  * neighbour's message queue that we are done and thus ready for
371  * the next message.
372  *
373  * @param cls the `struct Neighbour` where the message was sent
374  */
375 static void
376 notify_send_done (void *cls)
377 {
378   struct Neighbour *n = cls;
379   struct GNUNET_TIME_Relative delay;
380
381   n->timeout_task = NULL;
382   if (NULL != n->env)
383   {
384     GNUNET_BANDWIDTH_tracker_consume (&n->out_tracker,
385                                       n->env_size + n->traffic_overhead);
386     n->env = NULL;
387     n->traffic_overhead = 0;
388   }
389   delay = GNUNET_BANDWIDTH_tracker_get_delay (&n->out_tracker,
390                                               128);
391   if (0 == delay.rel_value_us)
392   {
393     n->is_ready = GNUNET_YES;
394     GNUNET_MQ_impl_send_continue (n->mq);
395     return;
396   }
397   GNUNET_MQ_impl_send_in_flight (n->mq);
398   /* cannot send even a small message without violating
399      quota, wait a before allowing MQ to send next message */
400   n->timeout_task = GNUNET_SCHEDULER_add_delayed (delay,
401                                                   &notify_send_done_fin,
402                                                   n);
403 }
404
405
406 /**
407  * Implement sending functionality of a message queue.
408  * Called one message at a time. Should send the @a msg
409  * to the transport service and then notify the queue
410  * once we are ready for the next one.
411  *
412  * @param mq the message queue
413  * @param msg the message to send
414  * @param impl_state state of the implementation
415  */
416 static void
417 mq_send_impl (struct GNUNET_MQ_Handle *mq,
418               const struct GNUNET_MessageHeader *msg,
419               void *impl_state)
420 {
421   struct Neighbour *n = impl_state;
422   struct GNUNET_TRANSPORT_CoreHandle *h = n->h;
423   struct OutboundMessage *obm;
424   uint16_t msize;
425
426   GNUNET_assert (GNUNET_YES == n->is_ready);
427   msize = ntohs (msg->size);
428   if (msize >= GNUNET_SERVER_MAX_MESSAGE_SIZE - sizeof (*obm))
429   {
430     GNUNET_break (0);
431     GNUNET_MQ_impl_send_continue (mq);
432     return;
433   }
434   GNUNET_assert (NULL == n->env);
435   n->env = GNUNET_MQ_msg_nested_mh (obm,
436                                     GNUNET_MESSAGE_TYPE_TRANSPORT_SEND,
437                                     msg);
438   obm->reserved = htonl (0);
439   obm->timeout = GNUNET_TIME_relative_hton (GNUNET_TIME_UNIT_MINUTES); /* FIXME: to be removed */
440   obm->peer = n->id;
441   GNUNET_assert (NULL == n->timeout_task);
442   n->is_ready = GNUNET_NO;
443   n->env_size = ntohs (msg->size);
444   GNUNET_MQ_notify_sent (n->env,
445                          &notify_send_done,
446                          n);
447   GNUNET_MQ_send (h->mq,
448                   n->env);
449   LOG (GNUNET_ERROR_TYPE_DEBUG,
450        "Queued message for neighbour `%s'.\n",
451        GNUNET_i2s (&n->id));
452 }
453
454
455 /**
456  * Handle destruction of a message queue.  Implementations must not
457  * free @a mq, but should take care of @a impl_state.
458  *
459  * @param mq the message queue to destroy
460  * @param impl_state state of the implementation
461  */
462 static void
463 mq_destroy_impl (struct GNUNET_MQ_Handle *mq,
464                  void *impl_state)
465 {
466   struct Neighbour *n = impl_state;
467
468   GNUNET_assert (mq == n->mq);
469   n->mq = NULL;
470 }
471
472
473 /**
474  * Implementation function that cancels the currently sent message.
475  * Should basically undo whatever #mq_send_impl() did.
476  *
477  * @param mq message queue
478  * @param impl_state state specific to the implementation
479  */
480 static void
481 mq_cancel_impl (struct GNUNET_MQ_Handle *mq,
482                 void *impl_state)
483 {
484   struct Neighbour *n = impl_state;
485
486   GNUNET_assert (GNUNET_NO == n->is_ready);
487   if (NULL != n->env)
488   {
489     GNUNET_MQ_send_cancel (n->env);
490     n->env = NULL;
491   }
492
493   n->is_ready = GNUNET_YES;
494 }
495
496
497 /**
498  * We had an error processing a message we forwarded from a peer to
499  * the CORE service.  We should just complain about it but otherwise
500  * continue processing.
501  *
502  * @param cls closure
503  * @param error error code
504  */
505 static void
506 peer_mq_error_handler (void *cls,
507                        enum GNUNET_MQ_Error error)
508 {
509   /* struct Neighbour *n = cls; */
510
511   GNUNET_break_op (0);
512 }
513
514
515 /**
516  * The outbound quota has changed in a way that may require
517  * us to reset the timeout.  Update the timeout.
518  *
519  * @param cls the `struct Neighbour` for which the timeout changed
520  */
521 static void
522 outbound_bw_tracker_update (void *cls)
523 {
524   struct Neighbour *n = cls;
525   struct GNUNET_TIME_Relative delay;
526
527   if (NULL == n->timeout_task)
528     return;
529   delay = GNUNET_BANDWIDTH_tracker_get_delay (&n->out_tracker,
530                                               128);
531   GNUNET_SCHEDULER_cancel (n->timeout_task);
532   n->timeout_task = GNUNET_SCHEDULER_add_delayed (delay,
533                                                   &notify_send_done,
534                                                   n);
535 }
536
537
538 /**
539  * Function we use for handling incoming connect messages.
540  *
541  * @param cls closure, a `struct GNUNET_TRANSPORT_Handle *`
542  * @param cim message received
543  */
544 static void
545 handle_connect (void *cls,
546                 const struct ConnectInfoMessage *cim)
547 {
548   struct GNUNET_TRANSPORT_CoreHandle *h = cls;
549   struct Neighbour *n;
550
551   LOG (GNUNET_ERROR_TYPE_DEBUG,
552        "Receiving CONNECT message for `%s' with quota %u\n",
553        GNUNET_i2s (&cim->id),
554        ntohl (cim->quota_out.value__));
555   n = neighbour_find (h, &cim->id);
556   if (NULL != n)
557   {
558     GNUNET_break (0);
559     disconnect_and_schedule_reconnect (h);
560     return;
561   }
562   n = GNUNET_new (struct Neighbour);
563   n->id = cim->id;
564   n->h = h;
565   n->is_ready = GNUNET_YES;
566   n->traffic_overhead = 0;
567   GNUNET_BANDWIDTH_tracker_init2 (&n->out_tracker,
568                                   &outbound_bw_tracker_update,
569                                   n,
570                                   GNUNET_CONSTANTS_DEFAULT_BW_IN_OUT,
571                                   MAX_BANDWIDTH_CARRY_S,
572                                   &notify_excess_cb,
573                                   n);
574   GNUNET_assert (GNUNET_OK ==
575                  GNUNET_CONTAINER_multipeermap_put (h->neighbours,
576                                                     &n->id,
577                                                     n,
578                                                     GNUNET_CONTAINER_MULTIHASHMAPOPTION_UNIQUE_ONLY));
579
580   GNUNET_BANDWIDTH_tracker_update_quota (&n->out_tracker,
581                                          cim->quota_out);
582   n->mq = GNUNET_MQ_queue_for_callbacks (&mq_send_impl,
583                                          &mq_destroy_impl,
584                                          &mq_cancel_impl,
585                                          n,
586                                          h->handlers,
587                                          &peer_mq_error_handler,
588                                          n);
589   if (NULL != h->nc_cb)
590   {
591     n->handlers_cls = h->nc_cb (h->cls,
592                                 &n->id,
593                                 n->mq);
594     GNUNET_MQ_set_handlers_closure (n->mq,
595                                     n->handlers_cls);
596   }
597 }
598
599
600 /**
601  * Function we use for handling incoming disconnect messages.
602  *
603  * @param cls closure, a `struct GNUNET_TRANSPORT_CoreHandle *`
604  * @param dim message received
605  */
606 static void
607 handle_disconnect (void *cls,
608                    const struct DisconnectInfoMessage *dim)
609 {
610   struct GNUNET_TRANSPORT_CoreHandle *h = cls;
611   struct Neighbour *n;
612
613   GNUNET_break (ntohl (dim->reserved) == 0);
614   LOG (GNUNET_ERROR_TYPE_DEBUG,
615        "Receiving DISCONNECT message for `%s'.\n",
616        GNUNET_i2s (&dim->peer));
617   n = neighbour_find (h, &dim->peer);
618   if (NULL == n)
619   {
620     GNUNET_break (0);
621     disconnect_and_schedule_reconnect (h);
622     return;
623   }
624   GNUNET_assert (GNUNET_YES ==
625                  neighbour_delete (h,
626                                    &dim->peer,
627                                    n));
628 }
629
630
631 /**
632  * Function we use for handling incoming send-ok messages.
633  *
634  * @param cls closure, a `struct GNUNET_TRANSPORT_CoreHandle *`
635  * @param okm message received
636  */
637 static void
638 handle_send_ok (void *cls,
639                 const struct SendOkMessage *okm)
640 {
641   struct GNUNET_TRANSPORT_CoreHandle *h = cls;
642   struct Neighbour *n;
643   uint32_t bytes_msg;
644   uint32_t bytes_physical;
645
646   bytes_msg = ntohl (okm->bytes_msg);
647   bytes_physical = ntohl (okm->bytes_physical);
648   LOG (GNUNET_ERROR_TYPE_DEBUG,
649        "Receiving SEND_OK message, transmission to %s %s.\n",
650        GNUNET_i2s (&okm->peer),
651        ntohl (okm->success) == GNUNET_OK ? "succeeded" : "failed");
652   n = neighbour_find (h,
653                       &okm->peer);
654   if (NULL == n)
655   {
656     /* We should never get a 'SEND_OK' for a peer that we are not
657        connected to */
658     GNUNET_break (0);
659     disconnect_and_schedule_reconnect (h);
660     return;
661   }
662   if (bytes_physical > bytes_msg)
663   {
664     LOG (GNUNET_ERROR_TYPE_DEBUG,
665          "Overhead for %u byte message was %u\n",
666          bytes_msg,
667          bytes_physical - bytes_msg);
668     n->traffic_overhead += bytes_physical - bytes_msg;
669   }
670 }
671
672
673 /**
674  * Function we use for checking incoming "inbound" messages.
675  *
676  * @param cls closure, a `struct GNUNET_TRANSPORT_CoreHandle *`
677  * @param im message received
678  */
679 static int
680 check_recv (void *cls,
681              const struct InboundMessage *im)
682 {
683   const struct GNUNET_MessageHeader *imm;
684   uint16_t size;
685
686   size = ntohs (im->header.size) - sizeof (*im);
687   if (size < sizeof (struct GNUNET_MessageHeader))
688   {
689     GNUNET_break (0);
690     return GNUNET_SYSERR;
691   }
692   imm = (const struct GNUNET_MessageHeader *) &im[1];
693   if (ntohs (imm->size) != size)
694   {
695     GNUNET_break (0);
696     return GNUNET_SYSERR;
697   }
698   return GNUNET_OK;
699 }
700
701
702 /**
703  * Function we use for handling incoming messages.
704  *
705  * @param cls closure, a `struct GNUNET_TRANSPORT_CoreHandle *`
706  * @param im message received
707  */
708 static void
709 handle_recv (void *cls,
710              const struct InboundMessage *im)
711 {
712   struct GNUNET_TRANSPORT_CoreHandle *h = cls;
713   const struct GNUNET_MessageHeader *imm
714     = (const struct GNUNET_MessageHeader *) &im[1];
715   struct Neighbour *n;
716
717   LOG (GNUNET_ERROR_TYPE_DEBUG,
718        "Received message of type %u with %u bytes from `%s'.\n",
719        (unsigned int) ntohs (imm->type),
720        (unsigned int) ntohs (imm->size),
721        GNUNET_i2s (&im->peer));
722   n = neighbour_find (h, &im->peer);
723   if (NULL == n)
724   {
725     GNUNET_break (0);
726     disconnect_and_schedule_reconnect (h);
727     return;
728   }
729   GNUNET_MQ_inject_message (n->mq,
730                             imm);
731 }
732
733
734 /**
735  * Function we use for handling incoming set quota messages.
736  *
737  * @param cls closure, a `struct GNUNET_TRANSPORT_CoreHandle *`
738  * @param msg message received
739  */
740 static void
741 handle_set_quota (void *cls,
742                   const struct QuotaSetMessage *qm)
743 {
744   struct GNUNET_TRANSPORT_CoreHandle *h = cls;
745   struct Neighbour *n;
746
747   n = neighbour_find (h,
748                       &qm->peer);
749   if (NULL == n)
750   {
751     GNUNET_break (0);
752     disconnect_and_schedule_reconnect (h);
753     return;
754   }
755   LOG (GNUNET_ERROR_TYPE_DEBUG,
756        "Receiving SET_QUOTA message for `%s' with quota %u\n",
757        GNUNET_i2s (&qm->peer),
758        ntohl (qm->quota.value__));
759   GNUNET_BANDWIDTH_tracker_update_quota (&n->out_tracker,
760                                          qm->quota);
761 }
762
763
764 /**
765  * Try again to connect to transport service.
766  *
767  * @param cls the handle to the transport service
768  */
769 static void
770 reconnect (void *cls)
771 {
772   struct GNUNET_TRANSPORT_CoreHandle *h = cls;
773   struct GNUNET_MQ_MessageHandler handlers[] = {
774     GNUNET_MQ_hd_var_size (hello,
775                            GNUNET_MESSAGE_TYPE_HELLO,
776                            struct GNUNET_MessageHeader,
777                            h),
778     GNUNET_MQ_hd_fixed_size (connect,
779                              GNUNET_MESSAGE_TYPE_TRANSPORT_CONNECT,
780                              struct ConnectInfoMessage,
781                              h),
782     GNUNET_MQ_hd_fixed_size (disconnect,
783                              GNUNET_MESSAGE_TYPE_TRANSPORT_DISCONNECT,
784                              struct DisconnectInfoMessage,
785                              h),
786     GNUNET_MQ_hd_fixed_size (send_ok,
787                              GNUNET_MESSAGE_TYPE_TRANSPORT_SEND_OK,
788                              struct SendOkMessage,
789                              h),
790     GNUNET_MQ_hd_var_size (recv,
791                            GNUNET_MESSAGE_TYPE_TRANSPORT_RECV,
792                            struct InboundMessage,
793                            h),
794     GNUNET_MQ_hd_fixed_size (set_quota,
795                              GNUNET_MESSAGE_TYPE_TRANSPORT_SET_QUOTA,
796                              struct QuotaSetMessage,
797                              h),
798     GNUNET_MQ_handler_end ()
799   };
800   struct GNUNET_MQ_Envelope *env;
801   struct StartMessage *s;
802   uint32_t options;
803
804   h->reconnect_task = NULL;
805   LOG (GNUNET_ERROR_TYPE_DEBUG,
806        "Connecting to transport service.\n");
807   GNUNET_assert (NULL == h->mq);
808   h->mq = GNUNET_CLIENT_connecT (h->cfg,
809                                  "transport",
810                                  handlers,
811                                  &mq_error_handler,
812                                  h);
813   if (NULL == h->mq)
814     return;
815   env = GNUNET_MQ_msg (s,
816                        GNUNET_MESSAGE_TYPE_TRANSPORT_START);
817   options = 0;
818   if (h->check_self)
819     options |= 1;
820   if (NULL != h->handlers)
821     options |= 2;
822   s->options = htonl (options);
823   s->self = h->self;
824   GNUNET_MQ_send (h->mq,
825                   env);
826 }
827
828
829 /**
830  * Function that will schedule the job that will try
831  * to connect us again to the client.
832  *
833  * @param h transport service to reconnect
834  */
835 static void
836 disconnect_and_schedule_reconnect (struct GNUNET_TRANSPORT_CoreHandle *h)
837 {
838   GNUNET_assert (NULL == h->reconnect_task);
839   /* Forget about all neighbours that we used to be connected to */
840   GNUNET_CONTAINER_multipeermap_iterate (h->neighbours,
841                                          &neighbour_delete,
842                                          h);
843   if (NULL != h->mq)
844   {
845     GNUNET_MQ_destroy (h->mq);
846     h->mq = NULL;
847   }
848   LOG (GNUNET_ERROR_TYPE_DEBUG,
849        "Scheduling task to reconnect to transport service in %s.\n",
850        GNUNET_STRINGS_relative_time_to_string (h->reconnect_delay,
851                                                GNUNET_YES));
852   h->reconnect_task =
853       GNUNET_SCHEDULER_add_delayed (h->reconnect_delay,
854                                     &reconnect,
855                                     h);
856   h->reconnect_delay = GNUNET_TIME_STD_BACKOFF (h->reconnect_delay);
857 }
858
859
860 /**
861  * Checks if a given peer is connected to us and get the message queue.
862  *
863  * @param handle connection to transport service
864  * @param peer the peer to check
865  * @return NULL if disconnected, otherwise message queue for @a peer
866  */
867 struct GNUNET_MQ_Handle *
868 GNUNET_TRANSPORT_core_get_mq (struct GNUNET_TRANSPORT_CoreHandle *handle,
869                               const struct GNUNET_PeerIdentity *peer)
870 {
871   struct Neighbour *n;
872
873   n = neighbour_find (handle,
874                       peer);
875   if (NULL == n)
876     return NULL;
877   return n->mq;
878 }
879
880
881 /**
882  * Connect to the transport service.  Note that the connection may
883  * complete (or fail) asynchronously.
884  *
885  * @param cfg configuration to use
886  * @param self our own identity (API should check that it matches
887  *             the identity found by transport), or NULL (no check)
888  * @param cls closure for the callbacks
889  * @param rec receive function to call
890  * @param nc function to call on connect events
891  * @param nd function to call on disconnect events
892  * @param neb function to call if we have excess bandwidth to a peer
893  * @return NULL on error
894  */
895 struct GNUNET_TRANSPORT_CoreHandle *
896 GNUNET_TRANSPORT_core_connect (const struct GNUNET_CONFIGURATION_Handle *cfg,
897                                const struct GNUNET_PeerIdentity *self,
898                                const struct GNUNET_MQ_MessageHandler *handlers,
899                                void *cls,
900                                GNUNET_TRANSPORT_NotifyConnecT nc,
901                                GNUNET_TRANSPORT_NotifyDisconnecT nd,
902                                GNUNET_TRANSPORT_NotifyExcessBandwidtH neb)
903 {
904   struct GNUNET_TRANSPORT_CoreHandle *h;
905   unsigned int i;
906
907   h = GNUNET_new (struct GNUNET_TRANSPORT_CoreHandle);
908   if (NULL != self)
909   {
910     h->self = *self;
911     h->check_self = GNUNET_YES;
912   }
913   h->cfg = cfg;
914   h->cls = cls;
915   h->nc_cb = nc;
916   h->nd_cb = nd;
917   h->neb_cb = neb;
918   h->reconnect_delay = GNUNET_TIME_UNIT_ZERO;
919   if (NULL != handlers)
920   {
921     for (i=0;NULL != handlers[i].cb; i++) ;
922     h->handlers = GNUNET_new_array (i + 1,
923                                     struct GNUNET_MQ_MessageHandler);
924     GNUNET_memcpy (h->handlers,
925                    handlers,
926                    i * sizeof (struct GNUNET_MQ_MessageHandler));
927   }
928   LOG (GNUNET_ERROR_TYPE_DEBUG,
929        "Connecting to transport service\n");
930   reconnect (h);
931   if (NULL == h->mq)
932   {
933     GNUNET_free_non_null (h->handlers);
934     GNUNET_free (h);
935     return NULL;
936   }
937   h->neighbours =
938     GNUNET_CONTAINER_multipeermap_create (STARTING_NEIGHBOURS_SIZE,
939                                           GNUNET_YES);
940   return h;
941 }
942
943
944 /**
945  * Disconnect from the transport service.
946  *
947  * @param handle handle to the service as returned from #GNUNET_TRANSPORT_core_connect()
948  */
949 void
950 GNUNET_TRANSPORT_core_disconnect (struct GNUNET_TRANSPORT_CoreHandle *handle)
951 {
952   LOG (GNUNET_ERROR_TYPE_DEBUG,
953        "Transport disconnect called!\n");
954   /* this disconnects all neighbours... */
955   if (NULL == handle->reconnect_task)
956     disconnect_and_schedule_reconnect (handle);
957   /* and now we stop trying to connect again... */
958   if (NULL != handle->reconnect_task)
959   {
960     GNUNET_SCHEDULER_cancel (handle->reconnect_task);
961     handle->reconnect_task = NULL;
962   }
963   GNUNET_CONTAINER_multipeermap_destroy (handle->neighbours);
964   handle->neighbours = NULL;
965   GNUNET_free_non_null (handle->handlers);
966   handle->handlers = NULL;
967   GNUNET_free (handle);
968 }
969
970
971 /* end of transport_api_core.c */