d6e48fcb85b22ec4487eee587726d3ef992e53b1
[oweals/gnunet.git] / src / mesh / gnunet-service-mesh.c
1 /*
2      This file is part of GNUnet.
3      (C) 2001-2013 Christian Grothoff (and other contributing authors)
4
5      GNUnet is free software; you can redistribute it and/or modify
6      it under the terms of the GNU General Public License as published
7      by the Free Software Foundation; either version 3, or (at your
8      option) any later version.
9
10      GNUnet is distributed in the hope that it will be useful, but
11      WITHOUT ANY WARRANTY; without even the implied warranty of
12      MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13      General Public License for more details.
14
15      You should have received a copy of the GNU General Public License
16      along with GNUnet; see the file COPYING.  If not, write to the
17      Free Software Foundation, Inc., 59 Temple Place - Suite 330,
18      Boston, MA 02111-1307, USA.
19 */
20
21 /**
22  * @file mesh/gnunet-service-mesh.c
23  * @brief GNUnet MESH service
24  * @author Bartlomiej Polot
25  *
26  *  FIXME in progress:
27  * - when sending in-order buffered data, wait for client ACKs
28  *
29  * TODO:
30  * - relay corking down to core
31  * - set ttl relative to path length
32  * - add signatures
33  * - add encryption
34  * TODO END
35  */
36
37 #include "platform.h"
38 #include "mesh.h"
39 #include "mesh_protocol.h"
40 #include "mesh_path.h"
41 #include "block_mesh.h"
42 #include "gnunet_dht_service.h"
43 #include "gnunet_statistics_service.h"
44
45 #define MESH_BLOOM_SIZE         128
46
47 #define MESH_DEBUG_DHT          GNUNET_NO
48 #define MESH_DEBUG_CONNECTION   GNUNET_NO
49 #define MESH_DEBUG_TIMING       __LINUX__ && GNUNET_NO
50
51 #define MESH_MAX_POLL_TIME      GNUNET_TIME_relative_multiply (\
52                                   GNUNET_TIME_UNIT_MINUTES,\
53                                   10)
54 #define MESH_RETRANSMIT_TIME    GNUNET_TIME_UNIT_SECONDS
55 #define MESH_RETRANSMIT_MARGIN  4
56
57 #if MESH_DEBUG_CONNECTION
58 #define DEBUG_CONN(...) GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, __VA_ARGS__)
59 #else
60 #define DEBUG_CONN(...)
61 #endif
62
63 #if MESH_DEBUG_DHT
64 #define DEBUG_DHT(...) GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, __VA_ARGS__)
65 #else
66 #define DEBUG_DHT(...)
67 #endif
68
69 #if MESH_DEBUG_TIMING
70 #include <time.h>
71 double __sum;
72 uint64_t __count;
73 struct timespec __mesh_start;
74 struct timespec __mesh_end;
75 #define INTERVAL_START clock_gettime(CLOCK_PROCESS_CPUTIME_ID, &(__mesh_start))
76 #define INTERVAL_END \
77 do {\
78   clock_gettime(CLOCK_PROCESS_CPUTIME_ID, &(__mesh_end));\
79   double __diff = __mesh_end.tv_nsec - __mesh_start.tv_nsec;\
80   if (__diff < 0) __diff += 1000000000;\
81   __sum += __diff;\
82   __count++;\
83 } while (0)
84 #define INTERVAL_SHOW \
85 if (0 < __count)\
86   GNUNET_log (GNUNET_ERROR_TYPE_INFO, "AVG process time: %f ns\n", __sum/__count)
87 #else
88 #define INTERVAL_START
89 #define INTERVAL_END
90 #define INTERVAL_SHOW
91 #endif
92
93 /******************************************************************************/
94 /************************      DATA STRUCTURES     ****************************/
95 /******************************************************************************/
96
97 /** FWD declaration */
98 struct MeshPeerInfo;
99 struct MeshClient;
100
101
102 /**
103  * Struct containing info about a queued transmission to this peer
104  */
105 struct MeshPeerQueue
106 {
107     /**
108       * DLL next
109       */
110   struct MeshPeerQueue *next;
111
112     /**
113       * DLL previous
114       */
115   struct MeshPeerQueue *prev;
116
117     /**
118      * Peer this transmission is directed to.
119      */
120   struct MeshPeerInfo *peer;
121
122     /**
123      * Tunnel this message belongs to.
124      */
125   struct MeshTunnel *tunnel;
126
127     /**
128      * Pointer to info stucture used as cls.
129      */
130   void *cls;
131
132     /**
133      * Type of message
134      */
135   uint16_t type;
136
137     /**
138      * Size of the message
139      */
140   size_t size;
141 };
142
143
144 /**
145  * Struct containing all information regarding a given peer
146  */
147 struct MeshPeerInfo
148 {
149     /**
150      * ID of the peer
151      */
152   GNUNET_PEER_Id id;
153
154     /**
155      * Last time we heard from this peer
156      */
157   struct GNUNET_TIME_Absolute last_contact;
158
159     /**
160      * Number of attempts to reconnect so far
161      */
162   int n_reconnect_attempts;
163
164     /**
165      * Paths to reach the peer, ordered by ascending hop count
166      */
167   struct MeshPeerPath *path_head;
168
169     /**
170      * Paths to reach the peer, ordered by ascending hop count
171      */
172   struct MeshPeerPath *path_tail;
173
174     /**
175      * Handle to stop the DHT search for a path to this peer
176      */
177   struct GNUNET_DHT_GetHandle *dhtget;
178
179     /**
180      * Array of tunnels this peer is the target of.
181      * Most probably a small amount, therefore not a hashmap.
182      * When the path to the peer changes, notify these tunnels to let them
183      * re-adjust their path trees.
184      */
185   struct MeshTunnel **tunnels;
186
187     /**
188      * Number of tunnels this peers participates in
189      */
190   unsigned int ntunnels;
191
192    /**
193     * Transmission queue to core DLL head
194     */
195   struct MeshPeerQueue *queue_head;
196
197    /**
198     * Transmission queue to core DLL tail
199     */
200    struct MeshPeerQueue *queue_tail;
201
202    /**
203     * How many messages are in the queue to this peer.
204     */
205    unsigned int queue_n;
206
207    /**
208     * Handle for queued transmissions
209     */
210   struct GNUNET_CORE_TransmitHandle *core_transmit;
211 };
212
213
214 /**
215  * Struct to encapsulate all the Flow Control information to a peer in the
216  * context of a tunnel: Same peer in different tunnels will have independent
217  * flow control structures, allowing to choke/free tunnels according to its
218  * own criteria.
219  */
220 struct MeshFlowControl
221 {
222   /**
223    * ID of the last packet sent towards the peer.
224    */
225   uint32_t last_pid_sent;
226
227   /**
228    * ID of the last packet received from the peer.
229    */
230   uint32_t last_pid_recv;
231
232   /**
233    * Last ACK sent to the peer (peer can't send more than this PID).
234    */
235   uint32_t last_ack_sent;
236
237   /**
238    * Last ACK sent towards the origin (for traffic towards leaf node).
239    */
240   uint32_t last_ack_recv;
241
242   /**
243    * How many payload messages are in the queue towards this peer.
244    */
245   uint32_t queue_n;
246
247   /**
248    * Task to poll the peer in case of a lost ACK causes stall.
249    */
250   GNUNET_SCHEDULER_TaskIdentifier poll_task;
251
252   /**
253    * How frequently to poll for ACKs.
254    */
255   struct GNUNET_TIME_Relative poll_time;
256
257   /**
258    * On which tunnel to poll.
259    * Using an explicit poll_ctx would not help memory wise,
260    * since the allocated context would have to be stored in the
261    * fc struct in order to free it upon cancelling poll_task.
262    */
263   struct MeshTunnel *t;
264 };
265
266
267 /**
268  * Globally unique tunnel identification (owner + number)
269  * DO NOT USE OVER THE NETWORK
270  */
271 struct MESH_TunnelID
272 {
273     /**
274      * Node that owns the tunnel
275      */
276   GNUNET_PEER_Id oid;
277
278     /**
279      * Tunnel number to differentiate all the tunnels owned by the node oid
280      * ( tid < GNUNET_MESH_LOCAL_TUNNEL_ID_CLI )
281      */
282   MESH_TunnelNumber tid;
283 };
284
285
286 /**
287  * Data needed for reliable tunnel endpoint retransmission management.
288  */
289 struct MeshTunnelReliability;
290
291
292 /**
293  * Info needed to retry a message in case it gets lost.
294  */
295 struct MeshReliableMessage
296 {
297     /**
298      * Double linked list, FIFO style
299      */
300   struct MeshReliableMessage    *next;
301   struct MeshReliableMessage    *prev;
302
303     /**
304      * Tunnel Reliability queue this message is in.
305      */
306   struct MeshTunnelReliability  *rel;
307
308     /**
309      * ID of the message (ACK needed to free)
310      */
311   uint32_t                      mid;
312
313     /**
314      * When was this message issued (to calculate ACK delay)
315      */
316   struct GNUNET_TIME_Absolute   timestamp;
317
318   /* struct GNUNET_MESH_Data with payload */
319 };
320
321
322 struct MeshTunnelReliability
323 {
324     /**
325      * Tunnel this is about.
326      */
327   struct MeshTunnel *t;
328
329     /**
330      * DLL of messages sent and not yet ACK'd.
331      */
332   struct MeshReliableMessage        *head_sent;
333   struct MeshReliableMessage        *tail_sent;
334
335     /**
336      * Messages pending
337      */
338   unsigned int                      n_sent;
339
340     /**
341      * Next MID to use.
342      */
343   uint32_t                          mid_sent;
344
345     /**
346      * DLL of messages received out of order.
347      */
348   struct MeshReliableMessage        *head_recv;
349   struct MeshReliableMessage        *tail_recv;
350
351     /**
352      * Next MID expected.
353      */
354   uint32_t                          mid_recv;
355
356     /**
357      * Task to resend/poll in case no ACK is received.
358      */
359   GNUNET_SCHEDULER_TaskIdentifier   retry_task;
360
361     /**
362      * Counter for exponential backoff.
363      */
364   struct GNUNET_TIME_Relative       retry_timer;
365
366     /**
367      * How long does it usually take to get an ACK.
368      */
369   struct GNUNET_TIME_Relative       expected_delay;
370 };
371
372
373 /**
374  * Struct containing all information regarding a tunnel
375  * For an intermediate node the improtant info used will be:
376  * - id        Tunnel unique identification
377  * - paths[0]  To know where to send it next
378  * - metainfo: ready, speeds, accounting
379  */
380 struct MeshTunnel
381 {
382     /**
383      * Tunnel ID
384      */
385   struct MESH_TunnelID id;
386
387     /**
388      * Port of the tunnel.
389      */
390   uint32_t port;
391
392     /**
393      * State of the tunnel.
394      */
395   enum MeshTunnelState state;
396
397     /**
398      * Local tunnel number ( >= GNUNET_MESH_LOCAL_TUNNEL_ID_CLI or 0 )
399      */
400   MESH_TunnelNumber local_tid;
401
402     /**
403      * Local tunnel number for local destination clients (incoming number)
404      * ( >= GNUNET_MESH_LOCAL_TUNNEL_ID_SERV or 0). All clients share the same
405      * number.
406      */
407   MESH_TunnelNumber local_tid_dest;
408
409     /**
410      * Is the tunnel bufferless (minimum latency)?
411      */
412   int nobuffer;
413
414     /**
415      * Is the tunnel reliable?
416      */
417   int reliable;
418
419     /**
420      * Force sending ACK? Flag to allow duplicate ACK on POLL.
421      */
422   int force_ack;
423
424     /**
425      * How many messages do we accept in the forward queue.
426      */
427   unsigned int queue_max;
428
429     /**
430      * Last time the tunnel was used
431      */
432   struct GNUNET_TIME_Absolute timestamp;
433
434     /**
435      * Destination of the tunnel.
436      */
437   GNUNET_PEER_Id dest;
438
439     /**
440      * Next hop in the tunnel. If 0, @c client must be set.
441      */
442   GNUNET_PEER_Id next_hop;
443
444     /**
445      * Previous hop in the tunnel. If 0, @c owner must be set.
446      */
447   GNUNET_PEER_Id prev_hop;
448
449     /**
450      * Flow control information about @c next_hop or @c client.
451      */
452   struct MeshFlowControl next_fc;
453
454   /**
455    * Flow control information about @c prev_hop or @c owner.
456    */
457   struct MeshFlowControl prev_fc;
458
459     /**
460      * Client owner of the tunnel, if any
461      */
462   struct MeshClient *owner;
463
464     /**
465      * Client destination of the tunnel, if any.
466      */
467   struct MeshClient *client;
468
469     /**
470      * Task to keep the used paths alive at the owner,
471      * time tunnel out on all the other peers.
472      */
473   GNUNET_SCHEDULER_TaskIdentifier fwd_maintenance_task;
474
475   /**
476      * Task to keep the used paths alive at the destination,
477      * time tunnel out on all the other peers.
478      */
479   GNUNET_SCHEDULER_TaskIdentifier bck_maintenance_task;
480
481     /**
482      * Path being used for the tunnel.
483      */
484   struct MeshPeerPath *path;
485
486     /**
487      * Flag to signal the destruction of the tunnel.
488      * If this is set GNUNET_YES the tunnel will be destroyed
489      * when the queue is empty.
490      */
491   int destroy;
492
493     /**
494      * Total messages pending for this tunnels, payload or not.
495      */
496   unsigned int pending_messages;
497
498     /**
499      * Reliability data.
500      * Only present (non-NULL) at the owner of a tunnel.
501      */
502   struct MeshTunnelReliability *fwd_rel;
503
504     /**
505      * Reliability data.
506      * Only present (non-NULL) at the destination of a tunnel.
507      */
508   struct MeshTunnelReliability *bck_rel;
509 };
510
511
512 /**
513  * Struct containing information about a client of the service
514  * 
515  * TODO: add a list of 'waiting' ports
516  */
517 struct MeshClient
518 {
519     /**
520      * Linked list next
521      */
522   struct MeshClient *next;
523
524     /**
525      * Linked list prev
526      */
527   struct MeshClient *prev;
528
529     /**
530      * Tunnels that belong to this client, indexed by local id
531      */
532   struct GNUNET_CONTAINER_MultiHashMap32 *own_tunnels;
533
534    /**
535      * Tunnels this client has accepted, indexed by incoming local id
536      */
537   struct GNUNET_CONTAINER_MultiHashMap32 *incoming_tunnels;
538
539     /**
540      * Handle to communicate with the client
541      */
542   struct GNUNET_SERVER_Client *handle;
543
544     /**
545      * Ports that this client has declared interest in.
546      * Indexed by port, contains *Client.
547      */
548   struct GNUNET_CONTAINER_MultiHashMap32 *ports;
549
550     /**
551      * Whether the client is active or shutting down (don't send confirmations
552      * to a client that is shutting down.
553      */
554   int shutting_down;
555
556     /**
557      * ID of the client, mainly for debug messages
558      */
559   unsigned int id;
560
561 };
562
563
564 /******************************************************************************/
565 /************************      DEBUG FUNCTIONS     ****************************/
566 /******************************************************************************/
567
568 #if MESH_DEBUG
569 /**
570  * GNUNET_SCHEDULER_Task for printing a message after some operation is done
571  * @param cls string to print
572  * @param success  GNUNET_OK if the PUT was transmitted,
573  *                GNUNET_NO on timeout,
574  *                GNUNET_SYSERR on disconnect from service
575  *                after the PUT message was transmitted
576  *                (so we don't know if it was received or not)
577  */
578
579 #if 0
580 static void
581 mesh_debug (void *cls, int success)
582 {
583   char *s = cls;
584
585   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "%s (%d)\n", s, success);
586 }
587 #endif
588
589 #endif
590
591 /******************************************************************************/
592 /***********************      GLOBAL VARIABLES     ****************************/
593 /******************************************************************************/
594
595 /************************** Configuration parameters **************************/
596
597 /**
598  * How often to send tunnel keepalives. Tunnels timeout after 4 missed.
599  */
600 static struct GNUNET_TIME_Relative refresh_path_time;
601
602 /**
603  * How often to PUT own ID in the DHT.
604  */
605 static struct GNUNET_TIME_Relative id_announce_time;
606
607 /**
608  * Maximum time allowed to connect to a peer found by string.
609  */
610 static struct GNUNET_TIME_Relative connect_timeout;
611
612 /**
613  * Default TTL for payload packets.
614  */
615 static unsigned long long default_ttl;
616
617 /**
618  * DHT replication level, see DHT API: GNUNET_DHT_get_start, GNUNET_DHT_put.
619  */
620 static unsigned long long dht_replication_level;
621
622 /**
623  * How many tunnels are we willing to maintain.
624  * Local tunnels are always allowed, even if there are more tunnels than max.
625  */
626 static unsigned long long max_tunnels;
627
628 /**
629  * How many messages *in total* are we willing to queue, divided by number of 
630  * tunnels to get tunnel queue size.
631  */
632 static unsigned long long max_msgs_queue;
633
634 /**
635  * How many peers do we want to remember?
636  */
637 static unsigned long long max_peers;
638
639 /**
640  * Percentage of messages that will be dropped (for test purposes only).
641  */
642 static unsigned long long drop_percent;
643
644 /*************************** Static global variables **************************/
645
646 /**
647  * DLL with all the clients, head.
648  */
649 static struct MeshClient *clients_head;
650
651 /**
652  * DLL with all the clients, tail.
653  */
654 static struct MeshClient *clients_tail;
655
656 /**
657  * Tunnels known, indexed by MESH_TunnelID (MeshTunnel).
658  */
659 static struct GNUNET_CONTAINER_MultiHashMap *tunnels;
660
661 /**
662  * Number of tunnels known.
663  */
664 static unsigned long long n_tunnels;
665
666 /**
667  * Tunnels incoming, indexed by MESH_TunnelNumber
668  * (which is greater than GNUNET_MESH_LOCAL_TUNNEL_ID_SERV).
669  */
670 static struct GNUNET_CONTAINER_MultiHashMap32 *incoming_tunnels;
671
672 /**
673  * Peers known, indexed by PeerIdentity (MeshPeerInfo).
674  */
675 static struct GNUNET_CONTAINER_MultiHashMap *peers;
676
677 /*
678  * Handle to communicate with transport
679  */
680 // static struct GNUNET_TRANSPORT_Handle *transport_handle;
681
682 /**
683  * Handle to communicate with core.
684  */
685 static struct GNUNET_CORE_Handle *core_handle;
686
687 /**
688  * Handle to use DHT.
689  */
690 static struct GNUNET_DHT_Handle *dht_handle;
691
692 /**
693  * Handle to server.
694  */
695 static struct GNUNET_SERVER_Handle *server_handle;
696
697 /**
698  * Handle to the statistics service.
699  */
700 static struct GNUNET_STATISTICS_Handle *stats;
701
702 /**
703  * Notification context, to send messages to local clients.
704  */
705 static struct GNUNET_SERVER_NotificationContext *nc;
706
707 /**
708  * Local peer own ID (memory efficient handle).
709  */
710 static GNUNET_PEER_Id myid;
711
712 /**
713  * Local peer own ID (full value).
714  */
715 static struct GNUNET_PeerIdentity my_full_id;
716
717 /**
718  * Own private key.
719  */
720 static struct GNUNET_CRYPTO_EccPrivateKey *my_private_key;
721
722 /**
723  * Own public key.
724  */
725 static struct GNUNET_CRYPTO_EccPublicKeyBinaryEncoded my_public_key;
726
727 /**
728  * Tunnel ID for the next created tunnel (global tunnel number).
729  */
730 static MESH_TunnelNumber next_tid;
731
732 /**
733  * Tunnel ID for the next incoming tunnel (local tunnel number).
734  */
735 static MESH_TunnelNumber next_local_tid;
736
737 /**
738  * All ports clients of this peer have opened.
739  */
740 static struct GNUNET_CONTAINER_MultiHashMap32 *ports;
741
742 /**
743  * Task to periodically announce itself in the network.
744  */
745 GNUNET_SCHEDULER_TaskIdentifier announce_id_task;
746
747 /**
748  * Next ID to assign to a client.
749  */
750 unsigned int next_client_id;
751
752
753 /******************************************************************************/
754 /***********************         DECLARATIONS        **************************/
755 /******************************************************************************/
756
757 /**
758  * Function to process paths received for a new peer addition. The recorded
759  * paths form the initial tunnel, which can be optimized later.
760  * Called on each result obtained for the DHT search.
761  *
762  * @param cls closure
763  * @param exp when will this value expire
764  * @param key key of the result
765  * @param type type of the result
766  * @param size number of bytes in data
767  * @param data pointer to the result data
768  */
769 static void
770 dht_get_id_handler (void *cls, struct GNUNET_TIME_Absolute exp,
771                     const struct GNUNET_HashCode * key,
772                     const struct GNUNET_PeerIdentity *get_path,
773                     unsigned int get_path_length,
774                     const struct GNUNET_PeerIdentity *put_path,
775                     unsigned int put_path_length, enum GNUNET_BLOCK_Type type,
776                     size_t size, const void *data);
777
778
779 /**
780  * Retrieve the MeshPeerInfo stucture associated with the peer, create one
781  * and insert it in the appropriate structures if the peer is not known yet.
782  *
783  * @param peer Full identity of the peer.
784  *
785  * @return Existing or newly created peer info.
786  */
787 static struct MeshPeerInfo *
788 peer_get (const struct GNUNET_PeerIdentity *peer);
789
790
791 /**
792  * Retrieve the MeshPeerInfo stucture associated with the peer, create one
793  * and insert it in the appropriate structures if the peer is not known yet.
794  *
795  * @param peer Short identity of the peer.
796  *
797  * @return Existing or newly created peer info.
798  */
799 static struct MeshPeerInfo *
800 peer_get_short (const GNUNET_PEER_Id peer);
801
802
803 /**
804  * Build a PeerPath from the paths returned from the DHT, reversing the paths
805  * to obtain a local peer -> destination path and interning the peer ids.
806  *
807  * @return Newly allocated and created path
808  */
809 static struct MeshPeerPath *
810 path_build_from_dht (const struct GNUNET_PeerIdentity *get_path,
811                      unsigned int get_path_length,
812                      const struct GNUNET_PeerIdentity *put_path,
813                      unsigned int put_path_length);
814
815
816 /**
817  * Adds a path to the peer_infos of all the peers in the path
818  *
819  * @param p Path to process.
820  * @param confirmed Whether we know if the path works or not.
821  */
822 static void
823 path_add_to_peers (struct MeshPeerPath *p, int confirmed);
824
825
826
827 /**
828  * Search for a tunnel by global ID using full PeerIdentities.
829  *
830  * @param oid owner of the tunnel.
831  * @param tid global tunnel number.
832  *
833  * @return tunnel handler, NULL if doesn't exist.
834  */
835 static struct MeshTunnel *
836 tunnel_get (const struct GNUNET_PeerIdentity *oid, MESH_TunnelNumber tid);
837
838
839 /**
840  * Change the tunnel state.
841  *
842  * @param t Tunnel whose ttate to change.
843  * @param state New state.
844  */
845 static void
846 tunnel_change_state (struct MeshTunnel *t, enum MeshTunnelState state);
847
848
849 /**
850  * Notify a tunnel that a connection has broken that affects at least
851  * some of its peers.
852  *
853  * @param t Tunnel affected.
854  * @param p1 Peer that got disconnected from p2.
855  * @param p2 Peer that got disconnected from p1.
856  *
857  * @return Short ID of the peer disconnected (either p1 or p2).
858  *         0 if the tunnel remained unaffected.
859  */
860 static GNUNET_PEER_Id
861 tunnel_notify_connection_broken (struct MeshTunnel *t, GNUNET_PEER_Id p1,
862                                  GNUNET_PEER_Id p2);
863
864
865 /**
866  * Send FWD keepalive packets for a tunnel.
867  *
868  * @param cls Closure (tunnel for which to send the keepalive).
869  * @param tc Notification context.
870  */
871 static void
872 tunnel_fwd_keepalive (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc);
873
874 /**
875  * Send BCK keepalive packets for a tunnel.
876  *
877  * @param cls Closure (tunnel for which to send the keepalive).
878  * @param tc Notification context.
879  */
880 static void
881 tunnel_bck_keepalive (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc);
882
883 /**
884  * @brief Use the given path for the tunnel.
885  * Update the next and prev hops (and RCs).
886  * (Re)start the path refresh in case the tunnel is locally owned.
887  * 
888  * @param t Tunnel to update.
889  * @param p Path to use.
890  */
891 static void
892 tunnel_use_path (struct MeshTunnel *t, struct MeshPeerPath *p);
893
894 /**
895  * Tunnel is empty: destroy it.
896  * 
897  * Notifies all participants (peers, cleints) about the destruction.
898  * 
899  * @param t Tunnel to destroy. 
900  */
901 static void
902 tunnel_destroy_empty (struct MeshTunnel *t);
903
904 /**
905  * Destroy the tunnel.
906  *
907  * This function does not generate any warning traffic to clients or peers.
908  *
909  * Tasks:
910  * Remove the tunnel from peer_info's and clients' hashmaps.
911  * Cancel messages belonging to this tunnel queued to neighbors.
912  * Free any allocated resources linked to the tunnel.
913  *
914  * @param t the tunnel to destroy
915  *
916  * @return GNUNET_OK on success
917  */
918 static int
919 tunnel_destroy (struct MeshTunnel *t);
920
921 /**
922  * @brief Queue and pass message to core when possible.
923  * 
924  * If type is payload (UNICAST, TO_ORIGIN, MULTICAST) checks for queue status
925  * and accounts for it. In case the queue is full, the message is dropped and
926  * a break issued.
927  * 
928  * Otherwise, message is treated as internal and allowed to go regardless of 
929  * queue status.
930  *
931  * @param cls Closure (@c type dependant). It will be used by queue_send to
932  *            build the message to be sent if not already prebuilt.
933  * @param type Type of the message, 0 for a raw message.
934  * @param size Size of the message.
935  * @param dst Neighbor to send message to.
936  * @param t Tunnel this message belongs to.
937  */
938 static void
939 queue_add (void *cls, uint16_t type, size_t size,
940            struct MeshPeerInfo *dst, struct MeshTunnel *t);
941
942
943 /**
944  * Free a transmission that was already queued with all resources
945  * associated to the request.
946  *
947  * @param queue Queue handler to cancel.
948  * @param clear_cls Is it necessary to free associated cls?
949  */
950 static void
951 queue_destroy (struct MeshPeerQueue *queue, int clear_cls);
952
953
954 /**
955  * @brief Get the next transmittable message from the queue.
956  *
957  * This will be the head, except in the case of being a data packet
958  * not allowed by the destination peer.
959  *
960  * @param peer Destination peer.
961  *
962  * @return The next viable MeshPeerQueue element to send to that peer.
963  *         NULL when there are no transmittable messages.
964  */
965 struct MeshPeerQueue *
966 queue_get_next (const struct MeshPeerInfo *peer);
967
968
969 /**
970  * Core callback to write a queued packet to core buffer
971  *
972  * @param cls Closure (peer info).
973  * @param size Number of bytes available in buf.
974  * @param buf Where the to write the message.
975  *
976  * @return number of bytes written to buf
977  */
978 static size_t
979 queue_send (void *cls, size_t size, void *buf);
980
981
982 /**
983  * Dummy function to separate declarations from definitions in function list.
984  */
985 void
986 __mesh_divider______________________________________________________________();
987
988
989 static const char *
990 GNUNET_MESH_DEBUG_S2S (enum MeshTunnelState s)
991 {
992   static char buf[128];
993
994   switch (s)
995   {
996     /**
997      * Uninitialized status, should never appear in operation.
998      */
999     case MESH_TUNNEL_NEW: return "MESH_TUNNEL_NEW";
1000
1001     /**
1002      * Path to the peer not known yet
1003      */
1004     case MESH_TUNNEL_SEARCHING: return "MESH_TUNNEL_SEARCHING";
1005
1006     /**
1007      * Request sent, not yet answered.
1008      */
1009     case MESH_TUNNEL_WAITING: return "MESH_TUNNEL_WAITING";
1010
1011     /**
1012      * Peer connected and ready to accept data
1013      */
1014     case MESH_TUNNEL_READY: return "MESH_TUNNEL_READY";
1015
1016     /**
1017      * Peer connected previosly but not responding
1018      */
1019     case MESH_TUNNEL_RECONNECTING: return "MESH_TUNNEL_RECONNECTING";
1020
1021     default:
1022       sprintf (buf, "%u (UNKNOWN STATE)", s);
1023       return buf;
1024   }
1025 }
1026
1027
1028 /******************************************************************************/
1029 /************************    PERIODIC FUNCTIONS    ****************************/
1030 /******************************************************************************/
1031
1032 /**
1033  * Periodically announce self id in the DHT
1034  *
1035  * @param cls closure
1036  * @param tc task context
1037  */
1038 static void
1039 announce_id (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
1040 {
1041   struct PBlock block;
1042
1043   if (0 != (tc->reason & GNUNET_SCHEDULER_REASON_SHUTDOWN))
1044   {
1045     announce_id_task = GNUNET_SCHEDULER_NO_TASK;
1046     return;
1047   }
1048   /* TODO
1049    * - Set data expiration in function of X
1050    * - Adapt X to churn
1051    */
1052   DEBUG_DHT ("DHT_put for ID %s started.\n", GNUNET_i2s (&my_full_id));
1053
1054   block.id = my_full_id;
1055   GNUNET_DHT_put (dht_handle,   /* DHT handle */
1056                   &my_full_id.hashPubKey,       /* Key to use */
1057                   dht_replication_level,     /* Replication level */
1058                   GNUNET_DHT_RO_RECORD_ROUTE | GNUNET_DHT_RO_DEMULTIPLEX_EVERYWHERE,    /* DHT options */
1059                   GNUNET_BLOCK_TYPE_MESH_PEER,       /* Block type */
1060                   sizeof (block),  /* Size of the data */
1061                   (const char *) &block, /* Data itself */
1062                   GNUNET_TIME_UNIT_FOREVER_ABS,  /* Data expiration */
1063                   GNUNET_TIME_UNIT_FOREVER_REL, /* Retry time */
1064                   NULL,         /* Continuation */
1065                   NULL);        /* Continuation closure */
1066   announce_id_task =
1067       GNUNET_SCHEDULER_add_delayed (id_announce_time, &announce_id, cls);
1068 }
1069
1070
1071 /******************************************************************************/
1072 /******************      GENERAL HELPER FUNCTIONS      ************************/
1073 /******************************************************************************/
1074
1075
1076 /**
1077  * Check if client has registered with the service and has not disconnected
1078  *
1079  * @param client the client to check
1080  *
1081  * @return non-NULL if client exists in the global DLL
1082  */
1083 static struct MeshClient *
1084 client_get (struct GNUNET_SERVER_Client *client)
1085 {
1086   return GNUNET_SERVER_client_get_user_context (client, struct MeshClient);
1087 }
1088
1089
1090 /**
1091  * Deletes a tunnel from a client (either owner or destination). To be used on
1092  * tunnel destroy.
1093  *
1094  * @param c Client whose tunnel to delete.
1095  * @param t Tunnel which should be deleted.
1096  */
1097 static void
1098 client_delete_tunnel (struct MeshClient *c, struct MeshTunnel *t)
1099 {
1100   if (c == t->owner)
1101   {
1102     GNUNET_assert (GNUNET_YES ==
1103                    GNUNET_CONTAINER_multihashmap32_remove (c->own_tunnels,
1104                                                            t->local_tid,
1105                                                            t));
1106   }
1107   if (c == t->client)
1108   {
1109     GNUNET_assert (GNUNET_YES ==
1110                    GNUNET_CONTAINER_multihashmap32_remove (c->incoming_tunnels,
1111                                                            t->local_tid_dest,
1112                                                            t));
1113   }
1114 }
1115
1116
1117 /**
1118  * Notify the appropriate client that a new incoming tunnel was created.
1119  *
1120  * @param t Tunnel that was created.
1121  */
1122 static void
1123 send_local_tunnel_create (struct MeshTunnel *t)
1124 {
1125   struct GNUNET_MESH_TunnelMessage msg;
1126
1127   if (NULL == t->client)
1128     return;
1129   msg.header.size = htons (sizeof (msg));
1130   msg.header.type = htons (GNUNET_MESSAGE_TYPE_MESH_LOCAL_TUNNEL_CREATE);
1131   msg.tunnel_id = htonl (t->local_tid_dest);
1132   msg.port = htonl (t->port);
1133   msg.opt = 0;
1134   msg.opt |= GNUNET_YES == t->reliable ? GNUNET_MESH_OPTION_RELIABLE : 0;
1135   msg.opt |= GNUNET_YES == t->nobuffer ? GNUNET_MESH_OPTION_NOBUFFER : 0;
1136   msg.opt = htonl (msg.opt);
1137   GNUNET_PEER_resolve (t->id.oid, &msg.peer);
1138   GNUNET_SERVER_notification_context_unicast (nc, t->client->handle,
1139                                               &msg.header, GNUNET_NO);
1140 }
1141
1142
1143 /**
1144  * Notify a client that the incoming tunnel is no longer valid.
1145  *
1146  * @param t Tunnel that is destroyed.
1147  * @param fwd Forward notification (owner->dest)?
1148  */
1149 static void
1150 send_local_tunnel_destroy (struct MeshTunnel *t, int fwd)
1151 {
1152   struct GNUNET_MESH_TunnelMessage msg;
1153   struct MeshClient *c;
1154
1155   c = fwd ? t->client : t->owner;
1156   if (NULL == c)
1157   {
1158     GNUNET_break (0);
1159     return;
1160   }
1161   msg.header.size = htons (sizeof (msg));
1162   msg.header.type = htons (GNUNET_MESSAGE_TYPE_MESH_LOCAL_TUNNEL_DESTROY);
1163   msg.tunnel_id = htonl (fwd ? t->local_tid_dest : t->local_tid);
1164   msg.port = htonl (0);
1165   memset (&msg.peer, 0, sizeof (msg.peer));
1166   msg.opt = htonl (0);
1167   GNUNET_SERVER_notification_context_unicast (nc, c->handle,
1168                                               &msg.header, GNUNET_NO);
1169 }
1170
1171
1172 /**
1173  * Build a local ACK message and send it to a local client.
1174  * 
1175  * @param t Tunnel on which to send the ACK.
1176  * @param c Client to whom send the ACK.
1177  * @param is_fwd Set to GNUNET_YES for FWD ACK (dest->owner)
1178  */
1179 static void
1180 send_local_ack (struct MeshTunnel *t,
1181                 struct MeshClient *c,
1182                 int is_fwd)
1183 {
1184   struct GNUNET_MESH_LocalAck msg;
1185
1186   msg.header.size = htons (sizeof (msg));
1187   msg.header.type = htons (GNUNET_MESSAGE_TYPE_MESH_LOCAL_ACK);
1188   msg.tunnel_id = htonl (is_fwd ? t->local_tid : t->local_tid_dest);
1189   GNUNET_SERVER_notification_context_unicast (nc,
1190                                               c->handle,
1191                                               &msg.header,
1192                                               GNUNET_NO);
1193 }
1194
1195
1196
1197 /**
1198  * Sends an already built message to a peer, properly registrating
1199  * all used resources.
1200  *
1201  * @param message Message to send. Function makes a copy of it.
1202  * @param peer Short ID of the neighbor whom to send the message.
1203  * @param t Tunnel on which this message is transmitted.
1204  */
1205 static void
1206 send_prebuilt_message (const struct GNUNET_MessageHeader *message,
1207                        GNUNET_PEER_Id peer,
1208                        struct MeshTunnel *t)
1209 {
1210   struct GNUNET_PeerIdentity id;
1211   struct MeshPeerInfo *neighbor;
1212   struct MeshPeerPath *p;
1213   void *data;
1214   size_t size;
1215   uint16_t type;
1216
1217 //   GNUNET_TRANSPORT_try_connect(); FIXME use?
1218
1219   if (0 == peer)
1220     return;
1221
1222   size = ntohs (message->size);
1223   data = GNUNET_malloc (size);
1224   memcpy (data, message, size);
1225   type = ntohs(message->type);
1226   if (GNUNET_MESSAGE_TYPE_MESH_UNICAST == type ||
1227       GNUNET_MESSAGE_TYPE_MESH_TO_ORIGIN == type)
1228   {
1229     struct GNUNET_MESH_Data *u;
1230
1231     u = (struct GNUNET_MESH_Data *) data;
1232     u->ttl = htonl (ntohl (u->ttl) - 1);
1233   }
1234   GNUNET_PEER_resolve (peer, &id);
1235   neighbor = peer_get (&id);
1236   for (p = neighbor->path_head; NULL != p; p = p->next)
1237   {
1238     if (2 >= p->length)
1239     {
1240       break;
1241     }
1242   }
1243   if (NULL == p)
1244   {
1245 #if MESH_DEBUG
1246     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1247                 "  %s IS NOT DIRECTLY CONNECTED\n",
1248                 GNUNET_i2s(&id));
1249     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1250                 "  PATHS TO %s:\n",
1251                 GNUNET_i2s(&id));
1252     for (p = neighbor->path_head; NULL != p; p = p->next)
1253     {
1254       struct GNUNET_PeerIdentity debug_id;
1255       unsigned int i;
1256
1257       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1258                   "    path with %u hops through:\n",
1259                   p->length);
1260       for (i = 0; i < p->length; i++)
1261       {
1262         GNUNET_PEER_resolve(p->peers[i], &debug_id);
1263         GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1264                     "      hop %u: %s\n",
1265                     i, GNUNET_i2s(&debug_id));
1266       }
1267     }
1268 #endif
1269     GNUNET_break (0);
1270     GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
1271                     " no direct connection to %s\n",
1272                     GNUNET_i2s (&id));
1273     GNUNET_free (data);
1274     return;
1275   }
1276   if (GNUNET_MESSAGE_TYPE_MESH_PATH_ACK == type)
1277     type = 0;
1278   queue_add (data,
1279              type,
1280              size,
1281              neighbor,
1282              t);
1283 }
1284
1285
1286 /**
1287  * Sends a CREATE PATH message for a path to a peer, properly registrating
1288  * all used resources.
1289  *
1290  * @param t Tunnel for which the path is created.
1291  */
1292 static void
1293 send_path_create (struct MeshTunnel *t)
1294 {
1295   struct MeshPeerInfo *neighbor;
1296
1297   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Send create path\n");
1298   neighbor = peer_get_short (t->next_hop);
1299   queue_add (t,
1300              GNUNET_MESSAGE_TYPE_MESH_PATH_CREATE,
1301              sizeof (struct GNUNET_MESH_CreateTunnel) +
1302                 (t->path->length * sizeof (struct GNUNET_PeerIdentity)),
1303              neighbor,
1304              t);
1305   tunnel_change_state (t, MESH_TUNNEL_WAITING);
1306 }
1307
1308
1309 /**
1310  * Sends a PATH ACK message in reponse to a received PATH_CREATE directed to us.
1311  *
1312  * @param t Tunnel which to confirm.
1313  */
1314 static void
1315 send_path_ack (struct MeshTunnel *t) 
1316 {
1317   struct MeshPeerInfo *neighbor;
1318
1319   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Send path ack\n");
1320   neighbor = peer_get_short (t->prev_hop);
1321   queue_add (t,
1322              GNUNET_MESSAGE_TYPE_MESH_PATH_ACK,
1323              sizeof (struct GNUNET_MESH_PathACK),
1324              neighbor,
1325              t);
1326   tunnel_change_state (t, MESH_TUNNEL_WAITING);
1327 }
1328
1329
1330 /**
1331  * Build an ACK message and queue it to send to the given peer.
1332  * 
1333  * @param t Tunnel on which to send the ACK.
1334  * @param peer Peer to whom send the ACK.
1335  * @param ack Value of the ACK.
1336  */
1337 static void
1338 send_ack (struct MeshTunnel *t, GNUNET_PEER_Id peer,  uint32_t ack)
1339 {
1340   struct GNUNET_MESH_ACK msg;
1341
1342   GNUNET_PEER_resolve (t->id.oid, &msg.oid);
1343   msg.header.size = htons (sizeof (msg));
1344   msg.header.type = htons (GNUNET_MESSAGE_TYPE_MESH_ACK);
1345   msg.pid = htonl (ack);
1346   msg.tid = htonl (t->id.tid);
1347
1348   send_prebuilt_message (&msg.header, peer, t);
1349 }
1350
1351
1352 /**
1353   * Core callback to write a pre-constructed data packet to core buffer
1354   *
1355   * @param cls Closure (MeshTransmissionDescriptor with data in "data" member).
1356   * @param size Number of bytes available in buf.
1357   * @param buf Where the to write the message.
1358   *
1359   * @return number of bytes written to buf
1360   */
1361 static size_t
1362 send_core_data_raw (void *cls, size_t size, void *buf)
1363 {
1364   struct GNUNET_MessageHeader *msg = cls;
1365   size_t total_size;
1366
1367   GNUNET_assert (NULL != msg);
1368   total_size = ntohs (msg->size);
1369
1370   if (total_size > size)
1371   {
1372     GNUNET_break (0);
1373     return 0;
1374   }
1375   memcpy (buf, msg, total_size);
1376   GNUNET_free (cls);
1377   return total_size;
1378 }
1379
1380
1381 /**
1382  * Function to send a create path packet to a peer.
1383  *
1384  * @param cls closure
1385  * @param size number of bytes available in buf
1386  * @param buf where the callee should write the message
1387  * @return number of bytes written to buf
1388  */
1389 static size_t
1390 send_core_path_create (void *cls, size_t size, void *buf)
1391 {
1392   struct MeshTunnel *t = cls;
1393   struct GNUNET_MESH_CreateTunnel *msg;
1394   struct GNUNET_PeerIdentity *peer_ptr;
1395   struct MeshPeerPath *p = t->path;
1396   size_t size_needed;
1397   uint32_t opt;
1398   int i;
1399
1400   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "CREATE PATH sending...\n");
1401   size_needed =
1402       sizeof (struct GNUNET_MESH_CreateTunnel) +
1403       p->length * sizeof (struct GNUNET_PeerIdentity);
1404
1405   if (size < size_needed || NULL == buf)
1406   {
1407     GNUNET_break (0);
1408     return 0;
1409   }
1410   msg = (struct GNUNET_MESH_CreateTunnel *) buf;
1411   msg->header.size = htons (size_needed);
1412   msg->header.type = htons (GNUNET_MESSAGE_TYPE_MESH_PATH_CREATE);
1413   msg->tid = ntohl (t->id.tid);
1414
1415   opt = 0;
1416   if (GNUNET_YES == t->nobuffer)
1417     opt |= GNUNET_MESH_OPTION_NOBUFFER;
1418   if (GNUNET_YES == t->reliable)
1419     opt |= GNUNET_MESH_OPTION_RELIABLE;
1420   msg->opt = htonl (opt);
1421   msg->port = htonl (t->port);
1422
1423   peer_ptr = (struct GNUNET_PeerIdentity *) &msg[1];
1424   for (i = 0; i < p->length; i++)
1425   {
1426     GNUNET_PEER_resolve (p->peers[i], peer_ptr++);
1427   }
1428
1429   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1430               "CREATE PATH (%u bytes long) sent!\n", size_needed);
1431   return size_needed;
1432 }
1433
1434
1435 /**
1436  * Creates a path ack message in buf and frees all unused resources.
1437  *
1438  * @param cls closure (MeshTransmissionDescriptor)
1439  * @param size number of bytes available in buf
1440  * @param buf where the callee should write the message
1441  * @return number of bytes written to buf
1442  */
1443 static size_t
1444 send_core_path_ack (void *cls, size_t size, void *buf)
1445 {
1446   struct MeshTunnel *t = cls;
1447   struct GNUNET_MESH_PathACK *msg = buf;
1448
1449   GNUNET_assert (NULL != t);
1450   if (sizeof (struct GNUNET_MESH_PathACK) > size)
1451   {
1452     GNUNET_break (0);
1453     return 0;
1454   }
1455   t->prev_fc.last_ack_sent = t->nobuffer ? 0 : t->queue_max - 1;
1456   msg->header.size = htons (sizeof (struct GNUNET_MESH_PathACK));
1457   msg->header.type = htons (GNUNET_MESSAGE_TYPE_MESH_PATH_ACK);
1458   GNUNET_PEER_resolve (t->id.oid, &msg->oid);
1459   msg->tid = htonl (t->id.tid);
1460   msg->peer_id = my_full_id;
1461   msg->ack = htonl (t->prev_fc.last_ack_sent);
1462
1463   /* TODO add signature */
1464
1465   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "PATH ACK sent!\n");
1466   return sizeof (struct GNUNET_MESH_PathACK);
1467 }
1468
1469
1470 /**
1471  * Iterator over all the peers to remove the oldest not-used entry.
1472  *
1473  * @param cls Closure (unsued).
1474  * @param key ID of the peer.
1475  * @param value Peer_Info of the peer.
1476  *
1477  * FIXME implement
1478  */
1479 static int
1480 peer_info_timeout (void *cls,
1481                    const struct GNUNET_HashCode *key,
1482                    void *value)
1483 {
1484   return GNUNET_YES;
1485 }
1486
1487 /**
1488  * Retrieve the MeshPeerInfo stucture associated with the peer, create one
1489  * and insert it in the appropriate structures if the peer is not known yet.
1490  *
1491  * @param peer Full identity of the peer.
1492  *
1493  * @return Existing or newly created peer info.
1494  */
1495 static struct MeshPeerInfo *
1496 peer_get (const struct GNUNET_PeerIdentity *peer)
1497 {
1498   struct MeshPeerInfo *peer_info;
1499
1500   peer_info = GNUNET_CONTAINER_multihashmap_get (peers, &peer->hashPubKey);
1501   if (NULL == peer_info)
1502   {
1503     peer_info =
1504         (struct MeshPeerInfo *) GNUNET_malloc (sizeof (struct MeshPeerInfo));
1505     if (GNUNET_CONTAINER_multihashmap_size (peers) > max_peers)
1506     {
1507       GNUNET_CONTAINER_multihashmap_iterate (peers,
1508                                              &peer_info_timeout,
1509                                              NULL);
1510     }
1511     GNUNET_CONTAINER_multihashmap_put (peers, &peer->hashPubKey, peer_info,
1512                                        GNUNET_CONTAINER_MULTIHASHMAPOPTION_UNIQUE_FAST);
1513     peer_info->id = GNUNET_PEER_intern (peer);
1514   }
1515   peer_info->last_contact = GNUNET_TIME_absolute_get();
1516
1517   return peer_info;
1518 }
1519
1520
1521 /**
1522  * Retrieve the MeshPeerInfo stucture associated with the peer, create one
1523  * and insert it in the appropriate structures if the peer is not known yet.
1524  *
1525  * @param peer Short identity of the peer.
1526  *
1527  * @return Existing or newly created peer info.
1528  */
1529 static struct MeshPeerInfo *
1530 peer_get_short (const GNUNET_PEER_Id peer)
1531 {
1532   struct GNUNET_PeerIdentity id;
1533
1534   GNUNET_PEER_resolve (peer, &id);
1535   return peer_get (&id);
1536 }
1537
1538
1539 /**
1540  * Select which PID to POLL for, to compensate for lost messages.
1541  *
1542  * @param pi Peer we want to poll.
1543  * @param t Tunnel about which we want to poll.
1544  * 
1545  * @return PID to use, either last sent or first_in_queue - 1
1546  */
1547 static uint32_t
1548 peer_get_first_payload_pid (struct MeshPeerInfo *pi, struct MeshTunnel *t)
1549 {
1550   struct MeshPeerQueue *q;
1551   uint16_t type;
1552
1553   type = pi->id == t->next_hop ? GNUNET_MESSAGE_TYPE_MESH_UNICAST :
1554                                  GNUNET_MESSAGE_TYPE_MESH_TO_ORIGIN;
1555
1556   for (q = pi->queue_head; NULL != q; q = q->next)
1557   {
1558     if (q->type == type && q->tunnel == t)
1559     {
1560       struct GNUNET_MESH_Data *msg = q->cls;
1561
1562       /* Pretend that the last one sent was the previous to this */
1563       return ntohl (msg->pid) - 1;
1564     }
1565   }
1566
1567   /* No data in queue, use last sent */
1568   {
1569     struct MeshFlowControl *fc;
1570
1571     fc = pi->id == t->next_hop ? &t->next_fc : &t->prev_fc;
1572     return fc->last_pid_sent;
1573   }
1574 }
1575
1576
1577 /**
1578  * Choose the best path towards a peer considering the tunnel properties.
1579  * 
1580  * @param peer The destination peer.
1581  * @param t The tunnel the path is for.
1582  *
1583  * @return Best current known path towards the peer, if any.
1584  */
1585 static struct MeshPeerPath *
1586 peer_get_best_path (const struct MeshPeerInfo *peer, const struct MeshTunnel *t)
1587 {
1588   struct MeshPeerPath *best_p;
1589   struct MeshPeerPath *p;
1590   unsigned int best_cost;
1591   unsigned int cost;
1592
1593   best_p = p = peer->path_head;
1594   best_cost = cost = p->length;
1595   while (NULL != p)
1596   {
1597     if ((cost = p->length) < best_cost)
1598     {
1599       best_cost = cost;
1600       best_p = p;
1601     }
1602         p = p->next;
1603   }
1604   return best_p;
1605 }
1606
1607
1608 /**
1609  * Try to establish a new connection to this peer in the given tunnel.
1610  * If the peer doesn't have any path to it yet, try to get one.
1611  * If the peer already has some path, send a CREATE PATH towards it.
1612  *
1613  * @param peer PeerInfo of the peer.
1614  * @param t Tunnel for which to create the path, if possible.
1615  */
1616 static void
1617 peer_connect (struct MeshPeerInfo *peer, struct MeshTunnel *t)
1618 {
1619   struct MeshPeerPath *p;
1620
1621   if (NULL != peer->path_head)
1622   {
1623     p = peer_get_best_path (peer, t);
1624     tunnel_use_path (t, p);
1625     send_path_create (t);
1626   }
1627   else if (NULL == peer->dhtget)
1628   {
1629     struct GNUNET_PeerIdentity id;
1630
1631     GNUNET_PEER_resolve (peer->id, &id);
1632     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1633                 "  Starting DHT GET for peer %s\n", GNUNET_i2s (&id));
1634     peer->dhtget = GNUNET_DHT_get_start (dht_handle,    /* handle */
1635                                          GNUNET_BLOCK_TYPE_MESH_PEER, /* type */
1636                                          &id.hashPubKey,     /* key to search */
1637                                          dht_replication_level, /* replication level */
1638                                          GNUNET_DHT_RO_RECORD_ROUTE |
1639                                          GNUNET_DHT_RO_DEMULTIPLEX_EVERYWHERE,
1640                                          NULL,       /* xquery */
1641                                          0,     /* xquery bits */
1642                                          &dht_get_id_handler, peer);
1643     tunnel_change_state (t, MESH_TUNNEL_SEARCHING);
1644   }
1645   else
1646   {
1647     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1648                 "There is no path but the DHT GET is already started.\n");
1649   }
1650 }
1651
1652
1653 /**
1654  * @brief Re-initiate traffic to this peer if necessary.
1655  *
1656  * Check if there is traffic queued towards this peer
1657  * and the core transmit handle is NULL (traffic was stalled).
1658  * If so, call core tmt rdy.
1659  *
1660  * @param peer_id Short ID of peer to which initiate traffic.
1661  */
1662 static void
1663 peer_unlock_queue (GNUNET_PEER_Id peer_id)
1664 {
1665   struct MeshPeerInfo *peer;
1666   struct MeshPeerQueue *q;
1667   size_t size;
1668
1669   peer = peer_get_short (peer_id);
1670   if (NULL != peer->core_transmit)
1671     return;
1672
1673   q = queue_get_next (peer);
1674   if (NULL == q)
1675     return;
1676
1677   size = q->size;
1678   peer->core_transmit =
1679       GNUNET_CORE_notify_transmit_ready (core_handle,
1680                                          GNUNET_NO,
1681                                          0,
1682                                          GNUNET_TIME_UNIT_FOREVER_REL,
1683                                          GNUNET_PEER_resolve2 (peer->id),
1684                                          size,
1685                                          &queue_send,
1686                                          peer);
1687 }
1688
1689
1690 /**
1691  * Cancel all transmissions towards a neighbor that belong to a certain tunnel.
1692  *
1693  * @param t Tunnel which to cancel.
1694  * @param neighbor Short ID of the neighbor to whom cancel the transmissions.
1695  */
1696 static void
1697 peer_cancel_queues (GNUNET_PEER_Id neighbor, struct MeshTunnel *t)
1698 {
1699   struct MeshPeerInfo *peer_info;
1700   struct MeshPeerQueue *pq;
1701   struct MeshPeerQueue *next;
1702
1703   if (0 == neighbor)
1704     return; /* Was local peer, 0'ed in tunnel_destroy_iterator */
1705   peer_info = peer_get_short (neighbor);
1706   for (pq = peer_info->queue_head; NULL != pq; pq = next)
1707   {
1708     next = pq->next;
1709     if (pq->tunnel == t)
1710     {
1711       if (GNUNET_MESSAGE_TYPE_MESH_UNICAST == pq->type ||
1712           GNUNET_MESSAGE_TYPE_MESH_TO_ORIGIN == pq->type)
1713       {
1714         GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1715                     "peer_cancel_queues %s\n",
1716                     GNUNET_MESH_DEBUG_M2S (pq->type));
1717       }
1718       queue_destroy (pq, GNUNET_YES);
1719     }
1720   }
1721   if (NULL == peer_info->queue_head && NULL != peer_info->core_transmit)
1722   {
1723     GNUNET_CORE_notify_transmit_ready_cancel(peer_info->core_transmit);
1724     peer_info->core_transmit = NULL;
1725   }
1726 }
1727
1728
1729 /**
1730  * Destroy the peer_info and free any allocated resources linked to it
1731  *
1732  * @param pi The peer_info to destroy.
1733  *
1734  * @return GNUNET_OK on success
1735  */
1736 static int
1737 peer_info_destroy (struct MeshPeerInfo *pi)
1738 {
1739   struct GNUNET_PeerIdentity id;
1740   struct MeshPeerPath *p;
1741   struct MeshPeerPath *nextp;
1742   unsigned int i;
1743
1744   GNUNET_PEER_resolve (pi->id, &id);
1745   GNUNET_PEER_change_rc (pi->id, -1);
1746
1747   if (GNUNET_YES !=
1748       GNUNET_CONTAINER_multihashmap_remove (peers, &id.hashPubKey, pi))
1749   {
1750     GNUNET_break (0);
1751     GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
1752                 "removing peer %s, not in hashmap\n", GNUNET_i2s (&id));
1753   }
1754   if (NULL != pi->dhtget)
1755   {
1756     GNUNET_DHT_get_stop (pi->dhtget);
1757   }
1758   p = pi->path_head;
1759   while (NULL != p)
1760   {
1761     nextp = p->next;
1762     GNUNET_CONTAINER_DLL_remove (pi->path_head, pi->path_tail, p);
1763     path_destroy (p);
1764     p = nextp;
1765   }
1766   for (i = 0; i < pi->ntunnels; i++)
1767     tunnel_destroy_empty (pi->tunnels[i]);
1768   GNUNET_array_grow (pi->tunnels, pi->ntunnels, 0);
1769   GNUNET_free (pi);
1770   return GNUNET_OK;
1771 }
1772
1773
1774 /**
1775  * Remove all paths that rely on a direct connection between p1 and p2
1776  * from the peer itself and notify all tunnels about it.
1777  *
1778  * @param peer PeerInfo of affected peer.
1779  * @param p1 GNUNET_PEER_Id of one peer.
1780  * @param p2 GNUNET_PEER_Id of another peer that was connected to the first and
1781  *           no longer is.
1782  *
1783  * TODO: optimize (see below)
1784  */
1785 static void
1786 peer_info_remove_path (struct MeshPeerInfo *peer, GNUNET_PEER_Id p1,
1787                        GNUNET_PEER_Id p2)
1788 {
1789   struct MeshPeerPath *p;
1790   struct MeshPeerPath *next;
1791   struct MeshPeerInfo *peer_d;
1792   GNUNET_PEER_Id d;
1793   unsigned int destroyed;
1794   unsigned int i;
1795
1796   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "peer_info_remove_path\n");
1797   destroyed = 0;
1798   for (p = peer->path_head; NULL != p; p = next)
1799   {
1800     next = p->next;
1801     for (i = 0; i < (p->length - 1); i++)
1802     {
1803       if ((p->peers[i] == p1 && p->peers[i + 1] == p2) ||
1804           (p->peers[i] == p2 && p->peers[i + 1] == p1))
1805       {
1806         GNUNET_CONTAINER_DLL_remove (peer->path_head, peer->path_tail, p);
1807         path_destroy (p);
1808         destroyed++;
1809         break;
1810       }
1811     }
1812   }
1813   if (0 == destroyed)
1814     return;
1815
1816   for (i = 0; i < peer->ntunnels; i++)
1817   {
1818     d = tunnel_notify_connection_broken (peer->tunnels[i], p1, p2);
1819     if (0 == d)
1820       continue;
1821
1822     peer_d = peer_get_short (d);
1823     next = peer_get_best_path (peer_d, peer->tunnels[i]);
1824     tunnel_use_path (peer->tunnels[i], next);
1825     peer_connect (peer_d, peer->tunnels[i]);
1826   }
1827   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "peer_info_remove_path END\n");
1828 }
1829
1830
1831 /**
1832  * Add the path to the peer and update the path used to reach it in case this
1833  * is the shortest.
1834  *
1835  * @param peer_info Destination peer to add the path to.
1836  * @param path New path to add. Last peer must be the peer in arg 1.
1837  *             Path will be either used of freed if already known.
1838  * @param trusted Do we trust that this path is real?
1839  */
1840 void
1841 peer_info_add_path (struct MeshPeerInfo *peer_info, struct MeshPeerPath *path,
1842                     int trusted)
1843 {
1844   struct MeshPeerPath *aux;
1845   unsigned int l;
1846   unsigned int l2;
1847
1848   if ((NULL == peer_info) || (NULL == path))
1849   {
1850     GNUNET_break (0);
1851     path_destroy (path);
1852     return;
1853   }
1854   if (path->peers[path->length - 1] != peer_info->id)
1855   {
1856     GNUNET_break (0);
1857     path_destroy (path);
1858     return;
1859   }
1860   if (2 >= path->length && GNUNET_NO == trusted)
1861   {
1862     /* Only allow CORE to tell us about direct paths */
1863     path_destroy (path);
1864     return;
1865   }
1866   for (l = 1; l < path->length; l++)
1867   {
1868     if (path->peers[l] == myid)
1869     {
1870       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "shortening path by %u\n", l);
1871       for (l2 = 0; l2 < path->length - l; l2++)
1872       {
1873         path->peers[l2] = path->peers[l + l2];
1874       }
1875       path->length -= l;
1876       l = 1;
1877       path->peers =
1878           GNUNET_realloc (path->peers, path->length * sizeof (GNUNET_PEER_Id));
1879     }
1880   }
1881 #if MESH_DEBUG
1882   {
1883     struct GNUNET_PeerIdentity id;
1884
1885     GNUNET_PEER_resolve (peer_info->id, &id);
1886     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "adding path [%u] to peer %s\n",
1887                 path->length, GNUNET_i2s (&id));
1888   }
1889 #endif
1890   l = path_get_length (path);
1891   if (0 == l)
1892   {
1893     path_destroy (path);
1894     return;
1895   }
1896
1897   GNUNET_assert (peer_info->id == path->peers[path->length - 1]);
1898   for (aux = peer_info->path_head; aux != NULL; aux = aux->next)
1899   {
1900     l2 = path_get_length (aux);
1901     if (l2 > l)
1902     {
1903       GNUNET_CONTAINER_DLL_insert_before (peer_info->path_head,
1904                                           peer_info->path_tail, aux, path);
1905       return;
1906     }
1907     else
1908     {
1909       if (l2 == l && memcmp (path->peers, aux->peers, l) == 0)
1910       {
1911         path_destroy (path);
1912         return;
1913       }
1914     }
1915   }
1916   GNUNET_CONTAINER_DLL_insert_tail (peer_info->path_head, peer_info->path_tail,
1917                                     path);
1918   return;
1919 }
1920
1921
1922 /**
1923  * Add the path to the origin peer and update the path used to reach it in case
1924  * this is the shortest.
1925  * The path is given in peer_info -> destination, therefore we turn the path
1926  * upside down first.
1927  *
1928  * @param peer_info Peer to add the path to, being the origin of the path.
1929  * @param path New path to add after being inversed.
1930  *             Path will be either used or freed.
1931  * @param trusted Do we trust that this path is real?
1932  */
1933 static void
1934 peer_info_add_path_to_origin (struct MeshPeerInfo *peer_info,
1935                               struct MeshPeerPath *path, int trusted)
1936 {
1937   path_invert (path);
1938   peer_info_add_path (peer_info, path, trusted);
1939 }
1940
1941
1942 /**
1943  * Add a tunnel to the list of tunnels a peer participates in.
1944  * Update the tunnel's destination.
1945  * 
1946  * @param p Peer to add to.
1947  * @param t Tunnel to add.
1948  */
1949 static void
1950 peer_info_add_tunnel (struct MeshPeerInfo *p, struct MeshTunnel *t)
1951 {
1952   if (0 != t->dest)
1953   {
1954     GNUNET_break (t->dest == p->id);
1955     return;
1956   }
1957   t->dest = p->id;
1958   GNUNET_PEER_change_rc (t->dest, 1);
1959   GNUNET_array_append (p->tunnels, p->ntunnels, t);
1960 }
1961
1962
1963 /**
1964  * Remove a tunnel from the list of tunnels a peer participates in.
1965  * Free the tunnel's destination.
1966  * 
1967  * @param p Peer to clean.
1968  * @param t Tunnel to remove.
1969  */
1970 static void
1971 peer_info_remove_tunnel (struct MeshPeerInfo *p, struct MeshTunnel *t)
1972 {
1973   unsigned int i;
1974
1975   if (t->dest == p->id)
1976   {
1977       GNUNET_PEER_change_rc (t->dest, -1);
1978       t->dest = 0;
1979   }
1980   for (i = 0; i < p->ntunnels; i++)
1981   {
1982     if (p->tunnels[i] == t)
1983     {
1984       p->tunnels[i] = p->tunnels[p->ntunnels - 1];
1985       GNUNET_array_grow (p->tunnels, p->ntunnels, p->ntunnels - 1);
1986       return;
1987     }
1988   }
1989 }
1990
1991
1992 /**
1993  * Function called if the connection to the peer has been stalled for a while,
1994  * possibly due to a missed ACK. Poll the peer about its ACK status.
1995  *
1996  * @param cls Closure (poll ctx).
1997  * @param tc TaskContext.
1998  */
1999 static void
2000 tunnel_poll (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
2001 {
2002   struct MeshFlowControl *fc = cls;
2003   struct GNUNET_MESH_Poll msg;
2004   struct MeshTunnel *t = fc->t;
2005   GNUNET_PEER_Id peer;
2006
2007   fc->poll_task = GNUNET_SCHEDULER_NO_TASK;
2008   if (0 != (tc->reason & GNUNET_SCHEDULER_REASON_SHUTDOWN))
2009   {
2010     return;
2011   }
2012
2013   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, " *** Polling!\n");
2014
2015   GNUNET_PEER_resolve (t->id.oid, &msg.oid);
2016
2017   if (fc == &t->prev_fc)
2018   {
2019     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, " *** prev peer!\n");
2020     peer = t->prev_hop;
2021   }
2022   else if (fc == &t->next_fc)
2023   {
2024     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, " *** next peer!\n");
2025     peer = t->next_hop;
2026   }
2027   else
2028   {
2029     GNUNET_break (0);
2030     return;
2031   }
2032   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, " *** peer: %s!\n", 
2033                 GNUNET_i2s(GNUNET_PEER_resolve2 (peer)));
2034   if (0 == peer)
2035   {
2036     if (GNUNET_YES == t->destroy)
2037       tunnel_destroy (t);
2038     else
2039       GNUNET_break (0);
2040
2041     return;
2042   }
2043   msg.header.type = htons (GNUNET_MESSAGE_TYPE_MESH_POLL);
2044   msg.header.size = htons (sizeof (msg));
2045   msg.tid = htonl (t->id.tid);
2046   msg.pid = htonl (peer_get_first_payload_pid (peer_get_short (peer), t));
2047   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, " *** pid (%u)!\n", ntohl (msg.pid));
2048   send_prebuilt_message (&msg.header, peer, t);
2049   fc->poll_time = GNUNET_TIME_STD_BACKOFF (fc->poll_time);
2050   fc->poll_task = GNUNET_SCHEDULER_add_delayed (fc->poll_time,
2051                                                 &tunnel_poll, fc);
2052 }
2053
2054
2055 /**
2056  * Build a PeerPath from the paths returned from the DHT, reversing the paths
2057  * to obtain a local peer -> destination path and interning the peer ids.
2058  *
2059  * @return Newly allocated and created path
2060  */
2061 static struct MeshPeerPath *
2062 path_build_from_dht (const struct GNUNET_PeerIdentity *get_path,
2063                      unsigned int get_path_length,
2064                      const struct GNUNET_PeerIdentity *put_path,
2065                      unsigned int put_path_length)
2066 {
2067   struct MeshPeerPath *p;
2068   GNUNET_PEER_Id id;
2069   int i;
2070
2071   p = path_new (1);
2072   p->peers[0] = myid;
2073   GNUNET_PEER_change_rc (myid, 1);
2074   i = get_path_length;
2075   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "   GET has %d hops.\n", i);
2076   for (i--; i >= 0; i--)
2077   {
2078     id = GNUNET_PEER_intern (&get_path[i]);
2079     if (p->length > 0 && id == p->peers[p->length - 1])
2080     {
2081       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "   Optimizing 1 hop out.\n");
2082       GNUNET_PEER_change_rc (id, -1);
2083     }
2084     else
2085     {
2086       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "   Adding from GET: %s.\n",
2087                   GNUNET_i2s (&get_path[i]));
2088       p->length++;
2089       p->peers = GNUNET_realloc (p->peers, sizeof (GNUNET_PEER_Id) * p->length);
2090       p->peers[p->length - 1] = id;
2091     }
2092   }
2093   i = put_path_length;
2094   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "   PUT has %d hops.\n", i);
2095   for (i--; i >= 0; i--)
2096   {
2097     id = GNUNET_PEER_intern (&put_path[i]);
2098     if (id == myid)
2099     {
2100       /* PUT path went through us, so discard the path up until now and start
2101        * from here to get a much shorter (and loop-free) path.
2102        */
2103       path_destroy (p);
2104       p = path_new (0);
2105     }
2106     if (p->length > 0 && id == p->peers[p->length - 1])
2107     {
2108       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "   Optimizing 1 hop out.\n");
2109       GNUNET_PEER_change_rc (id, -1);
2110     }
2111     else
2112     {
2113       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "   Adding from PUT: %s.\n",
2114                   GNUNET_i2s (&put_path[i]));
2115       p->length++;
2116       p->peers = GNUNET_realloc (p->peers, sizeof (GNUNET_PEER_Id) * p->length);
2117       p->peers[p->length - 1] = id;
2118     }
2119   }
2120 #if MESH_DEBUG
2121   if (get_path_length > 0)
2122     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "   (first of GET: %s)\n",
2123                 GNUNET_i2s (&get_path[0]));
2124   if (put_path_length > 0)
2125     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "   (first of PUT: %s)\n",
2126                 GNUNET_i2s (&put_path[0]));
2127   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "   In total: %d hops\n",
2128               p->length);
2129   for (i = 0; i < p->length; i++)
2130   {
2131     struct GNUNET_PeerIdentity peer_id;
2132
2133     GNUNET_PEER_resolve (p->peers[i], &peer_id);
2134     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "       %u: %s\n", p->peers[i],
2135                 GNUNET_i2s (&peer_id));
2136   }
2137 #endif
2138   return p;
2139 }
2140
2141
2142 /**
2143  * Adds a path to the peer_infos of all the peers in the path
2144  *
2145  * @param p Path to process.
2146  * @param confirmed Whether we know if the path works or not.
2147  */
2148 static void
2149 path_add_to_peers (struct MeshPeerPath *p, int confirmed)
2150 {
2151   unsigned int i;
2152
2153   /* TODO: invert and add */
2154   for (i = 0; i < p->length && p->peers[i] != myid; i++) /* skip'em */ ;
2155   for (i++; i < p->length; i++)
2156   {
2157     struct MeshPeerInfo *aux;
2158     struct MeshPeerPath *copy;
2159
2160     aux = peer_get_short (p->peers[i]);
2161     copy = path_duplicate (p);
2162     copy->length = i + 1;
2163     peer_info_add_path (aux, copy, p->length < 3 ? GNUNET_NO : confirmed);
2164   }
2165 }
2166
2167
2168 /**
2169  * Search for a tunnel among the incoming tunnels
2170  *
2171  * @param tid the local id of the tunnel
2172  *
2173  * @return tunnel handler, NULL if doesn't exist
2174  */
2175 static struct MeshTunnel *
2176 tunnel_get_incoming (MESH_TunnelNumber tid)
2177 {
2178   GNUNET_assert (tid >= GNUNET_MESH_LOCAL_TUNNEL_ID_SERV);
2179   return GNUNET_CONTAINER_multihashmap32_get (incoming_tunnels, tid);
2180 }
2181
2182
2183 /**
2184  * Search for a tunnel among the tunnels for a client
2185  *
2186  * @param c the client whose tunnels to search in
2187  * @param tid the local id of the tunnel
2188  *
2189  * @return tunnel handler, NULL if doesn't exist
2190  */
2191 static struct MeshTunnel *
2192 tunnel_get_by_local_id (struct MeshClient *c, MESH_TunnelNumber tid)
2193 {
2194   if (0 == (tid & GNUNET_MESH_LOCAL_TUNNEL_ID_CLI))
2195   {
2196     GNUNET_break_op (0);
2197     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "TID %X not a local tid\n", tid);
2198     return NULL;
2199   }
2200   if (tid >= GNUNET_MESH_LOCAL_TUNNEL_ID_SERV)
2201   {
2202     return tunnel_get_incoming (tid);
2203   }
2204   else
2205   {
2206     return GNUNET_CONTAINER_multihashmap32_get (c->own_tunnels, tid);
2207   }
2208 }
2209
2210
2211 /**
2212  * Search for a tunnel by global ID using PEER_ID
2213  *
2214  * @param pi owner of the tunnel
2215  * @param tid global tunnel number
2216  *
2217  * @return tunnel handler, NULL if doesn't exist
2218  */
2219 static struct MeshTunnel *
2220 tunnel_get_by_pi (GNUNET_PEER_Id pi, MESH_TunnelNumber tid)
2221 {
2222   struct MESH_TunnelID id;
2223   struct GNUNET_HashCode hash;
2224
2225   id.oid = pi;
2226   id.tid = tid;
2227
2228   GNUNET_CRYPTO_hash (&id, sizeof (struct MESH_TunnelID), &hash);
2229   return GNUNET_CONTAINER_multihashmap_get (tunnels, &hash);
2230 }
2231
2232
2233 /**
2234  * Search for a tunnel by global ID using full PeerIdentities
2235  *
2236  * @param oid owner of the tunnel
2237  * @param tid global tunnel number
2238  *
2239  * @return tunnel handler, NULL if doesn't exist
2240  */
2241 static struct MeshTunnel *
2242 tunnel_get (const struct GNUNET_PeerIdentity *oid, MESH_TunnelNumber tid)
2243 {
2244   return tunnel_get_by_pi (GNUNET_PEER_search (oid), tid);
2245 }
2246
2247
2248 /**
2249  * Change the tunnel state.
2250  *
2251  * @param t Tunnel whose ttate to change.
2252  * @param state New state.
2253  */
2254 static void
2255 tunnel_change_state (struct MeshTunnel *t, enum MeshTunnelState state)
2256 {
2257   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
2258               "Tunnel %s[%X] state was %s\n",
2259               GNUNET_i2s (GNUNET_PEER_resolve2 (t->id.oid)), t->id.tid,
2260               GNUNET_MESH_DEBUG_S2S (t->state));
2261   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
2262               "Tunnel %s[%X] state is now %s\n",
2263               GNUNET_i2s (GNUNET_PEER_resolve2 (t->id.oid)), t->id.tid,
2264               GNUNET_MESH_DEBUG_S2S (state));
2265   t->state = state;
2266 }
2267
2268
2269
2270 /**
2271  * Add a client to a tunnel, initializing all needed data structures.
2272  * 
2273  * @param t Tunnel to which add the client.
2274  * @param c Client which to add to the tunnel.
2275  */
2276 static void
2277 tunnel_add_client (struct MeshTunnel *t, struct MeshClient *c)
2278 {
2279   if (NULL != t->client)
2280   {
2281     GNUNET_break(0);
2282     return;
2283   }
2284   if (GNUNET_OK !=
2285       GNUNET_CONTAINER_multihashmap32_put (c->incoming_tunnels,
2286                                            t->local_tid_dest, t,
2287                                            GNUNET_CONTAINER_MULTIHASHMAPOPTION_UNIQUE_FAST))
2288   {
2289     GNUNET_break (0);
2290     return;
2291   }
2292   if (GNUNET_OK !=
2293       GNUNET_CONTAINER_multihashmap32_put (incoming_tunnels,
2294                                            t->local_tid_dest, t,
2295                                            GNUNET_CONTAINER_MULTIHASHMAPOPTION_UNIQUE_FAST))
2296   {
2297     GNUNET_break (0);
2298     return;
2299   }
2300   t->client = c;
2301 }
2302
2303
2304 static void
2305 tunnel_use_path (struct MeshTunnel *t, struct MeshPeerPath *p)
2306 {
2307   unsigned int own_pos;
2308
2309   for (own_pos = 0; own_pos < p->length; own_pos++)
2310   {
2311     if (p->peers[own_pos] == myid)
2312       break;
2313   }
2314   if (own_pos > p->length - 1)
2315   {
2316     GNUNET_break (0);
2317     return;
2318   }
2319
2320   if (own_pos < p->length - 1)
2321     t->next_hop = p->peers[own_pos + 1];
2322   else
2323     t->next_hop = p->peers[own_pos];
2324   GNUNET_PEER_change_rc (t->next_hop, 1);
2325   if (0 < own_pos)
2326     t->prev_hop = p->peers[own_pos - 1];
2327   else
2328     t->prev_hop = p->peers[0];
2329   GNUNET_PEER_change_rc (t->prev_hop, 1);
2330
2331   if (NULL != t->path)
2332     path_destroy (t->path);
2333   t->path = path_duplicate (p);
2334   if (0 == own_pos)
2335   {
2336     if (GNUNET_SCHEDULER_NO_TASK != t->fwd_maintenance_task)
2337       GNUNET_SCHEDULER_cancel (t->fwd_maintenance_task);
2338     t->fwd_maintenance_task =
2339         GNUNET_SCHEDULER_add_delayed (refresh_path_time,
2340                                       &tunnel_fwd_keepalive, t);
2341   }
2342 }
2343
2344
2345 /**
2346  * Notifies a tunnel that a connection has broken that affects at least
2347  * some of its peers. Sends a notification towards the root of the tree.
2348  * In case the peer is the owner of the tree, notifies the client that owns
2349  * the tunnel and tries to reconnect.
2350  *
2351  * @param t Tunnel affected.
2352  * @param p1 Peer that got disconnected from p2.
2353  * @param p2 Peer that got disconnected from p1.
2354  *
2355  * @return Short ID of the peer disconnected (either p1 or p2).
2356  *         0 if the tunnel remained unaffected.
2357  */
2358 static GNUNET_PEER_Id
2359 tunnel_notify_connection_broken (struct MeshTunnel *t, GNUNET_PEER_Id p1,
2360                                  GNUNET_PEER_Id p2)
2361 {
2362 //   if (myid != p1 && myid != p2) FIXME
2363 //   {
2364 //     return;
2365 //   }
2366 // 
2367 //   if (tree_get_predecessor (t->tree) != 0)
2368 //   {
2369 //     /* We are the peer still connected, notify owner of the disconnection. */
2370 //     struct GNUNET_MESH_PathBroken msg;
2371 //     struct GNUNET_PeerIdentity neighbor;
2372 // 
2373 //     msg.header.size = htons (sizeof (msg));
2374 //     msg.header.type = htons (GNUNET_MESSAGE_TYPE_MESH_PATH_BROKEN);
2375 //     GNUNET_PEER_resolve (t->id.oid, &msg.oid);
2376 //     msg.tid = htonl (t->id.tid);
2377 //     msg.peer1 = my_full_id;
2378 //     GNUNET_PEER_resolve (pid, &msg.peer2);
2379 //     GNUNET_PEER_resolve (tree_get_predecessor (t->tree), &neighbor);
2380 //     send_prebuilt_message (&msg.header, &neighbor, t);
2381 //   }
2382   return 0;
2383 }
2384
2385
2386 /**
2387  * Send an end-to-end FWD ACK message for the most recent in-sequence payload.
2388  * 
2389  * @param t Tunnel this is about.
2390  * @param fwd Is for FWD traffic? (ACK dest->owner)
2391  */
2392 static void
2393 tunnel_send_data_ack (struct MeshTunnel *t, int fwd)
2394 {
2395   struct GNUNET_MESH_DataACK msg;
2396   struct MeshTunnelReliability *rel;
2397   struct MeshReliableMessage *copy;
2398   GNUNET_PEER_Id hop;
2399   uint64_t mask;
2400   unsigned int delta;
2401
2402   rel = fwd ? t->bck_rel  : t->fwd_rel;
2403   hop = fwd ? t->prev_hop : t->next_hop;
2404   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
2405               "send_data_ack for %u\n",
2406               rel->mid_recv - 1);
2407
2408   if (GNUNET_NO == t->reliable)
2409   {
2410     GNUNET_break_op (0);
2411     return;
2412   }
2413   msg.header.type = htons (fwd ? GNUNET_MESSAGE_TYPE_MESH_UNICAST_ACK :
2414                                  GNUNET_MESSAGE_TYPE_MESH_TO_ORIG_ACK);
2415   msg.header.size = htons (sizeof (msg));
2416   msg.tid = htonl (t->id.tid);
2417   GNUNET_PEER_resolve (t->id.oid, &msg.oid);
2418   msg.mid = htonl (rel->mid_recv - 1);
2419   msg.futures = 0;
2420   for (copy = rel->head_recv; NULL != copy; copy = copy->next)
2421   {
2422     delta = copy->mid - rel->mid_recv;
2423     if (63 < delta)
2424       break;
2425     mask = 0x1LL << delta;
2426     msg.futures |= mask;
2427     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
2428                 " setting bit for %u (delta %u) (%llX) -> %llX\n",
2429                 copy->mid, delta, mask, msg.futures);
2430   }
2431   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, " final futures %llX\n", msg.futures);
2432
2433   send_prebuilt_message (&msg.header, hop, t);
2434   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "send_data_ack END\n");
2435 }
2436
2437
2438 /**
2439  * Send an ACK informing the predecessor about the available buffer space.
2440  * In case there is no predecessor, inform the owning client.
2441  * If buffering is off, send only on behalf of children or self if endpoint.
2442  * If buffering is on, send when sent to children and buffer space is free.
2443  * Note that although the name is fwd_ack, the FWD mean forward *traffic*,
2444  * the ACK itself goes "back" (towards root).
2445  * 
2446  * @param t Tunnel on which to send the ACK.
2447  * @param type Type of message that triggered the ACK transmission.
2448  * @param fwd Is this FWD ACK? (Going dest->owner)
2449  */
2450 static void
2451 tunnel_send_ack (struct MeshTunnel *t, uint16_t type, int fwd)
2452 {
2453   struct MeshTunnelReliability *rel;
2454   struct MeshFlowControl *next_fc;
2455   struct MeshFlowControl *prev_fc;
2456   struct MeshClient *c;
2457   struct MeshClient *o;
2458   GNUNET_PEER_Id hop;
2459   uint32_t delta_mid;
2460   uint32_t ack;
2461   int delta;
2462
2463   rel     = fwd ? t->fwd_rel  : t->bck_rel;
2464   c       = fwd ? t->client   : t->owner;
2465   o       = fwd ? t->owner    : t->client;
2466   next_fc = fwd ? &t->next_fc : &t->prev_fc;
2467   prev_fc = fwd ? &t->prev_fc : &t->next_fc;
2468   hop     = fwd ? t->prev_hop : t->next_hop;
2469
2470   switch (type)
2471   {
2472     case GNUNET_MESSAGE_TYPE_MESH_UNICAST:
2473     case GNUNET_MESSAGE_TYPE_MESH_TO_ORIGIN:
2474       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
2475                   "ACK due to %s\n",
2476                   GNUNET_MESH_DEBUG_M2S (type));
2477       if (GNUNET_YES == t->nobuffer && (GNUNET_NO == t->reliable || NULL == c))
2478       {
2479         GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Not sending ACK, nobuffer\n");
2480         return;
2481       }
2482       if (GNUNET_YES == t->reliable && NULL != c)
2483         tunnel_send_data_ack (t, fwd);
2484       break;
2485     case GNUNET_MESSAGE_TYPE_MESH_UNICAST_ACK:
2486     case GNUNET_MESSAGE_TYPE_MESH_TO_ORIG_ACK:
2487     case GNUNET_MESSAGE_TYPE_MESH_ACK:
2488     case GNUNET_MESSAGE_TYPE_MESH_LOCAL_ACK:
2489       break;
2490     case GNUNET_MESSAGE_TYPE_MESH_POLL:
2491     case GNUNET_MESSAGE_TYPE_MESH_PATH_ACK:
2492       t->force_ack = GNUNET_YES;
2493       break;
2494     default:
2495       GNUNET_break (0);
2496   }
2497
2498   /* Check if we need to transmit the ACK */
2499   if (NULL == o &&
2500       prev_fc->last_ack_sent - prev_fc->last_pid_recv > 3 &&
2501       GNUNET_NO == t->force_ack)
2502   {
2503     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Not sending ACK, buffer free\n");
2504     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
2505                 "  last pid recv: %u, last ack sent: %u\n",
2506                 prev_fc->last_pid_recv, prev_fc->last_ack_sent);
2507     return;
2508   }
2509
2510   /* Ok, ACK might be necessary, what PID to ACK? */
2511   delta = t->queue_max - next_fc->queue_n;
2512   if (NULL != o && GNUNET_YES == t->reliable && NULL != rel->head_sent)
2513     delta_mid = rel->mid_sent - rel->head_sent->mid;
2514   else
2515     delta_mid = 0;
2516   if (0 > delta || (GNUNET_YES == t->reliable && 
2517                     NULL != o &&
2518                     (10 < rel->n_sent || 64 <= delta_mid)))
2519     delta = 0;
2520   if (NULL != o && delta > 1)
2521     delta = 1;
2522   ack = prev_fc->last_pid_recv + delta;
2523   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, " ACK %u\n", ack);
2524   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
2525               " last pid %u, last ack %u, qmax %u, q %u\n",
2526               prev_fc->last_pid_recv, prev_fc->last_ack_sent,
2527               t->queue_max, next_fc->queue_n);
2528   if (ack == prev_fc->last_ack_sent && GNUNET_NO == t->force_ack)
2529   {
2530     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Not sending FWD ACK, not needed\n");
2531     return;
2532   }
2533
2534   prev_fc->last_ack_sent = ack;
2535   if (NULL != o)
2536     send_local_ack (t, o, fwd);
2537   else if (0 != hop)
2538     send_ack (t, hop, ack);
2539   else
2540     GNUNET_break (GNUNET_YES == t->destroy);
2541   t->force_ack = GNUNET_NO;
2542 }
2543
2544
2545 /**
2546  * Modify the mesh message TID from global to local and send to client.
2547  * 
2548  * @param t Tunnel on which to send the message.
2549  * @param msg Message to modify and send.
2550  * @param c Client to send to.
2551  * @param tid Tunnel ID to use (c can be both owner and client).
2552  */
2553 static void
2554 tunnel_send_client_to_tid (struct MeshTunnel *t,
2555                            const struct GNUNET_MESH_Data *msg,
2556                            struct MeshClient *c, MESH_TunnelNumber tid)
2557 {
2558   struct GNUNET_MESH_LocalData *copy;
2559   uint16_t size = ntohs (msg->header.size) - sizeof (struct GNUNET_MESH_Data);
2560   char cbuf[size + sizeof (struct GNUNET_MESH_LocalData)];
2561
2562   if (size < sizeof (struct GNUNET_MessageHeader))
2563   {
2564     GNUNET_break_op (0);
2565     return;
2566   }
2567   if (NULL == c)
2568   {
2569     GNUNET_break (0);
2570     return;
2571   }
2572   copy = (struct GNUNET_MESH_LocalData *) cbuf;
2573   memcpy (&copy[1], &msg[1], size);
2574   copy->header.size = htons (sizeof (struct GNUNET_MESH_LocalData) + size);
2575   copy->header.type = htons (GNUNET_MESSAGE_TYPE_MESH_LOCAL_DATA);
2576   copy->tid = htonl (tid);
2577   GNUNET_SERVER_notification_context_unicast (nc, c->handle,
2578                                               &copy->header, GNUNET_NO);
2579 }
2580
2581 /**
2582  * Modify the unicast message TID from global to local and send to client.
2583  * 
2584  * @param t Tunnel on which to send the message.
2585  * @param msg Message to modify and send.
2586  * @param fwd Forward?
2587  */
2588 static void
2589 tunnel_send_client_data (struct MeshTunnel *t,
2590                          const struct GNUNET_MESH_Data *msg,
2591                          int fwd)
2592 {
2593   if (fwd)
2594     tunnel_send_client_to_tid (t, msg, t->client, t->local_tid_dest);
2595   else
2596     tunnel_send_client_to_tid (t, msg, t->owner, t->local_tid);
2597 }
2598
2599
2600 /**
2601  * Send up to 64 buffered messages to the client for in order delivery.
2602  * 
2603  * @param t Tunnel on which to empty the message buffer.
2604  * @param c Client to send to.
2605  * @param rel Reliability structure to corresponding peer.
2606  *            If rel == t->bck_rel, this is FWD data.
2607  */
2608 static void
2609 tunnel_send_client_buffered_data (struct MeshTunnel *t, struct MeshClient *c,
2610                                   struct MeshTunnelReliability *rel)
2611 {
2612   ;
2613   struct MeshReliableMessage *copy;
2614   struct MeshReliableMessage *next;
2615
2616   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "send_buffered_data\n");
2617   for (copy = rel->head_recv; NULL != copy; copy = next)
2618   {
2619     next = copy->next;
2620     if (copy->mid == rel->mid_recv)
2621     {
2622       struct GNUNET_MESH_Data *msg = (struct GNUNET_MESH_Data *) &copy[1];
2623
2624       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
2625                   " have %u! now expecting %u\n",
2626                   copy->mid, rel->mid_recv + 1);
2627       tunnel_send_client_data (t, msg, (rel == t->bck_rel));
2628       rel->mid_recv++;
2629       GNUNET_CONTAINER_DLL_remove (rel->head_recv, rel->tail_recv, copy);
2630       GNUNET_free (copy);
2631     }
2632     else
2633     {
2634       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
2635                   " don't have %u, next is %u\n",
2636                   rel->mid_recv,
2637                   copy->mid);
2638       return;
2639     }
2640   }
2641   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "send_buffered_data END\n");
2642 }
2643
2644
2645 /**
2646  * We have received a message out of order, buffer it until we receive
2647  * the missing one and we can feed the rest to the client.
2648  * 
2649  * @param t Tunnel to add to.
2650  * @param msg Message to buffer.
2651  * @param rel Reliability data to the corresponding direction.
2652  */
2653 static void
2654 tunnel_add_buffered_data (struct MeshTunnel *t,
2655                            const struct GNUNET_MESH_Data *msg,
2656                           struct MeshTunnelReliability *rel)
2657 {
2658   struct MeshReliableMessage *copy;
2659   struct MeshReliableMessage *prev;
2660   uint32_t mid;
2661   uint16_t size;
2662
2663   size = ntohs (msg->header.size);
2664   mid = ntohl (msg->mid);
2665   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "add_buffered_data %u\n", mid);
2666
2667   copy = GNUNET_malloc (sizeof (*copy) + size);
2668   copy->mid = mid;
2669   copy->rel = rel;
2670   memcpy (&copy[1], msg, size);
2671
2672   // FIXME do something better than O(n), although n < 64...
2673   // FIXME start from the end (most messages are the latest ones)
2674   for (prev = rel->head_recv; NULL != prev; prev = prev->next)
2675   {
2676     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, " prev %u\n", prev->mid);
2677     if (GMC_is_pid_bigger (prev->mid, mid))
2678     {
2679       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, " bingo!\n");
2680       GNUNET_CONTAINER_DLL_insert_before (rel->head_recv, rel->tail_recv,
2681                                           prev, copy);
2682       return;
2683     }
2684   }
2685   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, " insert at tail!\n");
2686   GNUNET_CONTAINER_DLL_insert_tail (rel->head_recv, rel->tail_recv, copy);
2687   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "add_buffered_data END\n");
2688 }
2689
2690
2691 /**
2692  * Destroy a reliable message after it has been acknowledged, either by
2693  * direct mid ACK or bitfield. Updates the appropriate data structures and
2694  * timers and frees all memory.
2695  * 
2696  * @param copy Message that is no longer needed: remote peer got it.
2697  */
2698 static void
2699 tunnel_free_reliable_message (struct MeshReliableMessage *copy)
2700 {
2701   struct MeshTunnelReliability *rel;
2702   struct GNUNET_TIME_Relative time;
2703
2704   rel = copy->rel;
2705   time = GNUNET_TIME_absolute_get_duration (copy->timestamp);
2706   rel->expected_delay.rel_value *= 7;
2707   rel->expected_delay.rel_value += time.rel_value;
2708   rel->expected_delay.rel_value /= 8;
2709   rel->n_sent--;
2710   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "!!! Freeing %u\n", copy->mid);
2711   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "    n_sent %u\n", rel->n_sent);
2712   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "!!!  took %s\n",
2713               GNUNET_STRINGS_relative_time_to_string (time, GNUNET_NO));
2714   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "!!!  new expected delay %s\n",
2715               GNUNET_STRINGS_relative_time_to_string (rel->expected_delay,
2716                                                       GNUNET_NO));
2717   rel->retry_timer = rel->expected_delay;
2718   GNUNET_CONTAINER_DLL_remove (rel->head_sent, rel->tail_sent, copy);
2719   GNUNET_free (copy);
2720 }
2721
2722
2723 /**
2724  * Destroy all reliable messages queued for a tunnel,
2725  * during a tunnel destruction.
2726  * Frees the reliability structure itself.
2727  *
2728  * @param rel Reliability data for a tunnel.
2729  */
2730 static void
2731 tunnel_free_reliable_all (struct MeshTunnelReliability *rel)
2732 {
2733   struct MeshReliableMessage *copy;
2734   struct MeshReliableMessage *next;
2735
2736   if (NULL == rel)
2737     return;
2738
2739   for (copy = rel->head_recv; NULL != copy; copy = next)
2740   {
2741     next = copy->next;
2742     GNUNET_CONTAINER_DLL_remove (rel->head_recv, rel->tail_recv, copy);
2743     GNUNET_free (copy);
2744   }
2745   for (copy = rel->head_sent; NULL != copy; copy = next)
2746   {
2747     next = copy->next;
2748     GNUNET_CONTAINER_DLL_remove (rel->head_sent, rel->tail_sent, copy);
2749     GNUNET_free (copy);
2750   }
2751   if (GNUNET_SCHEDULER_NO_TASK != rel->retry_task)
2752     GNUNET_SCHEDULER_cancel (rel->retry_task);
2753   GNUNET_free (rel);
2754 }
2755
2756
2757 /**
2758  * Mark future messages as ACK'd.
2759  *
2760  * @param t Tunnel whose sent buffer to clean.
2761  * @param msg DataACK message with a bitfield of future ACK'd messages.
2762  * @param rel Reliability data.
2763  */
2764 static void
2765 tunnel_free_sent_reliable (struct MeshTunnel *t,
2766                            const struct GNUNET_MESH_DataACK *msg,
2767                            struct MeshTunnelReliability *rel)
2768 {
2769   struct MeshReliableMessage *copy;
2770   struct MeshReliableMessage *next;
2771   uint64_t bitfield;
2772   uint64_t mask;
2773   uint32_t mid;
2774   uint32_t target;
2775   unsigned int i;
2776
2777   bitfield = msg->futures;
2778   mid = ntohl (msg->mid);
2779   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
2780               "free_sent_reliable %u %llX\n",
2781               mid, bitfield);
2782   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
2783               " rel %p, head %p\n",
2784               rel, rel->head_sent);
2785   for (i = 0, copy = rel->head_sent;
2786        i < 64 && NULL != copy && 0 != bitfield;
2787        i++)
2788   {
2789     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
2790                 " trying bit %u (mid %u)\n",
2791                 i, mid + i + 1);
2792     mask = 0x1LL << i;
2793     if (0 == (bitfield & mask))
2794      continue;
2795
2796     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, " set!\n");
2797     /* Bit was set, clear the bit from the bitfield */
2798     bitfield &= ~mask;
2799
2800     /* The i-th bit was set. Do we have that copy? */
2801     /* Skip copies with mid < target */
2802     target = mid + i + 1;
2803     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, " target %u\n", target);
2804     while (NULL != copy && GMC_is_pid_bigger (target, copy->mid))
2805      copy = copy->next;
2806
2807     /* Did we run out of copies? (previously freed, it's ok) */
2808     if (NULL == copy)
2809     {
2810      GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "run out of copies...\n");
2811      return;
2812     }
2813
2814     /* Did we overshoot the target? (previously freed, it's ok) */
2815     if (GMC_is_pid_bigger (copy->mid, target))
2816     {
2817      GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, " next copy %u\n", copy->mid);
2818      continue;
2819     }
2820
2821     /* Now copy->mid == target, free it */
2822     next = copy->next;
2823     tunnel_free_reliable_message (copy);
2824     copy = next;
2825   }
2826   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "free_sent_reliable END\n");
2827 }
2828
2829
2830 /**
2831  * We haven't received an ACK after a certain time: restransmit the message.
2832  *
2833  * @param cls Closure (MeshReliableMessage with the message to restransmit)
2834  * @param tc TaskContext.
2835  */
2836 static void
2837 tunnel_retransmit_message (void *cls,
2838                            const struct GNUNET_SCHEDULER_TaskContext *tc)
2839 {
2840   struct MeshTunnelReliability *rel = cls;
2841   struct MeshReliableMessage *copy;
2842   struct MeshFlowControl *fc;
2843   struct MeshPeerQueue *q;
2844   struct MeshPeerInfo *pi;
2845   struct MeshTunnel *t;
2846   struct GNUNET_MESH_Data *payload;
2847   GNUNET_PEER_Id hop;
2848
2849   rel->retry_task = GNUNET_SCHEDULER_NO_TASK;
2850   if (0 != (tc->reason & GNUNET_SCHEDULER_REASON_SHUTDOWN))
2851     return;
2852
2853   t = rel->t;
2854   copy = rel->head_sent;
2855   if (NULL == copy)
2856   {
2857     GNUNET_break (0);
2858     return;
2859   }
2860
2861   /* Search the message to be retransmitted in the outgoing queue */
2862   payload = (struct GNUNET_MESH_Data *) &copy[1];
2863   hop = rel == t->fwd_rel ? t->next_hop : t->prev_hop;
2864   fc  = rel == t->fwd_rel ? &t->prev_fc : &t->next_fc;
2865   pi  = peer_get_short (hop);
2866   for (q = pi->queue_head; NULL != q; q = q->next)
2867   {
2868     if (ntohs (payload->header.type) == q->type)
2869     {
2870       struct GNUNET_MESH_Data *queued_data = q->cls;
2871
2872       if (queued_data->mid == payload->mid)
2873         break;
2874     }
2875   }
2876
2877   /* Message not found in the queue */
2878   if (NULL == q)
2879   {
2880     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "!!! RETRANSMIT %u\n", copy->mid);
2881
2882     fc->last_ack_sent++;
2883     fc->last_pid_recv++;
2884     payload->pid = htonl (fc->last_pid_recv);
2885     send_prebuilt_message (&payload->header, hop, t);
2886     GNUNET_STATISTICS_update (stats, "# data retransmitted", 1, GNUNET_NO);
2887   }
2888   else
2889   {
2890     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "!!! STILL IN QUEUE %u\n", copy->mid);
2891   }
2892
2893   rel->retry_timer = GNUNET_TIME_STD_BACKOFF (rel->retry_timer);
2894   rel->retry_task = GNUNET_SCHEDULER_add_delayed (rel->retry_timer,
2895                                                   &tunnel_retransmit_message,
2896                                                   cls);
2897 }
2898
2899
2900 /**
2901  * Send keepalive packets for a tunnel.
2902  *
2903  * @param t Tunnel to keep alive..
2904  * @param fwd Is this a FWD keepalive? (owner -> dest).
2905  */
2906 static void
2907 tunnel_keepalive (struct MeshTunnel *t, int fwd)
2908 {
2909   struct GNUNET_MESH_TunnelKeepAlive *msg;
2910   size_t size = sizeof (struct GNUNET_MESH_TunnelKeepAlive);
2911   char cbuf[size];
2912   GNUNET_PEER_Id hop;
2913   uint16_t type;
2914
2915   type = fwd ? GNUNET_MESSAGE_TYPE_MESH_FWD_KEEPALIVE :
2916                GNUNET_MESSAGE_TYPE_MESH_BCK_KEEPALIVE;
2917   hop  = fwd ? t->next_hop : t->prev_hop;
2918
2919   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
2920               "sending %s keepalive for tunnel %d\n",
2921               fwd ? "FWD" : "BCK", t->id.tid);
2922
2923   msg = (struct GNUNET_MESH_TunnelKeepAlive *) cbuf;
2924   msg->header.size = htons (size);
2925   msg->header.type = htons (type);
2926   msg->oid = *(GNUNET_PEER_resolve2 (t->id.oid));
2927   msg->tid = htonl (t->id.tid);
2928   send_prebuilt_message (&msg->header, hop, t);
2929 }
2930
2931
2932 /**
2933  * Send keepalive packets for a tunnel.
2934  *
2935  * @param cls Closure (tunnel for which to send the keepalive).
2936  * @param tc Notification context.
2937  */
2938 static void
2939 tunnel_recreate (struct MeshTunnel *t, int fwd)
2940 {
2941   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
2942               "sending path recreate for tunnel %s[%X]\n",
2943               GNUNET_i2s (GNUNET_PEER_resolve2 (t->id.oid)), t->id.tid);
2944   if (fwd)
2945     send_path_create (t);
2946   else
2947     send_path_ack (t);
2948 }
2949
2950
2951 /**
2952  * Generic tunnel timer management.
2953  * Depending on the role of the peer in the tunnel will send the
2954  * appropriate message (build or keepalive)
2955  *
2956  * @param t Tunnel to maintain.
2957  * @param fw Is FWD?
2958  */
2959 static void
2960 tunnel_maintain (struct MeshTunnel *t, int fwd)
2961 {
2962   switch (t->state)
2963   {
2964     case MESH_TUNNEL_NEW:
2965       GNUNET_break (0);
2966     case MESH_TUNNEL_SEARCHING:
2967       /* TODO DHT GET with RO_BART */
2968       break;
2969     case MESH_TUNNEL_WAITING:
2970       tunnel_recreate (t, fwd);
2971       break;
2972     case MESH_TUNNEL_READY:
2973       tunnel_keepalive (t, fwd);
2974       break;
2975     default:
2976       break;
2977   }
2978 }
2979
2980
2981 static void
2982 tunnel_fwd_keepalive (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
2983 {
2984   struct MeshTunnel *t = cls;
2985
2986   t->fwd_maintenance_task = GNUNET_SCHEDULER_NO_TASK;
2987   if (0 != (tc->reason & GNUNET_SCHEDULER_REASON_SHUTDOWN) ||
2988       NULL == t->owner)
2989     return;
2990
2991   tunnel_maintain (t, GNUNET_YES);
2992   t->fwd_maintenance_task = GNUNET_SCHEDULER_add_delayed (refresh_path_time,
2993                                                           &tunnel_fwd_keepalive,
2994                                                           t);
2995 }
2996
2997
2998 static void
2999 tunnel_bck_keepalive (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
3000 {
3001   struct MeshTunnel *t = cls;
3002
3003   t->bck_maintenance_task = GNUNET_SCHEDULER_NO_TASK;
3004   if (0 != (tc->reason & GNUNET_SCHEDULER_REASON_SHUTDOWN) ||
3005       NULL == t->client)
3006     return;
3007
3008   tunnel_keepalive (t, GNUNET_NO);
3009   t->bck_maintenance_task = GNUNET_SCHEDULER_add_delayed (refresh_path_time,
3010                                                           &tunnel_bck_keepalive,
3011                                                           t);
3012 }
3013
3014
3015 /**
3016  * Send a message to all peers and clients in this tunnel that the tunnel
3017  * is no longer valid. If some peer or client should not receive the message,
3018  * should be zero'ed out before calling this function.
3019  *
3020  * @param t The tunnel whose peers and clients to notify.
3021  */
3022 static void
3023 tunnel_send_destroy (struct MeshTunnel *t)
3024 {
3025   struct GNUNET_MESH_TunnelDestroy msg;
3026   struct GNUNET_PeerIdentity id;
3027
3028   msg.header.size = htons (sizeof (msg));
3029   msg.header.type = htons (GNUNET_MESSAGE_TYPE_MESH_TUNNEL_DESTROY);
3030   GNUNET_PEER_resolve (t->id.oid, &msg.oid);
3031   msg.tid = htonl (t->id.tid);
3032   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
3033               "  sending tunnel destroy for tunnel: %s [%X]\n",
3034               GNUNET_i2s (&msg.oid), t->id.tid);
3035
3036   if (NULL == t->client && 0 != t->next_hop)
3037   {
3038     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  child: %u\n", t->next_hop);
3039     GNUNET_PEER_resolve (t->next_hop, &id);
3040     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
3041                 "  sending forward to %s\n",
3042                 GNUNET_i2s (&id));
3043     send_prebuilt_message (&msg.header, t->next_hop, t);
3044   }
3045   if (NULL == t->owner && 0 != t->prev_hop)
3046   {
3047     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  parent: %u\n", t->prev_hop);
3048     GNUNET_PEER_resolve (t->prev_hop, &id);
3049     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
3050                 "  sending back to %s\n",
3051                 GNUNET_i2s (&id));
3052     send_prebuilt_message (&msg.header, t->prev_hop, t);
3053   }
3054   if (NULL != t->owner)
3055   {
3056     send_local_tunnel_destroy (t, GNUNET_NO);
3057   }
3058   if (NULL != t->client)
3059   {
3060     send_local_tunnel_destroy (t, GNUNET_YES);
3061   }
3062 }
3063
3064 static int
3065 tunnel_destroy (struct MeshTunnel *t)
3066 {
3067   struct MeshClient *c;
3068   struct GNUNET_HashCode hash;
3069   int r;
3070
3071   if (NULL == t)
3072     return GNUNET_OK;
3073
3074   r = GNUNET_OK;
3075   c = t->owner;
3076
3077   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "destroying tunnel %s [%x]\n",
3078               GNUNET_i2s (GNUNET_PEER_resolve2 (t->id.oid)), t->id.tid);
3079   if (NULL != c)
3080     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  by client %u\n", c->id);
3081
3082   GNUNET_CRYPTO_hash (&t->id, sizeof (struct MESH_TunnelID), &hash);
3083   if (GNUNET_YES != GNUNET_CONTAINER_multihashmap_remove (tunnels, &hash, t))
3084   {
3085     GNUNET_break (0);
3086     r = GNUNET_SYSERR;
3087   }
3088
3089   if (NULL != c)
3090   {
3091     if (GNUNET_YES != GNUNET_CONTAINER_multihashmap32_remove (c->own_tunnels,
3092                                                               t->local_tid, t))
3093     {
3094       GNUNET_break (0);
3095       r = GNUNET_SYSERR;
3096     }
3097   }
3098
3099   c = t->client;
3100   if (NULL != c)
3101   {
3102     if (GNUNET_YES !=
3103         GNUNET_CONTAINER_multihashmap32_remove (c->incoming_tunnels,
3104                                                 t->local_tid_dest, t))
3105     {
3106       GNUNET_break (0);
3107       r = GNUNET_SYSERR;
3108     }
3109     if (GNUNET_YES != 
3110         GNUNET_CONTAINER_multihashmap32_remove (incoming_tunnels,
3111                                                 t->local_tid_dest, t))
3112     {
3113       GNUNET_break (0);
3114       r = GNUNET_SYSERR;
3115     }
3116   }
3117
3118   if(GNUNET_YES == t->reliable)
3119   {
3120     tunnel_free_reliable_all (t->fwd_rel);
3121     tunnel_free_reliable_all (t->bck_rel);
3122   }
3123   if (0 != t->prev_hop)
3124   {
3125     peer_cancel_queues (t->prev_hop, t);
3126     GNUNET_PEER_change_rc (t->prev_hop, -1);
3127   }
3128   if (0 != t->next_hop)
3129   {
3130     peer_cancel_queues (t->next_hop, t);
3131     GNUNET_PEER_change_rc (t->next_hop, -1);
3132   }
3133   if (GNUNET_SCHEDULER_NO_TASK != t->next_fc.poll_task)
3134   {
3135     GNUNET_SCHEDULER_cancel (t->next_fc.poll_task);
3136     t->next_fc.poll_task = GNUNET_SCHEDULER_NO_TASK;
3137   }
3138   if (GNUNET_SCHEDULER_NO_TASK != t->prev_fc.poll_task)
3139   {
3140     GNUNET_SCHEDULER_cancel (t->prev_fc.poll_task);
3141     t->prev_fc.poll_task = GNUNET_SCHEDULER_NO_TASK;
3142   }
3143   if (0 != t->dest) {
3144       peer_info_remove_tunnel (peer_get_short (t->dest), t);
3145   }
3146
3147   if (GNUNET_SCHEDULER_NO_TASK != t->fwd_maintenance_task)
3148     GNUNET_SCHEDULER_cancel (t->fwd_maintenance_task);
3149   if (GNUNET_SCHEDULER_NO_TASK != t->bck_maintenance_task)
3150     GNUNET_SCHEDULER_cancel (t->bck_maintenance_task);
3151
3152   n_tunnels--;
3153   GNUNET_STATISTICS_update (stats, "# tunnels", -1, GNUNET_NO);
3154   path_destroy (t->path);
3155   GNUNET_free (t);
3156   return r;
3157 }
3158
3159 /**
3160  * Tunnel is empty: destroy it.
3161  * 
3162  * Notifies all participants (peers, cleints) about the destruction.
3163  * 
3164  * @param t Tunnel to destroy. 
3165  */
3166 static void
3167 tunnel_destroy_empty (struct MeshTunnel *t)
3168 {
3169   #if MESH_DEBUG
3170   {
3171     struct GNUNET_PeerIdentity id;
3172
3173     GNUNET_PEER_resolve (t->id.oid, &id);
3174     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
3175                 "executing destruction of empty tunnel %s [%X]\n",
3176                 GNUNET_i2s (&id), t->id.tid);
3177   }
3178   #endif
3179
3180   if (GNUNET_NO == t->destroy)
3181     tunnel_send_destroy (t);
3182   if (0 == t->pending_messages)
3183     tunnel_destroy (t);
3184   else
3185     t->destroy = GNUNET_YES;
3186 }
3187
3188 /**
3189  * Initialize a Flow Control structure to the initial state.
3190  * 
3191  * @param fc Flow Control structure to initialize.
3192  */
3193 static void
3194 fc_init (struct MeshFlowControl *fc)
3195 {
3196   fc->last_pid_sent = (uint32_t) -1; /* Next (expected) = 0 */
3197   fc->last_pid_recv = (uint32_t) -1;
3198   fc->last_ack_sent = (uint32_t) -1; /* No traffic allowed yet */
3199   fc->last_ack_recv = (uint32_t) -1;
3200   fc->poll_task = GNUNET_SCHEDULER_NO_TASK;
3201   fc->poll_time = GNUNET_TIME_UNIT_SECONDS;
3202   fc->queue_n = 0;
3203 }
3204
3205 /**
3206  * Create a new tunnel
3207  * 
3208  * @param owner Who is the owner of the tunnel (short ID).
3209  * @param tid Tunnel Number of the tunnel.
3210  * @param client Clients that owns the tunnel, NULL for foreign tunnels.
3211  * @param local Tunnel Number for the tunnel, for the client point of view.
3212  * 
3213  * @return A new initialized tunnel. NULL on error.
3214  */
3215 static struct MeshTunnel *
3216 tunnel_new (GNUNET_PEER_Id owner,
3217             MESH_TunnelNumber tid,
3218             struct MeshClient *client,
3219             MESH_TunnelNumber local)
3220 {
3221   struct MeshTunnel *t;
3222   struct GNUNET_HashCode hash;
3223
3224   if (n_tunnels >= max_tunnels && NULL == client)
3225     return NULL;
3226
3227   t = GNUNET_malloc (sizeof (struct MeshTunnel));
3228   t->id.oid = owner;
3229   t->id.tid = tid;
3230   t->queue_max = (max_msgs_queue / max_tunnels) + 1;
3231   t->owner = client;
3232   fc_init (&t->next_fc);
3233   fc_init (&t->prev_fc);
3234   t->next_fc.t = t;
3235   t->prev_fc.t = t;
3236   t->local_tid = local;
3237   n_tunnels++;
3238   GNUNET_STATISTICS_update (stats, "# tunnels", 1, GNUNET_NO);
3239
3240   GNUNET_CRYPTO_hash (&t->id, sizeof (struct MESH_TunnelID), &hash);
3241   if (GNUNET_OK !=
3242       GNUNET_CONTAINER_multihashmap_put (tunnels, &hash, t,
3243                                          GNUNET_CONTAINER_MULTIHASHMAPOPTION_UNIQUE_ONLY))
3244   {
3245     GNUNET_break (0);
3246     tunnel_destroy (t);
3247     if (NULL != client)
3248     {
3249       GNUNET_break (0);
3250       GNUNET_SERVER_receive_done (client->handle, GNUNET_SYSERR);
3251     }
3252     return NULL;
3253   }
3254
3255   if (NULL != client)
3256   {
3257     if (GNUNET_OK !=
3258         GNUNET_CONTAINER_multihashmap32_put (client->own_tunnels,
3259                                              t->local_tid, t,
3260                                              GNUNET_CONTAINER_MULTIHASHMAPOPTION_UNIQUE_ONLY))
3261     {
3262       tunnel_destroy (t);
3263       GNUNET_break (0);
3264       GNUNET_SERVER_receive_done (client->handle, GNUNET_SYSERR);
3265       return NULL;
3266     }
3267   }
3268
3269   return t;
3270 }
3271
3272
3273 /**
3274  * Set options in a tunnel, extracted from a bit flag field
3275  * 
3276  * @param t Tunnel to set options to.
3277  * @param options Bit array in host byte order.
3278  */
3279 static void
3280 tunnel_set_options (struct MeshTunnel *t, uint32_t options)
3281 {
3282   t->nobuffer = (options & GNUNET_MESH_OPTION_NOBUFFER) != 0 ?
3283                  GNUNET_YES : GNUNET_NO;
3284   t->reliable = (options & GNUNET_MESH_OPTION_RELIABLE) != 0 ?
3285                  GNUNET_YES : GNUNET_NO;
3286 }
3287
3288
3289 /**
3290  * Iterator for deleting each tunnel whose client endpoint disconnected.
3291  *
3292  * @param cls Closure (client that has disconnected).
3293  * @param key The local tunnel id (used to access the hashmap).
3294  * @param value The value stored at the key (tunnel to destroy).
3295  *
3296  * @return GNUNET_OK, keep iterating.
3297  */
3298 static int
3299 tunnel_destroy_iterator (void *cls,
3300                          uint32_t key,
3301                          void *value)
3302 {
3303   struct MeshTunnel *t = value;
3304   struct MeshClient *c = cls;
3305
3306   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
3307               " Tunnel %X / %X destroy, due to client %u shutdown.\n",
3308               t->local_tid, t->local_tid_dest, c->id);
3309   client_delete_tunnel (c, t);
3310   if (c == t->client)
3311   {
3312     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, " Client %u is destination.\n", c->id);
3313     t->client = NULL;
3314     if (0 != t->next_hop) { /* destroy could come before a path is used */
3315         GNUNET_PEER_change_rc (t->next_hop, -1);
3316         t->next_hop = 0;
3317     }
3318   }
3319   if (c == t->owner)
3320   {
3321     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, " Client %u is owner.\n", c->id);
3322     t->owner = NULL;
3323     if (0 != t->prev_hop) { /* destroy could come before a path is used */
3324         GNUNET_PEER_change_rc (t->prev_hop, -1);
3325         t->prev_hop = 0;
3326     }
3327   }
3328
3329   tunnel_destroy_empty (t);
3330
3331   return GNUNET_OK;
3332 }
3333
3334
3335 /**
3336  * remove client's ports from the global hashmap on diconnect.
3337  *
3338  * @param cls Closure (unused).
3339  * @param key Port.
3340  * @param value ThClient structure.
3341  *
3342  * @return GNUNET_OK, keep iterating.
3343  */
3344 static int
3345 client_release_ports (void *cls,
3346                       uint32_t key,
3347                       void *value)
3348 {
3349   int res;
3350
3351   res = GNUNET_CONTAINER_multihashmap32_remove (ports, key, value);
3352   if (GNUNET_YES != res)
3353   {
3354     GNUNET_break (0);
3355     GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
3356                 "Port %u by client %p was not registered.\n",
3357                 key, value);
3358   }
3359   return GNUNET_OK;
3360 }
3361
3362 /**
3363  * Timeout function due to lack of keepalive/traffic from the owner.
3364  * Destroys tunnel if called.
3365  *
3366  * @param cls Closure (tunnel to destroy).
3367  * @param tc TaskContext
3368  */
3369 static void
3370 tunnel_fwd_timeout (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
3371 {
3372   struct MeshTunnel *t = cls;
3373
3374   t->fwd_maintenance_task = GNUNET_SCHEDULER_NO_TASK;
3375   if (0 != (tc->reason & GNUNET_SCHEDULER_REASON_SHUTDOWN))
3376     return;
3377   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
3378               "Tunnel %s [%X] FWD timed out. Destroying.\n",
3379               GNUNET_i2s(GNUNET_PEER_resolve2 (t->id.oid)), t->id.tid);
3380   if (NULL != t->client)
3381     send_local_tunnel_destroy (t, GNUNET_YES);
3382   tunnel_destroy (t); /* Do not notify other */
3383 }
3384
3385
3386 /**
3387  * Timeout function due to lack of keepalive/traffic from the destination.
3388  * Destroys tunnel if called.
3389  *
3390  * @param cls Closure (tunnel to destroy).
3391  * @param tc TaskContext
3392  */
3393 static void
3394 tunnel_bck_timeout (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
3395 {
3396   struct MeshTunnel *t = cls;
3397
3398   t->bck_maintenance_task = GNUNET_SCHEDULER_NO_TASK;
3399   if (0 != (tc->reason & GNUNET_SCHEDULER_REASON_SHUTDOWN))
3400     return;
3401   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
3402               "Tunnel %s [%X] BCK timed out. Destroying.\n",
3403               GNUNET_i2s(GNUNET_PEER_resolve2 (t->id.oid)), t->id.tid);
3404   if (NULL != t->owner)
3405     send_local_tunnel_destroy (t, GNUNET_NO);
3406   tunnel_destroy (t); /* Do not notify other */
3407 }
3408
3409
3410 /**
3411  * Resets the tunnel timeout task, some other message has done the task's job.
3412  * - For the first peer on the direction this means to send
3413  *   a keepalive or a path confirmation message (either create or ACK).
3414  * - For all other peers, this means to destroy the tunnel,
3415  *   due to lack of activity.
3416  * Starts the tiemout if no timeout was running (tunnel just created).
3417  *
3418  * @param t Tunnel whose timeout to reset.
3419  * @param fwd Is this forward?
3420  *
3421  * TODO use heap to improve efficiency of scheduler.
3422  */
3423 static void
3424 tunnel_reset_timeout (struct MeshTunnel *t, int fwd)
3425 {
3426   GNUNET_SCHEDULER_TaskIdentifier *ti;
3427   GNUNET_SCHEDULER_Task f;
3428   struct MeshClient *c;
3429
3430   ti = fwd ? &t->fwd_maintenance_task : &t->bck_maintenance_task;
3431   c  = fwd ? t->owner                 : t->client;
3432
3433   if (GNUNET_SCHEDULER_NO_TASK != *ti)
3434     GNUNET_SCHEDULER_cancel (*ti);
3435
3436   if (NULL != c)
3437   {
3438     f  = fwd ? &tunnel_fwd_keepalive : &tunnel_bck_keepalive;
3439     *ti = GNUNET_SCHEDULER_add_delayed (refresh_path_time, f, t);
3440   }
3441   else
3442   {
3443     f  = fwd ? &tunnel_fwd_timeout : &tunnel_bck_timeout;
3444     *ti = GNUNET_SCHEDULER_add_delayed (GNUNET_TIME_relative_multiply
3445                                             (refresh_path_time, 4),
3446                                         f, t);
3447   }
3448 }
3449
3450
3451 /******************************************************************************/
3452 /****************      MESH NETWORK HANDLER HELPERS     ***********************/
3453 /******************************************************************************/
3454
3455 /**
3456  * Free a transmission that was already queued with all resources
3457  * associated to the request.
3458  *
3459  * @param queue Queue handler to cancel.
3460  * @param clear_cls Is it necessary to free associated cls?
3461  */
3462 static void
3463 queue_destroy (struct MeshPeerQueue *queue, int clear_cls)
3464 {
3465   struct MeshFlowControl *fc;
3466
3467   if (GNUNET_YES == clear_cls)
3468   {
3469     switch (queue->type)
3470     {
3471       case GNUNET_MESSAGE_TYPE_MESH_TUNNEL_DESTROY:
3472         GNUNET_log (GNUNET_ERROR_TYPE_INFO, "   cancelling TUNNEL_DESTROY\n");
3473         GNUNET_break (GNUNET_YES == queue->tunnel->destroy);
3474         /* fall through */
3475       case GNUNET_MESSAGE_TYPE_MESH_UNICAST:
3476       case GNUNET_MESSAGE_TYPE_MESH_TO_ORIGIN:
3477       case GNUNET_MESSAGE_TYPE_MESH_ACK:
3478       case GNUNET_MESSAGE_TYPE_MESH_UNICAST_ACK:
3479       case GNUNET_MESSAGE_TYPE_MESH_TO_ORIG_ACK:
3480       case GNUNET_MESSAGE_TYPE_MESH_POLL:
3481       case GNUNET_MESSAGE_TYPE_MESH_FWD_KEEPALIVE:
3482       case GNUNET_MESSAGE_TYPE_MESH_BCK_KEEPALIVE:
3483         GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
3484                     "   prebuilt message\n");
3485         GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
3486                     "   type %s\n",
3487                     GNUNET_MESH_DEBUG_M2S (queue->type));
3488         break;
3489       case GNUNET_MESSAGE_TYPE_MESH_PATH_CREATE:
3490         GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "   type create path\n");
3491         break;
3492       default:
3493         GNUNET_break (0);
3494         GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
3495                     "   type %s unknown!\n",
3496                     GNUNET_MESH_DEBUG_M2S (queue->type));
3497     }
3498     GNUNET_free_non_null (queue->cls);
3499   }
3500   GNUNET_CONTAINER_DLL_remove (queue->peer->queue_head,
3501                                queue->peer->queue_tail,
3502                                queue);
3503
3504   /* Delete from appropriate fc in the tunnel */
3505   if (GNUNET_MESSAGE_TYPE_MESH_UNICAST == queue->type ||
3506       GNUNET_MESSAGE_TYPE_MESH_TO_ORIGIN == queue->type )
3507   {
3508     if (queue->peer->id == queue->tunnel->prev_hop)
3509       fc = &queue->tunnel->prev_fc;
3510     else if (queue->peer->id == queue->tunnel->next_hop)
3511       fc = &queue->tunnel->next_fc;
3512     else
3513     {
3514       GNUNET_break (0);
3515       GNUNET_free (queue);
3516       return;
3517     }
3518     fc->queue_n--;
3519   }
3520   GNUNET_free (queue);
3521 }
3522
3523
3524 /**
3525  * @brief Get the next transmittable message from the queue.
3526  *
3527  * This will be the head, except in the case of being a data packet
3528  * not allowed by the destination peer.
3529  *
3530  * @param peer Destination peer.
3531  *
3532  * @return The next viable MeshPeerQueue element to send to that peer.
3533  *         NULL when there are no transmittable messages.
3534  */
3535 struct MeshPeerQueue *
3536 queue_get_next (const struct MeshPeerInfo *peer)
3537 {
3538   struct MeshPeerQueue *q;
3539
3540   struct GNUNET_MESH_Data *dmsg;
3541   struct MeshTunnel* t;
3542   uint32_t pid;
3543   uint32_t ack;
3544
3545   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "*   selecting message\n");
3546   for (q = peer->queue_head; NULL != q; q = q->next)
3547   {
3548     t = q->tunnel;
3549     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
3550                 "*     %s\n",
3551                 GNUNET_MESH_DEBUG_M2S (q->type));
3552     dmsg = (struct GNUNET_MESH_Data *) q->cls;
3553     pid = ntohl (dmsg->pid);
3554     switch (q->type)
3555     {
3556       case GNUNET_MESSAGE_TYPE_MESH_UNICAST:
3557         ack = t->next_fc.last_ack_recv;
3558         break;
3559       case GNUNET_MESSAGE_TYPE_MESH_TO_ORIGIN:
3560         ack = t->prev_fc.last_ack_recv;
3561         break;
3562       default:
3563         GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
3564                     "*   OK!\n");
3565         return q;
3566     }
3567     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
3568                 "*     ACK: %u, PID: %u, MID: %u\n",
3569                 ack, pid, ntohl (dmsg->mid));
3570     if (GNUNET_NO == GMC_is_pid_bigger (pid, ack))
3571     {
3572       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
3573                   "*   OK!\n");
3574       return q;
3575     }
3576     else
3577     {
3578       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
3579                   "*     NEXT!\n");
3580     }
3581   }
3582   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
3583                 "*   nothing found\n");
3584   return NULL;
3585 }
3586
3587
3588 static size_t
3589 queue_send (void *cls, size_t size, void *buf)
3590 {
3591   struct MeshPeerInfo *peer = cls;
3592   struct GNUNET_MessageHeader *msg;
3593   struct MeshPeerQueue *queue;
3594   struct MeshTunnel *t;
3595   struct GNUNET_PeerIdentity dst_id;
3596   struct MeshFlowControl *fc;
3597   size_t data_size;
3598   uint32_t pid;
3599   uint16_t type;
3600
3601   peer->core_transmit = NULL;
3602
3603   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "* Queue send\n");
3604   queue = queue_get_next (peer);
3605
3606   /* Queue has no internal mesh traffic nor sendable payload */
3607   if (NULL == queue)
3608   {
3609     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "*   not ready, return\n");
3610     if (NULL == peer->queue_head)
3611       GNUNET_break (0); /* Core tmt_rdy should've been canceled */
3612     return 0;
3613   }
3614   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "*   not empty\n");
3615
3616   GNUNET_PEER_resolve (peer->id, &dst_id);
3617   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
3618               "*   towards %s\n",
3619               GNUNET_i2s (&dst_id));
3620   /* Check if buffer size is enough for the message */
3621   if (queue->size > size)
3622   {
3623       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
3624                   "*   not enough room, reissue\n");
3625       peer->core_transmit =
3626           GNUNET_CORE_notify_transmit_ready (core_handle,
3627                                              GNUNET_NO,
3628                                              0,
3629                                              GNUNET_TIME_UNIT_FOREVER_REL,
3630                                              &dst_id,
3631                                              queue->size,
3632                                              &queue_send,
3633                                              peer);
3634       return 0;
3635   }
3636   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "*   size ok\n");
3637
3638   t = queue->tunnel;
3639   GNUNET_assert (0 < t->pending_messages);
3640   t->pending_messages--;
3641   type = 0;
3642
3643   /* Fill buf */
3644   switch (queue->type)
3645   {
3646     case 0:
3647     case GNUNET_MESSAGE_TYPE_MESH_ACK:
3648     case GNUNET_MESSAGE_TYPE_MESH_UNICAST_ACK:
3649     case GNUNET_MESSAGE_TYPE_MESH_TO_ORIG_ACK:
3650     case GNUNET_MESSAGE_TYPE_MESH_POLL:
3651     case GNUNET_MESSAGE_TYPE_MESH_PATH_BROKEN:
3652     case GNUNET_MESSAGE_TYPE_MESH_PATH_DESTROY:
3653     case GNUNET_MESSAGE_TYPE_MESH_TUNNEL_DESTROY:
3654     case GNUNET_MESSAGE_TYPE_MESH_FWD_KEEPALIVE:
3655     case GNUNET_MESSAGE_TYPE_MESH_BCK_KEEPALIVE:
3656       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
3657                   "*   raw: %s\n",
3658                   GNUNET_MESH_DEBUG_M2S (queue->type));
3659       /* Fall through */
3660     case GNUNET_MESSAGE_TYPE_MESH_UNICAST:
3661     case GNUNET_MESSAGE_TYPE_MESH_TO_ORIGIN:
3662       data_size = send_core_data_raw (queue->cls, size, buf);
3663       msg = (struct GNUNET_MessageHeader *) buf;
3664       type = ntohs (msg->type);
3665       break;
3666     case GNUNET_MESSAGE_TYPE_MESH_PATH_CREATE:
3667       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "*   path create\n");
3668       data_size = send_core_path_create (queue->cls, size, buf);
3669       break;
3670     case GNUNET_MESSAGE_TYPE_MESH_PATH_ACK:
3671       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "*   path ack\n");
3672       data_size = send_core_path_ack (queue->cls, size, buf);
3673       break;
3674     default:
3675       GNUNET_break (0);
3676       GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
3677                   "*   type unknown: %u\n",
3678                   queue->type);
3679       data_size = 0;
3680   }
3681
3682   if (0 < drop_percent &&
3683       GNUNET_CRYPTO_random_u32(GNUNET_CRYPTO_QUALITY_WEAK, 101) < drop_percent)
3684   {
3685     GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
3686                 "Dropping message of type %s\n",
3687                 GNUNET_MESH_DEBUG_M2S(queue->type));
3688     data_size = 0;
3689   }
3690   /* Free queue, but cls was freed by send_core_* */
3691   queue_destroy (queue, GNUNET_NO);
3692
3693   /* Send ACK if needed, after accounting for sent ID in fc->queue_n */
3694   pid = ((struct GNUNET_MESH_Data *) buf)->pid;
3695   pid = ntohl (pid);
3696   switch (type)
3697   {
3698     case GNUNET_MESSAGE_TYPE_MESH_UNICAST:
3699       t->next_fc.last_pid_sent = pid;
3700       tunnel_send_ack (t, GNUNET_MESSAGE_TYPE_MESH_UNICAST, GNUNET_YES);
3701       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
3702                   "!!! FWD  %u\n",
3703                   ntohl ( ((struct GNUNET_MESH_Data *) buf)->mid ) );
3704       break;
3705     case GNUNET_MESSAGE_TYPE_MESH_TO_ORIGIN:
3706       t->prev_fc.last_pid_sent = pid;
3707       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
3708                   "!!! BCK  %u\n",
3709                   ntohl ( ((struct GNUNET_MESH_Data *) buf)->mid ) );
3710       tunnel_send_ack (t, GNUNET_MESSAGE_TYPE_MESH_TO_ORIGIN, GNUNET_NO);
3711       break;
3712     default:
3713       break;
3714   }
3715
3716   /* If more data in queue, send next */
3717   queue = queue_get_next (peer);
3718   if (NULL != queue)
3719   {
3720       struct GNUNET_PeerIdentity id;
3721
3722       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "*   more data!\n");
3723       GNUNET_PEER_resolve (peer->id, &id);
3724       peer->core_transmit =
3725           GNUNET_CORE_notify_transmit_ready(core_handle,
3726                                             0,
3727                                             0,
3728                                             GNUNET_TIME_UNIT_FOREVER_REL,
3729                                             &id,
3730                                             queue->size,
3731                                             &queue_send,
3732                                             peer);
3733   }
3734   if (peer->id == t->next_hop)
3735     fc = &t->next_fc;
3736   else if (peer->id == t->prev_hop)
3737     fc = &t->prev_fc;
3738   else
3739   {
3740     GNUNET_break (0);
3741     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "id: %u, next: %u, prev: %u\n",
3742                 peer->id, t->next_hop, t->prev_hop);
3743     return data_size;
3744   }
3745   if (NULL != peer->queue_head)
3746   {
3747     if (GNUNET_SCHEDULER_NO_TASK == fc->poll_task && fc->queue_n > 0)
3748     {
3749       GNUNET_log (GNUNET_ERROR_TYPE_INFO,
3750                   "*   %s starting poll timeout\n",
3751                   GNUNET_i2s (&my_full_id));
3752       fc->poll_task = GNUNET_SCHEDULER_add_delayed (fc->poll_time,
3753                                                     &tunnel_poll, fc);
3754     }
3755   }
3756   else
3757   {
3758     if (GNUNET_SCHEDULER_NO_TASK != fc->poll_task)
3759     {
3760       GNUNET_SCHEDULER_cancel (fc->poll_task);
3761       fc->poll_task = GNUNET_SCHEDULER_NO_TASK;
3762     }
3763   }
3764   if (GNUNET_YES == t->destroy && 0 == t->pending_messages)
3765   {
3766     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "*  destroying tunnel!\n");
3767     tunnel_destroy (t);
3768   }
3769   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "*  Return %d\n", data_size);
3770   return data_size;
3771 }
3772
3773
3774 /**
3775  * @brief Queue and pass message to core when possible.
3776  * 
3777  * If type is payload (UNICAST, TO_ORIGIN) checks for queue status and
3778  * accounts for it. In case the queue is full, the message is dropped and
3779  * a break issued.
3780  * 
3781  * Otherwise, message is treated as internal and allowed to go regardless of 
3782  * queue status.
3783  *
3784  * @param cls Closure (@c type dependant). It will be used by queue_send to
3785  *            build the message to be sent if not already prebuilt.
3786  * @param type Type of the message, 0 for a raw message.
3787  * @param size Size of the message.
3788  * @param dst Neighbor to send message to.
3789  * @param t Tunnel this message belongs to.
3790  */
3791 static void
3792 queue_add (void *cls, uint16_t type, size_t size,
3793            struct MeshPeerInfo *dst, struct MeshTunnel *t)
3794 {
3795   struct MeshPeerQueue *queue;
3796   struct GNUNET_PeerIdentity id;
3797   struct MeshFlowControl *fc;
3798   int priority;
3799
3800   fc = NULL;
3801   priority = GNUNET_NO;
3802   if (GNUNET_MESSAGE_TYPE_MESH_UNICAST == type)
3803   {
3804     fc = &t->next_fc;
3805   }
3806   else if (GNUNET_MESSAGE_TYPE_MESH_TO_ORIGIN == type)
3807   {
3808     fc = &t->prev_fc;
3809   }
3810   if (NULL != fc)
3811   {
3812     if (fc->queue_n >= t->queue_max)
3813     {
3814       /* If this isn't a retransmission, drop the message */
3815       if (GNUNET_NO == t->reliable ||
3816           (NULL == t->owner && GNUNET_MESSAGE_TYPE_MESH_UNICAST == type) ||
3817           (NULL == t->client && GNUNET_MESSAGE_TYPE_MESH_TO_ORIGIN == type))
3818       {
3819         GNUNET_STATISTICS_update (stats, "# messages dropped (buffer full)",
3820                                   1, GNUNET_NO);
3821         GNUNET_break (0);
3822         GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
3823                     "queue full: %u/%u\n",
3824                     fc->queue_n, t->queue_max);
3825         return; /* Drop this message */
3826       }
3827       priority = GNUNET_YES;
3828     }
3829     fc->queue_n++;
3830     if (GMC_is_pid_bigger(fc->last_pid_sent + 1, fc->last_ack_recv) &&
3831         GNUNET_SCHEDULER_NO_TASK == fc->poll_task)
3832       fc->poll_task = GNUNET_SCHEDULER_add_delayed (fc->poll_time,
3833                                                     &tunnel_poll,
3834                                                     fc);
3835   }
3836   queue = GNUNET_malloc (sizeof (struct MeshPeerQueue));
3837   queue->cls = cls;
3838   queue->type = type;
3839   queue->size = size;
3840   queue->peer = dst;
3841   queue->tunnel = t;
3842   if (GNUNET_YES == priority)
3843   {
3844     struct GNUNET_MESH_Data *d;
3845     uint32_t prev;
3846     uint32_t next;
3847
3848     GNUNET_CONTAINER_DLL_insert (dst->queue_head, dst->queue_tail, queue);
3849     d = (struct GNUNET_MESH_Data *) queue->cls;
3850     prev = d->pid;
3851     for (queue = dst->queue_tail; NULL != queue; queue = queue->prev)
3852     {
3853       if (queue->type != type)
3854         continue;
3855       d = (struct GNUNET_MESH_Data *) queue->cls;
3856       next = d->pid;
3857       d->pid = prev;
3858       prev = next;
3859     }
3860   }
3861   else
3862     GNUNET_CONTAINER_DLL_insert_tail (dst->queue_head, dst->queue_tail, queue);
3863   
3864   if (NULL == dst->core_transmit)
3865   {
3866     GNUNET_PEER_resolve (dst->id, &id);
3867     dst->core_transmit =
3868         GNUNET_CORE_notify_transmit_ready (core_handle,
3869                                            0,
3870                                            0,
3871                                            GNUNET_TIME_UNIT_FOREVER_REL,
3872                                            &id,
3873                                            size,
3874                                            &queue_send,
3875                                            dst);
3876   }
3877   t->pending_messages++;
3878 }
3879
3880
3881 /******************************************************************************/
3882 /********************      MESH NETWORK HANDLERS     **************************/
3883 /******************************************************************************/
3884
3885
3886 /**
3887  * Core handler for path creation
3888  *
3889  * @param cls closure
3890  * @param message message
3891  * @param peer peer identity this notification is about
3892  *
3893  * @return GNUNET_OK to keep the connection open,
3894  *         GNUNET_SYSERR to close it (signal serious error)
3895  */
3896 static int
3897 handle_mesh_path_create (void *cls, const struct GNUNET_PeerIdentity *peer,
3898                          const struct GNUNET_MessageHeader *message)
3899 {
3900   unsigned int own_pos;
3901   uint16_t size;
3902   uint16_t i;
3903   MESH_TunnelNumber tid;
3904   struct GNUNET_MESH_CreateTunnel *msg;
3905   struct GNUNET_PeerIdentity *pi;
3906   struct MeshPeerPath *path;
3907   struct MeshPeerInfo *dest_peer_info;
3908   struct MeshPeerInfo *orig_peer_info;
3909   struct MeshTunnel *t;
3910
3911   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
3912               "Received a path create msg [%s]\n",
3913               GNUNET_i2s (&my_full_id));
3914   size = ntohs (message->size);
3915   if (size < sizeof (struct GNUNET_MESH_CreateTunnel))
3916   {
3917     GNUNET_break_op (0);
3918     return GNUNET_OK;
3919   }
3920
3921   size -= sizeof (struct GNUNET_MESH_CreateTunnel);
3922   if (size % sizeof (struct GNUNET_PeerIdentity))
3923   {
3924     GNUNET_break_op (0);
3925     return GNUNET_OK;
3926   }
3927   size /= sizeof (struct GNUNET_PeerIdentity);
3928   if (size < 1)
3929   {
3930     GNUNET_break_op (0);
3931     return GNUNET_OK;
3932   }
3933   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "    path has %u hops.\n", size);
3934   msg = (struct GNUNET_MESH_CreateTunnel *) message;
3935
3936   tid = ntohl (msg->tid);
3937   pi = (struct GNUNET_PeerIdentity *) &msg[1];
3938   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
3939               "    path is for tunnel %s[%X].\n", GNUNET_i2s (pi), tid);
3940   t = tunnel_get (pi, tid);
3941   if (NULL == t) /* might be a local tunnel */
3942   {
3943     uint32_t opt;
3944
3945     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  Creating tunnel\n");
3946     t = tunnel_new (GNUNET_PEER_intern (pi), tid, NULL, 0);
3947     if (NULL == t)
3948     {
3949       GNUNET_break (0);
3950       return GNUNET_OK;
3951     }
3952     t->port = ntohl (msg->port);
3953     opt = ntohl (msg->opt);
3954     if (0 != (opt & GNUNET_MESH_OPTION_NOBUFFER))
3955     {
3956       t->nobuffer = GNUNET_YES;
3957       t->queue_max = 1;
3958     }
3959     if (0 != (opt & GNUNET_MESH_OPTION_RELIABLE))
3960     {
3961       t->reliable = GNUNET_YES;
3962     }
3963     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  nobuffer:%d\n", t->nobuffer);
3964   }
3965   tunnel_reset_timeout (t, GNUNET_YES);
3966   tunnel_change_state (t,  MESH_TUNNEL_WAITING);
3967   dest_peer_info =
3968       GNUNET_CONTAINER_multihashmap_get (peers, &pi[size - 1].hashPubKey);
3969   if (NULL == dest_peer_info)
3970   {
3971     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
3972                 "  Creating PeerInfo for destination.\n");
3973     dest_peer_info = GNUNET_malloc (sizeof (struct MeshPeerInfo));
3974     dest_peer_info->id = GNUNET_PEER_intern (&pi[size - 1]);
3975     GNUNET_CONTAINER_multihashmap_put (peers, &pi[size - 1].hashPubKey,
3976                                        dest_peer_info,
3977                                        GNUNET_CONTAINER_MULTIHASHMAPOPTION_UNIQUE_ONLY);
3978   }
3979   orig_peer_info = GNUNET_CONTAINER_multihashmap_get (peers, &pi->hashPubKey);
3980   if (NULL == orig_peer_info)
3981   {
3982     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
3983                 "  Creating PeerInfo for origin.\n");
3984     orig_peer_info = GNUNET_malloc (sizeof (struct MeshPeerInfo));
3985     orig_peer_info->id = GNUNET_PEER_intern (pi);
3986     GNUNET_CONTAINER_multihashmap_put (peers, &pi->hashPubKey, orig_peer_info,
3987                                        GNUNET_CONTAINER_MULTIHASHMAPOPTION_UNIQUE_ONLY);
3988   }
3989   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  Creating path...\n");
3990   path = path_new (size);
3991   own_pos = 0;
3992   for (i = 0; i < size; i++)
3993   {
3994     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  ... adding %s\n",
3995                 GNUNET_i2s (&pi[i]));
3996     path->peers[i] = GNUNET_PEER_intern (&pi[i]);
3997     if (path->peers[i] == myid)
3998       own_pos = i;
3999   }
4000   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  Own position: %u\n", own_pos);
4001   if (own_pos == 0 && path->peers[own_pos] != myid)
4002   {
4003     /* create path: self not found in path through self */
4004     GNUNET_break_op (0);
4005     path_destroy (path);
4006     tunnel_destroy (t);
4007     return GNUNET_OK;
4008   }
4009   path_add_to_peers (path, GNUNET_NO);
4010   tunnel_use_path (t, path);
4011
4012   peer_info_add_tunnel (dest_peer_info, t);
4013
4014   if (own_pos == size - 1)
4015   {
4016     struct MeshClient *c;
4017
4018     /* Find target client */
4019     c = GNUNET_CONTAINER_multihashmap32_get (ports, t->port);
4020     if (NULL == c)
4021     {
4022       /* TODO send reject */
4023       return GNUNET_OK;
4024     }
4025
4026     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  It's for us!\n");
4027     peer_info_add_path_to_origin (orig_peer_info, path, GNUNET_YES);
4028
4029     /* Assign local tid */
4030     while (NULL != tunnel_get_incoming (next_local_tid))
4031       next_local_tid = (next_local_tid + 1) | GNUNET_MESH_LOCAL_TUNNEL_ID_SERV;
4032     t->local_tid_dest = next_local_tid++;
4033     next_local_tid = next_local_tid | GNUNET_MESH_LOCAL_TUNNEL_ID_SERV;
4034
4035     if (GNUNET_YES == t->reliable)
4036     {
4037       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "!!! Reliable\n");
4038       t->bck_rel = GNUNET_malloc (sizeof (struct MeshTunnelReliability));
4039       t->bck_rel->t = t;
4040       t->bck_rel->expected_delay = MESH_RETRANSMIT_TIME;
4041     }
4042
4043     tunnel_add_client (t, c);
4044     send_local_tunnel_create (t);
4045     send_path_ack (t);
4046      /* Eliminate tunnel when origin dies */
4047     tunnel_reset_timeout (t, GNUNET_YES);
4048     /* Keep tunnel alive in direction dest->owner*/
4049     tunnel_reset_timeout (t, GNUNET_NO); 
4050   }
4051   else
4052   {
4053     struct MeshPeerPath *path2;
4054
4055     t->next_hop = path->peers[own_pos + 1];
4056     GNUNET_PEER_change_rc(t->next_hop, 1);
4057
4058     /* It's for somebody else! Retransmit. */
4059     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  Retransmitting.\n");
4060     path2 = path_duplicate (path);
4061     peer_info_add_path (dest_peer_info, path2, GNUNET_NO);
4062     peer_info_add_path_to_origin (orig_peer_info, path, GNUNET_NO);
4063     send_path_create (t);
4064   }
4065   return GNUNET_OK;
4066 }
4067
4068
4069
4070 /**
4071  * Core handler for path ACKs
4072  *
4073  * @param cls closure
4074  * @param message message
4075  * @param peer peer identity this notification is about
4076  *
4077  * @return GNUNET_OK to keep the connection open,
4078  *         GNUNET_SYSERR to close it (signal serious error)
4079  */
4080 static int
4081 handle_mesh_path_ack (void *cls, const struct GNUNET_PeerIdentity *peer,
4082                       const struct GNUNET_MessageHeader *message)
4083 {
4084   struct GNUNET_MESH_PathACK *msg;
4085   struct MeshPeerInfo *peer_info;
4086   struct MeshPeerPath *p;
4087   struct MeshTunnel *t;
4088
4089   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Received a path ACK msg [%s]\n",
4090               GNUNET_i2s (&my_full_id));
4091   msg = (struct GNUNET_MESH_PathACK *) message;
4092   t = tunnel_get (&msg->oid, ntohl(msg->tid));
4093   if (NULL == t)
4094   {
4095     /* TODO notify that we don't know the tunnel */
4096     GNUNET_STATISTICS_update (stats, "# control on unknown tunnel", 1, GNUNET_NO);
4097     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  don't know the tunnel %s [%X]!\n",
4098                 GNUNET_i2s (&msg->oid), ntohl(msg->tid));
4099     return GNUNET_OK;
4100   }
4101   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  on tunnel %s [%X]\n",
4102               GNUNET_i2s (&msg->oid), ntohl(msg->tid));
4103
4104   peer_info = peer_get (&msg->peer_id);
4105   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  by peer %s\n",
4106               GNUNET_i2s (&msg->peer_id));
4107   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  via peer %s\n",
4108               GNUNET_i2s (peer));
4109
4110   /* Add path to peers? */
4111   p = t->path;
4112   if (NULL != p)
4113   {
4114     path_add_to_peers (p, GNUNET_YES);
4115   }
4116   else
4117   {
4118     GNUNET_break (0);
4119   }
4120   tunnel_change_state (t, MESH_TUNNEL_READY);
4121   tunnel_reset_timeout (t, GNUNET_NO);
4122   t->next_fc.last_ack_recv = (NULL == t->client) ? ntohl (msg->ack) : 0;
4123   t->prev_fc.last_ack_sent = ntohl (msg->ack);
4124
4125   /* Message for us? */
4126   if (0 == memcmp (&msg->oid, &my_full_id, sizeof (struct GNUNET_PeerIdentity)))
4127   {
4128     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  It's for us!\n");
4129     if (NULL == t->owner)
4130     {
4131       GNUNET_break_op (0);
4132       return GNUNET_OK;
4133     }
4134     if (NULL != peer_info->dhtget)
4135     {
4136       GNUNET_DHT_get_stop (peer_info->dhtget);
4137       peer_info->dhtget = NULL;
4138     }
4139     tunnel_send_ack (t, GNUNET_MESSAGE_TYPE_MESH_PATH_ACK, GNUNET_YES);
4140     tunnel_send_ack (t, GNUNET_MESSAGE_TYPE_MESH_PATH_ACK, GNUNET_NO);
4141     return GNUNET_OK;
4142   }
4143
4144   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
4145               "  not for us, retransmitting...\n");
4146   send_prebuilt_message (message, t->prev_hop, t);
4147   return GNUNET_OK;
4148 }
4149
4150
4151 /**
4152  * Core handler for notifications of broken paths
4153  *
4154  * @param cls closure
4155  * @param message message
4156  * @param peer peer identity this notification is about
4157  *
4158  * @return GNUNET_OK to keep the connection open,
4159  *         GNUNET_SYSERR to close it (signal serious error)
4160  */
4161 static int
4162 handle_mesh_path_broken (void *cls, const struct GNUNET_PeerIdentity *peer,
4163                          const struct GNUNET_MessageHeader *message)
4164 {
4165   struct GNUNET_MESH_PathBroken *msg;
4166   struct MeshTunnel *t;
4167
4168   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
4169               "Received a PATH BROKEN msg from %s\n", GNUNET_i2s (peer));
4170   msg = (struct GNUNET_MESH_PathBroken *) message;
4171   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  regarding %s\n",
4172               GNUNET_i2s (&msg->peer1));
4173   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  regarding %s\n",
4174               GNUNET_i2s (&msg->peer2));
4175   t = tunnel_get (&msg->oid, ntohl (msg->tid));
4176   if (NULL == t)
4177   {
4178     GNUNET_break_op (0);
4179     return GNUNET_OK;
4180   }
4181   tunnel_notify_connection_broken (t, GNUNET_PEER_search (&msg->peer1),
4182                                    GNUNET_PEER_search (&msg->peer2));
4183   return GNUNET_OK;
4184
4185 }
4186
4187
4188 /**
4189  * Core handler for tunnel destruction
4190  *
4191  * @param cls closure
4192  * @param message message
4193  * @param peer peer identity this notification is about
4194  *
4195  * @return GNUNET_OK to keep the connection open,
4196  *         GNUNET_SYSERR to close it (signal serious error)
4197  */
4198 static int
4199 handle_mesh_tunnel_destroy (void *cls, const struct GNUNET_PeerIdentity *peer,
4200                             const struct GNUNET_MessageHeader *message)
4201 {
4202   struct GNUNET_MESH_TunnelDestroy *msg;
4203   struct MeshTunnel *t;
4204
4205   msg = (struct GNUNET_MESH_TunnelDestroy *) message;
4206   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
4207               "Got a TUNNEL DESTROY packet from %s\n",
4208               GNUNET_i2s (peer));
4209   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
4210               "  for tunnel %s [%u]\n",
4211               GNUNET_i2s (&msg->oid), ntohl (msg->tid));
4212   t = tunnel_get (&msg->oid, ntohl (msg->tid));
4213   if (NULL == t)
4214   {
4215     /* Probably already got the message from another path,
4216      * destroyed the tunnel and retransmitted to children.
4217      * Safe to ignore.
4218      */
4219     GNUNET_STATISTICS_update (stats, "# control on unknown tunnel",
4220                               1, GNUNET_NO);
4221     return GNUNET_OK;
4222   }
4223   if (t->local_tid_dest >= GNUNET_MESH_LOCAL_TUNNEL_ID_SERV)
4224   {
4225     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "INCOMING TUNNEL %X %X\n",
4226                 t->local_tid, t->local_tid_dest);
4227   }
4228   if (GNUNET_PEER_search (peer) == t->prev_hop)
4229   {
4230     // TODO check owner's signature
4231     // TODO add owner's signatue to tunnel for retransmission
4232     peer_cancel_queues (t->prev_hop, t);
4233     GNUNET_PEER_change_rc (t->prev_hop, -1);
4234     t->prev_hop = 0;
4235   }
4236   else if (GNUNET_PEER_search (peer) == t->next_hop)
4237   {
4238     // TODO check dest's signature
4239     // TODO add dest's signatue to tunnel for retransmission
4240     peer_cancel_queues (t->next_hop, t);
4241     GNUNET_PEER_change_rc (t->next_hop, -1);
4242     t->next_hop = 0;
4243   }
4244   else
4245   {
4246     GNUNET_break_op (0);
4247     // TODO check both owner AND destination's signature to see which matches
4248     // TODO restransmit in appropriate direction
4249     return GNUNET_OK;
4250   }
4251   tunnel_destroy_empty (t);
4252
4253   // TODO: add timeout to destroy the tunnel anyway
4254   return GNUNET_OK;
4255 }
4256
4257
4258 /**
4259  * Generic handler for mesh network payload traffic.
4260  *
4261  * @param peer Peer identity this notification is about.
4262  * @param message Data message.
4263  * @param fwd Is this FWD traffic? GNUNET_YES : GNUNET_NO;
4264  *
4265  * @return GNUNET_OK to keep the connection open,
4266  *         GNUNET_SYSERR to close it (signal serious error)
4267  */
4268 static int
4269 handle_mesh_data (const struct GNUNET_PeerIdentity *peer,
4270                   const struct GNUNET_MessageHeader *message,
4271                   int fwd)
4272 {
4273   struct GNUNET_MESH_Data *msg;
4274   struct MeshFlowControl *fc;
4275   struct MeshTunnelReliability *rel;
4276   struct MeshTunnel *t;
4277   struct MeshClient *c;
4278   GNUNET_PEER_Id hop;
4279   uint32_t pid;
4280   uint32_t ttl;
4281   uint16_t type;
4282   size_t size;
4283
4284   /* Check size */
4285   size = ntohs (message->size);
4286   if (size <
4287       sizeof (struct GNUNET_MESH_Data) +
4288       sizeof (struct GNUNET_MessageHeader))
4289   {
4290     GNUNET_break (0);
4291     return GNUNET_OK;
4292   }
4293   type =ntohs (message->type);
4294   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "got a %s message from %s\n",
4295               GNUNET_MESH_DEBUG_M2S (type), GNUNET_i2s (peer));
4296   msg = (struct GNUNET_MESH_Data *) message;
4297   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, " payload of type %s\n",
4298               GNUNET_MESH_DEBUG_M2S (ntohs (msg[1].header.type)));
4299   /* Check tunnel */
4300   t = tunnel_get (&msg->oid, ntohl (msg->tid));
4301   if (NULL == t)
4302   {
4303     /* TODO notify back: we don't know this tunnel */
4304     GNUNET_STATISTICS_update (stats, "# data on unknown tunnel", 1, GNUNET_NO);
4305     GNUNET_break_op (0);
4306     return GNUNET_OK;
4307   }
4308
4309   /*  Initialize FWD/BCK data */
4310   pid = ntohl (msg->pid);
4311   fc =  fwd ? &t->prev_fc : &t->next_fc;
4312   c =   fwd ? t->client   : t->owner;
4313   rel = fwd ? t->bck_rel  : t->fwd_rel;
4314   hop = fwd ? t->next_hop : t->prev_hop;
4315   if (GMC_is_pid_bigger (pid, fc->last_ack_sent))
4316   {
4317     GNUNET_STATISTICS_update (stats, "# unsolicited data", 1, GNUNET_NO);
4318     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
4319                 "WARNING Received PID %u, (prev %u), ACK %u\n",
4320                 pid, fc->last_pid_recv, fc->last_ack_sent);
4321     return GNUNET_OK;
4322   }
4323   if (NULL != c)
4324     tunnel_change_state (t, MESH_TUNNEL_READY);
4325   tunnel_reset_timeout (t, fwd);
4326   if (NULL != c)
4327   {
4328     /* TODO signature verification */
4329     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  it's for us! sending to client\n");
4330     GNUNET_STATISTICS_update (stats, "# data received", 1, GNUNET_NO);
4331     if (GMC_is_pid_bigger (pid, fc->last_pid_recv))
4332     {
4333       uint32_t mid;
4334
4335       mid = ntohl (msg->mid);
4336       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
4337                   " pid %u (mid %u) not seen yet\n", pid, mid);
4338       fc->last_pid_recv = pid;
4339
4340       if (GNUNET_NO == t->reliable ||
4341           ( !GMC_is_pid_bigger (rel->mid_recv, mid) &&
4342             GMC_is_pid_bigger (rel->mid_recv + 64, mid) ) )
4343       {
4344         GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
4345                     "!!! RECV %u\n", ntohl (msg->mid));
4346         if (GNUNET_YES == t->reliable)
4347         {
4348           /* Is this the exact next expected messasge? */
4349           if (mid == rel->mid_recv)
4350           {
4351             GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "as expected\n");
4352             rel->mid_recv++;
4353             tunnel_send_client_data (t, msg, fwd);
4354             tunnel_send_client_buffered_data (t, c, rel);
4355           }
4356           else
4357           {
4358             GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "save for later\n");
4359             tunnel_add_buffered_data (t, msg, rel);
4360           }
4361         }
4362         else /* Tunnel unreliable, send to clients directly */
4363         {
4364           tunnel_send_client_data (t, msg, fwd);
4365         }
4366       }
4367       else
4368       {
4369         GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
4370                     " MID %u not expected (%u - %u), dropping!\n",
4371                     ntohl (msg->mid), rel->mid_recv, rel->mid_recv + 64);
4372       }
4373     }
4374     else
4375     {
4376 //       GNUNET_STATISTICS_update (stats, "# duplicate PID", 1, GNUNET_NO);
4377       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
4378                   " Pid %u not expected (%u+), dropping!\n",
4379                   pid, fc->last_pid_recv + 1);
4380     }
4381     tunnel_send_ack (t, type, fwd);
4382     return GNUNET_OK;
4383   }
4384   fc->last_pid_recv = pid;
4385   if (0 == hop)
4386   {
4387     GNUNET_STATISTICS_update (stats, "# data on dying tunnel", 1, GNUNET_NO);
4388     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "data on dying tunnel %s[%X]\n",
4389                 GNUNET_PEER_resolve2 (t->id.oid), ntohl (msg->tid));
4390     return GNUNET_OK; /* Next hop has destoyed the tunnel, drop */
4391   }
4392   ttl = ntohl (msg->ttl);
4393   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "   ttl: %u\n", ttl);
4394   if (ttl == 0)
4395   {
4396     GNUNET_STATISTICS_update (stats, "# TTL drops", 1, GNUNET_NO);
4397     GNUNET_log (GNUNET_ERROR_TYPE_WARNING, " TTL is 0, DROPPING!\n");
4398     tunnel_send_ack (t, GNUNET_MESSAGE_TYPE_MESH_ACK, fwd);
4399     return GNUNET_OK;
4400   }
4401
4402   if (myid != hop)
4403   {
4404     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  not for us, retransmitting...\n");
4405     send_prebuilt_message (message, hop, t);
4406     GNUNET_STATISTICS_update (stats, "# unicast forwarded", 1, GNUNET_NO);
4407   }
4408   return GNUNET_OK;
4409 }
4410
4411
4412 /**
4413  * Core handler for mesh network traffic going from the origin to a peer
4414  *
4415  * @param cls Closure (unused).
4416  * @param message Message received.
4417  * @param peer Peer who sent the message.
4418  *
4419  * @return GNUNET_OK to keep the connection open,
4420  *         GNUNET_SYSERR to close it (signal serious error)
4421  */
4422 static int
4423 handle_mesh_unicast (void *cls, const struct GNUNET_PeerIdentity *peer,
4424                      const struct GNUNET_MessageHeader *message)
4425 {
4426   return handle_mesh_data (peer, message, GNUNET_YES);
4427 }
4428
4429 /**
4430  * Core handler for mesh network traffic towards the owner of a tunnel.
4431  *
4432  * @param cls Closure (unused).
4433  * @param message Message received.
4434  * @param peer Peer who sent the message.
4435  *
4436  * @return GNUNET_OK to keep the connection open,
4437  *         GNUNET_SYSERR to close it (signal serious error)
4438  */
4439 static int
4440 handle_mesh_to_orig (void *cls, const struct GNUNET_PeerIdentity *peer,
4441                      const struct GNUNET_MessageHeader *message)
4442 {
4443   return handle_mesh_data (peer, message, GNUNET_NO);
4444 }
4445
4446
4447 /**
4448  * Core handler for mesh network traffic end-to-end ACKs.
4449  *
4450  * @param cls Closure.
4451  * @param message Message.
4452  * @param peer Peer identity this notification is about.
4453  *
4454  * @return GNUNET_OK to keep the connection open,
4455  *         GNUNET_SYSERR to close it (signal serious error)
4456  */
4457 static int
4458 handle_mesh_data_ack (void *cls, const struct GNUNET_PeerIdentity *peer,
4459                       const struct GNUNET_MessageHeader *message)
4460 {
4461   struct GNUNET_MESH_DataACK *msg;
4462   struct MeshTunnelReliability *rel;
4463   struct MeshReliableMessage *copy;
4464   struct MeshReliableMessage *next;
4465   struct MeshTunnel *t;
4466   GNUNET_PEER_Id id;
4467   uint32_t ack;
4468   uint16_t type;
4469   int work;
4470
4471   type = ntohs (message->type);
4472   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Got a %s message from %s!\n",
4473               GNUNET_MESH_DEBUG_M2S (type), GNUNET_i2s (peer));
4474   msg = (struct GNUNET_MESH_DataACK *) message;
4475
4476   t = tunnel_get (&msg->oid, ntohl (msg->tid));
4477   if (NULL == t)
4478   {
4479     /* TODO notify that we dont know this tunnel (whom)? */
4480     GNUNET_STATISTICS_update (stats, "# ack on unknown tunnel", 1, GNUNET_NO);
4481     return GNUNET_OK;
4482   }
4483   ack = ntohl (msg->mid);
4484   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  ACK %u\n", ack);
4485
4486   /* Is this a forward or backward ACK? */
4487   id = GNUNET_PEER_search (peer);
4488   if (t->next_hop == id && GNUNET_MESSAGE_TYPE_MESH_UNICAST_ACK == type)
4489   {
4490     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  FWD ACK\n");
4491     if (NULL == t->owner)
4492     {
4493       send_prebuilt_message (message, t->prev_hop, t);
4494       return GNUNET_OK;
4495     }
4496     rel = t->fwd_rel;
4497   }
4498   else if (t->prev_hop == id && GNUNET_MESSAGE_TYPE_MESH_TO_ORIG_ACK == type)
4499   {
4500     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  BCK ACK\n");
4501     if (NULL == t->client)
4502     {
4503       send_prebuilt_message (message, t->next_hop, t);
4504       return GNUNET_OK;
4505     }
4506     rel = t->bck_rel;
4507   }
4508   else
4509   {
4510     GNUNET_break_op (0);
4511     return GNUNET_OK;
4512   }
4513
4514   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "!!! ACK %u\n", ack);
4515   for (work = GNUNET_NO, copy = rel->head_sent; copy != NULL; copy = next)
4516   {
4517    if (GMC_is_pid_bigger (copy->mid, ack))
4518     {
4519       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "!!!  head %u, out!\n", copy->mid);
4520       tunnel_free_sent_reliable (t, msg, rel);
4521       break;
4522     }
4523     work = GNUNET_YES;
4524     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "!!!  id %u\n", copy->mid);
4525     next = copy->next;
4526     tunnel_free_reliable_message (copy);
4527   }
4528   /* Once buffers have been free'd, send ACK */
4529   tunnel_send_ack (t, type, GNUNET_MESSAGE_TYPE_MESH_UNICAST_ACK == type);
4530
4531   /* If some message was free'd, update the retransmission delay*/
4532   if (GNUNET_YES == work)
4533   {
4534     if (GNUNET_SCHEDULER_NO_TASK != rel->retry_task)
4535     {
4536       GNUNET_SCHEDULER_cancel (rel->retry_task);
4537       if (NULL == rel->head_sent)
4538       {
4539         rel->retry_task = GNUNET_SCHEDULER_NO_TASK;
4540       }
4541       else
4542       {
4543         struct GNUNET_TIME_Absolute new_target;
4544         struct GNUNET_TIME_Relative delay;
4545
4546         delay = GNUNET_TIME_relative_multiply (rel->retry_timer,
4547                                                MESH_RETRANSMIT_MARGIN);
4548         new_target = GNUNET_TIME_absolute_add (rel->head_sent->timestamp,
4549                                                delay);
4550         delay = GNUNET_TIME_absolute_get_remaining (new_target);
4551         rel->retry_task =
4552             GNUNET_SCHEDULER_add_delayed (delay,
4553                                           &tunnel_retransmit_message,
4554                                           rel);
4555       }
4556     }
4557     else
4558       GNUNET_break (0);
4559   }
4560   return GNUNET_OK;
4561 }
4562
4563 /**
4564  * Core handler for mesh network traffic point-to-point acks.
4565  *
4566  * @param cls closure
4567  * @param message message
4568  * @param peer peer identity this notification is about
4569  *
4570  * @return GNUNET_OK to keep the connection open,
4571  *         GNUNET_SYSERR to close it (signal serious error)
4572  */
4573 static int
4574 handle_mesh_ack (void *cls, const struct GNUNET_PeerIdentity *peer,
4575                  const struct GNUNET_MessageHeader *message)
4576 {
4577   struct GNUNET_MESH_ACK *msg;
4578   struct MeshTunnel *t;
4579   struct MeshFlowControl *fc;
4580   GNUNET_PEER_Id id;
4581   uint32_t ack;
4582
4583   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Got an ACK packet from %s!\n",
4584               GNUNET_i2s (peer));
4585   msg = (struct GNUNET_MESH_ACK *) message;
4586
4587   t = tunnel_get (&msg->oid, ntohl (msg->tid));
4588
4589   if (NULL == t)
4590   {
4591     /* TODO notify that we dont know this tunnel (whom)? */
4592     GNUNET_STATISTICS_update (stats, "# ack on unknown tunnel", 1, GNUNET_NO);
4593     return GNUNET_OK;
4594   }
4595   ack = ntohl (msg->pid);
4596   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  ACK %u\n", ack);
4597
4598   /* Is this a forward or backward ACK? */
4599   id = GNUNET_PEER_search (peer);
4600   if (t->next_hop == id)
4601   {
4602     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  FWD ACK\n");
4603     fc = &t->next_fc;
4604   }
4605   else if (t->prev_hop == id)
4606   {
4607     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  BCK ACK\n");
4608     fc = &t->prev_fc;
4609   }
4610   else
4611   {
4612     GNUNET_break_op (0);
4613     return GNUNET_OK;
4614   }
4615
4616   if (GNUNET_SCHEDULER_NO_TASK != fc->poll_task &&
4617       GMC_is_pid_bigger (ack, fc->last_ack_recv))
4618   {
4619     GNUNET_SCHEDULER_cancel (fc->poll_task);
4620     fc->poll_task = GNUNET_SCHEDULER_NO_TASK;
4621     fc->poll_time = GNUNET_TIME_UNIT_SECONDS;
4622   }
4623
4624   fc->last_ack_recv = ack;
4625   peer_unlock_queue (id);
4626   tunnel_change_state (t, MESH_TUNNEL_READY);
4627
4628   tunnel_send_ack (t, GNUNET_MESSAGE_TYPE_MESH_ACK, t->next_hop == id);
4629
4630   return GNUNET_OK;
4631 }
4632
4633
4634 /**
4635  * Core handler for mesh network traffic point-to-point ack polls.
4636  *
4637  * @param cls closure
4638  * @param message message
4639  * @param peer peer identity this notification is about
4640  *
4641  * @return GNUNET_OK to keep the connection open,
4642  *         GNUNET_SYSERR to close it (signal serious error)
4643  */
4644 static int
4645 handle_mesh_poll (void *cls, const struct GNUNET_PeerIdentity *peer,
4646                   const struct GNUNET_MessageHeader *message)
4647 {
4648   struct GNUNET_MESH_Poll *msg;
4649   struct MeshTunnel *t;
4650   struct MeshFlowControl *fc;
4651   GNUNET_PEER_Id id;
4652   uint32_t pid;
4653   uint32_t old;
4654
4655   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Got an POLL packet from %s!\n",
4656               GNUNET_i2s (peer));
4657
4658   msg = (struct GNUNET_MESH_Poll *) message;
4659
4660   t = tunnel_get (&msg->oid, ntohl (msg->tid));
4661
4662   if (NULL == t)
4663   {
4664     /* TODO notify that we dont know this tunnel (whom)? */
4665     GNUNET_STATISTICS_update (stats, "# poll on unknown tunnel", 1, GNUNET_NO);
4666     GNUNET_break_op (0);
4667     return GNUNET_OK;
4668   }
4669
4670   /* Is this a forward or backward ACK? */
4671   id = GNUNET_PEER_search (peer);
4672   pid = ntohl (msg->pid);
4673   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  PID %u\n", pid);
4674   if (t->next_hop == id)
4675   {
4676     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  from FWD\n");
4677     fc = &t->next_fc;
4678     old = fc->last_pid_recv;
4679   }
4680   else if (t->prev_hop == id)
4681   {
4682     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  from BCK\n");
4683     fc = &t->prev_fc;
4684     old = fc->last_pid_recv;
4685   }
4686   else
4687   {
4688     GNUNET_break (0);
4689     return GNUNET_OK;
4690   }
4691
4692   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  was %u\n", fc->last_pid_recv);
4693   fc->last_pid_recv = pid;
4694   tunnel_send_ack (t, GNUNET_MESSAGE_TYPE_MESH_POLL, t->prev_hop == id);
4695
4696   if (GNUNET_YES == t->reliable)
4697     fc->last_pid_recv = old;
4698
4699   return GNUNET_OK;
4700 }
4701
4702
4703 /**
4704  * Core handler for mesh keepalives.
4705  *
4706  * @param cls closure
4707  * @param message message
4708  * @param peer peer identity this notification is about
4709  * @return GNUNET_OK to keep the connection open,
4710  *         GNUNET_SYSERR to close it (signal serious error)
4711  *
4712  * TODO: Check who we got this from, to validate route.
4713  */
4714 static int
4715 handle_mesh_keepalive (void *cls, const struct GNUNET_PeerIdentity *peer,
4716                        const struct GNUNET_MessageHeader *message)
4717 {
4718   struct GNUNET_MESH_TunnelKeepAlive *msg;
4719   struct MeshTunnel *t;
4720   struct MeshClient *c;
4721   GNUNET_PEER_Id hop;
4722   int fwd;
4723
4724   msg = (struct GNUNET_MESH_TunnelKeepAlive *) message;
4725   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "got a keepalive packet from %s\n",
4726               GNUNET_i2s (peer));
4727
4728   t = tunnel_get (&msg->oid, ntohl (msg->tid));
4729   if (NULL == t)
4730   {
4731     /* TODO notify that we dont know that tunnel */
4732     GNUNET_STATISTICS_update (stats, "# keepalive on unknown tunnel", 1,
4733                               GNUNET_NO);
4734     return GNUNET_OK;
4735   }
4736
4737   fwd = GNUNET_MESSAGE_TYPE_MESH_FWD_KEEPALIVE == ntohs (message->type) ? 
4738         GNUNET_YES : GNUNET_NO;
4739   c   = fwd ? t->client   : t->owner;
4740   hop = fwd ? t->next_hop : t->prev_hop;
4741
4742   if (NULL != c)
4743     tunnel_change_state (t, MESH_TUNNEL_READY);
4744   tunnel_reset_timeout (t, fwd);
4745   if (NULL != c || 0 == hop || myid == hop)
4746     return GNUNET_OK;
4747
4748   GNUNET_STATISTICS_update (stats, "# keepalives forwarded", 1, GNUNET_NO);
4749   send_prebuilt_message (message, hop, t);
4750   return GNUNET_OK;
4751   }
4752
4753
4754
4755 /**
4756  * Functions to handle messages from core
4757  */
4758 static struct GNUNET_CORE_MessageHandler core_handlers[] = {
4759   {&handle_mesh_path_create, GNUNET_MESSAGE_TYPE_MESH_PATH_CREATE, 0},
4760   {&handle_mesh_path_broken, GNUNET_MESSAGE_TYPE_MESH_PATH_BROKEN,
4761    sizeof (struct GNUNET_MESH_PathBroken)},
4762   {&handle_mesh_tunnel_destroy, GNUNET_MESSAGE_TYPE_MESH_TUNNEL_DESTROY,
4763    sizeof (struct GNUNET_MESH_TunnelDestroy)},
4764   {&handle_mesh_unicast, GNUNET_MESSAGE_TYPE_MESH_UNICAST, 0},
4765   {&handle_mesh_to_orig, GNUNET_MESSAGE_TYPE_MESH_TO_ORIGIN, 0},
4766   {&handle_mesh_data_ack, GNUNET_MESSAGE_TYPE_MESH_UNICAST_ACK,
4767     sizeof (struct GNUNET_MESH_DataACK)},
4768   {&handle_mesh_data_ack, GNUNET_MESSAGE_TYPE_MESH_TO_ORIG_ACK,
4769     sizeof (struct GNUNET_MESH_DataACK)},
4770   {&handle_mesh_keepalive, GNUNET_MESSAGE_TYPE_MESH_FWD_KEEPALIVE,
4771     sizeof (struct GNUNET_MESH_TunnelKeepAlive)},
4772   {&handle_mesh_keepalive, GNUNET_MESSAGE_TYPE_MESH_BCK_KEEPALIVE,
4773     sizeof (struct GNUNET_MESH_TunnelKeepAlive)},
4774   {&handle_mesh_ack, GNUNET_MESSAGE_TYPE_MESH_ACK,
4775     sizeof (struct GNUNET_MESH_ACK)},
4776   {&handle_mesh_poll, GNUNET_MESSAGE_TYPE_MESH_POLL,
4777     sizeof (struct GNUNET_MESH_Poll)},
4778   {&handle_mesh_path_ack, GNUNET_MESSAGE_TYPE_MESH_PATH_ACK,
4779    sizeof (struct GNUNET_MESH_PathACK)},
4780   {NULL, 0, 0}
4781 };
4782
4783
4784 /**
4785  * Function to process paths received for a new peer addition. The recorded
4786  * paths form the initial tunnel, which can be optimized later.
4787  * Called on each result obtained for the DHT search.
4788  *
4789  * @param cls closure
4790  * @param exp when will this value expire
4791  * @param key key of the result
4792  * @param get_path path of the get request
4793  * @param get_path_length lenght of get_path
4794  * @param put_path path of the put request
4795  * @param put_path_length length of the put_path
4796  * @param type type of the result
4797  * @param size number of bytes in data
4798  * @param data pointer to the result data
4799  */
4800 static void
4801 dht_get_id_handler (void *cls, struct GNUNET_TIME_Absolute exp,
4802                     const struct GNUNET_HashCode * key,
4803                     const struct GNUNET_PeerIdentity *get_path,
4804                     unsigned int get_path_length,
4805                     const struct GNUNET_PeerIdentity *put_path,
4806                     unsigned int put_path_length, enum GNUNET_BLOCK_Type type,
4807                     size_t size, const void *data)
4808 {
4809   struct MeshPeerInfo *peer = cls;
4810   struct MeshPeerPath *p;
4811   struct GNUNET_PeerIdentity pi;
4812   int i;
4813
4814   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Got results from DHT!\n");
4815   GNUNET_PEER_resolve (peer->id, &pi);
4816   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  for %s\n", GNUNET_i2s (&pi));
4817
4818   p = path_build_from_dht (get_path, get_path_length,
4819                            put_path, put_path_length);
4820   path_add_to_peers (p, GNUNET_NO);
4821   path_destroy (p);
4822   for (i = 0; i < peer->ntunnels; i++)
4823   {
4824     struct GNUNET_PeerIdentity id;
4825
4826     GNUNET_PEER_resolve (peer->tunnels[i]->id.oid, &id);
4827     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, " ... tunnel %s:%X (%X / %X)\n",
4828                 GNUNET_i2s (&id), peer->tunnels[i]->id.tid,
4829                 peer->tunnels[i]->local_tid, 
4830                 peer->tunnels[i]->local_tid_dest);
4831     if (peer->tunnels[i]->state == MESH_TUNNEL_SEARCHING)
4832     {
4833       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, " ... connect!\n");
4834       peer_connect (peer, peer->tunnels[i]);
4835     }
4836   }
4837
4838   return;
4839 }
4840
4841
4842 /******************************************************************************/
4843 /*********************       MESH LOCAL HANDLES      **************************/
4844 /******************************************************************************/
4845
4846
4847 /**
4848  * Handler for client connection.
4849  *
4850  * @param cls Closure (unused).
4851  * @param client Client handler.
4852  */
4853 static void
4854 handle_local_client_connect (void *cls, struct GNUNET_SERVER_Client *client)
4855 {
4856   struct MeshClient *c;
4857
4858   if (NULL == client)
4859     return;
4860   c = GNUNET_malloc (sizeof (struct MeshClient));
4861   c->handle = client;
4862   GNUNET_SERVER_client_keep (client);
4863   GNUNET_SERVER_client_set_user_context (client, c);
4864   GNUNET_CONTAINER_DLL_insert (clients_head, clients_tail, c);
4865 }
4866
4867
4868 /**
4869  * Handler for client disconnection
4870  *
4871  * @param cls closure
4872  * @param client identification of the client; NULL
4873  *        for the last call when the server is destroyed
4874  */
4875 static void
4876 handle_local_client_disconnect (void *cls, struct GNUNET_SERVER_Client *client)
4877 {
4878   struct MeshClient *c;
4879   struct MeshClient *next;
4880
4881   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "client disconnected: %p\n", client);
4882   if (client == NULL)
4883   {
4884     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "   (SERVER DOWN)\n");
4885     return;
4886   }
4887
4888   c = client_get (client);
4889   if (NULL != c)
4890   {
4891     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "matching client found (%u, %p)\n",
4892                 c->id, c);
4893     GNUNET_SERVER_client_drop (c->handle);
4894     c->shutting_down = GNUNET_YES;
4895     if (NULL != c->own_tunnels)
4896     {
4897       GNUNET_CONTAINER_multihashmap32_iterate (c->own_tunnels,
4898                                                &tunnel_destroy_iterator, c);
4899       GNUNET_CONTAINER_multihashmap32_destroy (c->own_tunnels);
4900     }
4901
4902     if (NULL != c->incoming_tunnels)
4903     {
4904       GNUNET_CONTAINER_multihashmap32_iterate (c->incoming_tunnels,
4905                                                &tunnel_destroy_iterator, c);
4906       GNUNET_CONTAINER_multihashmap32_destroy (c->incoming_tunnels);
4907     }
4908
4909     if (NULL != c->ports)
4910     {
4911       GNUNET_CONTAINER_multihashmap32_iterate (c->ports,
4912                                                &client_release_ports, c);
4913       GNUNET_CONTAINER_multihashmap32_destroy (c->ports);
4914     }
4915     next = c->next;
4916     GNUNET_CONTAINER_DLL_remove (clients_head, clients_tail, c);
4917     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  client free (%p)\n", c);
4918     GNUNET_free (c);
4919     GNUNET_STATISTICS_update (stats, "# clients", -1, GNUNET_NO);
4920     c = next;
4921   }
4922   else
4923   {
4924     GNUNET_log (GNUNET_ERROR_TYPE_WARNING, " context NULL!\n");
4925   }
4926   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "done!\n");
4927   return;
4928 }
4929
4930
4931 /**
4932  * Handler for new clients
4933  *
4934  * @param cls closure
4935  * @param client identification of the client
4936  * @param message the actual message, which includes messages the client wants
4937  */
4938 static void
4939 handle_local_new_client (void *cls, struct GNUNET_SERVER_Client *client,
4940                          const struct GNUNET_MessageHeader *message)
4941 {
4942   struct GNUNET_MESH_ClientConnect *cc_msg;
4943   struct MeshClient *c;
4944   unsigned int size;
4945   uint32_t *p;
4946   unsigned int i;
4947
4948   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "new client connected %p\n", client);
4949
4950   /* Check data sanity */
4951   size = ntohs (message->size) - sizeof (struct GNUNET_MESH_ClientConnect);
4952   cc_msg = (struct GNUNET_MESH_ClientConnect *) message;
4953   if (0 != (size % sizeof (uint32_t)))
4954   {
4955     GNUNET_break (0);
4956     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
4957     return;
4958   }
4959   size /= sizeof (uint32_t);
4960
4961   /* Initialize new client structure */
4962   c = GNUNET_SERVER_client_get_user_context (client, struct MeshClient);
4963   c->id = next_client_id++; /* overflow not important: just for debug */
4964   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  client id %u\n", c->id);
4965   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  client has %u ports\n", size);
4966   if (size > 0)
4967   {
4968     uint32_t u32;
4969
4970     p = (uint32_t *) &cc_msg[1];
4971     c->ports = GNUNET_CONTAINER_multihashmap32_create (size);
4972     for (i = 0; i < size; i++)
4973     {
4974       u32 = ntohl (p[i]);
4975       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "    port: %u\n", u32);
4976
4977       /* store in client's hashmap */
4978       GNUNET_CONTAINER_multihashmap32_put (c->ports, u32, c,
4979                                            GNUNET_CONTAINER_MULTIHASHMAPOPTION_UNIQUE_FAST);
4980       /* store in global hashmap */
4981       /* FIXME only allow one client to have the port open,
4982        *       have a backup hashmap with waiting clients */
4983       GNUNET_CONTAINER_multihashmap32_put (ports, u32, c,
4984                                            GNUNET_CONTAINER_MULTIHASHMAPOPTION_MULTIPLE);
4985     }
4986   }
4987
4988   c->own_tunnels = GNUNET_CONTAINER_multihashmap32_create (32);
4989   c->incoming_tunnels = GNUNET_CONTAINER_multihashmap32_create (32);
4990   GNUNET_SERVER_notification_context_add (nc, client);
4991   GNUNET_STATISTICS_update (stats, "# clients", 1, GNUNET_NO);
4992
4993   GNUNET_SERVER_receive_done (client, GNUNET_OK);
4994   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "new client processed\n");
4995 }
4996
4997
4998 /**
4999  * Handler for requests of new tunnels
5000  *
5001  * @param cls Closure.
5002  * @param client Identification of the client.
5003  * @param message The actual message.
5004  */
5005 static void
5006 handle_local_tunnel_create (void *cls, struct GNUNET_SERVER_Client *client,
5007                             const struct GNUNET_MessageHeader *message)
5008 {
5009   struct GNUNET_MESH_TunnelMessage *t_msg;
5010   struct MeshPeerInfo *peer_info;
5011   struct MeshTunnel *t;
5012   struct MeshClient *c;
5013   MESH_TunnelNumber tid;
5014
5015   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "new tunnel requested\n");
5016
5017   /* Sanity check for client registration */
5018   if (NULL == (c = client_get (client)))
5019   {
5020     GNUNET_break (0);
5021     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
5022     return;
5023   }
5024   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  by client %u\n", c->id);
5025
5026   /* Message size sanity check */
5027   if (sizeof (struct GNUNET_MESH_TunnelMessage) != ntohs (message->size))
5028   {
5029     GNUNET_break (0);
5030     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
5031     return;
5032   }
5033
5034   t_msg = (struct GNUNET_MESH_TunnelMessage *) message;
5035   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  towards %s\n",
5036               GNUNET_i2s (&t_msg->peer));
5037   tid = ntohl (t_msg->tunnel_id);
5038   /* Sanity check for duplicate tunnel IDs */
5039   if (NULL != tunnel_get_by_local_id (c, tid))
5040   {
5041     GNUNET_break (0);
5042     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
5043     return;
5044   }
5045
5046   /* Create tunnel */
5047   while (NULL != tunnel_get_by_pi (myid, next_tid))
5048     next_tid = (next_tid + 1) & ~GNUNET_MESH_LOCAL_TUNNEL_ID_CLI;
5049   t = tunnel_new (myid, next_tid, c, tid);
5050   next_tid = (next_tid + 1) & ~GNUNET_MESH_LOCAL_TUNNEL_ID_CLI;
5051   if (NULL == t)
5052   {
5053     GNUNET_break (0);
5054     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
5055     return;
5056   }
5057   t->port = ntohl (t_msg->port);
5058   tunnel_set_options (t, ntohl (t_msg->opt));
5059   if (GNUNET_YES == t->reliable)
5060   {
5061     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "!!! Reliable\n");
5062     t->fwd_rel = GNUNET_malloc (sizeof (struct MeshTunnelReliability));
5063     t->fwd_rel->t = t;
5064     t->fwd_rel->expected_delay = MESH_RETRANSMIT_TIME;
5065   }
5066
5067   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "CREATED TUNNEL %s[%x]:%u (%x)\n",
5068               GNUNET_i2s (&my_full_id), t->id.tid, t->port, t->local_tid);
5069
5070   peer_info = peer_get (&t_msg->peer);
5071   peer_info_add_tunnel (peer_info, t);
5072   peer_connect (peer_info, t);
5073   tunnel_reset_timeout (t, GNUNET_YES);
5074   GNUNET_SERVER_receive_done (client, GNUNET_OK);
5075   return;
5076 }
5077
5078
5079 /**
5080  * Handler for requests of deleting tunnels
5081  *
5082  * @param cls closure
5083  * @param client identification of the client
5084  * @param message the actual message
5085  */
5086 static void
5087 handle_local_tunnel_destroy (void *cls, struct GNUNET_SERVER_Client *client,
5088                              const struct GNUNET_MessageHeader *message)
5089 {
5090   struct GNUNET_MESH_TunnelMessage *tunnel_msg;
5091   struct MeshClient *c;
5092   struct MeshTunnel *t;
5093   MESH_TunnelNumber tid;
5094
5095   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
5096               "Got a DESTROY TUNNEL from client!\n");
5097
5098   /* Sanity check for client registration */
5099   if (NULL == (c = client_get (client)))
5100   {
5101     GNUNET_break (0);
5102     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
5103     return;
5104   }
5105   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  by client %u\n", c->id);
5106
5107   /* Message sanity check */
5108   if (sizeof (struct GNUNET_MESH_TunnelMessage) != ntohs (message->size))
5109   {
5110     GNUNET_break (0);
5111     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
5112     return;
5113   }
5114
5115   tunnel_msg = (struct GNUNET_MESH_TunnelMessage *) message;
5116
5117   /* Retrieve tunnel */
5118   tid = ntohl (tunnel_msg->tunnel_id);
5119   t = tunnel_get_by_local_id (c, tid);
5120   if (NULL == t)
5121   {
5122     GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "  tunnel %X not found\n", tid);
5123     GNUNET_break (0);
5124     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
5125     return;
5126   }
5127
5128   /* Cleanup after the tunnel */
5129   client_delete_tunnel (c, t);
5130   if (c == t->client && GNUNET_MESH_LOCAL_TUNNEL_ID_SERV <= tid)
5131   {
5132     t->client = NULL;
5133   }
5134   else if (c == t->owner && GNUNET_MESH_LOCAL_TUNNEL_ID_SERV > tid)
5135   {
5136     peer_info_remove_tunnel (peer_get_short (t->dest), t);
5137     t->owner = NULL;
5138   }
5139   else 
5140   {
5141     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
5142                 "  tunnel %X client %p (%p, %p)\n",
5143                 tid, c, t->owner, t->client);
5144     GNUNET_break (0);
5145   }
5146
5147   /* The tunnel will be destroyed when the last message is transmitted. */
5148   tunnel_destroy_empty (t);
5149
5150   GNUNET_SERVER_receive_done (client, GNUNET_OK);
5151   return;
5152 }
5153
5154
5155 /**
5156  * Handler for client traffic
5157  *
5158  * @param cls closure
5159  * @param client identification of the client
5160  * @param message the actual message
5161  */
5162 static void
5163 handle_local_data (void *cls, struct GNUNET_SERVER_Client *client,
5164                    const struct GNUNET_MessageHeader *message)
5165 {
5166   struct GNUNET_MESH_LocalData *data_msg;
5167   struct MeshClient *c;
5168   struct MeshTunnel *t;
5169   struct MeshFlowControl *fc;
5170   MESH_TunnelNumber tid;
5171   size_t size;
5172
5173   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
5174               "Got data from a client!\n");
5175
5176   /* Sanity check for client registration */
5177   if (NULL == (c = client_get (client)))
5178   {
5179     GNUNET_break (0);
5180     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
5181     return;
5182   }
5183   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  by client %u\n", c->id);
5184
5185   data_msg = (struct GNUNET_MESH_LocalData *) message;
5186
5187   /* Sanity check for message size */
5188   size = ntohs (message->size) - sizeof (struct GNUNET_MESH_LocalData);
5189   if (size < sizeof (struct GNUNET_MessageHeader))
5190   {
5191     GNUNET_break (0);
5192     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
5193     return;
5194   }
5195
5196   /* Tunnel exists? */
5197   tid = ntohl (data_msg->tid);
5198   t = tunnel_get_by_local_id (c, tid);
5199   if (NULL == t)
5200   {
5201     GNUNET_break (0);
5202     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
5203     return;
5204   }
5205
5206   /* Is the client in the tunnel? */
5207   if ( !( (tid < GNUNET_MESH_LOCAL_TUNNEL_ID_SERV &&
5208            t->owner &&
5209            t->owner->handle == client)
5210          ||
5211           (tid >= GNUNET_MESH_LOCAL_TUNNEL_ID_SERV &&
5212            t->client && 
5213            t->client->handle == client) ) )
5214   {
5215     GNUNET_break (0);
5216     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
5217     return;
5218   }
5219
5220   /* Ok, everything is correct, send the message
5221    * (pretend we got it from a mesh peer)
5222    */
5223   {
5224     struct GNUNET_MESH_Data *payload;
5225     char cbuf[sizeof(struct GNUNET_MESH_Data) + size];
5226
5227     fc = tid < GNUNET_MESH_LOCAL_TUNNEL_ID_SERV ? &t->prev_fc : &t->next_fc;
5228     if (GNUNET_YES == t->reliable)
5229     {
5230       struct MeshTunnelReliability *rel;
5231       struct MeshReliableMessage *copy;
5232
5233       rel = (tid < GNUNET_MESH_LOCAL_TUNNEL_ID_SERV) ? t->fwd_rel : t->bck_rel;
5234       copy = GNUNET_malloc (sizeof (struct MeshReliableMessage)
5235                             + sizeof(struct GNUNET_MESH_Data)
5236                             + size);
5237       copy->mid = rel->mid_sent++;
5238       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "!!! DATA %u\n", copy->mid);
5239       copy->timestamp = GNUNET_TIME_absolute_get ();
5240       copy->rel = rel;
5241       rel->n_sent++;
5242       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, " n_sent %u\n", rel->n_sent);
5243       GNUNET_CONTAINER_DLL_insert_tail (rel->head_sent, rel->tail_sent, copy);
5244       if (GNUNET_SCHEDULER_NO_TASK == rel->retry_task)
5245       {
5246         rel->retry_timer =
5247             GNUNET_TIME_relative_multiply (rel->expected_delay,
5248                                            MESH_RETRANSMIT_MARGIN);
5249         rel->retry_task =
5250             GNUNET_SCHEDULER_add_delayed (rel->retry_timer,
5251                                           &tunnel_retransmit_message,
5252                                           rel);
5253       }
5254       payload = (struct GNUNET_MESH_Data *) &copy[1];
5255       payload->mid = htonl (copy->mid);
5256     }
5257     else
5258     {
5259       payload = (struct GNUNET_MESH_Data *) cbuf;
5260       payload->mid = htonl (fc->last_pid_recv + 1);
5261     }
5262     memcpy (&payload[1], &data_msg[1], size);
5263     payload->header.size = htons (sizeof (struct GNUNET_MESH_Data) + size);
5264     payload->header.type = htons (tid < GNUNET_MESH_LOCAL_TUNNEL_ID_SERV ?
5265                                   GNUNET_MESSAGE_TYPE_MESH_UNICAST :
5266                                   GNUNET_MESSAGE_TYPE_MESH_TO_ORIGIN);
5267     GNUNET_PEER_resolve(t->id.oid, &payload->oid);;
5268     payload->tid = htonl (t->id.tid);
5269     payload->ttl = htonl (default_ttl);
5270     payload->pid = htonl (fc->last_pid_recv + 1);
5271     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
5272                 "  calling generic handler...\n");
5273     if (tid < GNUNET_MESH_LOCAL_TUNNEL_ID_SERV)
5274       handle_mesh_unicast (NULL, &my_full_id, &payload->header);
5275     else
5276       handle_mesh_to_orig (NULL, &my_full_id, &payload->header);
5277   }
5278   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "receive done OK\n");
5279   GNUNET_SERVER_receive_done (client, GNUNET_OK);
5280
5281   return;
5282 }
5283
5284
5285 /**
5286  * Handler for client's ACKs for payload traffic.
5287  *
5288  * @param cls Closure (unused).
5289  * @param client Identification of the client.
5290  * @param message The actual message.
5291  */
5292 static void
5293 handle_local_ack (void *cls, struct GNUNET_SERVER_Client *client,
5294                   const struct GNUNET_MessageHeader *message)
5295 {
5296   struct GNUNET_MESH_LocalAck *msg;
5297   struct MeshTunnel *t;
5298   struct MeshClient *c;
5299   MESH_TunnelNumber tid;
5300
5301   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Got a local ACK\n");
5302   /* Sanity check for client registration */
5303   if (NULL == (c = client_get (client)))
5304   {
5305     GNUNET_break (0);
5306     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
5307     return;
5308   }
5309   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  by client %u\n", c->id);
5310
5311   msg = (struct GNUNET_MESH_LocalAck *) message;
5312
5313   /* Tunnel exists? */
5314   tid = ntohl (msg->tunnel_id);
5315   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  on tunnel %X\n", tid);
5316   t = tunnel_get_by_local_id (c, tid);
5317   if (NULL == t)
5318   {
5319     GNUNET_break (0);
5320     GNUNET_log (GNUNET_ERROR_TYPE_WARNING, "Tunnel %X unknown.\n", tid);
5321     GNUNET_log (GNUNET_ERROR_TYPE_WARNING, "  for client %u.\n", c->id);
5322     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
5323     return;
5324   }
5325
5326   /* Does client own tunnel? I.E: Is this an ACK for BCK traffic? */
5327   if (tid < GNUNET_MESH_LOCAL_TUNNEL_ID_SERV)
5328   {
5329     /* The client owns the tunnel, ACK is for data to_origin, send BCK ACK. */
5330     t->prev_fc.last_ack_recv++;
5331     tunnel_send_ack (t, GNUNET_MESSAGE_TYPE_MESH_LOCAL_ACK, GNUNET_NO);
5332   }
5333   else
5334   {
5335     /* The client doesn't own the tunnel, this ACK is for FWD traffic. */
5336     t->next_fc.last_ack_recv++;
5337     tunnel_send_ack (t, GNUNET_MESSAGE_TYPE_MESH_LOCAL_ACK, GNUNET_YES);
5338   }
5339
5340   GNUNET_SERVER_receive_done (client, GNUNET_OK);
5341
5342   return;
5343 }
5344
5345
5346
5347 /**
5348  * Iterator over all tunnels to send a monitoring client info about each tunnel.
5349  *
5350  * @param cls Closure (client handle).
5351  * @param key Key (hashed tunnel ID, unused).
5352  * @param value Tunnel info.
5353  *
5354  * @return GNUNET_YES, to keep iterating.
5355  */
5356 static int
5357 monitor_all_tunnels_iterator (void *cls,
5358                               const struct GNUNET_HashCode * key,
5359                               void *value)
5360 {
5361   struct GNUNET_SERVER_Client *client = cls;
5362   struct MeshTunnel *t = value;
5363   struct GNUNET_MESH_LocalMonitor *msg;
5364
5365   msg = GNUNET_malloc (sizeof(struct GNUNET_MESH_LocalMonitor));
5366   GNUNET_PEER_resolve(t->id.oid, &msg->owner);
5367   msg->tunnel_id = htonl (t->id.tid);
5368   msg->header.size = htons (sizeof (struct GNUNET_MESH_LocalMonitor));
5369   msg->header.type = htons (GNUNET_MESSAGE_TYPE_MESH_LOCAL_INFO_TUNNELS);
5370   GNUNET_PEER_resolve (t->dest, &msg->destination);
5371
5372   GNUNET_log (GNUNET_ERROR_TYPE_INFO,
5373               "*  sending info about tunnel %s [%u]\n",
5374               GNUNET_i2s (&msg->owner), t->id.tid);
5375
5376   GNUNET_SERVER_notification_context_unicast (nc, client,
5377                                               &msg->header, GNUNET_NO);
5378   return GNUNET_YES;
5379 }
5380
5381
5382 /**
5383  * Handler for client's MONITOR request.
5384  *
5385  * @param cls Closure (unused).
5386  * @param client Identification of the client.
5387  * @param message The actual message.
5388  */
5389 static void
5390 handle_local_get_tunnels (void *cls, struct GNUNET_SERVER_Client *client,
5391                           const struct GNUNET_MessageHeader *message)
5392 {
5393   struct MeshClient *c;
5394
5395   /* Sanity check for client registration */
5396   if (NULL == (c = client_get (client)))
5397   {
5398     GNUNET_break (0);
5399     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
5400     return;
5401   }
5402
5403   GNUNET_log (GNUNET_ERROR_TYPE_INFO,
5404               "Received get tunnels request from client %u\n",
5405               c->id);
5406   GNUNET_CONTAINER_multihashmap_iterate (tunnels,
5407                                          monitor_all_tunnels_iterator,
5408                                          client);
5409   GNUNET_log (GNUNET_ERROR_TYPE_INFO,
5410               "Get tunnels request from client %u completed\n",
5411               c->id);
5412   GNUNET_SERVER_receive_done (client, GNUNET_OK);
5413 }
5414
5415
5416 /**
5417  * Handler for client's MONITOR_TUNNEL request.
5418  *
5419  * @param cls Closure (unused).
5420  * @param client Identification of the client.
5421  * @param message The actual message.
5422  */
5423 static void
5424 handle_local_show_tunnel (void *cls, struct GNUNET_SERVER_Client *client,
5425                           const struct GNUNET_MessageHeader *message)
5426 {
5427   const struct GNUNET_MESH_LocalMonitor *msg;
5428   struct GNUNET_MESH_LocalMonitor *resp;
5429   struct MeshClient *c;
5430   struct MeshTunnel *t;
5431
5432   /* Sanity check for client registration */
5433   if (NULL == (c = client_get (client)))
5434   {
5435     GNUNET_break (0);
5436     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
5437     return;
5438   }
5439
5440   msg = (struct GNUNET_MESH_LocalMonitor *) message;
5441   GNUNET_log (GNUNET_ERROR_TYPE_INFO,
5442               "Received tunnel info request from client %u for tunnel %s[%X]\n",
5443               c->id,
5444               &msg->owner,
5445               ntohl (msg->tunnel_id));
5446   t = tunnel_get (&msg->owner, ntohl (msg->tunnel_id));
5447   if (NULL == t)
5448   {
5449     /* We don't know the tunnel FIXME */
5450     struct GNUNET_MESH_LocalMonitor warn;
5451
5452     warn = *msg;
5453     GNUNET_SERVER_notification_context_unicast (nc, client,
5454                                                 &warn.header,
5455                                                 GNUNET_NO);
5456     GNUNET_SERVER_receive_done (client, GNUNET_OK);
5457     return;
5458   }
5459
5460   /* Initialize context */
5461   resp = GNUNET_malloc (sizeof (struct GNUNET_MESH_LocalMonitor));
5462   *resp = *msg;
5463   GNUNET_PEER_resolve (t->dest, &resp->destination);
5464   resp->header.size = htons (sizeof (struct GNUNET_MESH_LocalMonitor));
5465   GNUNET_SERVER_notification_context_unicast (nc, c->handle,
5466                                               &resp->header, GNUNET_NO);
5467   GNUNET_free (resp);
5468
5469   GNUNET_log (GNUNET_ERROR_TYPE_INFO,
5470               "Monitor tunnel request from client %u completed\n",
5471               c->id);
5472   GNUNET_SERVER_receive_done (client, GNUNET_OK);
5473 }
5474
5475
5476 /**
5477  * Functions to handle messages from clients
5478  */
5479 static struct GNUNET_SERVER_MessageHandler client_handlers[] = {
5480   {&handle_local_new_client, NULL,
5481    GNUNET_MESSAGE_TYPE_MESH_LOCAL_CONNECT, 0},
5482   {&handle_local_tunnel_create, NULL,
5483    GNUNET_MESSAGE_TYPE_MESH_LOCAL_TUNNEL_CREATE,
5484    sizeof (struct GNUNET_MESH_TunnelMessage)},
5485   {&handle_local_tunnel_destroy, NULL,
5486    GNUNET_MESSAGE_TYPE_MESH_LOCAL_TUNNEL_DESTROY,
5487    sizeof (struct GNUNET_MESH_TunnelMessage)},
5488   {&handle_local_data, NULL,
5489    GNUNET_MESSAGE_TYPE_MESH_LOCAL_DATA, 0},
5490   {&handle_local_ack, NULL,
5491    GNUNET_MESSAGE_TYPE_MESH_LOCAL_ACK,
5492    sizeof (struct GNUNET_MESH_LocalAck)},
5493   {&handle_local_get_tunnels, NULL,
5494    GNUNET_MESSAGE_TYPE_MESH_LOCAL_INFO_TUNNELS,
5495    sizeof (struct GNUNET_MessageHeader)},
5496   {&handle_local_show_tunnel, NULL,
5497    GNUNET_MESSAGE_TYPE_MESH_LOCAL_INFO_TUNNEL,
5498      sizeof (struct GNUNET_MESH_LocalMonitor)},
5499   {NULL, NULL, 0, 0}
5500 };
5501
5502
5503 /**
5504  * Method called whenever a given peer connects.
5505  *
5506  * @param cls closure
5507  * @param peer peer identity this notification is about
5508  */
5509 static void
5510 core_connect (void *cls, const struct GNUNET_PeerIdentity *peer)
5511 {
5512   struct MeshPeerInfo *peer_info;
5513   struct MeshPeerPath *path;
5514
5515   DEBUG_CONN ("Peer connected\n");
5516   DEBUG_CONN ("     %s\n", GNUNET_i2s (&my_full_id));
5517   peer_info = peer_get (peer);
5518   if (myid == peer_info->id)
5519   {
5520     DEBUG_CONN ("     (self)\n");
5521     path = path_new (1);
5522   }
5523   else
5524   {
5525     DEBUG_CONN ("     %s\n", GNUNET_i2s (peer));
5526     path = path_new (2);
5527     path->peers[1] = peer_info->id;
5528     GNUNET_PEER_change_rc (peer_info->id, 1);
5529     GNUNET_STATISTICS_update (stats, "# peers", 1, GNUNET_NO);
5530   }
5531   path->peers[0] = myid;
5532   GNUNET_PEER_change_rc (myid, 1);
5533   peer_info_add_path (peer_info, path, GNUNET_YES);
5534   return;
5535 }
5536
5537
5538 /**
5539  * Method called whenever a peer disconnects.
5540  *
5541  * @param cls closure
5542  * @param peer peer identity this notification is about
5543  */
5544 static void
5545 core_disconnect (void *cls, const struct GNUNET_PeerIdentity *peer)
5546 {
5547   struct MeshPeerInfo *pi;
5548   struct MeshPeerQueue *q;
5549   struct MeshPeerQueue *n;
5550
5551   DEBUG_CONN ("Peer disconnected\n");
5552   pi = GNUNET_CONTAINER_multihashmap_get (peers, &peer->hashPubKey);
5553   if (NULL == pi)
5554   {
5555     GNUNET_break (0);
5556     return;
5557   }
5558   q = pi->queue_head;
5559   while (NULL != q)
5560   {
5561       n = q->next;
5562       /* TODO try to reroute this traffic instead */
5563       queue_destroy(q, GNUNET_YES);
5564       q = n;
5565   }
5566   if (NULL != pi->core_transmit)
5567   {
5568     GNUNET_CORE_notify_transmit_ready_cancel(pi->core_transmit);
5569     pi->core_transmit = NULL;
5570   }
5571     peer_info_remove_path (pi, pi->id, myid);
5572   if (myid == pi->id)
5573   {
5574     DEBUG_CONN ("     (self)\n");
5575   }
5576   GNUNET_STATISTICS_update (stats, "# peers", -1, GNUNET_NO);
5577   return;
5578 }
5579
5580
5581 /**
5582  * Install server (service) handlers and start listening to clients.
5583  */
5584 static void
5585 server_init (void)
5586 {
5587   GNUNET_SERVER_add_handlers (server_handle, client_handlers);
5588   GNUNET_SERVER_connect_notify (server_handle,
5589                                 &handle_local_client_connect, NULL);
5590   GNUNET_SERVER_disconnect_notify (server_handle,
5591                                    &handle_local_client_disconnect, NULL);
5592   nc = GNUNET_SERVER_notification_context_create (server_handle, 1);
5593
5594   clients_head = NULL;
5595   clients_tail = NULL;
5596   next_client_id = 0;
5597   GNUNET_SERVER_resume (server_handle);
5598 }
5599
5600
5601 /**
5602  * To be called on core init/fail.
5603  *
5604  * @param cls Closure (config)
5605  * @param server handle to the server for this service
5606  * @param identity the public identity of this peer
5607  */
5608 static void
5609 core_init (void *cls, struct GNUNET_CORE_Handle *server,
5610            const struct GNUNET_PeerIdentity *identity)
5611 {
5612   const struct GNUNET_CONFIGURATION_Handle *c = cls;
5613   static int i = 0;
5614
5615   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Core init\n");
5616   GNUNET_break (core_handle == server);
5617   if (0 != memcmp (identity, &my_full_id, sizeof (my_full_id)) ||
5618     NULL == server)
5619   {
5620     GNUNET_log (GNUNET_ERROR_TYPE_ERROR, _("Wrong CORE service\n"));
5621     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
5622                 " core id %s\n",
5623                 GNUNET_i2s (identity));
5624     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
5625                 " my id %s\n",
5626                 GNUNET_i2s (&my_full_id));
5627     GNUNET_CORE_disconnect (core_handle);
5628     core_handle = GNUNET_CORE_connect (c, /* Main configuration */
5629                                        NULL,      /* Closure passed to MESH functions */
5630                                        &core_init,        /* Call core_init once connected */
5631                                        &core_connect,     /* Handle connects */
5632                                        &core_disconnect,  /* remove peers on disconnects */
5633                                        NULL,      /* Don't notify about all incoming messages */
5634                                        GNUNET_NO, /* For header only in notification */
5635                                        NULL,      /* Don't notify about all outbound messages */
5636                                        GNUNET_NO, /* For header-only out notification */
5637                                        core_handlers);    /* Register these handlers */
5638     if (10 < i++)
5639       GNUNET_abort();
5640   }
5641   server_init ();
5642   return;
5643 }
5644
5645
5646 /******************************************************************************/
5647 /************************      MAIN FUNCTIONS      ****************************/
5648 /******************************************************************************/
5649
5650 /**
5651  * Iterator over tunnel hash map entries to destroy the tunnel during shutdown.
5652  *
5653  * @param cls closure
5654  * @param key current key code
5655  * @param value value in the hash map
5656  * @return GNUNET_YES if we should continue to iterate,
5657  *         GNUNET_NO if not.
5658  */
5659 static int
5660 shutdown_tunnel (void *cls, const struct GNUNET_HashCode * key, void *value)
5661 {
5662   struct MeshTunnel *t = value;
5663
5664   tunnel_destroy (t);
5665   return GNUNET_YES;
5666 }
5667
5668 /**
5669  * Iterator over peer hash map entries to destroy the tunnel during shutdown.
5670  *
5671  * @param cls closure
5672  * @param key current key code
5673  * @param value value in the hash map
5674  * @return GNUNET_YES if we should continue to iterate,
5675  *         GNUNET_NO if not.
5676  */
5677 static int
5678 shutdown_peer (void *cls, const struct GNUNET_HashCode * key, void *value)
5679 {
5680   struct MeshPeerInfo *p = value;
5681   struct MeshPeerQueue *q;
5682   struct MeshPeerQueue *n;
5683
5684   q = p->queue_head;
5685   while (NULL != q)
5686   {
5687       n = q->next;
5688       if (q->peer == p)
5689       {
5690         queue_destroy(q, GNUNET_YES);
5691       }
5692       q = n;
5693   }
5694   peer_info_destroy (p);
5695   return GNUNET_YES;
5696 }
5697
5698
5699 /**
5700  * Task run during shutdown.
5701  *
5702  * @param cls unused
5703  * @param tc unused
5704  */
5705 static void
5706 shutdown_task (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
5707 {
5708   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "shutting down\n");
5709
5710   if (core_handle != NULL)
5711   {
5712     GNUNET_CORE_disconnect (core_handle);
5713     core_handle = NULL;
5714   }
5715   GNUNET_CONTAINER_multihashmap_iterate (tunnels, &shutdown_tunnel, NULL);
5716   GNUNET_CONTAINER_multihashmap_iterate (peers, &shutdown_peer, NULL);
5717   if (dht_handle != NULL)
5718   {
5719     GNUNET_DHT_disconnect (dht_handle);
5720     dht_handle = NULL;
5721   }
5722   if (nc != NULL)
5723   {
5724     GNUNET_SERVER_notification_context_destroy (nc);
5725     nc = NULL;
5726   }
5727   if (GNUNET_SCHEDULER_NO_TASK != announce_id_task)
5728   {
5729     GNUNET_SCHEDULER_cancel (announce_id_task);
5730     announce_id_task = GNUNET_SCHEDULER_NO_TASK;
5731   }
5732   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "shut down\n");
5733 }
5734
5735
5736 /**
5737  * Process mesh requests.
5738  *
5739  * @param cls closure
5740  * @param server the initialized server
5741  * @param c configuration to use
5742  */
5743 static void
5744 run (void *cls, struct GNUNET_SERVER_Handle *server,
5745      const struct GNUNET_CONFIGURATION_Handle *c)
5746 {
5747   char *keyfile;
5748   struct GNUNET_CRYPTO_EccPrivateKey *pk;
5749
5750   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "starting to run\n");
5751   server_handle = server;
5752   GNUNET_SERVER_suspend (server_handle);
5753
5754   if (GNUNET_OK !=
5755       GNUNET_CONFIGURATION_get_value_filename (c, "PEER", "PRIVATE_KEY",
5756                                                &keyfile))
5757   {
5758     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
5759                 _
5760                 ("%s service is lacking key configuration settings (%s).  Exiting.\n"),
5761                 "mesh", "peer/privatekey");
5762     GNUNET_SCHEDULER_shutdown ();
5763     return;
5764   }
5765
5766   if (GNUNET_OK !=
5767       GNUNET_CONFIGURATION_get_value_time (c, "MESH", "REFRESH_PATH_TIME",
5768                                            &refresh_path_time))
5769   {
5770     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
5771                 _
5772                 ("%s service is lacking key configuration settings (%s).  Exiting.\n"),
5773                 "mesh", "refresh path time");
5774     GNUNET_SCHEDULER_shutdown ();
5775     return;
5776   }
5777
5778   if (GNUNET_OK !=
5779       GNUNET_CONFIGURATION_get_value_time (c, "MESH", "ID_ANNOUNCE_TIME",
5780                                            &id_announce_time))
5781   {
5782     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
5783                 _
5784                 ("%s service is lacking key configuration settings (%s).  Exiting.\n"),
5785                 "mesh", "id announce time");
5786     GNUNET_SCHEDULER_shutdown ();
5787     return;
5788   }
5789
5790   if (GNUNET_OK !=
5791       GNUNET_CONFIGURATION_get_value_time (c, "MESH", "CONNECT_TIMEOUT",
5792                                            &connect_timeout))
5793   {
5794     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
5795                 _
5796                 ("%s service is lacking key configuration settings (%s).  Exiting.\n"),
5797                 "mesh", "connect timeout");
5798     GNUNET_SCHEDULER_shutdown ();
5799     return;
5800   }
5801
5802   if (GNUNET_OK !=
5803       GNUNET_CONFIGURATION_get_value_number (c, "MESH", "MAX_MSGS_QUEUE",
5804                                              &max_msgs_queue))
5805   {
5806     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
5807                 _
5808                 ("%s service is lacking key configuration settings (%s).  Exiting.\n"),
5809                 "mesh", "max msgs queue");
5810     GNUNET_SCHEDULER_shutdown ();
5811     return;
5812   }
5813
5814   if (GNUNET_OK !=
5815       GNUNET_CONFIGURATION_get_value_number (c, "MESH", "MAX_TUNNELS",
5816                                              &max_tunnels))
5817   {
5818     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
5819                 _
5820                 ("%s service is lacking key configuration settings (%s).  Exiting.\n"),
5821                 "mesh", "max tunnels");
5822     GNUNET_SCHEDULER_shutdown ();
5823     return;
5824   }
5825
5826   if (GNUNET_OK !=
5827       GNUNET_CONFIGURATION_get_value_number (c, "MESH", "DEFAULT_TTL",
5828                                              &default_ttl))
5829   {
5830     GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
5831                 _
5832                 ("%s service is lacking key configuration settings (%s). Using default (%u).\n"),
5833                 "mesh", "default ttl", 64);
5834     default_ttl = 64;
5835   }
5836
5837   if (GNUNET_OK !=
5838       GNUNET_CONFIGURATION_get_value_number (c, "MESH", "MAX_PEERS",
5839                                              &max_peers))
5840   {
5841     GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
5842                 _("%s service is lacking key configuration settings (%s). Using default (%u).\n"),
5843                 "mesh", "max peers", 1000);
5844     max_peers = 1000;
5845   }
5846
5847   if (GNUNET_OK !=
5848       GNUNET_CONFIGURATION_get_value_number (c, "MESH", "DROP_PERCENT",
5849                                              &drop_percent))
5850   {
5851     drop_percent = 0;
5852   }
5853   else
5854   {
5855     GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
5856                 "Mesh is running with drop mode enabled. "
5857                 "This is NOT a good idea! "
5858                 "Remove the DROP_PERCENT option from your configuration.\n");
5859   }
5860
5861   if (GNUNET_OK !=
5862       GNUNET_CONFIGURATION_get_value_number (c, "MESH", "DHT_REPLICATION_LEVEL",
5863                                              &dht_replication_level))
5864   {
5865     GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
5866                 _
5867                 ("%s service is lacking key configuration settings (%s). Using default (%u).\n"),
5868                 "mesh", "dht replication level", 3);
5869     dht_replication_level = 3;
5870   }
5871
5872   tunnels = GNUNET_CONTAINER_multihashmap_create (32, GNUNET_NO);
5873   incoming_tunnels = GNUNET_CONTAINER_multihashmap32_create (32);
5874   peers = GNUNET_CONTAINER_multihashmap_create (32, GNUNET_NO);
5875   ports = GNUNET_CONTAINER_multihashmap32_create (32);
5876
5877   dht_handle = GNUNET_DHT_connect (c, 64);
5878   if (NULL == dht_handle)
5879   {
5880     GNUNET_break (0);
5881   }
5882   stats = GNUNET_STATISTICS_create ("mesh", c);
5883
5884   /* Scheduled the task to clean up when shutdown is called */
5885   GNUNET_SCHEDULER_add_delayed (GNUNET_TIME_UNIT_FOREVER_REL, &shutdown_task,
5886                                 NULL);
5887   pk = GNUNET_CRYPTO_ecc_key_create_from_file (keyfile);
5888   GNUNET_free (keyfile);
5889   GNUNET_assert (NULL != pk);
5890   my_private_key = pk;
5891   GNUNET_CRYPTO_ecc_key_get_public (my_private_key, &my_public_key);
5892   GNUNET_CRYPTO_hash (&my_public_key, sizeof (my_public_key),
5893                       &my_full_id.hashPubKey);
5894   myid = GNUNET_PEER_intern (&my_full_id);
5895   GNUNET_log (GNUNET_ERROR_TYPE_INFO,
5896               "Mesh for peer [%s] starting\n",
5897               GNUNET_i2s(&my_full_id));
5898
5899   core_handle = GNUNET_CORE_connect (c, /* Main configuration */
5900                                      NULL,      /* Closure passed to MESH functions */
5901                                      &core_init,        /* Call core_init once connected */
5902                                      &core_connect,     /* Handle connects */
5903                                      &core_disconnect,  /* remove peers on disconnects */
5904                                      NULL,      /* Don't notify about all incoming messages */
5905                                      GNUNET_NO, /* For header only in notification */
5906                                      NULL,      /* Don't notify about all outbound messages */
5907                                      GNUNET_NO, /* For header-only out notification */
5908                                      core_handlers);    /* Register these handlers */
5909   if (NULL == core_handle)
5910   {
5911     GNUNET_break (0);
5912     GNUNET_SCHEDULER_shutdown ();
5913     return;
5914   }
5915   next_tid = 0;
5916   next_local_tid = GNUNET_MESH_LOCAL_TUNNEL_ID_SERV;
5917   announce_id_task = GNUNET_SCHEDULER_add_now (&announce_id, cls);
5918   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Mesh service running\n");
5919 }
5920
5921
5922 /**
5923  * The main function for the mesh service.
5924  *
5925  * @param argc number of arguments from the command line
5926  * @param argv command line arguments
5927  * @return 0 ok, 1 on error
5928  */
5929 int
5930 main (int argc, char *const *argv)
5931 {
5932   int ret;
5933   int r;
5934
5935   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "main()\n");
5936   r = GNUNET_SERVICE_run (argc, argv, "mesh", GNUNET_SERVICE_OPTION_NONE, &run,
5937                           NULL);
5938   ret = (GNUNET_OK == r) ? 0 : 1;
5939   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "main() END\n");
5940
5941   INTERVAL_SHOW;
5942
5943   return ret;
5944 }