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