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