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