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