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