api fix
[oweals/gnunet.git] / src / transport / transport_api.c
1 /*
2      This file is part of GNUnet.
3      (C) 2009, 2010, 2011 Christian Grothoff (and other contributing authors)
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., 59 Temple Place - Suite 330,
18      Boston, MA 02111-1307, USA.
19 */
20
21 /**
22  * @file transport/transport_api.c
23  * @brief library to access the low-level P2P IO service
24  * @author Christian Grothoff
25  *
26  * TODO:
27  * - adjust testcases to use new 'try connect' style (should be easy, breaks API compatibility!)
28  * - adjust core service to use new 'try connect' style (should be MUCH nicer there as well!)
29  * - test test test
30  */
31 #include "platform.h"
32 #include "gnunet_constants.h"
33 #include "gnunet_bandwidth_lib.h"
34 #include "gnunet_client_lib.h"
35 #include "gnunet_constants.h"
36 #include "gnunet_container_lib.h"
37 #include "gnunet_arm_service.h"
38 #include "gnunet_hello_lib.h"
39 #include "gnunet_protocols.h"
40 #include "gnunet_server_lib.h"
41 #include "gnunet_time_lib.h"
42 #include "gnunet_transport_service.h"
43 #include "transport.h"
44
45 #define LOG(kind,...) GNUNET_log_from (kind, "transport-api",__VA_ARGS__)
46
47 /**
48  * How large to start with for the hashmap of neighbours.
49  */
50 #define STARTING_NEIGHBOURS_SIZE 16
51
52 /**
53  * Handle for a message that should be transmitted to the service.
54  * Used for both control messages and normal messages.
55  */
56 struct GNUNET_TRANSPORT_TransmitHandle
57 {
58
59   /**
60    * We keep all requests in a DLL.
61    */
62   struct GNUNET_TRANSPORT_TransmitHandle *next;
63
64   /**
65    * We keep all requests in a DLL.
66    */
67   struct GNUNET_TRANSPORT_TransmitHandle *prev;
68
69   /**
70    * Neighbour for this handle, NULL for control messages.
71    */
72   struct Neighbour *neighbour;
73
74   /**
75    * Function to call when notify_size bytes are available
76    * for transmission.
77    */
78   GNUNET_CONNECTION_TransmitReadyNotify notify;
79
80   /**
81    * Closure for notify.
82    */
83   void *notify_cls;
84
85   /**
86    * Timeout for this request, 0 for control messages.
87    */
88   struct GNUNET_TIME_Absolute timeout;
89
90   /**
91    * Task to trigger request timeout if the request is stalled due to
92    * congestion.
93    */
94   GNUNET_SCHEDULER_TaskIdentifier timeout_task;
95
96   /**
97    * How many bytes is our notify callback waiting for?
98    */
99   size_t notify_size;
100
101   /**
102    * How important is this message? Not used for control messages.
103    */
104   uint32_t priority;
105
106 };
107
108
109 /**
110  * Entry in hash table of all of our current neighbours.
111  */
112 struct Neighbour
113 {
114   /**
115    * Overall transport handle.
116    */
117   struct GNUNET_TRANSPORT_Handle *h;
118
119   /**
120    * Active transmit handle or NULL.
121    */
122   struct GNUNET_TRANSPORT_TransmitHandle *th;
123
124   /**
125    * Identity of this neighbour.
126    */
127   struct GNUNET_PeerIdentity id;
128
129   /**
130    * Outbound bandwidh tracker.
131    */
132   struct GNUNET_BANDWIDTH_Tracker out_tracker;
133
134   /**
135    * Entry in our readyness heap (which is sorted by 'next_ready'
136    * value).  NULL if there is no pending transmission request for
137    * this neighbour or if we're waiting for 'is_ready' to become
138    * true AFTER the 'out_tracker' suggested that this peer's quota
139    * has been satisfied (so once 'is_ready' goes to GNUNET_YES,
140    * we should immediately go back into the heap).
141    */
142   struct GNUNET_CONTAINER_HeapNode *hn;
143
144   /**
145    * Is this peer currently ready to receive a message?
146    */
147   int is_ready;
148
149   /**
150    * Sending consumed more bytes on wire than payload was announced
151    * This overhead is added to the delay of next sending operation
152    */
153   size_t traffic_overhead;
154 };
155
156
157 /**
158  * Linked list of functions to call whenever our HELLO is updated.
159  */
160 struct GNUNET_TRANSPORT_GetHelloHandle
161 {
162
163   /**
164    * This is a doubly linked list.
165    */
166   struct GNUNET_TRANSPORT_GetHelloHandle *next;
167
168   /**
169    * This is a doubly linked list.
170    */
171   struct GNUNET_TRANSPORT_GetHelloHandle *prev;
172
173   /**
174    * Transport handle.
175    */
176   struct GNUNET_TRANSPORT_Handle *handle;
177
178   /**
179    * Callback to call once we got our HELLO.
180    */
181   GNUNET_TRANSPORT_HelloUpdateCallback rec;
182
183   /**
184    * Task for calling the HelloUpdateCallback when we already have a HELLO
185    */
186   GNUNET_SCHEDULER_TaskIdentifier notify_task;
187
188   /**
189    * Closure for rec.
190    */
191   void *rec_cls;
192
193 };
194
195 /**
196  * Linked list for all try-connect requests
197  */
198 struct GNUNET_TRANSPORT_TryConnectHandle
199 {
200   struct GNUNET_TRANSPORT_TryConnectHandle *prev;
201   struct GNUNET_TRANSPORT_TryConnectHandle *next;
202
203   struct GNUNET_PeerIdentity pid;
204
205   struct GNUNET_TRANSPORT_Handle *th;
206   struct GNUNET_TRANSPORT_TransmitHandle *tth;
207   GNUNET_TRANSPORT_TryConnectCallback cb;
208   void *cb_cls;
209 };
210
211
212 /**
213  * Linked list for all try-connect requests
214  */
215 struct GNUNET_TRANSPORT_OfferHelloHandle
216 {
217   struct GNUNET_TRANSPORT_OfferHelloHandle *prev;
218   struct GNUNET_TRANSPORT_OfferHelloHandle *next;
219
220   struct GNUNET_TRANSPORT_Handle *th;
221
222   struct GNUNET_TRANSPORT_TransmitHandle *tth;
223   GNUNET_SCHEDULER_Task cont;
224
225   void *cls;
226
227   struct GNUNET_MessageHeader *msg;
228 };
229
230
231 /**
232  * Handle for the transport service (includes all of the
233  * state for the transport service).
234  */
235 struct GNUNET_TRANSPORT_Handle
236 {
237
238   /**
239    * Closure for the callbacks.
240    */
241   void *cls;
242
243   /**
244    * Function to call for received data.
245    */
246   GNUNET_TRANSPORT_ReceiveCallback rec;
247
248   /**
249    * function to call on connect events
250    */
251   GNUNET_TRANSPORT_NotifyConnect nc_cb;
252
253   /**
254    * function to call on disconnect events
255    */
256   GNUNET_TRANSPORT_NotifyDisconnect nd_cb;
257
258   /**
259    * Head of DLL of control messages.
260    */
261   struct GNUNET_TRANSPORT_TransmitHandle *control_head;
262
263   /**
264    * Tail of DLL of control messages.
265    */
266   struct GNUNET_TRANSPORT_TransmitHandle *control_tail;
267
268   /**
269    * The current HELLO message for this peer.  Updated
270    * whenever transports change their addresses.
271    */
272   struct GNUNET_HELLO_Message *my_hello;
273
274   /**
275    * My client connection to the transport service.
276    */
277   struct GNUNET_CLIENT_Connection *client;
278
279   /**
280    * Handle to our registration with the client for notification.
281    */
282   struct GNUNET_CLIENT_TransmitHandle *cth;
283
284   /**
285    * Linked list of pending requests for our HELLO.
286    */
287   struct GNUNET_TRANSPORT_GetHelloHandle *hwl_head;
288
289   /**
290    * Linked list of pending requests for our HELLO.
291    */
292   struct GNUNET_TRANSPORT_GetHelloHandle *hwl_tail;
293
294   /**
295    * Linked list of pending try connect requests head
296    */
297   struct GNUNET_TRANSPORT_TryConnectHandle *tc_head;
298
299   /**
300    * Linked list of pending try connect requests tail
301    */
302   struct GNUNET_TRANSPORT_TryConnectHandle *tc_tail;
303
304   /**
305    * Linked list of pending offer HELLO requests head
306    */
307   struct GNUNET_TRANSPORT_OfferHelloHandle *oh_head;
308
309   /**
310    * Linked list of pending offer HELLO requests tail
311    */
312   struct GNUNET_TRANSPORT_OfferHelloHandle *oh_tail;
313
314   /**
315    * My configuration.
316    */
317   const struct GNUNET_CONFIGURATION_Handle *cfg;
318
319   /**
320    * Hash map of the current connected neighbours of this peer.
321    * Maps peer identities to 'struct Neighbour' entries.
322    */
323   struct GNUNET_CONTAINER_MultiHashMap *neighbours;
324
325   /**
326    * Heap sorting peers with pending messages by the timestamps that
327    * specify when we could next send a message to the respective peer.
328    * Excludes control messages (which can always go out immediately).
329    * Maps time stamps to 'struct Neighbour' entries.
330    */
331   struct GNUNET_CONTAINER_Heap *ready_heap;
332
333   /**
334    * Peer identity as assumed by this process, or all zeros.
335    */
336   struct GNUNET_PeerIdentity self;
337
338   /**
339    * ID of the task trying to reconnect to the service.
340    */
341   GNUNET_SCHEDULER_TaskIdentifier reconnect_task;
342
343   /**
344    * ID of the task trying to trigger transmission for a peer while
345    * maintaining bandwidth quotas.  In use if there are no control
346    * messages and the smallest entry in the 'ready_heap' has a time
347    * stamp in the future.
348    */
349   GNUNET_SCHEDULER_TaskIdentifier quota_task;
350
351   /**
352    * Delay until we try to reconnect.
353    */
354   struct GNUNET_TIME_Relative reconnect_delay;
355
356   /**
357    * Should we check that 'self' matches what the service thinks?
358    * (if GNUNET_NO, then 'self' is all zeros!).
359    */
360   int check_self;
361
362   /**
363    * Reconnect in progress
364    */
365   int reconnecting;
366 };
367
368
369
370 /**
371  * Schedule the task to send one message, either from the control
372  * list or the peer message queues  to the service.
373  *
374  * @param h transport service to schedule a transmission for
375  */
376 static void
377 schedule_transmission (struct GNUNET_TRANSPORT_Handle *h);
378
379
380 /**
381  * Function that will schedule the job that will try
382  * to connect us again to the client.
383  *
384  * @param h transport service to reconnect
385  */
386 static void
387 disconnect_and_schedule_reconnect (struct GNUNET_TRANSPORT_Handle *h);
388
389
390 /**
391  * Get the neighbour list entry for the given peer
392  *
393  * @param h our context
394  * @param peer peer to look up
395  * @return NULL if no such peer entry exists
396  */
397 static struct Neighbour *
398 neighbour_find (struct GNUNET_TRANSPORT_Handle *h,
399                 const struct GNUNET_PeerIdentity *peer)
400 {
401   return GNUNET_CONTAINER_multihashmap_get (h->neighbours, &peer->hashPubKey);
402 }
403
404
405 /**
406  * Add neighbour to our list
407  *
408  * @return NULL if this API is currently disconnecting from the service
409  */
410 static struct Neighbour *
411 neighbour_add (struct GNUNET_TRANSPORT_Handle *h,
412                const struct GNUNET_PeerIdentity *pid)
413 {
414   struct Neighbour *n;
415
416   LOG (GNUNET_ERROR_TYPE_DEBUG, "Creating entry for neighbour `%4s'.\n",
417        GNUNET_i2s (pid));
418   n = GNUNET_malloc (sizeof (struct Neighbour));
419   n->id = *pid;
420   n->h = h;
421   n->is_ready = GNUNET_YES;
422   n->traffic_overhead = 0;
423   GNUNET_BANDWIDTH_tracker_init (&n->out_tracker,
424                                  GNUNET_CONSTANTS_DEFAULT_BW_IN_OUT,
425                                  MAX_BANDWIDTH_CARRY_S);
426   GNUNET_assert (GNUNET_OK ==
427                  GNUNET_CONTAINER_multihashmap_put (h->neighbours,
428                                                     &n->id.hashPubKey, n,
429                                                     GNUNET_CONTAINER_MULTIHASHMAPOPTION_UNIQUE_ONLY));
430   return n;
431 }
432
433
434 /**
435  * Iterator over hash map entries, for deleting state of a neighbour.
436  *
437  * @param cls the 'struct GNUNET_TRANSPORT_Handle*'
438  * @param key peer identity
439  * @param value value in the hash map, the neighbour entry to delete
440  * @return GNUNET_YES if we should continue to
441  *         iterate,
442  *         GNUNET_NO if not.
443  */
444 static int
445 neighbour_delete (void *cls, const struct GNUNET_HashCode * key, void *value)
446 {
447   struct GNUNET_TRANSPORT_Handle *handle = cls;
448   struct Neighbour *n = value;
449
450   if (NULL != handle->nd_cb)
451     handle->nd_cb (handle->cls, &n->id);
452   GNUNET_assert (NULL == n->th);
453   GNUNET_assert (NULL == n->hn);
454   GNUNET_assert (GNUNET_YES ==
455                  GNUNET_CONTAINER_multihashmap_remove (handle->neighbours, key,
456                                                        n));
457   GNUNET_free (n);
458   return GNUNET_YES;
459 }
460
461
462 /**
463  * Function we use for handling incoming messages.
464  *
465  * @param cls closure (struct GNUNET_TRANSPORT_Handle *)
466  * @param msg message received, NULL on timeout or fatal error
467  */
468 static void
469 demultiplexer (void *cls, const struct GNUNET_MessageHeader *msg)
470 {
471   struct GNUNET_TRANSPORT_Handle *h = cls;
472   const struct DisconnectInfoMessage *dim;
473   const struct ConnectInfoMessage *cim;
474   const struct InboundMessage *im;
475   const struct GNUNET_MessageHeader *imm;
476   const struct SendOkMessage *okm;
477   const struct QuotaSetMessage *qm;
478   struct GNUNET_TRANSPORT_GetHelloHandle *hwl;
479   struct GNUNET_TRANSPORT_GetHelloHandle *next_hwl;
480   struct Neighbour *n;
481   struct GNUNET_PeerIdentity me;
482   uint16_t size;
483   uint32_t bytes_msg;
484   uint32_t bytes_physical;
485
486   GNUNET_assert (h->client != NULL);
487   if (msg == NULL)
488   {
489     LOG (GNUNET_ERROR_TYPE_DEBUG,
490          "Error receiving from transport service, disconnecting temporarily.\n");
491     disconnect_and_schedule_reconnect (h);
492     return;
493   }
494   GNUNET_CLIENT_receive (h->client, &demultiplexer, h,
495                          GNUNET_TIME_UNIT_FOREVER_REL);
496   size = ntohs (msg->size);
497   switch (ntohs (msg->type))
498   {
499   case GNUNET_MESSAGE_TYPE_HELLO:
500     if (GNUNET_OK !=
501         GNUNET_HELLO_get_id ((const struct GNUNET_HELLO_Message *) msg, &me))
502     {
503       GNUNET_break (0);
504       break;
505     }
506     LOG (GNUNET_ERROR_TYPE_DEBUG,
507          "Receiving (my own) `%s' message, I am `%4s'.\n", "HELLO",
508          GNUNET_i2s (&me));
509     GNUNET_free_non_null (h->my_hello);
510     h->my_hello = NULL;
511     if (size < sizeof (struct GNUNET_MessageHeader))
512     {
513       GNUNET_break (0);
514       break;
515     }
516     h->my_hello = GNUNET_malloc (size);
517     memcpy (h->my_hello, msg, size);
518     hwl = h->hwl_head;
519     while (NULL != hwl)
520     {
521       next_hwl = hwl->next;
522       hwl->rec (hwl->rec_cls,
523                 (const struct GNUNET_MessageHeader *) h->my_hello);
524       hwl = next_hwl;
525     }
526     break;
527   case GNUNET_MESSAGE_TYPE_TRANSPORT_CONNECT:
528     if (size < sizeof (struct ConnectInfoMessage))
529     {
530       GNUNET_break (0);
531       break;
532     }
533     cim = (const struct ConnectInfoMessage *) msg;
534     if (size !=
535         sizeof (struct ConnectInfoMessage))
536     {
537       GNUNET_break (0);
538       break;
539     }
540     LOG (GNUNET_ERROR_TYPE_DEBUG, "Receiving `%s' message for `%4s'.\n",
541          "CONNECT", GNUNET_i2s (&cim->id));
542     n = neighbour_find (h, &cim->id);
543     if (n != NULL)
544     {
545       GNUNET_break (0);
546       break;
547     }
548     n = neighbour_add (h, &cim->id);
549     LOG (GNUNET_ERROR_TYPE_DEBUG, "Receiving `%s' message for `%4s' with quota %u\n",
550          "CONNECT", GNUNET_i2s (&cim->id), ntohl (cim->quota_out.value__));
551     GNUNET_BANDWIDTH_tracker_update_quota (&n->out_tracker, cim->quota_out);
552     if (h->nc_cb != NULL)
553       h->nc_cb (h->cls, &n->id);
554     break;
555   case GNUNET_MESSAGE_TYPE_TRANSPORT_DISCONNECT:
556     if (size != sizeof (struct DisconnectInfoMessage))
557     {
558       GNUNET_break (0);
559       break;
560     }
561     dim = (const struct DisconnectInfoMessage *) msg;
562     GNUNET_break (ntohl (dim->reserved) == 0);
563     LOG (GNUNET_ERROR_TYPE_DEBUG, "Receiving `%s' message for `%4s'.\n",
564          "DISCONNECT", GNUNET_i2s (&dim->peer));
565     n = neighbour_find (h, &dim->peer);
566     if (n == NULL)
567     {
568       GNUNET_break (0);
569       break;
570     }
571     neighbour_delete (h, &dim->peer.hashPubKey, n);
572     break;
573   case GNUNET_MESSAGE_TYPE_TRANSPORT_SEND_OK:
574     if (size != sizeof (struct SendOkMessage))
575     {
576       GNUNET_break (0);
577       break;
578     }
579     okm = (const struct SendOkMessage *) msg;
580     bytes_msg = ntohl (okm->bytes_msg);
581     bytes_physical = ntohl (okm->bytes_physical);
582     LOG (GNUNET_ERROR_TYPE_DEBUG, "Receiving `%s' message, transmission %s.\n",
583          "SEND_OK", ntohl (okm->success) == GNUNET_OK ? "succeeded" : "failed");
584
585     n = neighbour_find (h, &okm->peer);
586     if (n == NULL)
587       break;
588
589     if (bytes_physical >= bytes_msg)
590     {
591         LOG (GNUNET_ERROR_TYPE_DEBUG, "Overhead for %u byte message: %u \n",
592             bytes_msg, bytes_physical - bytes_msg);
593       n->traffic_overhead += bytes_physical - bytes_msg;
594     }
595     GNUNET_break (GNUNET_NO == n->is_ready);
596     n->is_ready = GNUNET_YES;
597     if ((n->th != NULL) && (n->hn == NULL))
598     {
599       GNUNET_assert (GNUNET_SCHEDULER_NO_TASK != n->th->timeout_task);
600       GNUNET_SCHEDULER_cancel (n->th->timeout_task);
601       n->th->timeout_task = GNUNET_SCHEDULER_NO_TASK;
602       /* we've been waiting for this (congestion, not quota,
603        * caused delayed transmission) */
604       n->hn = GNUNET_CONTAINER_heap_insert (h->ready_heap, n, 0);
605       schedule_transmission (h);
606     }
607     break;
608   case GNUNET_MESSAGE_TYPE_TRANSPORT_RECV:
609     LOG (GNUNET_ERROR_TYPE_DEBUG, "Receiving `%s' message.\n", "RECV");
610     if (size <
611         sizeof (struct InboundMessage) + sizeof (struct GNUNET_MessageHeader))
612     {
613       GNUNET_break (0);
614       break;
615     }
616     im = (const struct InboundMessage *) msg;
617     imm = (const struct GNUNET_MessageHeader *) &im[1];
618     if (ntohs (imm->size) + sizeof (struct InboundMessage) != size)
619     {
620       GNUNET_break (0);
621       break;
622     }
623     LOG (GNUNET_ERROR_TYPE_DEBUG, "Received message of type %u from `%4s'.\n",
624          ntohs (imm->type), GNUNET_i2s (&im->peer));
625     n = neighbour_find (h, &im->peer);
626     if (n == NULL)
627     {
628       GNUNET_break (0);
629       break;
630     }
631     if (h->rec != NULL)
632       h->rec (h->cls, &im->peer, imm);
633     break;
634   case GNUNET_MESSAGE_TYPE_TRANSPORT_SET_QUOTA:
635     LOG (GNUNET_ERROR_TYPE_DEBUG, "Receiving `%s' message.\n", "SET_QUOTA");
636     if (size != sizeof (struct QuotaSetMessage))
637     {
638       GNUNET_break (0);
639       break;
640     }
641     qm = (const struct QuotaSetMessage *) msg;
642     n = neighbour_find (h, &qm->peer);
643     if (n == NULL)
644       break;
645     LOG (GNUNET_ERROR_TYPE_DEBUG, "Receiving `%s' message for `%4s' with quota %u\n",
646          "SET_QUOTA", GNUNET_i2s (&qm->peer), ntohl (qm->quota.value__));
647     GNUNET_BANDWIDTH_tracker_update_quota (&n->out_tracker, qm->quota);
648     break;
649   default:
650     LOG (GNUNET_ERROR_TYPE_ERROR,
651          _("Received unexpected message of type %u in %s:%u\n"),
652          ntohs (msg->type), __FILE__, __LINE__);
653     GNUNET_break (0);
654     break;
655   }
656 }
657
658
659 /**
660  * A transmission request could not be satisfied because of
661  * network congestion.  Notify the initiator and clean up.
662  *
663  * @param cls the 'struct GNUNET_TRANSPORT_TransmitHandle'
664  * @param tc scheduler context
665  */
666 static void
667 timeout_request_due_to_congestion (void *cls,
668                                    const struct GNUNET_SCHEDULER_TaskContext
669                                    *tc)
670 {
671   struct GNUNET_TRANSPORT_TransmitHandle *th = cls;
672   struct Neighbour *n = th->neighbour;
673
674   n->th->timeout_task = GNUNET_SCHEDULER_NO_TASK;
675   GNUNET_assert (th == n->th);
676   GNUNET_assert (NULL == n->hn);
677   n->th = NULL;
678   th->notify (th->notify_cls, 0, NULL);
679   GNUNET_free (th);
680 }
681
682
683 /**
684  * Transmit message(s) to service.
685  *
686  * @param cls handle to transport
687  * @param size number of bytes available in buf
688  * @param buf where to copy the message
689  * @return number of bytes copied to buf
690  */
691 static size_t
692 transport_notify_ready (void *cls, size_t size, void *buf)
693 {
694   struct GNUNET_TRANSPORT_Handle *h = cls;
695   struct GNUNET_TRANSPORT_TransmitHandle *th;
696   struct Neighbour *n;
697   char *cbuf;
698   struct OutboundMessage obm;
699   size_t ret;
700   size_t nret;
701   size_t mret;
702
703   GNUNET_assert (NULL != h->client);
704   h->cth = NULL;
705   if (NULL == buf)
706   {
707     /* transmission failed */
708     disconnect_and_schedule_reconnect (h);
709     return 0;
710   }
711
712   cbuf = buf;
713   ret = 0;
714   /* first send control messages */
715   while ((NULL != (th = h->control_head)) && (th->notify_size <= size))
716   {
717     GNUNET_CONTAINER_DLL_remove (h->control_head, h->control_tail, th);
718     nret = th->notify (th->notify_cls, size, &cbuf[ret]);
719     LOG (GNUNET_ERROR_TYPE_DEBUG, "Added %u bytes of control message at %u\n",
720          nret, ret);
721     GNUNET_free (th);
722     ret += nret;
723     size -= nret;
724   }
725
726   /* then, if possible and no control messages pending, send data messages */
727   while ((NULL == h->control_head) &&
728          (NULL != (n = GNUNET_CONTAINER_heap_peek (h->ready_heap))))
729   {
730     if (GNUNET_YES != n->is_ready)
731     {
732       /* peer not ready, wait for notification! */
733       GNUNET_assert (n == GNUNET_CONTAINER_heap_remove_root (h->ready_heap));
734       n->hn = NULL;
735       GNUNET_assert (GNUNET_SCHEDULER_NO_TASK == n->th->timeout_task);
736       n->th->timeout_task =
737           GNUNET_SCHEDULER_add_delayed (GNUNET_TIME_absolute_get_remaining
738                                         (n->th->timeout),
739                                         &timeout_request_due_to_congestion,
740                                         n->th);
741       continue;
742     }
743     th = n->th;
744     if (th->notify_size + sizeof (struct OutboundMessage) > size)
745       break;                    /* does not fit */
746     if (GNUNET_BANDWIDTH_tracker_get_delay
747         (&n->out_tracker, th->notify_size).rel_value > 0)
748       break;                    /* too early */
749     GNUNET_assert (n == GNUNET_CONTAINER_heap_remove_root (h->ready_heap));
750     n->hn = NULL;
751     n->th = NULL;
752     n->is_ready = GNUNET_NO;
753     GNUNET_assert (size >= sizeof (struct OutboundMessage));
754     mret =
755         th->notify (th->notify_cls, size - sizeof (struct OutboundMessage),
756                     &cbuf[ret + sizeof (struct OutboundMessage)]);
757     GNUNET_assert (mret <= size - sizeof (struct OutboundMessage));
758     if (mret != 0)
759     {
760       GNUNET_assert (mret + sizeof (struct OutboundMessage) <
761                      GNUNET_SERVER_MAX_MESSAGE_SIZE);
762       obm.header.type = htons (GNUNET_MESSAGE_TYPE_TRANSPORT_SEND);
763       obm.header.size = htons (mret + sizeof (struct OutboundMessage));
764       obm.priority = htonl (th->priority);
765       obm.timeout =
766           GNUNET_TIME_relative_hton (GNUNET_TIME_absolute_get_remaining
767                                      (th->timeout));
768       obm.peer = n->id;
769       memcpy (&cbuf[ret], &obm, sizeof (struct OutboundMessage));
770       ret += (mret + sizeof (struct OutboundMessage));
771       size -= (mret + sizeof (struct OutboundMessage));
772       GNUNET_BANDWIDTH_tracker_consume (&n->out_tracker, mret);
773     }
774     GNUNET_free (th);
775   }
776   /* if there are more pending messages, try to schedule those */
777   schedule_transmission (h);
778   LOG (GNUNET_ERROR_TYPE_DEBUG, "Transmitting %u bytes to transport service\n",
779        ret);
780   return ret;
781 }
782
783
784 /**
785  * Schedule the task to send one message, either from the control
786  * list or the peer message queues  to the service.
787  *
788  * @param cls transport service to schedule a transmission for
789  * @param tc scheduler context
790  */
791 static void
792 schedule_transmission_task (void *cls,
793                             const struct GNUNET_SCHEDULER_TaskContext *tc)
794 {
795   struct GNUNET_TRANSPORT_Handle *h = cls;
796   size_t size;
797   struct GNUNET_TRANSPORT_TransmitHandle *th;
798   struct Neighbour *n;
799
800   h->quota_task = GNUNET_SCHEDULER_NO_TASK;
801   GNUNET_assert (NULL != h->client);
802   /* destroy all requests that have timed out */
803   while ((NULL != (n = GNUNET_CONTAINER_heap_peek (h->ready_heap))) &&
804          (GNUNET_TIME_absolute_get_remaining (n->th->timeout).rel_value == 0))
805   {
806     /* notify client that the request could not be satisfied within
807      * the given time constraints */
808     th = n->th;
809     n->th = NULL;
810     GNUNET_assert (n == GNUNET_CONTAINER_heap_remove_root (h->ready_heap));
811     n->hn = NULL;
812     LOG (GNUNET_ERROR_TYPE_DEBUG,
813          "Signalling timeout for transmission to peer %s due to congestion\n",
814          GNUNET_i2s (&n->id));
815     GNUNET_assert (0 == th->notify (th->notify_cls, 0, NULL));
816     GNUNET_free (th);
817   }
818   if (NULL != h->cth)
819     return;
820   if (NULL != h->control_head)
821   {
822     size = h->control_head->notify_size;
823   }
824   else
825   {
826     n = GNUNET_CONTAINER_heap_peek (h->ready_heap);
827     if (NULL == n)
828       return;                   /* no pending messages */
829     size = n->th->notify_size + sizeof (struct OutboundMessage);
830   }
831   LOG (GNUNET_ERROR_TYPE_DEBUG, "Calling notify_transmit_ready\n");
832   h->cth =
833       GNUNET_CLIENT_notify_transmit_ready (h->client, size,
834                                            GNUNET_TIME_UNIT_FOREVER_REL,
835                                            GNUNET_NO, &transport_notify_ready,
836                                            h);
837   GNUNET_assert (NULL != h->cth);
838 }
839
840
841 /**
842  * Schedule the task to send one message, either from the control
843  * list or the peer message queues  to the service.
844  *
845  * @param h transport service to schedule a transmission for
846  */
847 static void
848 schedule_transmission (struct GNUNET_TRANSPORT_Handle *h)
849 {
850   struct GNUNET_TIME_Relative delay;
851   struct Neighbour *n;
852
853   GNUNET_assert (NULL != h->client);
854   if (h->quota_task != GNUNET_SCHEDULER_NO_TASK)
855   {
856     GNUNET_SCHEDULER_cancel (h->quota_task);
857     h->quota_task = GNUNET_SCHEDULER_NO_TASK;
858   }
859   if (NULL != h->control_head)
860     delay = GNUNET_TIME_UNIT_ZERO;
861   else if (NULL != (n = GNUNET_CONTAINER_heap_peek (h->ready_heap)))
862   {
863     delay =
864         GNUNET_BANDWIDTH_tracker_get_delay (&n->out_tracker,
865                                             n->th->notify_size + n->traffic_overhead);
866     n->traffic_overhead = 0;
867   }
868   else
869     return;                     /* no work to be done */
870   LOG (GNUNET_ERROR_TYPE_DEBUG,
871        "Scheduling next transmission to service in %llu ms\n",
872        (unsigned long long) delay.rel_value);
873   h->quota_task =
874       GNUNET_SCHEDULER_add_delayed (delay, &schedule_transmission_task, h);
875 }
876
877
878 /**
879  * Queue control request for transmission to the transport
880  * service.
881  *
882  * @param h handle to the transport service
883  * @param size number of bytes to be transmitted
884  * @param notify function to call to get the content
885  * @param notify_cls closure for notify
886  * @return a GNUNET_TRANSPORT_TransmitHandle
887  */
888 static struct GNUNET_TRANSPORT_TransmitHandle *
889 schedule_control_transmit (struct GNUNET_TRANSPORT_Handle *h, size_t size,
890                            GNUNET_CONNECTION_TransmitReadyNotify notify,
891                            void *notify_cls)
892 {
893   struct GNUNET_TRANSPORT_TransmitHandle *th;
894
895   LOG (GNUNET_ERROR_TYPE_DEBUG, "Control transmit of %u bytes requested\n",
896        size);
897   th = GNUNET_malloc (sizeof (struct GNUNET_TRANSPORT_TransmitHandle));
898   th->notify = notify;
899   th->notify_cls = notify_cls;
900   th->notify_size = size;
901   GNUNET_CONTAINER_DLL_insert_tail (h->control_head, h->control_tail, th);
902   schedule_transmission (h);
903   return th;
904 }
905
906
907 /**
908  * Transmit START message to service.
909  *
910  * @param cls unused
911  * @param size number of bytes available in buf
912  * @param buf where to copy the message
913  * @return number of bytes copied to buf
914  */
915 static size_t
916 send_start (void *cls, size_t size, void *buf)
917 {
918   struct GNUNET_TRANSPORT_Handle *h = cls;
919   struct StartMessage s;
920   uint32_t options;
921
922   if (buf == NULL)
923   {
924     /* Can only be shutdown, just give up */
925     LOG (GNUNET_ERROR_TYPE_DEBUG,
926          "Shutdown while trying to transmit `%s' request.\n", "START");
927     return 0;
928   }
929   LOG (GNUNET_ERROR_TYPE_DEBUG, "Transmitting `%s' request.\n", "START");
930   GNUNET_assert (size >= sizeof (struct StartMessage));
931   s.header.size = htons (sizeof (struct StartMessage));
932   s.header.type = htons (GNUNET_MESSAGE_TYPE_TRANSPORT_START);
933   options = 0;
934   if (h->check_self)
935     options |= 1;
936   if (h->rec != NULL)
937     options |= 2;
938   s.options = htonl (options);
939   s.self = h->self;
940   memcpy (buf, &s, sizeof (struct StartMessage));
941   GNUNET_CLIENT_receive (h->client, &demultiplexer, h,
942                          GNUNET_TIME_UNIT_FOREVER_REL);
943   return sizeof (struct StartMessage);
944 }
945
946
947 /**
948  * Try again to connect to transport service.
949  *
950  * @param cls the handle to the transport service
951  * @param tc scheduler context
952  */
953 static void
954 reconnect (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
955 {
956   struct GNUNET_TRANSPORT_Handle *h = cls;
957
958   h->reconnect_task = GNUNET_SCHEDULER_NO_TASK;
959   if ((tc->reason & GNUNET_SCHEDULER_REASON_SHUTDOWN) != 0)
960   {
961     /* shutdown, just give up */
962     return;
963   }
964   LOG (GNUNET_ERROR_TYPE_DEBUG, "Connecting to transport service.\n");
965   GNUNET_assert (h->client == NULL);
966   GNUNET_assert (h->control_head == NULL);
967   GNUNET_assert (h->control_tail == NULL);
968   h->client = GNUNET_CLIENT_connect ("transport", h->cfg);
969   GNUNET_assert (h->client != NULL);
970   schedule_control_transmit (h, sizeof (struct StartMessage), &send_start, h);
971 }
972
973
974 /**
975  * Function that will schedule the job that will try
976  * to connect us again to the client.
977  *
978  * @param h transport service to reconnect
979  */
980 static void
981 disconnect_and_schedule_reconnect (struct GNUNET_TRANSPORT_Handle *h)
982 {
983   struct GNUNET_TRANSPORT_TransmitHandle *th;
984
985   GNUNET_assert (h->reconnect_task == GNUNET_SCHEDULER_NO_TASK);
986   if (NULL != h->cth)
987   {
988     GNUNET_CLIENT_notify_transmit_ready_cancel (h->cth);
989     h->cth = NULL;
990   }
991   if (NULL != h->client)
992   {
993     GNUNET_CLIENT_disconnect (h->client);
994     h->client = NULL;
995   }
996   /* Forget about all neighbours that we used to be connected to */
997   GNUNET_CONTAINER_multihashmap_iterate (h->neighbours, &neighbour_delete, h);
998   if (h->quota_task != GNUNET_SCHEDULER_NO_TASK)
999   {
1000     GNUNET_SCHEDULER_cancel (h->quota_task);
1001     h->quota_task = GNUNET_SCHEDULER_NO_TASK;
1002   }
1003   while ((NULL != (th = h->control_head)))
1004   {
1005     GNUNET_CONTAINER_DLL_remove (h->control_head, h->control_tail, th);
1006     th->notify (th->notify_cls, 0, NULL);
1007     GNUNET_free (th);
1008   }
1009   LOG (GNUNET_ERROR_TYPE_DEBUG,
1010        "Scheduling task to reconnect to transport service in %llu ms.\n",
1011        h->reconnect_delay.rel_value);
1012   h->reconnect_task =
1013       GNUNET_SCHEDULER_add_delayed (h->reconnect_delay, &reconnect, h);
1014   h->reconnect_delay = GNUNET_TIME_STD_BACKOFF (h->reconnect_delay);
1015 }
1016
1017
1018 /**
1019  * Cancel control request for transmission to the transport service.
1020  *
1021  * @param th handle to the transport service
1022  * @param tth transmit handle to cancel
1023  */
1024 static void
1025 cancel_control_transmit (struct GNUNET_TRANSPORT_Handle *th, struct GNUNET_TRANSPORT_TransmitHandle *tth)
1026 {
1027   GNUNET_assert (NULL != th);
1028   GNUNET_assert (NULL != tth);
1029
1030   LOG (GNUNET_ERROR_TYPE_DEBUG, "Canceling transmit of contral transmission requested\n");
1031
1032   GNUNET_CONTAINER_DLL_remove (th->control_head, th->control_tail, tth);
1033   GNUNET_free (tth);
1034 }
1035
1036
1037
1038 /**
1039  * Send REQUEST_CONNECT message to the service.
1040  *
1041  * @param cls the 'struct GNUNET_PeerIdentity'
1042  * @param size number of bytes available in buf
1043  * @param buf where to copy the message
1044  * @return number of bytes copied to buf
1045  */
1046 static size_t
1047 send_try_connect (void *cls, size_t size, void *buf)
1048 {
1049   struct GNUNET_TRANSPORT_TryConnectHandle *tch = cls;
1050   struct TransportRequestConnectMessage msg;
1051
1052   if (buf == NULL)
1053   {
1054     if (NULL != tch->cb)
1055       tch->cb (tch->cb_cls, GNUNET_SYSERR);
1056     GNUNET_CONTAINER_DLL_remove (tch->th->tc_head, tch->th->tc_tail, tch);
1057     GNUNET_free (tch);
1058     return 0;
1059   }
1060   LOG (GNUNET_ERROR_TYPE_DEBUG,
1061        "Transmitting `%s' request with respect to `%4s'.\n", "REQUEST_CONNECT",
1062        GNUNET_i2s (&tch->pid));
1063   GNUNET_assert (size >= sizeof (struct TransportRequestConnectMessage));
1064   msg.header.size = htons (sizeof (struct TransportRequestConnectMessage));
1065   msg.header.type = htons (GNUNET_MESSAGE_TYPE_TRANSPORT_REQUEST_CONNECT);
1066   msg.reserved = htonl (0);
1067   msg.peer = tch->pid;
1068   memcpy (buf, &msg, sizeof (msg));
1069   if (NULL != tch->cb)
1070     tch->cb (tch->cb_cls, GNUNET_OK);
1071   GNUNET_CONTAINER_DLL_remove (tch->th->tc_head, tch->th->tc_tail, tch);
1072   GNUNET_free (tch);
1073   return sizeof (struct TransportRequestConnectMessage);
1074 }
1075
1076 /**
1077  * Ask the transport service to establish a connection to
1078  * the given peer.
1079  *
1080  * @param handle connection to transport service
1081  * @param target who we should try to connect to
1082  * @param cb callback to be called when request was transmitted to transport
1083  *         service
1084  * @param cb_cls closure for the callback
1085  * @return a GNUNET_TRANSPORT_TryConnectHandle handle or
1086  *         NULL on failure (cb will not be called)
1087  */
1088 struct GNUNET_TRANSPORT_TryConnectHandle *
1089 GNUNET_TRANSPORT_try_connect (struct GNUNET_TRANSPORT_Handle *handle,
1090                               const struct GNUNET_PeerIdentity *target,
1091                               GNUNET_TRANSPORT_TryConnectCallback cb,
1092                               void *cb_cls)
1093 {
1094   struct GNUNET_TRANSPORT_TryConnectHandle *tch = NULL;
1095
1096   if (NULL == handle->client)
1097       return NULL;
1098
1099   tch = GNUNET_malloc (sizeof (struct GNUNET_TRANSPORT_TryConnectHandle));
1100   tch->th = handle;
1101   tch->pid = *(target);
1102   tch->cb = cb;
1103   tch->cb_cls = cb_cls;
1104   tch->tth = schedule_control_transmit (handle,
1105                              sizeof (struct TransportRequestConnectMessage),
1106                              &send_try_connect, tch);
1107   GNUNET_CONTAINER_DLL_insert(handle->tc_head, handle->tc_tail, tch);
1108   return tch;
1109 }
1110
1111
1112 /**
1113  * Cancel the request to transport to try a connect
1114  * Callback will not be called
1115  *
1116  * @param tch GNUNET_TRANSPORT_TryConnectHandle handle to cancel
1117  */
1118 void
1119 GNUNET_TRANSPORT_try_connect_cancel (struct GNUNET_TRANSPORT_TryConnectHandle *tch)
1120 {
1121   struct GNUNET_TRANSPORT_Handle *th;
1122   GNUNET_assert (NULL != tch);
1123
1124   th = tch->th;
1125   cancel_control_transmit (th, tch->tth);
1126   GNUNET_CONTAINER_DLL_remove (th->tc_head, th->tc_tail, tch);
1127   GNUNET_free (tch);
1128 }
1129
1130 /**
1131  * Send HELLO message to the service.
1132  *
1133  * @param cls the HELLO message to send
1134  * @param size number of bytes available in buf
1135  * @param buf where to copy the message
1136  * @return number of bytes copied to buf
1137  */
1138 static size_t
1139 send_hello (void *cls, size_t size, void *buf)
1140 {
1141   struct GNUNET_TRANSPORT_OfferHelloHandle *ohh = cls;
1142   struct GNUNET_MessageHeader *msg = ohh->msg;
1143   uint16_t ssize;
1144   struct GNUNET_SCHEDULER_TaskContext tc;
1145   tc.read_ready = NULL;
1146   tc.write_ready = NULL;
1147   tc.reason = GNUNET_SCHEDULER_REASON_TIMEOUT;
1148
1149   if (buf == NULL)
1150   {
1151     LOG (GNUNET_ERROR_TYPE_DEBUG,
1152          "Timeout while trying to transmit `%s' request.\n", "HELLO");
1153     if (NULL != ohh->cont)
1154       ohh->cont (ohh->cls, &tc);
1155     GNUNET_free (msg);
1156     GNUNET_CONTAINER_DLL_remove (ohh->th->oh_head, ohh->th->oh_tail, ohh);
1157     GNUNET_free (ohh);
1158     return 0;
1159   }
1160   LOG (GNUNET_ERROR_TYPE_DEBUG, "Transmitting `%s' request.\n", "HELLO");
1161   ssize = ntohs (msg->size);
1162   GNUNET_assert (size >= ssize);
1163   memcpy (buf, msg, ssize);
1164   GNUNET_free (msg);
1165   tc.reason = GNUNET_SCHEDULER_REASON_READ_READY;
1166   if (NULL != ohh->cont)
1167     ohh->cont (ohh->cls, &tc);
1168   GNUNET_CONTAINER_DLL_remove (ohh->th->oh_head, ohh->th->oh_tail, ohh);
1169   GNUNET_free (ohh);
1170   return ssize;
1171 }
1172
1173
1174 /**
1175  * Send traffic metric message to the service.
1176  *
1177  * @param cls the message to send
1178  * @param size number of bytes available in buf
1179  * @param buf where to copy the message
1180  * @return number of bytes copied to buf
1181  */
1182 static size_t
1183 send_metric (void *cls, size_t size, void *buf)
1184 {
1185         struct TrafficMetricMessage *msg = cls;
1186   uint16_t ssize;
1187   if (buf == NULL)
1188   {
1189     LOG (GNUNET_ERROR_TYPE_DEBUG,
1190          "Timeout while trying to transmit `%s' request.\n", "TRAFFIC_METRIC");
1191     GNUNET_free (msg);
1192     return 0;
1193   }
1194   LOG (GNUNET_ERROR_TYPE_DEBUG, "Transmitting `%s' request.\n", "TRAFFIC_METRIC");
1195   ssize = ntohs (msg->header.size);
1196   GNUNET_assert (size >= ssize);
1197   memcpy (buf, msg, ssize);
1198   GNUNET_free (msg);
1199   return ssize;
1200 }
1201
1202
1203 /**
1204  * Set transport metrics for a peer and a direction
1205  *
1206  * @param handle transport handle
1207  * @param peer the peer to set the metric for
1208  * @param inbound set inbound direction (GNUNET_YES or GNUNET_NO)
1209  * @param outbound set outbound direction (GNUNET_YES or GNUNET_NO)
1210  * @param ats the metric as ATS information
1211  * @param ats_count the number of metrics
1212  *
1213  * Supported ATS values:
1214  * GNUNET_ATS_QUALITY_NET_DELAY  (value in ms)
1215  * GNUNET_ATS_QUALITY_NET_DISTANCE (value in count(hops))
1216  *
1217  * Example
1218  * To enforce a delay of 10 ms for peer p1 in sending direction use:
1219  *
1220  * struct GNUNET_ATS_Information ats;
1221  * ats.type = ntohl (GNUNET_ATS_QUALITY_NET_DELAY);
1222  * ats.value = ntohl (10);
1223  * GNUNET_TRANSPORT_set_traffic_metric (th, p1, TM_SEND, &ats, 1);
1224  *
1225  * Note:
1226  * Delay restrictions in receiving direction will be enforced with
1227  * 1 message delay.
1228  */
1229 void
1230 GNUNET_TRANSPORT_set_traffic_metric (struct GNUNET_TRANSPORT_Handle *handle,
1231                                                                                                                                                 const struct GNUNET_PeerIdentity *peer,
1232                                                                                                                                                 int inbound,
1233                                                                                                                                                 int outbound,
1234                                                                                                                                                 const struct GNUNET_ATS_Information *ats,
1235                                                                                                                                                 size_t ats_count)
1236 {
1237   struct TrafficMetricMessage *msg;
1238
1239   GNUNET_assert (NULL != handle);
1240   GNUNET_assert (NULL != peer);
1241   GNUNET_assert ((outbound == GNUNET_YES) || (outbound == GNUNET_NO));
1242   GNUNET_assert ((inbound == GNUNET_YES) || (inbound == GNUNET_NO));
1243
1244   if ((GNUNET_NO == inbound) && (GNUNET_NO == outbound))
1245         return;
1246   if (0 == ats_count)
1247         return;
1248
1249   size_t len = sizeof (struct TrafficMetricMessage) +
1250                                                  ats_count * sizeof (struct GNUNET_ATS_Information);
1251
1252   msg = GNUNET_malloc (len);
1253   msg->header.size = htons (len);
1254   msg->header.type = htons (GNUNET_MESSAGE_TYPE_TRANSPORT_TRAFFIC_METRIC);
1255   msg->direction = htons (0 + outbound + 2 * inbound);
1256   msg->ats_count = htons (ats_count);
1257   msg->peer = (*peer);
1258   memcpy (&msg[1], ats, ats_count * sizeof (struct GNUNET_ATS_Information));
1259   schedule_control_transmit (handle, len, &send_metric, msg);
1260 }
1261
1262
1263
1264 /**
1265  * Offer the transport service the HELLO of another peer.  Note that
1266  * the transport service may just ignore this message if the HELLO is
1267  * malformed or useless due to our local configuration.
1268  *
1269  * @param handle connection to transport service
1270  * @param hello the hello message
1271  * @param cont continuation to call when HELLO has been sent,
1272  *      tc reason GNUNET_SCHEDULER_REASON_TIMEOUT for fail
1273  *      tc reasong GNUNET_SCHEDULER_REASON_READ_READY for success
1274  * @param cls closure for continuation
1275  * @return a GNUNET_TRANSPORT_OfferHelloHandle handle or NULL on failure,
1276  *      in case of failure cont will not be called
1277  *
1278  */
1279 struct GNUNET_TRANSPORT_OfferHelloHandle *
1280 GNUNET_TRANSPORT_offer_hello (struct GNUNET_TRANSPORT_Handle *handle,
1281                               const struct GNUNET_MessageHeader *hello,
1282                               GNUNET_SCHEDULER_Task cont, void *cls)
1283 {
1284   struct GNUNET_TRANSPORT_OfferHelloHandle *ohh;
1285   struct GNUNET_MessageHeader *msg;
1286   struct GNUNET_PeerIdentity peer;
1287   uint16_t size;
1288
1289   GNUNET_assert (NULL != handle);
1290   GNUNET_assert (NULL != hello);
1291
1292   if (NULL == handle->client)
1293     return NULL;
1294
1295   GNUNET_break (ntohs (hello->type) == GNUNET_MESSAGE_TYPE_HELLO);
1296   size = ntohs (hello->size);
1297   GNUNET_break (size >= sizeof (struct GNUNET_MessageHeader));
1298   if (GNUNET_OK !=
1299       GNUNET_HELLO_get_id ((const struct GNUNET_HELLO_Message *) hello, &peer))
1300   {
1301     GNUNET_break (0);
1302     return NULL;
1303   }
1304
1305   msg = GNUNET_malloc (size);
1306   memcpy (msg, hello, size);
1307   LOG (GNUNET_ERROR_TYPE_DEBUG,
1308        "Offering `%s' message of `%4s' to transport for validation.\n", "HELLO",
1309        GNUNET_i2s (&peer));
1310
1311   ohh = GNUNET_malloc (sizeof (struct GNUNET_TRANSPORT_OfferHelloHandle));
1312   ohh->th = handle;
1313   ohh->cont = cont;
1314   ohh->cls = cls;
1315   ohh->msg = msg;
1316   ohh->tth = schedule_control_transmit (handle, size, &send_hello, ohh);
1317   GNUNET_CONTAINER_DLL_insert (handle->oh_head, handle->oh_tail, ohh);
1318   return ohh;
1319 }
1320
1321
1322 /**
1323  * Cancel the request to transport to offer the HELLO message
1324  *
1325  * @param ohh the GNUNET_TRANSPORT_OfferHelloHandle to cancel
1326  */
1327 void
1328 GNUNET_TRANSPORT_offer_hello_cancel (struct GNUNET_TRANSPORT_OfferHelloHandle *ohh)
1329 {
1330   struct GNUNET_TRANSPORT_Handle *th = ohh->th;
1331   GNUNET_assert (NULL != ohh);
1332
1333   cancel_control_transmit (ohh->th, ohh->tth);
1334   GNUNET_CONTAINER_DLL_remove (th->oh_head, th->oh_tail, ohh);
1335   GNUNET_free (ohh->msg);
1336   GNUNET_free (ohh);
1337 }
1338
1339 int
1340 GNUNET_TRANSPORT_check_neighbour_connected (struct GNUNET_TRANSPORT_Handle *handle,
1341                                                                 const struct GNUNET_PeerIdentity *peer)
1342 {
1343         GNUNET_assert (NULL != handle);
1344         GNUNET_assert (NULL != peer);
1345
1346         if (GNUNET_YES == GNUNET_CONTAINER_multihashmap_contains(handle->neighbours, &peer->hashPubKey))
1347                         return GNUNET_YES;
1348         else
1349                 return GNUNET_NO;
1350 }
1351
1352
1353 /**
1354  * Task to call the HelloUpdateCallback of the GetHelloHandle
1355  *
1356  * @param cls the GetHelloHandle
1357  * @param tc the scheduler task context
1358  */
1359 static void
1360 call_hello_update_cb_async (void *cls,
1361                             const struct GNUNET_SCHEDULER_TaskContext *tc)
1362 {
1363   struct GNUNET_TRANSPORT_GetHelloHandle *ghh = cls;
1364
1365   GNUNET_assert (NULL != ghh->handle->my_hello);
1366   GNUNET_assert (GNUNET_SCHEDULER_NO_TASK != ghh->notify_task);
1367   ghh->notify_task = GNUNET_SCHEDULER_NO_TASK;
1368   ghh->rec (ghh->rec_cls, 
1369             (const struct GNUNET_MessageHeader *) ghh->handle->my_hello);
1370 }
1371
1372
1373 /**
1374  * Obtain the HELLO message for this peer.  The callback given in this function
1375  * is never called synchronously.
1376  *
1377  * @param handle connection to transport service
1378  * @param rec function to call with the HELLO, sender will be our peer
1379  *            identity; message and sender will be NULL on timeout
1380  *            (handshake with transport service pending/failed).
1381  *             cost estimate will be 0.
1382  * @param rec_cls closure for rec
1383  * @return handle to cancel the operation
1384  */
1385 struct GNUNET_TRANSPORT_GetHelloHandle *
1386 GNUNET_TRANSPORT_get_hello (struct GNUNET_TRANSPORT_Handle *handle,
1387                             GNUNET_TRANSPORT_HelloUpdateCallback rec,
1388                             void *rec_cls)
1389 {
1390   struct GNUNET_TRANSPORT_GetHelloHandle *hwl;
1391
1392   hwl = GNUNET_malloc (sizeof (struct GNUNET_TRANSPORT_GetHelloHandle));
1393   hwl->rec = rec;
1394   hwl->rec_cls = rec_cls;
1395   hwl->handle = handle;
1396   GNUNET_CONTAINER_DLL_insert (handle->hwl_head, handle->hwl_tail, hwl);
1397   if (handle->my_hello != NULL)
1398     hwl->notify_task = GNUNET_SCHEDULER_add_now (&call_hello_update_cb_async,
1399                                                  hwl);
1400   return hwl;
1401 }
1402
1403
1404 /**
1405  * Stop receiving updates about changes to our HELLO message.
1406  *
1407  * @param ghh handle to cancel
1408  */
1409 void
1410 GNUNET_TRANSPORT_get_hello_cancel (struct GNUNET_TRANSPORT_GetHelloHandle *ghh)
1411 {
1412   struct GNUNET_TRANSPORT_Handle *handle = ghh->handle;
1413
1414   if (GNUNET_SCHEDULER_NO_TASK != ghh->notify_task)
1415     GNUNET_SCHEDULER_cancel (ghh->notify_task);
1416   GNUNET_CONTAINER_DLL_remove (handle->hwl_head, handle->hwl_tail, ghh);
1417   GNUNET_free (ghh);
1418 }
1419
1420
1421 /**
1422  * Connect to the transport service.  Note that the connection may
1423  * complete (or fail) asynchronously.
1424  *
1425  * @param cfg configuration to use
1426  * @param self our own identity (API should check that it matches
1427  *             the identity found by transport), or NULL (no check)
1428  * @param cls closure for the callbacks
1429  * @param rec receive function to call
1430  * @param nc function to call on connect events
1431  * @param nd function to call on disconnect events
1432  */
1433 struct GNUNET_TRANSPORT_Handle *
1434 GNUNET_TRANSPORT_connect (const struct GNUNET_CONFIGURATION_Handle *cfg,
1435                           const struct GNUNET_PeerIdentity *self, void *cls,
1436                           GNUNET_TRANSPORT_ReceiveCallback rec,
1437                           GNUNET_TRANSPORT_NotifyConnect nc,
1438                           GNUNET_TRANSPORT_NotifyDisconnect nd)
1439 {
1440   struct GNUNET_TRANSPORT_Handle *ret;
1441
1442   ret = GNUNET_malloc (sizeof (struct GNUNET_TRANSPORT_Handle));
1443   if (self != NULL)
1444   {
1445     ret->self = *self;
1446     ret->check_self = GNUNET_YES;
1447   }
1448   ret->cfg = cfg;
1449   ret->cls = cls;
1450   ret->rec = rec;
1451   ret->nc_cb = nc;
1452   ret->nd_cb = nd;
1453   ret->reconnect_delay = GNUNET_TIME_UNIT_ZERO;
1454   ret->neighbours =
1455     GNUNET_CONTAINER_multihashmap_create (STARTING_NEIGHBOURS_SIZE, GNUNET_YES);
1456   ret->ready_heap =
1457       GNUNET_CONTAINER_heap_create (GNUNET_CONTAINER_HEAP_ORDER_MIN);
1458   LOG (GNUNET_ERROR_TYPE_DEBUG, "Connecting to transport service.\n");
1459   ret->client = GNUNET_CLIENT_connect ("transport", cfg);
1460   if (ret->client == NULL)
1461   {
1462     GNUNET_free (ret);
1463     return NULL;
1464   }
1465   schedule_control_transmit (ret, sizeof (struct StartMessage), &send_start, ret);
1466   return ret;
1467 }
1468
1469
1470 /**
1471  * Disconnect from the transport service.
1472  *
1473  * @param handle handle to the service as returned from GNUNET_TRANSPORT_connect
1474  */
1475 void
1476 GNUNET_TRANSPORT_disconnect (struct GNUNET_TRANSPORT_Handle *handle)
1477 {
1478   LOG (GNUNET_ERROR_TYPE_DEBUG, "Transport disconnect called!\n");
1479   /* this disconnects all neighbours... */
1480   if (handle->reconnect_task == GNUNET_SCHEDULER_NO_TASK)
1481     disconnect_and_schedule_reconnect (handle);
1482   /* and now we stop trying to connect again... */
1483   if (handle->reconnect_task != GNUNET_SCHEDULER_NO_TASK)
1484   {
1485     GNUNET_SCHEDULER_cancel (handle->reconnect_task);
1486     handle->reconnect_task = GNUNET_SCHEDULER_NO_TASK;
1487   }
1488   GNUNET_CONTAINER_multihashmap_destroy (handle->neighbours);
1489   handle->neighbours = NULL;
1490   if (handle->quota_task != GNUNET_SCHEDULER_NO_TASK)
1491   {
1492     GNUNET_SCHEDULER_cancel (handle->quota_task);
1493     handle->quota_task = GNUNET_SCHEDULER_NO_TASK;
1494   }
1495   GNUNET_free_non_null (handle->my_hello);
1496   handle->my_hello = NULL;
1497   GNUNET_assert (handle->tc_head == NULL);
1498   GNUNET_assert (handle->tc_tail == NULL);
1499   GNUNET_assert (handle->hwl_head == NULL);
1500   GNUNET_assert (handle->hwl_tail == NULL);
1501   GNUNET_CONTAINER_heap_destroy (handle->ready_heap);
1502   handle->ready_heap = NULL;
1503   GNUNET_free (handle);
1504 }
1505
1506
1507 /**
1508  * Check if we could queue a message of the given size for
1509  * transmission.  The transport service will take both its
1510  * internal buffers and bandwidth limits imposed by the
1511  * other peer into consideration when answering this query.
1512  *
1513  * @param handle connection to transport service
1514  * @param target who should receive the message
1515  * @param size how big is the message we want to transmit?
1516  * @param priority how important is the message?
1517  * @param timeout after how long should we give up (and call
1518  *        notify with buf NULL and size 0)?
1519  * @param notify function to call when we are ready to
1520  *        send such a message
1521  * @param notify_cls closure for notify
1522  * @return NULL if someone else is already waiting to be notified
1523  *         non-NULL if the notify callback was queued (can be used to cancel
1524  *         using GNUNET_TRANSPORT_notify_transmit_ready_cancel)
1525  */
1526 struct GNUNET_TRANSPORT_TransmitHandle *
1527 GNUNET_TRANSPORT_notify_transmit_ready (struct GNUNET_TRANSPORT_Handle *handle,
1528                                         const struct GNUNET_PeerIdentity
1529                                         *target, size_t size, uint32_t priority,
1530                                         struct GNUNET_TIME_Relative timeout,
1531                                         GNUNET_CONNECTION_TransmitReadyNotify
1532                                         notify, void *notify_cls)
1533 {
1534   struct Neighbour *n;
1535   struct GNUNET_TRANSPORT_TransmitHandle *th;
1536   struct GNUNET_TIME_Relative delay;
1537
1538   n = neighbour_find (handle, target);
1539   if (NULL == n)
1540   {
1541     /* use GNUNET_TRANSPORT_try_connect first, only use this function
1542      * once a connection has been established */
1543     GNUNET_assert (0);
1544     return NULL;
1545   }
1546   if (NULL != n->th)
1547   {
1548     /* attempt to send two messages at the same time to the same peer */
1549     GNUNET_assert (0);
1550     return NULL;
1551   }
1552   GNUNET_assert (NULL == n->hn);
1553   th = GNUNET_malloc (sizeof (struct GNUNET_TRANSPORT_TransmitHandle));
1554   th->neighbour = n;
1555   th->notify = notify;
1556   th->notify_cls = notify_cls;
1557   th->timeout = GNUNET_TIME_relative_to_absolute (timeout);
1558   th->notify_size = size;
1559   th->priority = priority;
1560   n->th = th;
1561   /* calculate when our transmission should be ready */
1562   delay = GNUNET_BANDWIDTH_tracker_get_delay (&n->out_tracker, size + n->traffic_overhead);
1563   n->traffic_overhead = 0;
1564   if (delay.rel_value > timeout.rel_value)
1565     delay.rel_value = 0;        /* notify immediately (with failure) */
1566   LOG (GNUNET_ERROR_TYPE_DEBUG,
1567        "Bandwidth tracker allows next transmission to peer %s in %llu ms\n",
1568        GNUNET_i2s (target), (unsigned long long) delay.rel_value);
1569   n->hn = GNUNET_CONTAINER_heap_insert (handle->ready_heap, n, delay.rel_value);
1570   schedule_transmission (handle);
1571   return th;
1572 }
1573
1574
1575 /**
1576  * Cancel the specified transmission-ready notification.
1577  *
1578  * @param th handle returned from GNUNET_TRANSPORT_notify_transmit_ready
1579  */
1580 void
1581 GNUNET_TRANSPORT_notify_transmit_ready_cancel (struct
1582                                                GNUNET_TRANSPORT_TransmitHandle
1583                                                *th)
1584 {
1585   struct Neighbour *n;
1586
1587   GNUNET_assert (NULL == th->next);
1588   GNUNET_assert (NULL == th->prev);
1589   n = th->neighbour;
1590   GNUNET_assert (th == n->th);
1591   n->th = NULL;
1592   if (n->hn != NULL)
1593   {
1594     GNUNET_CONTAINER_heap_remove_node (n->hn);
1595     n->hn = NULL;
1596   }
1597   else
1598   {
1599     GNUNET_assert (GNUNET_SCHEDULER_NO_TASK != th->timeout_task);
1600     GNUNET_SCHEDULER_cancel (th->timeout_task);
1601     th->timeout_task = GNUNET_SCHEDULER_NO_TASK;
1602   }
1603   GNUNET_free (th);
1604 }
1605
1606
1607 /* end of transport_api.c */