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