64c8c69dcf1b2f7f746f12ee8c3e87b87e5e11fc
[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->poll_task = GNUNET_SCHEDULER_add_delayed (fc->poll_time,
3672                                                     &tunnel_poll, fc);
3673     }
3674   }
3675   else
3676   {
3677     if (GNUNET_SCHEDULER_NO_TASK != fc->poll_task)
3678     {
3679       GNUNET_SCHEDULER_cancel (fc->poll_task);
3680       fc->poll_task = GNUNET_SCHEDULER_NO_TASK;
3681     }
3682   }
3683   if (GNUNET_YES == t->destroy && 0 == t->pending_messages)
3684   {
3685     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "*  destroying tunnel!\n");
3686     tunnel_destroy (t);
3687   }
3688   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "*  Return %d\n", data_size);
3689   return data_size;
3690 }
3691
3692
3693 /**
3694  * @brief Queue and pass message to core when possible.
3695  * 
3696  * If type is payload (UNICAST, TO_ORIGIN) checks for queue status and
3697  * accounts for it. In case the queue is full, the message is dropped and
3698  * a break issued.
3699  * 
3700  * Otherwise, message is treated as internal and allowed to go regardless of 
3701  * queue status.
3702  *
3703  * @param cls Closure (@c type dependant). It will be used by queue_send to
3704  *            build the message to be sent if not already prebuilt.
3705  * @param type Type of the message, 0 for a raw message.
3706  * @param size Size of the message.
3707  * @param dst Neighbor to send message to.
3708  * @param t Tunnel this message belongs to.
3709  */
3710 static void
3711 queue_add (void *cls, uint16_t type, size_t size,
3712            struct MeshPeerInfo *dst, struct MeshTunnel *t)
3713 {
3714   struct MeshPeerQueue *queue;
3715   struct GNUNET_PeerIdentity id;
3716   struct MeshFlowControl *fc;
3717   int priority;
3718
3719   fc = NULL;
3720   priority = GNUNET_NO;
3721   if (GNUNET_MESSAGE_TYPE_MESH_UNICAST == type)
3722   {
3723     fc = &t->next_fc;
3724   }
3725   else if (GNUNET_MESSAGE_TYPE_MESH_TO_ORIGIN == type)
3726   {
3727     fc = &t->prev_fc;
3728   }
3729   if (NULL != fc)
3730   {
3731     if (fc->queue_n >= t->queue_max)
3732     {
3733       /* If this isn't a retransmission, drop the message */
3734       if (GNUNET_NO == t->reliable ||
3735           (NULL == t->owner && GNUNET_MESSAGE_TYPE_MESH_UNICAST == type) ||
3736           (NULL == t->client && GNUNET_MESSAGE_TYPE_MESH_TO_ORIGIN == type))
3737       {
3738         GNUNET_STATISTICS_update (stats, "# messages dropped (buffer full)",
3739                                   1, GNUNET_NO);
3740         GNUNET_break (0);
3741         GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
3742                     "queue full: %u/%u\n",
3743                     fc->queue_n, t->queue_max);
3744         return; /* Drop this message */
3745       }
3746       priority = GNUNET_YES;
3747     }
3748     fc->queue_n++;
3749     if (GMC_is_pid_bigger(fc->last_pid_sent + 1, fc->last_ack_recv) &&
3750         GNUNET_SCHEDULER_NO_TASK == fc->poll_task)
3751       fc->poll_task = GNUNET_SCHEDULER_add_delayed (fc->poll_time,
3752                                                     &tunnel_poll,
3753                                                     fc);
3754   }
3755   queue = GNUNET_malloc (sizeof (struct MeshPeerQueue));
3756   queue->cls = cls;
3757   queue->type = type;
3758   queue->size = size;
3759   queue->peer = dst;
3760   queue->tunnel = t;
3761   if (GNUNET_YES == priority)
3762   {
3763     struct GNUNET_MESH_Data *d;
3764     uint32_t prev;
3765     uint32_t next;
3766
3767     GNUNET_CONTAINER_DLL_insert (dst->queue_head, dst->queue_tail, queue);
3768     d = (struct GNUNET_MESH_Data *) queue->cls;
3769     prev = d->pid;
3770     for (queue = dst->queue_tail; NULL != queue; queue = queue->prev)
3771     {
3772       if (queue->type != type)
3773         continue;
3774       d = (struct GNUNET_MESH_Data *) queue->cls;
3775       next = d->pid;
3776       d->pid = prev;
3777       prev = next;
3778     }
3779   }
3780   else
3781     GNUNET_CONTAINER_DLL_insert_tail (dst->queue_head, dst->queue_tail, queue);
3782   
3783   if (NULL == dst->core_transmit)
3784   {
3785     GNUNET_PEER_resolve (dst->id, &id);
3786     dst->core_transmit =
3787         GNUNET_CORE_notify_transmit_ready (core_handle,
3788                                            0,
3789                                            0,
3790                                            GNUNET_TIME_UNIT_FOREVER_REL,
3791                                            &id,
3792                                            size,
3793                                            &queue_send,
3794                                            dst);
3795   }
3796   t->pending_messages++;
3797 }
3798
3799
3800 /******************************************************************************/
3801 /********************      MESH NETWORK HANDLERS     **************************/
3802 /******************************************************************************/
3803
3804
3805 /**
3806  * Core handler for path creation
3807  *
3808  * @param cls closure
3809  * @param message message
3810  * @param peer peer identity this notification is about
3811  *
3812  * @return GNUNET_OK to keep the connection open,
3813  *         GNUNET_SYSERR to close it (signal serious error)
3814  */
3815 static int
3816 handle_mesh_path_create (void *cls, const struct GNUNET_PeerIdentity *peer,
3817                          const struct GNUNET_MessageHeader *message)
3818 {
3819   unsigned int own_pos;
3820   uint16_t size;
3821   uint16_t i;
3822   MESH_TunnelNumber tid;
3823   struct GNUNET_MESH_CreateTunnel *msg;
3824   struct GNUNET_PeerIdentity *pi;
3825   struct MeshPeerPath *path;
3826   struct MeshPeerInfo *dest_peer_info;
3827   struct MeshPeerInfo *orig_peer_info;
3828   struct MeshTunnel *t;
3829
3830   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
3831               "Received a path create msg [%s]\n",
3832               GNUNET_i2s (&my_full_id));
3833   size = ntohs (message->size);
3834   if (size < sizeof (struct GNUNET_MESH_CreateTunnel))
3835   {
3836     GNUNET_break_op (0);
3837     return GNUNET_OK;
3838   }
3839
3840   size -= sizeof (struct GNUNET_MESH_CreateTunnel);
3841   if (size % sizeof (struct GNUNET_PeerIdentity))
3842   {
3843     GNUNET_break_op (0);
3844     return GNUNET_OK;
3845   }
3846   size /= sizeof (struct GNUNET_PeerIdentity);
3847   if (size < 1)
3848   {
3849     GNUNET_break_op (0);
3850     return GNUNET_OK;
3851   }
3852   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "    path has %u hops.\n", size);
3853   msg = (struct GNUNET_MESH_CreateTunnel *) message;
3854
3855   tid = ntohl (msg->tid);
3856   pi = (struct GNUNET_PeerIdentity *) &msg[1];
3857   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
3858               "    path is for tunnel %s[%X].\n", GNUNET_i2s (pi), tid);
3859   t = tunnel_get (pi, tid);
3860   if (NULL == t) /* might be a local tunnel */
3861   {
3862     uint32_t opt;
3863
3864     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  Creating tunnel\n");
3865     t = tunnel_new (GNUNET_PEER_intern (pi), tid, NULL, 0);
3866     if (NULL == t)
3867     {
3868       GNUNET_break (0);
3869       return GNUNET_OK;
3870     }
3871     t->port = ntohl (msg->port);
3872     opt = ntohl (msg->opt);
3873     if (0 != (opt & GNUNET_MESH_OPTION_NOBUFFER))
3874     {
3875       t->nobuffer = GNUNET_YES;
3876       t->queue_max = 1;
3877     }
3878     if (0 != (opt & GNUNET_MESH_OPTION_RELIABLE))
3879     {
3880       t->reliable = GNUNET_YES;
3881     }
3882     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  nobuffer:%d\n", t->nobuffer);
3883   }
3884   tunnel_reset_timeout (t, GNUNET_YES);
3885   tunnel_change_state (t,  MESH_TUNNEL_WAITING);
3886   dest_peer_info =
3887       GNUNET_CONTAINER_multihashmap_get (peers, &pi[size - 1].hashPubKey);
3888   if (NULL == dest_peer_info)
3889   {
3890     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
3891                 "  Creating PeerInfo for destination.\n");
3892     dest_peer_info = GNUNET_malloc (sizeof (struct MeshPeerInfo));
3893     dest_peer_info->id = GNUNET_PEER_intern (&pi[size - 1]);
3894     GNUNET_CONTAINER_multihashmap_put (peers, &pi[size - 1].hashPubKey,
3895                                        dest_peer_info,
3896                                        GNUNET_CONTAINER_MULTIHASHMAPOPTION_UNIQUE_ONLY);
3897   }
3898   orig_peer_info = GNUNET_CONTAINER_multihashmap_get (peers, &pi->hashPubKey);
3899   if (NULL == orig_peer_info)
3900   {
3901     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
3902                 "  Creating PeerInfo for origin.\n");
3903     orig_peer_info = GNUNET_malloc (sizeof (struct MeshPeerInfo));
3904     orig_peer_info->id = GNUNET_PEER_intern (pi);
3905     GNUNET_CONTAINER_multihashmap_put (peers, &pi->hashPubKey, orig_peer_info,
3906                                        GNUNET_CONTAINER_MULTIHASHMAPOPTION_UNIQUE_ONLY);
3907   }
3908   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  Creating path...\n");
3909   path = path_new (size);
3910   own_pos = 0;
3911   for (i = 0; i < size; i++)
3912   {
3913     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  ... adding %s\n",
3914                 GNUNET_i2s (&pi[i]));
3915     path->peers[i] = GNUNET_PEER_intern (&pi[i]);
3916     if (path->peers[i] == myid)
3917       own_pos = i;
3918   }
3919   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  Own position: %u\n", own_pos);
3920   if (own_pos == 0 && path->peers[own_pos] != myid)
3921   {
3922     /* create path: self not found in path through self */
3923     GNUNET_break_op (0);
3924     path_destroy (path);
3925     tunnel_destroy (t);
3926     return GNUNET_OK;
3927   }
3928   path_add_to_peers (path, GNUNET_NO);
3929   tunnel_use_path (t, path);
3930
3931   peer_info_add_tunnel (dest_peer_info, t);
3932
3933   if (own_pos == size - 1)
3934   {
3935     struct MeshClient *c;
3936
3937     /* Find target client */
3938     c = GNUNET_CONTAINER_multihashmap32_get (ports, t->port);
3939     if (NULL == c)
3940     {
3941       /* TODO send reject */
3942       return GNUNET_OK;
3943     }
3944
3945     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  It's for us!\n");
3946     peer_info_add_path_to_origin (orig_peer_info, path, GNUNET_YES);
3947
3948     /* Assign local tid */
3949     while (NULL != tunnel_get_incoming (next_local_tid))
3950       next_local_tid = (next_local_tid + 1) | GNUNET_MESH_LOCAL_TUNNEL_ID_SERV;
3951     t->local_tid_dest = next_local_tid++;
3952     next_local_tid = next_local_tid | GNUNET_MESH_LOCAL_TUNNEL_ID_SERV;
3953
3954     if (GNUNET_YES == t->reliable)
3955     {
3956       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "!!! Reliable\n");
3957       t->bck_rel = GNUNET_malloc (sizeof (struct MeshTunnelReliability));
3958       t->bck_rel->t = t;
3959       t->bck_rel->expected_delay = MESH_RETRANSMIT_TIME;
3960     }
3961
3962     tunnel_add_client (t, c);
3963     send_local_tunnel_create (t);
3964     send_path_ack (t);
3965      /* Eliminate tunnel when origin dies */
3966     tunnel_reset_timeout (t, GNUNET_YES);
3967     /* Keep tunnel alive in direction dest->owner*/
3968     tunnel_reset_timeout (t, GNUNET_NO); 
3969   }
3970   else
3971   {
3972     struct MeshPeerPath *path2;
3973
3974     t->next_hop = path->peers[own_pos + 1];
3975     GNUNET_PEER_change_rc(t->next_hop, 1);
3976
3977     /* It's for somebody else! Retransmit. */
3978     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  Retransmitting.\n");
3979     path2 = path_duplicate (path);
3980     peer_info_add_path (dest_peer_info, path2, GNUNET_NO);
3981     peer_info_add_path_to_origin (orig_peer_info, path, GNUNET_NO);
3982     send_path_create (t);
3983   }
3984   return GNUNET_OK;
3985 }
3986
3987
3988
3989 /**
3990  * Core handler for path ACKs
3991  *
3992  * @param cls closure
3993  * @param message message
3994  * @param peer peer identity this notification is about
3995  *
3996  * @return GNUNET_OK to keep the connection open,
3997  *         GNUNET_SYSERR to close it (signal serious error)
3998  */
3999 static int
4000 handle_mesh_path_ack (void *cls, const struct GNUNET_PeerIdentity *peer,
4001                       const struct GNUNET_MessageHeader *message)
4002 {
4003   struct GNUNET_MESH_PathACK *msg;
4004   struct MeshPeerInfo *peer_info;
4005   struct MeshPeerPath *p;
4006   struct MeshTunnel *t;
4007
4008   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Received a path ACK msg [%s]\n",
4009               GNUNET_i2s (&my_full_id));
4010   msg = (struct GNUNET_MESH_PathACK *) message;
4011   t = tunnel_get (&msg->oid, ntohl(msg->tid));
4012   if (NULL == t)
4013   {
4014     /* TODO notify that we don't know the tunnel */
4015     GNUNET_STATISTICS_update (stats, "# control on unknown tunnel", 1, GNUNET_NO);
4016     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  don't know the tunnel %s [%X]!\n",
4017                 GNUNET_i2s (&msg->oid), ntohl(msg->tid));
4018     return GNUNET_OK;
4019   }
4020   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  on tunnel %s [%X]\n",
4021               GNUNET_i2s (&msg->oid), ntohl(msg->tid));
4022
4023   peer_info = peer_get (&msg->peer_id);
4024   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  by peer %s\n",
4025               GNUNET_i2s (&msg->peer_id));
4026   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  via peer %s\n",
4027               GNUNET_i2s (peer));
4028
4029   /* Add path to peers? */
4030   p = t->path;
4031   if (NULL != p)
4032   {
4033     path_add_to_peers (p, GNUNET_YES);
4034   }
4035   else
4036   {
4037     GNUNET_break (0);
4038   }
4039   tunnel_change_state (t, MESH_TUNNEL_READY);
4040   tunnel_reset_timeout (t, GNUNET_NO);
4041   t->next_fc.last_ack_recv = (NULL == t->client) ? ntohl (msg->ack) : 0;
4042   t->prev_fc.last_ack_sent = ntohl (msg->ack);
4043
4044   /* Message for us? */
4045   if (0 == memcmp (&msg->oid, &my_full_id, sizeof (struct GNUNET_PeerIdentity)))
4046   {
4047     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  It's for us!\n");
4048     if (NULL == t->owner)
4049     {
4050       GNUNET_break_op (0);
4051       return GNUNET_OK;
4052     }
4053     if (NULL != peer_info->dhtget)
4054     {
4055       GNUNET_DHT_get_stop (peer_info->dhtget);
4056       peer_info->dhtget = NULL;
4057     }
4058     tunnel_send_ack (t, GNUNET_MESSAGE_TYPE_MESH_PATH_ACK, GNUNET_YES);
4059     tunnel_send_ack (t, GNUNET_MESSAGE_TYPE_MESH_PATH_ACK, GNUNET_NO);
4060     return GNUNET_OK;
4061   }
4062
4063   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
4064               "  not for us, retransmitting...\n");
4065   send_prebuilt_message (message, t->prev_hop, t);
4066   return GNUNET_OK;
4067 }
4068
4069
4070 /**
4071  * Core handler for notifications of broken paths
4072  *
4073  * @param cls closure
4074  * @param message message
4075  * @param peer peer identity this notification is about
4076  *
4077  * @return GNUNET_OK to keep the connection open,
4078  *         GNUNET_SYSERR to close it (signal serious error)
4079  */
4080 static int
4081 handle_mesh_path_broken (void *cls, const struct GNUNET_PeerIdentity *peer,
4082                          const struct GNUNET_MessageHeader *message)
4083 {
4084   struct GNUNET_MESH_PathBroken *msg;
4085   struct MeshTunnel *t;
4086
4087   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
4088               "Received a PATH BROKEN msg from %s\n", GNUNET_i2s (peer));
4089   msg = (struct GNUNET_MESH_PathBroken *) message;
4090   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  regarding %s\n",
4091               GNUNET_i2s (&msg->peer1));
4092   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  regarding %s\n",
4093               GNUNET_i2s (&msg->peer2));
4094   t = tunnel_get (&msg->oid, ntohl (msg->tid));
4095   if (NULL == t)
4096   {
4097     GNUNET_break_op (0);
4098     return GNUNET_OK;
4099   }
4100   tunnel_notify_connection_broken (t, GNUNET_PEER_search (&msg->peer1),
4101                                    GNUNET_PEER_search (&msg->peer2));
4102   return GNUNET_OK;
4103
4104 }
4105
4106
4107 /**
4108  * Core handler for tunnel destruction
4109  *
4110  * @param cls closure
4111  * @param message message
4112  * @param peer peer identity this notification is about
4113  *
4114  * @return GNUNET_OK to keep the connection open,
4115  *         GNUNET_SYSERR to close it (signal serious error)
4116  */
4117 static int
4118 handle_mesh_tunnel_destroy (void *cls, const struct GNUNET_PeerIdentity *peer,
4119                             const struct GNUNET_MessageHeader *message)
4120 {
4121   struct GNUNET_MESH_TunnelDestroy *msg;
4122   struct MeshTunnel *t;
4123
4124   msg = (struct GNUNET_MESH_TunnelDestroy *) message;
4125   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
4126               "Got a TUNNEL DESTROY packet from %s\n",
4127               GNUNET_i2s (peer));
4128   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
4129               "  for tunnel %s [%u]\n",
4130               GNUNET_i2s (&msg->oid), ntohl (msg->tid));
4131   t = tunnel_get (&msg->oid, ntohl (msg->tid));
4132   if (NULL == t)
4133   {
4134     /* Probably already got the message from another path,
4135      * destroyed the tunnel and retransmitted to children.
4136      * Safe to ignore.
4137      */
4138     GNUNET_STATISTICS_update (stats, "# control on unknown tunnel",
4139                               1, GNUNET_NO);
4140     return GNUNET_OK;
4141   }
4142   if (t->local_tid_dest >= GNUNET_MESH_LOCAL_TUNNEL_ID_SERV)
4143   {
4144     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "INCOMING TUNNEL %X %X\n",
4145                 t->local_tid, t->local_tid_dest);
4146   }
4147   if (GNUNET_PEER_search (peer) == t->prev_hop)
4148   {
4149     // TODO check owner's signature
4150     // TODO add owner's signatue to tunnel for retransmission
4151     peer_cancel_queues (t->prev_hop, t);
4152     GNUNET_PEER_change_rc (t->prev_hop, -1);
4153     t->prev_hop = 0;
4154   }
4155   else if (GNUNET_PEER_search (peer) == t->next_hop)
4156   {
4157     // TODO check dest's signature
4158     // TODO add dest's signatue to tunnel for retransmission
4159     peer_cancel_queues (t->next_hop, t);
4160     GNUNET_PEER_change_rc (t->next_hop, -1);
4161     t->next_hop = 0;
4162   }
4163   else
4164   {
4165     GNUNET_break_op (0);
4166     // TODO check both owner AND destination's signature to see which matches
4167     // TODO restransmit in appropriate direction
4168     return GNUNET_OK;
4169   }
4170   tunnel_destroy_empty (t);
4171
4172   // TODO: add timeout to destroy the tunnel anyway
4173   return GNUNET_OK;
4174 }
4175
4176
4177 /**
4178  * Generic handler for mesh network payload traffic.
4179  *
4180  * @param peer Peer identity this notification is about.
4181  * @param message Data message.
4182  * @param fwd Is this FWD traffic? GNUNET_YES : GNUNET_NO;
4183  *
4184  * @return GNUNET_OK to keep the connection open,
4185  *         GNUNET_SYSERR to close it (signal serious error)
4186  */
4187 static int
4188 handle_mesh_data (const struct GNUNET_PeerIdentity *peer,
4189                   const struct GNUNET_MessageHeader *message,
4190                   int fwd)
4191 {
4192   struct GNUNET_MESH_Data *msg;
4193   struct MeshFlowControl *fc;
4194   struct MeshTunnelReliability *rel;
4195   struct MeshTunnel *t;
4196   struct MeshClient *c;
4197   GNUNET_PEER_Id hop;
4198   uint32_t pid;
4199   uint32_t ttl;
4200   uint16_t type;
4201   size_t size;
4202
4203   /* Check size */
4204   size = ntohs (message->size);
4205   if (size <
4206       sizeof (struct GNUNET_MESH_Data) +
4207       sizeof (struct GNUNET_MessageHeader))
4208   {
4209     GNUNET_break (0);
4210     return GNUNET_OK;
4211   }
4212   type =ntohs (message->type);
4213   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "got a %s message from %s\n",
4214               GNUNET_MESH_DEBUG_M2S (type), GNUNET_i2s (peer));
4215   msg = (struct GNUNET_MESH_Data *) message;
4216   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, " payload of type %s\n",
4217               GNUNET_MESH_DEBUG_M2S (ntohs (msg[1].header.type)));
4218   /* Check tunnel */
4219   t = tunnel_get (&msg->oid, ntohl (msg->tid));
4220   if (NULL == t)
4221   {
4222     /* TODO notify back: we don't know this tunnel */
4223     GNUNET_STATISTICS_update (stats, "# data on unknown tunnel", 1, GNUNET_NO);
4224     GNUNET_break_op (0);
4225     return GNUNET_OK;
4226   }
4227
4228   /*  Initialize FWD/BCK data */
4229   pid = ntohl (msg->pid);
4230   fc =  fwd ? &t->prev_fc : &t->next_fc;
4231   c =   fwd ? t->client   : t->owner;
4232   rel = fwd ? t->bck_rel  : t->fwd_rel;
4233   hop = fwd ? t->next_hop : t->prev_hop;
4234   if (GMC_is_pid_bigger (pid, fc->last_ack_sent))
4235   {
4236     GNUNET_STATISTICS_update (stats, "# unsolicited data", 1, GNUNET_NO);
4237     GNUNET_break_op (0);
4238     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
4239                 "Received PID %u, (prev %u), ACK %u\n",
4240                 pid, fc->last_pid_recv, fc->last_ack_sent);
4241     return GNUNET_OK;
4242   }
4243   if (NULL != c)
4244     tunnel_change_state (t, MESH_TUNNEL_READY);
4245   tunnel_reset_timeout (t, fwd);
4246   if (NULL != c)
4247   {
4248     /* TODO signature verification */
4249     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  it's for us! sending to client\n");
4250     GNUNET_STATISTICS_update (stats, "# data received", 1, GNUNET_NO);
4251     if (GMC_is_pid_bigger (pid, fc->last_pid_recv))
4252     {
4253       uint32_t mid;
4254
4255       mid = ntohl (msg->mid);
4256       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
4257                   " pid %u (mid %u) not seen yet\n", pid, mid);
4258       fc->last_pid_recv = pid;
4259
4260       if (GNUNET_NO == t->reliable ||
4261           ( !GMC_is_pid_bigger (rel->mid_recv, mid) &&
4262             GMC_is_pid_bigger (rel->mid_recv + 64, mid) ) )
4263       {
4264         GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
4265                     "!!! RECV %u\n", ntohl (msg->mid));
4266         if (GNUNET_YES == t->reliable)
4267         {
4268           /* Is this the exact next expected messasge? */
4269           if (mid == rel->mid_recv)
4270           {
4271             GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "as expected\n");
4272             rel->mid_recv++;
4273             tunnel_send_client_data (t, msg, fwd);
4274             tunnel_send_client_buffered_data (t, c, rel);
4275           }
4276           else
4277           {
4278             GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "save for later\n");
4279             tunnel_add_buffered_data (t, msg, rel);
4280           }
4281         }
4282         else /* Tunnel unreliable, send to clients directly */
4283         {
4284           tunnel_send_client_data (t, msg, fwd);
4285         }
4286       }
4287       else
4288       {
4289         GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
4290                     " MID %u not expected (%u - %u), dropping!\n",
4291                     ntohl (msg->mid), rel->mid_recv, rel->mid_recv + 64);
4292       }
4293     }
4294     else
4295     {
4296 //       GNUNET_STATISTICS_update (stats, "# duplicate PID", 1, GNUNET_NO);
4297       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
4298                   " Pid %u not expected (%u+), dropping!\n",
4299                   pid, fc->last_pid_recv + 1);
4300     }
4301     tunnel_send_ack (t, type, fwd);
4302     return GNUNET_OK;
4303   }
4304   fc->last_pid_recv = pid;
4305   if (0 == hop)
4306   {
4307     GNUNET_STATISTICS_update (stats, "# data on dying tunnel", 1, GNUNET_NO);
4308     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "data on dying tunnel %s[%X]\n",
4309                 GNUNET_PEER_resolve2 (t->id.oid), ntohl (msg->tid));
4310     return GNUNET_OK; /* Next hop has destoyed the tunnel, drop */
4311   }
4312   ttl = ntohl (msg->ttl);
4313   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "   ttl: %u\n", ttl);
4314   if (ttl == 0)
4315   {
4316     GNUNET_STATISTICS_update (stats, "# TTL drops", 1, GNUNET_NO);
4317     GNUNET_log (GNUNET_ERROR_TYPE_WARNING, " TTL is 0, DROPPING!\n");
4318     tunnel_send_ack (t, GNUNET_MESSAGE_TYPE_MESH_ACK, fwd);
4319     return GNUNET_OK;
4320   }
4321
4322   if (myid != hop)
4323   {
4324     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  not for us, retransmitting...\n");
4325     send_prebuilt_message (message, hop, t);
4326     GNUNET_STATISTICS_update (stats, "# unicast forwarded", 1, GNUNET_NO);
4327   }
4328   return GNUNET_OK;
4329 }
4330
4331
4332 /**
4333  * Core handler for mesh network traffic going from the origin to a peer
4334  *
4335  * @param cls Closure (unused).
4336  * @param message Message received.
4337  * @param peer Peer who sent the message.
4338  *
4339  * @return GNUNET_OK to keep the connection open,
4340  *         GNUNET_SYSERR to close it (signal serious error)
4341  */
4342 static int
4343 handle_mesh_unicast (void *cls, const struct GNUNET_PeerIdentity *peer,
4344                      const struct GNUNET_MessageHeader *message)
4345 {
4346   return handle_mesh_data (peer, message, GNUNET_YES);
4347 }
4348
4349 /**
4350  * Core handler for mesh network traffic towards the owner of a tunnel.
4351  *
4352  * @param cls Closure (unused).
4353  * @param message Message received.
4354  * @param peer Peer who sent the message.
4355  *
4356  * @return GNUNET_OK to keep the connection open,
4357  *         GNUNET_SYSERR to close it (signal serious error)
4358  */
4359 static int
4360 handle_mesh_to_orig (void *cls, const struct GNUNET_PeerIdentity *peer,
4361                      const struct GNUNET_MessageHeader *message)
4362 {
4363   return handle_mesh_data (peer, message, GNUNET_NO);
4364 }
4365
4366
4367 /**
4368  * Core handler for mesh network traffic end-to-end ACKs.
4369  *
4370  * @param cls Closure.
4371  * @param message Message.
4372  * @param peer Peer identity this notification is about.
4373  *
4374  * @return GNUNET_OK to keep the connection open,
4375  *         GNUNET_SYSERR to close it (signal serious error)
4376  */
4377 static int
4378 handle_mesh_data_ack (void *cls, const struct GNUNET_PeerIdentity *peer,
4379                       const struct GNUNET_MessageHeader *message)
4380 {
4381   struct GNUNET_MESH_DataACK *msg;
4382   struct MeshTunnelReliability *rel;
4383   struct MeshReliableMessage *copy;
4384   struct MeshReliableMessage *next;
4385   struct MeshTunnel *t;
4386   GNUNET_PEER_Id id;
4387   uint32_t ack;
4388   uint16_t type;
4389   int work;
4390
4391   type = ntohs (message->type);
4392   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Got a %s message from %s!\n",
4393               GNUNET_MESH_DEBUG_M2S (type), GNUNET_i2s (peer));
4394   msg = (struct GNUNET_MESH_DataACK *) message;
4395
4396   t = tunnel_get (&msg->oid, ntohl (msg->tid));
4397   if (NULL == t)
4398   {
4399     /* TODO notify that we dont know this tunnel (whom)? */
4400     GNUNET_STATISTICS_update (stats, "# ack on unknown tunnel", 1, GNUNET_NO);
4401     return GNUNET_OK;
4402   }
4403   ack = ntohl (msg->mid);
4404   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  ACK %u\n", ack);
4405
4406   /* Is this a forward or backward ACK? */
4407   id = GNUNET_PEER_search (peer);
4408   if (t->next_hop == id && GNUNET_MESSAGE_TYPE_MESH_UNICAST_ACK == type)
4409   {
4410     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  FWD ACK\n");
4411     if (NULL == t->owner)
4412     {
4413       send_prebuilt_message (message, t->prev_hop, t);
4414       return GNUNET_OK;
4415     }
4416     rel = t->fwd_rel;
4417   }
4418   else if (t->prev_hop == id && GNUNET_MESSAGE_TYPE_MESH_TO_ORIG_ACK == type)
4419   {
4420     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  BCK ACK\n");
4421     if (NULL == t->client)
4422     {
4423       send_prebuilt_message (message, t->next_hop, t);
4424       return GNUNET_OK;
4425     }
4426     rel = t->bck_rel;
4427   }
4428   else
4429   {
4430     GNUNET_break_op (0);
4431     return GNUNET_OK;
4432   }
4433
4434   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "!!! ACK %u\n", ack);
4435   for (work = GNUNET_NO, copy = rel->head_sent; copy != NULL; copy = next)
4436   {
4437    if (GMC_is_pid_bigger (copy->mid, ack))
4438     {
4439       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "!!!  head %u, out!\n", copy->mid);
4440       tunnel_free_sent_reliable (t, msg, rel);
4441       break;
4442     }
4443     work = GNUNET_YES;
4444     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "!!!  id %u\n", copy->mid);
4445     next = copy->next;
4446     tunnel_free_reliable_message (copy);
4447   }
4448   /* Once buffers have been free'd, send ACK */
4449   tunnel_send_ack (t, type, GNUNET_MESSAGE_TYPE_MESH_UNICAST_ACK == type);
4450
4451   /* If some message was free'd, update the retransmission delay*/
4452   if (GNUNET_YES == work)
4453   {
4454     if (GNUNET_SCHEDULER_NO_TASK != rel->retry_task)
4455     {
4456       GNUNET_SCHEDULER_cancel (rel->retry_task);
4457       if (NULL == rel->head_sent)
4458       {
4459         rel->retry_task = GNUNET_SCHEDULER_NO_TASK;
4460       }
4461       else
4462       {
4463         struct GNUNET_TIME_Absolute new_target;
4464         struct GNUNET_TIME_Relative delay;
4465
4466         delay = GNUNET_TIME_relative_multiply (rel->retry_timer,
4467                                                MESH_RETRANSMIT_MARGIN);
4468         new_target = GNUNET_TIME_absolute_add (rel->head_sent->timestamp,
4469                                                delay);
4470         delay = GNUNET_TIME_absolute_get_remaining (new_target);
4471         rel->retry_task =
4472             GNUNET_SCHEDULER_add_delayed (delay,
4473                                           &tunnel_retransmit_message,
4474                                           rel);
4475       }
4476     }
4477     else
4478       GNUNET_break (0);
4479   }
4480   return GNUNET_OK;
4481 }
4482
4483 /**
4484  * Core handler for mesh network traffic point-to-point acks.
4485  *
4486  * @param cls closure
4487  * @param message message
4488  * @param peer peer identity this notification is about
4489  *
4490  * @return GNUNET_OK to keep the connection open,
4491  *         GNUNET_SYSERR to close it (signal serious error)
4492  */
4493 static int
4494 handle_mesh_ack (void *cls, const struct GNUNET_PeerIdentity *peer,
4495                  const struct GNUNET_MessageHeader *message)
4496 {
4497   struct GNUNET_MESH_ACK *msg;
4498   struct MeshTunnel *t;
4499   struct MeshFlowControl *fc;
4500   GNUNET_PEER_Id id;
4501   uint32_t ack;
4502
4503   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Got an ACK packet from %s!\n",
4504               GNUNET_i2s (peer));
4505   msg = (struct GNUNET_MESH_ACK *) message;
4506
4507   t = tunnel_get (&msg->oid, ntohl (msg->tid));
4508
4509   if (NULL == t)
4510   {
4511     /* TODO notify that we dont know this tunnel (whom)? */
4512     GNUNET_STATISTICS_update (stats, "# ack on unknown tunnel", 1, GNUNET_NO);
4513     return GNUNET_OK;
4514   }
4515   ack = ntohl (msg->pid);
4516   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  ACK %u\n", ack);
4517
4518   /* Is this a forward or backward ACK? */
4519   id = GNUNET_PEER_search (peer);
4520   if (t->next_hop == id)
4521   {
4522     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  FWD ACK\n");
4523     fc = &t->next_fc;
4524   }
4525   else if (t->prev_hop == id)
4526   {
4527     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  BCK ACK\n");
4528     fc = &t->prev_fc;
4529   }
4530   else
4531   {
4532     GNUNET_break_op (0);
4533     return GNUNET_OK;
4534   }
4535
4536   if (GNUNET_SCHEDULER_NO_TASK != fc->poll_task &&
4537       GMC_is_pid_bigger (ack, fc->last_ack_recv))
4538   {
4539     GNUNET_SCHEDULER_cancel (fc->poll_task);
4540     fc->poll_task = GNUNET_SCHEDULER_NO_TASK;
4541     fc->poll_time = GNUNET_TIME_UNIT_SECONDS;
4542   }
4543
4544   fc->last_ack_recv = ack;
4545   peer_unlock_queue (id);
4546   tunnel_change_state (t, MESH_TUNNEL_READY);
4547
4548   tunnel_send_ack (t, GNUNET_MESSAGE_TYPE_MESH_ACK, t->next_hop == id);
4549
4550   return GNUNET_OK;
4551 }
4552
4553
4554 /**
4555  * Core handler for mesh network traffic point-to-point ack polls.
4556  *
4557  * @param cls closure
4558  * @param message message
4559  * @param peer peer identity this notification is about
4560  *
4561  * @return GNUNET_OK to keep the connection open,
4562  *         GNUNET_SYSERR to close it (signal serious error)
4563  */
4564 static int
4565 handle_mesh_poll (void *cls, const struct GNUNET_PeerIdentity *peer,
4566                   const struct GNUNET_MessageHeader *message)
4567 {
4568   struct GNUNET_MESH_Poll *msg;
4569   struct MeshTunnel *t;
4570   struct MeshFlowControl *fc;
4571   GNUNET_PEER_Id id;
4572   uint32_t pid;
4573   uint32_t old;
4574
4575   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Got an POLL packet from %s!\n",
4576               GNUNET_i2s (peer));
4577
4578   msg = (struct GNUNET_MESH_Poll *) message;
4579
4580   t = tunnel_get (&msg->oid, ntohl (msg->tid));
4581
4582   if (NULL == t)
4583   {
4584     /* TODO notify that we dont know this tunnel (whom)? */
4585     GNUNET_STATISTICS_update (stats, "# poll on unknown tunnel", 1, GNUNET_NO);
4586     GNUNET_break_op (0);
4587     return GNUNET_OK;
4588   }
4589
4590   /* Is this a forward or backward ACK? */
4591   id = GNUNET_PEER_search (peer);
4592   pid = ntohl (msg->pid);
4593   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  PID %u\n", pid);
4594   if (t->next_hop == id)
4595   {
4596     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  from FWD\n");
4597     fc = &t->next_fc;
4598     old = fc->last_pid_recv;
4599   }
4600   else if (t->prev_hop == id)
4601   {
4602     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  from BCK\n");
4603     fc = &t->prev_fc;
4604     old = fc->last_pid_recv;
4605   }
4606   else
4607   {
4608     GNUNET_break (0);
4609     return GNUNET_OK;
4610   }
4611
4612   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  was %u\n", fc->last_pid_recv);
4613   fc->last_pid_recv = pid;
4614   tunnel_send_ack (t, GNUNET_MESSAGE_TYPE_MESH_POLL, t->prev_hop == id);
4615
4616   if (GNUNET_YES == t->reliable)
4617     fc->last_pid_recv = old;
4618
4619   return GNUNET_OK;
4620 }
4621
4622
4623 /**
4624  * Core handler for mesh keepalives.
4625  *
4626  * @param cls closure
4627  * @param message message
4628  * @param peer peer identity this notification is about
4629  * @return GNUNET_OK to keep the connection open,
4630  *         GNUNET_SYSERR to close it (signal serious error)
4631  *
4632  * TODO: Check who we got this from, to validate route.
4633  */
4634 static int
4635 handle_mesh_keepalive (void *cls, const struct GNUNET_PeerIdentity *peer,
4636                        const struct GNUNET_MessageHeader *message)
4637 {
4638   struct GNUNET_MESH_TunnelKeepAlive *msg;
4639   struct MeshTunnel *t;
4640   struct MeshClient *c;
4641   GNUNET_PEER_Id hop;
4642   int fwd;
4643
4644   msg = (struct GNUNET_MESH_TunnelKeepAlive *) message;
4645   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "got a keepalive packet from %s\n",
4646               GNUNET_i2s (peer));
4647
4648   t = tunnel_get (&msg->oid, ntohl (msg->tid));
4649   if (NULL == t)
4650   {
4651     /* TODO notify that we dont know that tunnel */
4652     GNUNET_STATISTICS_update (stats, "# keepalive on unknown tunnel", 1,
4653                               GNUNET_NO);
4654     return GNUNET_OK;
4655   }
4656
4657   fwd = GNUNET_MESSAGE_TYPE_MESH_FWD_KEEPALIVE == ntohs (message->type) ? 
4658         GNUNET_YES : GNUNET_NO;
4659   c   = fwd ? t->client   : t->owner;
4660   hop = fwd ? t->next_hop : t->prev_hop;
4661
4662   if (NULL != c)
4663     tunnel_change_state (t, MESH_TUNNEL_READY);
4664   tunnel_reset_timeout (t, fwd);
4665   if (NULL != c || 0 == hop || myid == hop)
4666     return GNUNET_OK;
4667
4668   GNUNET_STATISTICS_update (stats, "# keepalives forwarded", 1, GNUNET_NO);
4669   send_prebuilt_message (message, hop, t);
4670   return GNUNET_OK;
4671   }
4672
4673
4674
4675 /**
4676  * Functions to handle messages from core
4677  */
4678 static struct GNUNET_CORE_MessageHandler core_handlers[] = {
4679   {&handle_mesh_path_create, GNUNET_MESSAGE_TYPE_MESH_PATH_CREATE, 0},
4680   {&handle_mesh_path_broken, GNUNET_MESSAGE_TYPE_MESH_PATH_BROKEN,
4681    sizeof (struct GNUNET_MESH_PathBroken)},
4682   {&handle_mesh_tunnel_destroy, GNUNET_MESSAGE_TYPE_MESH_TUNNEL_DESTROY,
4683    sizeof (struct GNUNET_MESH_TunnelDestroy)},
4684   {&handle_mesh_unicast, GNUNET_MESSAGE_TYPE_MESH_UNICAST, 0},
4685   {&handle_mesh_to_orig, GNUNET_MESSAGE_TYPE_MESH_TO_ORIGIN, 0},
4686   {&handle_mesh_data_ack, GNUNET_MESSAGE_TYPE_MESH_UNICAST_ACK,
4687     sizeof (struct GNUNET_MESH_DataACK)},
4688   {&handle_mesh_data_ack, GNUNET_MESSAGE_TYPE_MESH_TO_ORIG_ACK,
4689     sizeof (struct GNUNET_MESH_DataACK)},
4690   {&handle_mesh_keepalive, GNUNET_MESSAGE_TYPE_MESH_FWD_KEEPALIVE,
4691     sizeof (struct GNUNET_MESH_TunnelKeepAlive)},
4692   {&handle_mesh_keepalive, GNUNET_MESSAGE_TYPE_MESH_BCK_KEEPALIVE,
4693     sizeof (struct GNUNET_MESH_TunnelKeepAlive)},
4694   {&handle_mesh_ack, GNUNET_MESSAGE_TYPE_MESH_ACK,
4695     sizeof (struct GNUNET_MESH_ACK)},
4696   {&handle_mesh_poll, GNUNET_MESSAGE_TYPE_MESH_POLL,
4697     sizeof (struct GNUNET_MESH_Poll)},
4698   {&handle_mesh_path_ack, GNUNET_MESSAGE_TYPE_MESH_PATH_ACK,
4699    sizeof (struct GNUNET_MESH_PathACK)},
4700   {NULL, 0, 0}
4701 };
4702
4703
4704 /**
4705  * Function to process paths received for a new peer addition. The recorded
4706  * paths form the initial tunnel, which can be optimized later.
4707  * Called on each result obtained for the DHT search.
4708  *
4709  * @param cls closure
4710  * @param exp when will this value expire
4711  * @param key key of the result
4712  * @param get_path path of the get request
4713  * @param get_path_length lenght of get_path
4714  * @param put_path path of the put request
4715  * @param put_path_length length of the put_path
4716  * @param type type of the result
4717  * @param size number of bytes in data
4718  * @param data pointer to the result data
4719  */
4720 static void
4721 dht_get_id_handler (void *cls, struct GNUNET_TIME_Absolute exp,
4722                     const struct GNUNET_HashCode * key,
4723                     const struct GNUNET_PeerIdentity *get_path,
4724                     unsigned int get_path_length,
4725                     const struct GNUNET_PeerIdentity *put_path,
4726                     unsigned int put_path_length, enum GNUNET_BLOCK_Type type,
4727                     size_t size, const void *data)
4728 {
4729   struct MeshPeerInfo *peer = cls;
4730   struct MeshPeerPath *p;
4731   struct GNUNET_PeerIdentity pi;
4732   int i;
4733
4734   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Got results from DHT!\n");
4735   GNUNET_PEER_resolve (peer->id, &pi);
4736   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  for %s\n", GNUNET_i2s (&pi));
4737
4738   p = path_build_from_dht (get_path, get_path_length,
4739                            put_path, put_path_length);
4740   path_add_to_peers (p, GNUNET_NO);
4741   path_destroy (p);
4742   for (i = 0; i < peer->ntunnels; i++)
4743   {
4744     struct GNUNET_PeerIdentity id;
4745
4746     GNUNET_PEER_resolve (peer->tunnels[i]->id.oid, &id);
4747     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, " ... tunnel %s:%X (%X / %X)\n",
4748                 GNUNET_i2s (&id), peer->tunnels[i]->id.tid,
4749                 peer->tunnels[i]->local_tid, 
4750                 peer->tunnels[i]->local_tid_dest);
4751     if (peer->tunnels[i]->state == MESH_TUNNEL_SEARCHING)
4752     {
4753       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, " ... connect!\n");
4754       peer_connect (peer, peer->tunnels[i]);
4755     }
4756   }
4757
4758   return;
4759 }
4760
4761
4762 /******************************************************************************/
4763 /*********************       MESH LOCAL HANDLES      **************************/
4764 /******************************************************************************/
4765
4766
4767 /**
4768  * Handler for client connection.
4769  *
4770  * @param cls Closure (unused).
4771  * @param client Client handler.
4772  */
4773 static void
4774 handle_local_client_connect (void *cls, struct GNUNET_SERVER_Client *client)
4775 {
4776   struct MeshClient *c;
4777
4778   if (NULL == client)
4779     return;
4780   c = GNUNET_malloc (sizeof (struct MeshClient));
4781   c->handle = client;
4782   GNUNET_SERVER_client_keep (client);
4783   GNUNET_SERVER_client_set_user_context (client, c);
4784   GNUNET_CONTAINER_DLL_insert (clients_head, clients_tail, c);
4785 }
4786
4787
4788 /**
4789  * Handler for client disconnection
4790  *
4791  * @param cls closure
4792  * @param client identification of the client; NULL
4793  *        for the last call when the server is destroyed
4794  */
4795 static void
4796 handle_local_client_disconnect (void *cls, struct GNUNET_SERVER_Client *client)
4797 {
4798   struct MeshClient *c;
4799   struct MeshClient *next;
4800
4801   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "client disconnected: %p\n", client);
4802   if (client == NULL)
4803   {
4804     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "   (SERVER DOWN)\n");
4805     return;
4806   }
4807
4808   c = client_get (client);
4809   if (NULL != c)
4810   {
4811     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "matching client found (%u)\n",
4812                 c->id);
4813     GNUNET_SERVER_client_drop (c->handle);
4814     c->shutting_down = GNUNET_YES;
4815     if (NULL != c->own_tunnels)
4816     {
4817       GNUNET_CONTAINER_multihashmap32_iterate (c->own_tunnels,
4818                                                &tunnel_destroy_iterator, c);
4819       GNUNET_CONTAINER_multihashmap32_destroy (c->own_tunnels);
4820     }
4821
4822     if (NULL != c->incoming_tunnels)
4823     {
4824       GNUNET_CONTAINER_multihashmap32_iterate (c->incoming_tunnels,
4825                                              &tunnel_destroy_iterator, c);
4826       GNUNET_CONTAINER_multihashmap32_destroy (c->incoming_tunnels);
4827     }
4828
4829     if (NULL != c->ports)
4830       GNUNET_CONTAINER_multihashmap32_destroy (c->ports);
4831     next = c->next;
4832     GNUNET_CONTAINER_DLL_remove (clients_head, clients_tail, c);
4833     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  CLIENT FREE at %p\n", c);
4834     GNUNET_free (c);
4835     GNUNET_STATISTICS_update (stats, "# clients", -1, GNUNET_NO);
4836     c = next;
4837   }
4838   else
4839   {
4840     GNUNET_log (GNUNET_ERROR_TYPE_WARNING, " context NULL!\n");
4841   }
4842   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "done!\n");
4843   return;
4844 }
4845
4846
4847 /**
4848  * Handler for new clients
4849  *
4850  * @param cls closure
4851  * @param client identification of the client
4852  * @param message the actual message, which includes messages the client wants
4853  */
4854 static void
4855 handle_local_new_client (void *cls, struct GNUNET_SERVER_Client *client,
4856                          const struct GNUNET_MessageHeader *message)
4857 {
4858   struct GNUNET_MESH_ClientConnect *cc_msg;
4859   struct MeshClient *c;
4860   unsigned int size;
4861   uint32_t *p;
4862   unsigned int i;
4863
4864   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "new client connected %p\n", client);
4865
4866   /* Check data sanity */
4867   size = ntohs (message->size) - sizeof (struct GNUNET_MESH_ClientConnect);
4868   cc_msg = (struct GNUNET_MESH_ClientConnect *) message;
4869   if (0 != (size % sizeof (uint32_t)))
4870   {
4871     GNUNET_break (0);
4872     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
4873     return;
4874   }
4875   size /= sizeof (uint32_t);
4876
4877   /* Initialize new client structure */
4878   c = GNUNET_SERVER_client_get_user_context (client, struct MeshClient);
4879   c->id = next_client_id++; /* overflow not important: just for debug */
4880   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  client id %u\n", c->id);
4881   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  client has %u ports\n", size);
4882   if (size > 0)
4883   {
4884     uint32_t u32;
4885
4886     p = (uint32_t *) &cc_msg[1];
4887     c->ports = GNUNET_CONTAINER_multihashmap32_create (size);
4888     for (i = 0; i < size; i++)
4889     {
4890       u32 = ntohl (p[i]);
4891       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "    port: %u\n", u32);
4892
4893       /* store in client's hashmap */
4894       GNUNET_CONTAINER_multihashmap32_put (c->ports, u32, c,
4895                                            GNUNET_CONTAINER_MULTIHASHMAPOPTION_UNIQUE_FAST);
4896       /* store in global hashmap */
4897       /* FIXME only allow one client to have the port open,
4898        *       have a backup hashmap with waiting clients */
4899       GNUNET_CONTAINER_multihashmap32_put (ports, u32, c,
4900                                            GNUNET_CONTAINER_MULTIHASHMAPOPTION_MULTIPLE);
4901     }
4902   }
4903
4904   c->own_tunnels = GNUNET_CONTAINER_multihashmap32_create (32);
4905   c->incoming_tunnels = GNUNET_CONTAINER_multihashmap32_create (32);
4906   GNUNET_SERVER_notification_context_add (nc, client);
4907   GNUNET_STATISTICS_update (stats, "# clients", 1, GNUNET_NO);
4908
4909   GNUNET_SERVER_receive_done (client, GNUNET_OK);
4910   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "new client processed\n");
4911 }
4912
4913
4914 /**
4915  * Handler for requests of new tunnels
4916  *
4917  * @param cls Closure.
4918  * @param client Identification of the client.
4919  * @param message The actual message.
4920  */
4921 static void
4922 handle_local_tunnel_create (void *cls, struct GNUNET_SERVER_Client *client,
4923                             const struct GNUNET_MessageHeader *message)
4924 {
4925   struct GNUNET_MESH_TunnelMessage *t_msg;
4926   struct MeshPeerInfo *peer_info;
4927   struct MeshTunnel *t;
4928   struct MeshClient *c;
4929   MESH_TunnelNumber tid;
4930
4931   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "new tunnel requested\n");
4932
4933   /* Sanity check for client registration */
4934   if (NULL == (c = client_get (client)))
4935   {
4936     GNUNET_break (0);
4937     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
4938     return;
4939   }
4940   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  by client %u\n", c->id);
4941
4942   /* Message size sanity check */
4943   if (sizeof (struct GNUNET_MESH_TunnelMessage) != ntohs (message->size))
4944   {
4945     GNUNET_break (0);
4946     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
4947     return;
4948   }
4949
4950   t_msg = (struct GNUNET_MESH_TunnelMessage *) message;
4951   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  towards %s\n",
4952               GNUNET_i2s (&t_msg->peer));
4953   /* Sanity check for tunnel numbering */
4954   tid = ntohl (t_msg->tunnel_id);
4955   if (0 == (tid & GNUNET_MESH_LOCAL_TUNNEL_ID_CLI))
4956   {
4957     GNUNET_break (0);
4958     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
4959     return;
4960   }
4961   /* Sanity check for duplicate tunnel IDs */
4962   if (NULL != tunnel_get_by_local_id (c, tid))
4963   {
4964     GNUNET_break (0);
4965     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
4966     return;
4967   }
4968
4969   /* Create tunnel */
4970   while (NULL != tunnel_get_by_pi (myid, next_tid))
4971     next_tid = (next_tid + 1) & ~GNUNET_MESH_LOCAL_TUNNEL_ID_CLI;
4972   t = tunnel_new (myid, next_tid, c, tid);
4973   next_tid = (next_tid + 1) & ~GNUNET_MESH_LOCAL_TUNNEL_ID_CLI;
4974   if (NULL == t)
4975   {
4976     GNUNET_break (0);
4977     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
4978     return;
4979   }
4980   t->port = ntohl (t_msg->port);
4981   tunnel_set_options (t, ntohl (t_msg->opt));
4982   if (GNUNET_YES == t->reliable)
4983   {
4984     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "!!! Reliable\n");
4985     t->fwd_rel = GNUNET_malloc (sizeof (struct MeshTunnelReliability));
4986     t->fwd_rel->t = t;
4987     t->fwd_rel->expected_delay = MESH_RETRANSMIT_TIME;
4988   }
4989
4990   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "CREATED TUNNEL %s[%x]:%u (%x)\n",
4991               GNUNET_i2s (&my_full_id), t->id.tid, t->port, t->local_tid);
4992
4993   peer_info = peer_get (&t_msg->peer);
4994   peer_info_add_tunnel (peer_info, t);
4995   peer_connect (peer_info, t);
4996   tunnel_reset_timeout (t, GNUNET_YES);
4997   GNUNET_SERVER_receive_done (client, GNUNET_OK);
4998   return;
4999 }
5000
5001
5002 /**
5003  * Handler for requests of deleting tunnels
5004  *
5005  * @param cls closure
5006  * @param client identification of the client
5007  * @param message the actual message
5008  */
5009 static void
5010 handle_local_tunnel_destroy (void *cls, struct GNUNET_SERVER_Client *client,
5011                              const struct GNUNET_MessageHeader *message)
5012 {
5013   struct GNUNET_MESH_TunnelMessage *tunnel_msg;
5014   struct MeshClient *c;
5015   struct MeshTunnel *t;
5016   MESH_TunnelNumber tid;
5017
5018   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
5019               "Got a DESTROY TUNNEL from client!\n");
5020
5021   /* Sanity check for client registration */
5022   if (NULL == (c = client_get (client)))
5023   {
5024     GNUNET_break (0);
5025     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
5026     return;
5027   }
5028   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  by client %u\n", c->id);
5029
5030   /* Message sanity check */
5031   if (sizeof (struct GNUNET_MESH_TunnelMessage) != ntohs (message->size))
5032   {
5033     GNUNET_break (0);
5034     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
5035     return;
5036   }
5037
5038   tunnel_msg = (struct GNUNET_MESH_TunnelMessage *) message;
5039
5040   /* Retrieve tunnel */
5041   tid = ntohl (tunnel_msg->tunnel_id);
5042   t = tunnel_get_by_local_id (c, tid);
5043   if (NULL == t)
5044   {
5045     GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "  tunnel %X not found\n", tid);
5046     GNUNET_break (0);
5047     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
5048     return;
5049   }
5050
5051   /* Cleanup after the tunnel */
5052   client_delete_tunnel (c, t);
5053   if (c == t->client && GNUNET_MESH_LOCAL_TUNNEL_ID_SERV >= tid)
5054   {
5055     t->client = NULL;
5056   }
5057   else if (c == t->owner && GNUNET_MESH_LOCAL_TUNNEL_ID_SERV < tid)
5058   {
5059     peer_info_remove_tunnel (peer_get_short (t->dest), t);
5060     t->owner = NULL;
5061   }
5062   else 
5063   {
5064     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
5065                 "  tunnel %X client %p (%p, %p)\n",
5066                 tid, c, t->owner, t->client);
5067     GNUNET_break (0);
5068   }
5069
5070   /* The tunnel will be destroyed when the last message is transmitted. */
5071   tunnel_destroy_empty (t);
5072
5073   GNUNET_SERVER_receive_done (client, GNUNET_OK);
5074   return;
5075 }
5076
5077
5078 /**
5079  * Handler for client traffic
5080  *
5081  * @param cls closure
5082  * @param client identification of the client
5083  * @param message the actual message
5084  */
5085 static void
5086 handle_local_data (void *cls, struct GNUNET_SERVER_Client *client,
5087                    const struct GNUNET_MessageHeader *message)
5088 {
5089   struct GNUNET_MESH_LocalData *data_msg;
5090   struct MeshClient *c;
5091   struct MeshTunnel *t;
5092   struct MeshFlowControl *fc;
5093   MESH_TunnelNumber tid;
5094   size_t size;
5095
5096   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
5097               "Got data from a client!\n");
5098
5099   /* Sanity check for client registration */
5100   if (NULL == (c = client_get (client)))
5101   {
5102     GNUNET_break (0);
5103     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
5104     return;
5105   }
5106   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  by client %u\n", c->id);
5107
5108   data_msg = (struct GNUNET_MESH_LocalData *) message;
5109
5110   /* Sanity check for message size */
5111   size = ntohs (message->size) - sizeof (struct GNUNET_MESH_LocalData);
5112   if (size < sizeof (struct GNUNET_MessageHeader))
5113   {
5114     GNUNET_break (0);
5115     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
5116     return;
5117   }
5118
5119   /* Tunnel exists? */
5120   tid = ntohl (data_msg->tid);
5121   if (tid < GNUNET_MESH_LOCAL_TUNNEL_ID_CLI)
5122   {
5123     GNUNET_break (0);
5124     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
5125     return;
5126   }
5127   t = tunnel_get_by_local_id (c, tid);
5128   if (NULL == t)
5129   {
5130     GNUNET_break (0);
5131     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
5132     return;
5133   }
5134
5135   /* Is the client in the tunnel? */
5136   if ( !( (tid < GNUNET_MESH_LOCAL_TUNNEL_ID_SERV &&
5137            t->owner &&
5138            t->owner->handle == client)
5139          ||
5140           (tid >= GNUNET_MESH_LOCAL_TUNNEL_ID_SERV &&
5141            t->client && 
5142            t->client->handle == client) ) )
5143   {
5144     GNUNET_break (0);
5145     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
5146     return;
5147   }
5148
5149   /* Ok, everything is correct, send the message
5150    * (pretend we got it from a mesh peer)
5151    */
5152   {
5153     struct GNUNET_MESH_Data *payload;
5154     char cbuf[sizeof(struct GNUNET_MESH_Data) + size];
5155
5156     fc = tid < GNUNET_MESH_LOCAL_TUNNEL_ID_SERV ? &t->prev_fc : &t->next_fc;
5157     if (GNUNET_YES == t->reliable)
5158     {
5159       struct MeshTunnelReliability *rel;
5160       struct MeshReliableMessage *copy;
5161
5162       rel = (tid < GNUNET_MESH_LOCAL_TUNNEL_ID_SERV) ? t->fwd_rel : t->bck_rel;
5163       copy = GNUNET_malloc (sizeof (struct MeshReliableMessage)
5164                             + sizeof(struct GNUNET_MESH_Data)
5165                             + size);
5166       copy->mid = rel->mid_sent++;
5167       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "!!! DATA %u\n", copy->mid);
5168       copy->timestamp = GNUNET_TIME_absolute_get ();
5169       copy->rel = rel;
5170       rel->n_sent++;
5171       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, " n_sent %u\n", rel->n_sent);
5172       GNUNET_CONTAINER_DLL_insert_tail (rel->head_sent, rel->tail_sent, copy);
5173       if (GNUNET_SCHEDULER_NO_TASK == rel->retry_task)
5174       {
5175         rel->retry_timer =
5176             GNUNET_TIME_relative_multiply (rel->expected_delay,
5177                                            MESH_RETRANSMIT_MARGIN);
5178         rel->retry_task =
5179             GNUNET_SCHEDULER_add_delayed (rel->retry_timer,
5180                                           &tunnel_retransmit_message,
5181                                           rel);
5182       }
5183       payload = (struct GNUNET_MESH_Data *) &copy[1];
5184       payload->mid = htonl (copy->mid);
5185     }
5186     else
5187     {
5188       payload = (struct GNUNET_MESH_Data *) cbuf;
5189       payload->mid = htonl (fc->last_pid_recv + 1);
5190     }
5191     memcpy (&payload[1], &data_msg[1], size);
5192     payload->header.size = htons (sizeof (struct GNUNET_MESH_Data) + size);
5193     payload->header.type = htons (tid < GNUNET_MESH_LOCAL_TUNNEL_ID_SERV ?
5194                                   GNUNET_MESSAGE_TYPE_MESH_UNICAST :
5195                                   GNUNET_MESSAGE_TYPE_MESH_TO_ORIGIN);
5196     GNUNET_PEER_resolve(t->id.oid, &payload->oid);;
5197     payload->tid = htonl (t->id.tid);
5198     payload->ttl = htonl (default_ttl);
5199     payload->pid = htonl (fc->last_pid_recv + 1);
5200     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
5201                 "  calling generic handler...\n");
5202     if (tid < GNUNET_MESH_LOCAL_TUNNEL_ID_SERV)
5203       handle_mesh_unicast (NULL, &my_full_id, &payload->header);
5204     else
5205       handle_mesh_to_orig (NULL, &my_full_id, &payload->header);
5206   }
5207   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "receive done OK\n");
5208   GNUNET_SERVER_receive_done (client, GNUNET_OK);
5209
5210   return;
5211 }
5212
5213
5214 /**
5215  * Handler for client's ACKs for payload traffic.
5216  *
5217  * @param cls Closure (unused).
5218  * @param client Identification of the client.
5219  * @param message The actual message.
5220  */
5221 static void
5222 handle_local_ack (void *cls, struct GNUNET_SERVER_Client *client,
5223                   const struct GNUNET_MessageHeader *message)
5224 {
5225   struct GNUNET_MESH_LocalAck *msg;
5226   struct MeshTunnel *t;
5227   struct MeshClient *c;
5228   MESH_TunnelNumber tid;
5229
5230   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Got a local ACK\n");
5231   /* Sanity check for client registration */
5232   if (NULL == (c = client_get (client)))
5233   {
5234     GNUNET_break (0);
5235     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
5236     return;
5237   }
5238   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  by client %u\n", c->id);
5239
5240   msg = (struct GNUNET_MESH_LocalAck *) message;
5241
5242   /* Tunnel exists? */
5243   tid = ntohl (msg->tunnel_id);
5244   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  on tunnel %X\n", tid);
5245   t = tunnel_get_by_local_id (c, tid);
5246   if (NULL == t)
5247   {
5248     GNUNET_break (0);
5249     GNUNET_log (GNUNET_ERROR_TYPE_WARNING, "Tunnel %X unknown.\n", tid);
5250     GNUNET_log (GNUNET_ERROR_TYPE_WARNING, "  for client %u.\n", c->id);
5251     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
5252     return;
5253   }
5254
5255   /* Does client own tunnel? I.E: Is this an ACK for BCK traffic? */
5256   if (tid < GNUNET_MESH_LOCAL_TUNNEL_ID_SERV)
5257   {
5258     /* The client owns the tunnel, ACK is for data to_origin, send BCK ACK. */
5259     t->prev_fc.last_ack_recv++;
5260     tunnel_send_ack (t, GNUNET_MESSAGE_TYPE_MESH_LOCAL_ACK, GNUNET_NO);
5261   }
5262   else
5263   {
5264     /* The client doesn't own the tunnel, this ACK is for FWD traffic. */
5265     t->next_fc.last_ack_recv++;
5266     tunnel_send_ack (t, GNUNET_MESSAGE_TYPE_MESH_LOCAL_ACK, GNUNET_YES);
5267   }
5268
5269   GNUNET_SERVER_receive_done (client, GNUNET_OK);
5270
5271   return;
5272 }
5273
5274
5275
5276 /**
5277  * Iterator over all tunnels to send a monitoring client info about each tunnel.
5278  *
5279  * @param cls Closure (client handle).
5280  * @param key Key (hashed tunnel ID, unused).
5281  * @param value Tunnel info.
5282  *
5283  * @return GNUNET_YES, to keep iterating.
5284  */
5285 static int
5286 monitor_all_tunnels_iterator (void *cls,
5287                               const struct GNUNET_HashCode * key,
5288                               void *value)
5289 {
5290   struct GNUNET_SERVER_Client *client = cls;
5291   struct MeshTunnel *t = value;
5292   struct GNUNET_MESH_LocalMonitor *msg;
5293
5294   msg = GNUNET_malloc (sizeof(struct GNUNET_MESH_LocalMonitor));
5295   GNUNET_PEER_resolve(t->id.oid, &msg->owner);
5296   msg->tunnel_id = htonl (t->id.tid);
5297   msg->header.size = htons (sizeof (struct GNUNET_MESH_LocalMonitor));
5298   msg->header.type = htons (GNUNET_MESSAGE_TYPE_MESH_LOCAL_INFO_TUNNELS);
5299   GNUNET_PEER_resolve (t->dest, &msg->destination);
5300
5301   GNUNET_log (GNUNET_ERROR_TYPE_INFO,
5302               "*  sending info about tunnel %s [%u]\n",
5303               GNUNET_i2s (&msg->owner), t->id.tid);
5304
5305   GNUNET_SERVER_notification_context_unicast (nc, client,
5306                                               &msg->header, GNUNET_NO);
5307   return GNUNET_YES;
5308 }
5309
5310
5311 /**
5312  * Handler for client's MONITOR request.
5313  *
5314  * @param cls Closure (unused).
5315  * @param client Identification of the client.
5316  * @param message The actual message.
5317  */
5318 static void
5319 handle_local_get_tunnels (void *cls, struct GNUNET_SERVER_Client *client,
5320                           const struct GNUNET_MessageHeader *message)
5321 {
5322   struct MeshClient *c;
5323
5324   /* Sanity check for client registration */
5325   if (NULL == (c = client_get (client)))
5326   {
5327     GNUNET_break (0);
5328     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
5329     return;
5330   }
5331
5332   GNUNET_log (GNUNET_ERROR_TYPE_INFO,
5333               "Received get tunnels request from client %u\n",
5334               c->id);
5335   GNUNET_CONTAINER_multihashmap_iterate (tunnels,
5336                                          monitor_all_tunnels_iterator,
5337                                          client);
5338   GNUNET_log (GNUNET_ERROR_TYPE_INFO,
5339               "Get tunnels request from client %u completed\n",
5340               c->id);
5341   GNUNET_SERVER_receive_done (client, GNUNET_OK);
5342 }
5343
5344
5345 /**
5346  * Handler for client's MONITOR_TUNNEL request.
5347  *
5348  * @param cls Closure (unused).
5349  * @param client Identification of the client.
5350  * @param message The actual message.
5351  */
5352 static void
5353 handle_local_show_tunnel (void *cls, struct GNUNET_SERVER_Client *client,
5354                           const struct GNUNET_MessageHeader *message)
5355 {
5356   const struct GNUNET_MESH_LocalMonitor *msg;
5357   struct GNUNET_MESH_LocalMonitor *resp;
5358   struct MeshClient *c;
5359   struct MeshTunnel *t;
5360
5361   /* Sanity check for client registration */
5362   if (NULL == (c = client_get (client)))
5363   {
5364     GNUNET_break (0);
5365     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
5366     return;
5367   }
5368
5369   msg = (struct GNUNET_MESH_LocalMonitor *) message;
5370   GNUNET_log (GNUNET_ERROR_TYPE_INFO,
5371               "Received tunnel info request from client %u for tunnel %s[%X]\n",
5372               c->id,
5373               &msg->owner,
5374               ntohl (msg->tunnel_id));
5375   t = tunnel_get (&msg->owner, ntohl (msg->tunnel_id));
5376   if (NULL == t)
5377   {
5378     /* We don't know the tunnel FIXME */
5379     struct GNUNET_MESH_LocalMonitor warn;
5380
5381     warn = *msg;
5382     GNUNET_SERVER_notification_context_unicast (nc, client,
5383                                                 &warn.header,
5384                                                 GNUNET_NO);
5385     GNUNET_SERVER_receive_done (client, GNUNET_OK);
5386     return;
5387   }
5388
5389   /* Initialize context */
5390   resp = GNUNET_malloc (sizeof (struct GNUNET_MESH_LocalMonitor));
5391   *resp = *msg;
5392   GNUNET_PEER_resolve (t->dest, &resp->destination);
5393   resp->header.size = htons (sizeof (struct GNUNET_MESH_LocalMonitor));
5394   GNUNET_SERVER_notification_context_unicast (nc, c->handle,
5395                                               &resp->header, GNUNET_NO);
5396   GNUNET_free (resp);
5397
5398   GNUNET_log (GNUNET_ERROR_TYPE_INFO,
5399               "Monitor tunnel request from client %u completed\n",
5400               c->id);
5401   GNUNET_SERVER_receive_done (client, GNUNET_OK);
5402 }
5403
5404
5405 /**
5406  * Functions to handle messages from clients
5407  */
5408 static struct GNUNET_SERVER_MessageHandler client_handlers[] = {
5409   {&handle_local_new_client, NULL,
5410    GNUNET_MESSAGE_TYPE_MESH_LOCAL_CONNECT, 0},
5411   {&handle_local_tunnel_create, NULL,
5412    GNUNET_MESSAGE_TYPE_MESH_LOCAL_TUNNEL_CREATE,
5413    sizeof (struct GNUNET_MESH_TunnelMessage)},
5414   {&handle_local_tunnel_destroy, NULL,
5415    GNUNET_MESSAGE_TYPE_MESH_LOCAL_TUNNEL_DESTROY,
5416    sizeof (struct GNUNET_MESH_TunnelMessage)},
5417   {&handle_local_data, NULL,
5418    GNUNET_MESSAGE_TYPE_MESH_LOCAL_DATA, 0},
5419   {&handle_local_ack, NULL,
5420    GNUNET_MESSAGE_TYPE_MESH_LOCAL_ACK,
5421    sizeof (struct GNUNET_MESH_LocalAck)},
5422   {&handle_local_get_tunnels, NULL,
5423    GNUNET_MESSAGE_TYPE_MESH_LOCAL_INFO_TUNNELS,
5424    sizeof (struct GNUNET_MessageHeader)},
5425   {&handle_local_show_tunnel, NULL,
5426    GNUNET_MESSAGE_TYPE_MESH_LOCAL_INFO_TUNNEL,
5427      sizeof (struct GNUNET_MESH_LocalMonitor)},
5428   {NULL, NULL, 0, 0}
5429 };
5430
5431
5432 /**
5433  * Method called whenever a given peer connects.
5434  *
5435  * @param cls closure
5436  * @param peer peer identity this notification is about
5437  */
5438 static void
5439 core_connect (void *cls, const struct GNUNET_PeerIdentity *peer)
5440 {
5441   struct MeshPeerInfo *peer_info;
5442   struct MeshPeerPath *path;
5443
5444   DEBUG_CONN ("Peer connected\n");
5445   DEBUG_CONN ("     %s\n", GNUNET_i2s (&my_full_id));
5446   peer_info = peer_get (peer);
5447   if (myid == peer_info->id)
5448   {
5449     DEBUG_CONN ("     (self)\n");
5450     path = path_new (1);
5451   }
5452   else
5453   {
5454     DEBUG_CONN ("     %s\n", GNUNET_i2s (peer));
5455     path = path_new (2);
5456     path->peers[1] = peer_info->id;
5457     GNUNET_PEER_change_rc (peer_info->id, 1);
5458     GNUNET_STATISTICS_update (stats, "# peers", 1, GNUNET_NO);
5459   }
5460   path->peers[0] = myid;
5461   GNUNET_PEER_change_rc (myid, 1);
5462   peer_info_add_path (peer_info, path, GNUNET_YES);
5463   return;
5464 }
5465
5466
5467 /**
5468  * Method called whenever a peer disconnects.
5469  *
5470  * @param cls closure
5471  * @param peer peer identity this notification is about
5472  */
5473 static void
5474 core_disconnect (void *cls, const struct GNUNET_PeerIdentity *peer)
5475 {
5476   struct MeshPeerInfo *pi;
5477   struct MeshPeerQueue *q;
5478   struct MeshPeerQueue *n;
5479
5480   DEBUG_CONN ("Peer disconnected\n");
5481   pi = GNUNET_CONTAINER_multihashmap_get (peers, &peer->hashPubKey);
5482   if (NULL == pi)
5483   {
5484     GNUNET_break (0);
5485     return;
5486   }
5487   q = pi->queue_head;
5488   while (NULL != q)
5489   {
5490       n = q->next;
5491       /* TODO try to reroute this traffic instead */
5492       queue_destroy(q, GNUNET_YES);
5493       q = n;
5494   }
5495   if (NULL != pi->core_transmit)
5496   {
5497     GNUNET_CORE_notify_transmit_ready_cancel(pi->core_transmit);
5498     pi->core_transmit = NULL;
5499   }
5500     peer_info_remove_path (pi, pi->id, myid);
5501   if (myid == pi->id)
5502   {
5503     DEBUG_CONN ("     (self)\n");
5504   }
5505   GNUNET_STATISTICS_update (stats, "# peers", -1, GNUNET_NO);
5506   return;
5507 }
5508
5509
5510 /**
5511  * Install server (service) handlers and start listening to clients.
5512  */
5513 static void
5514 server_init (void)
5515 {
5516   GNUNET_SERVER_add_handlers (server_handle, client_handlers);
5517   GNUNET_SERVER_connect_notify (server_handle,
5518                                 &handle_local_client_connect, NULL);
5519   GNUNET_SERVER_disconnect_notify (server_handle,
5520                                    &handle_local_client_disconnect, NULL);
5521   nc = GNUNET_SERVER_notification_context_create (server_handle, 1);
5522
5523   clients_head = NULL;
5524   clients_tail = NULL;
5525   next_client_id = 0;
5526   GNUNET_SERVER_resume (server_handle);
5527 }
5528
5529
5530 /**
5531  * To be called on core init/fail.
5532  *
5533  * @param cls Closure (config)
5534  * @param server handle to the server for this service
5535  * @param identity the public identity of this peer
5536  */
5537 static void
5538 core_init (void *cls, struct GNUNET_CORE_Handle *server,
5539            const struct GNUNET_PeerIdentity *identity)
5540 {
5541   const struct GNUNET_CONFIGURATION_Handle *c = cls;
5542   static int i = 0;
5543
5544   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Core init\n");
5545   GNUNET_break (core_handle == server);
5546   if (0 != memcmp (identity, &my_full_id, sizeof (my_full_id)) ||
5547     NULL == server)
5548   {
5549     GNUNET_log (GNUNET_ERROR_TYPE_ERROR, _("Wrong CORE service\n"));
5550     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
5551                 " core id %s\n",
5552                 GNUNET_i2s (identity));
5553     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
5554                 " my id %s\n",
5555                 GNUNET_i2s (&my_full_id));
5556     GNUNET_CORE_disconnect (core_handle);
5557     core_handle = GNUNET_CORE_connect (c, /* Main configuration */
5558                                        NULL,      /* Closure passed to MESH functions */
5559                                        &core_init,        /* Call core_init once connected */
5560                                        &core_connect,     /* Handle connects */
5561                                        &core_disconnect,  /* remove peers on disconnects */
5562                                        NULL,      /* Don't notify about all incoming messages */
5563                                        GNUNET_NO, /* For header only in notification */
5564                                        NULL,      /* Don't notify about all outbound messages */
5565                                        GNUNET_NO, /* For header-only out notification */
5566                                        core_handlers);    /* Register these handlers */
5567     if (10 < i++)
5568       GNUNET_abort();
5569   }
5570   server_init ();
5571   return;
5572 }
5573
5574
5575 /******************************************************************************/
5576 /************************      MAIN FUNCTIONS      ****************************/
5577 /******************************************************************************/
5578
5579 /**
5580  * Iterator over tunnel hash map entries to destroy the tunnel during shutdown.
5581  *
5582  * @param cls closure
5583  * @param key current key code
5584  * @param value value in the hash map
5585  * @return GNUNET_YES if we should continue to iterate,
5586  *         GNUNET_NO if not.
5587  */
5588 static int
5589 shutdown_tunnel (void *cls, const struct GNUNET_HashCode * key, void *value)
5590 {
5591   struct MeshTunnel *t = value;
5592
5593   tunnel_destroy (t);
5594   return GNUNET_YES;
5595 }
5596
5597 /**
5598  * Iterator over peer hash map entries to destroy the tunnel during shutdown.
5599  *
5600  * @param cls closure
5601  * @param key current key code
5602  * @param value value in the hash map
5603  * @return GNUNET_YES if we should continue to iterate,
5604  *         GNUNET_NO if not.
5605  */
5606 static int
5607 shutdown_peer (void *cls, const struct GNUNET_HashCode * key, void *value)
5608 {
5609   struct MeshPeerInfo *p = value;
5610   struct MeshPeerQueue *q;
5611   struct MeshPeerQueue *n;
5612
5613   q = p->queue_head;
5614   while (NULL != q)
5615   {
5616       n = q->next;
5617       if (q->peer == p)
5618       {
5619         queue_destroy(q, GNUNET_YES);
5620       }
5621       q = n;
5622   }
5623   peer_info_destroy (p);
5624   return GNUNET_YES;
5625 }
5626
5627
5628 /**
5629  * Task run during shutdown.
5630  *
5631  * @param cls unused
5632  * @param tc unused
5633  */
5634 static void
5635 shutdown_task (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
5636 {
5637   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "shutting down\n");
5638
5639   if (core_handle != NULL)
5640   {
5641     GNUNET_CORE_disconnect (core_handle);
5642     core_handle = NULL;
5643   }
5644   GNUNET_CONTAINER_multihashmap_iterate (tunnels, &shutdown_tunnel, NULL);
5645   GNUNET_CONTAINER_multihashmap_iterate (peers, &shutdown_peer, NULL);
5646   if (dht_handle != NULL)
5647   {
5648     GNUNET_DHT_disconnect (dht_handle);
5649     dht_handle = NULL;
5650   }
5651   if (nc != NULL)
5652   {
5653     GNUNET_SERVER_notification_context_destroy (nc);
5654     nc = NULL;
5655   }
5656   if (GNUNET_SCHEDULER_NO_TASK != announce_id_task)
5657   {
5658     GNUNET_SCHEDULER_cancel (announce_id_task);
5659     announce_id_task = GNUNET_SCHEDULER_NO_TASK;
5660   }
5661   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "shut down\n");
5662 }
5663
5664
5665 /**
5666  * Process mesh requests.
5667  *
5668  * @param cls closure
5669  * @param server the initialized server
5670  * @param c configuration to use
5671  */
5672 static void
5673 run (void *cls, struct GNUNET_SERVER_Handle *server,
5674      const struct GNUNET_CONFIGURATION_Handle *c)
5675 {
5676   char *keyfile;
5677   struct GNUNET_CRYPTO_EccPrivateKey *pk;
5678
5679   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "starting to run\n");
5680   server_handle = server;
5681   GNUNET_SERVER_suspend (server_handle);
5682
5683   if (GNUNET_OK !=
5684       GNUNET_CONFIGURATION_get_value_filename (c, "PEER", "PRIVATE_KEY",
5685                                                &keyfile))
5686   {
5687     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
5688                 _
5689                 ("%s service is lacking key configuration settings (%s).  Exiting.\n"),
5690                 "mesh", "peer/privatekey");
5691     GNUNET_SCHEDULER_shutdown ();
5692     return;
5693   }
5694
5695   if (GNUNET_OK !=
5696       GNUNET_CONFIGURATION_get_value_time (c, "MESH", "REFRESH_PATH_TIME",
5697                                            &refresh_path_time))
5698   {
5699     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
5700                 _
5701                 ("%s service is lacking key configuration settings (%s).  Exiting.\n"),
5702                 "mesh", "refresh path time");
5703     GNUNET_SCHEDULER_shutdown ();
5704     return;
5705   }
5706
5707   if (GNUNET_OK !=
5708       GNUNET_CONFIGURATION_get_value_time (c, "MESH", "ID_ANNOUNCE_TIME",
5709                                            &id_announce_time))
5710   {
5711     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
5712                 _
5713                 ("%s service is lacking key configuration settings (%s).  Exiting.\n"),
5714                 "mesh", "id announce time");
5715     GNUNET_SCHEDULER_shutdown ();
5716     return;
5717   }
5718
5719   if (GNUNET_OK !=
5720       GNUNET_CONFIGURATION_get_value_time (c, "MESH", "CONNECT_TIMEOUT",
5721                                            &connect_timeout))
5722   {
5723     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
5724                 _
5725                 ("%s service is lacking key configuration settings (%s).  Exiting.\n"),
5726                 "mesh", "connect timeout");
5727     GNUNET_SCHEDULER_shutdown ();
5728     return;
5729   }
5730
5731   if (GNUNET_OK !=
5732       GNUNET_CONFIGURATION_get_value_number (c, "MESH", "MAX_MSGS_QUEUE",
5733                                              &max_msgs_queue))
5734   {
5735     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
5736                 _
5737                 ("%s service is lacking key configuration settings (%s).  Exiting.\n"),
5738                 "mesh", "max msgs queue");
5739     GNUNET_SCHEDULER_shutdown ();
5740     return;
5741   }
5742
5743   if (GNUNET_OK !=
5744       GNUNET_CONFIGURATION_get_value_number (c, "MESH", "MAX_TUNNELS",
5745                                              &max_tunnels))
5746   {
5747     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
5748                 _
5749                 ("%s service is lacking key configuration settings (%s).  Exiting.\n"),
5750                 "mesh", "max tunnels");
5751     GNUNET_SCHEDULER_shutdown ();
5752     return;
5753   }
5754
5755   if (GNUNET_OK !=
5756       GNUNET_CONFIGURATION_get_value_number (c, "MESH", "DEFAULT_TTL",
5757                                              &default_ttl))
5758   {
5759     GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
5760                 _
5761                 ("%s service is lacking key configuration settings (%s). Using default (%u).\n"),
5762                 "mesh", "default ttl", 64);
5763     default_ttl = 64;
5764   }
5765
5766   if (GNUNET_OK !=
5767       GNUNET_CONFIGURATION_get_value_number (c, "MESH", "MAX_PEERS",
5768                                              &max_peers))
5769   {
5770     GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
5771                 _("%s service is lacking key configuration settings (%s). Using default (%u).\n"),
5772                 "mesh", "max peers", 1000);
5773     max_peers = 1000;
5774   }
5775
5776   if (GNUNET_OK !=
5777       GNUNET_CONFIGURATION_get_value_number (c, "MESH", "DROP_PERCENT",
5778                                              &drop_percent))
5779   {
5780     drop_percent = 0;
5781   }
5782   else
5783   {
5784     GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
5785                 "Mesh is running with drop mode enabled. "
5786                 "This is NOT a good idea! "
5787                 "Remove the DROP_PERCENT option from your configuration.\n");
5788   }
5789
5790   if (GNUNET_OK !=
5791       GNUNET_CONFIGURATION_get_value_number (c, "MESH", "DHT_REPLICATION_LEVEL",
5792                                              &dht_replication_level))
5793   {
5794     GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
5795                 _
5796                 ("%s service is lacking key configuration settings (%s). Using default (%u).\n"),
5797                 "mesh", "dht replication level", 3);
5798     dht_replication_level = 3;
5799   }
5800
5801   tunnels = GNUNET_CONTAINER_multihashmap_create (32, GNUNET_NO);
5802   incoming_tunnels = GNUNET_CONTAINER_multihashmap32_create (32);
5803   peers = GNUNET_CONTAINER_multihashmap_create (32, GNUNET_NO);
5804   ports = GNUNET_CONTAINER_multihashmap32_create (32);
5805
5806   dht_handle = GNUNET_DHT_connect (c, 64);
5807   if (NULL == dht_handle)
5808   {
5809     GNUNET_break (0);
5810   }
5811   stats = GNUNET_STATISTICS_create ("mesh", c);
5812
5813   /* Scheduled the task to clean up when shutdown is called */
5814   GNUNET_SCHEDULER_add_delayed (GNUNET_TIME_UNIT_FOREVER_REL, &shutdown_task,
5815                                 NULL);
5816   pk = GNUNET_CRYPTO_ecc_key_create_from_file (keyfile);
5817   GNUNET_free (keyfile);
5818   GNUNET_assert (NULL != pk);
5819   my_private_key = pk;
5820   GNUNET_CRYPTO_ecc_key_get_public (my_private_key, &my_public_key);
5821   GNUNET_CRYPTO_hash (&my_public_key, sizeof (my_public_key),
5822                       &my_full_id.hashPubKey);
5823   myid = GNUNET_PEER_intern (&my_full_id);
5824   GNUNET_log (GNUNET_ERROR_TYPE_INFO,
5825               "Mesh for peer [%s] starting\n",
5826               GNUNET_i2s(&my_full_id));
5827
5828   core_handle = GNUNET_CORE_connect (c, /* Main configuration */
5829                                      NULL,      /* Closure passed to MESH functions */
5830                                      &core_init,        /* Call core_init once connected */
5831                                      &core_connect,     /* Handle connects */
5832                                      &core_disconnect,  /* remove peers on disconnects */
5833                                      NULL,      /* Don't notify about all incoming messages */
5834                                      GNUNET_NO, /* For header only in notification */
5835                                      NULL,      /* Don't notify about all outbound messages */
5836                                      GNUNET_NO, /* For header-only out notification */
5837                                      core_handlers);    /* Register these handlers */
5838   if (NULL == core_handle)
5839   {
5840     GNUNET_break (0);
5841     GNUNET_SCHEDULER_shutdown ();
5842     return;
5843   }
5844   next_tid = 0;
5845   next_local_tid = GNUNET_MESH_LOCAL_TUNNEL_ID_SERV;
5846   announce_id_task = GNUNET_SCHEDULER_add_now (&announce_id, cls);
5847   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Mesh service running\n");
5848 }
5849
5850
5851 /**
5852  * The main function for the mesh service.
5853  *
5854  * @param argc number of arguments from the command line
5855  * @param argv command line arguments
5856  * @return 0 ok, 1 on error
5857  */
5858 int
5859 main (int argc, char *const *argv)
5860 {
5861   int ret;
5862   int r;
5863
5864   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "main()\n");
5865   r = GNUNET_SERVICE_run (argc, argv, "mesh", GNUNET_SERVICE_OPTION_NONE, &run,
5866                           NULL);
5867   ret = (GNUNET_OK == r) ? 0 : 1;
5868   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "main() END\n");
5869
5870   INTERVAL_SHOW;
5871
5872   return ret;
5873 }