a2d5b9479efd37f14b2ac6f7dd295a17207b8b58
[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         /* Should have been removed on destroy children */
1715         GNUNET_break (0);
1716       }
1717       queue_destroy (pq, GNUNET_YES);
1718     }
1719   }
1720   if (NULL == peer_info->queue_head && NULL != peer_info->core_transmit)
1721   {
1722     GNUNET_CORE_notify_transmit_ready_cancel(peer_info->core_transmit);
1723     peer_info->core_transmit = NULL;
1724   }
1725 }
1726
1727
1728 /**
1729  * Destroy the peer_info and free any allocated resources linked to it
1730  *
1731  * @param pi The peer_info to destroy.
1732  *
1733  * @return GNUNET_OK on success
1734  */
1735 static int
1736 peer_info_destroy (struct MeshPeerInfo *pi)
1737 {
1738   struct GNUNET_PeerIdentity id;
1739   struct MeshPeerPath *p;
1740   struct MeshPeerPath *nextp;
1741   unsigned int i;
1742
1743   GNUNET_PEER_resolve (pi->id, &id);
1744   GNUNET_PEER_change_rc (pi->id, -1);
1745
1746   if (GNUNET_YES !=
1747       GNUNET_CONTAINER_multihashmap_remove (peers, &id.hashPubKey, pi))
1748   {
1749     GNUNET_break (0);
1750     GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
1751                 "removing peer %s, not in hashmap\n", GNUNET_i2s (&id));
1752   }
1753   if (NULL != pi->dhtget)
1754   {
1755     GNUNET_DHT_get_stop (pi->dhtget);
1756   }
1757   p = pi->path_head;
1758   while (NULL != p)
1759   {
1760     nextp = p->next;
1761     GNUNET_CONTAINER_DLL_remove (pi->path_head, pi->path_tail, p);
1762     path_destroy (p);
1763     p = nextp;
1764   }
1765   for (i = 0; i < pi->ntunnels; i++)
1766     tunnel_destroy_empty (pi->tunnels[i]);
1767   GNUNET_array_grow (pi->tunnels, pi->ntunnels, 0);
1768   GNUNET_free (pi);
1769   return GNUNET_OK;
1770 }
1771
1772
1773 /**
1774  * Remove all paths that rely on a direct connection between p1 and p2
1775  * from the peer itself and notify all tunnels about it.
1776  *
1777  * @param peer PeerInfo of affected peer.
1778  * @param p1 GNUNET_PEER_Id of one peer.
1779  * @param p2 GNUNET_PEER_Id of another peer that was connected to the first and
1780  *           no longer is.
1781  *
1782  * TODO: optimize (see below)
1783  */
1784 static void
1785 peer_info_remove_path (struct MeshPeerInfo *peer, GNUNET_PEER_Id p1,
1786                        GNUNET_PEER_Id p2)
1787 {
1788   struct MeshPeerPath *p;
1789   struct MeshPeerPath *next;
1790   struct MeshPeerInfo *peer_d;
1791   GNUNET_PEER_Id d;
1792   unsigned int destroyed;
1793   unsigned int i;
1794
1795   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "peer_info_remove_path\n");
1796   destroyed = 0;
1797   for (p = peer->path_head; NULL != p; p = next)
1798   {
1799     next = p->next;
1800     for (i = 0; i < (p->length - 1); i++)
1801     {
1802       if ((p->peers[i] == p1 && p->peers[i + 1] == p2) ||
1803           (p->peers[i] == p2 && p->peers[i + 1] == p1))
1804       {
1805         GNUNET_CONTAINER_DLL_remove (peer->path_head, peer->path_tail, p);
1806         path_destroy (p);
1807         destroyed++;
1808         break;
1809       }
1810     }
1811   }
1812   if (0 == destroyed)
1813     return;
1814
1815   for (i = 0; i < peer->ntunnels; i++)
1816   {
1817     d = tunnel_notify_connection_broken (peer->tunnels[i], p1, p2);
1818     if (0 == d)
1819       continue;
1820
1821     peer_d = peer_get_short (d);
1822     next = peer_get_best_path (peer_d, peer->tunnels[i]);
1823     tunnel_use_path (peer->tunnels[i], next);
1824     peer_connect (peer_d, peer->tunnels[i]);
1825   }
1826   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "peer_info_remove_path END\n");
1827 }
1828
1829
1830 /**
1831  * Add the path to the peer and update the path used to reach it in case this
1832  * is the shortest.
1833  *
1834  * @param peer_info Destination peer to add the path to.
1835  * @param path New path to add. Last peer must be the peer in arg 1.
1836  *             Path will be either used of freed if already known.
1837  * @param trusted Do we trust that this path is real?
1838  */
1839 void
1840 peer_info_add_path (struct MeshPeerInfo *peer_info, struct MeshPeerPath *path,
1841                     int trusted)
1842 {
1843   struct MeshPeerPath *aux;
1844   unsigned int l;
1845   unsigned int l2;
1846
1847   if ((NULL == peer_info) || (NULL == path))
1848   {
1849     GNUNET_break (0);
1850     path_destroy (path);
1851     return;
1852   }
1853   if (path->peers[path->length - 1] != peer_info->id)
1854   {
1855     GNUNET_break (0);
1856     path_destroy (path);
1857     return;
1858   }
1859   if (2 >= path->length && GNUNET_NO == trusted)
1860   {
1861     /* Only allow CORE to tell us about direct paths */
1862     path_destroy (path);
1863     return;
1864   }
1865   for (l = 1; l < path->length; l++)
1866   {
1867     if (path->peers[l] == myid)
1868     {
1869       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "shortening path by %u\n", l);
1870       for (l2 = 0; l2 < path->length - l; l2++)
1871       {
1872         path->peers[l2] = path->peers[l + l2];
1873       }
1874       path->length -= l;
1875       l = 1;
1876       path->peers =
1877           GNUNET_realloc (path->peers, path->length * sizeof (GNUNET_PEER_Id));
1878     }
1879   }
1880 #if MESH_DEBUG
1881   {
1882     struct GNUNET_PeerIdentity id;
1883
1884     GNUNET_PEER_resolve (peer_info->id, &id);
1885     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "adding path [%u] to peer %s\n",
1886                 path->length, GNUNET_i2s (&id));
1887   }
1888 #endif
1889   l = path_get_length (path);
1890   if (0 == l)
1891   {
1892     path_destroy (path);
1893     return;
1894   }
1895
1896   GNUNET_assert (peer_info->id == path->peers[path->length - 1]);
1897   for (aux = peer_info->path_head; aux != NULL; aux = aux->next)
1898   {
1899     l2 = path_get_length (aux);
1900     if (l2 > l)
1901     {
1902       GNUNET_CONTAINER_DLL_insert_before (peer_info->path_head,
1903                                           peer_info->path_tail, aux, path);
1904       return;
1905     }
1906     else
1907     {
1908       if (l2 == l && memcmp (path->peers, aux->peers, l) == 0)
1909       {
1910         path_destroy (path);
1911         return;
1912       }
1913     }
1914   }
1915   GNUNET_CONTAINER_DLL_insert_tail (peer_info->path_head, peer_info->path_tail,
1916                                     path);
1917   return;
1918 }
1919
1920
1921 /**
1922  * Add the path to the origin peer and update the path used to reach it in case
1923  * this is the shortest.
1924  * The path is given in peer_info -> destination, therefore we turn the path
1925  * upside down first.
1926  *
1927  * @param peer_info Peer to add the path to, being the origin of the path.
1928  * @param path New path to add after being inversed.
1929  *             Path will be either used or freed.
1930  * @param trusted Do we trust that this path is real?
1931  */
1932 static void
1933 peer_info_add_path_to_origin (struct MeshPeerInfo *peer_info,
1934                               struct MeshPeerPath *path, int trusted)
1935 {
1936   path_invert (path);
1937   peer_info_add_path (peer_info, path, trusted);
1938 }
1939
1940
1941 /**
1942  * Add a tunnel to the list of tunnels a peer participates in.
1943  * Update the tunnel's destination.
1944  * 
1945  * @param p Peer to add to.
1946  * @param t Tunnel to add.
1947  */
1948 static void
1949 peer_info_add_tunnel (struct MeshPeerInfo *p, struct MeshTunnel *t)
1950 {
1951   if (0 != t->dest)
1952   {
1953     GNUNET_break (t->dest == p->id);
1954     return;
1955   }
1956   t->dest = p->id;
1957   GNUNET_PEER_change_rc (t->dest, 1);
1958   GNUNET_array_append (p->tunnels, p->ntunnels, t);
1959 }
1960
1961
1962 /**
1963  * Remove a tunnel from the list of tunnels a peer participates in.
1964  * Free the tunnel's destination.
1965  * 
1966  * @param p Peer to clean.
1967  * @param t Tunnel to remove.
1968  */
1969 static void
1970 peer_info_remove_tunnel (struct MeshPeerInfo *p, struct MeshTunnel *t)
1971 {
1972   unsigned int i;
1973
1974   if (t->dest == p->id)
1975   {
1976       GNUNET_PEER_change_rc (t->dest, -1);
1977       t->dest = 0;
1978   }
1979   for (i = 0; i < p->ntunnels; i++)
1980   {
1981     if (p->tunnels[i] == t)
1982     {
1983       p->tunnels[i] = p->tunnels[p->ntunnels - 1];
1984       GNUNET_array_grow (p->tunnels, p->ntunnels, p->ntunnels - 1);
1985       return;
1986     }
1987   }
1988 }
1989
1990
1991 /**
1992  * Function called if the connection to the peer has been stalled for a while,
1993  * possibly due to a missed ACK. Poll the peer about its ACK status.
1994  *
1995  * @param cls Closure (poll ctx).
1996  * @param tc TaskContext.
1997  */
1998 static void
1999 tunnel_poll (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
2000 {
2001   struct MeshFlowControl *fc = cls;
2002   struct GNUNET_MESH_Poll msg;
2003   struct MeshTunnel *t = fc->t;
2004   GNUNET_PEER_Id peer;
2005
2006   fc->poll_task = GNUNET_SCHEDULER_NO_TASK;
2007   if (0 != (tc->reason & GNUNET_SCHEDULER_REASON_SHUTDOWN))
2008   {
2009     return;
2010   }
2011
2012   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, " *** Polling!\n");
2013
2014   GNUNET_PEER_resolve (t->id.oid, &msg.oid);
2015
2016   if (fc == &t->prev_fc)
2017   {
2018     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, " *** prev peer!\n");
2019     peer = t->prev_hop;
2020   }
2021   else if (fc == &t->next_fc)
2022   {
2023     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, " *** next peer!\n");
2024     peer = t->next_hop;
2025   }
2026   else
2027   {
2028     GNUNET_break (0);
2029     return;
2030   }
2031   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, " *** peer: %s!\n", 
2032                 GNUNET_i2s(GNUNET_PEER_resolve2 (peer)));
2033   if (0 == peer)
2034   {
2035     if (GNUNET_YES == t->destroy)
2036       tunnel_destroy (t);
2037     else
2038       GNUNET_break (0);
2039
2040     return;
2041   }
2042   msg.header.type = htons (GNUNET_MESSAGE_TYPE_MESH_POLL);
2043   msg.header.size = htons (sizeof (msg));
2044   msg.tid = htonl (t->id.tid);
2045   msg.pid = htonl (peer_get_first_payload_pid (peer_get_short (peer), t));
2046   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, " *** pid (%u)!\n", ntohl (msg.pid));
2047   send_prebuilt_message (&msg.header, peer, t);
2048   fc->poll_time = GNUNET_TIME_STD_BACKOFF (fc->poll_time);
2049   fc->poll_task = GNUNET_SCHEDULER_add_delayed (fc->poll_time,
2050                                                 &tunnel_poll, fc);
2051 }
2052
2053
2054 /**
2055  * Build a PeerPath from the paths returned from the DHT, reversing the paths
2056  * to obtain a local peer -> destination path and interning the peer ids.
2057  *
2058  * @return Newly allocated and created path
2059  */
2060 static struct MeshPeerPath *
2061 path_build_from_dht (const struct GNUNET_PeerIdentity *get_path,
2062                      unsigned int get_path_length,
2063                      const struct GNUNET_PeerIdentity *put_path,
2064                      unsigned int put_path_length)
2065 {
2066   struct MeshPeerPath *p;
2067   GNUNET_PEER_Id id;
2068   int i;
2069
2070   p = path_new (1);
2071   p->peers[0] = myid;
2072   GNUNET_PEER_change_rc (myid, 1);
2073   i = get_path_length;
2074   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "   GET has %d hops.\n", i);
2075   for (i--; i >= 0; i--)
2076   {
2077     id = GNUNET_PEER_intern (&get_path[i]);
2078     if (p->length > 0 && id == p->peers[p->length - 1])
2079     {
2080       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "   Optimizing 1 hop out.\n");
2081       GNUNET_PEER_change_rc (id, -1);
2082     }
2083     else
2084     {
2085       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "   Adding from GET: %s.\n",
2086                   GNUNET_i2s (&get_path[i]));
2087       p->length++;
2088       p->peers = GNUNET_realloc (p->peers, sizeof (GNUNET_PEER_Id) * p->length);
2089       p->peers[p->length - 1] = id;
2090     }
2091   }
2092   i = put_path_length;
2093   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "   PUT has %d hops.\n", i);
2094   for (i--; i >= 0; i--)
2095   {
2096     id = GNUNET_PEER_intern (&put_path[i]);
2097     if (id == myid)
2098     {
2099       /* PUT path went through us, so discard the path up until now and start
2100        * from here to get a much shorter (and loop-free) path.
2101        */
2102       path_destroy (p);
2103       p = path_new (0);
2104     }
2105     if (p->length > 0 && id == p->peers[p->length - 1])
2106     {
2107       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "   Optimizing 1 hop out.\n");
2108       GNUNET_PEER_change_rc (id, -1);
2109     }
2110     else
2111     {
2112       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "   Adding from PUT: %s.\n",
2113                   GNUNET_i2s (&put_path[i]));
2114       p->length++;
2115       p->peers = GNUNET_realloc (p->peers, sizeof (GNUNET_PEER_Id) * p->length);
2116       p->peers[p->length - 1] = id;
2117     }
2118   }
2119 #if MESH_DEBUG
2120   if (get_path_length > 0)
2121     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "   (first of GET: %s)\n",
2122                 GNUNET_i2s (&get_path[0]));
2123   if (put_path_length > 0)
2124     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "   (first of PUT: %s)\n",
2125                 GNUNET_i2s (&put_path[0]));
2126   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "   In total: %d hops\n",
2127               p->length);
2128   for (i = 0; i < p->length; i++)
2129   {
2130     struct GNUNET_PeerIdentity peer_id;
2131
2132     GNUNET_PEER_resolve (p->peers[i], &peer_id);
2133     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "       %u: %s\n", p->peers[i],
2134                 GNUNET_i2s (&peer_id));
2135   }
2136 #endif
2137   return p;
2138 }
2139
2140
2141 /**
2142  * Adds a path to the peer_infos of all the peers in the path
2143  *
2144  * @param p Path to process.
2145  * @param confirmed Whether we know if the path works or not.
2146  */
2147 static void
2148 path_add_to_peers (struct MeshPeerPath *p, int confirmed)
2149 {
2150   unsigned int i;
2151
2152   /* TODO: invert and add */
2153   for (i = 0; i < p->length && p->peers[i] != myid; i++) /* skip'em */ ;
2154   for (i++; i < p->length; i++)
2155   {
2156     struct MeshPeerInfo *aux;
2157     struct MeshPeerPath *copy;
2158
2159     aux = peer_get_short (p->peers[i]);
2160     copy = path_duplicate (p);
2161     copy->length = i + 1;
2162     peer_info_add_path (aux, copy, p->length < 3 ? GNUNET_NO : confirmed);
2163   }
2164 }
2165
2166
2167 /**
2168  * Search for a tunnel among the incoming tunnels
2169  *
2170  * @param tid the local id of the tunnel
2171  *
2172  * @return tunnel handler, NULL if doesn't exist
2173  */
2174 static struct MeshTunnel *
2175 tunnel_get_incoming (MESH_TunnelNumber tid)
2176 {
2177   GNUNET_assert (tid >= GNUNET_MESH_LOCAL_TUNNEL_ID_SERV);
2178   return GNUNET_CONTAINER_multihashmap32_get (incoming_tunnels, tid);
2179 }
2180
2181
2182 /**
2183  * Search for a tunnel among the tunnels for a client
2184  *
2185  * @param c the client whose tunnels to search in
2186  * @param tid the local id of the tunnel
2187  *
2188  * @return tunnel handler, NULL if doesn't exist
2189  */
2190 static struct MeshTunnel *
2191 tunnel_get_by_local_id (struct MeshClient *c, MESH_TunnelNumber tid)
2192 {
2193   if (0 == (tid & GNUNET_MESH_LOCAL_TUNNEL_ID_CLI))
2194   {
2195     GNUNET_break_op (0);
2196     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "TID %X not a local tid\n", tid);
2197     return NULL;
2198   }
2199   if (tid >= GNUNET_MESH_LOCAL_TUNNEL_ID_SERV)
2200   {
2201     return tunnel_get_incoming (tid);
2202   }
2203   else
2204   {
2205     return GNUNET_CONTAINER_multihashmap32_get (c->own_tunnels, tid);
2206   }
2207 }
2208
2209
2210 /**
2211  * Search for a tunnel by global ID using PEER_ID
2212  *
2213  * @param pi owner of the tunnel
2214  * @param tid global tunnel number
2215  *
2216  * @return tunnel handler, NULL if doesn't exist
2217  */
2218 static struct MeshTunnel *
2219 tunnel_get_by_pi (GNUNET_PEER_Id pi, MESH_TunnelNumber tid)
2220 {
2221   struct MESH_TunnelID id;
2222   struct GNUNET_HashCode hash;
2223
2224   id.oid = pi;
2225   id.tid = tid;
2226
2227   GNUNET_CRYPTO_hash (&id, sizeof (struct MESH_TunnelID), &hash);
2228   return GNUNET_CONTAINER_multihashmap_get (tunnels, &hash);
2229 }
2230
2231
2232 /**
2233  * Search for a tunnel by global ID using full PeerIdentities
2234  *
2235  * @param oid owner of the tunnel
2236  * @param tid global tunnel number
2237  *
2238  * @return tunnel handler, NULL if doesn't exist
2239  */
2240 static struct MeshTunnel *
2241 tunnel_get (const struct GNUNET_PeerIdentity *oid, MESH_TunnelNumber tid)
2242 {
2243   return tunnel_get_by_pi (GNUNET_PEER_search (oid), tid);
2244 }
2245
2246
2247 /**
2248  * Change the tunnel state.
2249  *
2250  * @param t Tunnel whose ttate to change.
2251  * @param state New state.
2252  */
2253 static void
2254 tunnel_change_state (struct MeshTunnel *t, enum MeshTunnelState state)
2255 {
2256   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
2257               "Tunnel %s[%X] state was %s\n",
2258               GNUNET_i2s (GNUNET_PEER_resolve2 (t->id.oid)), t->id.tid,
2259               GNUNET_MESH_DEBUG_S2S (t->state));
2260   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
2261               "Tunnel %s[%X] state is now %s\n",
2262               GNUNET_i2s (GNUNET_PEER_resolve2 (t->id.oid)), t->id.tid,
2263               GNUNET_MESH_DEBUG_S2S (state));
2264   t->state = state;
2265 }
2266
2267
2268
2269 /**
2270  * Add a client to a tunnel, initializing all needed data structures.
2271  * 
2272  * @param t Tunnel to which add the client.
2273  * @param c Client which to add to the tunnel.
2274  */
2275 static void
2276 tunnel_add_client (struct MeshTunnel *t, struct MeshClient *c)
2277 {
2278   if (NULL != t->client)
2279   {
2280     GNUNET_break(0);
2281     return;
2282   }
2283   if (GNUNET_OK !=
2284       GNUNET_CONTAINER_multihashmap32_put (c->incoming_tunnels,
2285                                            t->local_tid_dest, t,
2286                                            GNUNET_CONTAINER_MULTIHASHMAPOPTION_UNIQUE_FAST))
2287   {
2288     GNUNET_break (0);
2289     return;
2290   }
2291   if (GNUNET_OK !=
2292       GNUNET_CONTAINER_multihashmap32_put (incoming_tunnels,
2293                                            t->local_tid_dest, t,
2294                                            GNUNET_CONTAINER_MULTIHASHMAPOPTION_UNIQUE_FAST))
2295   {
2296     GNUNET_break (0);
2297     return;
2298   }
2299   t->client = c;
2300 }
2301
2302
2303 static void
2304 tunnel_use_path (struct MeshTunnel *t, struct MeshPeerPath *p)
2305 {
2306   unsigned int own_pos;
2307
2308   for (own_pos = 0; own_pos < p->length; own_pos++)
2309   {
2310     if (p->peers[own_pos] == myid)
2311       break;
2312   }
2313   if (own_pos > p->length - 1)
2314   {
2315     GNUNET_break (0);
2316     return;
2317   }
2318
2319   if (own_pos < p->length - 1)
2320     t->next_hop = p->peers[own_pos + 1];
2321   else
2322     t->next_hop = p->peers[own_pos];
2323   GNUNET_PEER_change_rc (t->next_hop, 1);
2324   if (0 < own_pos)
2325     t->prev_hop = p->peers[own_pos - 1];
2326   else
2327     t->prev_hop = p->peers[0];
2328   GNUNET_PEER_change_rc (t->prev_hop, 1);
2329
2330   if (NULL != t->path)
2331     path_destroy (t->path);
2332   t->path = path_duplicate (p);
2333   if (0 == own_pos)
2334   {
2335     if (GNUNET_SCHEDULER_NO_TASK != t->fwd_maintenance_task)
2336       GNUNET_SCHEDULER_cancel (t->fwd_maintenance_task);
2337     t->fwd_maintenance_task =
2338         GNUNET_SCHEDULER_add_delayed (refresh_path_time,
2339                                       &tunnel_fwd_keepalive, t);
2340   }
2341 }
2342
2343
2344 /**
2345  * Notifies a tunnel that a connection has broken that affects at least
2346  * some of its peers. Sends a notification towards the root of the tree.
2347  * In case the peer is the owner of the tree, notifies the client that owns
2348  * the tunnel and tries to reconnect.
2349  *
2350  * @param t Tunnel affected.
2351  * @param p1 Peer that got disconnected from p2.
2352  * @param p2 Peer that got disconnected from p1.
2353  *
2354  * @return Short ID of the peer disconnected (either p1 or p2).
2355  *         0 if the tunnel remained unaffected.
2356  */
2357 static GNUNET_PEER_Id
2358 tunnel_notify_connection_broken (struct MeshTunnel *t, GNUNET_PEER_Id p1,
2359                                  GNUNET_PEER_Id p2)
2360 {
2361 //   if (myid != p1 && myid != p2) FIXME
2362 //   {
2363 //     return;
2364 //   }
2365 // 
2366 //   if (tree_get_predecessor (t->tree) != 0)
2367 //   {
2368 //     /* We are the peer still connected, notify owner of the disconnection. */
2369 //     struct GNUNET_MESH_PathBroken msg;
2370 //     struct GNUNET_PeerIdentity neighbor;
2371 // 
2372 //     msg.header.size = htons (sizeof (msg));
2373 //     msg.header.type = htons (GNUNET_MESSAGE_TYPE_MESH_PATH_BROKEN);
2374 //     GNUNET_PEER_resolve (t->id.oid, &msg.oid);
2375 //     msg.tid = htonl (t->id.tid);
2376 //     msg.peer1 = my_full_id;
2377 //     GNUNET_PEER_resolve (pid, &msg.peer2);
2378 //     GNUNET_PEER_resolve (tree_get_predecessor (t->tree), &neighbor);
2379 //     send_prebuilt_message (&msg.header, &neighbor, t);
2380 //   }
2381   return 0;
2382 }
2383
2384
2385 /**
2386  * Send an end-to-end FWD ACK message for the most recent in-sequence payload.
2387  * 
2388  * @param t Tunnel this is about.
2389  * @param fwd Is for FWD traffic? (ACK dest->owner)
2390  */
2391 static void
2392 tunnel_send_data_ack (struct MeshTunnel *t, int fwd)
2393 {
2394   struct GNUNET_MESH_DataACK msg;
2395   struct MeshTunnelReliability *rel;
2396   struct MeshReliableMessage *copy;
2397   GNUNET_PEER_Id hop;
2398   uint64_t mask;
2399   unsigned int delta;
2400
2401   rel = fwd ? t->bck_rel  : t->fwd_rel;
2402   hop = fwd ? t->prev_hop : t->next_hop;
2403   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
2404               "send_data_ack for %u\n",
2405               rel->mid_recv - 1);
2406
2407   if (GNUNET_NO == t->reliable)
2408   {
2409     GNUNET_break_op (0);
2410     return;
2411   }
2412   msg.header.type = htons (fwd ? GNUNET_MESSAGE_TYPE_MESH_UNICAST_ACK :
2413                                  GNUNET_MESSAGE_TYPE_MESH_TO_ORIG_ACK);
2414   msg.header.size = htons (sizeof (msg));
2415   msg.tid = htonl (t->id.tid);
2416   GNUNET_PEER_resolve (t->id.oid, &msg.oid);
2417   msg.mid = htonl (rel->mid_recv - 1);
2418   msg.futures = 0;
2419   for (copy = rel->head_recv; NULL != copy; copy = copy->next)
2420   {
2421     delta = copy->mid - rel->mid_recv;
2422     if (63 < delta)
2423       break;
2424     mask = 0x1LL << delta;
2425     msg.futures |= mask;
2426     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
2427                 " setting bit for %u (delta %u) (%llX) -> %llX\n",
2428                 copy->mid, delta, mask, msg.futures);
2429   }
2430   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, " final futures %llX\n", msg.futures);
2431
2432   send_prebuilt_message (&msg.header, hop, t);
2433   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "send_data_ack END\n");
2434 }
2435
2436
2437 /**
2438  * Send an ACK informing the predecessor about the available buffer space.
2439  * In case there is no predecessor, inform the owning client.
2440  * If buffering is off, send only on behalf of children or self if endpoint.
2441  * If buffering is on, send when sent to children and buffer space is free.
2442  * Note that although the name is fwd_ack, the FWD mean forward *traffic*,
2443  * the ACK itself goes "back" (towards root).
2444  * 
2445  * @param t Tunnel on which to send the ACK.
2446  * @param type Type of message that triggered the ACK transmission.
2447  * @param fwd Is this FWD ACK? (Going dest->owner)
2448  */
2449 static void
2450 tunnel_send_ack (struct MeshTunnel *t, uint16_t type, int fwd)
2451 {
2452   struct MeshTunnelReliability *rel;
2453   struct MeshFlowControl *next_fc;
2454   struct MeshFlowControl *prev_fc;
2455   struct MeshClient *c;
2456   struct MeshClient *o;
2457   GNUNET_PEER_Id hop;
2458   uint32_t delta_mid;
2459   uint32_t ack;
2460   int delta;
2461
2462   rel     = fwd ? t->fwd_rel  : t->bck_rel;
2463   c       = fwd ? t->client   : t->owner;
2464   o       = fwd ? t->owner    : t->client;
2465   next_fc = fwd ? &t->next_fc : &t->prev_fc;
2466   prev_fc = fwd ? &t->prev_fc : &t->next_fc;
2467   hop     = fwd ? t->prev_hop : t->next_hop;
2468
2469   switch (type)
2470   {
2471     case GNUNET_MESSAGE_TYPE_MESH_UNICAST:
2472     case GNUNET_MESSAGE_TYPE_MESH_TO_ORIGIN:
2473       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
2474                   "ACK due to %s\n",
2475                   GNUNET_MESH_DEBUG_M2S (type));
2476       if (GNUNET_YES == t->nobuffer && (GNUNET_NO == t->reliable || NULL == c))
2477       {
2478         GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Not sending ACK, nobuffer\n");
2479         return;
2480       }
2481       if (GNUNET_YES == t->reliable && NULL != c)
2482         tunnel_send_data_ack (t, fwd);
2483       break;
2484     case GNUNET_MESSAGE_TYPE_MESH_UNICAST_ACK:
2485     case GNUNET_MESSAGE_TYPE_MESH_TO_ORIG_ACK:
2486     case GNUNET_MESSAGE_TYPE_MESH_ACK:
2487     case GNUNET_MESSAGE_TYPE_MESH_LOCAL_ACK:
2488       break;
2489     case GNUNET_MESSAGE_TYPE_MESH_POLL:
2490     case GNUNET_MESSAGE_TYPE_MESH_PATH_ACK:
2491       t->force_ack = GNUNET_YES;
2492       break;
2493     default:
2494       GNUNET_break (0);
2495   }
2496
2497   /* Check if we need to transmit the ACK */
2498   if (NULL == o &&
2499       prev_fc->last_ack_sent - prev_fc->last_pid_recv > 3 &&
2500       GNUNET_NO == t->force_ack)
2501   {
2502     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Not sending ACK, buffer free\n");
2503     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
2504                 "  last pid recv: %u, last ack sent: %u\n",
2505                 prev_fc->last_pid_recv, prev_fc->last_ack_sent);
2506     return;
2507   }
2508
2509   /* Ok, ACK might be necessary, what PID to ACK? */
2510   delta = t->queue_max - next_fc->queue_n;
2511   if (NULL != o && GNUNET_YES == t->reliable && NULL != rel->head_sent)
2512     delta_mid = rel->mid_sent - rel->head_sent->mid;
2513   else
2514     delta_mid = 0;
2515   if (0 > delta || (GNUNET_YES == t->reliable && 
2516                     NULL != o &&
2517                     (10 < rel->n_sent || 64 <= delta_mid)))
2518     delta = 0;
2519   if (NULL != o && delta > 1)
2520     delta = 1;
2521   ack = prev_fc->last_pid_recv + delta;
2522   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, " ACK %u\n", ack);
2523   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
2524               " last pid %u, last ack %u, qmax %u, q %u\n",
2525               prev_fc->last_pid_recv, prev_fc->last_ack_sent,
2526               t->queue_max, next_fc->queue_n);
2527   if (ack == prev_fc->last_ack_sent && GNUNET_NO == t->force_ack)
2528   {
2529     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Not sending FWD ACK, not needed\n");
2530     return;
2531   }
2532
2533   prev_fc->last_ack_sent = ack;
2534   if (NULL != o)
2535     send_local_ack (t, o, fwd);
2536   else if (0 != hop)
2537     send_ack (t, hop, ack);
2538   else
2539     GNUNET_break (GNUNET_YES == t->destroy);
2540   t->force_ack = GNUNET_NO;
2541 }
2542
2543
2544 /**
2545  * Modify the mesh message TID from global to local and send to client.
2546  * 
2547  * @param t Tunnel on which to send the message.
2548  * @param msg Message to modify and send.
2549  * @param c Client to send to.
2550  * @param tid Tunnel ID to use (c can be both owner and client).
2551  */
2552 static void
2553 tunnel_send_client_to_tid (struct MeshTunnel *t,
2554                            const struct GNUNET_MESH_Data *msg,
2555                            struct MeshClient *c, MESH_TunnelNumber tid)
2556 {
2557   struct GNUNET_MESH_LocalData *copy;
2558   uint16_t size = ntohs (msg->header.size) - sizeof (struct GNUNET_MESH_Data);
2559   char cbuf[size + sizeof (struct GNUNET_MESH_LocalData)];
2560
2561   if (size < sizeof (struct GNUNET_MessageHeader))
2562   {
2563     GNUNET_break_op (0);
2564     return;
2565   }
2566   if (NULL == c)
2567   {
2568     GNUNET_break (0);
2569     return;
2570   }
2571   copy = (struct GNUNET_MESH_LocalData *) cbuf;
2572   memcpy (&copy[1], &msg[1], size);
2573   copy->header.size = htons (sizeof (struct GNUNET_MESH_LocalData) + size);
2574   copy->header.type = htons (GNUNET_MESSAGE_TYPE_MESH_LOCAL_DATA);
2575   copy->tid = htonl (tid);
2576   GNUNET_SERVER_notification_context_unicast (nc, c->handle,
2577                                               &copy->header, GNUNET_NO);
2578 }
2579
2580 /**
2581  * Modify the unicast message TID from global to local and send to client.
2582  * 
2583  * @param t Tunnel on which to send the message.
2584  * @param msg Message to modify and send.
2585  * @param fwd Forward?
2586  */
2587 static void
2588 tunnel_send_client_data (struct MeshTunnel *t,
2589                          const struct GNUNET_MESH_Data *msg,
2590                          int fwd)
2591 {
2592   if (fwd)
2593     tunnel_send_client_to_tid (t, msg, t->client, t->local_tid_dest);
2594   else
2595     tunnel_send_client_to_tid (t, msg, t->owner, t->local_tid);
2596 }
2597
2598
2599 /**
2600  * Send up to 64 buffered messages to the client for in order delivery.
2601  * 
2602  * @param t Tunnel on which to empty the message buffer.
2603  * @param c Client to send to.
2604  * @param rel Reliability structure to corresponding peer.
2605  *            If rel == t->bck_rel, this is FWD data.
2606  */
2607 static void
2608 tunnel_send_client_buffered_data (struct MeshTunnel *t, struct MeshClient *c,
2609                                   struct MeshTunnelReliability *rel)
2610 {
2611   ;
2612   struct MeshReliableMessage *copy;
2613   struct MeshReliableMessage *next;
2614
2615   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "send_buffered_data\n");
2616   for (copy = rel->head_recv; NULL != copy; copy = next)
2617   {
2618     next = copy->next;
2619     if (copy->mid == rel->mid_recv)
2620     {
2621       struct GNUNET_MESH_Data *msg = (struct GNUNET_MESH_Data *) &copy[1];
2622
2623       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
2624                   " have %u! now expecting %u\n",
2625                   copy->mid, rel->mid_recv + 1);
2626       tunnel_send_client_data (t, msg, (rel == t->bck_rel));
2627       rel->mid_recv++;
2628       GNUNET_CONTAINER_DLL_remove (rel->head_recv, rel->tail_recv, copy);
2629       GNUNET_free (copy);
2630     }
2631     else
2632     {
2633       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
2634                   " don't have %u, next is %u\n",
2635                   rel->mid_recv,
2636                   copy->mid);
2637       return;
2638     }
2639   }
2640   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "send_buffered_data END\n");
2641 }
2642
2643
2644 /**
2645  * We have received a message out of order, buffer it until we receive
2646  * the missing one and we can feed the rest to the client.
2647  * 
2648  * @param t Tunnel to add to.
2649  * @param msg Message to buffer.
2650  * @param rel Reliability data to the corresponding direction.
2651  */
2652 static void
2653 tunnel_add_buffered_data (struct MeshTunnel *t,
2654                            const struct GNUNET_MESH_Data *msg,
2655                           struct MeshTunnelReliability *rel)
2656 {
2657   struct MeshReliableMessage *copy;
2658   struct MeshReliableMessage *prev;
2659   uint32_t mid;
2660   uint16_t size;
2661
2662   size = ntohs (msg->header.size);
2663   mid = ntohl (msg->mid);
2664   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "add_buffered_data %u\n", mid);
2665
2666   copy = GNUNET_malloc (sizeof (*copy) + size);
2667   copy->mid = mid;
2668   copy->rel = rel;
2669   memcpy (&copy[1], msg, size);
2670
2671   // FIXME do something better than O(n), although n < 64...
2672   // FIXME start from the end (most messages are the latest ones)
2673   for (prev = rel->head_recv; NULL != prev; prev = prev->next)
2674   {
2675     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, " prev %u\n", prev->mid);
2676     if (GMC_is_pid_bigger (prev->mid, mid))
2677     {
2678       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, " bingo!\n");
2679       GNUNET_CONTAINER_DLL_insert_before (rel->head_recv, rel->tail_recv,
2680                                           prev, copy);
2681       return;
2682     }
2683   }
2684   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, " insert at tail!\n");
2685   GNUNET_CONTAINER_DLL_insert_tail (rel->head_recv, rel->tail_recv, copy);
2686   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "add_buffered_data END\n");
2687 }
2688
2689
2690 /**
2691  * Destroy a reliable message after it has been acknowledged, either by
2692  * direct mid ACK or bitfield. Updates the appropriate data structures and
2693  * timers and frees all memory.
2694  * 
2695  * @param copy Message that is no longer needed: remote peer got it.
2696  */
2697 static void
2698 tunnel_free_reliable_message (struct MeshReliableMessage *copy)
2699 {
2700   struct MeshTunnelReliability *rel;
2701   struct GNUNET_TIME_Relative time;
2702
2703   rel = copy->rel;
2704   time = GNUNET_TIME_absolute_get_duration (copy->timestamp);
2705   rel->expected_delay.rel_value *= 7;
2706   rel->expected_delay.rel_value += time.rel_value;
2707   rel->expected_delay.rel_value /= 8;
2708   rel->n_sent--;
2709   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "!!! Freeing %u\n", copy->mid);
2710   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "    n_sent %u\n", rel->n_sent);
2711   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "!!!  took %s\n",
2712               GNUNET_STRINGS_relative_time_to_string (time, GNUNET_NO));
2713   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "!!!  new expected delay %s\n",
2714               GNUNET_STRINGS_relative_time_to_string (rel->expected_delay,
2715                                                       GNUNET_NO));
2716   rel->retry_timer = rel->expected_delay;
2717   GNUNET_CONTAINER_DLL_remove (rel->head_sent, rel->tail_sent, copy);
2718   GNUNET_free (copy);
2719 }
2720
2721
2722 /**
2723  * Destroy all reliable messages queued for a tunnel,
2724  * during a tunnel destruction.
2725  * Frees the reliability structure itself.
2726  *
2727  * @param rel Reliability data for a tunnel.
2728  */
2729 static void
2730 tunnel_free_reliable_all (struct MeshTunnelReliability *rel)
2731 {
2732   struct MeshReliableMessage *copy;
2733   struct MeshReliableMessage *next;
2734
2735   if (NULL == rel)
2736     return;
2737
2738   for (copy = rel->head_recv; NULL != copy; copy = next)
2739   {
2740     next = copy->next;
2741     GNUNET_CONTAINER_DLL_remove (rel->head_recv, rel->tail_recv, copy);
2742     GNUNET_free (copy);
2743   }
2744   for (copy = rel->head_sent; NULL != copy; copy = next)
2745   {
2746     next = copy->next;
2747     GNUNET_CONTAINER_DLL_remove (rel->head_sent, rel->tail_sent, copy);
2748     GNUNET_free (copy);
2749   }
2750   if (GNUNET_SCHEDULER_NO_TASK != rel->retry_task)
2751     GNUNET_SCHEDULER_cancel (rel->retry_task);
2752   GNUNET_free (rel);
2753 }
2754
2755
2756 /**
2757  * Mark future messages as ACK'd.
2758  *
2759  * @param t Tunnel whose sent buffer to clean.
2760  * @param msg DataACK message with a bitfield of future ACK'd messages.
2761  * @param rel Reliability data.
2762  */
2763 static void
2764 tunnel_free_sent_reliable (struct MeshTunnel *t,
2765                            const struct GNUNET_MESH_DataACK *msg,
2766                            struct MeshTunnelReliability *rel)
2767 {
2768   struct MeshReliableMessage *copy;
2769   struct MeshReliableMessage *next;
2770   uint64_t bitfield;
2771   uint64_t mask;
2772   uint32_t mid;
2773   uint32_t target;
2774   unsigned int i;
2775
2776   bitfield = msg->futures;
2777   mid = ntohl (msg->mid);
2778   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
2779               "free_sent_reliable %u %llX\n",
2780               mid, bitfield);
2781   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
2782               " rel %p, head %p\n",
2783               rel, rel->head_sent);
2784   for (i = 0, copy = rel->head_sent;
2785        i < 64 && NULL != copy && 0 != bitfield;
2786        i++)
2787   {
2788     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
2789                 " trying bit %u (mid %u)\n",
2790                 i, mid + i + 1);
2791     mask = 0x1LL << i;
2792     if (0 == (bitfield & mask))
2793      continue;
2794
2795     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, " set!\n");
2796     /* Bit was set, clear the bit from the bitfield */
2797     bitfield &= ~mask;
2798
2799     /* The i-th bit was set. Do we have that copy? */
2800     /* Skip copies with mid < target */
2801     target = mid + i + 1;
2802     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, " target %u\n", target);
2803     while (NULL != copy && GMC_is_pid_bigger (target, copy->mid))
2804      copy = copy->next;
2805
2806     /* Did we run out of copies? (previously freed, it's ok) */
2807     if (NULL == copy)
2808     {
2809      GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "run out of copies...\n");
2810      return;
2811     }
2812
2813     /* Did we overshoot the target? (previously freed, it's ok) */
2814     if (GMC_is_pid_bigger (copy->mid, target))
2815     {
2816      GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, " next copy %u\n", copy->mid);
2817      continue;
2818     }
2819
2820     /* Now copy->mid == target, free it */
2821     next = copy->next;
2822     tunnel_free_reliable_message (copy);
2823     copy = next;
2824   }
2825   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "free_sent_reliable END\n");
2826 }
2827
2828
2829 /**
2830  * We haven't received an ACK after a certain time: restransmit the message.
2831  *
2832  * @param cls Closure (MeshReliableMessage with the message to restransmit)
2833  * @param tc TaskContext.
2834  */
2835 static void
2836 tunnel_retransmit_message (void *cls,
2837                            const struct GNUNET_SCHEDULER_TaskContext *tc)
2838 {
2839   struct MeshTunnelReliability *rel = cls;
2840   struct MeshReliableMessage *copy;
2841   struct MeshFlowControl *fc;
2842   struct MeshPeerQueue *q;
2843   struct MeshPeerInfo *pi;
2844   struct MeshTunnel *t;
2845   struct GNUNET_MESH_Data *payload;
2846   GNUNET_PEER_Id hop;
2847
2848   rel->retry_task = GNUNET_SCHEDULER_NO_TASK;
2849   if (0 != (tc->reason & GNUNET_SCHEDULER_REASON_SHUTDOWN))
2850     return;
2851
2852   t = rel->t;
2853   copy = rel->head_sent;
2854   if (NULL == copy)
2855   {
2856     GNUNET_break (0);
2857     return;
2858   }
2859
2860   /* Search the message to be retransmitted in the outgoing queue */
2861   payload = (struct GNUNET_MESH_Data *) &copy[1];
2862   hop = rel == t->fwd_rel ? t->next_hop : t->prev_hop;
2863   fc  = rel == t->fwd_rel ? &t->prev_fc : &t->next_fc;
2864   pi  = peer_get_short (hop);
2865   for (q = pi->queue_head; NULL != q; q = q->next)
2866   {
2867     if (ntohs (payload->header.type) == q->type)
2868     {
2869       struct GNUNET_MESH_Data *queued_data = q->cls;
2870
2871       if (queued_data->mid == payload->mid)
2872         break;
2873     }
2874   }
2875
2876   /* Message not found in the queue */
2877   if (NULL == q)
2878   {
2879     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "!!! RETRANSMIT %u\n", copy->mid);
2880
2881     fc->last_ack_sent++;
2882     fc->last_pid_recv++;
2883     payload->pid = htonl (fc->last_pid_recv);
2884     send_prebuilt_message (&payload->header, hop, t);
2885     GNUNET_STATISTICS_update (stats, "# data retransmitted", 1, GNUNET_NO);
2886   }
2887   else
2888   {
2889     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "!!! STILL IN QUEUE %u\n", copy->mid);
2890   }
2891
2892   rel->retry_timer = GNUNET_TIME_STD_BACKOFF (rel->retry_timer);
2893   rel->retry_task = GNUNET_SCHEDULER_add_delayed (rel->retry_timer,
2894                                                   &tunnel_retransmit_message,
2895                                                   cls);
2896 }
2897
2898
2899 /**
2900  * Send keepalive packets for a tunnel.
2901  *
2902  * @param t Tunnel to keep alive..
2903  * @param fwd Is this a FWD keepalive? (owner -> dest).
2904  */
2905 static void
2906 tunnel_keepalive (struct MeshTunnel *t, int fwd)
2907 {
2908   struct GNUNET_MESH_TunnelKeepAlive *msg;
2909   size_t size = sizeof (struct GNUNET_MESH_TunnelKeepAlive);
2910   char cbuf[size];
2911   GNUNET_PEER_Id hop;
2912   uint16_t type;
2913
2914   type = fwd ? GNUNET_MESSAGE_TYPE_MESH_FWD_KEEPALIVE :
2915                GNUNET_MESSAGE_TYPE_MESH_BCK_KEEPALIVE;
2916   hop  = fwd ? t->next_hop : t->prev_hop;
2917
2918   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
2919               "sending %s keepalive for tunnel %d\n",
2920               fwd ? "FWD" : "BCK", t->id.tid);
2921
2922   msg = (struct GNUNET_MESH_TunnelKeepAlive *) cbuf;
2923   msg->header.size = htons (size);
2924   msg->header.type = htons (type);
2925   msg->oid = *(GNUNET_PEER_resolve2 (t->id.oid));
2926   msg->tid = htonl (t->id.tid);
2927   send_prebuilt_message (&msg->header, hop, t);
2928 }
2929
2930
2931 /**
2932  * Send keepalive packets for a tunnel.
2933  *
2934  * @param cls Closure (tunnel for which to send the keepalive).
2935  * @param tc Notification context.
2936  */
2937 static void
2938 tunnel_recreate (struct MeshTunnel *t, int fwd)
2939 {
2940   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
2941               "sending path recreate for tunnel %s[%X]\n",
2942               GNUNET_i2s (GNUNET_PEER_resolve2 (t->id.oid)), t->id.tid);
2943   if (fwd)
2944     send_path_create (t);
2945   else
2946     send_path_ack (t);
2947 }
2948
2949
2950 /**
2951  * Generic tunnel timer management.
2952  * Depending on the role of the peer in the tunnel will send the
2953  * appropriate message (build or keepalive)
2954  *
2955  * @param t Tunnel to maintain.
2956  * @param fw Is FWD?
2957  */
2958 static void
2959 tunnel_maintain (struct MeshTunnel *t, int fwd)
2960 {
2961   switch (t->state)
2962   {
2963     case MESH_TUNNEL_NEW:
2964       GNUNET_break (0);
2965     case MESH_TUNNEL_SEARCHING:
2966       /* TODO DHT GET with RO_BART */
2967       break;
2968     case MESH_TUNNEL_WAITING:
2969       tunnel_recreate (t, fwd);
2970       break;
2971     case MESH_TUNNEL_READY:
2972       tunnel_keepalive (t, fwd);
2973       break;
2974     default:
2975       break;
2976   }
2977 }
2978
2979
2980 static void
2981 tunnel_fwd_keepalive (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
2982 {
2983   struct MeshTunnel *t = cls;
2984
2985   t->fwd_maintenance_task = GNUNET_SCHEDULER_NO_TASK;
2986   if (0 != (tc->reason & GNUNET_SCHEDULER_REASON_SHUTDOWN) ||
2987       NULL == t->owner)
2988     return;
2989
2990   tunnel_maintain (t, GNUNET_YES);
2991   t->fwd_maintenance_task = GNUNET_SCHEDULER_add_delayed (refresh_path_time,
2992                                                           &tunnel_fwd_keepalive,
2993                                                           t);
2994 }
2995
2996
2997 static void
2998 tunnel_bck_keepalive (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
2999 {
3000   struct MeshTunnel *t = cls;
3001
3002   t->bck_maintenance_task = GNUNET_SCHEDULER_NO_TASK;
3003   if (0 != (tc->reason & GNUNET_SCHEDULER_REASON_SHUTDOWN) ||
3004       NULL == t->client)
3005     return;
3006
3007   tunnel_keepalive (t, GNUNET_NO);
3008   t->bck_maintenance_task = GNUNET_SCHEDULER_add_delayed (refresh_path_time,
3009                                                           &tunnel_bck_keepalive,
3010                                                           t);
3011 }
3012
3013
3014 /**
3015  * Send a message to all peers and clients in this tunnel that the tunnel
3016  * is no longer valid. If some peer or client should not receive the message,
3017  * should be zero'ed out before calling this function.
3018  *
3019  * @param t The tunnel whose peers and clients to notify.
3020  */
3021 static void
3022 tunnel_send_destroy (struct MeshTunnel *t)
3023 {
3024   struct GNUNET_MESH_TunnelDestroy msg;
3025   struct GNUNET_PeerIdentity id;
3026
3027   msg.header.size = htons (sizeof (msg));
3028   msg.header.type = htons (GNUNET_MESSAGE_TYPE_MESH_TUNNEL_DESTROY);
3029   GNUNET_PEER_resolve (t->id.oid, &msg.oid);
3030   msg.tid = htonl (t->id.tid);
3031   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
3032               "  sending tunnel destroy for tunnel: %s [%X]\n",
3033               GNUNET_i2s (&msg.oid), t->id.tid);
3034
3035   if (NULL == t->client && 0 != t->next_hop)
3036   {
3037     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  child: %u\n", t->next_hop);
3038     GNUNET_PEER_resolve (t->next_hop, &id);
3039     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
3040                 "  sending forward to %s\n",
3041                 GNUNET_i2s (&id));
3042     send_prebuilt_message (&msg.header, t->next_hop, t);
3043   }
3044   if (NULL == t->owner && 0 != t->prev_hop)
3045   {
3046     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  parent: %u\n", t->prev_hop);
3047     GNUNET_PEER_resolve (t->prev_hop, &id);
3048     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
3049                 "  sending back to %s\n",
3050                 GNUNET_i2s (&id));
3051     send_prebuilt_message (&msg.header, t->prev_hop, t);
3052   }
3053   if (NULL != t->owner)
3054   {
3055     send_local_tunnel_destroy (t, GNUNET_NO);
3056   }
3057   if (NULL != t->client)
3058   {
3059     send_local_tunnel_destroy (t, GNUNET_YES);
3060   }
3061 }
3062
3063 static int
3064 tunnel_destroy (struct MeshTunnel *t)
3065 {
3066   struct MeshClient *c;
3067   struct GNUNET_HashCode hash;
3068   int r;
3069
3070   if (NULL == t)
3071     return GNUNET_OK;
3072
3073   r = GNUNET_OK;
3074   c = t->owner;
3075
3076   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "destroying tunnel %s [%x]\n",
3077               GNUNET_i2s (GNUNET_PEER_resolve2 (t->id.oid)), t->id.tid);
3078   if (NULL != c)
3079     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  by client %u\n", c->id);
3080
3081   GNUNET_CRYPTO_hash (&t->id, sizeof (struct MESH_TunnelID), &hash);
3082   if (GNUNET_YES != GNUNET_CONTAINER_multihashmap_remove (tunnels, &hash, t))
3083   {
3084     GNUNET_break (0);
3085     r = GNUNET_SYSERR;
3086   }
3087
3088   if (NULL != c)
3089   {
3090     if (GNUNET_YES != GNUNET_CONTAINER_multihashmap32_remove (c->own_tunnels,
3091                                                               t->local_tid, t))
3092     {
3093       GNUNET_break (0);
3094       r = GNUNET_SYSERR;
3095     }
3096   }
3097
3098   c = t->client;
3099   if (NULL != c)
3100   {
3101     if (GNUNET_YES !=
3102         GNUNET_CONTAINER_multihashmap32_remove (c->incoming_tunnels,
3103                                                 t->local_tid_dest, t))
3104     {
3105       GNUNET_break (0);
3106       r = GNUNET_SYSERR;
3107     }
3108     if (GNUNET_YES != 
3109         GNUNET_CONTAINER_multihashmap32_remove (incoming_tunnels,
3110                                                 t->local_tid_dest, t))
3111     {
3112       GNUNET_break (0);
3113       r = GNUNET_SYSERR;
3114     }
3115   }
3116
3117   if(GNUNET_YES == t->reliable)
3118   {
3119     tunnel_free_reliable_all (t->fwd_rel);
3120     tunnel_free_reliable_all (t->bck_rel);
3121   }
3122   if (0 != t->prev_hop)
3123   {
3124     peer_cancel_queues (t->prev_hop, t);
3125     GNUNET_PEER_change_rc (t->prev_hop, -1);
3126   }
3127   if (0 != t->next_hop)
3128   {
3129     peer_cancel_queues (t->next_hop, t);
3130     GNUNET_PEER_change_rc (t->next_hop, -1);
3131   }
3132   if (GNUNET_SCHEDULER_NO_TASK != t->next_fc.poll_task)
3133   {
3134     GNUNET_SCHEDULER_cancel (t->next_fc.poll_task);
3135     t->next_fc.poll_task = GNUNET_SCHEDULER_NO_TASK;
3136   }
3137   if (GNUNET_SCHEDULER_NO_TASK != t->prev_fc.poll_task)
3138   {
3139     GNUNET_SCHEDULER_cancel (t->prev_fc.poll_task);
3140     t->prev_fc.poll_task = GNUNET_SCHEDULER_NO_TASK;
3141   }
3142   if (0 != t->dest) {
3143       peer_info_remove_tunnel (peer_get_short (t->dest), t);
3144   }
3145
3146   if (GNUNET_SCHEDULER_NO_TASK != t->fwd_maintenance_task)
3147     GNUNET_SCHEDULER_cancel (t->fwd_maintenance_task);
3148   if (GNUNET_SCHEDULER_NO_TASK != t->bck_maintenance_task)
3149     GNUNET_SCHEDULER_cancel (t->bck_maintenance_task);
3150
3151   n_tunnels--;
3152   GNUNET_STATISTICS_update (stats, "# tunnels", -1, GNUNET_NO);
3153   path_destroy (t->path);
3154   GNUNET_free (t);
3155   return r;
3156 }
3157
3158 /**
3159  * Tunnel is empty: destroy it.
3160  * 
3161  * Notifies all participants (peers, cleints) about the destruction.
3162  * 
3163  * @param t Tunnel to destroy. 
3164  */
3165 static void
3166 tunnel_destroy_empty (struct MeshTunnel *t)
3167 {
3168   #if MESH_DEBUG
3169   {
3170     struct GNUNET_PeerIdentity id;
3171
3172     GNUNET_PEER_resolve (t->id.oid, &id);
3173     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
3174                 "executing destruction of empty tunnel %s [%X]\n",
3175                 GNUNET_i2s (&id), t->id.tid);
3176   }
3177   #endif
3178
3179   if (GNUNET_NO == t->destroy)
3180     tunnel_send_destroy (t);
3181   if (0 == t->pending_messages)
3182     tunnel_destroy (t);
3183   else
3184     t->destroy = GNUNET_YES;
3185 }
3186
3187 /**
3188  * Initialize a Flow Control structure to the initial state.
3189  * 
3190  * @param fc Flow Control structure to initialize.
3191  */
3192 static void
3193 fc_init (struct MeshFlowControl *fc)
3194 {
3195   fc->last_pid_sent = (uint32_t) -1; /* Next (expected) = 0 */
3196   fc->last_pid_recv = (uint32_t) -1;
3197   fc->last_ack_sent = (uint32_t) -1; /* No traffic allowed yet */
3198   fc->last_ack_recv = (uint32_t) -1;
3199   fc->poll_task = GNUNET_SCHEDULER_NO_TASK;
3200   fc->poll_time = GNUNET_TIME_UNIT_SECONDS;
3201   fc->queue_n = 0;
3202 }
3203
3204 /**
3205  * Create a new tunnel
3206  * 
3207  * @param owner Who is the owner of the tunnel (short ID).
3208  * @param tid Tunnel Number of the tunnel.
3209  * @param client Clients that owns the tunnel, NULL for foreign tunnels.
3210  * @param local Tunnel Number for the tunnel, for the client point of view.
3211  * 
3212  * @return A new initialized tunnel. NULL on error.
3213  */
3214 static struct MeshTunnel *
3215 tunnel_new (GNUNET_PEER_Id owner,
3216             MESH_TunnelNumber tid,
3217             struct MeshClient *client,
3218             MESH_TunnelNumber local)
3219 {
3220   struct MeshTunnel *t;
3221   struct GNUNET_HashCode hash;
3222
3223   if (n_tunnels >= max_tunnels && NULL == client)
3224     return NULL;
3225
3226   t = GNUNET_malloc (sizeof (struct MeshTunnel));
3227   t->id.oid = owner;
3228   t->id.tid = tid;
3229   t->queue_max = (max_msgs_queue / max_tunnels) + 1;
3230   t->owner = client;
3231   fc_init (&t->next_fc);
3232   fc_init (&t->prev_fc);
3233   t->next_fc.t = t;
3234   t->prev_fc.t = t;
3235   t->local_tid = local;
3236   n_tunnels++;
3237   GNUNET_STATISTICS_update (stats, "# tunnels", 1, GNUNET_NO);
3238
3239   GNUNET_CRYPTO_hash (&t->id, sizeof (struct MESH_TunnelID), &hash);
3240   if (GNUNET_OK !=
3241       GNUNET_CONTAINER_multihashmap_put (tunnels, &hash, t,
3242                                          GNUNET_CONTAINER_MULTIHASHMAPOPTION_UNIQUE_ONLY))
3243   {
3244     GNUNET_break (0);
3245     tunnel_destroy (t);
3246     if (NULL != client)
3247     {
3248       GNUNET_break (0);
3249       GNUNET_SERVER_receive_done (client->handle, GNUNET_SYSERR);
3250     }
3251     return NULL;
3252   }
3253
3254   if (NULL != client)
3255   {
3256     if (GNUNET_OK !=
3257         GNUNET_CONTAINER_multihashmap32_put (client->own_tunnels,
3258                                              t->local_tid, t,
3259                                              GNUNET_CONTAINER_MULTIHASHMAPOPTION_UNIQUE_ONLY))
3260     {
3261       tunnel_destroy (t);
3262       GNUNET_break (0);
3263       GNUNET_SERVER_receive_done (client->handle, GNUNET_SYSERR);
3264       return NULL;
3265     }
3266   }
3267
3268   return t;
3269 }
3270
3271
3272 /**
3273  * Set options in a tunnel, extracted from a bit flag field
3274  * 
3275  * @param t Tunnel to set options to.
3276  * @param options Bit array in host byte order.
3277  */
3278 static void
3279 tunnel_set_options (struct MeshTunnel *t, uint32_t options)
3280 {
3281   t->nobuffer = (options & GNUNET_MESH_OPTION_NOBUFFER) != 0 ?
3282                  GNUNET_YES : GNUNET_NO;
3283   t->reliable = (options & GNUNET_MESH_OPTION_RELIABLE) != 0 ?
3284                  GNUNET_YES : GNUNET_NO;
3285 }
3286
3287
3288 /**
3289  * Iterator for deleting each tunnel whose client endpoint disconnected.
3290  *
3291  * @param cls Closure (client that has disconnected).
3292  * @param key The local tunnel id (used to access the hashmap).
3293  * @param value The value stored at the key (tunnel to destroy).
3294  *
3295  * @return GNUNET_OK, keep iterating.
3296  */
3297 static int
3298 tunnel_destroy_iterator (void *cls,
3299                          uint32_t key,
3300                          void *value)
3301 {
3302   struct MeshTunnel *t = value;
3303   struct MeshClient *c = cls;
3304
3305   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
3306               " Tunnel %X / %X destroy, due to client %u shutdown.\n",
3307               t->local_tid, t->local_tid_dest, c->id);
3308   client_delete_tunnel (c, t);
3309   if (c == t->client)
3310   {
3311     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, " Client %u is destination.\n", c->id);
3312     t->client = NULL;
3313     if (0 != t->next_hop) { /* destroy could come before a path is used */
3314         GNUNET_PEER_change_rc (t->next_hop, -1);
3315         t->next_hop = 0;
3316     }
3317   }
3318   if (c == t->owner)
3319   {
3320     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, " Client %u is owner.\n", c->id);
3321     t->owner = NULL;
3322     if (0 != t->prev_hop) { /* destroy could come before a path is used */
3323         GNUNET_PEER_change_rc (t->prev_hop, -1);
3324         t->prev_hop = 0;
3325     }
3326   }
3327
3328   tunnel_destroy_empty (t);
3329
3330   return GNUNET_OK;
3331 }
3332
3333
3334 /**
3335  * remove client's ports from the global hashmap on diconnect.
3336  *
3337  * @param cls Closure (unused).
3338  * @param key Port.
3339  * @param value ThClient structure.
3340  *
3341  * @return GNUNET_OK, keep iterating.
3342  */
3343 static int
3344 client_release_ports (void *cls,
3345                       uint32_t key,
3346                       void *value)
3347 {
3348   int res;
3349
3350   res = GNUNET_CONTAINER_multihashmap32_remove (ports, key, value);
3351   if (GNUNET_YES != res)
3352   {
3353     GNUNET_break (0);
3354     GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
3355                 "Port %u by client %p was not registered.\n",
3356                 key, value);
3357   }
3358   return GNUNET_OK;
3359 }
3360
3361 /**
3362  * Timeout function due to lack of keepalive/traffic from the owner.
3363  * Destroys tunnel if called.
3364  *
3365  * @param cls Closure (tunnel to destroy).
3366  * @param tc TaskContext
3367  */
3368 static void
3369 tunnel_fwd_timeout (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
3370 {
3371   struct MeshTunnel *t = cls;
3372
3373   t->fwd_maintenance_task = GNUNET_SCHEDULER_NO_TASK;
3374   if (0 != (tc->reason & GNUNET_SCHEDULER_REASON_SHUTDOWN))
3375     return;
3376   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
3377               "Tunnel %s [%X] FWD timed out. Destroying.\n",
3378               GNUNET_i2s(GNUNET_PEER_resolve2 (t->id.oid)), t->id.tid);
3379   if (NULL != t->client)
3380     send_local_tunnel_destroy (t, GNUNET_YES);
3381   tunnel_destroy (t); /* Do not notify other */
3382 }
3383
3384
3385 /**
3386  * Timeout function due to lack of keepalive/traffic from the destination.
3387  * Destroys tunnel if called.
3388  *
3389  * @param cls Closure (tunnel to destroy).
3390  * @param tc TaskContext
3391  */
3392 static void
3393 tunnel_bck_timeout (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
3394 {
3395   struct MeshTunnel *t = cls;
3396
3397   t->bck_maintenance_task = GNUNET_SCHEDULER_NO_TASK;
3398   if (0 != (tc->reason & GNUNET_SCHEDULER_REASON_SHUTDOWN))
3399     return;
3400   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
3401               "Tunnel %s [%X] BCK timed out. Destroying.\n",
3402               GNUNET_i2s(GNUNET_PEER_resolve2 (t->id.oid)), t->id.tid);
3403   if (NULL != t->owner)
3404     send_local_tunnel_destroy (t, GNUNET_NO);
3405   tunnel_destroy (t); /* Do not notify other */
3406 }
3407
3408
3409 /**
3410  * Resets the tunnel timeout task, some other message has done the task's job.
3411  * - For the first peer on the direction this means to send
3412  *   a keepalive or a path confirmation message (either create or ACK).
3413  * - For all other peers, this means to destroy the tunnel,
3414  *   due to lack of activity.
3415  * Starts the tiemout if no timeout was running (tunnel just created).
3416  *
3417  * @param t Tunnel whose timeout to reset.
3418  * @param fwd Is this forward?
3419  *
3420  * TODO use heap to improve efficiency of scheduler.
3421  */
3422 static void
3423 tunnel_reset_timeout (struct MeshTunnel *t, int fwd)
3424 {
3425   GNUNET_SCHEDULER_TaskIdentifier *ti;
3426   GNUNET_SCHEDULER_Task f;
3427   struct MeshClient *c;
3428
3429   ti = fwd ? &t->fwd_maintenance_task : &t->bck_maintenance_task;
3430   c  = fwd ? t->owner                 : t->client;
3431
3432   if (GNUNET_SCHEDULER_NO_TASK != *ti)
3433     GNUNET_SCHEDULER_cancel (*ti);
3434
3435   if (NULL != c)
3436   {
3437     f  = fwd ? &tunnel_fwd_keepalive : &tunnel_bck_keepalive;
3438     *ti = GNUNET_SCHEDULER_add_delayed (refresh_path_time, f, t);
3439   }
3440   else
3441   {
3442     f  = fwd ? &tunnel_fwd_timeout : &tunnel_bck_timeout;
3443     *ti = GNUNET_SCHEDULER_add_delayed (GNUNET_TIME_relative_multiply
3444                                             (refresh_path_time, 4),
3445                                         f, t);
3446   }
3447 }
3448
3449
3450 /******************************************************************************/
3451 /****************      MESH NETWORK HANDLER HELPERS     ***********************/
3452 /******************************************************************************/
3453
3454 /**
3455  * Free a transmission that was already queued with all resources
3456  * associated to the request.
3457  *
3458  * @param queue Queue handler to cancel.
3459  * @param clear_cls Is it necessary to free associated cls?
3460  */
3461 static void
3462 queue_destroy (struct MeshPeerQueue *queue, int clear_cls)
3463 {
3464   struct MeshFlowControl *fc;
3465
3466   if (GNUNET_YES == clear_cls)
3467   {
3468     switch (queue->type)
3469     {
3470       case GNUNET_MESSAGE_TYPE_MESH_TUNNEL_DESTROY:
3471         GNUNET_log (GNUNET_ERROR_TYPE_INFO, "   cancelling TUNNEL_DESTROY\n");
3472         GNUNET_break (GNUNET_YES == queue->tunnel->destroy);
3473         /* fall through */
3474       case GNUNET_MESSAGE_TYPE_MESH_UNICAST:
3475       case GNUNET_MESSAGE_TYPE_MESH_TO_ORIGIN:
3476       case GNUNET_MESSAGE_TYPE_MESH_ACK:
3477       case GNUNET_MESSAGE_TYPE_MESH_UNICAST_ACK:
3478       case GNUNET_MESSAGE_TYPE_MESH_TO_ORIG_ACK:
3479       case GNUNET_MESSAGE_TYPE_MESH_POLL:
3480       case GNUNET_MESSAGE_TYPE_MESH_FWD_KEEPALIVE:
3481       case GNUNET_MESSAGE_TYPE_MESH_BCK_KEEPALIVE:
3482         GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
3483                     "   prebuilt message\n");
3484         GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
3485                     "   type %s\n",
3486                     GNUNET_MESH_DEBUG_M2S (queue->type));
3487         break;
3488       case GNUNET_MESSAGE_TYPE_MESH_PATH_CREATE:
3489         GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "   type create path\n");
3490         break;
3491       default:
3492         GNUNET_break (0);
3493         GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
3494                     "   type %s unknown!\n",
3495                     GNUNET_MESH_DEBUG_M2S (queue->type));
3496     }
3497     GNUNET_free_non_null (queue->cls);
3498   }
3499   GNUNET_CONTAINER_DLL_remove (queue->peer->queue_head,
3500                                queue->peer->queue_tail,
3501                                queue);
3502
3503   /* Delete from appropriate fc in the tunnel */
3504   if (GNUNET_MESSAGE_TYPE_MESH_UNICAST == queue->type ||
3505       GNUNET_MESSAGE_TYPE_MESH_TO_ORIGIN == queue->type )
3506   {
3507     if (queue->peer->id == queue->tunnel->prev_hop)
3508       fc = &queue->tunnel->prev_fc;
3509     else if (queue->peer->id == queue->tunnel->next_hop)
3510       fc = &queue->tunnel->next_fc;
3511     else
3512     {
3513       GNUNET_break (0);
3514       GNUNET_free (queue);
3515       return;
3516     }
3517     fc->queue_n--;
3518   }
3519   GNUNET_free (queue);
3520 }
3521
3522
3523 /**
3524  * @brief Get the next transmittable message from the queue.
3525  *
3526  * This will be the head, except in the case of being a data packet
3527  * not allowed by the destination peer.
3528  *
3529  * @param peer Destination peer.
3530  *
3531  * @return The next viable MeshPeerQueue element to send to that peer.
3532  *         NULL when there are no transmittable messages.
3533  */
3534 struct MeshPeerQueue *
3535 queue_get_next (const struct MeshPeerInfo *peer)
3536 {
3537   struct MeshPeerQueue *q;
3538
3539   struct GNUNET_MESH_Data *dmsg;
3540   struct MeshTunnel* t;
3541   uint32_t pid;
3542   uint32_t ack;
3543
3544   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "*   selecting message\n");
3545   for (q = peer->queue_head; NULL != q; q = q->next)
3546   {
3547     t = q->tunnel;
3548     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
3549                 "*     %s\n",
3550                 GNUNET_MESH_DEBUG_M2S (q->type));
3551     dmsg = (struct GNUNET_MESH_Data *) q->cls;
3552     pid = ntohl (dmsg->pid);
3553     switch (q->type)
3554     {
3555       case GNUNET_MESSAGE_TYPE_MESH_UNICAST:
3556         ack = t->next_fc.last_ack_recv;
3557         break;
3558       case GNUNET_MESSAGE_TYPE_MESH_TO_ORIGIN:
3559         ack = t->prev_fc.last_ack_recv;
3560         break;
3561       default:
3562         GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
3563                     "*   OK!\n");
3564         return q;
3565     }
3566     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
3567                 "*     ACK: %u, PID: %u, MID: %u\n",
3568                 ack, pid, ntohl (dmsg->mid));
3569     if (GNUNET_NO == GMC_is_pid_bigger (pid, ack))
3570     {
3571       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
3572                   "*   OK!\n");
3573       return q;
3574     }
3575     else
3576     {
3577       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
3578                   "*     NEXT!\n");
3579     }
3580   }
3581   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
3582                 "*   nothing found\n");
3583   return NULL;
3584 }
3585
3586
3587 static size_t
3588 queue_send (void *cls, size_t size, void *buf)
3589 {
3590   struct MeshPeerInfo *peer = cls;
3591   struct GNUNET_MessageHeader *msg;
3592   struct MeshPeerQueue *queue;
3593   struct MeshTunnel *t;
3594   struct GNUNET_PeerIdentity dst_id;
3595   struct MeshFlowControl *fc;
3596   size_t data_size;
3597   uint32_t pid;
3598   uint16_t type;
3599
3600   peer->core_transmit = NULL;
3601
3602   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "* Queue send\n");
3603   queue = queue_get_next (peer);
3604
3605   /* Queue has no internal mesh traffic nor sendable payload */
3606   if (NULL == queue)
3607   {
3608     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "*   not ready, return\n");
3609     if (NULL == peer->queue_head)
3610       GNUNET_break (0); /* Core tmt_rdy should've been canceled */
3611     return 0;
3612   }
3613   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "*   not empty\n");
3614
3615   GNUNET_PEER_resolve (peer->id, &dst_id);
3616   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
3617               "*   towards %s\n",
3618               GNUNET_i2s (&dst_id));
3619   /* Check if buffer size is enough for the message */
3620   if (queue->size > size)
3621   {
3622       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
3623                   "*   not enough room, reissue\n");
3624       peer->core_transmit =
3625           GNUNET_CORE_notify_transmit_ready (core_handle,
3626                                              GNUNET_NO,
3627                                              0,
3628                                              GNUNET_TIME_UNIT_FOREVER_REL,
3629                                              &dst_id,
3630                                              queue->size,
3631                                              &queue_send,
3632                                              peer);
3633       return 0;
3634   }
3635   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "*   size ok\n");
3636
3637   t = queue->tunnel;
3638   GNUNET_assert (0 < t->pending_messages);
3639   t->pending_messages--;
3640   type = 0;
3641
3642   /* Fill buf */
3643   switch (queue->type)
3644   {
3645     case 0:
3646     case GNUNET_MESSAGE_TYPE_MESH_ACK:
3647     case GNUNET_MESSAGE_TYPE_MESH_UNICAST_ACK:
3648     case GNUNET_MESSAGE_TYPE_MESH_TO_ORIG_ACK:
3649     case GNUNET_MESSAGE_TYPE_MESH_POLL:
3650     case GNUNET_MESSAGE_TYPE_MESH_PATH_BROKEN:
3651     case GNUNET_MESSAGE_TYPE_MESH_PATH_DESTROY:
3652     case GNUNET_MESSAGE_TYPE_MESH_TUNNEL_DESTROY:
3653     case GNUNET_MESSAGE_TYPE_MESH_FWD_KEEPALIVE:
3654     case GNUNET_MESSAGE_TYPE_MESH_BCK_KEEPALIVE:
3655       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
3656                   "*   raw: %s\n",
3657                   GNUNET_MESH_DEBUG_M2S (queue->type));
3658       /* Fall through */
3659     case GNUNET_MESSAGE_TYPE_MESH_UNICAST:
3660     case GNUNET_MESSAGE_TYPE_MESH_TO_ORIGIN:
3661       data_size = send_core_data_raw (queue->cls, size, buf);
3662       msg = (struct GNUNET_MessageHeader *) buf;
3663       type = ntohs (msg->type);
3664       break;
3665     case GNUNET_MESSAGE_TYPE_MESH_PATH_CREATE:
3666       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "*   path create\n");
3667       data_size = send_core_path_create (queue->cls, size, buf);
3668       break;
3669     case GNUNET_MESSAGE_TYPE_MESH_PATH_ACK:
3670       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "*   path ack\n");
3671       data_size = send_core_path_ack (queue->cls, size, buf);
3672       break;
3673     default:
3674       GNUNET_break (0);
3675       GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
3676                   "*   type unknown: %u\n",
3677                   queue->type);
3678       data_size = 0;
3679   }
3680
3681   if (0 < drop_percent &&
3682       GNUNET_CRYPTO_random_u32(GNUNET_CRYPTO_QUALITY_WEAK, 101) < drop_percent)
3683   {
3684     GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
3685                 "Dropping message of type %s\n",
3686                 GNUNET_MESH_DEBUG_M2S(queue->type));
3687     data_size = 0;
3688   }
3689   /* Free queue, but cls was freed by send_core_* */
3690   queue_destroy (queue, GNUNET_NO);
3691
3692   /* Send ACK if needed, after accounting for sent ID in fc->queue_n */
3693   pid = ((struct GNUNET_MESH_Data *) buf)->pid;
3694   pid = ntohl (pid);
3695   switch (type)
3696   {
3697     case GNUNET_MESSAGE_TYPE_MESH_UNICAST:
3698       t->next_fc.last_pid_sent = pid;
3699       tunnel_send_ack (t, GNUNET_MESSAGE_TYPE_MESH_UNICAST, GNUNET_YES);
3700       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
3701                   "!!! FWD  %u\n",
3702                   ntohl ( ((struct GNUNET_MESH_Data *) buf)->mid ) );
3703       break;
3704     case GNUNET_MESSAGE_TYPE_MESH_TO_ORIGIN:
3705       t->prev_fc.last_pid_sent = pid;
3706       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
3707                   "!!! BCK  %u\n",
3708                   ntohl ( ((struct GNUNET_MESH_Data *) buf)->mid ) );
3709       tunnel_send_ack (t, GNUNET_MESSAGE_TYPE_MESH_TO_ORIGIN, GNUNET_NO);
3710       break;
3711     default:
3712       break;
3713   }
3714
3715   /* If more data in queue, send next */
3716   queue = queue_get_next (peer);
3717   if (NULL != queue)
3718   {
3719       struct GNUNET_PeerIdentity id;
3720
3721       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "*   more data!\n");
3722       GNUNET_PEER_resolve (peer->id, &id);
3723       peer->core_transmit =
3724           GNUNET_CORE_notify_transmit_ready(core_handle,
3725                                             0,
3726                                             0,
3727                                             GNUNET_TIME_UNIT_FOREVER_REL,
3728                                             &id,
3729                                             queue->size,
3730                                             &queue_send,
3731                                             peer);
3732   }
3733   if (peer->id == t->next_hop)
3734     fc = &t->next_fc;
3735   else if (peer->id == t->prev_hop)
3736     fc = &t->prev_fc;
3737   else
3738   {
3739     GNUNET_break (0);
3740     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "id: %u, next: %u, prev: %u\n",
3741                 peer->id, t->next_hop, t->prev_hop);
3742     return data_size;
3743   }
3744   if (NULL != peer->queue_head)
3745   {
3746     if (GNUNET_SCHEDULER_NO_TASK == fc->poll_task && fc->queue_n > 0)
3747     {
3748       GNUNET_log (GNUNET_ERROR_TYPE_INFO,
3749                   "*   %s starting poll timeout\n",
3750                   GNUNET_i2s (&my_full_id));
3751       fc->poll_task = GNUNET_SCHEDULER_add_delayed (fc->poll_time,
3752                                                     &tunnel_poll, fc);
3753     }
3754   }
3755   else
3756   {
3757     if (GNUNET_SCHEDULER_NO_TASK != fc->poll_task)
3758     {
3759       GNUNET_SCHEDULER_cancel (fc->poll_task);
3760       fc->poll_task = GNUNET_SCHEDULER_NO_TASK;
3761     }
3762   }
3763   if (GNUNET_YES == t->destroy && 0 == t->pending_messages)
3764   {
3765     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "*  destroying tunnel!\n");
3766     tunnel_destroy (t);
3767   }
3768   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "*  Return %d\n", data_size);
3769   return data_size;
3770 }
3771
3772
3773 /**
3774  * @brief Queue and pass message to core when possible.
3775  * 
3776  * If type is payload (UNICAST, TO_ORIGIN) checks for queue status and
3777  * accounts for it. In case the queue is full, the message is dropped and
3778  * a break issued.
3779  * 
3780  * Otherwise, message is treated as internal and allowed to go regardless of 
3781  * queue status.
3782  *
3783  * @param cls Closure (@c type dependant). It will be used by queue_send to
3784  *            build the message to be sent if not already prebuilt.
3785  * @param type Type of the message, 0 for a raw message.
3786  * @param size Size of the message.
3787  * @param dst Neighbor to send message to.
3788  * @param t Tunnel this message belongs to.
3789  */
3790 static void
3791 queue_add (void *cls, uint16_t type, size_t size,
3792            struct MeshPeerInfo *dst, struct MeshTunnel *t)
3793 {
3794   struct MeshPeerQueue *queue;
3795   struct GNUNET_PeerIdentity id;
3796   struct MeshFlowControl *fc;
3797   int priority;
3798
3799   fc = NULL;
3800   priority = GNUNET_NO;
3801   if (GNUNET_MESSAGE_TYPE_MESH_UNICAST == type)
3802   {
3803     fc = &t->next_fc;
3804   }
3805   else if (GNUNET_MESSAGE_TYPE_MESH_TO_ORIGIN == type)
3806   {
3807     fc = &t->prev_fc;
3808   }
3809   if (NULL != fc)
3810   {
3811     if (fc->queue_n >= t->queue_max)
3812     {
3813       /* If this isn't a retransmission, drop the message */
3814       if (GNUNET_NO == t->reliable ||
3815           (NULL == t->owner && GNUNET_MESSAGE_TYPE_MESH_UNICAST == type) ||
3816           (NULL == t->client && GNUNET_MESSAGE_TYPE_MESH_TO_ORIGIN == type))
3817       {
3818         GNUNET_STATISTICS_update (stats, "# messages dropped (buffer full)",
3819                                   1, GNUNET_NO);
3820         GNUNET_break (0);
3821         GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
3822                     "queue full: %u/%u\n",
3823                     fc->queue_n, t->queue_max);
3824         return; /* Drop this message */
3825       }
3826       priority = GNUNET_YES;
3827     }
3828     fc->queue_n++;
3829     if (GMC_is_pid_bigger(fc->last_pid_sent + 1, fc->last_ack_recv) &&
3830         GNUNET_SCHEDULER_NO_TASK == fc->poll_task)
3831       fc->poll_task = GNUNET_SCHEDULER_add_delayed (fc->poll_time,
3832                                                     &tunnel_poll,
3833                                                     fc);
3834   }
3835   queue = GNUNET_malloc (sizeof (struct MeshPeerQueue));
3836   queue->cls = cls;
3837   queue->type = type;
3838   queue->size = size;
3839   queue->peer = dst;
3840   queue->tunnel = t;
3841   if (GNUNET_YES == priority)
3842   {
3843     struct GNUNET_MESH_Data *d;
3844     uint32_t prev;
3845     uint32_t next;
3846
3847     GNUNET_CONTAINER_DLL_insert (dst->queue_head, dst->queue_tail, queue);
3848     d = (struct GNUNET_MESH_Data *) queue->cls;
3849     prev = d->pid;
3850     for (queue = dst->queue_tail; NULL != queue; queue = queue->prev)
3851     {
3852       if (queue->type != type)
3853         continue;
3854       d = (struct GNUNET_MESH_Data *) queue->cls;
3855       next = d->pid;
3856       d->pid = prev;
3857       prev = next;
3858     }
3859   }
3860   else
3861     GNUNET_CONTAINER_DLL_insert_tail (dst->queue_head, dst->queue_tail, queue);
3862   
3863   if (NULL == dst->core_transmit)
3864   {
3865     GNUNET_PEER_resolve (dst->id, &id);
3866     dst->core_transmit =
3867         GNUNET_CORE_notify_transmit_ready (core_handle,
3868                                            0,
3869                                            0,
3870                                            GNUNET_TIME_UNIT_FOREVER_REL,
3871                                            &id,
3872                                            size,
3873                                            &queue_send,
3874                                            dst);
3875   }
3876   t->pending_messages++;
3877 }
3878
3879
3880 /******************************************************************************/
3881 /********************      MESH NETWORK HANDLERS     **************************/
3882 /******************************************************************************/
3883
3884
3885 /**
3886  * Core handler for path creation
3887  *
3888  * @param cls closure
3889  * @param message message
3890  * @param peer peer identity this notification is about
3891  *
3892  * @return GNUNET_OK to keep the connection open,
3893  *         GNUNET_SYSERR to close it (signal serious error)
3894  */
3895 static int
3896 handle_mesh_path_create (void *cls, const struct GNUNET_PeerIdentity *peer,
3897                          const struct GNUNET_MessageHeader *message)
3898 {
3899   unsigned int own_pos;
3900   uint16_t size;
3901   uint16_t i;
3902   MESH_TunnelNumber tid;
3903   struct GNUNET_MESH_CreateTunnel *msg;
3904   struct GNUNET_PeerIdentity *pi;
3905   struct MeshPeerPath *path;
3906   struct MeshPeerInfo *dest_peer_info;
3907   struct MeshPeerInfo *orig_peer_info;
3908   struct MeshTunnel *t;
3909
3910   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
3911               "Received a path create msg [%s]\n",
3912               GNUNET_i2s (&my_full_id));
3913   size = ntohs (message->size);
3914   if (size < sizeof (struct GNUNET_MESH_CreateTunnel))
3915   {
3916     GNUNET_break_op (0);
3917     return GNUNET_OK;
3918   }
3919
3920   size -= sizeof (struct GNUNET_MESH_CreateTunnel);
3921   if (size % sizeof (struct GNUNET_PeerIdentity))
3922   {
3923     GNUNET_break_op (0);
3924     return GNUNET_OK;
3925   }
3926   size /= sizeof (struct GNUNET_PeerIdentity);
3927   if (size < 1)
3928   {
3929     GNUNET_break_op (0);
3930     return GNUNET_OK;
3931   }
3932   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "    path has %u hops.\n", size);
3933   msg = (struct GNUNET_MESH_CreateTunnel *) message;
3934
3935   tid = ntohl (msg->tid);
3936   pi = (struct GNUNET_PeerIdentity *) &msg[1];
3937   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
3938               "    path is for tunnel %s[%X].\n", GNUNET_i2s (pi), tid);
3939   t = tunnel_get (pi, tid);
3940   if (NULL == t) /* might be a local tunnel */
3941   {
3942     uint32_t opt;
3943
3944     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  Creating tunnel\n");
3945     t = tunnel_new (GNUNET_PEER_intern (pi), tid, NULL, 0);
3946     if (NULL == t)
3947     {
3948       GNUNET_break (0);
3949       return GNUNET_OK;
3950     }
3951     t->port = ntohl (msg->port);
3952     opt = ntohl (msg->opt);
3953     if (0 != (opt & GNUNET_MESH_OPTION_NOBUFFER))
3954     {
3955       t->nobuffer = GNUNET_YES;
3956       t->queue_max = 1;
3957     }
3958     if (0 != (opt & GNUNET_MESH_OPTION_RELIABLE))
3959     {
3960       t->reliable = GNUNET_YES;
3961     }
3962     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  nobuffer:%d\n", t->nobuffer);
3963   }
3964   tunnel_reset_timeout (t, GNUNET_YES);
3965   tunnel_change_state (t,  MESH_TUNNEL_WAITING);
3966   dest_peer_info =
3967       GNUNET_CONTAINER_multihashmap_get (peers, &pi[size - 1].hashPubKey);
3968   if (NULL == dest_peer_info)
3969   {
3970     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
3971                 "  Creating PeerInfo for destination.\n");
3972     dest_peer_info = GNUNET_malloc (sizeof (struct MeshPeerInfo));
3973     dest_peer_info->id = GNUNET_PEER_intern (&pi[size - 1]);
3974     GNUNET_CONTAINER_multihashmap_put (peers, &pi[size - 1].hashPubKey,
3975                                        dest_peer_info,
3976                                        GNUNET_CONTAINER_MULTIHASHMAPOPTION_UNIQUE_ONLY);
3977   }
3978   orig_peer_info = GNUNET_CONTAINER_multihashmap_get (peers, &pi->hashPubKey);
3979   if (NULL == orig_peer_info)
3980   {
3981     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
3982                 "  Creating PeerInfo for origin.\n");
3983     orig_peer_info = GNUNET_malloc (sizeof (struct MeshPeerInfo));
3984     orig_peer_info->id = GNUNET_PEER_intern (pi);
3985     GNUNET_CONTAINER_multihashmap_put (peers, &pi->hashPubKey, orig_peer_info,
3986                                        GNUNET_CONTAINER_MULTIHASHMAPOPTION_UNIQUE_ONLY);
3987   }
3988   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  Creating path...\n");
3989   path = path_new (size);
3990   own_pos = 0;
3991   for (i = 0; i < size; i++)
3992   {
3993     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  ... adding %s\n",
3994                 GNUNET_i2s (&pi[i]));
3995     path->peers[i] = GNUNET_PEER_intern (&pi[i]);
3996     if (path->peers[i] == myid)
3997       own_pos = i;
3998   }
3999   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  Own position: %u\n", own_pos);
4000   if (own_pos == 0 && path->peers[own_pos] != myid)
4001   {
4002     /* create path: self not found in path through self */
4003     GNUNET_break_op (0);
4004     path_destroy (path);
4005     tunnel_destroy (t);
4006     return GNUNET_OK;
4007   }
4008   path_add_to_peers (path, GNUNET_NO);
4009   tunnel_use_path (t, path);
4010
4011   peer_info_add_tunnel (dest_peer_info, t);
4012
4013   if (own_pos == size - 1)
4014   {
4015     struct MeshClient *c;
4016
4017     /* Find target client */
4018     c = GNUNET_CONTAINER_multihashmap32_get (ports, t->port);
4019     if (NULL == c)
4020     {
4021       /* TODO send reject */
4022       return GNUNET_OK;
4023     }
4024
4025     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  It's for us!\n");
4026     peer_info_add_path_to_origin (orig_peer_info, path, GNUNET_YES);
4027
4028     /* Assign local tid */
4029     while (NULL != tunnel_get_incoming (next_local_tid))
4030       next_local_tid = (next_local_tid + 1) | GNUNET_MESH_LOCAL_TUNNEL_ID_SERV;
4031     t->local_tid_dest = next_local_tid++;
4032     next_local_tid = next_local_tid | GNUNET_MESH_LOCAL_TUNNEL_ID_SERV;
4033
4034     if (GNUNET_YES == t->reliable)
4035     {
4036       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "!!! Reliable\n");
4037       t->bck_rel = GNUNET_malloc (sizeof (struct MeshTunnelReliability));
4038       t->bck_rel->t = t;
4039       t->bck_rel->expected_delay = MESH_RETRANSMIT_TIME;
4040     }
4041
4042     tunnel_add_client (t, c);
4043     send_local_tunnel_create (t);
4044     send_path_ack (t);
4045      /* Eliminate tunnel when origin dies */
4046     tunnel_reset_timeout (t, GNUNET_YES);
4047     /* Keep tunnel alive in direction dest->owner*/
4048     tunnel_reset_timeout (t, GNUNET_NO); 
4049   }
4050   else
4051   {
4052     struct MeshPeerPath *path2;
4053
4054     t->next_hop = path->peers[own_pos + 1];
4055     GNUNET_PEER_change_rc(t->next_hop, 1);
4056
4057     /* It's for somebody else! Retransmit. */
4058     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  Retransmitting.\n");
4059     path2 = path_duplicate (path);
4060     peer_info_add_path (dest_peer_info, path2, GNUNET_NO);
4061     peer_info_add_path_to_origin (orig_peer_info, path, GNUNET_NO);
4062     send_path_create (t);
4063   }
4064   return GNUNET_OK;
4065 }
4066
4067
4068
4069 /**
4070  * Core handler for path ACKs
4071  *
4072  * @param cls closure
4073  * @param message message
4074  * @param peer peer identity this notification is about
4075  *
4076  * @return GNUNET_OK to keep the connection open,
4077  *         GNUNET_SYSERR to close it (signal serious error)
4078  */
4079 static int
4080 handle_mesh_path_ack (void *cls, const struct GNUNET_PeerIdentity *peer,
4081                       const struct GNUNET_MessageHeader *message)
4082 {
4083   struct GNUNET_MESH_PathACK *msg;
4084   struct MeshPeerInfo *peer_info;
4085   struct MeshPeerPath *p;
4086   struct MeshTunnel *t;
4087
4088   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Received a path ACK msg [%s]\n",
4089               GNUNET_i2s (&my_full_id));
4090   msg = (struct GNUNET_MESH_PathACK *) message;
4091   t = tunnel_get (&msg->oid, ntohl(msg->tid));
4092   if (NULL == t)
4093   {
4094     /* TODO notify that we don't know the tunnel */
4095     GNUNET_STATISTICS_update (stats, "# control on unknown tunnel", 1, GNUNET_NO);
4096     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  don't know the tunnel %s [%X]!\n",
4097                 GNUNET_i2s (&msg->oid), ntohl(msg->tid));
4098     return GNUNET_OK;
4099   }
4100   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  on tunnel %s [%X]\n",
4101               GNUNET_i2s (&msg->oid), ntohl(msg->tid));
4102
4103   peer_info = peer_get (&msg->peer_id);
4104   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  by peer %s\n",
4105               GNUNET_i2s (&msg->peer_id));
4106   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  via peer %s\n",
4107               GNUNET_i2s (peer));
4108
4109   /* Add path to peers? */
4110   p = t->path;
4111   if (NULL != p)
4112   {
4113     path_add_to_peers (p, GNUNET_YES);
4114   }
4115   else
4116   {
4117     GNUNET_break (0);
4118   }
4119   tunnel_change_state (t, MESH_TUNNEL_READY);
4120   tunnel_reset_timeout (t, GNUNET_NO);
4121   t->next_fc.last_ack_recv = (NULL == t->client) ? ntohl (msg->ack) : 0;
4122   t->prev_fc.last_ack_sent = ntohl (msg->ack);
4123
4124   /* Message for us? */
4125   if (0 == memcmp (&msg->oid, &my_full_id, sizeof (struct GNUNET_PeerIdentity)))
4126   {
4127     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  It's for us!\n");
4128     if (NULL == t->owner)
4129     {
4130       GNUNET_break_op (0);
4131       return GNUNET_OK;
4132     }
4133     if (NULL != peer_info->dhtget)
4134     {
4135       GNUNET_DHT_get_stop (peer_info->dhtget);
4136       peer_info->dhtget = NULL;
4137     }
4138     tunnel_send_ack (t, GNUNET_MESSAGE_TYPE_MESH_PATH_ACK, GNUNET_YES);
4139     tunnel_send_ack (t, GNUNET_MESSAGE_TYPE_MESH_PATH_ACK, GNUNET_NO);
4140     return GNUNET_OK;
4141   }
4142
4143   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
4144               "  not for us, retransmitting...\n");
4145   send_prebuilt_message (message, t->prev_hop, t);
4146   return GNUNET_OK;
4147 }
4148
4149
4150 /**
4151  * Core handler for notifications of broken paths
4152  *
4153  * @param cls closure
4154  * @param message message
4155  * @param peer peer identity this notification is about
4156  *
4157  * @return GNUNET_OK to keep the connection open,
4158  *         GNUNET_SYSERR to close it (signal serious error)
4159  */
4160 static int
4161 handle_mesh_path_broken (void *cls, const struct GNUNET_PeerIdentity *peer,
4162                          const struct GNUNET_MessageHeader *message)
4163 {
4164   struct GNUNET_MESH_PathBroken *msg;
4165   struct MeshTunnel *t;
4166
4167   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
4168               "Received a PATH BROKEN msg from %s\n", GNUNET_i2s (peer));
4169   msg = (struct GNUNET_MESH_PathBroken *) message;
4170   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  regarding %s\n",
4171               GNUNET_i2s (&msg->peer1));
4172   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  regarding %s\n",
4173               GNUNET_i2s (&msg->peer2));
4174   t = tunnel_get (&msg->oid, ntohl (msg->tid));
4175   if (NULL == t)
4176   {
4177     GNUNET_break_op (0);
4178     return GNUNET_OK;
4179   }
4180   tunnel_notify_connection_broken (t, GNUNET_PEER_search (&msg->peer1),
4181                                    GNUNET_PEER_search (&msg->peer2));
4182   return GNUNET_OK;
4183
4184 }
4185
4186
4187 /**
4188  * Core handler for tunnel destruction
4189  *
4190  * @param cls closure
4191  * @param message message
4192  * @param peer peer identity this notification is about
4193  *
4194  * @return GNUNET_OK to keep the connection open,
4195  *         GNUNET_SYSERR to close it (signal serious error)
4196  */
4197 static int
4198 handle_mesh_tunnel_destroy (void *cls, const struct GNUNET_PeerIdentity *peer,
4199                             const struct GNUNET_MessageHeader *message)
4200 {
4201   struct GNUNET_MESH_TunnelDestroy *msg;
4202   struct MeshTunnel *t;
4203
4204   msg = (struct GNUNET_MESH_TunnelDestroy *) message;
4205   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
4206               "Got a TUNNEL DESTROY packet from %s\n",
4207               GNUNET_i2s (peer));
4208   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
4209               "  for tunnel %s [%u]\n",
4210               GNUNET_i2s (&msg->oid), ntohl (msg->tid));
4211   t = tunnel_get (&msg->oid, ntohl (msg->tid));
4212   if (NULL == t)
4213   {
4214     /* Probably already got the message from another path,
4215      * destroyed the tunnel and retransmitted to children.
4216      * Safe to ignore.
4217      */
4218     GNUNET_STATISTICS_update (stats, "# control on unknown tunnel",
4219                               1, GNUNET_NO);
4220     return GNUNET_OK;
4221   }
4222   if (t->local_tid_dest >= GNUNET_MESH_LOCAL_TUNNEL_ID_SERV)
4223   {
4224     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "INCOMING TUNNEL %X %X\n",
4225                 t->local_tid, t->local_tid_dest);
4226   }
4227   if (GNUNET_PEER_search (peer) == t->prev_hop)
4228   {
4229     // TODO check owner's signature
4230     // TODO add owner's signatue to tunnel for retransmission
4231     peer_cancel_queues (t->prev_hop, t);
4232     GNUNET_PEER_change_rc (t->prev_hop, -1);
4233     t->prev_hop = 0;
4234   }
4235   else if (GNUNET_PEER_search (peer) == t->next_hop)
4236   {
4237     // TODO check dest's signature
4238     // TODO add dest's signatue to tunnel for retransmission
4239     peer_cancel_queues (t->next_hop, t);
4240     GNUNET_PEER_change_rc (t->next_hop, -1);
4241     t->next_hop = 0;
4242   }
4243   else
4244   {
4245     GNUNET_break_op (0);
4246     // TODO check both owner AND destination's signature to see which matches
4247     // TODO restransmit in appropriate direction
4248     return GNUNET_OK;
4249   }
4250   tunnel_destroy_empty (t);
4251
4252   // TODO: add timeout to destroy the tunnel anyway
4253   return GNUNET_OK;
4254 }
4255
4256
4257 /**
4258  * Generic handler for mesh network payload traffic.
4259  *
4260  * @param peer Peer identity this notification is about.
4261  * @param message Data message.
4262  * @param fwd Is this FWD traffic? GNUNET_YES : GNUNET_NO;
4263  *
4264  * @return GNUNET_OK to keep the connection open,
4265  *         GNUNET_SYSERR to close it (signal serious error)
4266  */
4267 static int
4268 handle_mesh_data (const struct GNUNET_PeerIdentity *peer,
4269                   const struct GNUNET_MessageHeader *message,
4270                   int fwd)
4271 {
4272   struct GNUNET_MESH_Data *msg;
4273   struct MeshFlowControl *fc;
4274   struct MeshTunnelReliability *rel;
4275   struct MeshTunnel *t;
4276   struct MeshClient *c;
4277   GNUNET_PEER_Id hop;
4278   uint32_t pid;
4279   uint32_t ttl;
4280   uint16_t type;
4281   size_t size;
4282
4283   /* Check size */
4284   size = ntohs (message->size);
4285   if (size <
4286       sizeof (struct GNUNET_MESH_Data) +
4287       sizeof (struct GNUNET_MessageHeader))
4288   {
4289     GNUNET_break (0);
4290     return GNUNET_OK;
4291   }
4292   type =ntohs (message->type);
4293   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "got a %s message from %s\n",
4294               GNUNET_MESH_DEBUG_M2S (type), GNUNET_i2s (peer));
4295   msg = (struct GNUNET_MESH_Data *) message;
4296   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, " payload of type %s\n",
4297               GNUNET_MESH_DEBUG_M2S (ntohs (msg[1].header.type)));
4298   /* Check tunnel */
4299   t = tunnel_get (&msg->oid, ntohl (msg->tid));
4300   if (NULL == t)
4301   {
4302     /* TODO notify back: we don't know this tunnel */
4303     GNUNET_STATISTICS_update (stats, "# data on unknown tunnel", 1, GNUNET_NO);
4304     GNUNET_break_op (0);
4305     return GNUNET_OK;
4306   }
4307
4308   /*  Initialize FWD/BCK data */
4309   pid = ntohl (msg->pid);
4310   fc =  fwd ? &t->prev_fc : &t->next_fc;
4311   c =   fwd ? t->client   : t->owner;
4312   rel = fwd ? t->bck_rel  : t->fwd_rel;
4313   hop = fwd ? t->next_hop : t->prev_hop;
4314   if (GMC_is_pid_bigger (pid, fc->last_ack_sent))
4315   {
4316     GNUNET_STATISTICS_update (stats, "# unsolicited data", 1, GNUNET_NO);
4317     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
4318                 "WARNING Received PID %u, (prev %u), ACK %u\n",
4319                 pid, fc->last_pid_recv, fc->last_ack_sent);
4320     return GNUNET_OK;
4321   }
4322   if (NULL != c)
4323     tunnel_change_state (t, MESH_TUNNEL_READY);
4324   tunnel_reset_timeout (t, fwd);
4325   if (NULL != c)
4326   {
4327     /* TODO signature verification */
4328     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  it's for us! sending to client\n");
4329     GNUNET_STATISTICS_update (stats, "# data received", 1, GNUNET_NO);
4330     if (GMC_is_pid_bigger (pid, fc->last_pid_recv))
4331     {
4332       uint32_t mid;
4333
4334       mid = ntohl (msg->mid);
4335       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
4336                   " pid %u (mid %u) not seen yet\n", pid, mid);
4337       fc->last_pid_recv = pid;
4338
4339       if (GNUNET_NO == t->reliable ||
4340           ( !GMC_is_pid_bigger (rel->mid_recv, mid) &&
4341             GMC_is_pid_bigger (rel->mid_recv + 64, mid) ) )
4342       {
4343         GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
4344                     "!!! RECV %u\n", ntohl (msg->mid));
4345         if (GNUNET_YES == t->reliable)
4346         {
4347           /* Is this the exact next expected messasge? */
4348           if (mid == rel->mid_recv)
4349           {
4350             GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "as expected\n");
4351             rel->mid_recv++;
4352             tunnel_send_client_data (t, msg, fwd);
4353             tunnel_send_client_buffered_data (t, c, rel);
4354           }
4355           else
4356           {
4357             GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "save for later\n");
4358             tunnel_add_buffered_data (t, msg, rel);
4359           }
4360         }
4361         else /* Tunnel unreliable, send to clients directly */
4362         {
4363           tunnel_send_client_data (t, msg, fwd);
4364         }
4365       }
4366       else
4367       {
4368         GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
4369                     " MID %u not expected (%u - %u), dropping!\n",
4370                     ntohl (msg->mid), rel->mid_recv, rel->mid_recv + 64);
4371       }
4372     }
4373     else
4374     {
4375 //       GNUNET_STATISTICS_update (stats, "# duplicate PID", 1, GNUNET_NO);
4376       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
4377                   " Pid %u not expected (%u+), dropping!\n",
4378                   pid, fc->last_pid_recv + 1);
4379     }
4380     tunnel_send_ack (t, type, fwd);
4381     return GNUNET_OK;
4382   }
4383   fc->last_pid_recv = pid;
4384   if (0 == hop)
4385   {
4386     GNUNET_STATISTICS_update (stats, "# data on dying tunnel", 1, GNUNET_NO);
4387     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "data on dying tunnel %s[%X]\n",
4388                 GNUNET_PEER_resolve2 (t->id.oid), ntohl (msg->tid));
4389     return GNUNET_OK; /* Next hop has destoyed the tunnel, drop */
4390   }
4391   ttl = ntohl (msg->ttl);
4392   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "   ttl: %u\n", ttl);
4393   if (ttl == 0)
4394   {
4395     GNUNET_STATISTICS_update (stats, "# TTL drops", 1, GNUNET_NO);
4396     GNUNET_log (GNUNET_ERROR_TYPE_WARNING, " TTL is 0, DROPPING!\n");
4397     tunnel_send_ack (t, GNUNET_MESSAGE_TYPE_MESH_ACK, fwd);
4398     return GNUNET_OK;
4399   }
4400
4401   if (myid != hop)
4402   {
4403     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  not for us, retransmitting...\n");
4404     send_prebuilt_message (message, hop, t);
4405     GNUNET_STATISTICS_update (stats, "# unicast forwarded", 1, GNUNET_NO);
4406   }
4407   return GNUNET_OK;
4408 }
4409
4410
4411 /**
4412  * Core handler for mesh network traffic going from the origin to a peer
4413  *
4414  * @param cls Closure (unused).
4415  * @param message Message received.
4416  * @param peer Peer who sent the message.
4417  *
4418  * @return GNUNET_OK to keep the connection open,
4419  *         GNUNET_SYSERR to close it (signal serious error)
4420  */
4421 static int
4422 handle_mesh_unicast (void *cls, const struct GNUNET_PeerIdentity *peer,
4423                      const struct GNUNET_MessageHeader *message)
4424 {
4425   return handle_mesh_data (peer, message, GNUNET_YES);
4426 }
4427
4428 /**
4429  * Core handler for mesh network traffic towards the owner of a tunnel.
4430  *
4431  * @param cls Closure (unused).
4432  * @param message Message received.
4433  * @param peer Peer who sent the message.
4434  *
4435  * @return GNUNET_OK to keep the connection open,
4436  *         GNUNET_SYSERR to close it (signal serious error)
4437  */
4438 static int
4439 handle_mesh_to_orig (void *cls, const struct GNUNET_PeerIdentity *peer,
4440                      const struct GNUNET_MessageHeader *message)
4441 {
4442   return handle_mesh_data (peer, message, GNUNET_NO);
4443 }
4444
4445
4446 /**
4447  * Core handler for mesh network traffic end-to-end ACKs.
4448  *
4449  * @param cls Closure.
4450  * @param message Message.
4451  * @param peer Peer identity this notification is about.
4452  *
4453  * @return GNUNET_OK to keep the connection open,
4454  *         GNUNET_SYSERR to close it (signal serious error)
4455  */
4456 static int
4457 handle_mesh_data_ack (void *cls, const struct GNUNET_PeerIdentity *peer,
4458                       const struct GNUNET_MessageHeader *message)
4459 {
4460   struct GNUNET_MESH_DataACK *msg;
4461   struct MeshTunnelReliability *rel;
4462   struct MeshReliableMessage *copy;
4463   struct MeshReliableMessage *next;
4464   struct MeshTunnel *t;
4465   GNUNET_PEER_Id id;
4466   uint32_t ack;
4467   uint16_t type;
4468   int work;
4469
4470   type = ntohs (message->type);
4471   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Got a %s message from %s!\n",
4472               GNUNET_MESH_DEBUG_M2S (type), GNUNET_i2s (peer));
4473   msg = (struct GNUNET_MESH_DataACK *) message;
4474
4475   t = tunnel_get (&msg->oid, ntohl (msg->tid));
4476   if (NULL == t)
4477   {
4478     /* TODO notify that we dont know this tunnel (whom)? */
4479     GNUNET_STATISTICS_update (stats, "# ack on unknown tunnel", 1, GNUNET_NO);
4480     return GNUNET_OK;
4481   }
4482   ack = ntohl (msg->mid);
4483   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  ACK %u\n", ack);
4484
4485   /* Is this a forward or backward ACK? */
4486   id = GNUNET_PEER_search (peer);
4487   if (t->next_hop == id && GNUNET_MESSAGE_TYPE_MESH_UNICAST_ACK == type)
4488   {
4489     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  FWD ACK\n");
4490     if (NULL == t->owner)
4491     {
4492       send_prebuilt_message (message, t->prev_hop, t);
4493       return GNUNET_OK;
4494     }
4495     rel = t->fwd_rel;
4496   }
4497   else if (t->prev_hop == id && GNUNET_MESSAGE_TYPE_MESH_TO_ORIG_ACK == type)
4498   {
4499     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  BCK ACK\n");
4500     if (NULL == t->client)
4501     {
4502       send_prebuilt_message (message, t->next_hop, t);
4503       return GNUNET_OK;
4504     }
4505     rel = t->bck_rel;
4506   }
4507   else
4508   {
4509     GNUNET_break_op (0);
4510     return GNUNET_OK;
4511   }
4512
4513   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "!!! ACK %u\n", ack);
4514   for (work = GNUNET_NO, copy = rel->head_sent; copy != NULL; copy = next)
4515   {
4516    if (GMC_is_pid_bigger (copy->mid, ack))
4517     {
4518       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "!!!  head %u, out!\n", copy->mid);
4519       tunnel_free_sent_reliable (t, msg, rel);
4520       break;
4521     }
4522     work = GNUNET_YES;
4523     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "!!!  id %u\n", copy->mid);
4524     next = copy->next;
4525     tunnel_free_reliable_message (copy);
4526   }
4527   /* Once buffers have been free'd, send ACK */
4528   tunnel_send_ack (t, type, GNUNET_MESSAGE_TYPE_MESH_UNICAST_ACK == type);
4529
4530   /* If some message was free'd, update the retransmission delay*/
4531   if (GNUNET_YES == work)
4532   {
4533     if (GNUNET_SCHEDULER_NO_TASK != rel->retry_task)
4534     {
4535       GNUNET_SCHEDULER_cancel (rel->retry_task);
4536       if (NULL == rel->head_sent)
4537       {
4538         rel->retry_task = GNUNET_SCHEDULER_NO_TASK;
4539       }
4540       else
4541       {
4542         struct GNUNET_TIME_Absolute new_target;
4543         struct GNUNET_TIME_Relative delay;
4544
4545         delay = GNUNET_TIME_relative_multiply (rel->retry_timer,
4546                                                MESH_RETRANSMIT_MARGIN);
4547         new_target = GNUNET_TIME_absolute_add (rel->head_sent->timestamp,
4548                                                delay);
4549         delay = GNUNET_TIME_absolute_get_remaining (new_target);
4550         rel->retry_task =
4551             GNUNET_SCHEDULER_add_delayed (delay,
4552                                           &tunnel_retransmit_message,
4553                                           rel);
4554       }
4555     }
4556     else
4557       GNUNET_break (0);
4558   }
4559   return GNUNET_OK;
4560 }
4561
4562 /**
4563  * Core handler for mesh network traffic point-to-point acks.
4564  *
4565  * @param cls closure
4566  * @param message message
4567  * @param peer peer identity this notification is about
4568  *
4569  * @return GNUNET_OK to keep the connection open,
4570  *         GNUNET_SYSERR to close it (signal serious error)
4571  */
4572 static int
4573 handle_mesh_ack (void *cls, const struct GNUNET_PeerIdentity *peer,
4574                  const struct GNUNET_MessageHeader *message)
4575 {
4576   struct GNUNET_MESH_ACK *msg;
4577   struct MeshTunnel *t;
4578   struct MeshFlowControl *fc;
4579   GNUNET_PEER_Id id;
4580   uint32_t ack;
4581
4582   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Got an ACK packet from %s!\n",
4583               GNUNET_i2s (peer));
4584   msg = (struct GNUNET_MESH_ACK *) message;
4585
4586   t = tunnel_get (&msg->oid, ntohl (msg->tid));
4587
4588   if (NULL == t)
4589   {
4590     /* TODO notify that we dont know this tunnel (whom)? */
4591     GNUNET_STATISTICS_update (stats, "# ack on unknown tunnel", 1, GNUNET_NO);
4592     return GNUNET_OK;
4593   }
4594   ack = ntohl (msg->pid);
4595   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  ACK %u\n", ack);
4596
4597   /* Is this a forward or backward ACK? */
4598   id = GNUNET_PEER_search (peer);
4599   if (t->next_hop == id)
4600   {
4601     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  FWD ACK\n");
4602     fc = &t->next_fc;
4603   }
4604   else if (t->prev_hop == id)
4605   {
4606     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  BCK ACK\n");
4607     fc = &t->prev_fc;
4608   }
4609   else
4610   {
4611     GNUNET_break_op (0);
4612     return GNUNET_OK;
4613   }
4614
4615   if (GNUNET_SCHEDULER_NO_TASK != fc->poll_task &&
4616       GMC_is_pid_bigger (ack, fc->last_ack_recv))
4617   {
4618     GNUNET_SCHEDULER_cancel (fc->poll_task);
4619     fc->poll_task = GNUNET_SCHEDULER_NO_TASK;
4620     fc->poll_time = GNUNET_TIME_UNIT_SECONDS;
4621   }
4622
4623   fc->last_ack_recv = ack;
4624   peer_unlock_queue (id);
4625   tunnel_change_state (t, MESH_TUNNEL_READY);
4626
4627   tunnel_send_ack (t, GNUNET_MESSAGE_TYPE_MESH_ACK, t->next_hop == id);
4628
4629   return GNUNET_OK;
4630 }
4631
4632
4633 /**
4634  * Core handler for mesh network traffic point-to-point ack polls.
4635  *
4636  * @param cls closure
4637  * @param message message
4638  * @param peer peer identity this notification is about
4639  *
4640  * @return GNUNET_OK to keep the connection open,
4641  *         GNUNET_SYSERR to close it (signal serious error)
4642  */
4643 static int
4644 handle_mesh_poll (void *cls, const struct GNUNET_PeerIdentity *peer,
4645                   const struct GNUNET_MessageHeader *message)
4646 {
4647   struct GNUNET_MESH_Poll *msg;
4648   struct MeshTunnel *t;
4649   struct MeshFlowControl *fc;
4650   GNUNET_PEER_Id id;
4651   uint32_t pid;
4652   uint32_t old;
4653
4654   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Got an POLL packet from %s!\n",
4655               GNUNET_i2s (peer));
4656
4657   msg = (struct GNUNET_MESH_Poll *) message;
4658
4659   t = tunnel_get (&msg->oid, ntohl (msg->tid));
4660
4661   if (NULL == t)
4662   {
4663     /* TODO notify that we dont know this tunnel (whom)? */
4664     GNUNET_STATISTICS_update (stats, "# poll on unknown tunnel", 1, GNUNET_NO);
4665     GNUNET_break_op (0);
4666     return GNUNET_OK;
4667   }
4668
4669   /* Is this a forward or backward ACK? */
4670   id = GNUNET_PEER_search (peer);
4671   pid = ntohl (msg->pid);
4672   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  PID %u\n", pid);
4673   if (t->next_hop == id)
4674   {
4675     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  from FWD\n");
4676     fc = &t->next_fc;
4677     old = fc->last_pid_recv;
4678   }
4679   else if (t->prev_hop == id)
4680   {
4681     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  from BCK\n");
4682     fc = &t->prev_fc;
4683     old = fc->last_pid_recv;
4684   }
4685   else
4686   {
4687     GNUNET_break (0);
4688     return GNUNET_OK;
4689   }
4690
4691   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  was %u\n", fc->last_pid_recv);
4692   fc->last_pid_recv = pid;
4693   tunnel_send_ack (t, GNUNET_MESSAGE_TYPE_MESH_POLL, t->prev_hop == id);
4694
4695   if (GNUNET_YES == t->reliable)
4696     fc->last_pid_recv = old;
4697
4698   return GNUNET_OK;
4699 }
4700
4701
4702 /**
4703  * Core handler for mesh keepalives.
4704  *
4705  * @param cls closure
4706  * @param message message
4707  * @param peer peer identity this notification is about
4708  * @return GNUNET_OK to keep the connection open,
4709  *         GNUNET_SYSERR to close it (signal serious error)
4710  *
4711  * TODO: Check who we got this from, to validate route.
4712  */
4713 static int
4714 handle_mesh_keepalive (void *cls, const struct GNUNET_PeerIdentity *peer,
4715                        const struct GNUNET_MessageHeader *message)
4716 {
4717   struct GNUNET_MESH_TunnelKeepAlive *msg;
4718   struct MeshTunnel *t;
4719   struct MeshClient *c;
4720   GNUNET_PEER_Id hop;
4721   int fwd;
4722
4723   msg = (struct GNUNET_MESH_TunnelKeepAlive *) message;
4724   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "got a keepalive packet from %s\n",
4725               GNUNET_i2s (peer));
4726
4727   t = tunnel_get (&msg->oid, ntohl (msg->tid));
4728   if (NULL == t)
4729   {
4730     /* TODO notify that we dont know that tunnel */
4731     GNUNET_STATISTICS_update (stats, "# keepalive on unknown tunnel", 1,
4732                               GNUNET_NO);
4733     return GNUNET_OK;
4734   }
4735
4736   fwd = GNUNET_MESSAGE_TYPE_MESH_FWD_KEEPALIVE == ntohs (message->type) ? 
4737         GNUNET_YES : GNUNET_NO;
4738   c   = fwd ? t->client   : t->owner;
4739   hop = fwd ? t->next_hop : t->prev_hop;
4740
4741   if (NULL != c)
4742     tunnel_change_state (t, MESH_TUNNEL_READY);
4743   tunnel_reset_timeout (t, fwd);
4744   if (NULL != c || 0 == hop || myid == hop)
4745     return GNUNET_OK;
4746
4747   GNUNET_STATISTICS_update (stats, "# keepalives forwarded", 1, GNUNET_NO);
4748   send_prebuilt_message (message, hop, t);
4749   return GNUNET_OK;
4750   }
4751
4752
4753
4754 /**
4755  * Functions to handle messages from core
4756  */
4757 static struct GNUNET_CORE_MessageHandler core_handlers[] = {
4758   {&handle_mesh_path_create, GNUNET_MESSAGE_TYPE_MESH_PATH_CREATE, 0},
4759   {&handle_mesh_path_broken, GNUNET_MESSAGE_TYPE_MESH_PATH_BROKEN,
4760    sizeof (struct GNUNET_MESH_PathBroken)},
4761   {&handle_mesh_tunnel_destroy, GNUNET_MESSAGE_TYPE_MESH_TUNNEL_DESTROY,
4762    sizeof (struct GNUNET_MESH_TunnelDestroy)},
4763   {&handle_mesh_unicast, GNUNET_MESSAGE_TYPE_MESH_UNICAST, 0},
4764   {&handle_mesh_to_orig, GNUNET_MESSAGE_TYPE_MESH_TO_ORIGIN, 0},
4765   {&handle_mesh_data_ack, GNUNET_MESSAGE_TYPE_MESH_UNICAST_ACK,
4766     sizeof (struct GNUNET_MESH_DataACK)},
4767   {&handle_mesh_data_ack, GNUNET_MESSAGE_TYPE_MESH_TO_ORIG_ACK,
4768     sizeof (struct GNUNET_MESH_DataACK)},
4769   {&handle_mesh_keepalive, GNUNET_MESSAGE_TYPE_MESH_FWD_KEEPALIVE,
4770     sizeof (struct GNUNET_MESH_TunnelKeepAlive)},
4771   {&handle_mesh_keepalive, GNUNET_MESSAGE_TYPE_MESH_BCK_KEEPALIVE,
4772     sizeof (struct GNUNET_MESH_TunnelKeepAlive)},
4773   {&handle_mesh_ack, GNUNET_MESSAGE_TYPE_MESH_ACK,
4774     sizeof (struct GNUNET_MESH_ACK)},
4775   {&handle_mesh_poll, GNUNET_MESSAGE_TYPE_MESH_POLL,
4776     sizeof (struct GNUNET_MESH_Poll)},
4777   {&handle_mesh_path_ack, GNUNET_MESSAGE_TYPE_MESH_PATH_ACK,
4778    sizeof (struct GNUNET_MESH_PathACK)},
4779   {NULL, 0, 0}
4780 };
4781
4782
4783 /**
4784  * Function to process paths received for a new peer addition. The recorded
4785  * paths form the initial tunnel, which can be optimized later.
4786  * Called on each result obtained for the DHT search.
4787  *
4788  * @param cls closure
4789  * @param exp when will this value expire
4790  * @param key key of the result
4791  * @param get_path path of the get request
4792  * @param get_path_length lenght of get_path
4793  * @param put_path path of the put request
4794  * @param put_path_length length of the put_path
4795  * @param type type of the result
4796  * @param size number of bytes in data
4797  * @param data pointer to the result data
4798  */
4799 static void
4800 dht_get_id_handler (void *cls, struct GNUNET_TIME_Absolute exp,
4801                     const struct GNUNET_HashCode * key,
4802                     const struct GNUNET_PeerIdentity *get_path,
4803                     unsigned int get_path_length,
4804                     const struct GNUNET_PeerIdentity *put_path,
4805                     unsigned int put_path_length, enum GNUNET_BLOCK_Type type,
4806                     size_t size, const void *data)
4807 {
4808   struct MeshPeerInfo *peer = cls;
4809   struct MeshPeerPath *p;
4810   struct GNUNET_PeerIdentity pi;
4811   int i;
4812
4813   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Got results from DHT!\n");
4814   GNUNET_PEER_resolve (peer->id, &pi);
4815   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  for %s\n", GNUNET_i2s (&pi));
4816
4817   p = path_build_from_dht (get_path, get_path_length,
4818                            put_path, put_path_length);
4819   path_add_to_peers (p, GNUNET_NO);
4820   path_destroy (p);
4821   for (i = 0; i < peer->ntunnels; i++)
4822   {
4823     struct GNUNET_PeerIdentity id;
4824
4825     GNUNET_PEER_resolve (peer->tunnels[i]->id.oid, &id);
4826     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, " ... tunnel %s:%X (%X / %X)\n",
4827                 GNUNET_i2s (&id), peer->tunnels[i]->id.tid,
4828                 peer->tunnels[i]->local_tid, 
4829                 peer->tunnels[i]->local_tid_dest);
4830     if (peer->tunnels[i]->state == MESH_TUNNEL_SEARCHING)
4831     {
4832       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, " ... connect!\n");
4833       peer_connect (peer, peer->tunnels[i]);
4834     }
4835   }
4836
4837   return;
4838 }
4839
4840
4841 /******************************************************************************/
4842 /*********************       MESH LOCAL HANDLES      **************************/
4843 /******************************************************************************/
4844
4845
4846 /**
4847  * Handler for client connection.
4848  *
4849  * @param cls Closure (unused).
4850  * @param client Client handler.
4851  */
4852 static void
4853 handle_local_client_connect (void *cls, struct GNUNET_SERVER_Client *client)
4854 {
4855   struct MeshClient *c;
4856
4857   if (NULL == client)
4858     return;
4859   c = GNUNET_malloc (sizeof (struct MeshClient));
4860   c->handle = client;
4861   GNUNET_SERVER_client_keep (client);
4862   GNUNET_SERVER_client_set_user_context (client, c);
4863   GNUNET_CONTAINER_DLL_insert (clients_head, clients_tail, c);
4864 }
4865
4866
4867 /**
4868  * Handler for client disconnection
4869  *
4870  * @param cls closure
4871  * @param client identification of the client; NULL
4872  *        for the last call when the server is destroyed
4873  */
4874 static void
4875 handle_local_client_disconnect (void *cls, struct GNUNET_SERVER_Client *client)
4876 {
4877   struct MeshClient *c;
4878   struct MeshClient *next;
4879
4880   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "client disconnected: %p\n", client);
4881   if (client == NULL)
4882   {
4883     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "   (SERVER DOWN)\n");
4884     return;
4885   }
4886
4887   c = client_get (client);
4888   if (NULL != c)
4889   {
4890     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "matching client found (%u, %p)\n",
4891                 c->id, c);
4892     GNUNET_SERVER_client_drop (c->handle);
4893     c->shutting_down = GNUNET_YES;
4894     if (NULL != c->own_tunnels)
4895     {
4896       GNUNET_CONTAINER_multihashmap32_iterate (c->own_tunnels,
4897                                                &tunnel_destroy_iterator, c);
4898       GNUNET_CONTAINER_multihashmap32_destroy (c->own_tunnels);
4899     }
4900
4901     if (NULL != c->incoming_tunnels)
4902     {
4903       GNUNET_CONTAINER_multihashmap32_iterate (c->incoming_tunnels,
4904                                                &tunnel_destroy_iterator, c);
4905       GNUNET_CONTAINER_multihashmap32_destroy (c->incoming_tunnels);
4906     }
4907
4908     if (NULL != c->ports)
4909     {
4910       GNUNET_CONTAINER_multihashmap32_iterate (c->ports,
4911                                                &client_release_ports, c);
4912       GNUNET_CONTAINER_multihashmap32_destroy (c->ports);
4913     }
4914     next = c->next;
4915     GNUNET_CONTAINER_DLL_remove (clients_head, clients_tail, c);
4916     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  client free (%p)\n", c);
4917     GNUNET_free (c);
4918     GNUNET_STATISTICS_update (stats, "# clients", -1, GNUNET_NO);
4919     c = next;
4920   }
4921   else
4922   {
4923     GNUNET_log (GNUNET_ERROR_TYPE_WARNING, " context NULL!\n");
4924   }
4925   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "done!\n");
4926   return;
4927 }
4928
4929
4930 /**
4931  * Handler for new clients
4932  *
4933  * @param cls closure
4934  * @param client identification of the client
4935  * @param message the actual message, which includes messages the client wants
4936  */
4937 static void
4938 handle_local_new_client (void *cls, struct GNUNET_SERVER_Client *client,
4939                          const struct GNUNET_MessageHeader *message)
4940 {
4941   struct GNUNET_MESH_ClientConnect *cc_msg;
4942   struct MeshClient *c;
4943   unsigned int size;
4944   uint32_t *p;
4945   unsigned int i;
4946
4947   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "new client connected %p\n", client);
4948
4949   /* Check data sanity */
4950   size = ntohs (message->size) - sizeof (struct GNUNET_MESH_ClientConnect);
4951   cc_msg = (struct GNUNET_MESH_ClientConnect *) message;
4952   if (0 != (size % sizeof (uint32_t)))
4953   {
4954     GNUNET_break (0);
4955     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
4956     return;
4957   }
4958   size /= sizeof (uint32_t);
4959
4960   /* Initialize new client structure */
4961   c = GNUNET_SERVER_client_get_user_context (client, struct MeshClient);
4962   c->id = next_client_id++; /* overflow not important: just for debug */
4963   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  client id %u\n", c->id);
4964   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  client has %u ports\n", size);
4965   if (size > 0)
4966   {
4967     uint32_t u32;
4968
4969     p = (uint32_t *) &cc_msg[1];
4970     c->ports = GNUNET_CONTAINER_multihashmap32_create (size);
4971     for (i = 0; i < size; i++)
4972     {
4973       u32 = ntohl (p[i]);
4974       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "    port: %u\n", u32);
4975
4976       /* store in client's hashmap */
4977       GNUNET_CONTAINER_multihashmap32_put (c->ports, u32, c,
4978                                            GNUNET_CONTAINER_MULTIHASHMAPOPTION_UNIQUE_FAST);
4979       /* store in global hashmap */
4980       /* FIXME only allow one client to have the port open,
4981        *       have a backup hashmap with waiting clients */
4982       GNUNET_CONTAINER_multihashmap32_put (ports, u32, c,
4983                                            GNUNET_CONTAINER_MULTIHASHMAPOPTION_MULTIPLE);
4984     }
4985   }
4986
4987   c->own_tunnels = GNUNET_CONTAINER_multihashmap32_create (32);
4988   c->incoming_tunnels = GNUNET_CONTAINER_multihashmap32_create (32);
4989   GNUNET_SERVER_notification_context_add (nc, client);
4990   GNUNET_STATISTICS_update (stats, "# clients", 1, GNUNET_NO);
4991
4992   GNUNET_SERVER_receive_done (client, GNUNET_OK);
4993   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "new client processed\n");
4994 }
4995
4996
4997 /**
4998  * Handler for requests of new tunnels
4999  *
5000  * @param cls Closure.
5001  * @param client Identification of the client.
5002  * @param message The actual message.
5003  */
5004 static void
5005 handle_local_tunnel_create (void *cls, struct GNUNET_SERVER_Client *client,
5006                             const struct GNUNET_MessageHeader *message)
5007 {
5008   struct GNUNET_MESH_TunnelMessage *t_msg;
5009   struct MeshPeerInfo *peer_info;
5010   struct MeshTunnel *t;
5011   struct MeshClient *c;
5012   MESH_TunnelNumber tid;
5013
5014   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "new tunnel requested\n");
5015
5016   /* Sanity check for client registration */
5017   if (NULL == (c = client_get (client)))
5018   {
5019     GNUNET_break (0);
5020     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
5021     return;
5022   }
5023   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  by client %u\n", c->id);
5024
5025   /* Message size sanity check */
5026   if (sizeof (struct GNUNET_MESH_TunnelMessage) != ntohs (message->size))
5027   {
5028     GNUNET_break (0);
5029     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
5030     return;
5031   }
5032
5033   t_msg = (struct GNUNET_MESH_TunnelMessage *) message;
5034   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  towards %s\n",
5035               GNUNET_i2s (&t_msg->peer));
5036   tid = ntohl (t_msg->tunnel_id);
5037   /* Sanity check for duplicate tunnel IDs */
5038   if (NULL != tunnel_get_by_local_id (c, tid))
5039   {
5040     GNUNET_break (0);
5041     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
5042     return;
5043   }
5044
5045   /* Create tunnel */
5046   while (NULL != tunnel_get_by_pi (myid, next_tid))
5047     next_tid = (next_tid + 1) & ~GNUNET_MESH_LOCAL_TUNNEL_ID_CLI;
5048   t = tunnel_new (myid, next_tid, c, tid);
5049   next_tid = (next_tid + 1) & ~GNUNET_MESH_LOCAL_TUNNEL_ID_CLI;
5050   if (NULL == t)
5051   {
5052     GNUNET_break (0);
5053     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
5054     return;
5055   }
5056   t->port = ntohl (t_msg->port);
5057   tunnel_set_options (t, ntohl (t_msg->opt));
5058   if (GNUNET_YES == t->reliable)
5059   {
5060     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "!!! Reliable\n");
5061     t->fwd_rel = GNUNET_malloc (sizeof (struct MeshTunnelReliability));
5062     t->fwd_rel->t = t;
5063     t->fwd_rel->expected_delay = MESH_RETRANSMIT_TIME;
5064   }
5065
5066   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "CREATED TUNNEL %s[%x]:%u (%x)\n",
5067               GNUNET_i2s (&my_full_id), t->id.tid, t->port, t->local_tid);
5068
5069   peer_info = peer_get (&t_msg->peer);
5070   peer_info_add_tunnel (peer_info, t);
5071   peer_connect (peer_info, t);
5072   tunnel_reset_timeout (t, GNUNET_YES);
5073   GNUNET_SERVER_receive_done (client, GNUNET_OK);
5074   return;
5075 }
5076
5077
5078 /**
5079  * Handler for requests of deleting tunnels
5080  *
5081  * @param cls closure
5082  * @param client identification of the client
5083  * @param message the actual message
5084  */
5085 static void
5086 handle_local_tunnel_destroy (void *cls, struct GNUNET_SERVER_Client *client,
5087                              const struct GNUNET_MessageHeader *message)
5088 {
5089   struct GNUNET_MESH_TunnelMessage *tunnel_msg;
5090   struct MeshClient *c;
5091   struct MeshTunnel *t;
5092   MESH_TunnelNumber tid;
5093
5094   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
5095               "Got a DESTROY TUNNEL from client!\n");
5096
5097   /* Sanity check for client registration */
5098   if (NULL == (c = client_get (client)))
5099   {
5100     GNUNET_break (0);
5101     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
5102     return;
5103   }
5104   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  by client %u\n", c->id);
5105
5106   /* Message sanity check */
5107   if (sizeof (struct GNUNET_MESH_TunnelMessage) != ntohs (message->size))
5108   {
5109     GNUNET_break (0);
5110     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
5111     return;
5112   }
5113
5114   tunnel_msg = (struct GNUNET_MESH_TunnelMessage *) message;
5115
5116   /* Retrieve tunnel */
5117   tid = ntohl (tunnel_msg->tunnel_id);
5118   t = tunnel_get_by_local_id (c, tid);
5119   if (NULL == t)
5120   {
5121     GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "  tunnel %X not found\n", tid);
5122     GNUNET_break (0);
5123     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
5124     return;
5125   }
5126
5127   /* Cleanup after the tunnel */
5128   client_delete_tunnel (c, t);
5129   if (c == t->client && GNUNET_MESH_LOCAL_TUNNEL_ID_SERV <= tid)
5130   {
5131     t->client = NULL;
5132   }
5133   else if (c == t->owner && GNUNET_MESH_LOCAL_TUNNEL_ID_SERV > tid)
5134   {
5135     peer_info_remove_tunnel (peer_get_short (t->dest), t);
5136     t->owner = NULL;
5137   }
5138   else 
5139   {
5140     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
5141                 "  tunnel %X client %p (%p, %p)\n",
5142                 tid, c, t->owner, t->client);
5143     GNUNET_break (0);
5144   }
5145
5146   /* The tunnel will be destroyed when the last message is transmitted. */
5147   tunnel_destroy_empty (t);
5148
5149   GNUNET_SERVER_receive_done (client, GNUNET_OK);
5150   return;
5151 }
5152
5153
5154 /**
5155  * Handler for client traffic
5156  *
5157  * @param cls closure
5158  * @param client identification of the client
5159  * @param message the actual message
5160  */
5161 static void
5162 handle_local_data (void *cls, struct GNUNET_SERVER_Client *client,
5163                    const struct GNUNET_MessageHeader *message)
5164 {
5165   struct GNUNET_MESH_LocalData *data_msg;
5166   struct MeshClient *c;
5167   struct MeshTunnel *t;
5168   struct MeshFlowControl *fc;
5169   MESH_TunnelNumber tid;
5170   size_t size;
5171
5172   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
5173               "Got data from a client!\n");
5174
5175   /* Sanity check for client registration */
5176   if (NULL == (c = client_get (client)))
5177   {
5178     GNUNET_break (0);
5179     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
5180     return;
5181   }
5182   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  by client %u\n", c->id);
5183
5184   data_msg = (struct GNUNET_MESH_LocalData *) message;
5185
5186   /* Sanity check for message size */
5187   size = ntohs (message->size) - sizeof (struct GNUNET_MESH_LocalData);
5188   if (size < sizeof (struct GNUNET_MessageHeader))
5189   {
5190     GNUNET_break (0);
5191     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
5192     return;
5193   }
5194
5195   /* Tunnel exists? */
5196   tid = ntohl (data_msg->tid);
5197   t = tunnel_get_by_local_id (c, tid);
5198   if (NULL == t)
5199   {
5200     GNUNET_break (0);
5201     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
5202     return;
5203   }
5204
5205   /* Is the client in the tunnel? */
5206   if ( !( (tid < GNUNET_MESH_LOCAL_TUNNEL_ID_SERV &&
5207            t->owner &&
5208            t->owner->handle == client)
5209          ||
5210           (tid >= GNUNET_MESH_LOCAL_TUNNEL_ID_SERV &&
5211            t->client && 
5212            t->client->handle == client) ) )
5213   {
5214     GNUNET_break (0);
5215     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
5216     return;
5217   }
5218
5219   /* Ok, everything is correct, send the message
5220    * (pretend we got it from a mesh peer)
5221    */
5222   {
5223     struct GNUNET_MESH_Data *payload;
5224     char cbuf[sizeof(struct GNUNET_MESH_Data) + size];
5225
5226     fc = tid < GNUNET_MESH_LOCAL_TUNNEL_ID_SERV ? &t->prev_fc : &t->next_fc;
5227     if (GNUNET_YES == t->reliable)
5228     {
5229       struct MeshTunnelReliability *rel;
5230       struct MeshReliableMessage *copy;
5231
5232       rel = (tid < GNUNET_MESH_LOCAL_TUNNEL_ID_SERV) ? t->fwd_rel : t->bck_rel;
5233       copy = GNUNET_malloc (sizeof (struct MeshReliableMessage)
5234                             + sizeof(struct GNUNET_MESH_Data)
5235                             + size);
5236       copy->mid = rel->mid_sent++;
5237       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "!!! DATA %u\n", copy->mid);
5238       copy->timestamp = GNUNET_TIME_absolute_get ();
5239       copy->rel = rel;
5240       rel->n_sent++;
5241       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, " n_sent %u\n", rel->n_sent);
5242       GNUNET_CONTAINER_DLL_insert_tail (rel->head_sent, rel->tail_sent, copy);
5243       if (GNUNET_SCHEDULER_NO_TASK == rel->retry_task)
5244       {
5245         rel->retry_timer =
5246             GNUNET_TIME_relative_multiply (rel->expected_delay,
5247                                            MESH_RETRANSMIT_MARGIN);
5248         rel->retry_task =
5249             GNUNET_SCHEDULER_add_delayed (rel->retry_timer,
5250                                           &tunnel_retransmit_message,
5251                                           rel);
5252       }
5253       payload = (struct GNUNET_MESH_Data *) &copy[1];
5254       payload->mid = htonl (copy->mid);
5255     }
5256     else
5257     {
5258       payload = (struct GNUNET_MESH_Data *) cbuf;
5259       payload->mid = htonl (fc->last_pid_recv + 1);
5260     }
5261     memcpy (&payload[1], &data_msg[1], size);
5262     payload->header.size = htons (sizeof (struct GNUNET_MESH_Data) + size);
5263     payload->header.type = htons (tid < GNUNET_MESH_LOCAL_TUNNEL_ID_SERV ?
5264                                   GNUNET_MESSAGE_TYPE_MESH_UNICAST :
5265                                   GNUNET_MESSAGE_TYPE_MESH_TO_ORIGIN);
5266     GNUNET_PEER_resolve(t->id.oid, &payload->oid);;
5267     payload->tid = htonl (t->id.tid);
5268     payload->ttl = htonl (default_ttl);
5269     payload->pid = htonl (fc->last_pid_recv + 1);
5270     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
5271                 "  calling generic handler...\n");
5272     if (tid < GNUNET_MESH_LOCAL_TUNNEL_ID_SERV)
5273       handle_mesh_unicast (NULL, &my_full_id, &payload->header);
5274     else
5275       handle_mesh_to_orig (NULL, &my_full_id, &payload->header);
5276   }
5277   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "receive done OK\n");
5278   GNUNET_SERVER_receive_done (client, GNUNET_OK);
5279
5280   return;
5281 }
5282
5283
5284 /**
5285  * Handler for client's ACKs for payload traffic.
5286  *
5287  * @param cls Closure (unused).
5288  * @param client Identification of the client.
5289  * @param message The actual message.
5290  */
5291 static void
5292 handle_local_ack (void *cls, struct GNUNET_SERVER_Client *client,
5293                   const struct GNUNET_MessageHeader *message)
5294 {
5295   struct GNUNET_MESH_LocalAck *msg;
5296   struct MeshTunnel *t;
5297   struct MeshClient *c;
5298   MESH_TunnelNumber tid;
5299
5300   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Got a local ACK\n");
5301   /* Sanity check for client registration */
5302   if (NULL == (c = client_get (client)))
5303   {
5304     GNUNET_break (0);
5305     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
5306     return;
5307   }
5308   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  by client %u\n", c->id);
5309
5310   msg = (struct GNUNET_MESH_LocalAck *) message;
5311
5312   /* Tunnel exists? */
5313   tid = ntohl (msg->tunnel_id);
5314   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  on tunnel %X\n", tid);
5315   t = tunnel_get_by_local_id (c, tid);
5316   if (NULL == t)
5317   {
5318     GNUNET_break (0);
5319     GNUNET_log (GNUNET_ERROR_TYPE_WARNING, "Tunnel %X unknown.\n", tid);
5320     GNUNET_log (GNUNET_ERROR_TYPE_WARNING, "  for client %u.\n", c->id);
5321     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
5322     return;
5323   }
5324
5325   /* Does client own tunnel? I.E: Is this an ACK for BCK traffic? */
5326   if (tid < GNUNET_MESH_LOCAL_TUNNEL_ID_SERV)
5327   {
5328     /* The client owns the tunnel, ACK is for data to_origin, send BCK ACK. */
5329     t->prev_fc.last_ack_recv++;
5330     tunnel_send_ack (t, GNUNET_MESSAGE_TYPE_MESH_LOCAL_ACK, GNUNET_NO);
5331   }
5332   else
5333   {
5334     /* The client doesn't own the tunnel, this ACK is for FWD traffic. */
5335     t->next_fc.last_ack_recv++;
5336     tunnel_send_ack (t, GNUNET_MESSAGE_TYPE_MESH_LOCAL_ACK, GNUNET_YES);
5337   }
5338
5339   GNUNET_SERVER_receive_done (client, GNUNET_OK);
5340
5341   return;
5342 }
5343
5344
5345
5346 /**
5347  * Iterator over all tunnels to send a monitoring client info about each tunnel.
5348  *
5349  * @param cls Closure (client handle).
5350  * @param key Key (hashed tunnel ID, unused).
5351  * @param value Tunnel info.
5352  *
5353  * @return GNUNET_YES, to keep iterating.
5354  */
5355 static int
5356 monitor_all_tunnels_iterator (void *cls,
5357                               const struct GNUNET_HashCode * key,
5358                               void *value)
5359 {
5360   struct GNUNET_SERVER_Client *client = cls;
5361   struct MeshTunnel *t = value;
5362   struct GNUNET_MESH_LocalMonitor *msg;
5363
5364   msg = GNUNET_malloc (sizeof(struct GNUNET_MESH_LocalMonitor));
5365   GNUNET_PEER_resolve(t->id.oid, &msg->owner);
5366   msg->tunnel_id = htonl (t->id.tid);
5367   msg->header.size = htons (sizeof (struct GNUNET_MESH_LocalMonitor));
5368   msg->header.type = htons (GNUNET_MESSAGE_TYPE_MESH_LOCAL_INFO_TUNNELS);
5369   GNUNET_PEER_resolve (t->dest, &msg->destination);
5370
5371   GNUNET_log (GNUNET_ERROR_TYPE_INFO,
5372               "*  sending info about tunnel %s [%u]\n",
5373               GNUNET_i2s (&msg->owner), t->id.tid);
5374
5375   GNUNET_SERVER_notification_context_unicast (nc, client,
5376                                               &msg->header, GNUNET_NO);
5377   return GNUNET_YES;
5378 }
5379
5380
5381 /**
5382  * Handler for client's MONITOR request.
5383  *
5384  * @param cls Closure (unused).
5385  * @param client Identification of the client.
5386  * @param message The actual message.
5387  */
5388 static void
5389 handle_local_get_tunnels (void *cls, struct GNUNET_SERVER_Client *client,
5390                           const struct GNUNET_MessageHeader *message)
5391 {
5392   struct MeshClient *c;
5393
5394   /* Sanity check for client registration */
5395   if (NULL == (c = client_get (client)))
5396   {
5397     GNUNET_break (0);
5398     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
5399     return;
5400   }
5401
5402   GNUNET_log (GNUNET_ERROR_TYPE_INFO,
5403               "Received get tunnels request from client %u\n",
5404               c->id);
5405   GNUNET_CONTAINER_multihashmap_iterate (tunnels,
5406                                          monitor_all_tunnels_iterator,
5407                                          client);
5408   GNUNET_log (GNUNET_ERROR_TYPE_INFO,
5409               "Get tunnels request from client %u completed\n",
5410               c->id);
5411   GNUNET_SERVER_receive_done (client, GNUNET_OK);
5412 }
5413
5414
5415 /**
5416  * Handler for client's MONITOR_TUNNEL request.
5417  *
5418  * @param cls Closure (unused).
5419  * @param client Identification of the client.
5420  * @param message The actual message.
5421  */
5422 static void
5423 handle_local_show_tunnel (void *cls, struct GNUNET_SERVER_Client *client,
5424                           const struct GNUNET_MessageHeader *message)
5425 {
5426   const struct GNUNET_MESH_LocalMonitor *msg;
5427   struct GNUNET_MESH_LocalMonitor *resp;
5428   struct MeshClient *c;
5429   struct MeshTunnel *t;
5430
5431   /* Sanity check for client registration */
5432   if (NULL == (c = client_get (client)))
5433   {
5434     GNUNET_break (0);
5435     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
5436     return;
5437   }
5438
5439   msg = (struct GNUNET_MESH_LocalMonitor *) message;
5440   GNUNET_log (GNUNET_ERROR_TYPE_INFO,
5441               "Received tunnel info request from client %u for tunnel %s[%X]\n",
5442               c->id,
5443               &msg->owner,
5444               ntohl (msg->tunnel_id));
5445   t = tunnel_get (&msg->owner, ntohl (msg->tunnel_id));
5446   if (NULL == t)
5447   {
5448     /* We don't know the tunnel FIXME */
5449     struct GNUNET_MESH_LocalMonitor warn;
5450
5451     warn = *msg;
5452     GNUNET_SERVER_notification_context_unicast (nc, client,
5453                                                 &warn.header,
5454                                                 GNUNET_NO);
5455     GNUNET_SERVER_receive_done (client, GNUNET_OK);
5456     return;
5457   }
5458
5459   /* Initialize context */
5460   resp = GNUNET_malloc (sizeof (struct GNUNET_MESH_LocalMonitor));
5461   *resp = *msg;
5462   GNUNET_PEER_resolve (t->dest, &resp->destination);
5463   resp->header.size = htons (sizeof (struct GNUNET_MESH_LocalMonitor));
5464   GNUNET_SERVER_notification_context_unicast (nc, c->handle,
5465                                               &resp->header, GNUNET_NO);
5466   GNUNET_free (resp);
5467
5468   GNUNET_log (GNUNET_ERROR_TYPE_INFO,
5469               "Monitor tunnel request from client %u completed\n",
5470               c->id);
5471   GNUNET_SERVER_receive_done (client, GNUNET_OK);
5472 }
5473
5474
5475 /**
5476  * Functions to handle messages from clients
5477  */
5478 static struct GNUNET_SERVER_MessageHandler client_handlers[] = {
5479   {&handle_local_new_client, NULL,
5480    GNUNET_MESSAGE_TYPE_MESH_LOCAL_CONNECT, 0},
5481   {&handle_local_tunnel_create, NULL,
5482    GNUNET_MESSAGE_TYPE_MESH_LOCAL_TUNNEL_CREATE,
5483    sizeof (struct GNUNET_MESH_TunnelMessage)},
5484   {&handle_local_tunnel_destroy, NULL,
5485    GNUNET_MESSAGE_TYPE_MESH_LOCAL_TUNNEL_DESTROY,
5486    sizeof (struct GNUNET_MESH_TunnelMessage)},
5487   {&handle_local_data, NULL,
5488    GNUNET_MESSAGE_TYPE_MESH_LOCAL_DATA, 0},
5489   {&handle_local_ack, NULL,
5490    GNUNET_MESSAGE_TYPE_MESH_LOCAL_ACK,
5491    sizeof (struct GNUNET_MESH_LocalAck)},
5492   {&handle_local_get_tunnels, NULL,
5493    GNUNET_MESSAGE_TYPE_MESH_LOCAL_INFO_TUNNELS,
5494    sizeof (struct GNUNET_MessageHeader)},
5495   {&handle_local_show_tunnel, NULL,
5496    GNUNET_MESSAGE_TYPE_MESH_LOCAL_INFO_TUNNEL,
5497      sizeof (struct GNUNET_MESH_LocalMonitor)},
5498   {NULL, NULL, 0, 0}
5499 };
5500
5501
5502 /**
5503  * Method called whenever a given peer connects.
5504  *
5505  * @param cls closure
5506  * @param peer peer identity this notification is about
5507  */
5508 static void
5509 core_connect (void *cls, const struct GNUNET_PeerIdentity *peer)
5510 {
5511   struct MeshPeerInfo *peer_info;
5512   struct MeshPeerPath *path;
5513
5514   DEBUG_CONN ("Peer connected\n");
5515   DEBUG_CONN ("     %s\n", GNUNET_i2s (&my_full_id));
5516   peer_info = peer_get (peer);
5517   if (myid == peer_info->id)
5518   {
5519     DEBUG_CONN ("     (self)\n");
5520     path = path_new (1);
5521   }
5522   else
5523   {
5524     DEBUG_CONN ("     %s\n", GNUNET_i2s (peer));
5525     path = path_new (2);
5526     path->peers[1] = peer_info->id;
5527     GNUNET_PEER_change_rc (peer_info->id, 1);
5528     GNUNET_STATISTICS_update (stats, "# peers", 1, GNUNET_NO);
5529   }
5530   path->peers[0] = myid;
5531   GNUNET_PEER_change_rc (myid, 1);
5532   peer_info_add_path (peer_info, path, GNUNET_YES);
5533   return;
5534 }
5535
5536
5537 /**
5538  * Method called whenever a peer disconnects.
5539  *
5540  * @param cls closure
5541  * @param peer peer identity this notification is about
5542  */
5543 static void
5544 core_disconnect (void *cls, const struct GNUNET_PeerIdentity *peer)
5545 {
5546   struct MeshPeerInfo *pi;
5547   struct MeshPeerQueue *q;
5548   struct MeshPeerQueue *n;
5549
5550   DEBUG_CONN ("Peer disconnected\n");
5551   pi = GNUNET_CONTAINER_multihashmap_get (peers, &peer->hashPubKey);
5552   if (NULL == pi)
5553   {
5554     GNUNET_break (0);
5555     return;
5556   }
5557   q = pi->queue_head;
5558   while (NULL != q)
5559   {
5560       n = q->next;
5561       /* TODO try to reroute this traffic instead */
5562       queue_destroy(q, GNUNET_YES);
5563       q = n;
5564   }
5565   if (NULL != pi->core_transmit)
5566   {
5567     GNUNET_CORE_notify_transmit_ready_cancel(pi->core_transmit);
5568     pi->core_transmit = NULL;
5569   }
5570     peer_info_remove_path (pi, pi->id, myid);
5571   if (myid == pi->id)
5572   {
5573     DEBUG_CONN ("     (self)\n");
5574   }
5575   GNUNET_STATISTICS_update (stats, "# peers", -1, GNUNET_NO);
5576   return;
5577 }
5578
5579
5580 /**
5581  * Install server (service) handlers and start listening to clients.
5582  */
5583 static void
5584 server_init (void)
5585 {
5586   GNUNET_SERVER_add_handlers (server_handle, client_handlers);
5587   GNUNET_SERVER_connect_notify (server_handle,
5588                                 &handle_local_client_connect, NULL);
5589   GNUNET_SERVER_disconnect_notify (server_handle,
5590                                    &handle_local_client_disconnect, NULL);
5591   nc = GNUNET_SERVER_notification_context_create (server_handle, 1);
5592
5593   clients_head = NULL;
5594   clients_tail = NULL;
5595   next_client_id = 0;
5596   GNUNET_SERVER_resume (server_handle);
5597 }
5598
5599
5600 /**
5601  * To be called on core init/fail.
5602  *
5603  * @param cls Closure (config)
5604  * @param server handle to the server for this service
5605  * @param identity the public identity of this peer
5606  */
5607 static void
5608 core_init (void *cls, struct GNUNET_CORE_Handle *server,
5609            const struct GNUNET_PeerIdentity *identity)
5610 {
5611   const struct GNUNET_CONFIGURATION_Handle *c = cls;
5612   static int i = 0;
5613
5614   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Core init\n");
5615   GNUNET_break (core_handle == server);
5616   if (0 != memcmp (identity, &my_full_id, sizeof (my_full_id)) ||
5617     NULL == server)
5618   {
5619     GNUNET_log (GNUNET_ERROR_TYPE_ERROR, _("Wrong CORE service\n"));
5620     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
5621                 " core id %s\n",
5622                 GNUNET_i2s (identity));
5623     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
5624                 " my id %s\n",
5625                 GNUNET_i2s (&my_full_id));
5626     GNUNET_CORE_disconnect (core_handle);
5627     core_handle = GNUNET_CORE_connect (c, /* Main configuration */
5628                                        NULL,      /* Closure passed to MESH functions */
5629                                        &core_init,        /* Call core_init once connected */
5630                                        &core_connect,     /* Handle connects */
5631                                        &core_disconnect,  /* remove peers on disconnects */
5632                                        NULL,      /* Don't notify about all incoming messages */
5633                                        GNUNET_NO, /* For header only in notification */
5634                                        NULL,      /* Don't notify about all outbound messages */
5635                                        GNUNET_NO, /* For header-only out notification */
5636                                        core_handlers);    /* Register these handlers */
5637     if (10 < i++)
5638       GNUNET_abort();
5639   }
5640   server_init ();
5641   return;
5642 }
5643
5644
5645 /******************************************************************************/
5646 /************************      MAIN FUNCTIONS      ****************************/
5647 /******************************************************************************/
5648
5649 /**
5650  * Iterator over tunnel hash map entries to destroy the tunnel during shutdown.
5651  *
5652  * @param cls closure
5653  * @param key current key code
5654  * @param value value in the hash map
5655  * @return GNUNET_YES if we should continue to iterate,
5656  *         GNUNET_NO if not.
5657  */
5658 static int
5659 shutdown_tunnel (void *cls, const struct GNUNET_HashCode * key, void *value)
5660 {
5661   struct MeshTunnel *t = value;
5662
5663   tunnel_destroy (t);
5664   return GNUNET_YES;
5665 }
5666
5667 /**
5668  * Iterator over peer hash map entries to destroy the tunnel during shutdown.
5669  *
5670  * @param cls closure
5671  * @param key current key code
5672  * @param value value in the hash map
5673  * @return GNUNET_YES if we should continue to iterate,
5674  *         GNUNET_NO if not.
5675  */
5676 static int
5677 shutdown_peer (void *cls, const struct GNUNET_HashCode * key, void *value)
5678 {
5679   struct MeshPeerInfo *p = value;
5680   struct MeshPeerQueue *q;
5681   struct MeshPeerQueue *n;
5682
5683   q = p->queue_head;
5684   while (NULL != q)
5685   {
5686       n = q->next;
5687       if (q->peer == p)
5688       {
5689         queue_destroy(q, GNUNET_YES);
5690       }
5691       q = n;
5692   }
5693   peer_info_destroy (p);
5694   return GNUNET_YES;
5695 }
5696
5697
5698 /**
5699  * Task run during shutdown.
5700  *
5701  * @param cls unused
5702  * @param tc unused
5703  */
5704 static void
5705 shutdown_task (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
5706 {
5707   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "shutting down\n");
5708
5709   if (core_handle != NULL)
5710   {
5711     GNUNET_CORE_disconnect (core_handle);
5712     core_handle = NULL;
5713   }
5714   GNUNET_CONTAINER_multihashmap_iterate (tunnels, &shutdown_tunnel, NULL);
5715   GNUNET_CONTAINER_multihashmap_iterate (peers, &shutdown_peer, NULL);
5716   if (dht_handle != NULL)
5717   {
5718     GNUNET_DHT_disconnect (dht_handle);
5719     dht_handle = NULL;
5720   }
5721   if (nc != NULL)
5722   {
5723     GNUNET_SERVER_notification_context_destroy (nc);
5724     nc = NULL;
5725   }
5726   if (GNUNET_SCHEDULER_NO_TASK != announce_id_task)
5727   {
5728     GNUNET_SCHEDULER_cancel (announce_id_task);
5729     announce_id_task = GNUNET_SCHEDULER_NO_TASK;
5730   }
5731   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "shut down\n");
5732 }
5733
5734
5735 /**
5736  * Process mesh requests.
5737  *
5738  * @param cls closure
5739  * @param server the initialized server
5740  * @param c configuration to use
5741  */
5742 static void
5743 run (void *cls, struct GNUNET_SERVER_Handle *server,
5744      const struct GNUNET_CONFIGURATION_Handle *c)
5745 {
5746   char *keyfile;
5747   struct GNUNET_CRYPTO_EccPrivateKey *pk;
5748
5749   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "starting to run\n");
5750   server_handle = server;
5751   GNUNET_SERVER_suspend (server_handle);
5752
5753   if (GNUNET_OK !=
5754       GNUNET_CONFIGURATION_get_value_filename (c, "PEER", "PRIVATE_KEY",
5755                                                &keyfile))
5756   {
5757     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
5758                 _
5759                 ("%s service is lacking key configuration settings (%s).  Exiting.\n"),
5760                 "mesh", "peer/privatekey");
5761     GNUNET_SCHEDULER_shutdown ();
5762     return;
5763   }
5764
5765   if (GNUNET_OK !=
5766       GNUNET_CONFIGURATION_get_value_time (c, "MESH", "REFRESH_PATH_TIME",
5767                                            &refresh_path_time))
5768   {
5769     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
5770                 _
5771                 ("%s service is lacking key configuration settings (%s).  Exiting.\n"),
5772                 "mesh", "refresh path time");
5773     GNUNET_SCHEDULER_shutdown ();
5774     return;
5775   }
5776
5777   if (GNUNET_OK !=
5778       GNUNET_CONFIGURATION_get_value_time (c, "MESH", "ID_ANNOUNCE_TIME",
5779                                            &id_announce_time))
5780   {
5781     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
5782                 _
5783                 ("%s service is lacking key configuration settings (%s).  Exiting.\n"),
5784                 "mesh", "id announce time");
5785     GNUNET_SCHEDULER_shutdown ();
5786     return;
5787   }
5788
5789   if (GNUNET_OK !=
5790       GNUNET_CONFIGURATION_get_value_time (c, "MESH", "CONNECT_TIMEOUT",
5791                                            &connect_timeout))
5792   {
5793     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
5794                 _
5795                 ("%s service is lacking key configuration settings (%s).  Exiting.\n"),
5796                 "mesh", "connect timeout");
5797     GNUNET_SCHEDULER_shutdown ();
5798     return;
5799   }
5800
5801   if (GNUNET_OK !=
5802       GNUNET_CONFIGURATION_get_value_number (c, "MESH", "MAX_MSGS_QUEUE",
5803                                              &max_msgs_queue))
5804   {
5805     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
5806                 _
5807                 ("%s service is lacking key configuration settings (%s).  Exiting.\n"),
5808                 "mesh", "max msgs queue");
5809     GNUNET_SCHEDULER_shutdown ();
5810     return;
5811   }
5812
5813   if (GNUNET_OK !=
5814       GNUNET_CONFIGURATION_get_value_number (c, "MESH", "MAX_TUNNELS",
5815                                              &max_tunnels))
5816   {
5817     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
5818                 _
5819                 ("%s service is lacking key configuration settings (%s).  Exiting.\n"),
5820                 "mesh", "max tunnels");
5821     GNUNET_SCHEDULER_shutdown ();
5822     return;
5823   }
5824
5825   if (GNUNET_OK !=
5826       GNUNET_CONFIGURATION_get_value_number (c, "MESH", "DEFAULT_TTL",
5827                                              &default_ttl))
5828   {
5829     GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
5830                 _
5831                 ("%s service is lacking key configuration settings (%s). Using default (%u).\n"),
5832                 "mesh", "default ttl", 64);
5833     default_ttl = 64;
5834   }
5835
5836   if (GNUNET_OK !=
5837       GNUNET_CONFIGURATION_get_value_number (c, "MESH", "MAX_PEERS",
5838                                              &max_peers))
5839   {
5840     GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
5841                 _("%s service is lacking key configuration settings (%s). Using default (%u).\n"),
5842                 "mesh", "max peers", 1000);
5843     max_peers = 1000;
5844   }
5845
5846   if (GNUNET_OK !=
5847       GNUNET_CONFIGURATION_get_value_number (c, "MESH", "DROP_PERCENT",
5848                                              &drop_percent))
5849   {
5850     drop_percent = 0;
5851   }
5852   else
5853   {
5854     GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
5855                 "Mesh is running with drop mode enabled. "
5856                 "This is NOT a good idea! "
5857                 "Remove the DROP_PERCENT option from your configuration.\n");
5858   }
5859
5860   if (GNUNET_OK !=
5861       GNUNET_CONFIGURATION_get_value_number (c, "MESH", "DHT_REPLICATION_LEVEL",
5862                                              &dht_replication_level))
5863   {
5864     GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
5865                 _
5866                 ("%s service is lacking key configuration settings (%s). Using default (%u).\n"),
5867                 "mesh", "dht replication level", 3);
5868     dht_replication_level = 3;
5869   }
5870
5871   tunnels = GNUNET_CONTAINER_multihashmap_create (32, GNUNET_NO);
5872   incoming_tunnels = GNUNET_CONTAINER_multihashmap32_create (32);
5873   peers = GNUNET_CONTAINER_multihashmap_create (32, GNUNET_NO);
5874   ports = GNUNET_CONTAINER_multihashmap32_create (32);
5875
5876   dht_handle = GNUNET_DHT_connect (c, 64);
5877   if (NULL == dht_handle)
5878   {
5879     GNUNET_break (0);
5880   }
5881   stats = GNUNET_STATISTICS_create ("mesh", c);
5882
5883   /* Scheduled the task to clean up when shutdown is called */
5884   GNUNET_SCHEDULER_add_delayed (GNUNET_TIME_UNIT_FOREVER_REL, &shutdown_task,
5885                                 NULL);
5886   pk = GNUNET_CRYPTO_ecc_key_create_from_file (keyfile);
5887   GNUNET_free (keyfile);
5888   GNUNET_assert (NULL != pk);
5889   my_private_key = pk;
5890   GNUNET_CRYPTO_ecc_key_get_public (my_private_key, &my_public_key);
5891   GNUNET_CRYPTO_hash (&my_public_key, sizeof (my_public_key),
5892                       &my_full_id.hashPubKey);
5893   myid = GNUNET_PEER_intern (&my_full_id);
5894   GNUNET_log (GNUNET_ERROR_TYPE_INFO,
5895               "Mesh for peer [%s] starting\n",
5896               GNUNET_i2s(&my_full_id));
5897
5898   core_handle = GNUNET_CORE_connect (c, /* Main configuration */
5899                                      NULL,      /* Closure passed to MESH functions */
5900                                      &core_init,        /* Call core_init once connected */
5901                                      &core_connect,     /* Handle connects */
5902                                      &core_disconnect,  /* remove peers on disconnects */
5903                                      NULL,      /* Don't notify about all incoming messages */
5904                                      GNUNET_NO, /* For header only in notification */
5905                                      NULL,      /* Don't notify about all outbound messages */
5906                                      GNUNET_NO, /* For header-only out notification */
5907                                      core_handlers);    /* Register these handlers */
5908   if (NULL == core_handle)
5909   {
5910     GNUNET_break (0);
5911     GNUNET_SCHEDULER_shutdown ();
5912     return;
5913   }
5914   next_tid = 0;
5915   next_local_tid = GNUNET_MESH_LOCAL_TUNNEL_ID_SERV;
5916   announce_id_task = GNUNET_SCHEDULER_add_now (&announce_id, cls);
5917   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Mesh service running\n");
5918 }
5919
5920
5921 /**
5922  * The main function for the mesh service.
5923  *
5924  * @param argc number of arguments from the command line
5925  * @param argv command line arguments
5926  * @return 0 ok, 1 on error
5927  */
5928 int
5929 main (int argc, char *const *argv)
5930 {
5931   int ret;
5932   int r;
5933
5934   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "main()\n");
5935   r = GNUNET_SERVICE_run (argc, argv, "mesh", GNUNET_SERVICE_OPTION_NONE, &run,
5936                           NULL);
5937   ret = (GNUNET_OK == r) ? 0 : 1;
5938   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "main() END\n");
5939
5940   INTERVAL_SHOW;
5941
5942   return ret;
5943 }