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