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