- allow loopback
[oweals/gnunet.git] / src / mesh / gnunet-service-mesh.c
1 /*
2      This file is part of GNUnet.
3      (C) 2001 - 2011 Christian Grothoff (and other contributing authors)
4
5      GNUnet is free software; you can redistribute it and/or modify
6      it under the terms of the GNU General Public License as published
7      by the Free Software Foundation; either version 3, or (at your
8      option) any later version.
9
10      GNUnet is distributed in the hope that it will be useful, but
11      WITHOUT ANY WARRANTY; without even the implied warranty of
12      MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13      General Public License for more details.
14
15      You should have received a copy of the GNU General Public License
16      along with GNUnet; see the file COPYING.  If not, write to the
17      Free Software Foundation, Inc., 59 Temple Place - Suite 330,
18      Boston, MA 02111-1307, USA.
19 */
20
21 /**
22  * @file mesh/gnunet-service-mesh.c
23  * @brief GNUnet MESH service
24  * @author Bartlomiej Polot
25  *
26  * STRUCTURE:
27  * - DATA STRUCTURES
28  * - GLOBAL VARIABLES
29  * - GENERAL HELPERS
30  * - PERIODIC FUNCTIONS
31  * - MESH NETWORK HANDLER HELPERS
32  * - MESH NETWORK HANDLES
33  * - MESH LOCAL HANDLER HELPERS
34  * - MESH LOCAL HANDLES
35  * - MAIN FUNCTIONS (main & run)
36  *
37  * TODO:
38  * - error reporting (CREATE/CHANGE/ADD/DEL?) -- new message!
39  * - partial disconnect reporting -- same as error reporting?
40  * - add vs create? change vs. keep-alive? same msg or different ones? -- thinking...
41  * - speed requirement specification (change?) in mesh API -- API call
42  * - add ping message
43  * - relay corking down to core
44  * - set ttl relative to tree depth
45  * TODO END
46  */
47
48 #include "platform.h"
49 #include "mesh.h"
50 #include "mesh_protocol.h"
51 #include "mesh_tunnel_tree.h"
52 #include "block_mesh.h"
53 #include "mesh_block_lib.h"
54 #include "gnunet_dht_service.h"
55 #include "gnunet_statistics_service.h"
56 #include "gnunet_regex_lib.h"
57
58 #define MESH_BLOOM_SIZE         128
59
60 #define MESH_DEBUG_DHT          GNUNET_YES
61 #define MESH_DEBUG_CONNECTION   GNUNET_NO
62
63 #if MESH_DEBUG_CONNECTION
64 #define DEBUG_CONN(...) GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, __VA_ARGS__)
65 #else
66 #define DEBUG_CONN(...)
67 #endif
68
69 #if MESH_DEBUG_DHT
70 #define DEBUG_DHT(...) GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, __VA_ARGS__)
71 #else
72 #define DEBUG_DHT(...)
73 #endif
74
75 /******************************************************************************/
76 /************************      DATA STRUCTURES     ****************************/
77 /******************************************************************************/
78
79 /** FWD declaration */
80 struct MeshPeerInfo;
81
82
83 /**
84  * Struct representing a piece of data being sent to other peers
85  */
86 struct MeshData
87 {
88   /** Tunnel it belongs to. */
89   struct MeshTunnel *t;
90
91   /** In case of a multicast, task to allow a client to send more data if
92    * some neighbor is too slow. */
93   GNUNET_SCHEDULER_TaskIdentifier *task;
94
95   /** How many remaining neighbors we need to send this to. */
96   unsigned int *reference_counter;
97
98   /** Size of the data. */
99   size_t data_len;
100
101   /** Data itself */
102   void *data;
103 };
104
105
106 /**
107  * Struct containing info about a queued transmission to this peer
108  */
109 struct MeshPeerQueue
110 {
111     /**
112       * DLL next
113       */
114   struct MeshPeerQueue *next;
115
116     /**
117       * DLL previous
118       */
119   struct MeshPeerQueue *prev;
120
121     /**
122      * Peer this transmission is directed to.
123      */
124   struct MeshPeerInfo *peer;
125
126     /**
127      * Tunnel this message belongs to.
128      */
129   struct MeshTunnel *tunnel;
130
131     /**
132      * Pointer to info stucture used as cls.
133      */
134   void *cls;
135
136     /**
137      * Type of message
138      */
139   uint16_t type;
140
141     /**
142      * Size of the message
143      */
144   size_t size;
145 };
146
147
148 /**
149  * Struct containing all info possibly needed to build a package when called
150  * back by core.
151  */
152 struct MeshTransmissionDescriptor
153 {
154     /** ID of the tunnel this packet travels in */
155   struct MESH_TunnelID *origin;
156
157     /** Who was this message being sent to */
158   struct MeshPeerInfo *peer;
159
160     /** Ultimate destination of the packet */
161   GNUNET_PEER_Id destination;
162
163     /** Data descriptor */
164   struct MeshData* mesh_data;
165 };
166
167
168 /**
169  * Struct containing all information regarding a given peer
170  */
171 struct MeshPeerInfo
172 {
173     /**
174      * ID of the peer
175      */
176   GNUNET_PEER_Id id;
177
178     /**
179      * Last time we heard from this peer
180      */
181   struct GNUNET_TIME_Absolute last_contact;
182
183     /**
184      * Number of attempts to reconnect so far
185      */
186   int n_reconnect_attempts;
187
188     /**
189      * Paths to reach the peer, ordered by ascending hop count
190      */
191   struct MeshPeerPath *path_head;
192
193     /**
194      * Paths to reach the peer, ordered by ascending hop count
195      */
196   struct MeshPeerPath *path_tail;
197
198     /**
199      * Handle to stop the DHT search for a path to this peer
200      */
201   struct GNUNET_DHT_GetHandle *dhtget;
202
203     /**
204      * Closure given to the DHT GET
205      */
206   struct MeshPathInfo *dhtgetcls;
207
208     /**
209      * Array of tunnels this peer participates in
210      * (most probably a small amount, therefore not a hashmap)
211      * When the path to the peer changes, notify these tunnels to let them
212      * re-adjust their path trees.
213      */
214   struct MeshTunnel **tunnels;
215
216     /**
217      * Number of tunnels this peers participates in
218      */
219   unsigned int ntunnels;
220
221    /**
222     * Transmission queue to core DLL head
223     */
224   struct MeshPeerQueue *queue_head;
225
226    /**
227     * Transmission queue to core DLL tail
228     */
229    struct MeshPeerQueue *queue_tail;
230
231    /**
232     * How many messages are in the queue to this peer.
233     */
234    unsigned int queue_n;
235
236    /**
237     * Handle to for queued transmissions
238     */
239   struct GNUNET_CORE_TransmitHandle *core_transmit;
240 };
241
242
243 /**
244  * Globally unique tunnel identification (owner + number)
245  * DO NOT USE OVER THE NETWORK
246  */
247 struct MESH_TunnelID
248 {
249     /**
250      * Node that owns the tunnel
251      */
252   GNUNET_PEER_Id oid;
253
254     /**
255      * Tunnel number to differentiate all the tunnels owned by the node oid
256      * ( tid < GNUNET_MESH_LOCAL_TUNNEL_ID_CLI )
257      */
258   MESH_TunnelNumber tid;
259 };
260
261
262 struct MeshClient;              /* FWD declaration */
263
264 /**
265  * Struct containing all information regarding a tunnel
266  * For an intermediate node the improtant info used will be:
267  * - id        Tunnel unique identification
268  * - paths[0]  To know where to send it next
269  * - metainfo: ready, speeds, accounting
270  */
271 struct MeshTunnel
272 {
273     /**
274      * Tunnel ID
275      */
276   struct MESH_TunnelID id;
277
278     /**
279      * Local tunnel number ( >= GNUNET_MESH_LOCAL_TUNNEL_ID_CLI or 0 )
280      */
281   MESH_TunnelNumber local_tid;
282
283     /**
284      * Local tunnel number for local destination clients (incoming number)
285      * ( >= GNUNET_MESH_LOCAL_TUNNEL_ID_SERV or 0). All clients share the same
286      * number.
287      */
288   MESH_TunnelNumber local_tid_dest;
289
290     /**
291      * Local count ID of the last packet seen/sent.
292      */
293   uint32_t pid;
294
295     /**
296      * SKIP value for this tunnel.
297      */
298   uint32_t skip;
299
300     /**
301      * MeshTunnelChildInfo of all children, indexed by GNUNET_PEER_Id.
302      */
303   struct GNUNET_CONTAINER_MultiHashMap *children_fc;
304
305     /**
306      * Last ACK.
307      */
308   uint32_t last_ack;
309
310     /**
311      * Maximum child ACK.
312      */
313   uint32_t max_child_ack;
314
315     /**
316      * How many messages are in the queue.
317      */
318   unsigned int queue_n;
319
320     /**
321      * How many messages do we accept in the queue.
322      */
323   unsigned int queue_max;
324
325     /**
326      * Is the speed on the tunnel limited to the slowest peer?
327      */
328   int speed_min;
329
330     /**
331      * Is the tunnel bufferless (minimum latency)?
332      */
333   int nobuffer;
334
335     /**
336      * Flag to signal the destruction of the tunnel.
337      * If this is set GNUNET_YES the tunnel will be destroyed
338      * when the queue is empty.
339      */
340   int destroy;
341
342     /**
343      * Last time the tunnel was used
344      */
345   struct GNUNET_TIME_Absolute timestamp;
346
347     /**
348      * Peers in the tunnel, indexed by PeerIdentity -> (MeshPeerInfo)
349      * containing peers added by id or by type, not intermediate peers.
350      */
351   struct GNUNET_CONTAINER_MultiHashMap *peers;
352
353     /**
354      * Number of peers that are connected and potentially ready to receive data
355      */
356   unsigned int peers_ready;
357
358     /**
359      * Number of peers that have been added to the tunnel
360      */
361   unsigned int peers_total;
362
363     /**
364      * Client owner of the tunnel, if any
365      */
366   struct MeshClient *owner;
367
368     /**
369      * Clients that have been informed about the tunnel, if any
370      */
371   struct MeshClient **clients;
372
373     /**
374      * Number of elements in clients
375      */
376   unsigned int nclients;
377
378     /**
379      * Clients that have requested to leave the tunnel
380      */
381   struct MeshClient **ignore;
382
383     /**
384      * Number of elements in clients
385      */
386   unsigned int nignore;
387
388     /**
389      * Blacklisted peers
390      */
391   GNUNET_PEER_Id *blacklisted;
392
393     /**
394      * Number of elements in blacklisted
395      */
396   unsigned int nblacklisted;
397
398   /**
399    * Bloomfilter (for peer identities) to stop circular routes
400    */
401   char bloomfilter[MESH_BLOOM_SIZE];
402
403   /**
404    * Tunnel paths
405    */
406   struct MeshTunnelTree *tree;
407
408   /**
409    * Application type we are looking for in this tunnel
410    */
411   GNUNET_MESH_ApplicationType type;
412
413     /**
414      * Used to search peers offering a service
415      */
416   struct GNUNET_DHT_GetHandle *dht_get_type;
417
418     /**
419      * Initial context of the regex search for a connect_by_string
420      */
421   struct MeshRegexSearchContext *regex_ctx;
422
423   /**
424    * Task to keep the used paths alive
425    */
426   GNUNET_SCHEDULER_TaskIdentifier path_refresh_task;
427
428   /**
429    * Task to destroy the tunnel after timeout
430    *
431    * FIXME: merge the two? a tunnel will have either
432    * a path refresh OR a timeout, never both!
433    */
434   GNUNET_SCHEDULER_TaskIdentifier timeout_task;
435 };
436
437
438 /**
439  * Info about a child node in a tunnel, needed to perform flow control.
440  */
441 struct MeshTunnelChildInfo
442 {
443     /**
444      * ID of the child node.
445      */
446   GNUNET_PEER_Id id;
447
448     /**
449      * SKIP value
450      */
451   uint32_t skip;
452
453     /**
454      * Last sent PID.
455      */
456   uint32_t pid;
457
458     /**
459      * Maximum PID allowed.
460      */
461   uint32_t max_pid;
462 };
463
464 /**
465  * Info needed to work with tunnel paths and peers
466  */
467 struct MeshPathInfo
468 {
469   /**
470    * Tunnel
471    */
472   struct MeshTunnel *t;
473
474   /**
475    * Neighbouring peer to whom we send the packet to
476    */
477   struct MeshPeerInfo *peer;
478
479   /**
480    * Path itself
481    */
482   struct MeshPeerPath *path;
483 };
484
485
486 /**
487  * Struct containing information about a client of the service
488  */
489 struct MeshClient
490 {
491     /**
492      * Linked list next
493      */
494   struct MeshClient *next;
495
496     /**
497      * Linked list prev
498      */
499   struct MeshClient *prev;
500
501     /**
502      * Tunnels that belong to this client, indexed by local id
503      */
504   struct GNUNET_CONTAINER_MultiHashMap *own_tunnels;
505
506    /**
507      * Tunnels this client has accepted, indexed by incoming local id
508      */
509   struct GNUNET_CONTAINER_MultiHashMap *incoming_tunnels;
510
511    /**
512      * Tunnels this client has rejected, indexed by incoming local id
513      */
514   struct GNUNET_CONTAINER_MultiHashMap *ignore_tunnels;
515     /**
516      * Handle to communicate with the client
517      */
518   struct GNUNET_SERVER_Client *handle;
519
520     /**
521      * Applications that this client has claimed to provide
522      */
523   struct GNUNET_CONTAINER_MultiHashMap *apps;
524
525     /**
526      * Messages that this client has declared interest in
527      */
528   struct GNUNET_CONTAINER_MultiHashMap *types;
529
530     /**
531      * Whether the client is active or shutting down (don't send confirmations
532      * to a client that is shutting down.
533      */
534   int shutting_down;
535
536     /**
537      * ID of the client, mainly for debug messages
538      */
539   unsigned int id;
540   
541     /**
542      * Regular expressions describing the services offered by this client.
543      */
544   char **regexes; // FIXME add timeout? API to remove a regex?
545
546     /**
547      * Number of regular expressions in regexes.
548      */
549   unsigned int n_regex;
550
551     /**
552      * Task to refresh all regular expresions in the DHT.
553      */
554   GNUNET_SCHEDULER_TaskIdentifier regex_announce_task;
555
556 };
557
558
559 /**
560  * Struct to keep information of searches of services described by a regex
561  * using a user-provided string service description.
562  */
563 struct MeshRegexSearchInfo
564 {
565     /**
566      * Which tunnel is this for
567      */
568   struct MeshTunnel *t;
569
570     /**
571      * User provided description of the searched service.
572      */
573   char *description;
574
575     /**
576      * Part of the description already consumed by the search.
577      */
578   size_t position;
579
580     /**
581      * Running DHT GETs.
582      */
583   struct GNUNET_CONTAINER_MultiHashMap *dht_get_handles;
584
585     /**
586      * Results from running DHT GETs.
587      */
588   struct GNUNET_CONTAINER_MultiHashMap *dht_get_results;
589
590     /**
591      * Contexts, for each running DHT GET. Free all on end of search.
592      */
593   struct MeshRegexSearchContext **contexts;
594
595     /**
596      * Number of contexts (branches/steps in search).
597      */
598   unsigned int n_contexts;
599
600     /**
601      * Peer that is connecting via connect_by_string. When connected, free ctx.
602      */
603   GNUNET_PEER_Id peer;
604
605     /**
606      * Other peers that are found but not yet being connected to.
607      */
608   GNUNET_PEER_Id *peers;
609
610     /**
611      * Number of elements in peers.
612      */
613   unsigned int n_peers;
614
615     /**
616      * Next peer to try to connect to.
617      */
618   unsigned int i_peer;
619
620     /**
621      * Timeout for a connect attempt.
622      * When reached, try to connect to a different peer, if any. If not,
623      * try the same peer again.
624      */
625   GNUNET_SCHEDULER_TaskIdentifier timeout;
626
627 };
628
629 /**
630  * Struct to keep state of running searches that have consumed a part of
631  * the inital string.
632  */
633 struct MeshRegexSearchContext
634 {
635     /**
636      * Part of the description already consumed by
637      * this particular search branch.
638      */
639   size_t position;
640
641     /**
642      * Information about the search.
643      */
644   struct MeshRegexSearchInfo *info;
645
646 };
647
648 /******************************************************************************/
649 /************************      DEBUG FUNCTIONS     ****************************/
650 /******************************************************************************/
651
652 #if MESH_DEBUG
653 /**
654  * GNUNET_SCHEDULER_Task for printing a message after some operation is done
655  * @param cls string to print
656  * @param success  GNUNET_OK if the PUT was transmitted,
657  *                GNUNET_NO on timeout,
658  *                GNUNET_SYSERR on disconnect from service
659  *                after the PUT message was transmitted
660  *                (so we don't know if it was received or not)
661  */
662
663 #if 0
664 static void
665 mesh_debug (void *cls, int success)
666 {
667   char *s = cls;
668
669   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "%s (%d)\n", s, success);
670 }
671 #endif
672
673 #endif
674
675 /******************************************************************************/
676 /***********************      GLOBAL VARIABLES     ****************************/
677 /******************************************************************************/
678
679
680 /**
681  * Configuration parameters
682  */
683 static struct GNUNET_TIME_Relative refresh_path_time;
684 static struct GNUNET_TIME_Relative app_announce_time;
685 static struct GNUNET_TIME_Relative id_announce_time;
686 static struct GNUNET_TIME_Relative unacknowledged_wait_time;
687 static struct GNUNET_TIME_Relative connect_timeout;
688 static long long unsigned int default_ttl;
689 static long long unsigned int dht_replication_level;
690 static long long unsigned int max_tunnels;
691 static long long unsigned int max_msgs_queue;
692
693 /**
694  * DLL with all the clients, head.
695  */
696 static struct MeshClient *clients;
697
698 /**
699  * DLL with all the clients, tail.
700  */
701 static struct MeshClient *clients_tail;
702
703 /**
704  * Tunnels known, indexed by MESH_TunnelID (MeshTunnel).
705  */
706 static struct GNUNET_CONTAINER_MultiHashMap *tunnels;
707
708 /**
709  * Number of tunnels known.
710  */
711 static unsigned long long n_tunnels;
712
713 /**
714  * Tunnels incoming, indexed by MESH_TunnelNumber
715  * (which is greater than GNUNET_MESH_LOCAL_TUNNEL_ID_SERV).
716  */
717 static struct GNUNET_CONTAINER_MultiHashMap *incoming_tunnels;
718
719 /**
720  * Peers known, indexed by PeerIdentity (MeshPeerInfo).
721  */
722 static struct GNUNET_CONTAINER_MultiHashMap *peers;
723
724 /*
725  * Handle to communicate with transport
726  */
727 // static struct GNUNET_TRANSPORT_Handle *transport_handle;
728
729 /**
730  * Handle to communicate with core.
731  */
732 static struct GNUNET_CORE_Handle *core_handle;
733
734 /**
735  * Handle to use DHT.
736  */
737 static struct GNUNET_DHT_Handle *dht_handle;
738
739 /**
740  * Handle to server.
741  */
742 static struct GNUNET_SERVER_Handle *server_handle;
743
744 /**
745  * Handle to the statistics service.
746  */
747 static struct GNUNET_STATISTICS_Handle *stats;
748
749 /**
750  * Notification context, to send messages to local clients.
751  */
752 static struct GNUNET_SERVER_NotificationContext *nc;
753
754 /**
755  * Local peer own ID (memory efficient handle).
756  */
757 static GNUNET_PEER_Id myid;
758
759 /**
760  * Local peer own ID (full value).
761  */
762 static struct GNUNET_PeerIdentity my_full_id;
763
764 /**
765  * Own private key.
766  */
767 static struct GNUNET_CRYPTO_RsaPrivateKey *my_private_key;
768
769 /**
770  * Own public key.
771  */
772 static struct GNUNET_CRYPTO_RsaPublicKeyBinaryEncoded my_public_key;
773
774 /**
775  * Tunnel ID for the next created tunnel (global tunnel number).
776  */
777 static MESH_TunnelNumber next_tid;
778
779 /**
780  * Tunnel ID for the next incoming tunnel (local tunnel number).
781  */
782 static MESH_TunnelNumber next_local_tid;
783
784 /**
785  * All application types provided by this peer.
786  */
787 static struct GNUNET_CONTAINER_MultiHashMap *applications;
788
789 /**
790  * All message types clients of this peer are interested in.
791  */
792 static struct GNUNET_CONTAINER_MultiHashMap *types;
793
794 /**
795  * Task to periodically announce provided applications.
796  */
797 GNUNET_SCHEDULER_TaskIdentifier announce_applications_task;
798
799 /**
800  * Task to periodically announce itself in the network.
801  */
802 GNUNET_SCHEDULER_TaskIdentifier announce_id_task;
803
804 /**
805  * Next ID to assign to a client.
806  */
807 unsigned int next_client_id;
808
809
810 /******************************************************************************/
811 /***********************         DECLARATIONS        **************************/
812 /******************************************************************************/
813
814 /* FIXME move declarations here */
815
816 /**
817  * Function to process paths received for a new peer addition. The recorded
818  * paths form the initial tunnel, which can be optimized later.
819  * Called on each result obtained for the DHT search.
820  *
821  * @param cls closure
822  * @param exp when will this value expire
823  * @param key key of the result
824  * @param type type of the result
825  * @param size number of bytes in data
826  * @param data pointer to the result data
827  */
828 static void
829 dht_get_id_handler (void *cls, struct GNUNET_TIME_Absolute exp,
830                     const struct GNUNET_HashCode * key,
831                     const struct GNUNET_PeerIdentity *get_path,
832                     unsigned int get_path_length,
833                     const struct GNUNET_PeerIdentity *put_path,
834                     unsigned int put_path_length, enum GNUNET_BLOCK_Type type,
835                     size_t size, const void *data);
836
837
838 /**
839  * Function to process DHT string to regex matching.
840  * Called on each result obtained for the DHT search.
841  *
842  * @param cls closure (search context)
843  * @param exp when will this value expire
844  * @param key key of the result
845  * @param get_path path of the get request (not used)
846  * @param get_path_length lenght of get_path (not used)
847  * @param put_path path of the put request (not used)
848  * @param put_path_length length of the put_path (not used)
849  * @param type type of the result
850  * @param size number of bytes in data
851  * @param data pointer to the result data
852  *
853  * TODO: re-issue the request after certain time? cancel after X results?
854  */
855 static void
856 dht_get_string_handler (void *cls, struct GNUNET_TIME_Absolute exp,
857                         const struct GNUNET_HashCode * key,
858                         const struct GNUNET_PeerIdentity *get_path,
859                         unsigned int get_path_length,
860                         const struct GNUNET_PeerIdentity *put_path,
861                         unsigned int put_path_length, enum GNUNET_BLOCK_Type type,
862                         size_t size, const void *data);
863
864
865 /**
866  * Function to process DHT string to regex matching.
867  * Called on each result obtained for the DHT search.
868  *
869  * @param cls closure (search context)
870  * @param exp when will this value expire
871  * @param key key of the result
872  * @param get_path path of the get request (not used)
873  * @param get_path_length lenght of get_path (not used)
874  * @param put_path path of the put request (not used)
875  * @param put_path_length length of the put_path (not used)
876  * @param type type of the result
877  * @param size number of bytes in data
878  * @param data pointer to the result data
879  */
880 static void
881 dht_get_string_accept_handler (void *cls, struct GNUNET_TIME_Absolute exp,
882                                const struct GNUNET_HashCode * key,
883                                const struct GNUNET_PeerIdentity *get_path,
884                                unsigned int get_path_length,
885                                const struct GNUNET_PeerIdentity *put_path,
886                                unsigned int put_path_length,
887                                enum GNUNET_BLOCK_Type type,
888                                size_t size, const void *data);
889
890
891 /**
892  * Retrieve the MeshPeerInfo stucture associated with the peer, create one
893  * and insert it in the appropiate structures if the peer is not known yet.
894  *
895  * @param peer Short identity of the peer.
896  *
897  * @return Existing or newly created peer info.
898  */
899 static struct MeshPeerInfo *
900 peer_info_get_short (const GNUNET_PEER_Id peer);
901
902
903 /**
904  * Try to establish a new connection to this peer.
905  * Use the best path for the given tunnel.
906  * If the peer doesn't have any path to it yet, try to get one.
907  * If the peer already has some path, send a CREATE PATH towards it.
908  *
909  * @param peer PeerInfo of the peer.
910  * @param t Tunnel for which to create the path, if possible.
911  */
912 static void
913 peer_info_connect (struct MeshPeerInfo *peer, struct MeshTunnel *t);
914
915
916 /**
917  * Add a peer to a tunnel, accomodating paths accordingly and initializing all
918  * needed rescources.
919  * If peer already exists, reevaluate shortest path and change if different.
920  *
921  * @param t Tunnel we want to add a new peer to
922  * @param peer PeerInfo of the peer being added
923  *
924  */
925 static void
926 tunnel_add_peer (struct MeshTunnel *t, struct MeshPeerInfo *peer);
927
928
929 /**
930  * Removes an explicit path from a tunnel, freeing all intermediate nodes
931  * that are no longer needed, as well as nodes of no longer reachable peers.
932  * The tunnel itself is also destoyed if results in a remote empty tunnel.
933  *
934  * @param t Tunnel from which to remove the path.
935  * @param peer Short id of the peer which should be removed.
936  */
937 static void
938 tunnel_delete_peer (struct MeshTunnel *t, GNUNET_PEER_Id peer);
939
940
941 /**
942  * Search for a tunnel by global ID using full PeerIdentities.
943  *
944  * @param oid owner of the tunnel.
945  * @param tid global tunnel number.
946  *
947  * @return tunnel handler, NULL if doesn't exist.
948  */
949 static struct MeshTunnel *
950 tunnel_get (struct GNUNET_PeerIdentity *oid, MESH_TunnelNumber tid);
951
952
953 /**
954  * Delete an active client from the tunnel.
955  *
956  * @param t Tunnel.
957  * @param c Client.
958  */
959 static void
960 tunnel_delete_active_client (struct MeshTunnel *t, const struct MeshClient *c);
961
962 /**
963  * Notify a tunnel that a connection has broken that affects at least
964  * some of its peers.
965  *
966  * @param t Tunnel affected.
967  * @param p1 Peer that got disconnected from p2.
968  * @param p2 Peer that got disconnected from p1.
969  *
970  * @return Short ID of the peer disconnected (either p1 or p2).
971  *         0 if the tunnel remained unaffected.
972  */
973 static GNUNET_PEER_Id
974 tunnel_notify_connection_broken (struct MeshTunnel *t, GNUNET_PEER_Id p1,
975                                  GNUNET_PEER_Id p2);
976
977
978 /**
979  * Get the current ack value for a tunnel, taking in account the tunnel
980  * mode and the status of all children nodes.
981  *
982  * @param t Tunnel.
983  *
984  * @return Maximum PID allowed.
985  */
986 static uint32_t
987 tunnel_get_ack (struct MeshTunnel *t);
988
989
990 /**
991  * Iterator over edges in a regex block retrieved from the DHT.
992  *
993  * @param cls Closure.
994  * @param token Token that follows to next state.
995  * @param len Lenght of token.
996  * @param key Hash of next state.
997  *
998  * @return GNUNET_YES if should keep iterating, GNUNET_NO otherwise.
999  */
1000 static int
1001 regex_edge_iterator (void *cls,
1002                      const char *token,
1003                      size_t len,
1004                      const struct GNUNET_HashCode *key);
1005
1006
1007 /**
1008  * Find a path to a peer that offers a regex servcie compatible
1009  * with a given string.
1010  * 
1011  * @param key The key of the accepting state.
1012  * @param ctx Context containing info about the string, tunnel, etc.
1013  */
1014 static void
1015 regex_find_path (const struct GNUNET_HashCode *key,
1016                  struct MeshRegexSearchContext *ctx);
1017
1018
1019 /**
1020  * Queue and pass message to core when possible.
1021  *
1022  * @param cls Closure (type dependant).
1023  * @param type Type of the message, 0 for a raw message.
1024  * @param size Size of the message.
1025  * @param dst Neighbor to send message to.
1026  * @param t Tunnel this message belongs to.
1027  */
1028 static void
1029 queue_add (void *cls, uint16_t type, size_t size,
1030            struct MeshPeerInfo *dst, struct MeshTunnel *t);
1031
1032 /**
1033  * Free a transmission that was already queued with all resources
1034  * associated to the request.
1035  *
1036  * @param queue Queue handler to cancel.
1037  * @param clear_cls Is it necessary to free associated cls?
1038  */
1039 static void
1040 queue_destroy (struct MeshPeerQueue *queue, int clear_cls);
1041
1042 /******************************************************************************/
1043 /************************         ITERATORS        ****************************/
1044 /******************************************************************************/
1045
1046 /**
1047  * Iterator over found existing mesh regex blocks that match an ongoing search.
1048  *
1049  * @param cls closure
1050  * @param key current key code
1051  * @param value value in the hash map
1052  * @return GNUNET_YES if we should continue to iterate,
1053  *         GNUNET_NO if not.
1054  */
1055 static int
1056 regex_result_iterator (void *cls,
1057                        const struct GNUNET_HashCode * key,
1058                        void *value)
1059 {
1060   struct MeshRegexBlock *block = value;
1061   struct MeshRegexSearchContext *ctx = cls;
1062
1063   if (GNUNET_YES == ntohl(block->accepting) &&
1064       ctx->position == strlen (ctx->info->description))
1065   {
1066     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "* Found accepting known block\n");
1067     regex_find_path (key, ctx);
1068     return GNUNET_YES; // We found an accept state!
1069   }
1070   else
1071   {
1072     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "* %u, %u, [%u]\n",
1073                 ctx->position, strlen(ctx->info->description),
1074                 ntohl(block->accepting));
1075
1076   }
1077   (void) GNUNET_MESH_regex_block_iterate (block, SIZE_MAX,
1078                                           &regex_edge_iterator, ctx);
1079
1080   return GNUNET_YES;
1081 }
1082
1083
1084 /**
1085  * Iterator over edges in a regex block retrieved from the DHT.
1086  *
1087  * @param cls Closure (context of the search).
1088  * @param token Token that follows to next state.
1089  * @param len Lenght of token.
1090  * @param key Hash of next state.
1091  *
1092  * @return GNUNET_YES if should keep iterating, GNUNET_NO otherwise.
1093  */
1094 static int
1095 regex_edge_iterator (void *cls,
1096                      const char *token,
1097                      size_t len,
1098                      const struct GNUNET_HashCode *key)
1099 {
1100   struct MeshRegexSearchContext *ctx = cls;
1101   struct MeshRegexSearchContext *new_ctx;
1102   struct MeshRegexSearchInfo *info = ctx->info;
1103   struct GNUNET_DHT_GetHandle *get_h;
1104   char *current;
1105   size_t current_len;
1106
1107   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "*    Start of regex edge iterator\n");
1108   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "*     descr : %s\n", info->description);
1109   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "*     posit : %u\n", ctx->position);
1110   current = &info->description[ctx->position];
1111   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "*     currt : %s\n", current);
1112   current_len = strlen (info->description) - ctx->position;
1113   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "*     ctlen : %u\n", current_len);
1114   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "*     tklen : %u\n", len);
1115   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "*     tk[0] : %c\n", token[0]);
1116   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "*     nextk : %s\n", GNUNET_h2s(key));
1117   if (len > current_len)
1118   {
1119     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "*     Token too long, END\n");
1120     return GNUNET_YES; // Token too long, wont match
1121   }
1122   if (0 != strncmp (current, token, len))
1123   {
1124     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "*     Token doesn't match, END\n");
1125     return GNUNET_YES; // Token doesn't match
1126   }
1127   new_ctx = GNUNET_malloc (sizeof (struct MeshRegexSearchContext));
1128   new_ctx->info = info;
1129   new_ctx->position = ctx->position + len;
1130   GNUNET_array_append (info->contexts, info->n_contexts, new_ctx);
1131   if (GNUNET_YES ==
1132       GNUNET_CONTAINER_multihashmap_contains(info->dht_get_handles, key))
1133   {
1134     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "*     GET running, END\n");
1135     GNUNET_CONTAINER_multihashmap_get_multiple (info->dht_get_results, key,
1136                                                 &regex_result_iterator,
1137                                                 new_ctx);
1138     return GNUNET_YES; // We are already looking for it
1139   }
1140   /* Start search in DHT */
1141   get_h = 
1142       GNUNET_DHT_get_start (dht_handle,    /* handle */
1143                             GNUNET_BLOCK_TYPE_MESH_REGEX, /* type */
1144                             key,     /* key to search */
1145                             dht_replication_level, /* replication level */
1146                             GNUNET_DHT_RO_DEMULTIPLEX_EVERYWHERE,
1147                             NULL,       /* xquery */ // FIXME BLOOMFILTER
1148                             0,     /* xquery bits */ // FIXME BLOOMFILTER SIZE
1149                             &dht_get_string_handler, new_ctx);
1150   if (GNUNET_OK !=
1151       GNUNET_CONTAINER_multihashmap_put(info->dht_get_handles, key, get_h,
1152                                         GNUNET_CONTAINER_MULTIHASHMAPOPTION_UNIQUE_FAST))
1153   {
1154     GNUNET_break (0);
1155     return GNUNET_YES;
1156   }
1157   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "*    End of regex edge iterator\n");
1158   return GNUNET_YES;
1159 }
1160
1161 /**
1162  * Iterator over hash map entries to cancel DHT GET requests after a
1163  * successful connect_by_string.
1164  *
1165  * @param cls Closure (unused).
1166  * @param key Current key code (unused).
1167  * @param value Value in the hash map (get handle).
1168  * @return GNUNET_YES if we should continue to iterate,
1169  *         GNUNET_NO if not.
1170  */
1171 static int
1172 regex_cancel_dht_get (void *cls,
1173                       const struct GNUNET_HashCode * key,
1174                       void *value)
1175 {
1176   struct GNUNET_DHT_GetHandle *h = value;
1177
1178   GNUNET_DHT_get_stop (h);
1179   return GNUNET_YES;
1180 }
1181
1182
1183 /**
1184  * Iterator over hash map entries to free MeshRegexBlocks stored during the
1185  * search for connect_by_string.
1186  *
1187  * @param cls Closure (unused).
1188  * @param key Current key code (unused).
1189  * @param value MeshRegexBlock in the hash map.
1190  * @return GNUNET_YES if we should continue to iterate,
1191  *         GNUNET_NO if not.
1192  */
1193 static int
1194 regex_free_result (void *cls,
1195                    const struct GNUNET_HashCode * key,
1196                    void *value)
1197 {
1198
1199   GNUNET_free (value);
1200   return GNUNET_YES;
1201 }
1202
1203
1204 /**
1205  * Regex callback iterator to store own service description in the DHT.
1206  *
1207  * @param cls closure.
1208  * @param key hash for current state.
1209  * @param proof proof for current state.
1210  * @param accepting GNUNET_YES if this is an accepting state, GNUNET_NO if not.
1211  * @param num_edges number of edges leaving current state.
1212  * @param edges edges leaving current state.
1213  */
1214 void
1215 regex_iterator (void *cls, const struct GNUNET_HashCode *key, const char *proof,
1216                 int accepting, unsigned int num_edges,
1217                 const struct GNUNET_REGEX_Edge *edges)
1218 {
1219     struct MeshRegexBlock *block;
1220     struct MeshRegexEdge *block_edge;
1221     enum GNUNET_DHT_RouteOption opt;
1222     size_t size;
1223     size_t len;
1224     unsigned int i;
1225     unsigned int offset;
1226     char *aux;
1227
1228     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1229                 "  regex dht put for state %s\n",
1230                 GNUNET_h2s(key));
1231     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1232                 "   proof: %s\n",
1233                 proof);
1234     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1235                 "   num edges: %u\n",
1236                 num_edges);
1237
1238     opt = GNUNET_DHT_RO_DEMULTIPLEX_EVERYWHERE;
1239     if (GNUNET_YES == accepting)
1240     {
1241         struct MeshRegexAccept block;
1242
1243         GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1244                     "   state %s is accepting, putting own id\n",
1245                     GNUNET_h2s(key));
1246         size = sizeof (block);
1247         block.key = *key;
1248         block.id = my_full_id;
1249         (void)
1250         GNUNET_DHT_put(dht_handle, key,
1251                        dht_replication_level,
1252                        opt | GNUNET_DHT_RO_RECORD_ROUTE,
1253                        GNUNET_BLOCK_TYPE_MESH_REGEX_ACCEPT,
1254                        size,
1255                        (char *) &block,
1256                        GNUNET_TIME_absolute_add (GNUNET_TIME_absolute_get (),
1257                                                  app_announce_time),
1258                        app_announce_time,
1259                        NULL, NULL);
1260     }
1261     len = strlen(proof);
1262     size = sizeof (struct MeshRegexBlock) + len;
1263     block = GNUNET_malloc (size);
1264
1265     block->key = *key;
1266     block->n_proof = htonl (len);
1267     block->n_edges = htonl (num_edges);
1268     block->accepting = htonl (accepting);
1269
1270     /* Store the proof at the end of the block. */
1271     aux = (char *) &block[1];
1272     memcpy (aux, proof, len);
1273     aux = &aux[len];
1274
1275     /* Store each edge in a variable length MeshEdge struct at the
1276      * very end of the MeshRegexBlock structure.
1277      */
1278     for (i = 0; i < num_edges; i++)
1279     {
1280         GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1281                     "    edge %s towards %s\n",
1282                     edges[i].label,
1283                     GNUNET_h2s(&edges[i].destination));
1284
1285         /* aux points at the end of the last block */
1286         len = strlen (edges[i].label);
1287         size += sizeof (struct MeshRegexEdge) + len;
1288         // Calculate offset FIXME is this ok? use size instead?
1289         offset = aux - (char *) block;
1290         block = GNUNET_realloc (block, size);
1291         aux = &((char *) block)[offset];
1292         block_edge = (struct MeshRegexEdge *) aux;
1293         block_edge->key = edges[i].destination;
1294         block_edge->n_token = htonl (len);
1295         aux = (char *) &block_edge[1];
1296         memcpy (aux, edges[i].label, len);
1297         aux = &aux[len];
1298     }
1299     (void)
1300     GNUNET_DHT_put(dht_handle, key,
1301                    dht_replication_level,
1302                    opt,
1303                    GNUNET_BLOCK_TYPE_MESH_REGEX, size,
1304                    (char *) block,
1305                    GNUNET_TIME_absolute_add (GNUNET_TIME_absolute_get (),
1306                                             app_announce_time),
1307                    app_announce_time,
1308                    NULL, NULL);
1309     GNUNET_free (block);
1310 }
1311
1312
1313 /**
1314  * Store the regular expression describing a local service into the DHT.
1315  *
1316  * @param regex The regular expresion.
1317  */
1318 static void
1319 regex_put (const char *regex)
1320 {
1321   struct GNUNET_REGEX_Automaton *dfa;
1322
1323   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "regex_put (%s) start\n", regex);
1324   dfa = GNUNET_REGEX_construct_dfa (regex, strlen(regex));
1325   GNUNET_REGEX_iterate_all_edges (dfa, &regex_iterator, NULL);
1326   GNUNET_REGEX_automaton_destroy (dfa);
1327   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "regex_put (%s) end\n", regex);
1328
1329 }
1330
1331 /**
1332  * Find a path to a peer that offers a regex servcie compatible
1333  * with a given string.
1334  * 
1335  * @param key The key of the accepting state.
1336  * @param ctx Context containing info about the string, tunnel, etc.
1337  */
1338 static void
1339 regex_find_path (const struct GNUNET_HashCode *key,
1340                  struct MeshRegexSearchContext *ctx)
1341 {
1342   struct GNUNET_DHT_GetHandle *get_h;
1343
1344   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Found peer by service\n");
1345   get_h = GNUNET_DHT_get_start (dht_handle,    /* handle */
1346                                 GNUNET_BLOCK_TYPE_MESH_REGEX_ACCEPT, /* type */
1347                                 key,     /* key to search */
1348                                 dht_replication_level, /* replication level */
1349                                 GNUNET_DHT_RO_DEMULTIPLEX_EVERYWHERE |
1350                                 GNUNET_DHT_RO_RECORD_ROUTE,
1351                                 NULL,       /* xquery */ // FIXME BLOOMFILTER
1352                                 0,     /* xquery bits */ // FIXME BLOOMFILTER SIZE
1353                                 &dht_get_string_accept_handler, ctx);
1354   GNUNET_break (GNUNET_OK ==
1355                 GNUNET_CONTAINER_multihashmap_put(ctx->info->dht_get_handles,
1356                                                   key,
1357                                                   get_h,
1358                                                   GNUNET_CONTAINER_MULTIHASHMAPOPTION_MULTIPLE));
1359 }
1360
1361
1362 /**
1363  * Function called if the connect attempt to a peer found via
1364  * connect_by_string times out. Try to connect to another peer, if any.
1365  * Otherwise try to reconnect to the same peer.
1366  *
1367  * @param cls Closure (info about regex search).
1368  * @param tc TaskContext.
1369  */
1370 static void
1371 regex_connect_timeout (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
1372 {
1373   struct MeshRegexSearchInfo *info = cls;
1374   struct MeshPeerInfo *peer_info;
1375   GNUNET_PEER_Id id;
1376   GNUNET_PEER_Id old;
1377
1378   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Regex connect timeout\n");
1379   info->timeout = GNUNET_SCHEDULER_NO_TASK;
1380   if (0 != (tc->reason & GNUNET_SCHEDULER_REASON_SHUTDOWN))
1381   {
1382     return;
1383   }
1384
1385   old = info->peer;
1386   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  timed out: %u\n", old);
1387
1388   if (0 < info->n_peers)
1389   {
1390     // Select next peer, put current in that spot.
1391     id = info->peers[info->i_peer];
1392     info->peers[info->i_peer] = info->peer;
1393     info->i_peer = (info->i_peer + 1) % info->n_peers;
1394   }
1395   else
1396   {
1397     // Try to connect to same peer again.
1398     id = info->peer;
1399   }
1400   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  trying: %u\n", id);
1401
1402   peer_info = peer_info_get_short(id);
1403   tunnel_add_peer (info->t, peer_info);
1404   if (old != id)
1405     tunnel_delete_peer (info->t, old);
1406   peer_info_connect (peer_info, info->t);
1407   info->timeout = GNUNET_SCHEDULER_add_delayed (connect_timeout,
1408                                                 &regex_connect_timeout,
1409                                                 info);
1410   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Regex connect timeout END\n");
1411 }
1412
1413
1414 /**
1415  * Cancel an ongoing regex search in the DHT and free all resources.
1416  *
1417  * @param ctx The search context.
1418  */
1419 static void
1420 regex_cancel_search(struct MeshRegexSearchContext *ctx)
1421 {
1422   struct MeshRegexSearchInfo *info = ctx->info;
1423   int i;
1424
1425   GNUNET_free (info->description);
1426   GNUNET_CONTAINER_multihashmap_iterate (info->dht_get_handles,
1427                                              &regex_cancel_dht_get, NULL);
1428   GNUNET_CONTAINER_multihashmap_iterate (info->dht_get_results,
1429                                          &regex_free_result, NULL);
1430   GNUNET_CONTAINER_multihashmap_destroy (info->dht_get_results);
1431   GNUNET_CONTAINER_multihashmap_destroy (info->dht_get_handles);
1432   info->t->regex_ctx = NULL;
1433   for (i = 0; i < info->n_contexts; i++)
1434   {
1435     GNUNET_free (info->contexts[i]);
1436   }
1437   if (0 < info->n_contexts)
1438     GNUNET_free (info->contexts);
1439   if (0 < info->n_peers)
1440     GNUNET_free (info->peers);
1441   if (GNUNET_SCHEDULER_NO_TASK != info->timeout)
1442   {
1443     GNUNET_SCHEDULER_cancel(info->timeout);
1444   }
1445   GNUNET_free (info);
1446 }
1447
1448
1449 /******************************************************************************/
1450 /************************    PERIODIC FUNCTIONS    ****************************/
1451 /******************************************************************************/
1452
1453 /**
1454  * Announce iterator over for each application provided by the peer
1455  *
1456  * @param cls closure
1457  * @param key current key code
1458  * @param value value in the hash map
1459  * @return GNUNET_YES if we should continue to
1460  *         iterate,
1461  *         GNUNET_NO if not.
1462  */
1463 static int
1464 announce_application (void *cls, const struct GNUNET_HashCode * key, void *value)
1465 {
1466   struct PBlock block;
1467   struct MeshClient *c;
1468
1469   block.id = my_full_id;
1470   c =  GNUNET_CONTAINER_multihashmap_get (applications, key);
1471   block.type = (long) GNUNET_CONTAINER_multihashmap_get (c->apps, key);
1472   if (0 == block.type)
1473   {
1474     GNUNET_break(0);
1475     return GNUNET_YES;
1476   }
1477   block.type = htonl (block.type);
1478
1479   GNUNET_break (NULL != 
1480                 GNUNET_DHT_put (dht_handle, key,
1481                   dht_replication_level,
1482                   GNUNET_DHT_RO_RECORD_ROUTE |
1483                   GNUNET_DHT_RO_DEMULTIPLEX_EVERYWHERE,
1484                   GNUNET_BLOCK_TYPE_MESH_PEER_BY_TYPE,
1485                   sizeof (block),
1486                   (const char *) &block,
1487                   GNUNET_TIME_absolute_add (GNUNET_TIME_absolute_get (),
1488                                             app_announce_time),
1489                   app_announce_time, NULL, NULL));
1490   return GNUNET_OK;
1491 }
1492
1493
1494 /**
1495  * Periodically announce what applications are provided by local clients
1496  * (by regex)
1497  *
1498  * @param cls closure
1499  * @param tc task context
1500  */
1501 static void
1502 announce_regex (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
1503 {
1504   struct MeshClient *c = cls;
1505   unsigned int i;
1506
1507   if (0 != (tc->reason & GNUNET_SCHEDULER_REASON_SHUTDOWN))
1508   {
1509     c->regex_announce_task = GNUNET_SCHEDULER_NO_TASK;
1510     return;
1511   }
1512
1513   DEBUG_DHT ("Starting PUT for regex\n");
1514
1515   for (i = 0; i < c->n_regex; i++)
1516   {
1517     regex_put (c->regexes[i]);
1518   }
1519   c->regex_announce_task =
1520       GNUNET_SCHEDULER_add_delayed (app_announce_time, &announce_regex, cls);
1521   DEBUG_DHT ("Finished PUT for regex\n");
1522
1523   return;
1524 }
1525
1526
1527 /**
1528  * Periodically announce what applications are provided by local clients
1529  * (by type)
1530  *
1531  * @param cls closure
1532  * @param tc task context
1533  */
1534 static void
1535 announce_applications (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
1536 {
1537   if (0 != (tc->reason & GNUNET_SCHEDULER_REASON_SHUTDOWN))
1538   {
1539     announce_applications_task = GNUNET_SCHEDULER_NO_TASK;
1540     return;
1541   }
1542  
1543   DEBUG_DHT ("Starting PUT for apps\n");
1544
1545   GNUNET_CONTAINER_multihashmap_iterate (applications, &announce_application,
1546                                          NULL);
1547   announce_applications_task =
1548       GNUNET_SCHEDULER_add_delayed (app_announce_time, &announce_applications,
1549                                     cls);
1550   DEBUG_DHT ("Finished PUT for apps\n");
1551
1552   return;
1553 }
1554
1555
1556 /**
1557  * Periodically announce self id in the DHT
1558  *
1559  * @param cls closure
1560  * @param tc task context
1561  */
1562 static void
1563 announce_id (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
1564 {
1565   struct PBlock block;
1566
1567   if (0 != (tc->reason & GNUNET_SCHEDULER_REASON_SHUTDOWN))
1568   {
1569     announce_id_task = GNUNET_SCHEDULER_NO_TASK;
1570     return;
1571   }
1572   /* TODO
1573    * - Set data expiration in function of X
1574    * - Adapt X to churn
1575    */
1576   DEBUG_DHT ("DHT_put for ID %s started.\n", GNUNET_i2s (&my_full_id));
1577
1578   block.id = my_full_id;
1579   block.type = htonl (0);
1580   GNUNET_DHT_put (dht_handle,   /* DHT handle */
1581                   &my_full_id.hashPubKey,       /* Key to use */
1582                   dht_replication_level,     /* Replication level */
1583                   GNUNET_DHT_RO_RECORD_ROUTE | GNUNET_DHT_RO_DEMULTIPLEX_EVERYWHERE,    /* DHT options */
1584                   GNUNET_BLOCK_TYPE_MESH_PEER,       /* Block type */
1585                   sizeof (block),  /* Size of the data */
1586                   (const char *) &block, /* Data itself */
1587                   GNUNET_TIME_UNIT_FOREVER_ABS,  /* Data expiration */
1588                   GNUNET_TIME_UNIT_FOREVER_REL, /* Retry time */
1589                   NULL,         /* Continuation */
1590                   NULL);        /* Continuation closure */
1591   announce_id_task =
1592       GNUNET_SCHEDULER_add_delayed (id_announce_time, &announce_id, cls);
1593 }
1594
1595
1596 /******************************************************************************/
1597 /******************      GENERAL HELPER FUNCTIONS      ************************/
1598 /******************************************************************************/
1599
1600
1601 /**
1602  * Decrements the reference counter and frees all resources if needed
1603  *
1604  * @param mesh_data Data Descriptor used in a multicast message.
1605  *                  Freed no longer needed (last message).
1606  */
1607 static void
1608 data_descriptor_decrement_rc (struct MeshData *mesh_data)
1609 {
1610   /* Make sure it's a multicast packet */
1611   GNUNET_assert (NULL != mesh_data->reference_counter);
1612
1613   if (0 == --(*(mesh_data->reference_counter)))
1614   {
1615     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Last copy!\n");
1616     if (NULL != mesh_data->task)
1617     {
1618       if (GNUNET_SCHEDULER_NO_TASK != *(mesh_data->task))
1619       {
1620         GNUNET_SCHEDULER_cancel (*(mesh_data->task));
1621         GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, " notifying client...\n");
1622         GNUNET_SERVER_receive_done (mesh_data->t->owner->handle, GNUNET_OK);
1623       }
1624       GNUNET_free (mesh_data->task);
1625     }
1626     GNUNET_free (mesh_data->reference_counter);
1627     GNUNET_free (mesh_data->data);
1628     GNUNET_free (mesh_data);
1629   }
1630 }
1631
1632
1633 /**
1634  * Check if client has registered with the service and has not disconnected
1635  *
1636  * @param client the client to check
1637  *
1638  * @return non-NULL if client exists in the global DLL
1639  */
1640 static struct MeshClient *
1641 client_get (struct GNUNET_SERVER_Client *client)
1642 {
1643   struct MeshClient *c;
1644
1645   c = clients;
1646   while (NULL != c)
1647   {
1648     if (c->handle == client)
1649       return c;
1650     c = c->next;
1651   }
1652   return NULL;
1653 }
1654
1655
1656 /**
1657  * Checks if a given client has subscribed to certain message type
1658  *
1659  * @param message_type Type of message to check
1660  * @param c Client to check
1661  *
1662  * @return GNUNET_YES or GNUNET_NO, depending on subscription status
1663  */
1664 static int
1665 client_is_subscribed (uint16_t message_type, struct MeshClient *c)
1666 {
1667   struct GNUNET_HashCode hc;
1668
1669   if (NULL == c->types)
1670     return GNUNET_NO;
1671   GNUNET_CRYPTO_hash (&message_type, sizeof (uint16_t), &hc);
1672   return GNUNET_CONTAINER_multihashmap_contains (c->types, &hc);
1673 }
1674
1675
1676 /**
1677  * Allow a client to send more data after transmitting a multicast message
1678  * which some neighbor has not yet accepted altough a reasonable time has
1679  * passed.
1680  *
1681  * @param cls Closure (DataDescriptor containing the task identifier)
1682  * @param tc Task Context
1683  * 
1684  * FIXME reference counter cshould be just int
1685  */
1686 static void
1687 client_allow_send (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
1688 {
1689   struct MeshData *mdata = cls;
1690
1691   if (0 != (tc->reason & GNUNET_SCHEDULER_REASON_SHUTDOWN))
1692     return;
1693   GNUNET_assert (NULL != mdata->reference_counter);
1694   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1695               "CLIENT ALLOW SEND DESPITE %u COPIES PENDING\n",
1696               *(mdata->reference_counter));
1697   *(mdata->task) = GNUNET_SCHEDULER_NO_TASK;
1698   GNUNET_SERVER_receive_done (mdata->t->owner->handle, GNUNET_OK);
1699 }
1700
1701
1702 /**
1703  * Check whether client wants traffic from a tunnel.
1704  *
1705  * @param c Client to check.
1706  * @param t Tunnel to be found.
1707  *
1708  * @return GNUNET_YES if client knows tunnel.
1709  * 
1710  * TODO look in client hashmap
1711  */
1712 static int
1713 client_wants_tunnel (struct MeshClient *c, struct MeshTunnel *t)
1714 {
1715   unsigned int i;
1716
1717   for (i = 0; i < t->nclients; i++)
1718     if (t->clients[i] == c)
1719       return GNUNET_YES;
1720   return GNUNET_NO;
1721 }
1722
1723
1724 /**
1725  * Check whether client has been informed about a tunnel.
1726  *
1727  * @param c Client to check.
1728  * @param t Tunnel to be found.
1729  *
1730  * @return GNUNET_YES if client knows tunnel.
1731  * 
1732  * TODO look in client hashmap
1733  */
1734 static int
1735 client_knows_tunnel (struct MeshClient *c, struct MeshTunnel *t)
1736 {
1737   unsigned int i;
1738
1739   for (i = 0; i < t->nignore; i++)
1740     if (t->ignore[i] == c)
1741       return GNUNET_YES;
1742   return client_wants_tunnel(c, t);
1743 }
1744
1745
1746 /**
1747  * Marks a client as uninterested in traffic from the tunnel, updating both
1748  * client and tunnel to reflect this.
1749  *
1750  * @param c Client that doesn't want traffic anymore.
1751  * @param t Tunnel which should be ignored.
1752  *
1753  * FIXME when to delete an incoming tunnel?
1754  */
1755 static void
1756 client_ignore_tunnel (struct MeshClient *c, struct MeshTunnel *t)
1757 {
1758   struct GNUNET_HashCode hash;
1759
1760   GNUNET_CRYPTO_hash(&t->local_tid_dest, sizeof (MESH_TunnelNumber), &hash);
1761   GNUNET_break (GNUNET_YES ==
1762                 GNUNET_CONTAINER_multihashmap_remove (c->incoming_tunnels,
1763                                                       &hash, t));
1764   GNUNET_break (GNUNET_YES ==
1765                 GNUNET_CONTAINER_multihashmap_put (c->ignore_tunnels, &hash, t,
1766                                                    GNUNET_CONTAINER_MULTIHASHMAPOPTION_UNIQUE_FAST));
1767   tunnel_delete_active_client (t, c);
1768   GNUNET_array_append (t->ignore, t->nignore, c);
1769 }
1770
1771
1772 /**
1773  * Deletes a tunnel from a client (either owner or destination). To be used on
1774  * tunnel destroy, otherwise, use client_ignore_tunnel.
1775  *
1776  * @param c Client whose tunnel to delete.
1777  * @param t Tunnel which should be deleted.
1778  */
1779 static void
1780 client_delete_tunnel (struct MeshClient *c, struct MeshTunnel *t)
1781 {
1782   struct GNUNET_HashCode hash;
1783
1784   if (c == t->owner)
1785   {
1786     GNUNET_CRYPTO_hash(&t->local_tid, sizeof (MESH_TunnelNumber), &hash);
1787     GNUNET_assert (GNUNET_YES ==
1788                    GNUNET_CONTAINER_multihashmap_remove (c->own_tunnels,
1789                                                          &hash,
1790                                                          t));
1791   }
1792   else
1793   {
1794     GNUNET_CRYPTO_hash(&t->local_tid_dest, sizeof (MESH_TunnelNumber), &hash);
1795     // FIXME XOR?
1796     GNUNET_assert (GNUNET_YES ==
1797                    GNUNET_CONTAINER_multihashmap_remove (c->incoming_tunnels,
1798                                                          &hash,
1799                                                          t) ||
1800                    GNUNET_YES ==
1801                    GNUNET_CONTAINER_multihashmap_remove (c->ignore_tunnels,
1802                                                          &hash,
1803                                                          t));
1804   }
1805     
1806 }
1807
1808
1809 /**
1810  * Send the message to all clients that have subscribed to its type
1811  *
1812  * @param msg Pointer to the message itself
1813  * @param payload Pointer to the payload of the message.
1814  * @return number of clients this message was sent to
1815  */
1816 static unsigned int
1817 send_subscribed_clients (const struct GNUNET_MessageHeader *msg,
1818                          const struct GNUNET_MessageHeader *payload)
1819 {
1820   struct GNUNET_PeerIdentity *oid;
1821   struct MeshClient *c;
1822   struct MeshTunnel *t;
1823   MESH_TunnelNumber *tid;
1824   unsigned int count;
1825   uint16_t type;
1826   char cbuf[htons (msg->size)];
1827
1828   type = ntohs (payload->type);
1829   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Sending to clients...\n");
1830   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "message of type %u\n", type);
1831
1832   memcpy (cbuf, msg, sizeof (cbuf));
1833   switch (htons (msg->type))
1834   {
1835     struct GNUNET_MESH_Unicast *uc;
1836     struct GNUNET_MESH_Multicast *mc;
1837     struct GNUNET_MESH_ToOrigin *to;
1838
1839   case GNUNET_MESSAGE_TYPE_MESH_UNICAST:
1840     uc = (struct GNUNET_MESH_Unicast *) cbuf;
1841     tid = &uc->tid;
1842     oid = &uc->oid;
1843     break;
1844   case GNUNET_MESSAGE_TYPE_MESH_MULTICAST:
1845     mc = (struct GNUNET_MESH_Multicast *) cbuf;
1846     tid = &mc->tid;
1847     oid = &mc->oid;
1848     break;
1849   case GNUNET_MESSAGE_TYPE_MESH_TO_ORIGIN:
1850     to = (struct GNUNET_MESH_ToOrigin *) cbuf;
1851     tid = &to->tid;
1852     oid = &to->oid;
1853     break;
1854   default:
1855     GNUNET_break (0);
1856     return 0;
1857   }
1858   t = tunnel_get (oid, ntohl (*tid));
1859   if (NULL == t)
1860   {
1861     GNUNET_break (0);
1862     return 0;
1863   }
1864
1865   for (count = 0, c = clients; c != NULL; c = c->next)
1866   {
1867     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "   client %u\n", c->id);
1868     if (client_is_subscribed (type, c))
1869     {
1870       if (htons (msg->type) == GNUNET_MESSAGE_TYPE_MESH_TO_ORIGIN)
1871       {
1872         if (c != t->owner)
1873           continue;
1874         *tid = htonl (t->local_tid);
1875       }
1876       else
1877       {
1878         if (GNUNET_NO == client_knows_tunnel (c, t))
1879         {
1880           /* This client doesn't know the tunnel */
1881           struct GNUNET_MESH_TunnelNotification tmsg;
1882           struct GNUNET_HashCode hash;
1883
1884           GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "     sending tunnel create\n");
1885           tmsg.header.size = htons (sizeof (tmsg));
1886           tmsg.header.type = htons (GNUNET_MESSAGE_TYPE_MESH_LOCAL_TUNNEL_CREATE);
1887           GNUNET_PEER_resolve (t->id.oid, &tmsg.peer);
1888           tmsg.tunnel_id = htonl (t->local_tid_dest);
1889           GNUNET_SERVER_notification_context_unicast (nc, c->handle,
1890                                                       &tmsg.header, GNUNET_NO);
1891           GNUNET_array_append (t->clients, t->nclients, c);
1892           GNUNET_CRYPTO_hash (&t->local_tid_dest, sizeof (MESH_TunnelNumber),
1893                               &hash);
1894           GNUNET_break (GNUNET_OK == GNUNET_CONTAINER_multihashmap_put (
1895                                        c->incoming_tunnels, &hash, t,
1896                                        GNUNET_CONTAINER_MULTIHASHMAPOPTION_UNIQUE_FAST));
1897         }
1898         *tid = htonl (t->local_tid_dest);
1899       }
1900
1901       /* Check if the client wants to get traffic from the tunnel */
1902       if (GNUNET_NO == client_wants_tunnel(c, t))
1903         continue;
1904       count++;
1905       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "     sending\n");
1906       GNUNET_SERVER_notification_context_unicast (nc, c->handle,
1907                                                   (struct GNUNET_MessageHeader
1908                                                    *) cbuf, GNUNET_YES);
1909     }
1910   }
1911   return count;
1912 }
1913
1914
1915 /**
1916  * Notify the client that owns the tunnel that a peer has connected to it
1917  * (the requested path to it has been confirmed).
1918  *
1919  * @param t Tunnel whose owner to notify
1920  * @param id Short id of the peer that has connected
1921  */
1922 static void
1923 send_client_peer_connected (const struct MeshTunnel *t, const GNUNET_PEER_Id id)
1924 {
1925   struct GNUNET_MESH_PeerControl pc;
1926
1927   pc.header.type = htons (GNUNET_MESSAGE_TYPE_MESH_LOCAL_PEER_ADD);
1928   pc.header.size = htons (sizeof (struct GNUNET_MESH_PeerControl));
1929   pc.tunnel_id = htonl (t->local_tid);
1930   GNUNET_PEER_resolve (id, &pc.peer);
1931   GNUNET_SERVER_notification_context_unicast (nc, t->owner->handle, &pc.header,
1932                                               GNUNET_NO);
1933 }
1934
1935
1936 /**
1937  * Notify a client about how many more payload packages will we accept
1938  * on a given tunnel.
1939  *
1940  * @param c Client.
1941  * @param t Tunnel.
1942  */
1943 static void
1944 send_client_tunnel_ack (struct MeshClient *c, struct MeshTunnel *t)
1945 {
1946   struct GNUNET_MESH_LocalAck msg;
1947   uint32_t ack;
1948
1949   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1950               "Sending client ACK on tunnel %X\n",
1951               t->local_tid);
1952   if (NULL == c)
1953     return;
1954
1955   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, " to client %u\n", c->id);
1956
1957   ack = tunnel_get_ack (t);
1958
1959   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, " ack %u\n", ack);
1960   if (t->last_ack == ack)
1961     return;
1962
1963   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, " sending!\n");
1964   t->last_ack = ack;
1965   msg.header.size = htons (sizeof (msg));
1966   msg.header.type = htons (GNUNET_MESSAGE_TYPE_MESH_LOCAL_ACK);
1967   msg.tunnel_id = htonl (t->local_tid);
1968   msg.max_pid = htonl (ack);
1969
1970   GNUNET_SERVER_notification_context_unicast (nc, c->handle,
1971                                               &msg.header, GNUNET_NO);
1972 }
1973
1974
1975 /**
1976  * Notify all clients (not depending on registration status) that the incoming
1977  * tunnel is no longer valid.
1978  *
1979  * @param t Tunnel that was destroyed.
1980  */
1981 static void
1982 send_clients_tunnel_destroy (struct MeshTunnel *t)
1983 {
1984   struct GNUNET_MESH_TunnelMessage msg;
1985
1986   msg.header.size = htons (sizeof (msg));
1987   msg.header.type = htons (GNUNET_MESSAGE_TYPE_MESH_LOCAL_TUNNEL_DESTROY);
1988   msg.tunnel_id = htonl (t->local_tid_dest);
1989   GNUNET_SERVER_notification_context_broadcast (nc, &msg.header, GNUNET_NO);
1990 }
1991
1992
1993 /**
1994  * Notify clients of tunnel disconnections, if needed.
1995  * In case the origin disconnects, the destination clients get a tunnel destroy
1996  * notification. If the last destination disconnects (only one remaining client
1997  * in tunnel), the origin gets a (local ID) peer disconnected.
1998  * Note that the function must be called BEFORE removing the client from
1999  * the tunnel.
2000  *
2001  * @param t Tunnel that was destroyed.
2002  * @param c Client that disconnected.
2003  */
2004 static void
2005 send_client_tunnel_disconnect (struct MeshTunnel *t, struct MeshClient *c)
2006 {
2007   unsigned int i;
2008
2009   if (c == t->owner)
2010   {
2011     struct GNUNET_MESH_TunnelMessage msg;
2012
2013     msg.header.size = htons (sizeof (msg));
2014     msg.header.type = htons (GNUNET_MESSAGE_TYPE_MESH_LOCAL_TUNNEL_DESTROY);
2015     msg.tunnel_id = htonl (t->local_tid_dest);
2016     for (i = 0; i < t->nclients; i++)
2017       GNUNET_SERVER_notification_context_unicast (nc, t->clients[i]->handle,
2018                                                   &msg.header, GNUNET_NO);
2019   }
2020   // FIXME when to disconnect an incoming tunnel?
2021   else if (1 == t->nclients && NULL != t->owner)
2022   {
2023     struct GNUNET_MESH_PeerControl msg;
2024
2025     msg.header.size = htons (sizeof (msg));
2026     msg.header.type = htons (GNUNET_MESSAGE_TYPE_MESH_LOCAL_PEER_DEL);
2027     msg.tunnel_id = htonl (t->local_tid);
2028     msg.peer = my_full_id;
2029     GNUNET_SERVER_notification_context_unicast (nc, t->owner->handle,
2030                                                 &msg.header, GNUNET_NO);
2031   }
2032 }
2033
2034
2035 /**
2036  * Retrieve the MeshPeerInfo stucture associated with the peer, create one
2037  * and insert it in the appropiate structures if the peer is not known yet.
2038  *
2039  * @param peer Full identity of the peer.
2040  *
2041  * @return Existing or newly created peer info.
2042  */
2043 static struct MeshPeerInfo *
2044 peer_info_get (const struct GNUNET_PeerIdentity *peer)
2045 {
2046   struct MeshPeerInfo *peer_info;
2047
2048   peer_info = GNUNET_CONTAINER_multihashmap_get (peers, &peer->hashPubKey);
2049   if (NULL == peer_info)
2050   {
2051     peer_info =
2052         (struct MeshPeerInfo *) GNUNET_malloc (sizeof (struct MeshPeerInfo));
2053     GNUNET_CONTAINER_multihashmap_put (peers, &peer->hashPubKey, peer_info,
2054                                        GNUNET_CONTAINER_MULTIHASHMAPOPTION_UNIQUE_ONLY);
2055     peer_info->id = GNUNET_PEER_intern (peer);
2056   }
2057
2058   return peer_info;
2059 }
2060
2061
2062 /**
2063  * Retrieve the MeshPeerInfo stucture associated with the peer, create one
2064  * and insert it in the appropiate structures if the peer is not known yet.
2065  *
2066  * @param peer Short identity of the peer.
2067  *
2068  * @return Existing or newly created peer info.
2069  */
2070 static struct MeshPeerInfo *
2071 peer_info_get_short (const GNUNET_PEER_Id peer)
2072 {
2073   struct GNUNET_PeerIdentity id;
2074
2075   GNUNET_PEER_resolve (peer, &id);
2076   return peer_info_get (&id);
2077 }
2078
2079
2080 /**
2081  * Iterator to remove the tunnel from the list of tunnels a peer participates
2082  * in.
2083  *
2084  * @param cls Closure (tunnel info)
2085  * @param key GNUNET_PeerIdentity of the peer (unused)
2086  * @param value PeerInfo of the peer
2087  *
2088  * @return always GNUNET_YES, to keep iterating
2089  */
2090 static int
2091 peer_info_delete_tunnel (void *cls, const struct GNUNET_HashCode * key, void *value)
2092 {
2093   struct MeshTunnel *t = cls;
2094   struct MeshPeerInfo *peer = value;
2095   unsigned int i;
2096
2097   for (i = 0; i < peer->ntunnels; i++)
2098   {
2099     if (0 ==
2100         memcmp (&peer->tunnels[i]->id, &t->id, sizeof (struct MESH_TunnelID)))
2101     {
2102       peer->ntunnels--;
2103       peer->tunnels[i] = peer->tunnels[peer->ntunnels];
2104       peer->tunnels = GNUNET_realloc (peer->tunnels, peer->ntunnels);
2105       return GNUNET_YES;
2106     }
2107   }
2108   return GNUNET_YES;
2109 }
2110
2111
2112 /**
2113   * Core callback to write a pre-constructed data packet to core buffer
2114   *
2115   * @param cls Closure (MeshTransmissionDescriptor with data in "data" member).
2116   * @param size Number of bytes available in buf.
2117   * @param buf Where the to write the message.
2118   *
2119   * @return number of bytes written to buf
2120   */
2121 static size_t
2122 send_core_data_raw (void *cls, size_t size, void *buf)
2123 {
2124   struct MeshTransmissionDescriptor *info = cls;
2125   struct GNUNET_MessageHeader *msg;
2126   size_t total_size;
2127
2128   GNUNET_assert (NULL != info);
2129   GNUNET_assert (NULL != info->mesh_data);
2130   msg = (struct GNUNET_MessageHeader *) info->mesh_data->data;
2131   total_size = ntohs (msg->size);
2132
2133   if (total_size > size)
2134   {
2135     GNUNET_break (0);
2136     return 0;
2137   }
2138   memcpy (buf, msg, total_size);
2139   data_descriptor_decrement_rc (info->mesh_data);
2140   GNUNET_free (info);
2141   return total_size;
2142 }
2143
2144
2145 /**
2146  * Sends an already built non-multicast message to a peer,
2147  * properly registrating all used resources.
2148  *
2149  * @param message Message to send. Function makes a copy of it.
2150  * @param peer Short ID of the neighbor whom to send the message.
2151  * @param t Tunnel on which this message is transmitted.
2152  */
2153 static void
2154 send_message (const struct GNUNET_MessageHeader *message,
2155               const struct GNUNET_PeerIdentity *peer,
2156               struct MeshTunnel *t)
2157 {
2158   struct MeshTransmissionDescriptor *info;
2159   struct MeshPeerInfo *neighbor;
2160   struct MeshPeerPath *p;
2161   size_t size;
2162
2163 //   GNUNET_TRANSPORT_try_connect(); FIXME use?
2164
2165   size = ntohs (message->size);
2166   info = GNUNET_malloc (sizeof (struct MeshTransmissionDescriptor));
2167   info->mesh_data = GNUNET_malloc (sizeof (struct MeshData));
2168   info->mesh_data->data = GNUNET_malloc (size);
2169   memcpy (info->mesh_data->data, message, size);
2170   if (ntohs(message->type) == GNUNET_MESSAGE_TYPE_MESH_UNICAST)
2171   {
2172     struct GNUNET_MESH_Unicast *m;
2173
2174     m = (struct GNUNET_MESH_Unicast *) info->mesh_data->data;
2175     m->ttl = htonl (ntohl (m->ttl) - 1);
2176   }
2177   info->mesh_data->data_len = size;
2178   info->mesh_data->reference_counter = GNUNET_malloc (sizeof (unsigned int));
2179   *info->mesh_data->reference_counter = 1;
2180   neighbor = peer_info_get (peer);
2181   for (p = neighbor->path_head; NULL != p; p = p->next)
2182   {
2183     if (2 >= p->length)
2184     {
2185       break;
2186     }
2187   }
2188   if (NULL == p)
2189   {
2190     GNUNET_break (0); // FIXME sometimes fails (testing disconnect?)
2191     GNUNET_free (info->mesh_data->data);
2192     GNUNET_free (info->mesh_data);
2193     GNUNET_free (info);
2194     return;
2195   }
2196   info->peer = neighbor;
2197   queue_add (info,
2198              0,
2199              size,
2200              neighbor,
2201              t);
2202 }
2203
2204
2205 /**
2206  * Sends a CREATE PATH message for a path to a peer, properly registrating
2207  * all used resources.
2208  *
2209  * @param peer PeerInfo of the final peer for whom this path is being created.
2210  * @param p Path itself.
2211  * @param t Tunnel for which the path is created.
2212  */
2213 static void
2214 send_create_path (struct MeshPeerInfo *peer, struct MeshPeerPath *p,
2215                   struct MeshTunnel *t)
2216 {
2217   struct GNUNET_PeerIdentity id;
2218   struct MeshPathInfo *path_info;
2219   struct MeshPeerInfo *neighbor;
2220
2221   unsigned int i;
2222
2223   if (NULL == p)
2224   {
2225     p = tree_get_path_to_peer (t->tree, peer->id);
2226     if (NULL == p)
2227     {
2228       GNUNET_break (0);
2229       return;
2230     }
2231   }
2232   for (i = 0; i < p->length; i++)
2233   {
2234     if (p->peers[i] == myid)
2235       break;
2236   }
2237   if (i >= p->length - 1)
2238   {
2239     path_destroy (p);
2240     GNUNET_break (0);
2241     return;
2242   }
2243   GNUNET_PEER_resolve (p->peers[i + 1], &id);
2244
2245   path_info = GNUNET_malloc (sizeof (struct MeshPathInfo));
2246   path_info->path = p;
2247   path_info->t = t;
2248   neighbor = peer_info_get (&id);
2249   path_info->peer = neighbor;
2250   queue_add (path_info,
2251              GNUNET_MESSAGE_TYPE_MESH_PATH_CREATE,
2252              sizeof (struct GNUNET_MESH_ManipulatePath) +
2253                 (p->length * sizeof (struct GNUNET_PeerIdentity)),
2254              neighbor,
2255              t);
2256 }
2257
2258
2259 /**
2260  * Sends a DESTROY PATH message to free resources for a path in a tunnel
2261  *
2262  * @param t Tunnel whose path to destroy.
2263  * @param destination Short ID of the peer to whom the path to destroy.
2264  */
2265 static void
2266 send_destroy_path (struct MeshTunnel *t, GNUNET_PEER_Id destination)
2267 {
2268   struct MeshPeerPath *p;
2269   size_t size;
2270
2271   p = tree_get_path_to_peer (t->tree, destination);
2272   if (NULL == p)
2273   {
2274     GNUNET_break (0);
2275     return;
2276   }
2277   size = sizeof (struct GNUNET_MESH_ManipulatePath);
2278   size += p->length * sizeof (struct GNUNET_PeerIdentity);
2279   {
2280     struct GNUNET_MESH_ManipulatePath *msg;
2281     struct GNUNET_PeerIdentity *pi;
2282     char cbuf[size];
2283     unsigned int i;
2284
2285     msg = (struct GNUNET_MESH_ManipulatePath *) cbuf;
2286     msg->header.size = htons (size);
2287     msg->header.type = htons (GNUNET_MESSAGE_TYPE_MESH_PATH_DESTROY);
2288     msg->tid = htonl (t->id.tid);
2289     pi = (struct GNUNET_PeerIdentity *) &msg[1];
2290     for (i = 0; i < p->length; i++)
2291     {
2292       GNUNET_PEER_resolve (p->peers[i], &pi[i]);
2293     }
2294     send_message (&msg->header, tree_get_first_hop (t->tree, destination), t);
2295   }
2296   path_destroy (p);
2297 }
2298
2299
2300 /**
2301  * Try to establish a new connection to this peer.
2302  * Use the best path for the given tunnel.
2303  * If the peer doesn't have any path to it yet, try to get one.
2304  * If the peer already has some path, send a CREATE PATH towards it.
2305  *
2306  * @param peer PeerInfo of the peer.
2307  * @param t Tunnel for which to create the path, if possible.
2308  */
2309 static void
2310 peer_info_connect (struct MeshPeerInfo *peer, struct MeshTunnel *t)
2311 {
2312   struct MeshPeerPath *p;
2313   struct MeshPathInfo *path_info;
2314
2315   if (NULL != peer->path_head)
2316   {
2317     p = tree_get_path_to_peer (t->tree, peer->id);
2318     if (NULL == p)
2319     {
2320       GNUNET_break (0);
2321       return;
2322     }
2323
2324     // FIXME always send create path to self
2325     if (p->length > 1)
2326     {
2327       send_create_path (peer, p, t);
2328     }
2329     else
2330     {
2331       struct GNUNET_HashCode hash;
2332
2333       path_destroy (p);
2334       send_client_peer_connected (t, myid);
2335       t->local_tid_dest = next_local_tid++;
2336       GNUNET_CRYPTO_hash (&t->local_tid_dest, sizeof (MESH_TunnelNumber),
2337                           &hash);
2338       if (GNUNET_OK !=
2339           GNUNET_CONTAINER_multihashmap_put (incoming_tunnels, &hash, t,
2340                                              GNUNET_CONTAINER_MULTIHASHMAPOPTION_UNIQUE_FAST))
2341       {
2342         GNUNET_break (0);
2343         return;
2344       }
2345     }
2346   }
2347   else if (NULL == peer->dhtget)
2348   {
2349     struct GNUNET_PeerIdentity id;
2350
2351     GNUNET_PEER_resolve (peer->id, &id);
2352     path_info = GNUNET_malloc (sizeof (struct MeshPathInfo));
2353     path_info->peer = peer;
2354     path_info->t = t;
2355     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
2356                 "  Starting DHT GET for peer %s\n", GNUNET_i2s (&id));
2357     peer->dhtgetcls = path_info;
2358     peer->dhtget = GNUNET_DHT_get_start (dht_handle,    /* handle */
2359                                          GNUNET_BLOCK_TYPE_MESH_PEER, /* type */
2360                                          &id.hashPubKey,     /* key to search */
2361                                          dht_replication_level, /* replication level */
2362                                          GNUNET_DHT_RO_RECORD_ROUTE |
2363                                          GNUNET_DHT_RO_DEMULTIPLEX_EVERYWHERE,
2364                                          NULL,       /* xquery */ // FIXME BLOOMFILTER
2365                                          0,     /* xquery bits */ // FIXME BLOOMFILTER SIZE
2366                                          &dht_get_id_handler, path_info);
2367   }
2368   /* Otherwise, there is no path but the DHT get is already started. */
2369 }
2370
2371
2372 /**
2373  * Task to delay the connection of a peer
2374  *
2375  * @param cls Closure (path info with tunnel and peer to connect).
2376  *            Will be free'd on exection.
2377  * @param tc TaskContext
2378  */
2379 static void
2380 peer_info_connect_task (void *cls,
2381                         const struct GNUNET_SCHEDULER_TaskContext *tc)
2382 {
2383   struct MeshPathInfo *path_info = cls;
2384
2385   if (0 != (GNUNET_SCHEDULER_REASON_SHUTDOWN & tc->reason))
2386   {
2387     GNUNET_free (cls);
2388     return;
2389   }
2390   peer_info_connect (path_info->peer, path_info->t);
2391   GNUNET_free (cls);
2392 }
2393
2394
2395 /**
2396  * Destroy the peer_info and free any allocated resources linked to it
2397  *
2398  * @param pi The peer_info to destroy.
2399  *
2400  * @return GNUNET_OK on success
2401  */
2402 static int
2403 peer_info_destroy (struct MeshPeerInfo *pi)
2404 {
2405   struct GNUNET_PeerIdentity id;
2406   struct MeshPeerPath *p;
2407   struct MeshPeerPath *nextp;
2408
2409   GNUNET_PEER_resolve (pi->id, &id);
2410   GNUNET_PEER_change_rc (pi->id, -1);
2411
2412   if (GNUNET_YES !=
2413       GNUNET_CONTAINER_multihashmap_remove (peers, &id.hashPubKey, pi))
2414   {
2415     GNUNET_break (0);
2416     GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
2417                 "removing peer %s, not in hashmap\n", GNUNET_i2s (&id));
2418   }
2419   if (NULL != pi->dhtget)
2420   {
2421     GNUNET_DHT_get_stop (pi->dhtget);
2422     GNUNET_free (pi->dhtgetcls);
2423   }
2424   p = pi->path_head;
2425   while (NULL != p)
2426   {
2427     nextp = p->next;
2428     GNUNET_CONTAINER_DLL_remove (pi->path_head, pi->path_tail, p);
2429     path_destroy (p);
2430     p = nextp;
2431   }
2432   GNUNET_free (pi);
2433   return GNUNET_OK;
2434 }
2435
2436
2437 /**
2438  * Remove all paths that rely on a direct connection between p1 and p2
2439  * from the peer itself and notify all tunnels about it.
2440  *
2441  * @param peer PeerInfo of affected peer.
2442  * @param p1 GNUNET_PEER_Id of one peer.
2443  * @param p2 GNUNET_PEER_Id of another peer that was connected to the first and
2444  *           no longer is.
2445  *
2446  * TODO: optimize (see below)
2447  */
2448 static void
2449 peer_info_remove_path (struct MeshPeerInfo *peer, GNUNET_PEER_Id p1,
2450                        GNUNET_PEER_Id p2)
2451 {
2452   struct MeshPeerPath *p;
2453   struct MeshPeerPath *aux;
2454   struct MeshPeerInfo *peer_d;
2455   GNUNET_PEER_Id d;
2456   unsigned int destroyed;
2457   unsigned int best;
2458   unsigned int cost;
2459   unsigned int i;
2460
2461   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "peer_info_remove_path\n");
2462   destroyed = 0;
2463   p = peer->path_head;
2464   while (NULL != p)
2465   {
2466     aux = p->next;
2467     for (i = 0; i < (p->length - 1); i++)
2468     {
2469       if ((p->peers[i] == p1 && p->peers[i + 1] == p2) ||
2470           (p->peers[i] == p2 && p->peers[i + 1] == p1))
2471       {
2472         GNUNET_CONTAINER_DLL_remove (peer->path_head, peer->path_tail, p);
2473         path_destroy (p);
2474         destroyed++;
2475         break;
2476       }
2477     }
2478     p = aux;
2479   }
2480   if (0 == destroyed)
2481     return;
2482
2483   for (i = 0; i < peer->ntunnels; i++)
2484   {
2485     d = tunnel_notify_connection_broken (peer->tunnels[i], p1, p2);
2486     if (0 == d)
2487       continue;
2488     /* TODO
2489      * Problem: one or more peers have been deleted from the tunnel tree.
2490      * We don't know who they are to try to add them again.
2491      * We need to try to find a new path for each of the disconnected peers.
2492      * Some of them might already have a path to reach them that does not
2493      * involve p1 and p2. Adding all anew might render in a better tree than
2494      * the trivial immediate fix.
2495      *
2496      * Trivial immiediate fix: try to reconnect to the disconnected node. All
2497      * its children will be reachable trough him.
2498      */
2499     peer_d = peer_info_get_short (d);
2500     best = UINT_MAX;
2501     aux = NULL;
2502     for (p = peer_d->path_head; NULL != p; p = p->next)
2503     {
2504       if ((cost = tree_get_path_cost (peer->tunnels[i]->tree, p)) < best)
2505       {
2506         best = cost;
2507         aux = p;
2508       }
2509     }
2510     if (NULL != aux)
2511     {
2512       /* No callback, as peer will be already disconnected and a connection
2513        * scheduled by tunnel_notify_connection_broken.
2514        */
2515       tree_add_path (peer->tunnels[i]->tree, aux, NULL, NULL);
2516     }
2517     else
2518     {
2519       peer_info_connect (peer_d, peer->tunnels[i]);
2520     }
2521   }
2522   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "peer_info_remove_path END\n");
2523 }
2524
2525
2526 /**
2527  * Add the path to the peer and update the path used to reach it in case this
2528  * is the shortest.
2529  *
2530  * @param peer_info Destination peer to add the path to.
2531  * @param path New path to add. Last peer must be the peer in arg 1.
2532  *             Path will be either used of freed if already known.
2533  * @param trusted Do we trust that this path is real?
2534  */
2535 void
2536 peer_info_add_path (struct MeshPeerInfo *peer_info, struct MeshPeerPath *path,
2537                     int trusted)
2538 {
2539   struct MeshPeerPath *aux;
2540   unsigned int l;
2541   unsigned int l2;
2542
2543   if ((NULL == peer_info) || (NULL == path))
2544   {
2545     GNUNET_break (0);
2546     path_destroy (path);
2547     return;
2548   }
2549   if (path->peers[path->length - 1] != peer_info->id)
2550   {
2551     GNUNET_break (0);
2552     path_destroy (path);
2553     return;
2554   }
2555   if (path->length <= 2 && GNUNET_NO == trusted)
2556   {
2557     /* Only allow CORE to tell us about direct paths */
2558     path_destroy (path);
2559     return;
2560   }
2561   GNUNET_assert (peer_info->id == path->peers[path->length - 1]);
2562   for (l = 1; l < path->length; l++)
2563   {
2564     if (path->peers[l] == myid)
2565     {
2566       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "shortening path by %u\n", l);
2567       for (l2 = 0; l2 < path->length - l; l2++)
2568       {
2569         path->peers[l2] = path->peers[l + l2];
2570       }
2571       path->length -= l;
2572       l = 1;
2573       path->peers =
2574           GNUNET_realloc (path->peers, path->length * sizeof (GNUNET_PEER_Id));
2575     }
2576   }
2577 #if MESH_DEBUG
2578   {
2579     struct GNUNET_PeerIdentity id;
2580
2581     GNUNET_PEER_resolve (peer_info->id, &id);
2582     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "adding path [%u] to peer %s\n",
2583                 path->length, GNUNET_i2s (&id));
2584   }
2585 #endif
2586   l = path_get_length (path);
2587   if (0 == l)
2588   {
2589     GNUNET_free (path);
2590     return;
2591   }
2592
2593   GNUNET_assert (peer_info->id == path->peers[path->length - 1]);
2594   for (aux = peer_info->path_head; aux != NULL; aux = aux->next)
2595   {
2596     l2 = path_get_length (aux);
2597     if (l2 > l)
2598     {
2599       GNUNET_CONTAINER_DLL_insert_before (peer_info->path_head,
2600                                           peer_info->path_tail, aux, path);
2601       return;
2602     }
2603     else
2604     {
2605       if (l2 == l && memcmp (path->peers, aux->peers, l) == 0)
2606       {
2607         path_destroy (path);
2608         return;
2609       }
2610     }
2611   }
2612   GNUNET_CONTAINER_DLL_insert_tail (peer_info->path_head, peer_info->path_tail,
2613                                     path);
2614   return;
2615 }
2616
2617
2618 /**
2619  * Add the path to the origin peer and update the path used to reach it in case
2620  * this is the shortest.
2621  * The path is given in peer_info -> destination, therefore we turn the path
2622  * upside down first.
2623  *
2624  * @param peer_info Peer to add the path to, being the origin of the path.
2625  * @param path New path to add after being inversed.
2626  * @param trusted Do we trust that this path is real?
2627  */
2628 static void
2629 peer_info_add_path_to_origin (struct MeshPeerInfo *peer_info,
2630                               struct MeshPeerPath *path, int trusted)
2631 {
2632   path_invert (path);
2633   peer_info_add_path (peer_info, path, trusted);
2634 }
2635
2636
2637 /**
2638  * Build a PeerPath from the paths returned from the DHT, reversing the paths
2639  * to obtain a local peer -> destination path and interning the peer ids.
2640  *
2641  * @return Newly allocated and created path
2642  */
2643 static struct MeshPeerPath *
2644 path_build_from_dht (const struct GNUNET_PeerIdentity *get_path,
2645                      unsigned int get_path_length,
2646                      const struct GNUNET_PeerIdentity *put_path,
2647                      unsigned int put_path_length)
2648 {
2649   struct MeshPeerPath *p;
2650   GNUNET_PEER_Id id;
2651   int i;
2652
2653   p = path_new (1);
2654   p->peers[0] = myid;
2655   GNUNET_PEER_change_rc (myid, 1);
2656   i = get_path_length;
2657   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "   GET has %d hops.\n", i);
2658   for (i--; i >= 0; i--)
2659   {
2660     id = GNUNET_PEER_intern (&get_path[i]);
2661     if (p->length > 0 && id == p->peers[p->length - 1])
2662     {
2663       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "   Optimizing 1 hop out.\n");
2664       GNUNET_PEER_change_rc (id, -1);
2665     }
2666     else
2667     {
2668       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "   Adding from GET: %s.\n",
2669                   GNUNET_i2s (&get_path[i]));
2670       p->length++;
2671       p->peers = GNUNET_realloc (p->peers, sizeof (GNUNET_PEER_Id) * p->length);
2672       p->peers[p->length - 1] = id;
2673     }
2674   }
2675   i = put_path_length;
2676   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "   PUT has %d hops.\n", i);
2677   for (i--; i >= 0; i--)
2678   {
2679     id = GNUNET_PEER_intern (&put_path[i]);
2680     if (id == myid)
2681     {
2682       /* PUT path went through us, so discard the path up until now and start
2683        * from here to get a much shorter (and loop-free) path.
2684        */
2685       path_destroy (p);
2686       p = path_new (0);
2687     }
2688     if (p->length > 0 && id == p->peers[p->length - 1])
2689     {
2690       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "   Optimizing 1 hop out.\n");
2691       GNUNET_PEER_change_rc (id, -1);
2692     }
2693     else
2694     {
2695       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "   Adding from PUT: %s.\n",
2696                   GNUNET_i2s (&put_path[i]));
2697       p->length++;
2698       p->peers = GNUNET_realloc (p->peers, sizeof (GNUNET_PEER_Id) * p->length);
2699       p->peers[p->length - 1] = id;
2700     }
2701   }
2702 #if MESH_DEBUG
2703   if (get_path_length > 0)
2704     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "   (first of GET: %s)\n",
2705                 GNUNET_i2s (&get_path[0]));
2706   if (put_path_length > 0)
2707     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "   (first of PUT: %s)\n",
2708                 GNUNET_i2s (&put_path[0]));
2709   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "   In total: %d hops\n",
2710               p->length);
2711   for (i = 0; i < p->length; i++)
2712   {
2713     struct GNUNET_PeerIdentity peer_id;
2714
2715     GNUNET_PEER_resolve (p->peers[i], &peer_id);
2716     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "       %u: %s\n", p->peers[i],
2717                 GNUNET_i2s (&peer_id));
2718   }
2719 #endif
2720   return p;
2721 }
2722
2723
2724 /**
2725  * Adds a path to the peer_infos of all the peers in the path
2726  *
2727  * @param p Path to process.
2728  * @param confirmed Whether we know if the path works or not.
2729  */
2730 static void
2731 path_add_to_peers (struct MeshPeerPath *p, int confirmed)
2732 {
2733   unsigned int i;
2734
2735   /* TODO: invert and add */
2736   for (i = 0; i < p->length && p->peers[i] != myid; i++) /* skip'em */ ;
2737   for (i++; i < p->length; i++)
2738   {
2739     struct MeshPeerInfo *aux;
2740     struct MeshPeerPath *copy;
2741
2742     aux = peer_info_get_short (p->peers[i]);
2743     copy = path_duplicate (p);
2744     copy->length = i + 1;
2745     peer_info_add_path (aux, copy, GNUNET_NO);
2746   }
2747 }
2748
2749
2750 /**
2751  * Send keepalive packets for a peer
2752  *
2753  * @param cls Closure (tunnel for which to send the keepalive).
2754  * @param tc Notification context.
2755  *
2756  * TODO: implement explicit multicast keepalive?
2757  */
2758 static void
2759 path_refresh (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc);
2760
2761
2762 /**
2763  * Search for a tunnel among the incoming tunnels
2764  *
2765  * @param tid the local id of the tunnel
2766  *
2767  * @return tunnel handler, NULL if doesn't exist
2768  */
2769 static struct MeshTunnel *
2770 tunnel_get_incoming (MESH_TunnelNumber tid)
2771 {
2772   struct GNUNET_HashCode hash;
2773
2774   GNUNET_assert (tid >= GNUNET_MESH_LOCAL_TUNNEL_ID_SERV);
2775   GNUNET_CRYPTO_hash (&tid, sizeof (MESH_TunnelNumber), &hash);
2776   return GNUNET_CONTAINER_multihashmap_get (incoming_tunnels, &hash);
2777 }
2778
2779
2780 /**
2781  * Search for a tunnel among the tunnels for a client
2782  *
2783  * @param c the client whose tunnels to search in
2784  * @param tid the local id of the tunnel
2785  *
2786  * @return tunnel handler, NULL if doesn't exist
2787  */
2788 static struct MeshTunnel *
2789 tunnel_get_by_local_id (struct MeshClient *c, MESH_TunnelNumber tid)
2790 {
2791   if (tid >= GNUNET_MESH_LOCAL_TUNNEL_ID_SERV)
2792   {
2793     return tunnel_get_incoming (tid);
2794   }
2795   else
2796   {
2797     struct GNUNET_HashCode hash;
2798
2799     GNUNET_CRYPTO_hash (&tid, sizeof (MESH_TunnelNumber), &hash);
2800     return GNUNET_CONTAINER_multihashmap_get (c->own_tunnels, &hash);
2801   }
2802 }
2803
2804
2805 /**
2806  * Search for a tunnel by global ID using PEER_ID
2807  *
2808  * @param pi owner of the tunnel
2809  * @param tid global tunnel number
2810  *
2811  * @return tunnel handler, NULL if doesn't exist
2812  */
2813 static struct MeshTunnel *
2814 tunnel_get_by_pi (GNUNET_PEER_Id pi, MESH_TunnelNumber tid)
2815 {
2816   struct MESH_TunnelID id;
2817   struct GNUNET_HashCode hash;
2818
2819   id.oid = pi;
2820   id.tid = tid;
2821
2822   GNUNET_CRYPTO_hash (&id, sizeof (struct MESH_TunnelID), &hash);
2823   return GNUNET_CONTAINER_multihashmap_get (tunnels, &hash);
2824 }
2825
2826
2827 /**
2828  * Search for a tunnel by global ID using full PeerIdentities
2829  *
2830  * @param oid owner of the tunnel
2831  * @param tid global tunnel number
2832  *
2833  * @return tunnel handler, NULL if doesn't exist
2834  */
2835 static struct MeshTunnel *
2836 tunnel_get (struct GNUNET_PeerIdentity *oid, MESH_TunnelNumber tid)
2837 {
2838   return tunnel_get_by_pi (GNUNET_PEER_search (oid), tid);
2839 }
2840
2841
2842 /**
2843  * Delete an active client from the tunnel.
2844  * 
2845  * @param t Tunnel.
2846  * @param c Client.
2847  */
2848 static void
2849 tunnel_delete_active_client (struct MeshTunnel *t, const struct MeshClient *c)
2850 {
2851   unsigned int i;
2852
2853   for (i = 0; i < t->nclients; i++)
2854   {
2855     if (t->clients[i] == c)
2856     {
2857       t->clients[i] = t->clients[t->nclients - 1];
2858       GNUNET_array_grow (t->clients, t->nclients, t->nclients - 1);
2859       break;
2860     }
2861   }
2862 }
2863
2864
2865 /**
2866  * Delete an ignored client from the tunnel.
2867  * 
2868  * @param t Tunnel.
2869  * @param c Client.
2870  */
2871 static void
2872 tunnel_delete_ignored_client (struct MeshTunnel *t, const struct MeshClient *c)
2873 {
2874   unsigned int i;
2875
2876   for (i = 0; i < t->nignore; i++)
2877   {
2878     if (t->ignore[i] == c)
2879     {
2880       t->ignore[i] = t->ignore[t->nignore - 1];
2881       GNUNET_array_grow (t->ignore, t->nignore, t->nignore - 1);
2882       break;
2883     }
2884   }
2885 }
2886
2887
2888 /**
2889  * Delete a client from the tunnel. It should be only done on
2890  * client disconnection, otherwise use client_ignore_tunnel.
2891  * 
2892  * @param t Tunnel.
2893  * @param c Client.
2894  */
2895 static void
2896 tunnel_delete_client (struct MeshTunnel *t, const struct MeshClient *c)
2897 {
2898   tunnel_delete_ignored_client (t, c);
2899   tunnel_delete_active_client (t, c);
2900 }
2901
2902
2903 /**
2904  * Iterator to free MeshTunnelChildInfo of tunnel children.
2905  *
2906  * @param cls Closure (tunnel info).
2907  * @param key Hash of GNUNET_PEER_Id (unused).
2908  * @param value MeshTunnelChildInfo of the child.
2909  *
2910  * @return always GNUNET_YES, to keep iterating
2911  */
2912 static int
2913 tunnel_destroy_child (void *cls,
2914                       const struct GNUNET_HashCode * key,
2915                       void *value)
2916 {
2917   GNUNET_free (value);
2918   return GNUNET_YES;
2919 }
2920
2921
2922 /**
2923  * Callback used to notify a client owner of a tunnel that a peer has
2924  * disconnected, most likely because of a path change.
2925  *
2926  * @param cls Closure (tunnel this notification is about).
2927  * @param peer_id Short ID of disconnected peer.
2928  */
2929 void
2930 tunnel_notify_client_peer_disconnected (void *cls, GNUNET_PEER_Id peer_id)
2931 {
2932   struct MeshTunnel *t = cls;
2933   struct MeshPeerInfo *peer;
2934   struct MeshPathInfo *path_info;
2935
2936   if (NULL != t->owner && NULL != nc)
2937   {
2938     struct GNUNET_MESH_PeerControl msg;
2939
2940     msg.header.size = htons (sizeof (msg));
2941     msg.header.type = htons (GNUNET_MESSAGE_TYPE_MESH_LOCAL_PEER_DEL);
2942     msg.tunnel_id = htonl (t->local_tid);
2943     GNUNET_PEER_resolve (peer_id, &msg.peer);
2944     GNUNET_SERVER_notification_context_unicast (nc, t->owner->handle,
2945                                                 &msg.header, GNUNET_NO);
2946   }
2947   peer = peer_info_get_short (peer_id);
2948   path_info = GNUNET_malloc (sizeof (struct MeshPathInfo));
2949   path_info->peer = peer;
2950   path_info->t = t;
2951   GNUNET_SCHEDULER_add_now (&peer_info_connect_task, path_info);
2952 }
2953
2954
2955 /**
2956  * Add a peer to a tunnel, accomodating paths accordingly and initializing all
2957  * needed rescources.
2958  * If peer already exists, reevaluate shortest path and change if different.
2959  *
2960  * @param t Tunnel we want to add a new peer to
2961  * @param peer PeerInfo of the peer being added
2962  *
2963  */
2964 static void
2965 tunnel_add_peer (struct MeshTunnel *t, struct MeshPeerInfo *peer)
2966 {
2967   struct GNUNET_PeerIdentity id;
2968   struct MeshPeerPath *best_p;
2969   struct MeshPeerPath *p;
2970   unsigned int best_cost;
2971   unsigned int cost;
2972
2973   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "tunnel_add_peer\n");
2974   GNUNET_PEER_resolve (peer->id, &id);
2975   if (GNUNET_NO ==
2976       GNUNET_CONTAINER_multihashmap_contains (t->peers, &id.hashPubKey))
2977   {
2978     t->peers_total++;
2979     GNUNET_array_append (peer->tunnels, peer->ntunnels, t);
2980     GNUNET_assert (GNUNET_OK ==
2981                    GNUNET_CONTAINER_multihashmap_put (t->peers, &id.hashPubKey,
2982                                                       peer,
2983                                                       GNUNET_CONTAINER_MULTIHASHMAPOPTION_UNIQUE_FAST));
2984   }
2985
2986   if (NULL != (p = peer->path_head))
2987   {
2988     best_p = p;
2989     best_cost = tree_get_path_cost (t->tree, p);
2990     while (NULL != p)
2991     {
2992       if ((cost = tree_get_path_cost (t->tree, p)) < best_cost)
2993       {
2994         best_cost = cost;
2995         best_p = p;
2996       }
2997       p = p->next;
2998     }
2999     tree_add_path (t->tree, best_p, &tunnel_notify_client_peer_disconnected, t);
3000     if (GNUNET_SCHEDULER_NO_TASK == t->path_refresh_task)
3001       t->path_refresh_task =
3002           GNUNET_SCHEDULER_add_delayed (refresh_path_time, &path_refresh, t);
3003   }
3004   else
3005   {
3006     /* Start a DHT get */
3007     peer_info_connect (peer, t);
3008   }
3009   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "tunnel_add_peer END\n");
3010 }
3011
3012 /**
3013  * Add a path to a tunnel which we don't own, just to remember the next hop.
3014  * If destination node was already in the tunnel, the first hop information
3015  * will be replaced with the new path.
3016  *
3017  * @param t Tunnel we want to add a new peer to
3018  * @param p Path to add
3019  * @param own_pos Position of local node in path.
3020  *
3021  */
3022 static void
3023 tunnel_add_path (struct MeshTunnel *t, struct MeshPeerPath *p,
3024                  unsigned int own_pos)
3025 {
3026   struct GNUNET_PeerIdentity id;
3027
3028   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "tunnel_add_path\n");
3029   GNUNET_assert (0 != own_pos);
3030   tree_add_path (t->tree, p, NULL, NULL);
3031   if (own_pos < p->length - 1)
3032   {
3033     GNUNET_PEER_resolve (p->peers[own_pos + 1], &id);
3034     tree_update_first_hops (t->tree, myid, &id);
3035   }
3036   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "tunnel_add_path END\n");
3037 }
3038
3039
3040 /**
3041  * Notifies a tunnel that a connection has broken that affects at least
3042  * some of its peers. Sends a notification towards the root of the tree.
3043  * In case the peer is the owner of the tree, notifies the client that owns
3044  * the tunnel and tries to reconnect.
3045  *
3046  * @param t Tunnel affected.
3047  * @param p1 Peer that got disconnected from p2.
3048  * @param p2 Peer that got disconnected from p1.
3049  *
3050  * @return Short ID of the peer disconnected (either p1 or p2).
3051  *         0 if the tunnel remained unaffected.
3052  */
3053 static GNUNET_PEER_Id
3054 tunnel_notify_connection_broken (struct MeshTunnel *t, GNUNET_PEER_Id p1,
3055                                  GNUNET_PEER_Id p2)
3056 {
3057   GNUNET_PEER_Id pid;
3058
3059   pid =
3060       tree_notify_connection_broken (t->tree, p1, p2,
3061                                      &tunnel_notify_client_peer_disconnected,
3062                                      t);
3063   if (myid != p1 && myid != p2)
3064   {
3065     return pid;
3066   }
3067   if (pid != myid)
3068   {
3069     if (tree_get_predecessor (t->tree) != 0)
3070     {
3071       /* We are the peer still connected, notify owner of the disconnection. */
3072       struct GNUNET_MESH_PathBroken msg;
3073       struct GNUNET_PeerIdentity neighbor;
3074
3075       msg.header.size = htons (sizeof (msg));
3076       msg.header.type = htons (GNUNET_MESSAGE_TYPE_MESH_PATH_BROKEN);
3077       GNUNET_PEER_resolve (t->id.oid, &msg.oid);
3078       msg.tid = htonl (t->id.tid);
3079       msg.peer1 = my_full_id;
3080       GNUNET_PEER_resolve (pid, &msg.peer2);
3081       GNUNET_PEER_resolve (tree_get_predecessor (t->tree), &neighbor);
3082       send_message (&msg.header, &neighbor, t);
3083     }
3084   }
3085   return pid;
3086 }
3087
3088
3089 /**
3090  * Send a multicast packet to a neighbor.
3091  *
3092  * @param cls Closure (Info about the multicast packet)
3093  * @param neighbor_id Short ID of the neighbor to send the packet to.
3094  */
3095 static void
3096 tunnel_send_multicast_iterator (void *cls, GNUNET_PEER_Id neighbor_id)
3097 {
3098   struct MeshData *mdata = cls;
3099   struct MeshTransmissionDescriptor *info;
3100   struct GNUNET_PeerIdentity neighbor;
3101
3102   info = GNUNET_malloc (sizeof (struct MeshTransmissionDescriptor));
3103
3104   info->mesh_data = mdata;
3105   (*(mdata->reference_counter)) ++;
3106   info->destination = neighbor_id;
3107   GNUNET_PEER_resolve (neighbor_id, &neighbor);
3108   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "   sending to %s...\n",
3109               GNUNET_i2s (&neighbor));
3110   info->peer = peer_info_get (&neighbor);
3111   GNUNET_assert (NULL != info->peer);
3112   queue_add(info,
3113             GNUNET_MESSAGE_TYPE_MESH_MULTICAST,
3114             info->mesh_data->data_len,
3115             info->peer,
3116             mdata->t);
3117 }
3118
3119
3120 /**
3121  * Send a message in a tunnel in multicast, sending a copy to each child node
3122  * down the local one in the tunnel tree.
3123  *
3124  * @param t Tunnel in which to send the data.
3125  * @param msg Message to be sent.
3126  * @param internal Has the service generated this message?
3127  */
3128 static void
3129 tunnel_send_multicast (struct MeshTunnel *t,
3130                        const struct GNUNET_MessageHeader *msg,
3131                        int internal)
3132 {
3133   struct MeshData *mdata;
3134
3135   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
3136               " sending a multicast packet...\n");
3137   mdata = GNUNET_malloc (sizeof (struct MeshData));
3138   mdata->data_len = ntohs (msg->size);
3139   mdata->reference_counter = GNUNET_malloc (sizeof (unsigned int));
3140   mdata->t = t;
3141   mdata->data = GNUNET_malloc (mdata->data_len);
3142   memcpy (mdata->data, msg, mdata->data_len);
3143   if (ntohs (msg->type) == GNUNET_MESSAGE_TYPE_MESH_MULTICAST)
3144   {
3145     struct GNUNET_MESH_Multicast *mcast;
3146
3147     mcast = (struct GNUNET_MESH_Multicast *) mdata->data;
3148     mcast->ttl = htonl (ntohl (mcast->ttl) - 1);
3149     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  data packet, ttl: %u\n",
3150                 ntohl (mcast->ttl));
3151   }
3152   else
3153   {
3154     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  not a data packet, no ttl\n");
3155   }
3156   if (NULL != t->owner && GNUNET_YES != t->owner->shutting_down
3157       && GNUNET_NO == internal)
3158   {
3159     mdata->task = GNUNET_malloc (sizeof (GNUNET_SCHEDULER_TaskIdentifier));
3160     (*(mdata->task)) =
3161         GNUNET_SCHEDULER_add_delayed (unacknowledged_wait_time, &client_allow_send,
3162                                       mdata);
3163     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "timeout task %u\n",
3164                 *(mdata->task));
3165   }
3166
3167   tree_iterate_children (t->tree, &tunnel_send_multicast_iterator, mdata);
3168   if (*(mdata->reference_counter) == 0)
3169   {
3170     GNUNET_free (mdata->data);
3171     GNUNET_free (mdata->reference_counter);
3172     if (NULL != mdata->task)
3173     {
3174       GNUNET_SCHEDULER_cancel(*(mdata->task));
3175       GNUNET_free (mdata->task);
3176       GNUNET_SERVER_receive_done(t->owner->handle, GNUNET_OK);
3177     }
3178     // FIXME change order?
3179     GNUNET_free (mdata);
3180   }
3181   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
3182               " sending a multicast packet done\n");
3183   return;
3184 }
3185
3186
3187 /**
3188  * Increase the SKIP value of all peers that
3189  * have not received a unicast message.
3190  *
3191  * @param cls Closure (ID of the peer that HAS received the message).
3192  * @param key ID of the neighbor.
3193  * @param value Information about the neighbor.
3194  *
3195  * @return GNUNET_YES to keep iterating.
3196  */
3197 static int
3198 tunnel_add_skip (void *cls,
3199                  const struct GNUNET_HashCode * key,
3200                  void *value)
3201 {
3202   struct GNUNET_PeerIdentity *neighbor = cls;
3203   struct MeshTunnelChildInfo *cinfo = value;
3204
3205   /* TODO compare only pointers? key == neighbor? */
3206   if (0 == memcmp (&neighbor->hashPubKey, key, sizeof (struct GNUNET_HashCode)))
3207   {
3208     return GNUNET_YES;
3209   }
3210   cinfo->skip++;
3211   return GNUNET_YES;
3212 }
3213
3214
3215
3216 /**
3217  * Iterator to get the appropiate ACK value from all children nodes.
3218  *
3219  * @param cls Closue (tunnel).
3220  * @param id Id of the child node.
3221  */
3222 static void
3223 tunnel_get_child_ack (void *cls,
3224                       GNUNET_PEER_Id id)
3225 {
3226   struct GNUNET_PeerIdentity peer_id;
3227   struct MeshTunnelChildInfo *cinfo;
3228   struct MeshTunnel *t = cls;
3229   uint32_t ack;
3230
3231   GNUNET_PEER_resolve (id, &peer_id);
3232   cinfo = GNUNET_CONTAINER_multihashmap_get (t->children_fc,
3233                                              &peer_id.hashPubKey);
3234   if (NULL == cinfo)
3235   {
3236     cinfo = GNUNET_malloc (sizeof (struct MeshTunnelChildInfo));
3237     cinfo->id = id;
3238     cinfo->pid = t->pid;
3239     cinfo->skip = t->pid;
3240     cinfo->max_pid = ack =  t->pid + 1;
3241     GNUNET_assert (GNUNET_OK ==
3242                    GNUNET_CONTAINER_multihashmap_put(t->children_fc,
3243                                                      &peer_id.hashPubKey,
3244                                                      cinfo,
3245                                                      GNUNET_CONTAINER_MULTIHASHMAPOPTION_UNIQUE_FAST));
3246   }
3247   else
3248   {
3249     ack = cinfo->max_pid;
3250   }
3251
3252   if (0 == t->max_child_ack)
3253     t->max_child_ack = ack;
3254
3255   if (GNUNET_YES == t->speed_min)
3256   {
3257     t->max_child_ack = t->max_child_ack > ack ? ack : t->max_child_ack;
3258   }
3259   else
3260   {
3261     t->max_child_ack = t->max_child_ack > ack ? t->max_child_ack : ack;
3262   }
3263
3264 }
3265
3266
3267 /**
3268  * Get the maximum PID allowed to transmit to any
3269  * tunnel child of the local peer.
3270  *
3271  * @param t Tunnel.
3272  *
3273  * @return Maximum PID allowed.
3274  */
3275 static uint32_t
3276 tunnel_get_children_ack (struct MeshTunnel *t)
3277 {
3278   t->max_child_ack = 0;
3279   tree_iterate_children (t->tree, tunnel_get_child_ack, t);
3280   return t->max_child_ack;
3281 }
3282
3283
3284 /**
3285  * Get the current ack value for a tunnel, taking in account the tunnel
3286  * mode and the status of all children nodes.
3287  *
3288  * @param t Tunnel.
3289  *
3290  * @return Maximum PID allowed.
3291  */
3292 static uint32_t
3293 tunnel_get_ack (struct MeshTunnel *t)
3294 {
3295   uint32_t count;
3296   uint32_t buffer_free;
3297   uint32_t child_ack;
3298   uint32_t ack;
3299
3300   count = t->pid - t->skip;
3301   buffer_free = t->queue_max - t->queue_n;
3302   ack = count + buffer_free;
3303   child_ack = tunnel_get_children_ack (t);
3304
3305   if (GNUNET_YES == t->speed_min)
3306   {
3307     ack = child_ack > ack ? ack : child_ack;
3308   }
3309   else
3310   {
3311     ack = child_ack > ack ? child_ack : ack;
3312   }
3313   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "c %u, bf %u, ch %u\n", count, buffer_free, child_ack);
3314   return ack;
3315 }
3316
3317
3318 /**
3319  * Send an ACK informing the predecessor about the available buffer space.
3320  * If buffering is off, send only on behalf of children or self if endpoint.
3321  * If buffering is on, send when sent to children and buffer space is free.
3322  * 
3323  * @param t Tunnel on which to send the ACK.
3324  */
3325 static void
3326 tunnel_send_ack (struct MeshTunnel *t, uint16_t type)
3327 {
3328   struct GNUNET_MESH_ACK msg;
3329   struct GNUNET_PeerIdentity id;
3330   uint32_t ack;
3331
3332   /* Is it after unicast / multicast retransmission? */
3333   if (GNUNET_MESSAGE_TYPE_MESH_ACK != type)
3334   {
3335     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "ACK via DATA retransmission\n");
3336     if (GNUNET_YES == t->nobuffer)
3337     {
3338       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Not sending ACK, nobuffer\n");
3339       return;
3340     }
3341     if (t->queue_max > t->queue_n * 2)
3342     {
3343       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Not sending ACK, buffer free\n");
3344       return;
3345     }
3346   }
3347
3348   /* Ok, ACK might be necessary, what PID to ACK? */
3349   ack = tunnel_get_ack (t);
3350
3351   /* If speed_min and not all children have ack'd, dont send yet */
3352   if (ack == t->last_ack)
3353   {
3354     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Not sending ACK, not ready\n");
3355     return;
3356   }
3357
3358   t->last_ack = ack;
3359   msg.pid = htonl (ack);
3360
3361   GNUNET_PEER_resolve (tree_get_predecessor (t->tree), &id);
3362
3363   msg.header.size = htons (sizeof (msg));
3364   msg.header.type = htons (GNUNET_MESSAGE_TYPE_MESH_ACK);
3365   msg.tid = htonl (t->id.tid);
3366   GNUNET_PEER_resolve(t->id.oid, &msg.oid);
3367   send_message (&msg.header, &id, t);
3368 }
3369
3370
3371 /**
3372  * Send a message to all peers in this tunnel that the tunnel is no longer
3373  * valid.
3374  *
3375  * @param t The tunnel whose peers to notify.
3376  */
3377 static void
3378 tunnel_send_destroy (struct MeshTunnel *t)
3379 {
3380   struct GNUNET_MESH_TunnelDestroy msg;
3381
3382   msg.header.size = htons (sizeof (msg));
3383   msg.header.type = htons (GNUNET_MESSAGE_TYPE_MESH_TUNNEL_DESTROY);
3384   GNUNET_PEER_resolve (t->id.oid, &msg.oid);
3385   msg.tid = htonl (t->id.tid);
3386   tunnel_send_multicast (t, &msg.header, GNUNET_NO);
3387 }
3388
3389
3390 /**
3391  * Cancel all transmissions towards a neighbor that belong to a certain tunnel.
3392  *
3393  * @param cls Closure (Tunnel which to cancel).
3394  * @param neighbor_id Short ID of the neighbor to whom cancel the transmissions.
3395  */
3396 static void
3397 tunnel_cancel_queues (void *cls, GNUNET_PEER_Id neighbor_id)
3398 {
3399   struct MeshTunnel *t = cls;
3400   struct MeshPeerInfo *peer_info;
3401   struct MeshPeerQueue *pq;
3402   struct MeshPeerQueue *next;
3403
3404   peer_info = peer_info_get_short (neighbor_id);
3405   for (pq = peer_info->queue_head; NULL != pq; pq = next)
3406   {
3407     next = pq->next;
3408     if (pq->tunnel == t)
3409     {
3410       queue_destroy (pq, GNUNET_YES);
3411     }
3412   }
3413   if (NULL == peer_info->queue_head && NULL != peer_info->core_transmit)
3414   {
3415     GNUNET_CORE_notify_transmit_ready_cancel(peer_info->core_transmit);
3416     peer_info->core_transmit = NULL;
3417   }
3418 }
3419
3420 /**
3421  * Destroy the tunnel and free any allocated resources linked to it.
3422  *
3423  * @param t the tunnel to destroy
3424  *
3425  * @return GNUNET_OK on success
3426  */
3427 static int
3428 tunnel_destroy (struct MeshTunnel *t)
3429 {
3430   struct MeshClient *c;
3431   struct GNUNET_HashCode hash;
3432   unsigned int i;
3433   int r;
3434
3435   if (NULL == t)
3436     return GNUNET_OK;
3437
3438   tree_iterate_children (t->tree, &tunnel_cancel_queues, t);
3439
3440   r = GNUNET_OK;
3441   c = t->owner;
3442 #if MESH_DEBUG
3443   {
3444     struct GNUNET_PeerIdentity id;
3445
3446     GNUNET_PEER_resolve (t->id.oid, &id);
3447     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "destroying tunnel %s [%x]\n",
3448                 GNUNET_i2s (&id), t->id.tid);
3449     if (NULL != c)
3450       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  by client %u\n", c->id);
3451   }
3452 #endif
3453
3454   GNUNET_CRYPTO_hash (&t->id, sizeof (struct MESH_TunnelID), &hash);
3455   if (GNUNET_YES != GNUNET_CONTAINER_multihashmap_remove (tunnels, &hash, t))
3456   {
3457     r = GNUNET_SYSERR;
3458   }
3459
3460   GNUNET_CRYPTO_hash (&t->local_tid, sizeof (MESH_TunnelNumber), &hash);
3461   if (NULL != c &&
3462       GNUNET_YES !=
3463       GNUNET_CONTAINER_multihashmap_remove (c->own_tunnels, &hash, t))
3464   {
3465     r = GNUNET_SYSERR;
3466   }
3467   GNUNET_CRYPTO_hash (&t->local_tid_dest, sizeof (MESH_TunnelNumber), &hash);
3468   for (i = 0; i < t->nclients; i++)
3469   {
3470     c = t->clients[i];
3471     if (GNUNET_YES !=
3472           GNUNET_CONTAINER_multihashmap_remove (c->incoming_tunnels, &hash, t))
3473     {
3474       r = GNUNET_SYSERR;
3475     }
3476   }
3477   for (i = 0; i < t->nignore; i++)
3478   {
3479     c = t->ignore[i];
3480     if (GNUNET_YES !=
3481           GNUNET_CONTAINER_multihashmap_remove (c->ignore_tunnels, &hash, t))
3482     {
3483       r = GNUNET_SYSERR;
3484     }
3485   }
3486   if (t->nclients > 0)
3487   {
3488     if (GNUNET_YES !=
3489         GNUNET_CONTAINER_multihashmap_remove (incoming_tunnels, &hash, t))
3490     {
3491       r = GNUNET_SYSERR;
3492     }
3493     GNUNET_free (t->clients);
3494   }
3495   if (NULL != t->peers)
3496   {
3497     GNUNET_CONTAINER_multihashmap_iterate (t->peers, &peer_info_delete_tunnel,
3498                                            t);
3499     GNUNET_CONTAINER_multihashmap_destroy (t->peers);
3500   }
3501
3502   GNUNET_CONTAINER_multihashmap_iterate (t->children_fc,
3503                                          &tunnel_destroy_child,
3504                                          t);
3505   GNUNET_CONTAINER_multihashmap_destroy (t->children_fc);
3506
3507   tree_destroy (t->tree);
3508
3509   if (NULL != t->regex_ctx)
3510     regex_cancel_search (t->regex_ctx);
3511   if (NULL != t->dht_get_type)
3512     GNUNET_DHT_get_stop (t->dht_get_type);
3513   if (GNUNET_SCHEDULER_NO_TASK != t->timeout_task)
3514     GNUNET_SCHEDULER_cancel (t->timeout_task);
3515   if (GNUNET_SCHEDULER_NO_TASK != t->path_refresh_task)
3516     GNUNET_SCHEDULER_cancel (t->path_refresh_task);
3517
3518   n_tunnels--;
3519   GNUNET_STATISTICS_update (stats, "# tunnels", -1, GNUNET_NO);
3520   GNUNET_assert (0 <= n_tunnels);
3521   GNUNET_free (t);
3522   return r;
3523 }
3524
3525
3526 /**
3527  * Create a new tunnel
3528  * 
3529  * @param owner Who is the owner of the tunnel (short ID).
3530  * @param tid Tunnel Number of the tunnel.
3531  * @param client Clients that owns the tunnel, NULL for foreign tunnels.
3532  * @param local Tunnel Number for the tunnel, for the client point of view.
3533  * 
3534  * @return A new initialized tunnel. NULL on error.
3535  */
3536 static struct MeshTunnel *
3537 tunnel_new (GNUNET_PEER_Id owner,
3538             MESH_TunnelNumber tid,
3539             struct MeshClient *client,
3540             MESH_TunnelNumber local)
3541 {
3542   struct MeshTunnel *t;
3543   struct GNUNET_HashCode hash;
3544   
3545   if (n_tunnels >= max_tunnels && NULL == client)
3546     return NULL;
3547
3548   t = GNUNET_malloc (sizeof (struct MeshTunnel));
3549   t->id.oid = owner;
3550   t->id.tid = tid;
3551   t->queue_max = (max_msgs_queue / max_tunnels) + 1;
3552   t->tree = tree_new (owner);
3553   t->owner = client;
3554   t->local_tid = local;
3555   t->children_fc = GNUNET_CONTAINER_multihashmap_create (8);
3556   n_tunnels++;
3557   GNUNET_STATISTICS_update (stats, "# tunnels", 1, GNUNET_NO);
3558
3559   GNUNET_CRYPTO_hash (&t->id, sizeof (struct MESH_TunnelID), &hash);
3560   if (GNUNET_OK !=
3561       GNUNET_CONTAINER_multihashmap_put (tunnels, &hash, t,
3562                                          GNUNET_CONTAINER_MULTIHASHMAPOPTION_UNIQUE_ONLY))
3563   {
3564     GNUNET_break (0);
3565     tunnel_destroy (t);
3566     if (NULL != client)
3567       GNUNET_SERVER_receive_done (client->handle, GNUNET_SYSERR);
3568     return NULL;
3569   }
3570
3571   if (NULL != client)
3572   {
3573     GNUNET_CRYPTO_hash (&t->local_tid, sizeof (MESH_TunnelNumber), &hash);
3574     if (GNUNET_OK !=
3575         GNUNET_CONTAINER_multihashmap_put (client->own_tunnels, &hash, t,
3576                                           GNUNET_CONTAINER_MULTIHASHMAPOPTION_UNIQUE_ONLY))
3577     {
3578       GNUNET_break (0);
3579       tunnel_destroy (t);
3580       GNUNET_SERVER_receive_done (client->handle, GNUNET_SYSERR);
3581       return NULL;
3582     }
3583   }
3584
3585   return t;
3586 }
3587
3588
3589 /**
3590  * Removes an explicit path from a tunnel, freeing all intermediate nodes
3591  * that are no longer needed, as well as nodes of no longer reachable peers.
3592  * The tunnel itself is also destoyed if results in a remote empty tunnel.
3593  *
3594  * @param t Tunnel from which to remove the path.
3595  * @param peer Short id of the peer which should be removed.
3596  */
3597 static void
3598 tunnel_delete_peer (struct MeshTunnel *t, GNUNET_PEER_Id peer)
3599 {
3600   if (GNUNET_NO == tree_del_peer (t->tree, peer, NULL, NULL))
3601     tunnel_destroy (t);
3602 }
3603
3604
3605 /**
3606  * tunnel_destroy_iterator: iterator for deleting each tunnel that belongs to a
3607  * client when the client disconnects. If the client is not the owner, the
3608  * owner will get notified if no more clients are in the tunnel and the client
3609  * get removed from the tunnel's list.
3610  *
3611  * @param cls closure (client that is disconnecting)
3612  * @param key the hash of the local tunnel id (used to access the hashmap)
3613  * @param value the value stored at the key (tunnel to destroy)
3614  *
3615  * @return GNUNET_OK on success
3616  */
3617 static int
3618 tunnel_destroy_iterator (void *cls, const struct GNUNET_HashCode * key, void *value)
3619 {
3620   struct MeshTunnel *t = value;
3621   struct MeshClient *c = cls;
3622   int r;
3623
3624   send_client_tunnel_disconnect(t, c);
3625   if (c != t->owner)
3626   {
3627     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
3628                 "Client %u is destination, keeping the tunnel alive.\n", c->id);
3629     tunnel_delete_client(t, c);
3630     client_delete_tunnel(c, t);
3631     return GNUNET_OK;
3632   }
3633   tunnel_send_destroy(t);
3634   r = tunnel_destroy (t);
3635   return r;
3636 }
3637
3638
3639 /**
3640  * Timeout function, destroys tunnel if called
3641  *
3642  * @param cls Closure (tunnel to destroy).
3643  * @param tc TaskContext
3644  */
3645 static void
3646 tunnel_timeout (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
3647 {
3648   struct MeshTunnel *t = cls;
3649
3650   if (0 != (tc->reason & GNUNET_SCHEDULER_REASON_SHUTDOWN))
3651     return;
3652   t->timeout_task = GNUNET_SCHEDULER_NO_TASK;
3653   tunnel_destroy (t);
3654 }
3655
3656 /**
3657  * Resets the tunnel timeout. Starts it if no timeout was running.
3658  *
3659  * @param t Tunnel whose timeout to reset.
3660  */
3661 static void
3662 tunnel_reset_timeout (struct MeshTunnel *t)
3663 {
3664   if (GNUNET_SCHEDULER_NO_TASK != t->timeout_task)
3665     GNUNET_SCHEDULER_cancel (t->timeout_task);
3666   t->timeout_task =
3667       GNUNET_SCHEDULER_add_delayed (GNUNET_TIME_relative_multiply
3668                                     (refresh_path_time, 4), &tunnel_timeout, t);
3669 }
3670
3671
3672 /******************************************************************************/
3673 /****************      MESH NETWORK HANDLER HELPERS     ***********************/
3674 /******************************************************************************/
3675
3676 /**
3677  * Function to send a create path packet to a peer.
3678  *
3679  * @param cls closure
3680  * @param size number of bytes available in buf
3681  * @param buf where the callee should write the message
3682  * @return number of bytes written to buf
3683  */
3684 static size_t
3685 send_core_path_create (void *cls, size_t size, void *buf)
3686 {
3687   struct MeshPathInfo *info = cls;
3688   struct GNUNET_MESH_ManipulatePath *msg;
3689   struct GNUNET_PeerIdentity *peer_ptr;
3690   struct MeshTunnel *t = info->t;
3691   struct MeshPeerPath *p = info->path;
3692   size_t size_needed;
3693   uint32_t opt;
3694   int i;
3695
3696   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "CREATE PATH sending...\n");
3697   size_needed =
3698       sizeof (struct GNUNET_MESH_ManipulatePath) +
3699       p->length * sizeof (struct GNUNET_PeerIdentity);
3700
3701   if (size < size_needed || NULL == buf)
3702   {
3703     GNUNET_break (0);
3704     return 0;
3705   }
3706   msg = (struct GNUNET_MESH_ManipulatePath *) buf;
3707   msg->header.size = htons (size_needed);
3708   msg->header.type = htons (GNUNET_MESSAGE_TYPE_MESH_PATH_CREATE);
3709   msg->tid = ntohl (t->id.tid);
3710
3711   if (GNUNET_YES == t->speed_min)
3712     opt = MESH_TUNNEL_OPT_SPEED_MIN;
3713   if (GNUNET_YES == t->nobuffer)
3714     opt |= MESH_TUNNEL_OPT_NOBUFFER;
3715   msg->opt = htonl(opt);
3716
3717   peer_ptr = (struct GNUNET_PeerIdentity *) &msg[1];
3718   for (i = 0; i < p->length; i++)
3719   {
3720     GNUNET_PEER_resolve (p->peers[i], peer_ptr++);
3721   }
3722
3723   path_destroy (p);
3724   GNUNET_free (info);
3725
3726   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
3727               "CREATE PATH (%u bytes long) sent!\n", size_needed);
3728   return size_needed;
3729 }
3730
3731
3732 /**
3733  * Fill the core buffer 
3734  *
3735  * @param cls closure (data itself)
3736  * @param size number of bytes available in buf
3737  * @param buf where the callee should write the message
3738  *
3739  * @return number of bytes written to buf
3740  */
3741 static size_t
3742 send_core_data_multicast (void *cls, size_t size, void *buf)
3743 {
3744   struct MeshTransmissionDescriptor *info = cls;
3745   size_t total_size;
3746
3747   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Multicast callback.\n");
3748   GNUNET_assert (NULL != info);
3749   GNUNET_assert (NULL != info->peer);
3750   total_size = info->mesh_data->data_len;
3751   GNUNET_assert (total_size < GNUNET_SERVER_MAX_MESSAGE_SIZE);
3752
3753   if (total_size > size)
3754   {
3755     GNUNET_break (0);
3756     return 0;
3757   }
3758   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, " copying data...\n");
3759   memcpy (buf, info->mesh_data->data, total_size);
3760 #if MESH_DEBUG
3761   {
3762     struct GNUNET_MESH_Multicast *mc;
3763     struct GNUNET_MessageHeader *mh;
3764
3765     mh = buf;
3766     if (ntohs (mh->type) == GNUNET_MESSAGE_TYPE_MESH_MULTICAST)
3767     {
3768       mc = (struct GNUNET_MESH_Multicast *) mh;
3769       mh = (struct GNUNET_MessageHeader *) &mc[1];
3770       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
3771                   " multicast, payload type %u\n", ntohs (mh->type));
3772       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
3773                   " multicast, payload size %u\n", ntohs (mh->size));
3774     }
3775     else
3776     {
3777       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, " type %u\n",
3778                   ntohs (mh->type));
3779     }
3780   }
3781 #endif
3782   data_descriptor_decrement_rc (info->mesh_data);
3783   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "freeing info...\n");
3784   GNUNET_free (info);
3785   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "return %u\n", total_size);
3786   return total_size;
3787 }
3788
3789
3790 /**
3791  * Creates a path ack message in buf and frees all unused resources.
3792  *
3793  * @param cls closure (MeshTransmissionDescriptor)
3794  * @param size number of bytes available in buf
3795  * @param buf where the callee should write the message
3796  * @return number of bytes written to buf
3797  */
3798 static size_t
3799 send_core_path_ack (void *cls, size_t size, void *buf)
3800 {
3801   struct MeshTransmissionDescriptor *info = cls;
3802   struct GNUNET_MESH_PathACK *msg = buf;
3803
3804   GNUNET_assert (NULL != info);
3805   if (sizeof (struct GNUNET_MESH_PathACK) > size)
3806   {
3807     GNUNET_break (0);
3808     return 0;
3809   }
3810   msg->header.size = htons (sizeof (struct GNUNET_MESH_PathACK));
3811   msg->header.type = htons (GNUNET_MESSAGE_TYPE_MESH_PATH_ACK);
3812   GNUNET_PEER_resolve (info->origin->oid, &msg->oid);
3813   msg->tid = htonl (info->origin->tid);
3814   msg->peer_id = my_full_id;
3815
3816   GNUNET_free (info);
3817   /* TODO add signature */
3818
3819   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "PATH ACK sent!\n");
3820   return sizeof (struct GNUNET_MESH_PathACK);
3821 }
3822
3823
3824 /**
3825  * Free a transmission that was already queued with all resources
3826  * associated to the request.
3827  *
3828  * @param queue Queue handler to cancel.
3829  * @param clear_cls Is it necessary to free associated cls?
3830  */
3831 static void
3832 queue_destroy (struct MeshPeerQueue *queue, int clear_cls)
3833 {
3834   struct MeshTransmissionDescriptor *dd;
3835   struct MeshPathInfo *path_info;
3836
3837   if (GNUNET_YES == clear_cls)
3838   {
3839     switch (queue->type)
3840     {
3841     case GNUNET_MESSAGE_TYPE_MESH_UNICAST:
3842     case GNUNET_MESSAGE_TYPE_MESH_MULTICAST:
3843     case GNUNET_MESSAGE_TYPE_MESH_TO_ORIGIN:
3844         GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "   type payload\n");
3845         dd = queue->cls;
3846         data_descriptor_decrement_rc (dd->mesh_data);
3847         break;
3848     case GNUNET_MESSAGE_TYPE_MESH_PATH_CREATE:
3849         GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "   type create path\n");
3850         path_info = queue->cls;
3851         path_destroy (path_info->path);
3852         break;
3853     default:
3854         GNUNET_break (0);
3855         GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "   type unknown!\n");
3856     }
3857     GNUNET_free_non_null (queue->cls);
3858   }
3859   GNUNET_CONTAINER_DLL_remove (queue->peer->queue_head,
3860                                queue->peer->queue_tail,
3861                                queue);
3862   GNUNET_free (queue);
3863 }
3864
3865
3866 /**
3867   * Core callback to write a queued packet to core buffer
3868   *
3869   * @param cls Closure (peer info).
3870   * @param size Number of bytes available in buf.
3871   * @param buf Where the to write the message.
3872   *
3873   * @return number of bytes written to buf
3874   */
3875 static size_t
3876 queue_send (void *cls, size_t size, void *buf)
3877 {
3878     struct MeshPeerInfo *peer = cls;
3879     struct GNUNET_MessageHeader *msg;
3880     struct MeshPeerQueue *queue;
3881     struct MeshTunnel *t;
3882     size_t data_size;
3883
3884     peer->core_transmit = NULL;
3885     queue = peer->queue_head;
3886
3887     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "********* Queue send\n");
3888
3889     /* If queue is empty, send should have been cancelled */
3890     if (NULL == queue)
3891     {
3892         GNUNET_break(0);
3893         return 0;
3894     }
3895     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "*********   not empty\n");
3896
3897     /* Check if buffer size is enough for the message */
3898     if (queue->size > size)
3899     {
3900         struct GNUNET_PeerIdentity id;
3901
3902         GNUNET_PEER_resolve (peer->id, &id);
3903         peer->core_transmit =
3904             GNUNET_CORE_notify_transmit_ready(core_handle,
3905                                               0,
3906                                               0,
3907                                               GNUNET_TIME_UNIT_FOREVER_REL,
3908                                               &id,
3909                                               queue->size,
3910                                               &queue_send,
3911                                               peer);
3912         return 0;
3913     }
3914     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "*********   size ok\n");
3915
3916     t = queue->tunnel;
3917     t->queue_n--;
3918
3919     /* Fill buf */
3920     switch (queue->type)
3921     {
3922         case 0:
3923             GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "*********   raw\n");
3924             data_size = send_core_data_raw (queue->cls, size, buf);
3925             msg = (struct GNUNET_MessageHeader *) buf;
3926             if (ntohs (msg->type) == GNUNET_MESSAGE_TYPE_MESH_UNICAST)
3927               tunnel_send_ack (t, GNUNET_MESSAGE_TYPE_MESH_UNICAST);
3928             break;
3929         case GNUNET_MESSAGE_TYPE_MESH_MULTICAST:
3930             GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "*********   multicast\n");
3931             data_size = send_core_data_multicast(queue->cls, size, buf);
3932             tunnel_send_ack (t, GNUNET_MESSAGE_TYPE_MESH_MULTICAST);
3933             break;
3934         case GNUNET_MESSAGE_TYPE_MESH_PATH_CREATE:
3935             GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "*********   path create\n");
3936             data_size = send_core_path_create(queue->cls, size, buf);
3937             break;
3938         case GNUNET_MESSAGE_TYPE_MESH_PATH_ACK:
3939             GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "*********   path ack\n");
3940             data_size = send_core_path_ack(queue->cls, size, buf);
3941             break;
3942         default:
3943             GNUNET_break (0);
3944             GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "*********   type unknown\n");
3945             data_size = 0;
3946     }
3947
3948     /* Free queue, but cls was freed by send_core_* */
3949     queue_destroy (queue, GNUNET_NO);
3950
3951     if (GNUNET_YES == t->destroy && 0 == t->queue_n)
3952     {
3953       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "*********  destroying tunnel!\n");
3954       tunnel_destroy (t);
3955     }
3956
3957     /* If more data in queue, send next */
3958     if (NULL != peer->queue_head)
3959     {
3960         struct GNUNET_PeerIdentity id;
3961
3962         GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "*********   more data!\n");
3963         GNUNET_PEER_resolve (peer->id, &id);
3964         peer->core_transmit =
3965             GNUNET_CORE_notify_transmit_ready(core_handle,
3966                                               0,
3967                                               0,
3968                                               GNUNET_TIME_UNIT_FOREVER_REL,
3969                                               &id,
3970                                               peer->queue_head->size,
3971                                               &queue_send,
3972                                               peer);
3973     }
3974     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "*********   return %d\n", data_size);
3975     return data_size;
3976 }
3977
3978
3979 /**
3980  * Queue and pass message to core when possible.
3981  *
3982  * @param cls Closure (type dependant).
3983  * @param type Type of the message, 0 for a raw message.
3984  * @param size Size of the message.
3985  * @param dst Neighbor to send message to.
3986  * @param t Tunnel this message belongs to.
3987  */
3988 static void
3989 queue_add (void *cls, uint16_t type, size_t size,
3990            struct MeshPeerInfo *dst, struct MeshTunnel *t)
3991 {
3992     struct MeshPeerQueue *queue;
3993
3994     if (t->queue_n >= t->queue_max)
3995     {
3996       if (NULL == t->owner)
3997         GNUNET_break_op(0);       // TODO: kill connection?
3998       else
3999         GNUNET_break(0);
4000       return;                       // Drop message
4001     }
4002     t->queue_n++;
4003     queue = GNUNET_malloc (sizeof (struct MeshPeerQueue));
4004     queue->cls = cls;
4005     queue->type = type;
4006     queue->size = size;
4007     queue->peer = dst;
4008     queue->tunnel = t;
4009     GNUNET_CONTAINER_DLL_insert_tail (dst->queue_head, dst->queue_tail, queue);
4010     if (NULL == dst->core_transmit)
4011     {
4012         struct GNUNET_PeerIdentity id;
4013
4014         GNUNET_PEER_resolve (dst->id, &id);
4015         dst->core_transmit =
4016             GNUNET_CORE_notify_transmit_ready(core_handle,
4017                                               0,
4018                                               0,
4019                                               GNUNET_TIME_UNIT_FOREVER_REL,
4020                                               &id,
4021                                               size,
4022                                               &queue_send,
4023                                               dst);
4024     }
4025 }
4026
4027
4028 /******************************************************************************/
4029 /********************      MESH NETWORK HANDLERS     **************************/
4030 /******************************************************************************/
4031
4032
4033 /**
4034  * Core handler for path creation
4035  *
4036  * @param cls closure
4037  * @param message message
4038  * @param peer peer identity this notification is about
4039  * @param atsi performance data
4040  * @param atsi_count number of records in 'atsi'
4041  *
4042  * @return GNUNET_OK to keep the connection open,
4043  *         GNUNET_SYSERR to close it (signal serious error)
4044  */
4045 static int
4046 handle_mesh_path_create (void *cls, const struct GNUNET_PeerIdentity *peer,
4047                          const struct GNUNET_MessageHeader *message,
4048                          const struct GNUNET_ATS_Information *atsi,
4049                          unsigned int atsi_count)
4050 {
4051   unsigned int own_pos;
4052   uint16_t size;
4053   uint16_t i;
4054   MESH_TunnelNumber tid;
4055   struct GNUNET_MESH_ManipulatePath *msg;
4056   struct GNUNET_PeerIdentity *pi;
4057   struct GNUNET_HashCode hash;
4058   struct MeshPeerPath *path;
4059   struct MeshPeerInfo *dest_peer_info;
4060   struct MeshPeerInfo *orig_peer_info;
4061   struct MeshTunnel *t;
4062
4063   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
4064               "Received a path create msg [%s]\n",
4065               GNUNET_i2s (&my_full_id));
4066   size = ntohs (message->size);
4067   if (size < sizeof (struct GNUNET_MESH_ManipulatePath))
4068   {
4069     GNUNET_break_op (0);
4070     return GNUNET_OK;
4071   }
4072
4073   size -= sizeof (struct GNUNET_MESH_ManipulatePath);
4074   if (size % sizeof (struct GNUNET_PeerIdentity))
4075   {
4076     GNUNET_break_op (0);
4077     return GNUNET_OK;
4078   }
4079   size /= sizeof (struct GNUNET_PeerIdentity);
4080   if (size < 2)
4081   {
4082     GNUNET_break_op (0);
4083     return GNUNET_OK;
4084   }
4085   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "    path has %u hops.\n", size);
4086   msg = (struct GNUNET_MESH_ManipulatePath *) message;
4087
4088   tid = ntohl (msg->tid);
4089   pi = (struct GNUNET_PeerIdentity *) &msg[1];
4090   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
4091               "    path is for tunnel %s [%X].\n", GNUNET_i2s (pi), tid);
4092   t = tunnel_get (pi, tid);
4093   if (NULL == t) // FIXME only for INCOMING tunnels?
4094   {
4095     uint32_t opt;
4096
4097     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  Creating tunnel\n");
4098     t = tunnel_new (GNUNET_PEER_intern (pi), tid, NULL, 0);
4099     if (NULL == t)
4100     {
4101       // FIXME notify failure
4102       return GNUNET_OK;
4103     }
4104     opt = ntohl (msg->opt);
4105     t->speed_min = (0 != (opt & MESH_TUNNEL_OPT_SPEED_MIN)) ?
4106                    GNUNET_YES : GNUNET_NO;
4107     t->nobuffer = (0 != (opt & MESH_TUNNEL_OPT_NOBUFFER)) ?
4108                   GNUNET_YES : GNUNET_NO;
4109
4110     if (GNUNET_YES == t->nobuffer)
4111       t->queue_max = 1;
4112
4113     while (NULL != tunnel_get_incoming (next_local_tid))
4114       next_local_tid = (next_local_tid + 1) | GNUNET_MESH_LOCAL_TUNNEL_ID_SERV;
4115     t->local_tid_dest = next_local_tid++;
4116     next_local_tid = next_local_tid | GNUNET_MESH_LOCAL_TUNNEL_ID_SERV;
4117
4118     tunnel_reset_timeout (t);
4119     GNUNET_CRYPTO_hash (&t->local_tid_dest, sizeof (MESH_TunnelNumber), &hash);
4120     if (GNUNET_OK !=
4121         GNUNET_CONTAINER_multihashmap_put (incoming_tunnels, &hash, t,
4122                                            GNUNET_CONTAINER_MULTIHASHMAPOPTION_UNIQUE_FAST))
4123     {
4124       tunnel_destroy (t);
4125       GNUNET_break (0);
4126       return GNUNET_OK;
4127     }
4128   }
4129   dest_peer_info =
4130       GNUNET_CONTAINER_multihashmap_get (peers, &pi[size - 1].hashPubKey);
4131   if (NULL == dest_peer_info)
4132   {
4133     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
4134                 "  Creating PeerInfo for destination.\n");
4135     dest_peer_info = GNUNET_malloc (sizeof (struct MeshPeerInfo));
4136     dest_peer_info->id = GNUNET_PEER_intern (&pi[size - 1]);
4137     GNUNET_CONTAINER_multihashmap_put (peers, &pi[size - 1].hashPubKey,
4138                                        dest_peer_info,
4139                                        GNUNET_CONTAINER_MULTIHASHMAPOPTION_UNIQUE_ONLY);
4140   }
4141   orig_peer_info = GNUNET_CONTAINER_multihashmap_get (peers, &pi->hashPubKey);
4142   if (NULL == orig_peer_info)
4143   {
4144     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
4145                 "  Creating PeerInfo for origin.\n");
4146     orig_peer_info = GNUNET_malloc (sizeof (struct MeshPeerInfo));
4147     orig_peer_info->id = GNUNET_PEER_intern (pi);
4148     GNUNET_CONTAINER_multihashmap_put (peers, &pi->hashPubKey, orig_peer_info,
4149                                        GNUNET_CONTAINER_MULTIHASHMAPOPTION_UNIQUE_ONLY);
4150   }
4151   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  Creating path...\n");
4152   path = path_new (size);
4153   own_pos = 0;
4154   for (i = 0; i < size; i++)
4155   {
4156     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  ... adding %s\n",
4157                 GNUNET_i2s (&pi[i]));
4158     path->peers[i] = GNUNET_PEER_intern (&pi[i]);
4159     if (path->peers[i] == myid)
4160       own_pos = i;
4161   }
4162   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  Own position: %u\n", own_pos);
4163   if (own_pos == 0)
4164   {
4165     /* cannot be self, must be 'not found' */
4166     /* create path: self not found in path through self */
4167     GNUNET_break_op (0);
4168     path_destroy (path);
4169     /* FIXME error. destroy tunnel? leave for timeout? */
4170     return 0;
4171   }
4172   path_add_to_peers (path, GNUNET_NO);
4173   tunnel_add_path (t, path, own_pos);
4174   if (own_pos == size - 1)
4175   {
4176     /* It is for us! Send ack. */
4177     struct MeshTransmissionDescriptor *info;
4178
4179     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  It's for us!\n");
4180     peer_info_add_path_to_origin (orig_peer_info, path, GNUNET_NO);
4181     if (NULL == t->peers)
4182     {
4183       /* New tunnel! Notify clients on data. */
4184       t->peers = GNUNET_CONTAINER_multihashmap_create (4);
4185     }
4186     GNUNET_break (GNUNET_SYSERR !=
4187                   GNUNET_CONTAINER_multihashmap_put (t->peers,
4188                                                      &my_full_id.hashPubKey,
4189                                                      peer_info_get
4190                                                      (&my_full_id),
4191                                                      GNUNET_CONTAINER_MULTIHASHMAPOPTION_REPLACE));
4192     info = GNUNET_malloc (sizeof (struct MeshTransmissionDescriptor));
4193     info->origin = &t->id;
4194     info->peer = GNUNET_CONTAINER_multihashmap_get (peers, &peer->hashPubKey);
4195     GNUNET_assert (NULL != info->peer);
4196     queue_add(info,
4197               GNUNET_MESSAGE_TYPE_MESH_PATH_ACK,
4198               sizeof (struct GNUNET_MESH_PathACK),
4199               info->peer,
4200               t);
4201   }
4202   else
4203   {
4204     struct MeshPeerPath *path2;
4205
4206     /* It's for somebody else! Retransmit. */
4207     path2 = path_duplicate (path);
4208     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  Retransmitting.\n");
4209     peer_info_add_path (dest_peer_info, path2, GNUNET_NO);
4210     path2 = path_duplicate (path);
4211     peer_info_add_path_to_origin (orig_peer_info, path2, GNUNET_NO);
4212     send_create_path (dest_peer_info, path, t);
4213   }
4214   return GNUNET_OK;
4215 }
4216
4217
4218 /**
4219  * Core handler for path destruction
4220  *
4221  * @param cls closure
4222  * @param message message
4223  * @param peer peer identity this notification is about
4224  * @param atsi performance data
4225  * @param atsi_count number of records in 'atsi'
4226  *
4227  * @return GNUNET_OK to keep the connection open,
4228  *         GNUNET_SYSERR to close it (signal serious error)
4229  */
4230 static int
4231 handle_mesh_path_destroy (void *cls, const struct GNUNET_PeerIdentity *peer,
4232                           const struct GNUNET_MessageHeader *message,
4233                           const struct GNUNET_ATS_Information *atsi,
4234                           unsigned int atsi_count)
4235 {
4236   struct GNUNET_MESH_ManipulatePath *msg;
4237   struct GNUNET_PeerIdentity *pi;
4238   struct MeshPeerPath *path;
4239   struct MeshTunnel *t;
4240   unsigned int own_pos;
4241   unsigned int i;
4242   size_t size;
4243
4244   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
4245               "Received a PATH DESTROY msg from %s\n", GNUNET_i2s (peer));
4246   size = ntohs (message->size);
4247   if (size < sizeof (struct GNUNET_MESH_ManipulatePath))
4248   {
4249     GNUNET_break_op (0);
4250     return GNUNET_OK;
4251   }
4252
4253   size -= sizeof (struct GNUNET_MESH_ManipulatePath);
4254   if (size % sizeof (struct GNUNET_PeerIdentity))
4255   {
4256     GNUNET_break_op (0);
4257     return GNUNET_OK;
4258   }
4259   size /= sizeof (struct GNUNET_PeerIdentity);
4260   if (size < 2)
4261   {
4262     GNUNET_break_op (0);
4263     return GNUNET_OK;
4264   }
4265   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "    path has %u hops.\n", size);
4266
4267   msg = (struct GNUNET_MESH_ManipulatePath *) message;
4268   pi = (struct GNUNET_PeerIdentity *) &msg[1];
4269   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
4270               "    path is for tunnel %s [%X].\n", GNUNET_i2s (pi),
4271               msg->tid);
4272   t = tunnel_get (pi, ntohl (msg->tid));
4273   if (NULL == t)
4274   {
4275     /* TODO notify back: we don't know this tunnel */
4276     GNUNET_break_op (0);
4277     return GNUNET_OK;
4278   }
4279   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  Creating path...\n");
4280   path = path_new (size);
4281   own_pos = 0;
4282   for (i = 0; i < size; i++)
4283   {
4284     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  ... adding %s\n",
4285                 GNUNET_i2s (&pi[i]));
4286     path->peers[i] = GNUNET_PEER_intern (&pi[i]);
4287     if (path->peers[i] == myid)
4288       own_pos = i;
4289   }
4290   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  Own position: %u\n", own_pos);
4291   if (own_pos < path->length - 1)
4292     send_message (message, &pi[own_pos + 1], t);
4293   else
4294     send_client_tunnel_disconnect(t, NULL);
4295
4296   tunnel_delete_peer (t, path->peers[path->length - 1]);
4297   path_destroy (path);
4298   return GNUNET_OK;
4299 }
4300
4301
4302 /**
4303  * Core handler for notifications of broken paths
4304  *
4305  * @param cls closure
4306  * @param message message
4307  * @param peer peer identity this notification is about
4308  * @param atsi performance data
4309  * @param atsi_count number of records in 'atsi'
4310  *
4311  * @return GNUNET_OK to keep the connection open,
4312  *         GNUNET_SYSERR to close it (signal serious error)
4313  */
4314 static int
4315 handle_mesh_path_broken (void *cls, const struct GNUNET_PeerIdentity *peer,
4316                          const struct GNUNET_MessageHeader *message,
4317                          const struct GNUNET_ATS_Information *atsi,
4318                          unsigned int atsi_count)
4319 {
4320   struct GNUNET_MESH_PathBroken *msg;
4321   struct MeshTunnel *t;
4322
4323   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
4324               "Received a PATH BROKEN msg from %s\n", GNUNET_i2s (peer));
4325   msg = (struct GNUNET_MESH_PathBroken *) message;
4326   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  regarding %s\n",
4327               GNUNET_i2s (&msg->peer1));
4328   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  regarding %s\n",
4329               GNUNET_i2s (&msg->peer2));
4330   t = tunnel_get (&msg->oid, ntohl (msg->tid));
4331   if (NULL == t)
4332   {
4333     GNUNET_break_op (0);
4334     return GNUNET_OK;
4335   }
4336   tunnel_notify_connection_broken (t, GNUNET_PEER_search (&msg->peer1),
4337                                    GNUNET_PEER_search (&msg->peer2));
4338   return GNUNET_OK;
4339
4340 }
4341
4342
4343 /**
4344  * Core handler for tunnel destruction
4345  *
4346  * @param cls closure
4347  * @param message message
4348  * @param peer peer identity this notification is about
4349  * @param atsi performance data
4350  * @param atsi_count number of records in 'atsi'
4351  *
4352  * @return GNUNET_OK to keep the connection open,
4353  *         GNUNET_SYSERR to close it (signal serious error)
4354  */
4355 static int
4356 handle_mesh_tunnel_destroy (void *cls, const struct GNUNET_PeerIdentity *peer,
4357                             const struct GNUNET_MessageHeader *message,
4358                             const struct GNUNET_ATS_Information *atsi,
4359                             unsigned int atsi_count)
4360 {
4361   struct GNUNET_MESH_TunnelDestroy *msg;
4362   struct MeshTunnel *t;
4363
4364   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
4365               "Got a TUNNEL DESTROY packet from %s\n", GNUNET_i2s (peer));
4366   msg = (struct GNUNET_MESH_TunnelDestroy *) message;
4367   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  for tunnel %s [%u]\n",
4368               GNUNET_i2s (&msg->oid), ntohl (msg->tid));
4369   t = tunnel_get (&msg->oid, ntohl (msg->tid));
4370   if (NULL == t)
4371   {
4372     /* Probably already got the message from another path,
4373      * destroyed the tunnel and retransmitted to children.
4374      * Safe to ignore.
4375      */
4376     GNUNET_STATISTICS_update (stats, "# control on unknown tunnel", 1, GNUNET_NO);
4377     return GNUNET_OK;
4378   }
4379   if (t->id.oid == myid)
4380   {
4381     GNUNET_break_op (0);
4382     return GNUNET_OK;
4383   }
4384   if (t->local_tid_dest >= GNUNET_MESH_LOCAL_TUNNEL_ID_SERV)
4385   {
4386     /* Tunnel was incoming, notify clients */
4387     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "INCOMING TUNNEL %X %X\n",
4388                 t->local_tid, t->local_tid_dest);
4389     send_clients_tunnel_destroy (t);
4390   }
4391   tunnel_send_destroy (t);
4392   t->destroy = GNUNET_YES;
4393   // TODO: add timeout to destroy the tunnel anyway
4394   return GNUNET_OK;
4395 }
4396
4397
4398 /**
4399  * Core handler for mesh network traffic going from the origin to a peer
4400  *
4401  * @param cls closure
4402  * @param peer peer identity this notification is about
4403  * @param message message
4404  * @param atsi performance data
4405  * @param atsi_count number of records in 'atsi'
4406  * @return GNUNET_OK to keep the connection open,
4407  *         GNUNET_SYSERR to close it (signal serious error)
4408  */
4409 static int
4410 handle_mesh_data_unicast (void *cls, const struct GNUNET_PeerIdentity *peer,
4411                           const struct GNUNET_MessageHeader *message,
4412                           const struct GNUNET_ATS_Information *atsi,
4413                           unsigned int atsi_count)
4414 {
4415   struct GNUNET_MESH_Unicast *msg;
4416   struct GNUNET_PeerIdentity *neighbor;
4417   struct MeshTunnelChildInfo *cinfo;
4418   struct MeshTunnel *t;
4419   GNUNET_PEER_Id dest_id;
4420   uint32_t pid;
4421   uint32_t ttl;
4422   size_t size;
4423
4424   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "got a unicast packet from %s\n",
4425               GNUNET_i2s (peer));
4426   size = ntohs (message->size);
4427   if (size <
4428       sizeof (struct GNUNET_MESH_Unicast) +
4429       sizeof (struct GNUNET_MessageHeader))
4430   {
4431     GNUNET_break (0);
4432     return GNUNET_OK;
4433   }
4434   msg = (struct GNUNET_MESH_Unicast *) message;
4435   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, " of type %u\n",
4436               ntohs (msg[1].header.type));
4437   t = tunnel_get (&msg->oid, ntohl (msg->tid));
4438   if (NULL == t)
4439   {
4440     /* TODO notify back: we don't know this tunnel */
4441     GNUNET_STATISTICS_update (stats, "# data on unknown tunnel", 1, GNUNET_NO);
4442     GNUNET_break_op (0);
4443     return GNUNET_OK;
4444   }
4445   pid = ntohl (msg->pid);
4446   if (t->pid == pid)
4447   {
4448     GNUNET_STATISTICS_update (stats, "# TTL drops", 1, GNUNET_NO);
4449     GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
4450                 " Already seen pid %u, DROPPING!\n", pid);
4451     return GNUNET_OK;
4452   }
4453   else
4454   {
4455     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
4456                 " pid %u not seen yet, forwarding\n", pid);
4457   }
4458   t->skip += (pid - t->pid) - 1;
4459   t->pid = pid;
4460   tunnel_reset_timeout (t);
4461   dest_id = GNUNET_PEER_search (&msg->destination);
4462   if (dest_id == myid)
4463   {
4464     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
4465                 "  it's for us! sending to clients...\n");
4466     GNUNET_STATISTICS_update (stats, "# unicast received", 1, GNUNET_NO);
4467     send_subscribed_clients (message, (struct GNUNET_MessageHeader *) &msg[1]);
4468     // FIXME send after client processes the packet
4469     tunnel_send_ack (t, GNUNET_MESSAGE_TYPE_MESH_ACK);
4470     return GNUNET_OK;
4471   }
4472   ttl = ntohl (msg->ttl);
4473   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "   ttl: %u\n", ttl);
4474   if (ttl == 0)
4475   {
4476     GNUNET_STATISTICS_update (stats, "# TTL drops", 1, GNUNET_NO);
4477     GNUNET_log (GNUNET_ERROR_TYPE_WARNING, " TTL is 0, DROPPING!\n");
4478     return GNUNET_OK;
4479   }
4480   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
4481               "  not for us, retransmitting...\n");
4482   GNUNET_STATISTICS_update (stats, "# unicast forwarded", 1, GNUNET_NO);
4483
4484   neighbor = tree_get_first_hop (t->tree, dest_id);
4485   cinfo = GNUNET_CONTAINER_multihashmap_get (t->children_fc,
4486                                              &neighbor->hashPubKey);
4487   if (NULL == cinfo)
4488   {
4489     cinfo = GNUNET_malloc (sizeof (struct MeshTunnelChildInfo));
4490     cinfo->id = GNUNET_PEER_intern (neighbor);
4491     cinfo->skip = pid;
4492     cinfo->max_pid = pid + t->queue_max - t->queue_n; // FIXME review
4493
4494     GNUNET_assert (GNUNET_OK ==
4495                    GNUNET_CONTAINER_multihashmap_put (t->children_fc,
4496                        &neighbor->hashPubKey,
4497                        cinfo,
4498                        GNUNET_CONTAINER_MULTIHASHMAPOPTION_UNIQUE_FAST));
4499   }
4500   cinfo->pid = pid;
4501   GNUNET_CONTAINER_multihashmap_iterate (t->children_fc,
4502                                          &tunnel_add_skip,
4503                                          &neighbor);
4504   send_message (message, neighbor, t);
4505   return GNUNET_OK;
4506 }
4507
4508
4509 /**
4510  * Core handler for mesh network traffic going from the origin to all peers
4511  *
4512  * @param cls closure
4513  * @param message message
4514  * @param peer peer identity this notification is about
4515  * @param atsi performance data
4516  * @param atsi_count number of records in 'atsi'
4517  * @return GNUNET_OK to keep the connection open,
4518  *         GNUNET_SYSERR to close it (signal serious error)
4519  *
4520  * TODO: Check who we got this from, to validate route.
4521  */
4522 static int
4523 handle_mesh_data_multicast (void *cls, const struct GNUNET_PeerIdentity *peer,
4524                             const struct GNUNET_MessageHeader *message,
4525                             const struct GNUNET_ATS_Information *atsi,
4526                             unsigned int atsi_count)
4527 {
4528   struct GNUNET_MESH_Multicast *msg;
4529   struct MeshTunnel *t;
4530   size_t size;
4531   uint32_t pid;
4532
4533   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "got a multicast packet from %s\n",
4534               GNUNET_i2s (peer));
4535   size = ntohs (message->size);
4536   if (sizeof (struct GNUNET_MESH_Multicast) +
4537       sizeof (struct GNUNET_MessageHeader) > size)
4538   {
4539     GNUNET_break_op (0);
4540     return GNUNET_OK;
4541   }
4542   msg = (struct GNUNET_MESH_Multicast *) message;
4543   t = tunnel_get (&msg->oid, ntohl (msg->tid));
4544
4545   if (NULL == t)
4546   {
4547     /* TODO notify that we dont know that tunnel */
4548     GNUNET_STATISTICS_update (stats, "# data on unknown tunnel", 1, GNUNET_NO);
4549     GNUNET_break_op (0);
4550     return GNUNET_OK;
4551   }
4552   pid = ntohl (msg->pid);
4553   if (t->pid == pid)
4554   {
4555     /* already seen this packet, drop */
4556     GNUNET_STATISTICS_update (stats, "# TTL drops", 1, GNUNET_NO);
4557     GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
4558                 " Already seen pid %u, DROPPING!\n", pid);
4559     return GNUNET_OK;
4560   }
4561   else
4562   {
4563     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
4564                 " pid %u not seen yet, forwarding\n", pid);
4565   }
4566   t->skip += (pid - t->pid) - 1;
4567   t->pid = pid;
4568   tunnel_reset_timeout (t);
4569
4570   /* Transmit to locally interested clients */
4571   if (NULL != t->peers &&
4572       GNUNET_CONTAINER_multihashmap_contains (t->peers, &my_full_id.hashPubKey))
4573   {
4574     GNUNET_STATISTICS_update (stats, "# multicast received", 1, GNUNET_NO);
4575     send_subscribed_clients (message, &msg[1].header);
4576   }
4577   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "   ttl: %u\n", ntohl (msg->ttl));
4578   if (ntohl (msg->ttl) == 0)
4579   {
4580     GNUNET_STATISTICS_update (stats, "# TTL drops", 1, GNUNET_NO);
4581     GNUNET_log (GNUNET_ERROR_TYPE_WARNING, " TTL is 0, DROPPING!\n");
4582     return GNUNET_OK;
4583   }
4584   GNUNET_STATISTICS_update (stats, "# multicast forwarded", 1, GNUNET_NO);
4585   tunnel_send_multicast (t, message, GNUNET_NO);
4586   return GNUNET_OK;
4587 }
4588
4589
4590 /**
4591  * Core handler for mesh network traffic toward the owner of a tunnel
4592  *
4593  * @param cls closure
4594  * @param message message
4595  * @param peer peer identity this notification is about
4596  * @param atsi performance data
4597  * @param atsi_count number of records in 'atsi'
4598  *
4599  * @return GNUNET_OK to keep the connection open,
4600  *         GNUNET_SYSERR to close it (signal serious error)
4601  */
4602 static int
4603 handle_mesh_data_to_orig (void *cls, const struct GNUNET_PeerIdentity *peer,
4604                           const struct GNUNET_MessageHeader *message,
4605                           const struct GNUNET_ATS_Information *atsi,
4606                           unsigned int atsi_count)
4607 {
4608   struct GNUNET_MESH_ToOrigin *msg;
4609   struct GNUNET_PeerIdentity id;
4610   struct MeshPeerInfo *peer_info;
4611   struct MeshTunnel *t;
4612   size_t size;
4613
4614   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "got a ToOrigin packet from %s\n",
4615               GNUNET_i2s (peer));
4616   size = ntohs (message->size);
4617   if (size < sizeof (struct GNUNET_MESH_ToOrigin) +     /* Payload must be */
4618       sizeof (struct GNUNET_MessageHeader))     /* at least a header */
4619   {
4620     GNUNET_break_op (0);
4621     return GNUNET_OK;
4622   }
4623   msg = (struct GNUNET_MESH_ToOrigin *) message;
4624   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, " of type %u\n",
4625               ntohs (msg[1].header.type));
4626   t = tunnel_get (&msg->oid, ntohl (msg->tid));
4627
4628   if (NULL == t)
4629   {
4630     /* TODO notify that we dont know this tunnel (whom)? */
4631     GNUNET_STATISTICS_update (stats, "# data on unknown tunnel", 1, GNUNET_NO);
4632     GNUNET_break_op (0);
4633     return GNUNET_OK;
4634   }
4635
4636   if (t->id.oid == myid)
4637   {
4638     char cbuf[size];
4639     struct GNUNET_MESH_ToOrigin *copy;
4640
4641     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
4642                 "  it's for us! sending to clients...\n");
4643     if (NULL == t->owner)
4644     {
4645       /* got data packet for ownerless tunnel */
4646       GNUNET_STATISTICS_update (stats, "# data on ownerless tunnel",
4647                                 1, GNUNET_NO);
4648       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  no clients!\n");
4649       GNUNET_break_op (0);
4650       return GNUNET_OK;
4651     }
4652     /* TODO signature verification */
4653     memcpy (cbuf, message, size);
4654     copy = (struct GNUNET_MESH_ToOrigin *) cbuf;
4655     copy->tid = htonl (t->local_tid);
4656     GNUNET_STATISTICS_update (stats, "# to origin received", 1, GNUNET_NO);
4657     GNUNET_SERVER_notification_context_unicast (nc, t->owner->handle,
4658                                                 &copy->header, GNUNET_YES);
4659     return GNUNET_OK;
4660   }
4661   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
4662               "  not for us, retransmitting...\n");
4663
4664   peer_info = peer_info_get (&msg->oid);
4665   if (NULL == peer_info)
4666   {
4667     /* unknown origin of tunnel */
4668     GNUNET_break (0);
4669     return GNUNET_OK;
4670   }
4671   GNUNET_PEER_resolve (tree_get_predecessor (t->tree), &id);
4672   send_message (message, &id, t);
4673   GNUNET_STATISTICS_update (stats, "# to origin forwarded", 1, GNUNET_NO);
4674
4675   return GNUNET_OK;
4676 }
4677
4678
4679 /**
4680  * Core handler for mesh network traffic point-to-point acks.
4681  *
4682  * @param cls closure
4683  * @param message message
4684  * @param peer peer identity this notification is about
4685  * @param atsi performance data
4686  * @param atsi_count number of records in 'atsi'
4687  *
4688  * @return GNUNET_OK to keep the connection open,
4689  *         GNUNET_SYSERR to close it (signal serious error)
4690  */
4691 static int
4692 handle_mesh_ack (void *cls, const struct GNUNET_PeerIdentity *peer,
4693                  const struct GNUNET_MessageHeader *message,
4694                  const struct GNUNET_ATS_Information *atsi,
4695                  unsigned int atsi_count)
4696 {
4697   struct GNUNET_MESH_ACK *msg;
4698   struct MeshTunnelChildInfo *cinfo;
4699   struct MeshTunnel *t;
4700   uint32_t ack;
4701
4702   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "got an ACK packet from %s\n",
4703               GNUNET_i2s (peer));
4704   msg = (struct GNUNET_MESH_ACK *) message;
4705   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, " of type %u\n",
4706               ntohs (msg[1].header.type));
4707   t = tunnel_get (&msg->oid, ntohl (msg->tid));
4708
4709   if (NULL == t)
4710   {
4711     /* TODO notify that we dont know this tunnel (whom)? */
4712     GNUNET_STATISTICS_update (stats, "# ack on unknown tunnel", 1, GNUNET_NO);
4713     GNUNET_break_op (0);
4714     return GNUNET_OK;
4715   }
4716   ack = ntohl (msg->pid);
4717   cinfo = GNUNET_CONTAINER_multihashmap_get (t->children_fc,
4718                                              &peer->hashPubKey);
4719   if (NULL == cinfo)
4720   {
4721     GNUNET_break_op (0);
4722     return GNUNET_OK;
4723   }
4724   cinfo->max_pid = ack;
4725   tunnel_send_ack (t, GNUNET_MESSAGE_TYPE_MESH_ACK);
4726   return GNUNET_OK;
4727 }
4728
4729
4730 /**
4731  * Core handler for path ACKs
4732  *
4733  * @param cls closure
4734  * @param message message
4735  * @param peer peer identity this notification is about
4736  * @param atsi performance data
4737  * @param atsi_count number of records in 'atsi'
4738  *
4739  * @return GNUNET_OK to keep the connection open,
4740  *         GNUNET_SYSERR to close it (signal serious error)
4741  */
4742 static int
4743 handle_mesh_path_ack (void *cls, const struct GNUNET_PeerIdentity *peer,
4744                       const struct GNUNET_MessageHeader *message,
4745                       const struct GNUNET_ATS_Information *atsi,
4746                       unsigned int atsi_count)
4747 {
4748   struct GNUNET_MESH_PathACK *msg;
4749   struct GNUNET_PeerIdentity id;
4750   struct MeshPeerInfo *peer_info;
4751   struct MeshPeerPath *p;
4752   struct MeshTunnel *t;
4753
4754   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Received a path ACK msg [%s]\n",
4755               GNUNET_i2s (&my_full_id));
4756   msg = (struct GNUNET_MESH_PathACK *) message;
4757   t = tunnel_get (&msg->oid, ntohl(msg->tid));
4758   if (NULL == t)
4759   {
4760     /* TODO notify that we don't know the tunnel */
4761     GNUNET_STATISTICS_update (stats, "# control on unknown tunnel", 1, GNUNET_NO);
4762     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  don't know the tunnel %s [%X]!\n",
4763                 GNUNET_i2s (&msg->oid), ntohl(msg->tid));
4764     return GNUNET_OK;
4765   }
4766   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  on tunnel %s [%X]\n",
4767               GNUNET_i2s (&msg->oid), ntohl(msg->tid));
4768
4769   peer_info = peer_info_get (&msg->peer_id);
4770   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  by peer %s\n",
4771               GNUNET_i2s (&msg->peer_id));
4772   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  via peer %s\n",
4773               GNUNET_i2s (peer));
4774
4775   if (NULL != t->regex_ctx && t->regex_ctx->info->peer == peer_info->id)
4776   {
4777     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
4778                 "connect_by_string completed, stopping search\n");
4779     regex_cancel_search (t->regex_ctx);
4780     t->regex_ctx = NULL;
4781   }
4782
4783   /* Add paths to peers? */
4784   p = tree_get_path_to_peer (t->tree, peer_info->id);
4785   if (NULL != p)
4786   {
4787     path_add_to_peers (p, GNUNET_YES);
4788     path_destroy (p);
4789   }
4790   else
4791   {
4792     GNUNET_break (0);
4793   }
4794
4795   /* Message for us? */
4796   if (0 == memcmp (&msg->oid, &my_full_id, sizeof (struct GNUNET_PeerIdentity)))
4797   {
4798     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  It's for us!\n");
4799     if (NULL == t->owner)
4800     {
4801       GNUNET_break_op (0);
4802       return GNUNET_OK;
4803     }
4804     if (NULL != t->dht_get_type)
4805     {
4806       GNUNET_DHT_get_stop (t->dht_get_type);
4807       t->dht_get_type = NULL;
4808     }
4809     if (tree_get_status (t->tree, peer_info->id) != MESH_PEER_READY)
4810     {
4811       tree_set_status (t->tree, peer_info->id, MESH_PEER_READY);
4812       send_client_peer_connected (t, peer_info->id);
4813     }
4814     return GNUNET_OK;
4815   }
4816
4817   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
4818               "  not for us, retransmitting...\n");
4819   GNUNET_PEER_resolve (tree_get_predecessor (t->tree), &id);
4820   peer_info = peer_info_get (&msg->oid);
4821   if (NULL == peer_info)
4822   {
4823     /* If we know the tunnel, we should DEFINITELY know the peer */
4824     GNUNET_break (0);
4825     return GNUNET_OK;
4826   }
4827   send_message (message, &id, t);
4828   return GNUNET_OK;
4829 }
4830
4831
4832 /**
4833  * Functions to handle messages from core
4834  */
4835 static struct GNUNET_CORE_MessageHandler core_handlers[] = {
4836   {&handle_mesh_path_create, GNUNET_MESSAGE_TYPE_MESH_PATH_CREATE, 0},
4837   {&handle_mesh_path_destroy, GNUNET_MESSAGE_TYPE_MESH_PATH_DESTROY, 0},
4838   {&handle_mesh_path_broken, GNUNET_MESSAGE_TYPE_MESH_PATH_BROKEN,
4839    sizeof (struct GNUNET_MESH_PathBroken)},
4840   {&handle_mesh_tunnel_destroy, GNUNET_MESSAGE_TYPE_MESH_TUNNEL_DESTROY,
4841    sizeof (struct GNUNET_MESH_TunnelDestroy)},
4842   {&handle_mesh_data_unicast, GNUNET_MESSAGE_TYPE_MESH_UNICAST, 0},
4843   {&handle_mesh_data_multicast, GNUNET_MESSAGE_TYPE_MESH_MULTICAST, 0},
4844   {&handle_mesh_data_to_orig, GNUNET_MESSAGE_TYPE_MESH_TO_ORIGIN, 0},
4845   {&handle_mesh_ack, GNUNET_MESSAGE_TYPE_MESH_ACK,
4846     sizeof (struct GNUNET_MESH_ACK)},
4847   {&handle_mesh_path_ack, GNUNET_MESSAGE_TYPE_MESH_PATH_ACK,
4848    sizeof (struct GNUNET_MESH_PathACK)},
4849   {NULL, 0, 0}
4850 };
4851
4852
4853
4854 /******************************************************************************/
4855 /****************       MESH LOCAL HANDLER HELPERS      ***********************/
4856 /******************************************************************************/
4857
4858 /**
4859  * deregister_app: iterator for removing each application registered by a client
4860  *
4861  * @param cls closure
4862  * @param key the hash of the application id (used to access the hashmap)
4863  * @param value the value stored at the key (client)
4864  *
4865  * @return GNUNET_OK on success
4866  */
4867 static int
4868 deregister_app (void *cls, const struct GNUNET_HashCode * key, void *value)
4869 {
4870   struct GNUNET_CONTAINER_MultiHashMap *h = cls;
4871   GNUNET_break (GNUNET_YES ==
4872                 GNUNET_CONTAINER_multihashmap_remove (h, key, value));
4873   return GNUNET_OK;
4874 }
4875
4876 #if LATER
4877 /**
4878  * notify_client_connection_failure: notify a client that the connection to the
4879  * requested remote peer is not possible (for instance, no route found)
4880  * Function called when the socket is ready to queue more data. "buf" will be
4881  * NULL and "size" zero if the socket was closed for writing in the meantime.
4882  *
4883  * @param cls closure
4884  * @param size number of bytes available in buf
4885  * @param buf where the callee should write the message
4886  * @return number of bytes written to buf
4887  */
4888 static size_t
4889 notify_client_connection_failure (void *cls, size_t size, void *buf)
4890 {
4891   int size_needed;
4892   struct MeshPeerInfo *peer_info;
4893   struct GNUNET_MESH_PeerControl *msg;
4894   struct GNUNET_PeerIdentity id;
4895
4896   if (0 == size && NULL == buf)
4897   {
4898     // TODO retry? cancel?
4899     return 0;
4900   }
4901
4902   size_needed = sizeof (struct GNUNET_MESH_PeerControl);
4903   peer_info = (struct MeshPeerInfo *) cls;
4904   msg = (struct GNUNET_MESH_PeerControl *) buf;
4905   msg->header.size = htons (sizeof (struct GNUNET_MESH_PeerControl));
4906   msg->header.type = htons (GNUNET_MESSAGE_TYPE_MESH_LOCAL_PEER_DISCONNECTED);
4907 //     msg->tunnel_id = htonl(peer_info->t->tid);
4908   GNUNET_PEER_resolve (peer_info->id, &id);
4909   memcpy (&msg->peer, &id, sizeof (struct GNUNET_PeerIdentity));
4910
4911   return size_needed;
4912 }
4913 #endif
4914
4915
4916 /**
4917  * Send keepalive packets for a peer
4918  *
4919  * @param cls Closure (tunnel for which to send the keepalive).
4920  * @param tc Notification context.
4921  *
4922  * TODO: implement explicit multicast keepalive?
4923  */
4924 static void
4925 path_refresh (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
4926 {
4927   struct MeshTunnel *t = cls;
4928   struct GNUNET_MessageHeader *payload;
4929   struct GNUNET_MESH_Multicast *msg;
4930   size_t size =
4931       sizeof (struct GNUNET_MESH_Multicast) +
4932       sizeof (struct GNUNET_MessageHeader);
4933   char cbuf[size];
4934
4935   if (0 != (tc->reason & GNUNET_SCHEDULER_REASON_SHUTDOWN))
4936   {
4937     return;
4938   }
4939   t->path_refresh_task = GNUNET_SCHEDULER_NO_TASK;
4940
4941   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
4942               "sending keepalive for tunnel %d\n", t->id.tid);
4943
4944   msg = (struct GNUNET_MESH_Multicast *) cbuf;
4945   msg->header.size = htons (size);
4946   msg->header.type = htons (GNUNET_MESSAGE_TYPE_MESH_MULTICAST);
4947   msg->oid = my_full_id;
4948   msg->tid = htonl (t->id.tid);
4949   msg->ttl = htonl (default_ttl);
4950   msg->pid = htonl (t->pid + 1);
4951   t->pid++;
4952   payload = (struct GNUNET_MessageHeader *) &msg[1];
4953   payload->size = htons (sizeof (struct GNUNET_MessageHeader));
4954   payload->type = htons (GNUNET_MESSAGE_TYPE_MESH_PATH_KEEPALIVE);
4955   tunnel_send_multicast (t, &msg->header, GNUNET_YES);
4956
4957   t->path_refresh_task =
4958       GNUNET_SCHEDULER_add_delayed (refresh_path_time, &path_refresh, t);
4959   return;
4960 }
4961
4962
4963 /**
4964  * Function to process paths received for a new peer addition. The recorded
4965  * paths form the initial tunnel, which can be optimized later.
4966  * Called on each result obtained for the DHT search.
4967  *
4968  * @param cls closure
4969  * @param exp when will this value expire
4970  * @param key key of the result
4971  * @param get_path path of the get request
4972  * @param get_path_length lenght of get_path
4973  * @param put_path path of the put request
4974  * @param put_path_length length of the put_path
4975  * @param type type of the result
4976  * @param size number of bytes in data
4977  * @param data pointer to the result data
4978  *
4979  * TODO: re-issue the request after certain time? cancel after X results?
4980  */
4981 static void
4982 dht_get_id_handler (void *cls, struct GNUNET_TIME_Absolute exp,
4983                     const struct GNUNET_HashCode * key,
4984                     const struct GNUNET_PeerIdentity *get_path,
4985                     unsigned int get_path_length,
4986                     const struct GNUNET_PeerIdentity *put_path,
4987                     unsigned int put_path_length, enum GNUNET_BLOCK_Type type,
4988                     size_t size, const void *data)
4989 {
4990   struct MeshPathInfo *path_info = cls;
4991   struct MeshPeerPath *p;
4992   struct GNUNET_PeerIdentity pi;
4993   int i;
4994
4995   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Got results from DHT!\n");
4996   GNUNET_PEER_resolve (path_info->peer->id, &pi);
4997   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  for %s\n", GNUNET_i2s (&pi));
4998
4999   p = path_build_from_dht (get_path, get_path_length, put_path,
5000                            put_path_length);
5001   path_add_to_peers (p, GNUNET_NO);
5002   path_destroy(p);
5003   for (i = 0; i < path_info->peer->ntunnels; i++)
5004   {
5005     tunnel_add_peer (path_info->peer->tunnels[i], path_info->peer);
5006     peer_info_connect (path_info->peer, path_info->t);
5007   }
5008
5009   return;
5010 }
5011
5012
5013 /**
5014  * Function to process paths received for a new peer addition. The recorded
5015  * paths form the initial tunnel, which can be optimized later.
5016  * Called on each result obtained for the DHT search.
5017  *
5018  * @param cls closure
5019  * @param exp when will this value expire
5020  * @param key key of the result
5021  * @param get_path path of the get request
5022  * @param get_path_length lenght of get_path
5023  * @param put_path path of the put request
5024  * @param put_path_length length of the put_path
5025  * @param type type of the result
5026  * @param size number of bytes in data
5027  * @param data pointer to the result data
5028  */
5029 static void
5030 dht_get_type_handler (void *cls, struct GNUNET_TIME_Absolute exp,
5031                       const struct GNUNET_HashCode * key,
5032                       const struct GNUNET_PeerIdentity *get_path,
5033                       unsigned int get_path_length,
5034                       const struct GNUNET_PeerIdentity *put_path,
5035                       unsigned int put_path_length, enum GNUNET_BLOCK_Type type,
5036                       size_t size, const void *data)
5037 {
5038   const struct PBlock *pb = data;
5039   const struct GNUNET_PeerIdentity *pi = &pb->id;
5040   struct MeshTunnel *t = cls;
5041   struct MeshPeerInfo *peer_info;
5042   struct MeshPeerPath *p;
5043
5044   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "got type DHT result!\n");
5045   if (size != sizeof (struct PBlock))
5046   {
5047     GNUNET_break_op (0);
5048     return;
5049   }
5050   if (ntohl(pb->type) != t->type)
5051   {
5052     GNUNET_break_op (0);
5053     return;
5054   }
5055   GNUNET_assert (NULL != t->owner);
5056   peer_info = peer_info_get (pi);
5057   (void) GNUNET_CONTAINER_multihashmap_put (t->peers, &pi->hashPubKey,
5058                                             peer_info,
5059                                             GNUNET_CONTAINER_MULTIHASHMAPOPTION_REPLACE);
5060
5061   p = path_build_from_dht (get_path, get_path_length, put_path,
5062                            put_path_length);
5063   path_add_to_peers (p, GNUNET_NO);
5064   path_destroy(p);
5065   tunnel_add_peer (t, peer_info);
5066   peer_info_connect (peer_info, t);
5067 }
5068
5069
5070 /**
5071  * Function to process DHT string to regex matching.
5072  * Called on each result obtained for the DHT search.
5073  *
5074  * @param cls closure (search context)
5075  * @param exp when will this value expire
5076  * @param key key of the result
5077  * @param get_path path of the get request (not used)
5078  * @param get_path_length lenght of get_path (not used)
5079  * @param put_path path of the put request (not used)
5080  * @param put_path_length length of the put_path (not used)
5081  * @param type type of the result
5082  * @param size number of bytes in data
5083  * @param data pointer to the result data
5084  */
5085 static void
5086 dht_get_string_accept_handler (void *cls, struct GNUNET_TIME_Absolute exp,
5087                                const struct GNUNET_HashCode * key,
5088                                const struct GNUNET_PeerIdentity *get_path,
5089                                unsigned int get_path_length,
5090                                const struct GNUNET_PeerIdentity *put_path,
5091                                unsigned int put_path_length,
5092                                enum GNUNET_BLOCK_Type type,
5093                                size_t size, const void *data)
5094 {
5095   const struct MeshRegexAccept *block = data;
5096   struct MeshRegexSearchContext *ctx = cls;
5097   struct MeshRegexSearchInfo *info = ctx->info;
5098   struct MeshPeerPath *p;
5099   struct MeshPeerInfo *peer_info;
5100
5101   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Got regex results from DHT!\n");
5102   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  for %s\n", info->description);
5103
5104   peer_info = peer_info_get(&block->id);
5105   p = path_build_from_dht (get_path, get_path_length, put_path,
5106                            put_path_length);
5107   path_add_to_peers (p, GNUNET_NO);
5108   path_destroy(p);
5109
5110   tunnel_add_peer (info->t, peer_info);
5111   peer_info_connect (peer_info, info->t);
5112   if (0 == info->peer)
5113   {
5114     info->peer = peer_info->id;
5115   }
5116   else
5117   {
5118     GNUNET_array_append (info->peers, info->n_peers, peer_info->id);
5119   }
5120
5121   info->timeout = GNUNET_SCHEDULER_add_delayed (connect_timeout,
5122                                                 &regex_connect_timeout,
5123                                                 info);
5124
5125   return;
5126 }
5127
5128
5129 /**
5130  * Function to process DHT string to regex matching.
5131  * Called on each result obtained for the DHT search.
5132  *
5133  * @param cls closure (search context)
5134  * @param exp when will this value expire
5135  * @param key key of the result
5136  * @param get_path path of the get request (not used)
5137  * @param get_path_length lenght of get_path (not used)
5138  * @param put_path path of the put request (not used)
5139  * @param put_path_length length of the put_path (not used)
5140  * @param type type of the result
5141  * @param size number of bytes in data
5142  * @param data pointer to the result data
5143  *
5144  * TODO: re-issue the request after certain time? cancel after X results?
5145  */
5146 static void
5147 dht_get_string_handler (void *cls, struct GNUNET_TIME_Absolute exp,
5148                         const struct GNUNET_HashCode * key,
5149                         const struct GNUNET_PeerIdentity *get_path,
5150                         unsigned int get_path_length,
5151                         const struct GNUNET_PeerIdentity *put_path,
5152                         unsigned int put_path_length, enum GNUNET_BLOCK_Type type,
5153                         size_t size, const void *data)
5154 {
5155   const struct MeshRegexBlock *block = data;
5156   struct MeshRegexSearchContext *ctx = cls;
5157   struct MeshRegexSearchInfo *info = ctx->info;
5158   void *copy;
5159   size_t len;
5160
5161   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
5162               "DHT GET STRING RETURNED RESULTS\n");
5163   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
5164               "  key: %s\n", GNUNET_h2s (key));
5165
5166   copy = GNUNET_malloc (size);
5167   memcpy (copy, data, size);
5168   GNUNET_break (GNUNET_OK ==
5169                 GNUNET_CONTAINER_multihashmap_put(info->dht_get_results, key, copy,
5170                                                   GNUNET_CONTAINER_MULTIHASHMAPOPTION_MULTIPLE));
5171   len = ntohl (block->n_proof);
5172   {
5173     char proof[len + 1];
5174
5175     memcpy (proof, &block[1], len);
5176     proof[len] = '\0';
5177     if (GNUNET_OK != GNUNET_REGEX_check_proof (proof, key))
5178     {
5179       GNUNET_break_op (0);
5180       return;
5181     }
5182   }
5183   len = strlen (info->description);
5184   if (len == ctx->position) // String processed
5185   {
5186     if (GNUNET_YES == ntohl (block->accepting))
5187     {
5188       regex_find_path(key, ctx);
5189     }
5190     else
5191     {
5192       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  block not accepting!\n");
5193       // FIXME REGEX this block not successful, wait for more? start timeout?
5194     }
5195     return;
5196   }
5197   GNUNET_break (GNUNET_OK ==
5198                 GNUNET_MESH_regex_block_iterate (block, size,
5199                                                  &regex_edge_iterator, ctx));
5200   return;
5201 }
5202
5203 /******************************************************************************/
5204 /*********************       MESH LOCAL HANDLES      **************************/
5205 /******************************************************************************/
5206
5207
5208 /**
5209  * Handler for client disconnection
5210  *
5211  * @param cls closure
5212  * @param client identification of the client; NULL
5213  *        for the last call when the server is destroyed
5214  */
5215 static void
5216 handle_local_client_disconnect (void *cls, struct GNUNET_SERVER_Client *client)
5217 {
5218   struct MeshClient *c;
5219   struct MeshClient *next;
5220   unsigned int i;
5221
5222   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "client disconnected\n");
5223   if (client == NULL)
5224   {
5225     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "   (SERVER DOWN)\n");
5226     return;
5227   }
5228   c = clients;
5229   while (NULL != c)
5230   {
5231     if (c->handle != client)
5232     {
5233       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "   ... searching\n");
5234       c = c->next;
5235       continue;
5236     }
5237     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "matching client found (%u)\n",
5238                 c->id);
5239     GNUNET_SERVER_client_drop (c->handle);
5240     c->shutting_down = GNUNET_YES;
5241     GNUNET_assert (NULL != c->own_tunnels);
5242     GNUNET_assert (NULL != c->incoming_tunnels);
5243     GNUNET_CONTAINER_multihashmap_iterate (c->own_tunnels,
5244                                            &tunnel_destroy_iterator, c);
5245     GNUNET_CONTAINER_multihashmap_iterate (c->incoming_tunnels,
5246                                            &tunnel_destroy_iterator, c);
5247     GNUNET_CONTAINER_multihashmap_iterate (c->ignore_tunnels,
5248                                            &tunnel_destroy_iterator, c);
5249     GNUNET_CONTAINER_multihashmap_destroy (c->own_tunnels);
5250     GNUNET_CONTAINER_multihashmap_destroy (c->incoming_tunnels);
5251     GNUNET_CONTAINER_multihashmap_destroy (c->ignore_tunnels);
5252
5253     /* deregister clients applications */
5254     if (NULL != c->apps)
5255     {
5256       GNUNET_CONTAINER_multihashmap_iterate (c->apps, &deregister_app, c->apps);
5257       GNUNET_CONTAINER_multihashmap_destroy (c->apps);
5258     }
5259     if (0 == GNUNET_CONTAINER_multihashmap_size (applications) &&
5260         GNUNET_SCHEDULER_NO_TASK != announce_applications_task)
5261     {
5262       GNUNET_SCHEDULER_cancel (announce_applications_task);
5263       announce_applications_task = GNUNET_SCHEDULER_NO_TASK;
5264     }
5265     if (NULL != c->types)
5266       GNUNET_CONTAINER_multihashmap_destroy (c->types);
5267     for (i = 0; i < c->n_regex; i++)
5268     {
5269       GNUNET_free (c->regexes[i]);
5270     }
5271     GNUNET_free_non_null (c->regexes);
5272     if (GNUNET_SCHEDULER_NO_TASK != c->regex_announce_task)
5273       GNUNET_SCHEDULER_cancel (c->regex_announce_task);
5274     next = c->next;
5275     GNUNET_CONTAINER_DLL_remove (clients, clients_tail, c);
5276     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  CLIENT FREE at %p\n", c);
5277     GNUNET_free (c);
5278     GNUNET_STATISTICS_update (stats, "# clients", -1, GNUNET_NO);
5279     c = next;
5280   }
5281   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "   done!\n");
5282   return;
5283 }
5284
5285
5286 /**
5287  * Handler for new clients
5288  *
5289  * @param cls closure
5290  * @param client identification of the client
5291  * @param message the actual message, which includes messages the client wants
5292  */
5293 static void
5294 handle_local_new_client (void *cls, struct GNUNET_SERVER_Client *client,
5295                          const struct GNUNET_MessageHeader *message)
5296 {
5297   struct GNUNET_MESH_ClientConnect *cc_msg;
5298   struct MeshClient *c;
5299   GNUNET_MESH_ApplicationType *a;
5300   unsigned int size;
5301   uint16_t ntypes;
5302   uint16_t *t;
5303   uint16_t napps;
5304   uint16_t i;
5305
5306   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "new client connected\n");
5307   /* Check data sanity */
5308   size = ntohs (message->size) - sizeof (struct GNUNET_MESH_ClientConnect);
5309   cc_msg = (struct GNUNET_MESH_ClientConnect *) message;
5310   ntypes = ntohs (cc_msg->types);
5311   napps = ntohs (cc_msg->applications);
5312   if (size !=
5313       ntypes * sizeof (uint16_t) + napps * sizeof (GNUNET_MESH_ApplicationType))
5314   {
5315     GNUNET_break (0);
5316     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
5317     return;
5318   }
5319
5320   /* Create new client structure */
5321   c = GNUNET_malloc (sizeof (struct MeshClient));
5322   c->id = next_client_id++;
5323   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  CLIENT NEW %u\n", c->id);
5324   c->handle = client;
5325   GNUNET_SERVER_client_keep (client);
5326   a = (GNUNET_MESH_ApplicationType *) &cc_msg[1];
5327   if (napps > 0)
5328   {
5329     GNUNET_MESH_ApplicationType at;
5330     struct GNUNET_HashCode hc;
5331
5332     c->apps = GNUNET_CONTAINER_multihashmap_create (napps);
5333     for (i = 0; i < napps; i++)
5334     {
5335       at = ntohl (a[i]);
5336       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  app type: %u\n", at);
5337       GNUNET_CRYPTO_hash (&at, sizeof (at), &hc);
5338       /* store in clients hashmap */
5339       GNUNET_CONTAINER_multihashmap_put (c->apps, &hc, (void *) (long) at,
5340                                          GNUNET_CONTAINER_MULTIHASHMAPOPTION_MULTIPLE);
5341       /* store in global hashmap, for announcements */
5342       GNUNET_CONTAINER_multihashmap_put (applications, &hc, c,
5343                                          GNUNET_CONTAINER_MULTIHASHMAPOPTION_MULTIPLE);
5344     }
5345     if (GNUNET_SCHEDULER_NO_TASK == announce_applications_task)
5346       announce_applications_task =
5347           GNUNET_SCHEDULER_add_now (&announce_applications, NULL);
5348
5349   }
5350   if (ntypes > 0)
5351   {
5352     uint16_t u16;
5353     struct GNUNET_HashCode hc;
5354
5355     t = (uint16_t *) & a[napps];
5356     c->types = GNUNET_CONTAINER_multihashmap_create (ntypes);
5357     for (i = 0; i < ntypes; i++)
5358     {
5359       u16 = ntohs (t[i]);
5360       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  msg type: %u\n", u16);
5361       GNUNET_CRYPTO_hash (&u16, sizeof (u16), &hc);
5362
5363       /* store in clients hashmap */
5364       GNUNET_CONTAINER_multihashmap_put (c->types, &hc, c,
5365                                          GNUNET_CONTAINER_MULTIHASHMAPOPTION_MULTIPLE);
5366       /* store in global hashmap */
5367       GNUNET_CONTAINER_multihashmap_put (types, &hc, c,
5368                                          GNUNET_CONTAINER_MULTIHASHMAPOPTION_MULTIPLE);
5369     }
5370   }
5371   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
5372               " client has %u+%u subscriptions\n", napps, ntypes);
5373
5374   GNUNET_CONTAINER_DLL_insert (clients, clients_tail, c);
5375   c->own_tunnels = GNUNET_CONTAINER_multihashmap_create (32);
5376   c->incoming_tunnels = GNUNET_CONTAINER_multihashmap_create (32);
5377   c->ignore_tunnels = GNUNET_CONTAINER_multihashmap_create (32);
5378   GNUNET_SERVER_notification_context_add (nc, client);
5379   GNUNET_STATISTICS_update (stats, "# clients", 1, GNUNET_NO);
5380
5381   GNUNET_SERVER_receive_done (client, GNUNET_OK);
5382   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "new client processed\n");
5383 }
5384
5385
5386 /**
5387  * Handler for clients announcing available services by a regular expression.
5388  *
5389  * @param cls closure
5390  * @param client identification of the client
5391  * @param message the actual message, which includes messages the client wants
5392  */
5393 static void
5394 handle_local_announce_regex (void *cls, struct GNUNET_SERVER_Client *client,
5395                              const struct GNUNET_MessageHeader *message)
5396 {
5397   struct MeshClient *c;
5398   char *regex;
5399   size_t len;
5400
5401   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "announce regex started\n");
5402
5403   /* Sanity check for client registration */
5404   if (NULL == (c = client_get (client)))
5405   {
5406     GNUNET_break (0);
5407     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
5408     return;
5409   }
5410   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  by client %u\n", c->id);
5411
5412   len = ntohs (message->size) - sizeof(struct GNUNET_MessageHeader);
5413   regex = GNUNET_malloc (len + 1);
5414   memcpy (regex, &message[1], len);
5415   regex[len] = '\0';
5416   GNUNET_array_append (c->regexes, c->n_regex, regex);
5417   if (GNUNET_SCHEDULER_NO_TASK == c->regex_announce_task)
5418   {
5419     c->regex_announce_task = GNUNET_SCHEDULER_add_now(&announce_regex, c);
5420   }
5421   else
5422   {
5423     regex_put(regex);
5424   }
5425   GNUNET_SERVER_receive_done (client, GNUNET_OK);
5426   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "announce regex processed\n");
5427 }
5428
5429
5430 /**
5431  * Handler for requests of new tunnels
5432  *
5433  * @param cls closure
5434  * @param client identification of the client
5435  * @param message the actual message
5436  */
5437 static void
5438 handle_local_tunnel_create (void *cls, struct GNUNET_SERVER_Client *client,
5439                             const struct GNUNET_MessageHeader *message)
5440 {
5441   struct GNUNET_MESH_TunnelMessage *t_msg;
5442   struct MeshTunnel *t;
5443   struct MeshClient *c;
5444
5445   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "new tunnel requested\n");
5446
5447   /* Sanity check for client registration */
5448   if (NULL == (c = client_get (client)))
5449   {
5450     GNUNET_break (0);
5451     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
5452     return;
5453   }
5454   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  by client %u\n", c->id);
5455
5456   /* Message sanity check */
5457   if (sizeof (struct GNUNET_MESH_TunnelMessage) != ntohs (message->size))
5458   {
5459     GNUNET_break (0);
5460     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
5461     return;
5462   }
5463
5464   t_msg = (struct GNUNET_MESH_TunnelMessage *) message;
5465   /* Sanity check for tunnel numbering */
5466   if (0 == (ntohl (t_msg->tunnel_id) & GNUNET_MESH_LOCAL_TUNNEL_ID_CLI))
5467   {
5468     GNUNET_break (0);
5469     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
5470     return;
5471   }
5472   /* Sanity check for duplicate tunnel IDs */
5473   if (NULL != tunnel_get_by_local_id (c, ntohl (t_msg->tunnel_id)))
5474   {
5475     GNUNET_break (0);
5476     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
5477     return;
5478   }
5479
5480   while (NULL != tunnel_get_by_pi (myid, next_tid))
5481     next_tid = (next_tid + 1) & ~GNUNET_MESH_LOCAL_TUNNEL_ID_CLI;
5482   t = tunnel_new (myid, next_tid++, c, ntohl (t_msg->tunnel_id));
5483   if (NULL == t)
5484   {
5485     GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Tunnel creation failed.\n");
5486     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
5487     return;
5488   }
5489   next_tid = next_tid & ~GNUNET_MESH_LOCAL_TUNNEL_ID_CLI;
5490   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "CREATED TUNNEL %s [%x] (%x)\n",
5491               GNUNET_i2s (&my_full_id), t->id.tid, t->local_tid);
5492   t->peers = GNUNET_CONTAINER_multihashmap_create (32);
5493
5494   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "new tunnel created\n");
5495   GNUNET_SERVER_receive_done (client, GNUNET_OK);
5496   return;
5497 }
5498
5499
5500 /**
5501  * Handler for requests of deleting tunnels
5502  *
5503  * @param cls closure
5504  * @param client identification of the client
5505  * @param message the actual message
5506  */
5507 static void
5508 handle_local_tunnel_destroy (void *cls, struct GNUNET_SERVER_Client *client,
5509                              const struct GNUNET_MessageHeader *message)
5510 {
5511   struct GNUNET_MESH_TunnelMessage *tunnel_msg;
5512   struct MeshClient *c;
5513   struct MeshTunnel *t;
5514   MESH_TunnelNumber tid;
5515
5516   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
5517               "Got a DESTROY TUNNEL from client!\n");
5518
5519   /* Sanity check for client registration */
5520   if (NULL == (c = client_get (client)))
5521   {
5522     GNUNET_break (0);
5523     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
5524     return;
5525   }
5526   /* Message sanity check */
5527   if (sizeof (struct GNUNET_MESH_TunnelMessage) != ntohs (message->size))
5528   {
5529     GNUNET_break (0);
5530     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
5531     return;
5532   }
5533   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  by client %u\n", c->id);
5534   tunnel_msg = (struct GNUNET_MESH_TunnelMessage *) message;
5535
5536   /* Retrieve tunnel */
5537   tid = ntohl (tunnel_msg->tunnel_id);
5538   t = tunnel_get_by_local_id(c, tid);
5539   if (NULL == t)
5540   {
5541     GNUNET_break (0);
5542     GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "  tunnel %X not found\n", tid);
5543     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
5544     return;
5545   }
5546   if (c != t->owner || tid >= GNUNET_MESH_LOCAL_TUNNEL_ID_SERV)
5547   {
5548     client_ignore_tunnel (c, t);
5549 #if 0
5550     // TODO: when to destroy incoming tunnel?
5551     if (t->nclients == 0)
5552     {
5553       GNUNET_assert (GNUNET_YES ==
5554                      GNUNET_CONTAINER_multihashmap_remove (incoming_tunnels,
5555                                                            &hash, t));
5556       GNUNET_assert (GNUNET_YES ==
5557                      GNUNET_CONTAINER_multihashmap_remove (t->peers,
5558                                                            &my_full_id.hashPubKey,
5559                                                            t));
5560     }
5561 #endif
5562     GNUNET_SERVER_receive_done (client, GNUNET_OK);
5563     return;
5564   }
5565   send_client_tunnel_disconnect(t, c);
5566   client_delete_tunnel(c, t);
5567
5568   /* Don't try to ACK the client about the tunnel_destroy multicast packet */
5569   t->owner = NULL;
5570   tunnel_send_destroy (t);
5571   t->destroy = GNUNET_YES;
5572   // The tunnel will be destroyed when the last message is transmitted.
5573   GNUNET_SERVER_receive_done (client, GNUNET_OK);
5574   return;
5575 }
5576
5577
5578 /**
5579  * Handler for requests of seeting tunnel's speed.
5580  *
5581  * @param cls Closure (unused).
5582  * @param client Identification of the client.
5583  * @param message The actual message.
5584  */
5585 static void
5586 handle_local_tunnel_speed (void *cls, struct GNUNET_SERVER_Client *client,
5587                            const struct GNUNET_MessageHeader *message)
5588 {
5589   struct GNUNET_MESH_TunnelMessage *tunnel_msg;
5590   struct MeshClient *c;
5591   struct MeshTunnel *t;
5592   MESH_TunnelNumber tid;
5593
5594   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
5595               "Got a SPEED request from client!\n");
5596
5597   /* Sanity check for client registration */
5598   if (NULL == (c = client_get (client)))
5599   {
5600     GNUNET_break (0);
5601     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
5602     return;
5603   }
5604
5605   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  by client %u\n", c->id);
5606   tunnel_msg = (struct GNUNET_MESH_TunnelMessage *) message;
5607
5608   /* Retrieve tunnel */
5609   tid = ntohl (tunnel_msg->tunnel_id);
5610   t = tunnel_get_by_local_id(c, tid);
5611   if (NULL == t)
5612   {
5613     GNUNET_break (0);
5614     GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "  tunnel %X not found\n", tid);
5615     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
5616     return;
5617   }
5618
5619   switch (ntohs(message->type))
5620   {
5621       case GNUNET_MESSAGE_TYPE_MESH_LOCAL_TUNNEL_MIN:
5622           t->speed_min = GNUNET_YES;
5623           break;
5624       case GNUNET_MESSAGE_TYPE_MESH_LOCAL_TUNNEL_MAX:
5625           t->speed_min = GNUNET_NO;
5626           break;
5627       default:
5628           GNUNET_break (0);
5629   }
5630   GNUNET_SERVER_receive_done (client, GNUNET_OK);
5631 }
5632
5633
5634 /**
5635  * Handler for requests of seeting tunnel's buffering policy.
5636  *
5637  * @param cls Closure (unused).
5638  * @param client Identification of the client.
5639  * @param message The actual message.
5640  */
5641 static void
5642 handle_local_tunnel_buffer (void *cls, struct GNUNET_SERVER_Client *client,
5643                             const struct GNUNET_MessageHeader *message)
5644 {
5645   struct GNUNET_MESH_TunnelMessage *tunnel_msg;
5646   struct MeshClient *c;
5647   struct MeshTunnel *t;
5648   MESH_TunnelNumber tid;
5649
5650   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
5651               "Got a BUFFER request from client!\n");
5652
5653   /* Sanity check for client registration */
5654   if (NULL == (c = client_get (client)))
5655   {
5656     GNUNET_break (0);
5657     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
5658     return;
5659   }
5660
5661   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  by client %u\n", c->id);
5662   tunnel_msg = (struct GNUNET_MESH_TunnelMessage *) message;
5663
5664   /* Retrieve tunnel */
5665   tid = ntohl (tunnel_msg->tunnel_id);
5666   t = tunnel_get_by_local_id(c, tid);
5667   if (NULL == t)
5668   {
5669     GNUNET_break (0);
5670     GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "  tunnel %X not found\n", tid);
5671     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
5672     return;
5673   }
5674
5675   switch (ntohs(message->type))
5676   {
5677       case GNUNET_MESSAGE_TYPE_MESH_LOCAL_TUNNEL_BUFFER:
5678           t->nobuffer = GNUNET_NO;
5679           break;
5680       case GNUNET_MESSAGE_TYPE_MESH_LOCAL_TUNNEL_NOBUFFER:
5681           t->nobuffer = GNUNET_YES;
5682           break;
5683       default:
5684           GNUNET_break (0);
5685   }
5686
5687   GNUNET_SERVER_receive_done (client, GNUNET_OK);
5688 }
5689
5690
5691 /**
5692  * Handler for connection requests to new peers
5693  *
5694  * @param cls closure
5695  * @param client identification of the client
5696  * @param message the actual message (PeerControl)
5697  */
5698 static void
5699 handle_local_connect_add (void *cls, struct GNUNET_SERVER_Client *client,
5700                           const struct GNUNET_MessageHeader *message)
5701 {
5702   struct GNUNET_MESH_PeerControl *peer_msg;
5703   struct MeshPeerInfo *peer_info;
5704   struct MeshClient *c;
5705   struct MeshTunnel *t;
5706   MESH_TunnelNumber tid;
5707
5708   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Got connection request\n");
5709   /* Sanity check for client registration */
5710   if (NULL == (c = client_get (client)))
5711   {
5712     GNUNET_break (0);
5713     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
5714     return;
5715   }
5716
5717   peer_msg = (struct GNUNET_MESH_PeerControl *) message;
5718   /* Sanity check for message size */
5719   if (sizeof (struct GNUNET_MESH_PeerControl) != ntohs (peer_msg->header.size))
5720   {
5721     GNUNET_break (0);
5722     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
5723     return;
5724   }
5725
5726   /* Tunnel exists? */
5727   tid = ntohl (peer_msg->tunnel_id);
5728   t = tunnel_get_by_local_id (c, tid);
5729   if (NULL == t)
5730   {
5731     GNUNET_break (0);
5732     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
5733     return;
5734   }
5735
5736   /* Does client own tunnel? */
5737   if (t->owner->handle != client)
5738   {
5739     GNUNET_break (0);
5740     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
5741     return;
5742   }
5743   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "     for %s\n",
5744               GNUNET_i2s (&peer_msg->peer));
5745   peer_info = peer_info_get (&peer_msg->peer);
5746
5747   tunnel_add_peer (t, peer_info);
5748   peer_info_connect (peer_info, t);
5749
5750   GNUNET_SERVER_receive_done (client, GNUNET_OK);
5751   return;
5752 }
5753
5754
5755 /**
5756  * Handler for disconnection requests of peers in a tunnel
5757  *
5758  * @param cls closure
5759  * @param client identification of the client
5760  * @param message the actual message (PeerControl)
5761  */
5762 static void
5763 handle_local_connect_del (void *cls, struct GNUNET_SERVER_Client *client,
5764                           const struct GNUNET_MessageHeader *message)
5765 {
5766   struct GNUNET_MESH_PeerControl *peer_msg;
5767   struct MeshPeerInfo *peer_info;
5768   struct MeshClient *c;
5769   struct MeshTunnel *t;
5770   MESH_TunnelNumber tid;
5771
5772   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Got a PEER DEL request\n");
5773   /* Sanity check for client registration */
5774   if (NULL == (c = client_get (client)))
5775   {
5776     GNUNET_break (0);
5777     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
5778     return;
5779   }
5780   peer_msg = (struct GNUNET_MESH_PeerControl *) message;
5781   /* Sanity check for message size */
5782   if (sizeof (struct GNUNET_MESH_PeerControl) != ntohs (peer_msg->header.size))
5783   {
5784     GNUNET_break (0);
5785     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
5786     return;
5787   }
5788
5789   /* Tunnel exists? */
5790   tid = ntohl (peer_msg->tunnel_id);
5791   t = tunnel_get_by_local_id (c, tid);
5792   if (NULL == t)
5793   {
5794     GNUNET_break (0);
5795     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
5796     return;
5797   }
5798   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  on tunnel %X\n", t->id.tid);
5799
5800   /* Does client own tunnel? */
5801   if (t->owner->handle != client)
5802   {
5803     GNUNET_break (0);
5804     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
5805     return;
5806   }
5807
5808   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  for peer %s\n",
5809               GNUNET_i2s (&peer_msg->peer));
5810   /* Is the peer in the tunnel? */
5811   peer_info =
5812       GNUNET_CONTAINER_multihashmap_get (t->peers, &peer_msg->peer.hashPubKey);
5813   if (NULL == peer_info)
5814   {
5815     GNUNET_break (0);
5816     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
5817     return;
5818   }
5819
5820   /* Ok, delete peer from tunnel */
5821   GNUNET_CONTAINER_multihashmap_remove_all (t->peers,
5822                                             &peer_msg->peer.hashPubKey);
5823
5824   send_destroy_path (t, peer_info->id);
5825   tunnel_delete_peer (t, peer_info->id);
5826   GNUNET_SERVER_receive_done (client, GNUNET_OK);
5827   return;
5828 }
5829
5830 /**
5831  * Handler for blacklist requests of peers in a tunnel
5832  *
5833  * @param cls closure
5834  * @param client identification of the client
5835  * @param message the actual message (PeerControl)
5836  */
5837 static void
5838 handle_local_blacklist (void *cls, struct GNUNET_SERVER_Client *client,
5839                           const struct GNUNET_MessageHeader *message)
5840 {
5841   struct GNUNET_MESH_PeerControl *peer_msg;
5842   struct MeshClient *c;
5843   struct MeshTunnel *t;
5844   MESH_TunnelNumber tid;
5845
5846   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Got a PEER BLACKLIST request\n");
5847   /* Sanity check for client registration */
5848   if (NULL == (c = client_get (client)))
5849   {
5850     GNUNET_break (0);
5851     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
5852     return;
5853   }
5854   peer_msg = (struct GNUNET_MESH_PeerControl *) message;
5855
5856   /* Sanity check for message size */
5857   if (sizeof (struct GNUNET_MESH_PeerControl) != ntohs (peer_msg->header.size))
5858   {
5859     GNUNET_break (0);
5860     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
5861     return;
5862   }
5863
5864   /* Tunnel exists? */
5865   tid = ntohl (peer_msg->tunnel_id);
5866   t = tunnel_get_by_local_id (c, tid);
5867   if (NULL == t)
5868   {
5869     GNUNET_break (0);
5870     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
5871     return;
5872   }
5873   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  on tunnel %X\n", t->id.tid);
5874
5875   GNUNET_array_append(t->blacklisted, t->nblacklisted,
5876                       GNUNET_PEER_intern(&peer_msg->peer));
5877 }
5878
5879
5880 /**
5881  * Handler for unblacklist requests of peers in a tunnel
5882  *
5883  * @param cls closure
5884  * @param client identification of the client
5885  * @param message the actual message (PeerControl)
5886  */
5887 static void
5888 handle_local_unblacklist (void *cls, struct GNUNET_SERVER_Client *client,
5889                           const struct GNUNET_MessageHeader *message)
5890 {
5891   struct GNUNET_MESH_PeerControl *peer_msg;
5892   struct MeshClient *c;
5893   struct MeshTunnel *t;
5894   MESH_TunnelNumber tid;
5895   GNUNET_PEER_Id pid;
5896   unsigned int i;
5897
5898   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Got a PEER UNBLACKLIST request\n");
5899   /* Sanity check for client registration */
5900   if (NULL == (c = client_get (client)))
5901   {
5902     GNUNET_break (0);
5903     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
5904     return;
5905   }
5906   peer_msg = (struct GNUNET_MESH_PeerControl *) message;
5907
5908   /* Sanity check for message size */
5909   if (sizeof (struct GNUNET_MESH_PeerControl) != ntohs (peer_msg->header.size))
5910   {
5911     GNUNET_break (0);
5912     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
5913     return;
5914   }
5915
5916   /* Tunnel exists? */
5917   tid = ntohl (peer_msg->tunnel_id);
5918   t = tunnel_get_by_local_id (c, tid);
5919   if (NULL == t)
5920   {
5921     GNUNET_break (0);
5922     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
5923     return;
5924   }
5925   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  on tunnel %X\n", t->id.tid);
5926
5927   /* if peer is not known, complain */
5928   pid = GNUNET_PEER_search (&peer_msg->peer);
5929   if (0 == pid)
5930   {
5931     GNUNET_break (0);
5932     return;
5933   }
5934
5935   /* search and remove from list */
5936   for (i = 0; i < t->nblacklisted; i++)
5937   {
5938     if (t->blacklisted[i] == pid)
5939     {
5940       t->blacklisted[i] = t->blacklisted[t->nblacklisted - 1];
5941       GNUNET_array_grow (t->blacklisted, t->nblacklisted, t->nblacklisted - 1);
5942       return;
5943     }
5944   }
5945
5946   /* if peer hasn't been blacklisted, complain */
5947   GNUNET_break (0);
5948 }
5949
5950
5951 /**
5952  * Handler for connection requests to new peers by type
5953  *
5954  * @param cls closure
5955  * @param client identification of the client
5956  * @param message the actual message (ConnectPeerByType)
5957  */
5958 static void
5959 handle_local_connect_by_type (void *cls, struct GNUNET_SERVER_Client *client,
5960                               const struct GNUNET_MessageHeader *message)
5961 {
5962   struct GNUNET_MESH_ConnectPeerByType *connect_msg;
5963   struct MeshClient *c;
5964   struct MeshTunnel *t;
5965   struct GNUNET_HashCode hash;
5966   MESH_TunnelNumber tid;
5967
5968   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "got connect by type request\n");
5969   /* Sanity check for client registration */
5970   if (NULL == (c = client_get (client)))
5971   {
5972     GNUNET_break (0);
5973     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
5974     return;
5975   }
5976
5977   connect_msg = (struct GNUNET_MESH_ConnectPeerByType *) message;
5978   /* Sanity check for message size */
5979   if (sizeof (struct GNUNET_MESH_ConnectPeerByType) !=
5980       ntohs (connect_msg->header.size))
5981   {
5982     GNUNET_break (0);
5983     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
5984     return;
5985   }
5986
5987   /* Tunnel exists? */
5988   tid = ntohl (connect_msg->tunnel_id);
5989   t = tunnel_get_by_local_id (c, tid);
5990   if (NULL == t)
5991   {
5992     GNUNET_break (0);
5993     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
5994     return;
5995   }
5996
5997   /* Does client own tunnel? */
5998   if (t->owner->handle != client)
5999   {
6000     GNUNET_break (0);
6001     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
6002     return;
6003   }
6004
6005   /* Do WE have the service? */
6006   t->type = ntohl (connect_msg->type);
6007   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, " type requested: %u\n", t->type);
6008   GNUNET_CRYPTO_hash (&t->type, sizeof (GNUNET_MESH_ApplicationType), &hash);
6009   if (GNUNET_CONTAINER_multihashmap_contains (applications, &hash) ==
6010       GNUNET_YES)
6011   {
6012     /* Yes! Fast forward, add ourselves to the tunnel and send the
6013      * good news to the client, and alert the destination client of
6014      * an incoming tunnel.
6015      *
6016      * FIXME send a path create to self, avoid code duplication
6017      */
6018     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, " available locally\n");
6019     GNUNET_CONTAINER_multihashmap_put (t->peers, &my_full_id.hashPubKey,
6020                                        peer_info_get (&my_full_id),
6021                                        GNUNET_CONTAINER_MULTIHASHMAPOPTION_UNIQUE_FAST);
6022
6023     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, " notifying client\n");
6024     send_client_peer_connected (t, myid);
6025     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, " Done\n");
6026     GNUNET_SERVER_receive_done (client, GNUNET_OK);
6027
6028     t->local_tid_dest = next_local_tid++;
6029     GNUNET_CRYPTO_hash (&t->local_tid_dest, sizeof (MESH_TunnelNumber), &hash);
6030     GNUNET_CONTAINER_multihashmap_put (incoming_tunnels, &hash, t,
6031                                        GNUNET_CONTAINER_MULTIHASHMAPOPTION_UNIQUE_FAST);
6032
6033     return;
6034   }
6035   /* Ok, lets find a peer offering the service */
6036   if (NULL != t->dht_get_type)
6037   {
6038     GNUNET_DHT_get_stop (t->dht_get_type);
6039   }
6040   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, " looking in DHT for %s\n",
6041               GNUNET_h2s (&hash));
6042   t->dht_get_type =
6043       GNUNET_DHT_get_start (dht_handle, 
6044                             GNUNET_BLOCK_TYPE_MESH_PEER_BY_TYPE,
6045                             &hash,
6046                             dht_replication_level,
6047                             GNUNET_DHT_RO_RECORD_ROUTE |
6048                             GNUNET_DHT_RO_DEMULTIPLEX_EVERYWHERE,
6049                             NULL, 0,
6050                             &dht_get_type_handler, t);
6051
6052   GNUNET_SERVER_receive_done (client, GNUNET_OK);
6053   return;
6054 }
6055
6056
6057 /**
6058  * Handler for connection requests to new peers by a string service description.
6059  *
6060  * @param cls closure
6061  * @param client identification of the client
6062  * @param message the actual message, which includes messages the client wants
6063  */
6064 static void
6065 handle_local_connect_by_string (void *cls, struct GNUNET_SERVER_Client *client,
6066                                 const struct GNUNET_MessageHeader *message)
6067 {
6068   struct GNUNET_MESH_ConnectPeerByString *msg;
6069   struct MeshRegexSearchContext *ctx;
6070   struct MeshRegexSearchInfo *info;
6071   struct GNUNET_DHT_GetHandle *get_h;
6072   struct GNUNET_HashCode key;
6073   struct MeshTunnel *t;
6074   struct MeshClient *c;
6075   MESH_TunnelNumber tid;
6076   const char *string;
6077   size_t size;
6078   size_t len;
6079   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
6080               "Connect by string started\n");
6081   msg = (struct GNUNET_MESH_ConnectPeerByString *) message;
6082   size = htons (message->size);
6083
6084   /* Sanity check for client registration */
6085   if (NULL == (c = client_get (client)))
6086   {
6087     GNUNET_break (0);
6088     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
6089     return;
6090   }
6091
6092   /* Message size sanity check */
6093   if (sizeof(struct GNUNET_MESH_ConnectPeerByString) >= size)
6094   {
6095       GNUNET_break (0);
6096       GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
6097       return;
6098   }
6099
6100   /* Tunnel exists? */
6101   tid = ntohl (msg->tunnel_id);
6102   t = tunnel_get_by_local_id (c, tid);
6103   if (NULL == t)
6104   {
6105     GNUNET_break (0);
6106     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
6107     return;
6108   }
6109
6110   /* Does client own tunnel? */
6111   if (t->owner->handle != client)
6112   {
6113     GNUNET_break (0);
6114     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
6115     return;
6116   }
6117
6118   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
6119               "  on tunnel %s [%u]\n",
6120               GNUNET_i2s(&my_full_id),
6121               t->id.tid);
6122
6123   /* Only one connect_by_string allowed at the same time! */
6124   /* FIXME: allow more, return handle at api level to cancel, document */
6125   if (NULL != t->regex_ctx)
6126   {
6127     GNUNET_break (0);
6128     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
6129     return;
6130   }
6131
6132   /* Find string itself */
6133   len = size - sizeof(struct GNUNET_MESH_ConnectPeerByString);
6134   string = (const char *) &msg[1];
6135
6136   /* Initialize context */
6137   size = GNUNET_REGEX_get_first_key(string, len, &key);
6138   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
6139               "  consumed %u bits out of %u\n", size, len);
6140   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
6141               "  looking for %s\n", GNUNET_h2s (&key));
6142
6143   info = GNUNET_malloc (sizeof (struct MeshRegexSearchInfo));
6144   info->t = t;
6145   info->description = GNUNET_malloc (len + 1);
6146   memcpy (info->description, string, len);
6147   info->description[len] = '\0';
6148   info->dht_get_handles = GNUNET_CONTAINER_multihashmap_create(32);
6149   info->dht_get_results = GNUNET_CONTAINER_multihashmap_create(32);
6150   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "   string: %s\n", info->description);
6151
6152   ctx = GNUNET_malloc (sizeof (struct MeshRegexSearchContext));
6153   ctx->position = size;
6154   ctx->info = info;
6155   t->regex_ctx = ctx;
6156
6157   GNUNET_array_append (info->contexts, info->n_contexts, ctx);
6158
6159   /* Start search in DHT */
6160   get_h = GNUNET_DHT_get_start (dht_handle,    /* handle */
6161                                 GNUNET_BLOCK_TYPE_MESH_REGEX, /* type */
6162                                 &key,     /* key to search */
6163                                 dht_replication_level, /* replication level */
6164                                 GNUNET_DHT_RO_DEMULTIPLEX_EVERYWHERE,
6165                                 NULL,       /* xquery */ // FIXME BLOOMFILTER
6166                                 0,     /* xquery bits */ // FIXME BLOOMFILTER SIZE
6167                                 &dht_get_string_handler, ctx);
6168
6169   GNUNET_break (GNUNET_OK ==
6170                 GNUNET_CONTAINER_multihashmap_put(info->dht_get_handles,
6171                                                   &key,
6172                                                   get_h,
6173                                                   GNUNET_CONTAINER_MULTIHASHMAPOPTION_UNIQUE_FAST));
6174
6175   GNUNET_SERVER_receive_done (client, GNUNET_OK);
6176   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "connect by string processed\n");
6177 }
6178
6179
6180 /**
6181  * Handler for client traffic directed to one peer
6182  *
6183  * @param cls closure
6184  * @param client identification of the client
6185  * @param message the actual message
6186  */
6187 static void
6188 handle_local_unicast (void *cls, struct GNUNET_SERVER_Client *client,
6189                       const struct GNUNET_MessageHeader *message)
6190 {
6191   struct MeshClient *c;
6192   struct MeshTunnel *t;
6193   struct MeshPeerInfo *pi;
6194   struct GNUNET_MESH_Unicast *data_msg;
6195   MESH_TunnelNumber tid;
6196   size_t size;
6197
6198   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
6199               "Got a unicast request from a client!\n");
6200
6201   /* Sanity check for client registration */
6202   if (NULL == (c = client_get (client)))
6203   {
6204     GNUNET_break (0);
6205     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
6206     return;
6207   }
6208   data_msg = (struct GNUNET_MESH_Unicast *) message;
6209   /* Sanity check for message size */
6210   size = ntohs (message->size);
6211   if (sizeof (struct GNUNET_MESH_Unicast) +
6212       sizeof (struct GNUNET_MessageHeader) > size)
6213   {
6214     GNUNET_break (0);
6215     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
6216     return;
6217   }
6218
6219   /* Tunnel exists? */
6220   tid = ntohl (data_msg->tid);
6221   t = tunnel_get_by_local_id (c, tid);
6222   if (NULL == t)
6223   {
6224     GNUNET_break (0);
6225     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
6226     return;
6227   }
6228
6229   /*  Is it a local tunnel? Then, does client own the tunnel? */
6230   if (t->owner->handle != client)
6231   {
6232     GNUNET_break (0);
6233     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
6234     return;
6235   }
6236
6237   pi = GNUNET_CONTAINER_multihashmap_get (t->peers,
6238                                           &data_msg->destination.hashPubKey);
6239   /* Is the selected peer in the tunnel? */
6240   if (NULL == pi)
6241   {
6242     GNUNET_break (0);
6243     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
6244     return;
6245   }
6246
6247   /* Ok, everything is correct, send the message
6248    * (pretend we got it from a mesh peer)
6249    */
6250   {
6251     char buf[ntohs (message->size)] GNUNET_ALIGN;
6252     struct GNUNET_MESH_Unicast *copy;
6253
6254     /* Work around const limitation */
6255     copy = (struct GNUNET_MESH_Unicast *) buf;
6256     memcpy (buf, data_msg, size);
6257     copy->oid = my_full_id;
6258     copy->tid = htonl (t->id.tid);
6259     copy->ttl = htonl (default_ttl);
6260     copy->pid = htonl (t->pid + 1);
6261     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
6262                 "  calling generic handler...\n");
6263     handle_mesh_data_unicast (NULL, &my_full_id, &copy->header, NULL, 0);
6264     send_client_tunnel_ack (t->owner, t);
6265   }
6266   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "receive done OK\n");
6267   GNUNET_SERVER_receive_done (client, GNUNET_OK);
6268   return;
6269 }
6270
6271
6272 /**
6273  * Handler for client traffic directed to the origin
6274  *
6275  * @param cls closure
6276  * @param client identification of the client
6277  * @param message the actual message
6278  */
6279 static void
6280 handle_local_to_origin (void *cls, struct GNUNET_SERVER_Client *client,
6281                         const struct GNUNET_MessageHeader *message)
6282 {
6283   struct GNUNET_MESH_ToOrigin *data_msg;
6284   struct GNUNET_PeerIdentity id;
6285   struct MeshClient *c;
6286   struct MeshTunnel *t;
6287   MESH_TunnelNumber tid;
6288   size_t size;
6289
6290   /* Sanity check for client registration */
6291   if (NULL == (c = client_get (client)))
6292   {
6293     GNUNET_break (0);
6294     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
6295     return;
6296   }
6297   data_msg = (struct GNUNET_MESH_ToOrigin *) message;
6298   /* Sanity check for message size */
6299   size = ntohs (message->size);
6300   if (sizeof (struct GNUNET_MESH_ToOrigin) +
6301       sizeof (struct GNUNET_MessageHeader) > size)
6302   {
6303     GNUNET_break (0);
6304     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
6305     return;
6306   }
6307
6308   /* Tunnel exists? */
6309   tid = ntohl (data_msg->tid);
6310   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
6311               "Got a ToOrigin request from a client! Tunnel %X\n", tid);
6312   if (tid < GNUNET_MESH_LOCAL_TUNNEL_ID_SERV)
6313   {
6314     GNUNET_break (0);
6315     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
6316     return;
6317   }
6318   t = tunnel_get_by_local_id (c, tid);
6319   if (NULL == t)
6320   {
6321     GNUNET_break (0);
6322     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
6323     return;
6324   }
6325
6326   /*  It should be sent by someone who has this as incoming tunnel. */
6327   if (-1 == client_knows_tunnel (c, t))
6328   {
6329     GNUNET_break (0);
6330     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
6331     return;
6332   }
6333   GNUNET_PEER_resolve (t->id.oid, &id);
6334
6335   /* Ok, everything is correct, send the message
6336    * (pretend we got it from a mesh peer)
6337    */
6338   {
6339     char buf[ntohs (message->size)] GNUNET_ALIGN;
6340     struct GNUNET_MESH_ToOrigin *copy;
6341
6342     /* Work around const limitation */
6343     copy = (struct GNUNET_MESH_ToOrigin *) buf;
6344     memcpy (buf, data_msg, size);
6345     copy->oid = id;
6346     copy->tid = htonl (t->id.tid);
6347     copy->sender = my_full_id;
6348     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
6349                 "  calling generic handler...\n");
6350     handle_mesh_data_to_orig (NULL, &my_full_id, &copy->header, NULL, 0);
6351   }
6352   GNUNET_SERVER_receive_done (client, GNUNET_OK);
6353   return;
6354 }
6355
6356
6357 /**
6358  * Handler for client traffic directed to all peers in a tunnel
6359  *
6360  * @param cls closure
6361  * @param client identification of the client
6362  * @param message the actual message
6363  */
6364 static void
6365 handle_local_multicast (void *cls, struct GNUNET_SERVER_Client *client,
6366                         const struct GNUNET_MessageHeader *message)
6367 {
6368   struct MeshClient *c;
6369   struct MeshTunnel *t;
6370   struct GNUNET_MESH_Multicast *data_msg;
6371   MESH_TunnelNumber tid;
6372
6373   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
6374               "Got a multicast request from a client!\n");
6375
6376   /* Sanity check for client registration */
6377   if (NULL == (c = client_get (client)))
6378   {
6379     GNUNET_break (0);
6380     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
6381     return;
6382   }
6383   data_msg = (struct GNUNET_MESH_Multicast *) message;
6384   /* Sanity check for message size */
6385   if (sizeof (struct GNUNET_MESH_Multicast) +
6386       sizeof (struct GNUNET_MessageHeader) > ntohs (data_msg->header.size))
6387   {
6388     GNUNET_break (0);
6389     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
6390     return;
6391   }
6392
6393   /* Tunnel exists? */
6394   tid = ntohl (data_msg->tid);
6395   t = tunnel_get_by_local_id (c, tid);
6396   if (NULL == t)
6397   {
6398     GNUNET_break (0);
6399     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
6400     return;
6401   }
6402
6403   /* Does client own tunnel? */
6404   if (t->owner->handle != client)
6405   {
6406     GNUNET_break (0);
6407     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
6408     return;
6409   }
6410
6411   {
6412     char buf[ntohs (message->size)] GNUNET_ALIGN;
6413     struct GNUNET_MESH_Multicast *copy;
6414
6415     copy = (struct GNUNET_MESH_Multicast *) buf;
6416     memcpy (buf, message, ntohs (message->size));
6417     copy->oid = my_full_id;
6418     copy->tid = htonl (t->id.tid);
6419     copy->ttl = htonl (default_ttl);
6420     copy->pid = htonl (t->pid + 1);
6421     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
6422                 "  calling generic handler...\n");
6423     handle_mesh_data_multicast (client, &my_full_id, &copy->header, NULL, 0);
6424   }
6425
6426   /* receive done gets called when last copy is sent to a neighbor */
6427   return;
6428 }
6429
6430
6431 /**
6432  * Functions to handle messages from clients
6433  */
6434 static struct GNUNET_SERVER_MessageHandler client_handlers[] = {
6435   {&handle_local_new_client, NULL,
6436    GNUNET_MESSAGE_TYPE_MESH_LOCAL_CONNECT, 0},
6437   {&handle_local_announce_regex, NULL,
6438    GNUNET_MESSAGE_TYPE_MESH_LOCAL_ANNOUNCE_REGEX, 0},
6439   {&handle_local_tunnel_create, NULL,
6440    GNUNET_MESSAGE_TYPE_MESH_LOCAL_TUNNEL_CREATE,
6441    sizeof (struct GNUNET_MESH_TunnelMessage)},
6442   {&handle_local_tunnel_destroy, NULL,
6443    GNUNET_MESSAGE_TYPE_MESH_LOCAL_TUNNEL_DESTROY,
6444    sizeof (struct GNUNET_MESH_TunnelMessage)},
6445   {&handle_local_tunnel_speed, NULL,
6446    GNUNET_MESSAGE_TYPE_MESH_LOCAL_TUNNEL_MIN,
6447    sizeof (struct GNUNET_MESH_TunnelMessage)},
6448   {&handle_local_tunnel_speed, NULL,
6449    GNUNET_MESSAGE_TYPE_MESH_LOCAL_TUNNEL_MAX,
6450    sizeof (struct GNUNET_MESH_TunnelMessage)},
6451   {&handle_local_tunnel_buffer, NULL,
6452    GNUNET_MESSAGE_TYPE_MESH_LOCAL_TUNNEL_BUFFER,
6453    sizeof (struct GNUNET_MESH_TunnelMessage)},
6454   {&handle_local_tunnel_buffer, NULL,
6455    GNUNET_MESSAGE_TYPE_MESH_LOCAL_TUNNEL_NOBUFFER,
6456    sizeof (struct GNUNET_MESH_TunnelMessage)},
6457   {&handle_local_connect_add, NULL,
6458    GNUNET_MESSAGE_TYPE_MESH_LOCAL_PEER_ADD,
6459    sizeof (struct GNUNET_MESH_PeerControl)},
6460   {&handle_local_connect_del, NULL,
6461    GNUNET_MESSAGE_TYPE_MESH_LOCAL_PEER_DEL,
6462    sizeof (struct GNUNET_MESH_PeerControl)},
6463   {&handle_local_blacklist, NULL,
6464    GNUNET_MESSAGE_TYPE_MESH_LOCAL_PEER_BLACKLIST,
6465    sizeof (struct GNUNET_MESH_PeerControl)},
6466   {&handle_local_unblacklist, NULL,
6467    GNUNET_MESSAGE_TYPE_MESH_LOCAL_PEER_UNBLACKLIST,
6468    sizeof (struct GNUNET_MESH_PeerControl)},
6469   {&handle_local_connect_by_type, NULL,
6470    GNUNET_MESSAGE_TYPE_MESH_LOCAL_PEER_ADD_BY_TYPE,
6471    sizeof (struct GNUNET_MESH_ConnectPeerByType)},
6472   {&handle_local_connect_by_string, NULL,
6473    GNUNET_MESSAGE_TYPE_MESH_LOCAL_PEER_ADD_BY_STRING, 0},
6474   {&handle_local_unicast, NULL,
6475    GNUNET_MESSAGE_TYPE_MESH_UNICAST, 0},
6476   {&handle_local_to_origin, NULL,
6477    GNUNET_MESSAGE_TYPE_MESH_TO_ORIGIN, 0},
6478   {&handle_local_multicast, NULL,
6479    GNUNET_MESSAGE_TYPE_MESH_MULTICAST, 0},
6480   {NULL, NULL, 0, 0}
6481 };
6482
6483
6484 /**
6485  * To be called on core init/fail.
6486  *
6487  * @param cls service closure
6488  * @param server handle to the server for this service
6489  * @param identity the public identity of this peer
6490  */
6491 static void
6492 core_init (void *cls, struct GNUNET_CORE_Handle *server,
6493            const struct GNUNET_PeerIdentity *identity)
6494 {
6495   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Core init\n");
6496   core_handle = server;
6497   if (0 != memcmp (identity, &my_full_id, sizeof (my_full_id)) ||
6498       NULL == server)
6499   {
6500     GNUNET_log (GNUNET_ERROR_TYPE_ERROR, _("Wrong CORE service\n"));
6501     GNUNET_SCHEDULER_shutdown ();
6502   }
6503   return;
6504 }
6505
6506
6507 /**
6508  * Method called whenever a given peer connects.
6509  *
6510  * @param cls closure
6511  * @param peer peer identity this notification is about
6512  * @param atsi performance data for the connection
6513  * @param atsi_count number of records in 'atsi'
6514  */
6515 static void
6516 core_connect (void *cls, const struct GNUNET_PeerIdentity *peer,
6517               const struct GNUNET_ATS_Information *atsi,
6518               unsigned int atsi_count)
6519 {
6520   struct MeshPeerInfo *peer_info;
6521   struct MeshPeerPath *path;
6522
6523   DEBUG_CONN ("Peer connected\n");
6524   DEBUG_CONN ("     %s\n", GNUNET_i2s (&my_full_id));
6525   peer_info = peer_info_get (peer);
6526   if (myid == peer_info->id)
6527   {
6528     DEBUG_CONN ("     (self)\n");
6529     return;
6530   }
6531   else
6532   {
6533     DEBUG_CONN ("     %s\n", GNUNET_i2s (peer));
6534   }
6535   path = path_new (2);
6536   path->peers[0] = myid;
6537   path->peers[1] = peer_info->id;
6538   GNUNET_PEER_change_rc (myid, 1);
6539   GNUNET_PEER_change_rc (peer_info->id, 1);
6540   peer_info_add_path (peer_info, path, GNUNET_YES);
6541   GNUNET_STATISTICS_update (stats, "# peers", 1, GNUNET_NO);
6542   return;
6543 }
6544
6545
6546 /**
6547  * Method called whenever a peer disconnects.
6548  *
6549  * @param cls closure
6550  * @param peer peer identity this notification is about
6551  */
6552 static void
6553 core_disconnect (void *cls, const struct GNUNET_PeerIdentity *peer)
6554 {
6555   struct MeshPeerInfo *pi;
6556   struct MeshPeerQueue *q;
6557   struct MeshPeerQueue *n;
6558
6559   DEBUG_CONN ("Peer disconnected\n");
6560   pi = GNUNET_CONTAINER_multihashmap_get (peers, &peer->hashPubKey);
6561   if (NULL == pi)
6562   {
6563     GNUNET_break (0);
6564     return;
6565   }
6566   q = pi->queue_head;
6567   while (NULL != q)
6568   {
6569       n = q->next;
6570       if (q->peer == pi)
6571       {
6572         /* try to reroute this traffic instead */
6573         queue_destroy(q, GNUNET_YES);
6574       }
6575       q = n;
6576   }
6577   peer_info_remove_path (pi, pi->id, myid);
6578   if (myid == pi->id)
6579   {
6580     DEBUG_CONN ("     (self)\n");
6581   }
6582   GNUNET_STATISTICS_update (stats, "# peers", -1, GNUNET_NO);
6583   return;
6584 }
6585
6586
6587 /******************************************************************************/
6588 /************************      MAIN FUNCTIONS      ****************************/
6589 /******************************************************************************/
6590
6591 /**
6592  * Iterator over tunnel hash map entries to destroy the tunnel during shutdown.
6593  *
6594  * @param cls closure
6595  * @param key current key code
6596  * @param value value in the hash map
6597  * @return GNUNET_YES if we should continue to iterate,
6598  *         GNUNET_NO if not.
6599  */
6600 static int
6601 shutdown_tunnel (void *cls, const struct GNUNET_HashCode * key, void *value)
6602 {
6603   struct MeshTunnel *t = value;
6604
6605   tunnel_destroy (t);
6606   return GNUNET_YES;
6607 }
6608
6609 /**
6610  * Iterator over peer hash map entries to destroy the tunnel during shutdown.
6611  *
6612  * @param cls closure
6613  * @param key current key code
6614  * @param value value in the hash map
6615  * @return GNUNET_YES if we should continue to iterate,
6616  *         GNUNET_NO if not.
6617  */
6618 static int
6619 shutdown_peer (void *cls, const struct GNUNET_HashCode * key, void *value)
6620 {
6621   struct MeshPeerInfo *p = value;
6622   struct MeshPeerQueue *q;
6623   struct MeshPeerQueue *n;
6624
6625   q = p->queue_head;
6626   while (NULL != q)
6627   {
6628       n = q->next;
6629       if (q->peer == p)
6630       {
6631         queue_destroy(q, GNUNET_YES);
6632       }
6633       q = n;
6634   }
6635   peer_info_destroy (p);
6636   return GNUNET_YES;
6637 }
6638
6639 /**
6640  * Task run during shutdown.
6641  *
6642  * @param cls unused
6643  * @param tc unused
6644  */
6645 static void
6646 shutdown_task (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
6647 {
6648   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "shutting down\n");
6649
6650   if (core_handle != NULL)
6651   {
6652     GNUNET_CORE_disconnect (core_handle);
6653     core_handle = NULL;
6654   }
6655   GNUNET_CONTAINER_multihashmap_iterate (tunnels, &shutdown_tunnel, NULL);
6656   GNUNET_CONTAINER_multihashmap_iterate (peers, &shutdown_peer, NULL);
6657   if (dht_handle != NULL)
6658   {
6659     GNUNET_DHT_disconnect (dht_handle);
6660     dht_handle = NULL;
6661   }
6662   if (nc != NULL)
6663   {
6664     GNUNET_SERVER_notification_context_destroy (nc);
6665     nc = NULL;
6666   }
6667   if (GNUNET_SCHEDULER_NO_TASK != announce_id_task)
6668   {
6669     GNUNET_SCHEDULER_cancel (announce_id_task);
6670     announce_id_task = GNUNET_SCHEDULER_NO_TASK;
6671   }
6672   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "shut down\n");
6673 }
6674
6675 /**
6676  * Process mesh requests.
6677  *
6678  * @param cls closure
6679  * @param server the initialized server
6680  * @param c configuration to use
6681  */
6682 static void
6683 run (void *cls, struct GNUNET_SERVER_Handle *server,
6684      const struct GNUNET_CONFIGURATION_Handle *c)
6685 {
6686   struct MeshPeerInfo *peer;
6687   struct MeshPeerPath *p;
6688   char *keyfile;
6689
6690   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "starting to run\n");
6691   server_handle = server;
6692   core_handle = GNUNET_CORE_connect (c, /* Main configuration */
6693                                      NULL,      /* Closure passed to MESH functions */
6694                                      &core_init,        /* Call core_init once connected */
6695                                      &core_connect,     /* Handle connects */
6696                                      &core_disconnect,  /* remove peers on disconnects */
6697                                      NULL,      /* Don't notify about all incoming messages */
6698                                      GNUNET_NO, /* For header only in notification */
6699                                      NULL,      /* Don't notify about all outbound messages */
6700                                      GNUNET_NO, /* For header-only out notification */
6701                                      core_handlers);    /* Register these handlers */
6702
6703   if (core_handle == NULL)
6704   {
6705     GNUNET_break (0);
6706     GNUNET_SCHEDULER_shutdown ();
6707     return;
6708   }
6709
6710   if (GNUNET_OK !=
6711       GNUNET_CONFIGURATION_get_value_filename (c, "GNUNETD", "HOSTKEY",
6712                                                &keyfile))
6713   {
6714     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
6715                 _
6716                 ("Mesh service is lacking key configuration settings (%s).  Exiting.\n"),
6717                 "hostkey");
6718     GNUNET_SCHEDULER_shutdown ();
6719     return;
6720   }
6721
6722   if (GNUNET_OK !=
6723       GNUNET_CONFIGURATION_get_value_time (c, "MESH", "REFRESH_PATH_TIME",
6724                                            &refresh_path_time))
6725   {
6726     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
6727                 _
6728                 ("Mesh service is lacking key configuration settings (%s).  Exiting.\n"),
6729                 "refresh path time");
6730     GNUNET_SCHEDULER_shutdown ();
6731     return;
6732   }
6733
6734   if (GNUNET_OK !=
6735       GNUNET_CONFIGURATION_get_value_time (c, "MESH", "APP_ANNOUNCE_TIME",
6736                                            &app_announce_time))
6737   {
6738     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
6739                 _
6740                 ("Mesh service is lacking key configuration settings (%s).  Exiting.\n"),
6741                 "app announce time");
6742     GNUNET_SCHEDULER_shutdown ();
6743     return;
6744   }
6745
6746   if (GNUNET_OK !=
6747       GNUNET_CONFIGURATION_get_value_time (c, "MESH", "ID_ANNOUNCE_TIME",
6748                                            &id_announce_time))
6749   {
6750     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
6751                 _
6752                 ("Mesh service is lacking key configuration settings (%s).  Exiting.\n"),
6753                 "id announce time");
6754     GNUNET_SCHEDULER_shutdown ();
6755     return;
6756   }
6757
6758   if (GNUNET_OK !=
6759       GNUNET_CONFIGURATION_get_value_time (c, "MESH", "UNACKNOWLEDGED_WAIT",
6760                                            &unacknowledged_wait_time))
6761   {
6762     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
6763                 _
6764                 ("Mesh service is lacking key configuration settings (%s).  Exiting.\n"),
6765                 "unacknowledged wait time");
6766     GNUNET_SCHEDULER_shutdown ();
6767     return;
6768   }
6769
6770   if (GNUNET_OK !=
6771       GNUNET_CONFIGURATION_get_value_time (c, "MESH", "CONNECT_TIMEOUT",
6772                                            &connect_timeout))
6773   {
6774     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
6775                 _
6776                 ("Mesh service is lacking key configuration settings (%s).  Exiting.\n"),
6777                 "connect timeout");
6778     GNUNET_SCHEDULER_shutdown ();
6779     return;
6780   }
6781
6782   if (GNUNET_OK !=
6783       GNUNET_CONFIGURATION_get_value_number (c, "MESH", "MAX_MSGS_QUEUE",
6784                                              &max_msgs_queue))
6785   {
6786     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
6787                 _
6788                 ("Mesh service is lacking key configuration settings (%s).  Exiting.\n"),
6789                 "max msgs queue");
6790     GNUNET_SCHEDULER_shutdown ();
6791     return;
6792   }
6793
6794   if (GNUNET_OK !=
6795       GNUNET_CONFIGURATION_get_value_number (c, "MESH", "MAX_TUNNELS",
6796                                              &max_tunnels))
6797   {
6798     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
6799                 _
6800                 ("Mesh service is lacking key configuration settings (%s).  Exiting.\n"),
6801                 "max tunnels");
6802     GNUNET_SCHEDULER_shutdown ();
6803     return;
6804   }
6805
6806   if (GNUNET_OK !=
6807       GNUNET_CONFIGURATION_get_value_number (c, "MESH", "DEFAULT_TTL",
6808                                              &default_ttl))
6809   {
6810     GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
6811                 _
6812                 ("Mesh service is lacking key configuration settings (%s). Using default (%u).\n"),
6813                 "default ttl", 64);
6814     default_ttl = 64;
6815   }
6816
6817   if (GNUNET_OK !=
6818       GNUNET_CONFIGURATION_get_value_number (c, "MESH", "DHT_REPLICATION_LEVEL",
6819                                              &dht_replication_level))
6820   {
6821     GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
6822                 _
6823                 ("Mesh service is lacking key configuration settings (%s). Using default (%u).\n"),
6824                 "dht replication level", 10);
6825     dht_replication_level = 10;
6826   }
6827
6828   
6829   my_private_key = GNUNET_CRYPTO_rsa_key_create_from_file (keyfile);
6830   GNUNET_free (keyfile);
6831   if (my_private_key == NULL)
6832   {
6833     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
6834                 _("Mesh service could not access hostkey.  Exiting.\n"));
6835     GNUNET_SCHEDULER_shutdown ();
6836     return;
6837   }
6838   GNUNET_CRYPTO_rsa_key_get_public (my_private_key, &my_public_key);
6839   GNUNET_CRYPTO_hash (&my_public_key, sizeof (my_public_key),
6840                       &my_full_id.hashPubKey);
6841   myid = GNUNET_PEER_intern (&my_full_id);
6842
6843 //   transport_handle = GNUNET_TRANSPORT_connect(c,
6844 //                                               &my_full_id,
6845 //                                               NULL,
6846 //                                               NULL,
6847 //                                               NULL,
6848 //                                               NULL);
6849
6850   dht_handle = GNUNET_DHT_connect (c, 64);
6851   if (dht_handle == NULL)
6852   {
6853     GNUNET_break (0);
6854   }
6855
6856   stats = GNUNET_STATISTICS_create ("mesh", c);
6857
6858
6859   next_tid = 0;
6860   next_local_tid = GNUNET_MESH_LOCAL_TUNNEL_ID_SERV;
6861
6862   tunnels = GNUNET_CONTAINER_multihashmap_create (32);
6863   incoming_tunnels = GNUNET_CONTAINER_multihashmap_create (32);
6864   peers = GNUNET_CONTAINER_multihashmap_create (32);
6865   applications = GNUNET_CONTAINER_multihashmap_create (32);
6866   types = GNUNET_CONTAINER_multihashmap_create (32);
6867
6868   GNUNET_SERVER_add_handlers (server_handle, client_handlers);
6869   nc = GNUNET_SERVER_notification_context_create (server_handle,
6870                                                   LOCAL_QUEUE_SIZE);
6871   GNUNET_SERVER_disconnect_notify (server_handle,
6872                                    &handle_local_client_disconnect, NULL);
6873
6874
6875   clients = NULL;
6876   clients_tail = NULL;
6877   next_client_id = 0;
6878
6879   announce_applications_task = GNUNET_SCHEDULER_NO_TASK;
6880   announce_id_task = GNUNET_SCHEDULER_add_now (&announce_id, cls);
6881
6882   /* Create a peer_info for the local peer */
6883   peer = peer_info_get (&my_full_id);
6884   p = path_new (1);
6885   p->peers[0] = myid;
6886   GNUNET_PEER_change_rc (myid, 1);
6887   peer_info_add_path (peer, p, GNUNET_YES);
6888
6889   /* Scheduled the task to clean up when shutdown is called */
6890   GNUNET_SCHEDULER_add_delayed (GNUNET_TIME_UNIT_FOREVER_REL, &shutdown_task,
6891                                 NULL);
6892
6893   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "end of run()\n");
6894 }
6895
6896 /**
6897  * The main function for the mesh service.
6898  *
6899  * @param argc number of arguments from the command line
6900  * @param argv command line arguments
6901  * @return 0 ok, 1 on error
6902  */
6903 int
6904 main (int argc, char *const *argv)
6905 {
6906   int ret;
6907
6908   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "main()\n");
6909   ret =
6910       (GNUNET_OK ==
6911        GNUNET_SERVICE_run (argc, argv, "mesh", GNUNET_SERVICE_OPTION_NONE, &run,
6912                            NULL)) ? 0 : 1;
6913   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "main() END\n");
6914
6915   return ret;
6916 }