07c6948acd3ef6ea01e2576e2834d34c6aa29c31
[oweals/gnunet.git] / src / transport / transport_api.c
1 /*
2      This file is part of GNUnet.
3      (C) 2009, 2010 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 2, 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 #include "platform.h"
27 #include "gnunet_bandwidth_lib.h"
28 #include "gnunet_client_lib.h"
29 #include "gnunet_constants.h"
30 #include "gnunet_container_lib.h"
31 #include "gnunet_arm_service.h"
32 #include "gnunet_hello_lib.h"
33 #include "gnunet_protocols.h"
34 #include "gnunet_server_lib.h"
35 #include "gnunet_time_lib.h"
36 #include "gnunet_transport_service.h"
37 #include "transport.h"
38
39 /**
40  * After how long do we give up on transmitting a HELLO
41  * to the service?
42  */
43 #define OFFER_HELLO_TIMEOUT GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_SECONDS, 30)
44
45 /**
46  * After how long do we automatically retry an unsuccessful
47  * CONNECT request?
48  */
49 #define CONNECT_RETRY_TIMEOUT GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_MILLISECONDS, 750)
50
51 /**
52  * How long should ARM wait when starting up the
53  * transport service before reporting back?
54  */
55 #define START_SERVICE_TIMEOUT GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_SECONDS, 5)
56
57 /**
58  * How long should ARM wait when stopping the
59  * transport service before reporting back?
60  */
61 #define STOP_SERVICE_TIMEOUT GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_SECONDS, 5)
62
63
64 /**
65  * What stage are we in for transmission processing?
66  */
67 enum TransmitStage
68   {
69     /**
70      * No active message.
71      */
72     TS_NEW = 0,
73
74     /**
75      * Message in local queue, not given to service.
76      */
77     TS_QUEUED = 1,
78
79     /**
80      * Message given to service, not confirmed (no SEND_OK).
81      */
82     TS_TRANSMITTED = 2,
83
84     /**
85      * One message was given to service and before it was confirmed,
86      * another one was already queued (waiting for SEND_OK to pass on
87      * to service).
88      */
89     TS_TRANSMITTED_QUEUED = 3
90   };
91
92
93 /**
94  * Handle for a transmission-ready request.
95  */
96 struct GNUNET_TRANSPORT_TransmitHandle
97 {
98
99   /**
100    * Neighbour for this handle, NULL for control-traffic.
101    */
102   struct NeighbourList *neighbour;
103
104   /**
105    * Function to call when notify_size bytes are available
106    * for transmission.
107    */
108   GNUNET_CONNECTION_TransmitReadyNotify notify;
109
110   /**
111    * Closure for notify.
112    */
113   void *notify_cls;
114
115   /**
116    * transmit_ready task Id.  The task is used to introduce the
117    * artificial delay that may be required to maintain the bandwidth
118    * limits.  Later, this will be the ID of the "transmit_timeout"
119    * task which is used to signal a timeout if the transmission could
120    * not be done in a timely fashion.
121    */
122   GNUNET_SCHEDULER_TaskIdentifier notify_delay_task;
123
124   /**
125    * Timeout for this request.
126    */
127   struct GNUNET_TIME_Absolute timeout;
128
129   /**
130    * How many bytes is our notify callback waiting for?
131    */
132   size_t notify_size;
133
134   /**
135    * How important is this message?
136    */
137   unsigned int priority;
138
139 };
140
141
142 /**
143  * Handle for a control message queue entry.
144  */
145 struct ControlMessage
146 {
147
148   /**
149    * This is a doubly-linked list.
150    */
151   struct ControlMessage *next;
152
153   /**
154    * This is a doubly-linked list.
155    */
156   struct ControlMessage *prev;
157
158   /**
159    * Overall transport handle.
160    */
161   struct GNUNET_TRANSPORT_Handle *h;
162
163   /**
164    * Function to call when notify_size bytes are available
165    * for transmission.
166    */
167   GNUNET_CONNECTION_TransmitReadyNotify notify;
168
169   /**
170    * Closure for notify.
171    */
172   void *notify_cls;
173
174   /**
175    * transmit_ready task Id.  The task is used to introduce the
176    * artificial delay that may be required to maintain the bandwidth
177    * limits.  Later, this will be the ID of the "transmit_timeout"
178    * task which is used to signal a timeout if the transmission could
179    * not be done in a timely fashion.
180    */
181   GNUNET_SCHEDULER_TaskIdentifier notify_delay_task;
182
183   /**
184    * How many bytes is our notify callback waiting for?
185    */
186   size_t notify_size;
187
188 };
189
190
191 /**
192  * Entry in linked list of all of our current neighbours.
193  */
194 struct NeighbourList
195 {
196
197   /**
198    * This is a linked list.
199    */
200   struct NeighbourList *next;
201
202   /**
203    * Overall transport handle.
204    */
205   struct GNUNET_TRANSPORT_Handle *h;
206
207   /**
208    * Active transmit handle; available if 'transmit_forbidden'
209    * is GNUNET_NO.
210    */
211   struct GNUNET_TRANSPORT_TransmitHandle transmit_handle;
212
213   /**
214    * Identity of this neighbour.
215    */
216   struct GNUNET_PeerIdentity id;
217
218   /**
219    * Outbound bandwidh tracker.
220    */
221   struct GNUNET_BANDWIDTH_Tracker out_tracker;
222
223   /**
224    * Set to GNUNET_NO if we are currently allowed to accept a
225    * message to the transport service for this peer, GNUNET_YES
226    * if we have one and are waiting for transmission, GNUNET_SYSERR
227    * if we are waiting for confirmation AND have already accepted
228    * yet another message.
229    */
230   enum TransmitStage transmit_stage;
231
232   /**
233    * Have we received a notification that this peer is connected
234    * to us right now?
235    */
236   int is_connected;
237
238 };
239
240
241 /**
242  * Linked list of requests from clients for our HELLO that were
243  * deferred.
244  */
245 struct HelloWaitList
246 {
247
248   /**
249    * This is a linked list.
250    */
251   struct HelloWaitList *next;
252
253   /**
254    * Reference back to our transport handle.
255    */
256   struct GNUNET_TRANSPORT_Handle *handle;
257
258   /**
259    * Callback to call once we got our HELLO.
260    */
261   GNUNET_TRANSPORT_HelloUpdateCallback rec;
262
263   /**
264    * Closure for rec.
265    */
266   void *rec_cls;
267
268 };
269
270
271 /**
272  * Handle for the transport service (includes all of the
273  * state for the transport service).
274  */
275 struct GNUNET_TRANSPORT_Handle
276 {
277
278   /**
279    * Closure for the callbacks.
280    */
281   void *cls;
282
283   /**
284    * Function to call for received data.
285    */
286   GNUNET_TRANSPORT_ReceiveCallback rec;
287
288   /**
289    * function to call on connect events
290    */
291   GNUNET_TRANSPORT_NotifyConnect nc_cb;
292
293   /**
294    * function to call on disconnect events
295    */
296   GNUNET_TRANSPORT_NotifyDisconnect nd_cb;
297
298   /**
299    * Head of DLL of control messages.
300    */
301   struct ControlMessage *control_head;
302
303   /**
304    * Tail of DLL of control messages.
305    */
306   struct ControlMessage *control_tail;
307
308   /**
309    * The current HELLO message for this peer.  Updated
310    * whenever transports change their addresses.
311    */
312   struct GNUNET_HELLO_Message *my_hello;
313
314   /**
315    * My client connection to the transport service.
316    */
317   struct GNUNET_CLIENT_Connection *client;
318
319   /**
320    * Handle to our registration with the client for notification.
321    */
322   struct GNUNET_CLIENT_TransmitHandle *network_handle;
323
324   /**
325    * Linked list of pending requests for our HELLO.
326    */
327   struct HelloWaitList *hwl_head;
328
329   /**
330    * My scheduler.
331    */
332   struct GNUNET_SCHEDULER_Handle *sched;
333
334   /**
335    * My configuration.
336    */
337   const struct GNUNET_CONFIGURATION_Handle *cfg;
338
339   /**
340    * Linked list of the current neighbours of this peer.
341    */
342   struct NeighbourList *neighbours;
343
344   /**
345    * ID of the task trying to reconnect to the service.
346    */
347   GNUNET_SCHEDULER_TaskIdentifier reconnect_task;
348
349   /**
350    * ID of the task trying to trigger transmission for a peer
351    * while maintaining bandwidth quotas.
352    */
353   GNUNET_SCHEDULER_TaskIdentifier quota_task;
354
355   /**
356    * Delay until we try to reconnect.
357    */
358   struct GNUNET_TIME_Relative reconnect_delay;
359
360 };
361
362
363 // FIXME: replace with hash map!
364 /**
365  * Get the neighbour list entry for the given peer
366  *
367  * @param h our context
368  * @param peer peer to look up
369  * @return NULL if no such peer entry exists
370  */
371 static struct NeighbourList *
372 neighbour_find (struct GNUNET_TRANSPORT_Handle *h,
373                 const struct GNUNET_PeerIdentity *peer)
374 {
375   struct NeighbourList *pos;
376
377   pos = h->neighbours;
378   while ((pos != NULL) &&
379          (0 != memcmp (peer, &pos->id, sizeof (struct GNUNET_PeerIdentity))))
380     pos = pos->next;
381   return pos;
382 }
383
384
385 /**
386  * Schedule the task to send one message, either from the control
387  * list or the peer message queues  to the service.
388  */
389 static void schedule_transmission (struct GNUNET_TRANSPORT_Handle *h);
390
391
392 /**
393  * Function called by the scheduler when the timeout for bandwidth
394  * availablility for the target neighbour is reached.
395  *
396  * @param cls the 'struct GNUNET_TRANSPORT_Handle*'
397  * @param tc scheduler context
398  */
399 static void
400 quota_transmit_ready (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
401 {
402   struct GNUNET_TRANSPORT_Handle *h = cls;
403
404   h->quota_task = GNUNET_SCHEDULER_NO_TASK;
405   schedule_transmission (h);
406 }
407
408
409 /**
410  * Figure out which transmission to a peer can be done right now.
411  * If none can, schedule a task to call 'schedule_transmission'
412  * whenever a peer transmission can be done in the future and
413  * return NULL.  Otherwise return the next transmission to be
414  * performed.
415  *
416  * @param h handle to transport
417  * @return NULL to wait longer before doing any peer transmissions
418  */
419 static struct GNUNET_TRANSPORT_TransmitHandle *
420 schedule_peer_transmission (struct GNUNET_TRANSPORT_Handle *h)
421 {
422   struct GNUNET_TRANSPORT_TransmitHandle *ret;
423   struct GNUNET_TRANSPORT_TransmitHandle *th;
424   struct NeighbourList *n;
425   struct NeighbourList *next;
426   struct GNUNET_TIME_Relative retry_time;
427   struct GNUNET_TIME_Relative duration;
428
429   if (h->quota_task != GNUNET_SCHEDULER_NO_TASK)
430     {
431       GNUNET_SCHEDULER_cancel (h->sched,
432                                h->quota_task);
433       h->quota_task = GNUNET_SCHEDULER_NO_TASK;
434     }
435   retry_time = GNUNET_TIME_UNIT_FOREVER_REL;
436   ret = NULL;
437   next = h->neighbours;
438   while (NULL != (n = next))
439     {
440       next = n->next;
441       if (n->transmit_stage != TS_QUEUED)
442         continue; /* not eligible */
443       th = &n->transmit_handle;
444       GNUNET_break (n == th->neighbour);
445       /* check outgoing quota */
446       duration = GNUNET_BANDWIDTH_tracker_get_delay (&n->out_tracker,
447                                                      th->notify_size - sizeof (struct OutboundMessage));
448       if (th->timeout.value < duration.value)
449         {
450           /* signal timeout! */
451 #if DEBUG_TRANSPORT
452           GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
453                       "Would need %llu ms before bandwidth is available for delivery to `%4s', that is too long.  Signaling timeout.\n",
454                       duration.value, 
455                       GNUNET_i2s (&n->id));
456 #endif
457           if (th->notify_delay_task != GNUNET_SCHEDULER_NO_TASK)
458             {
459               GNUNET_SCHEDULER_cancel (h->sched, th->notify_delay_task);
460               th->notify_delay_task = GNUNET_SCHEDULER_NO_TASK;
461             }         
462           n->transmit_stage = TS_NEW;
463           if (NULL != th->notify)
464             GNUNET_assert (0 == th->notify (th->notify_cls, 0, NULL));
465           continue;
466         }
467       if (duration.value > 0)
468         {
469 #if DEBUG_TRANSPORT
470           GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
471                       "Need more bandwidth (%u b/s allowed, %u b needed), delaying delivery to `%4s' by %llu ms\n",
472                       (unsigned int) n->out_tracker.available_bytes_per_s__,
473                       (unsigned int) th->notify_size - sizeof (struct OutboundMessage),
474                       GNUNET_i2s (&n->id), 
475                       duration.value);
476 #endif
477           retry_time = GNUNET_TIME_relative_min (retry_time,
478                                                  duration);
479           continue;
480         }
481 #if DEBUG_TRANSPORT
482       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
483                   "Have %u bytes of bandwidth available for transmission to `%4s' right now\n",
484                   th->notify_size - sizeof (struct OutboundMessage),
485                   GNUNET_i2s (&n->id));
486 #endif  
487       if ( (ret == NULL) ||
488            (ret->priority < th->priority) )
489         ret = th;
490     }
491   if (ret == NULL)
492     h->quota_task = GNUNET_SCHEDULER_add_delayed (h->sched,
493                                                   retry_time,
494                                                   &quota_transmit_ready,
495                                                   h);
496   return ret;
497 }
498
499
500 /**
501  * Transmit message(s) to service.
502  *
503  * @param cls handle to transport 
504  * @param size number of bytes available in buf
505  * @param buf where to copy the message
506  * @return number of bytes copied to buf
507  */
508 static size_t
509 transport_notify_ready (void *cls, size_t size, void *buf)
510 {
511   struct GNUNET_TRANSPORT_Handle *h = cls;
512   struct ControlMessage *cm;
513   struct GNUNET_TRANSPORT_TransmitHandle *th;
514   struct NeighbourList *n;
515   struct OutboundMessage obm;
516   size_t ret;
517   size_t mret;
518   char *cbuf;
519
520   h->network_handle = NULL;
521   if (buf == NULL)
522     {
523       schedule_transmission (h);
524       return 0;
525     }
526 #if DEBUG_TRANSPORT
527   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
528               "Ready to transmit %u bytes to transport service\n", size);
529 #endif
530   cbuf = buf;
531   ret = 0;
532   while ( (NULL != (cm = h->control_head)) &&
533           (cm->notify_size <= size) )
534     {
535       if (cm->notify_delay_task != GNUNET_SCHEDULER_NO_TASK)
536         {
537           GNUNET_SCHEDULER_cancel (h->sched, cm->notify_delay_task);
538           cm->notify_delay_task = GNUNET_SCHEDULER_NO_TASK;
539         }
540       GNUNET_CONTAINER_DLL_remove (h->control_head,
541                                    h->control_tail,
542                                    cm);
543       ret += cm->notify (cm->notify_cls, size, &cbuf[ret]);
544       GNUNET_free (cm);
545       size -= ret;
546     }
547   while ( (NULL != (th = schedule_peer_transmission (h))) &&
548           (th->notify_size <= size) )
549     {
550       if (th->notify_delay_task != GNUNET_SCHEDULER_NO_TASK)
551         {
552           GNUNET_SCHEDULER_cancel (h->sched, th->notify_delay_task);
553           th->notify_delay_task = GNUNET_SCHEDULER_NO_TASK;
554         }
555       n = th->neighbour;
556       switch (n->transmit_stage)
557         {
558         case TS_NEW:
559           GNUNET_break (0);
560           break;
561         case TS_QUEUED:
562           n->transmit_stage = TS_TRANSMITTED;
563           break;
564         case TS_TRANSMITTED:
565           GNUNET_break (0);
566           break;
567         case TS_TRANSMITTED_QUEUED:
568           GNUNET_break (0);
569           break;
570         default:
571           GNUNET_break (0);
572         }
573       GNUNET_assert (size >= sizeof (struct OutboundMessage));
574       mret = th->notify (th->notify_cls, 
575                          size - sizeof (struct OutboundMessage),
576                          &cbuf[ret + sizeof (struct OutboundMessage)]);
577       GNUNET_assert (mret <= size - sizeof (struct OutboundMessage));
578 #if DEBUG_TRANSPORT
579       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
580                   "Message of %u bytes with timeout %llums constructed for `%4s'\n",
581                   (unsigned int) mret, 
582                   (unsigned long long) GNUNET_TIME_absolute_get_remaining (th->timeout).value,
583                   GNUNET_i2s (&n->id));
584 #endif
585       if (mret != 0)    
586         {
587           obm.header.type = htons (GNUNET_MESSAGE_TYPE_TRANSPORT_SEND);
588           obm.header.size = htons (mret + sizeof (struct OutboundMessage));
589           obm.priority = htonl (th->priority);
590           obm.timeout = GNUNET_TIME_relative_hton (GNUNET_TIME_absolute_get_remaining (th->timeout));
591           obm.peer = n->id;
592           memcpy (&cbuf[ret], &obm, sizeof (struct OutboundMessage));
593           ret += (mret + sizeof (struct OutboundMessage));
594           size -= (mret + sizeof (struct OutboundMessage));
595           GNUNET_BANDWIDTH_tracker_consume (&n->out_tracker, mret);
596         }
597       else
598         {
599           switch (n->transmit_stage)
600             {
601             case TS_NEW:
602               GNUNET_break (0);
603               break;
604             case TS_QUEUED:
605               GNUNET_break (0);
606               break;
607             case TS_TRANSMITTED:
608               n->transmit_stage = TS_NEW;
609               break;
610             case TS_TRANSMITTED_QUEUED:
611               n->transmit_stage = TS_QUEUED;
612               continue;
613             default:
614               GNUNET_break (0);
615             }
616         }
617     }
618   schedule_transmission (h);
619 #if DEBUG_TRANSPORT
620   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
621               "Transmitting %u bytes to transport service\n", ret);
622 #endif
623   return ret;
624 }
625
626
627 /**
628  * Schedule the task to send one message, either from the control
629  * list or the peer message queues  to the service.
630  */
631 static void
632 schedule_transmission (struct GNUNET_TRANSPORT_Handle *h)
633 {  
634   size_t size;
635   struct GNUNET_TIME_Relative timeout;
636   struct GNUNET_TRANSPORT_TransmitHandle *th;
637
638   if (NULL != h->network_handle)
639     return;
640   if (h->client == NULL)
641     {
642       GNUNET_log (GNUNET_ERROR_TYPE_INFO,
643                   "Could not yet schedule transmission: we are not yet connected to the transport service!\n");
644       return;                   /* not yet connected */
645     }
646   if (NULL != h->control_head) 
647     {
648       size = h->control_head->notify_size;
649       timeout = GNUNET_TIME_UNIT_FOREVER_REL;
650     }
651   else
652     {
653       th = schedule_peer_transmission (h);
654       if (th == NULL)
655         {
656           /* no transmission ready right now */
657           return;
658         }
659       size = th->notify_size;
660       timeout = GNUNET_TIME_absolute_get_remaining (th->timeout);
661     }
662   h->network_handle = 
663     GNUNET_CLIENT_notify_transmit_ready (h->client,
664                                          size,
665                                          timeout,
666                                          GNUNET_NO,
667                                          &transport_notify_ready,
668                                          h);
669   GNUNET_assert (NULL != h->network_handle);
670 }
671
672
673 /**
674  * Called when our transmit request timed out before any transport
675  * reported success connecting to the desired peer or before the
676  * transport was ready to receive.  Signal error and free
677  * TransmitHandle.
678  */
679 static void
680 control_transmit_timeout (void *cls,
681                           const struct GNUNET_SCHEDULER_TaskContext *tc)
682 {
683   struct ControlMessage *th = cls;
684
685   th->notify_delay_task = GNUNET_SCHEDULER_NO_TASK;
686   if (NULL != th->notify)
687     th->notify (th->notify_cls, 0, NULL);
688   GNUNET_CONTAINER_DLL_remove (th->h->control_head,
689                                th->h->control_tail,
690                                th);
691   GNUNET_free (th);
692 }
693
694
695 /**
696  * Queue control request for transmission to the transport
697  * service.
698  *
699  * @param h handle to the transport service
700  * @param size number of bytes to be transmitted
701  * @param at_head request must be added to the head of the queue
702  *        (otherwise request will be appended)
703  * @param timeout how long this transmission can wait (at most)
704  * @param notify function to call to get the content
705  * @param notify_cls closure for notify
706  */
707 static void
708 schedule_control_transmit (struct GNUNET_TRANSPORT_Handle *h,
709                            size_t size,
710                            int at_head,
711                            struct GNUNET_TIME_Relative timeout,
712                            GNUNET_CONNECTION_TransmitReadyNotify notify,
713                            void *notify_cls)
714 {
715   struct ControlMessage *th;
716
717 #if DEBUG_TRANSPORT
718   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
719               "Control transmit of %u bytes within %llums requested\n",
720               size, (unsigned long long) timeout.value);
721 #endif
722   th = GNUNET_malloc (sizeof (struct ControlMessage));
723   th->h = h;
724   th->notify = notify;
725   th->notify_cls = notify_cls;
726   th->notify_size = size;
727   th->notify_delay_task
728     = GNUNET_SCHEDULER_add_delayed (h->sched,
729                                     timeout, &control_transmit_timeout, th);
730   if (at_head)    
731     GNUNET_CONTAINER_DLL_insert (h->control_head,
732                                  h->control_tail,
733                                  th);
734   else
735     GNUNET_CONTAINER_DLL_insert_after (h->control_head,
736                                        h->control_tail,
737                                        h->control_tail,
738                                        th);
739   schedule_transmission (h);
740 }
741
742
743 struct SetQuotaContext
744 {
745   struct GNUNET_TRANSPORT_Handle *handle;
746
747   struct GNUNET_PeerIdentity target;
748
749   GNUNET_SCHEDULER_Task cont;
750
751   void *cont_cls;
752
753   struct GNUNET_TIME_Absolute timeout;
754
755   struct GNUNET_BANDWIDTH_Value32NBO quota_in;
756 };
757
758
759 /**
760  * Send SET_QUOTA message to the service.
761  *
762  * @param cls the 'struct SetQuotaContext'
763  * @param size number of bytes available in buf
764  * @param buf where to copy the message
765  * @return number of bytes copied to buf
766  */
767 static size_t
768 send_set_quota (void *cls, size_t size, void *buf)
769 {
770   struct SetQuotaContext *sqc = cls;
771   struct QuotaSetMessage *msg;
772
773   if (buf == NULL)
774     {
775       GNUNET_SCHEDULER_add_continuation (sqc->handle->sched,
776                                          sqc->cont,
777                                          sqc->cont_cls,
778                                          GNUNET_SCHEDULER_REASON_TIMEOUT);
779       GNUNET_free (sqc);
780       return 0;
781     }
782 #if DEBUG_TRANSPORT
783   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
784               "Transmitting `%s' request with respect to `%4s'.\n",
785               "SET_QUOTA", 
786               GNUNET_i2s (&sqc->target));
787 #endif
788   GNUNET_assert (size >= sizeof (struct QuotaSetMessage));
789   msg = buf;
790   msg->header.size = htons (sizeof (struct QuotaSetMessage));
791   msg->header.type = htons (GNUNET_MESSAGE_TYPE_TRANSPORT_SET_QUOTA);
792   msg->quota = sqc->quota_in;
793   memcpy (&msg->peer, &sqc->target, sizeof (struct GNUNET_PeerIdentity));
794   if (sqc->cont != NULL)
795     GNUNET_SCHEDULER_add_continuation (sqc->handle->sched,
796                                        sqc->cont,
797                                        sqc->cont_cls,
798                                        GNUNET_SCHEDULER_REASON_PREREQ_DONE);
799   GNUNET_free (sqc);
800   return sizeof (struct QuotaSetMessage);
801 }
802
803
804 /**
805  * Set the share of incoming bandwidth for the given
806  * peer to the specified amount.
807  *
808  * @param handle connection to transport service
809  * @param target who's bandwidth quota is being changed
810  * @param quota_in incoming bandwidth quota in bytes per ms
811  * @param quota_out outgoing bandwidth quota in bytes per ms
812  * @param timeout how long to wait until signaling failure if
813  *        we can not communicate the quota change
814  * @param cont continuation to call when done, will be called
815  *        either with reason "TIMEOUT" or with reason "PREREQ_DONE"
816  * @param cont_cls closure for continuation
817  */
818 void
819 GNUNET_TRANSPORT_set_quota (struct GNUNET_TRANSPORT_Handle *handle,
820                             const struct GNUNET_PeerIdentity *target,
821                             struct GNUNET_BANDWIDTH_Value32NBO quota_in,
822                             struct GNUNET_BANDWIDTH_Value32NBO quota_out,
823                             struct GNUNET_TIME_Relative timeout,
824                             GNUNET_SCHEDULER_Task cont, void *cont_cls)
825 {
826   struct NeighbourList *n;
827   struct SetQuotaContext *sqc;
828
829   n = neighbour_find (handle, target);
830   if (n != NULL)
831     {
832 #if DEBUG_TRANSPORT
833       if (ntohl (quota_out.value__) != n->out_tracker.available_bytes_per_s__)
834         GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
835                     "Quota changed from %u to %u for peer `%s'\n",
836                     (unsigned int) n->out_tracker.available_bytes_per_s__,
837                     (unsigned int) ntohl (quota_out.value__),
838                     GNUNET_i2s (target));
839       else
840         GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
841                     "Quota remains at %u for peer `%s'\n",
842                     (unsigned int) n->out_tracker.available_bytes_per_s__,
843                     GNUNET_i2s (target));
844 #endif
845       GNUNET_BANDWIDTH_tracker_update_quota (&n->out_tracker,
846                                              quota_out);
847     }
848   else
849     {
850 #if DEBUG_TRANSPORT
851       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
852                   "Quota changed to %u for peer `%s', but I have no such neighbour!\n",
853                   (unsigned int) ntohl (quota_out.value__),
854                   GNUNET_i2s (target));
855 #endif
856     }
857   sqc = GNUNET_malloc (sizeof (struct SetQuotaContext));
858   sqc->handle = handle;
859   sqc->target = *target;
860   sqc->cont = cont;
861   sqc->cont_cls = cont_cls;
862   sqc->timeout = GNUNET_TIME_relative_to_absolute (timeout);
863   sqc->quota_in = quota_in;
864   schedule_control_transmit (handle,
865                              sizeof (struct QuotaSetMessage),
866                              GNUNET_NO, timeout, &send_set_quota, sqc);
867 }
868
869
870 /**
871  * Obtain the HELLO message for this peer.
872  *
873  * @param handle connection to transport service
874  * @param rec function to call with the HELLO, sender will be our peer
875  *            identity; message and sender will be NULL on timeout
876  *            (handshake with transport service pending/failed).
877  *             cost estimate will be 0.
878  * @param rec_cls closure for rec
879  */
880 void
881 GNUNET_TRANSPORT_get_hello (struct GNUNET_TRANSPORT_Handle *handle,
882                             GNUNET_TRANSPORT_HelloUpdateCallback rec,
883                             void *rec_cls)
884 {
885   struct HelloWaitList *hwl;
886
887   hwl = GNUNET_malloc (sizeof (struct HelloWaitList));
888   hwl->next = handle->hwl_head;
889   handle->hwl_head = hwl;
890   hwl->handle = handle;
891   hwl->rec = rec;
892   hwl->rec_cls = rec_cls;
893   if (handle->my_hello == NULL)
894     return;    
895   rec (rec_cls, (const struct GNUNET_MessageHeader *) handle->my_hello);
896 }
897
898
899
900 /**
901  * Stop receiving updates about changes to our HELLO message.
902  *
903  * @param handle connection to transport service
904  * @param rec function previously registered to be called with the HELLOs
905  * @param rec_cls closure for rec
906  */
907 void
908 GNUNET_TRANSPORT_get_hello_cancel (struct GNUNET_TRANSPORT_Handle *handle,
909                                    GNUNET_TRANSPORT_HelloUpdateCallback rec,
910                                    void *rec_cls)
911 {
912   struct HelloWaitList *pos;
913   struct HelloWaitList *prev;
914
915   prev = NULL;
916   pos = handle->hwl_head;
917   while (pos != NULL)
918     {
919       if ( (pos->rec == rec) &&
920            (pos->rec_cls == rec_cls) )
921         break;
922       prev = pos;
923       pos = pos->next;
924     }
925   GNUNET_break (pos != NULL);
926   if (pos == NULL)
927     return;
928   if (prev == NULL)
929     handle->hwl_head = pos->next;
930   else
931     prev->next = pos->next;
932   GNUNET_free (pos);
933 }
934
935
936 /**
937  * Send HELLO message to the service.
938  *
939  * @param cls the HELLO message to send
940  * @param size number of bytes available in buf
941  * @param buf where to copy the message
942  * @return number of bytes copied to buf
943  */
944 static size_t
945 send_hello (void *cls, size_t size, void *buf)
946 {
947   struct GNUNET_MessageHeader *hello = cls;
948   uint16_t msize;
949
950   if (buf == NULL)
951     {
952 #if DEBUG_TRANSPORT_TIMEOUT
953       GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
954                   "Timeout while trying to transmit `%s' request.\n",
955                   "HELLO");
956 #endif
957       GNUNET_free (hello);
958       return 0;
959     }
960 #if DEBUG_TRANSPORT
961   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
962               "Transmitting `%s' request.\n", "HELLO");
963 #endif
964   msize = ntohs (hello->size);
965   GNUNET_assert (size >= msize);
966   memcpy (buf, hello, msize);
967   GNUNET_free (hello);
968   return msize;
969 }
970
971
972 /**
973  * Offer the transport service the HELLO of another peer.  Note that
974  * the transport service may just ignore this message if the HELLO is
975  * malformed or useless due to our local configuration.
976  *
977  * @param handle connection to transport service
978  * @param hello the hello message
979  */
980 void
981 GNUNET_TRANSPORT_offer_hello (struct GNUNET_TRANSPORT_Handle *handle,
982                               const struct GNUNET_MessageHeader *hello)
983 {
984   struct GNUNET_MessageHeader *hc;
985   uint16_t size;
986   struct GNUNET_PeerIdentity peer;
987
988   GNUNET_break (ntohs (hello->type) == GNUNET_MESSAGE_TYPE_HELLO);
989   size = ntohs (hello->size);
990   GNUNET_break (size >= sizeof (struct GNUNET_MessageHeader));
991   if (GNUNET_OK != GNUNET_HELLO_get_id ((const struct GNUNET_HELLO_Message*) hello,
992                                         &peer))
993     {
994       GNUNET_break (0);
995       return;
996     }
997 #if DEBUG_TRANSPORT 
998   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
999               "Offering `%s' message of `%4s' to transport for validation.\n",
1000               "HELLO",
1001               GNUNET_i2s (&peer));
1002 #endif
1003   hc = GNUNET_malloc (size);
1004   memcpy (hc, hello, size);
1005   schedule_control_transmit (handle,
1006                              size,
1007                              GNUNET_NO, OFFER_HELLO_TIMEOUT, &send_hello, hc);
1008 }
1009
1010
1011 /**
1012  * Transmit START message to service.
1013  *
1014  * @param cls unused
1015  * @param size number of bytes available in buf
1016  * @param buf where to copy the message
1017  * @return number of bytes copied to buf
1018  */
1019 static size_t
1020 send_start (void *cls, size_t size, void *buf)
1021 {
1022   struct GNUNET_MessageHeader *s = buf;
1023
1024   if (buf == NULL)
1025     {
1026       /* Can only be shutdown, just give up */
1027 #if DEBUG_TRANSPORT
1028       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1029                   "Shutdown while trying to transmit `%s' request.\n",
1030                   "START");
1031 #endif
1032       return 0;
1033     }
1034 #if DEBUG_TRANSPORT
1035   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1036               "Transmitting `%s' request.\n", "START");
1037 #endif
1038   GNUNET_assert (size >= sizeof (struct GNUNET_MessageHeader));
1039   s->size = htons (sizeof (struct GNUNET_MessageHeader));
1040   s->type = htons (GNUNET_MESSAGE_TYPE_TRANSPORT_START);
1041   return sizeof (struct GNUNET_MessageHeader);
1042 }
1043
1044
1045 /**
1046  * Free neighbour. 
1047  * 
1048  * @param n the entry to free
1049  */
1050 static void
1051 neighbour_free (struct NeighbourList *n)
1052 {
1053   struct GNUNET_TRANSPORT_Handle *h;
1054   struct NeighbourList *prev;
1055   struct NeighbourList *pos;
1056
1057   h = n->h;
1058 #if DEBUG_TRANSPORT
1059   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1060               "Removing neighbour `%s' from list of connected peers.\n",
1061               GNUNET_i2s (&n->id));
1062 #endif
1063   GNUNET_break (n->is_connected == GNUNET_NO);
1064   GNUNET_break (n->transmit_stage == TS_NEW);
1065
1066   prev = NULL;
1067   pos = h->neighbours;
1068   while (pos != n)
1069     {
1070       prev = pos;
1071       pos = pos->next;
1072     }
1073   if (prev == NULL)
1074     h->neighbours = n->next;
1075   else
1076     prev->next = n->next;
1077   GNUNET_free (n);
1078 }
1079
1080
1081 /**
1082  * Mark neighbour as disconnected. 
1083  * 
1084  * @param n the entry to mark as disconnected
1085  */
1086 static void
1087 neighbour_disconnect (struct NeighbourList *n)
1088 {
1089   struct GNUNET_TRANSPORT_Handle *h = n->h;
1090 #if DEBUG_TRANSPORT
1091   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1092               "Removing neighbour `%s' from list of connected peers.\n",
1093               GNUNET_i2s (&n->id));
1094 #endif
1095   GNUNET_break (n->is_connected == GNUNET_YES);
1096   n->is_connected = GNUNET_NO;
1097   if (h->nc_cb != NULL)
1098     h->nd_cb (h->cls, &n->id);
1099   if (n->transmit_stage == TS_NEW)
1100     neighbour_free (n);
1101 }
1102
1103
1104 /**
1105  * Function we use for handling incoming messages.
1106  *
1107  * @param cls closure (struct GNUNET_TRANSPORT_Handle *)
1108  * @param msg message received, NULL on timeout or fatal error
1109  */
1110 static void demultiplexer (void *cls,
1111                            const struct GNUNET_MessageHeader *msg);
1112
1113
1114 /**
1115  * Try again to connect to transport service.
1116  *
1117  * @param cls the handle to the transport service
1118  * @param tc scheduler context
1119  */
1120 static void
1121 reconnect (void *cls, 
1122            const struct GNUNET_SCHEDULER_TaskContext *tc)
1123 {
1124   struct GNUNET_TRANSPORT_Handle *h = cls;
1125   struct ControlMessage *pos;
1126   struct NeighbourList *n;
1127   struct NeighbourList *next;
1128
1129   h->reconnect_task = GNUNET_SCHEDULER_NO_TASK;
1130   if ( (tc->reason & GNUNET_SCHEDULER_REASON_SHUTDOWN) != 0)
1131     {
1132       /* shutdown, just give up */
1133       return;
1134     }
1135   /* Forget about all neighbours that we used to be connected to */
1136   n = h->neighbours;
1137   while (NULL != n)
1138     {
1139 #if DEBUG_TRANSPORT_DISCONNECT
1140   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1141               "Disconnecting due to reconnect being called\n");
1142 #endif
1143       next = n->next;
1144       if (n->is_connected)
1145         neighbour_disconnect (n);
1146       n = next;
1147     }
1148 #if DEBUG_TRANSPORT
1149   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, 
1150               "Connecting to transport service.\n");
1151 #endif
1152   GNUNET_assert (h->client == NULL);
1153   h->client = GNUNET_CLIENT_connect (h->sched, "transport", h->cfg);
1154   GNUNET_assert (h->client != NULL);
1155   /* make sure we don't send "START" twice, remove existing entry from
1156      queue (if present) */
1157   pos = h->control_head;
1158   while (pos != NULL)
1159     {
1160       if (pos->notify == &send_start)
1161         {
1162           GNUNET_CONTAINER_DLL_remove (h->control_head,
1163                                        h->control_tail,
1164                                        pos);
1165           if (GNUNET_SCHEDULER_NO_TASK != pos->notify_delay_task)
1166             {
1167               GNUNET_SCHEDULER_cancel (h->sched, pos->notify_delay_task);
1168               pos->notify_delay_task = GNUNET_SCHEDULER_NO_TASK;
1169             }
1170           GNUNET_free (pos);
1171           break;
1172         }
1173       pos = pos->next;
1174     }
1175   schedule_control_transmit (h,
1176                              sizeof (struct GNUNET_MessageHeader),
1177                              GNUNET_YES,
1178                              GNUNET_TIME_UNIT_FOREVER_REL, &send_start, NULL);
1179   GNUNET_CLIENT_receive (h->client,
1180                          &demultiplexer, h, GNUNET_TIME_UNIT_FOREVER_REL);
1181 }
1182
1183
1184 /**
1185  * Function that will schedule the job that will try
1186  * to connect us again to the client.
1187  *
1188  * @param h transport service to reconnect
1189  */
1190 static void
1191 schedule_reconnect (struct GNUNET_TRANSPORT_Handle *h)
1192 {
1193 #if DEBUG_TRANSPORT
1194   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1195               "Scheduling task to reconnect to transport service in %llu ms.\n",
1196               h->reconnect_delay.value);
1197 #endif
1198   GNUNET_assert (h->client == NULL);
1199   GNUNET_assert (h->reconnect_task == GNUNET_SCHEDULER_NO_TASK);
1200   h->reconnect_task
1201     = GNUNET_SCHEDULER_add_delayed (h->sched,
1202                                     h->reconnect_delay, &reconnect, h);
1203   if (h->reconnect_delay.value == 0)
1204     {
1205       h->reconnect_delay = GNUNET_TIME_UNIT_MILLISECONDS;
1206     }
1207   else 
1208     {
1209       h->reconnect_delay = GNUNET_TIME_relative_multiply (h->reconnect_delay, 2);
1210       h->reconnect_delay = GNUNET_TIME_relative_min (GNUNET_TIME_UNIT_SECONDS,
1211                                                      h->reconnect_delay);
1212     }
1213 }
1214
1215
1216 /**
1217  * Add neighbour to our list
1218  */
1219 static struct NeighbourList *
1220 neighbour_add (struct GNUNET_TRANSPORT_Handle *h,
1221                const struct GNUNET_PeerIdentity *pid)
1222 {
1223   struct NeighbourList *n;
1224
1225   /* check for duplicates */
1226   if (NULL != (n = neighbour_find (h, pid)))
1227     {
1228       GNUNET_break (0);
1229       return n;
1230     }
1231 #if DEBUG_TRANSPORT
1232   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1233               "Creating entry for neighbour `%4s'.\n", 
1234               GNUNET_i2s (pid));
1235 #endif
1236   n = GNUNET_malloc (sizeof (struct NeighbourList));
1237   n->id = *pid;
1238   GNUNET_BANDWIDTH_tracker_init (&n->out_tracker,
1239                                  GNUNET_CONSTANTS_DEFAULT_BW_IN_OUT,
1240                                  MAX_BANDWIDTH_CARRY_S);
1241   n->next = h->neighbours;
1242   n->h = h;
1243   h->neighbours = n;  
1244   return n;
1245 }
1246
1247
1248 /**
1249  * Connect to the transport service.  Note that the connection may
1250  * complete (or fail) asynchronously.
1251  *
1252  * @param sched scheduler to use
1253  * @param cfg configuration to use
1254  * @param cls closure for the callbacks
1255  * @param rec receive function to call
1256  * @param nc function to call on connect events
1257  * @param nd function to call on disconnect events
1258  */
1259 struct GNUNET_TRANSPORT_Handle *
1260 GNUNET_TRANSPORT_connect (struct GNUNET_SCHEDULER_Handle *sched,
1261                           const struct GNUNET_CONFIGURATION_Handle *cfg,
1262                           void *cls,
1263                           GNUNET_TRANSPORT_ReceiveCallback rec,
1264                           GNUNET_TRANSPORT_NotifyConnect nc,
1265                           GNUNET_TRANSPORT_NotifyDisconnect nd)
1266 {
1267   struct GNUNET_TRANSPORT_Handle *ret;
1268
1269   GNUNET_ARM_start_services (cfg, sched, "peerinfo", "transport", NULL);
1270   ret = GNUNET_malloc (sizeof (struct GNUNET_TRANSPORT_Handle));
1271   ret->sched = sched;
1272   ret->cfg = cfg;
1273   ret->cls = cls;
1274   ret->rec = rec;
1275   ret->nc_cb = nc;
1276   ret->nd_cb = nd;
1277   ret->reconnect_delay = GNUNET_TIME_UNIT_ZERO;
1278   schedule_reconnect (ret);
1279   return ret;
1280 }
1281
1282
1283 /**
1284  * Disconnect from the transport service.
1285  */
1286 void
1287 GNUNET_TRANSPORT_disconnect (struct GNUNET_TRANSPORT_Handle *handle)
1288 {
1289   struct GNUNET_TRANSPORT_TransmitHandle *th;
1290   struct NeighbourList *n;
1291   struct HelloWaitList *hwl;
1292   struct GNUNET_CLIENT_Connection *client;
1293   struct ControlMessage *cm;
1294
1295 #if DEBUG_TRANSPORT
1296   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Transport disconnect called!\n");
1297 #endif
1298   while (NULL != (n = handle->neighbours))
1299     {
1300       handle->neighbours = n->next;
1301       switch (n->transmit_stage)
1302         {
1303         case TS_NEW:
1304         case TS_TRANSMITTED:
1305           /* nothing to do */
1306           break;
1307         case TS_QUEUED:
1308         case TS_TRANSMITTED_QUEUED:
1309           th = &n->transmit_handle;
1310           if (th->notify_delay_task != GNUNET_SCHEDULER_NO_TASK)
1311             {
1312               GNUNET_SCHEDULER_cancel (handle->sched,
1313                                        th->notify_delay_task);
1314               th->notify_delay_task = GNUNET_SCHEDULER_NO_TASK;
1315             }
1316           GNUNET_assert (0 == th->notify (th->notify_cls, 0, NULL));        
1317           break;
1318         default:
1319           GNUNET_break (0);
1320         }
1321       GNUNET_free (n);
1322     }
1323   while (NULL != (hwl = handle->hwl_head))
1324     {
1325       handle->hwl_head = hwl->next;
1326       GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
1327                   _
1328                   ("Disconnect while notification for `%s' still registered.\n"),
1329                   "HELLO");
1330       if (hwl->rec != NULL)
1331         hwl->rec (hwl->rec_cls, NULL);
1332       GNUNET_free (hwl);
1333     }
1334
1335   /* Check for still scheduled control messages, cancel delay tasks if so */
1336   /* Added because somehow a notify_delay_task is remaining scheduled and is ever so annoying */
1337   while ( (NULL != (cm = handle->control_head)))
1338     {
1339       GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
1340                   _("Disconnect before control message sent!\n"));
1341       if (cm->notify_delay_task != GNUNET_SCHEDULER_NO_TASK)
1342         {
1343           GNUNET_SCHEDULER_cancel (handle->sched, cm->notify_delay_task);
1344           cm->notify_delay_task = GNUNET_SCHEDULER_NO_TASK;
1345         }
1346       GNUNET_CONTAINER_DLL_remove (handle->control_head,
1347                                    handle->control_tail,
1348                                    cm);
1349       GNUNET_free (cm);
1350     }
1351   /* end check */
1352
1353   if (handle->reconnect_task != GNUNET_SCHEDULER_NO_TASK)
1354     {
1355       GNUNET_SCHEDULER_cancel (handle->sched, handle->reconnect_task);
1356       handle->reconnect_task = GNUNET_SCHEDULER_NO_TASK;
1357     }
1358   if (handle->quota_task != GNUNET_SCHEDULER_NO_TASK)
1359     {
1360       GNUNET_SCHEDULER_cancel (handle->sched, handle->quota_task);
1361       handle->quota_task = GNUNET_SCHEDULER_NO_TASK;
1362     }
1363   GNUNET_free_non_null (handle->my_hello);
1364   handle->my_hello = NULL;
1365   GNUNET_ARM_stop_services (handle->cfg, handle->sched, "transport",
1366                             "peerinfo", NULL);
1367   if (NULL != handle->network_handle)
1368     {
1369       GNUNET_CLIENT_notify_transmit_ready_cancel (handle->network_handle);
1370       handle->network_handle = NULL;
1371     }
1372   if (NULL != (client = handle->client))
1373     {
1374 #if DEBUG_TRANSPORT
1375       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1376                   "Disconnecting from transport service for good.\n");
1377 #endif
1378       handle->client = NULL;
1379       GNUNET_CLIENT_disconnect (client, GNUNET_NO);
1380     }
1381   GNUNET_free (handle);
1382 }
1383
1384
1385 /**
1386  * Function we use for handling incoming messages.
1387  *
1388  * @param cls closure (struct GNUNET_TRANSPORT_Handle *)
1389  * @param msg message received, NULL on timeout or fatal error
1390  */
1391 static void
1392 demultiplexer (void *cls, const struct GNUNET_MessageHeader *msg)
1393 {
1394   struct GNUNET_TRANSPORT_Handle *h = cls;
1395   const struct DisconnectInfoMessage *dim;
1396   const struct ConnectInfoMessage *cim;
1397   const struct InboundMessage *im;
1398   const struct GNUNET_MessageHeader *imm;
1399   const struct SendOkMessage *okm;
1400   struct HelloWaitList *hwl;
1401   struct HelloWaitList *next_hwl;
1402   struct NeighbourList *n;
1403   struct GNUNET_PeerIdentity me;
1404   uint16_t size;
1405
1406   if (h->client == NULL)
1407     {
1408       /* shutdown initiated from 'GNUNET_TRANSPORT_disconnect',
1409          finish clean up work! */
1410       GNUNET_free (h);
1411       return;
1412     }
1413   if (msg == NULL) 
1414     {
1415 #if DEBUG_TRANSPORT
1416       GNUNET_log (GNUNET_ERROR_TYPE_INFO,
1417                   "Error receiving from transport service, disconnecting temporarily.\n");
1418 #endif
1419       if (h->network_handle != NULL)
1420         {
1421           GNUNET_CLIENT_notify_transmit_ready_cancel (h->network_handle);
1422           h->network_handle = NULL;
1423         }
1424       GNUNET_CLIENT_disconnect (h->client, GNUNET_NO);
1425       h->client = NULL;
1426       schedule_reconnect (h);
1427       return;
1428     }
1429   GNUNET_CLIENT_receive (h->client,
1430                          &demultiplexer, h, GNUNET_TIME_UNIT_FOREVER_REL);
1431   size = ntohs (msg->size);
1432   switch (ntohs (msg->type))
1433     {
1434     case GNUNET_MESSAGE_TYPE_HELLO:
1435       if (GNUNET_OK !=
1436           GNUNET_HELLO_get_id ((const struct GNUNET_HELLO_Message *) msg,
1437                                &me))
1438         {
1439           GNUNET_break (0);
1440           break;
1441         }
1442 #if DEBUG_TRANSPORT
1443       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1444                   "Receiving (my own) `%s' message, I am `%4s'.\n",
1445                   "HELLO", GNUNET_i2s (&me));
1446 #endif
1447       GNUNET_free_non_null (h->my_hello);
1448       h->my_hello = NULL;
1449       if (size < sizeof (struct GNUNET_MessageHeader))
1450         {
1451           GNUNET_break (0);
1452           break;
1453         }
1454       h->my_hello = GNUNET_malloc (size);
1455       memcpy (h->my_hello, msg, size);
1456       hwl = h->hwl_head;
1457       while (NULL != hwl)
1458         {
1459           next_hwl = hwl->next;
1460           hwl->rec (hwl->rec_cls,
1461                     (const struct GNUNET_MessageHeader *) h->my_hello);
1462           hwl = next_hwl;
1463         }
1464       break;
1465     case GNUNET_MESSAGE_TYPE_TRANSPORT_CONNECT:
1466       if (size != sizeof (struct ConnectInfoMessage))
1467         {
1468           GNUNET_break (0);
1469           break;
1470         }
1471       cim = (const struct ConnectInfoMessage *) msg;
1472 #if DEBUG_TRANSPORT
1473       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1474                   "Receiving `%s' message for `%4s'.\n",
1475                   "CONNECT", GNUNET_i2s (&cim->id));
1476 #endif
1477       n = neighbour_find (h, &cim->id);
1478       if (n == NULL)
1479         n = neighbour_add (h,
1480                            &cim->id);
1481       GNUNET_break (n->is_connected == GNUNET_NO);
1482       n->is_connected = GNUNET_YES;
1483       if (h->nc_cb != NULL)
1484         h->nc_cb (h->cls, &n->id,
1485                   GNUNET_TIME_relative_ntoh (cim->latency), 
1486                   ntohs (cim->distance));
1487       break;
1488     case GNUNET_MESSAGE_TYPE_TRANSPORT_DISCONNECT:
1489       if (size != sizeof (struct DisconnectInfoMessage))
1490         {
1491           GNUNET_break (0);
1492           break;
1493         }
1494       dim = (const struct DisconnectInfoMessage *) msg;
1495 #if DEBUG_TRANSPORT_DISCONNECT
1496       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1497                   "Receiving `%s' message for `%4s'.\n",
1498                   "DISCONNECT",
1499                   GNUNET_i2s (&dim->peer));
1500 #endif
1501       n = neighbour_find (h, &dim->peer);
1502       GNUNET_break (n != NULL);      
1503       if (n != NULL)
1504         neighbour_disconnect (n);       
1505       break;
1506     case GNUNET_MESSAGE_TYPE_TRANSPORT_SEND_OK:
1507       if (size != sizeof (struct SendOkMessage))
1508         {
1509           GNUNET_break (0);
1510           break;
1511         }
1512       okm = (const struct SendOkMessage *) msg;
1513 #if DEBUG_TRANSPORT
1514       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1515                   "Receiving `%s' message, transmission %s.\n", "SEND_OK",
1516                   ntohl (okm->success) == GNUNET_OK ? "succeeded" : "failed");
1517 #endif
1518       n = neighbour_find (h, &okm->peer);
1519       GNUNET_assert (n != NULL);
1520       switch (n->transmit_stage)
1521         {
1522         case TS_NEW:
1523           GNUNET_break (0);
1524           break;
1525         case TS_QUEUED:
1526           GNUNET_break (0);
1527           break;
1528         case TS_TRANSMITTED:
1529           n->transmit_stage = TS_NEW;
1530           break;
1531         case TS_TRANSMITTED_QUEUED:
1532           n->transmit_stage = TS_QUEUED;
1533           schedule_transmission (h);
1534           break;
1535         default:
1536           GNUNET_break (0);
1537         }
1538       break;
1539     case GNUNET_MESSAGE_TYPE_TRANSPORT_RECV:
1540 #if DEBUG_TRANSPORT
1541       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1542                   "Receiving `%s' message.\n", "RECV");
1543 #endif
1544       if (size <
1545           sizeof (struct InboundMessage) +
1546           sizeof (struct GNUNET_MessageHeader))
1547         {
1548           GNUNET_break (0);
1549           break;
1550         }
1551       im = (const struct InboundMessage *) msg;
1552       imm = (const struct GNUNET_MessageHeader *) &im[1];
1553       if (ntohs (imm->size) + sizeof (struct InboundMessage) != size)
1554         {
1555           GNUNET_break (0);
1556           break;
1557         }
1558 #if DEBUG_TRANSPORT
1559       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1560                   "Received message of type %u from `%4s'.\n",
1561                   ntohs (imm->type), GNUNET_i2s (&im->peer));
1562 #endif      
1563       n = neighbour_find (h, &im->peer);
1564       if (n == NULL)
1565         n = neighbour_add (h, &im->peer);
1566       if (n == NULL) 
1567         break;
1568       if (h->rec != NULL)
1569         h->rec (h->cls, &im->peer, imm,
1570                 GNUNET_TIME_relative_ntoh (im->latency), ntohs(im->distance));
1571       break;
1572     default:
1573       GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
1574                   _
1575                   ("Received unexpected message of type %u in %s:%u\n"),
1576                   ntohs (msg->type), __FILE__, __LINE__);
1577       GNUNET_break (0);
1578       break;
1579     }
1580 }
1581
1582
1583 /**
1584  * Called when our transmit request timed out before any transport
1585  * reported success connecting to the desired peer or before the
1586  * transport was ready to receive.  Signal error and free
1587  * TransmitHandle.
1588  *
1589  * @param cls the 'struct GNUNET_TRANSPORT_TransmitHandle*' that is timing out
1590  * @param tc scheduler context
1591  */
1592 static void
1593 peer_transmit_timeout (void *cls,
1594                        const struct GNUNET_SCHEDULER_TaskContext *tc)
1595 {
1596   struct GNUNET_TRANSPORT_TransmitHandle *th = cls;
1597   struct NeighbourList *n;
1598   GNUNET_CONNECTION_TransmitReadyNotify notify;
1599   void *notify_cls;
1600
1601   th->notify_delay_task = GNUNET_SCHEDULER_NO_TASK;
1602   n = th->neighbour;
1603 #if DEBUG_TRANSPORT
1604   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1605               "Triggering timeout for request to transmit to `%4s' (%d)\n",
1606               GNUNET_i2s (&n->id),
1607               n->transmit_stage);
1608 #endif  
1609   notify = th->notify;
1610   notify_cls = th->notify_cls;
1611   switch (n->transmit_stage)
1612     {
1613     case TS_NEW:
1614       GNUNET_break (0);
1615       break;
1616     case TS_QUEUED:
1617       n->transmit_stage = TS_NEW;
1618       if (n->is_connected == GNUNET_NO)
1619         neighbour_free (n);
1620       break;
1621     case TS_TRANSMITTED:
1622       GNUNET_break (0);
1623       break;
1624     case TS_TRANSMITTED_QUEUED:
1625       n->transmit_stage = TS_TRANSMITTED;
1626       break;
1627     default:
1628       GNUNET_break (0);
1629     }
1630   if (NULL != notify)
1631     notify (notify_cls, 0, NULL);
1632 }
1633
1634
1635 /**
1636  * Check if we could queue a message of the given size for
1637  * transmission.  The transport service will take both its
1638  * internal buffers and bandwidth limits imposed by the
1639  * other peer into consideration when answering this query.
1640  *
1641  * @param handle connection to transport service
1642  * @param target who should receive the message
1643  * @param size how big is the message we want to transmit?
1644  * @param priority how important is the message?
1645  * @param timeout after how long should we give up (and call
1646  *        notify with buf NULL and size 0)?
1647  * @param notify function to call when we are ready to
1648  *        send such a message
1649  * @param notify_cls closure for notify
1650  * @return NULL if someone else is already waiting to be notified
1651  *         non-NULL if the notify callback was queued (can be used to cancel
1652  *         using GNUNET_TRANSPORT_notify_transmit_ready_cancel)
1653  */
1654 struct GNUNET_TRANSPORT_TransmitHandle *
1655 GNUNET_TRANSPORT_notify_transmit_ready (struct GNUNET_TRANSPORT_Handle
1656                                         *handle,
1657                                         const struct GNUNET_PeerIdentity
1658                                         *target, size_t size,
1659                                         unsigned int priority,
1660                                         struct GNUNET_TIME_Relative timeout,
1661                                         GNUNET_CONNECTION_TransmitReadyNotify
1662                                         notify, void *notify_cls)
1663 {
1664   struct GNUNET_TRANSPORT_TransmitHandle *th;
1665   struct NeighbourList *n;
1666
1667   if (size + sizeof (struct OutboundMessage) >=
1668       GNUNET_SERVER_MAX_MESSAGE_SIZE)
1669     {
1670 #if DEBUG_TRANSPORT
1671       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1672                   "Message size is %d, max allowed is %d.\n",
1673                   size + sizeof (struct OutboundMessage), GNUNET_SERVER_MAX_MESSAGE_SIZE);
1674 #endif
1675       GNUNET_break (0);
1676       return NULL;
1677     }
1678 #if DEBUG_TRANSPORT
1679   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1680               "Asking transport service for transmission of %u bytes to peer `%4s' within %llu ms.\n",
1681               size, GNUNET_i2s (target),
1682               (unsigned long long) timeout.value);
1683 #endif
1684   n = neighbour_find (handle, target);
1685   if (n == NULL)
1686     n = neighbour_add (handle, target);
1687   if (n == NULL) 
1688     return NULL;
1689   switch (n->transmit_stage)
1690     {
1691     case TS_NEW:
1692       n->transmit_stage = TS_QUEUED;
1693       break;
1694     case TS_QUEUED:
1695       GNUNET_break (0);
1696       return NULL;
1697     case TS_TRANSMITTED:
1698       n->transmit_stage = TS_TRANSMITTED_QUEUED;
1699       break;
1700     case TS_TRANSMITTED_QUEUED:
1701       GNUNET_break (0);
1702       return NULL;
1703     default:
1704       GNUNET_break (0);
1705       return NULL;
1706     }
1707   th = &n->transmit_handle;
1708   th->neighbour = n;
1709   th->notify = notify;
1710   th->notify_cls = notify_cls;
1711   th->timeout = GNUNET_TIME_relative_to_absolute (timeout);
1712   th->notify_size = size + sizeof (struct OutboundMessage);
1713   th->priority = priority;
1714   th->notify_delay_task
1715     = GNUNET_SCHEDULER_add_delayed (handle->sched, timeout,
1716                                     &peer_transmit_timeout, th);
1717   schedule_transmission (handle);
1718   return th;
1719 }
1720
1721
1722 /**
1723  * Cancel the specified transmission-ready notification.
1724  */
1725 void
1726 GNUNET_TRANSPORT_notify_transmit_ready_cancel (struct
1727                                                GNUNET_TRANSPORT_TransmitHandle
1728                                                *th)
1729 {
1730   struct NeighbourList *n;
1731
1732   n = th->neighbour;
1733 #if DEBUG_TRANSPORT
1734   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1735               "Transmission request of %u bytes to `%4s' was cancelled.\n",
1736               th->notify_size - sizeof (struct OutboundMessage),
1737               GNUNET_i2s (&n->id));
1738 #endif
1739   switch (n->transmit_stage)
1740     {
1741     case TS_NEW:
1742       GNUNET_break (0);
1743       break;
1744     case TS_QUEUED:
1745       n->transmit_stage = TS_NEW;
1746       if (n->is_connected == GNUNET_NO)
1747         neighbour_free (n);
1748       break;
1749     case TS_TRANSMITTED:
1750       GNUNET_break (0);
1751       break;
1752     case TS_TRANSMITTED_QUEUED:
1753       n->transmit_stage = TS_TRANSMITTED;
1754       break;
1755     default:
1756       GNUNET_break (0);
1757     }
1758 }
1759
1760
1761 /* end of transport_api.c */