- fix client<->service flow control
[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  * In case there is no predecessor, inform the owning client.
3321  * If buffering is off, send only on behalf of children or self if endpoint.
3322  * If buffering is on, send when sent to children and buffer space is free.
3323  * 
3324  * @param t Tunnel on which to send the ACK.
3325  */
3326 static void
3327 tunnel_send_ack (struct MeshTunnel *t, uint16_t type)
3328 {
3329   struct GNUNET_MESH_ACK msg;
3330   struct GNUNET_PeerIdentity id;
3331   uint32_t ack;
3332
3333   if (NULL != t->owner)
3334   {
3335     send_client_tunnel_ack (t->owner, t);
3336     return;
3337   }
3338   /* Is it after unicast / multicast retransmission? */
3339   if (GNUNET_MESSAGE_TYPE_MESH_ACK != type)
3340   {
3341     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "ACK via DATA retransmission\n");
3342     if (GNUNET_YES == t->nobuffer)
3343     {
3344       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Not sending ACK, nobuffer\n");
3345       return;
3346     }
3347     if (t->queue_max > t->queue_n * 2)
3348     {
3349       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Not sending ACK, buffer free\n");
3350       return;
3351     }
3352   }
3353
3354   /* Ok, ACK might be necessary, what PID to ACK? */
3355   ack = tunnel_get_ack (t);
3356
3357   /* If speed_min and not all children have ack'd, dont send yet */
3358   if (ack == t->last_ack)
3359   {
3360     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Not sending ACK, not ready\n");
3361     return;
3362   }
3363
3364   t->last_ack = ack;
3365   msg.pid = htonl (ack);
3366
3367   GNUNET_PEER_resolve (tree_get_predecessor (t->tree), &id);
3368
3369   msg.header.size = htons (sizeof (msg));
3370   msg.header.type = htons (GNUNET_MESSAGE_TYPE_MESH_ACK);
3371   msg.tid = htonl (t->id.tid);
3372   GNUNET_PEER_resolve(t->id.oid, &msg.oid);
3373   send_message (&msg.header, &id, t);
3374 }
3375
3376
3377 /**
3378  * Send a message to all peers in this tunnel that the tunnel is no longer
3379  * valid.
3380  *
3381  * @param t The tunnel whose peers to notify.
3382  */
3383 static void
3384 tunnel_send_destroy (struct MeshTunnel *t)
3385 {
3386   struct GNUNET_MESH_TunnelDestroy msg;
3387
3388   msg.header.size = htons (sizeof (msg));
3389   msg.header.type = htons (GNUNET_MESSAGE_TYPE_MESH_TUNNEL_DESTROY);
3390   GNUNET_PEER_resolve (t->id.oid, &msg.oid);
3391   msg.tid = htonl (t->id.tid);
3392   tunnel_send_multicast (t, &msg.header, GNUNET_NO);
3393 }
3394
3395
3396 /**
3397  * Cancel all transmissions towards a neighbor that belong to a certain tunnel.
3398  *
3399  * @param cls Closure (Tunnel which to cancel).
3400  * @param neighbor_id Short ID of the neighbor to whom cancel the transmissions.
3401  */
3402 static void
3403 tunnel_cancel_queues (void *cls, GNUNET_PEER_Id neighbor_id)
3404 {
3405   struct MeshTunnel *t = cls;
3406   struct MeshPeerInfo *peer_info;
3407   struct MeshPeerQueue *pq;
3408   struct MeshPeerQueue *next;
3409
3410   peer_info = peer_info_get_short (neighbor_id);
3411   for (pq = peer_info->queue_head; NULL != pq; pq = next)
3412   {
3413     next = pq->next;
3414     if (pq->tunnel == t)
3415     {
3416       queue_destroy (pq, GNUNET_YES);
3417     }
3418   }
3419   if (NULL == peer_info->queue_head && NULL != peer_info->core_transmit)
3420   {
3421     GNUNET_CORE_notify_transmit_ready_cancel(peer_info->core_transmit);
3422     peer_info->core_transmit = NULL;
3423   }
3424 }
3425
3426 /**
3427  * Destroy the tunnel and free any allocated resources linked to it.
3428  *
3429  * @param t the tunnel to destroy
3430  *
3431  * @return GNUNET_OK on success
3432  */
3433 static int
3434 tunnel_destroy (struct MeshTunnel *t)
3435 {
3436   struct MeshClient *c;
3437   struct GNUNET_HashCode hash;
3438   unsigned int i;
3439   int r;
3440
3441   if (NULL == t)
3442     return GNUNET_OK;
3443
3444   tree_iterate_children (t->tree, &tunnel_cancel_queues, t);
3445
3446   r = GNUNET_OK;
3447   c = t->owner;
3448 #if MESH_DEBUG
3449   {
3450     struct GNUNET_PeerIdentity id;
3451
3452     GNUNET_PEER_resolve (t->id.oid, &id);
3453     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "destroying tunnel %s [%x]\n",
3454                 GNUNET_i2s (&id), t->id.tid);
3455     if (NULL != c)
3456       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  by client %u\n", c->id);
3457   }
3458 #endif
3459
3460   GNUNET_CRYPTO_hash (&t->id, sizeof (struct MESH_TunnelID), &hash);
3461   if (GNUNET_YES != GNUNET_CONTAINER_multihashmap_remove (tunnels, &hash, t))
3462   {
3463     r = GNUNET_SYSERR;
3464   }
3465
3466   GNUNET_CRYPTO_hash (&t->local_tid, sizeof (MESH_TunnelNumber), &hash);
3467   if (NULL != c &&
3468       GNUNET_YES !=
3469       GNUNET_CONTAINER_multihashmap_remove (c->own_tunnels, &hash, t))
3470   {
3471     r = GNUNET_SYSERR;
3472   }
3473   GNUNET_CRYPTO_hash (&t->local_tid_dest, sizeof (MESH_TunnelNumber), &hash);
3474   for (i = 0; i < t->nclients; i++)
3475   {
3476     c = t->clients[i];
3477     if (GNUNET_YES !=
3478           GNUNET_CONTAINER_multihashmap_remove (c->incoming_tunnels, &hash, t))
3479     {
3480       r = GNUNET_SYSERR;
3481     }
3482   }
3483   for (i = 0; i < t->nignore; i++)
3484   {
3485     c = t->ignore[i];
3486     if (GNUNET_YES !=
3487           GNUNET_CONTAINER_multihashmap_remove (c->ignore_tunnels, &hash, t))
3488     {
3489       r = GNUNET_SYSERR;
3490     }
3491   }
3492   if (t->nclients > 0)
3493   {
3494     if (GNUNET_YES !=
3495         GNUNET_CONTAINER_multihashmap_remove (incoming_tunnels, &hash, t))
3496     {
3497       r = GNUNET_SYSERR;
3498     }
3499     GNUNET_free (t->clients);
3500   }
3501   if (NULL != t->peers)
3502   {
3503     GNUNET_CONTAINER_multihashmap_iterate (t->peers, &peer_info_delete_tunnel,
3504                                            t);
3505     GNUNET_CONTAINER_multihashmap_destroy (t->peers);
3506   }
3507
3508   GNUNET_CONTAINER_multihashmap_iterate (t->children_fc,
3509                                          &tunnel_destroy_child,
3510                                          t);
3511   GNUNET_CONTAINER_multihashmap_destroy (t->children_fc);
3512
3513   tree_destroy (t->tree);
3514
3515   if (NULL != t->regex_ctx)
3516     regex_cancel_search (t->regex_ctx);
3517   if (NULL != t->dht_get_type)
3518     GNUNET_DHT_get_stop (t->dht_get_type);
3519   if (GNUNET_SCHEDULER_NO_TASK != t->timeout_task)
3520     GNUNET_SCHEDULER_cancel (t->timeout_task);
3521   if (GNUNET_SCHEDULER_NO_TASK != t->path_refresh_task)
3522     GNUNET_SCHEDULER_cancel (t->path_refresh_task);
3523
3524   n_tunnels--;
3525   GNUNET_STATISTICS_update (stats, "# tunnels", -1, GNUNET_NO);
3526   GNUNET_assert (0 <= n_tunnels);
3527   GNUNET_free (t);
3528   return r;
3529 }
3530
3531
3532 /**
3533  * Create a new tunnel
3534  * 
3535  * @param owner Who is the owner of the tunnel (short ID).
3536  * @param tid Tunnel Number of the tunnel.
3537  * @param client Clients that owns the tunnel, NULL for foreign tunnels.
3538  * @param local Tunnel Number for the tunnel, for the client point of view.
3539  * 
3540  * @return A new initialized tunnel. NULL on error.
3541  */
3542 static struct MeshTunnel *
3543 tunnel_new (GNUNET_PEER_Id owner,
3544             MESH_TunnelNumber tid,
3545             struct MeshClient *client,
3546             MESH_TunnelNumber local)
3547 {
3548   struct MeshTunnel *t;
3549   struct GNUNET_HashCode hash;
3550   
3551   if (n_tunnels >= max_tunnels && NULL == client)
3552     return NULL;
3553
3554   t = GNUNET_malloc (sizeof (struct MeshTunnel));
3555   t->id.oid = owner;
3556   t->id.tid = tid;
3557   t->queue_max = (max_msgs_queue / max_tunnels) + 1;
3558   t->tree = tree_new (owner);
3559   t->owner = client;
3560   t->local_tid = local;
3561   t->children_fc = GNUNET_CONTAINER_multihashmap_create (8);
3562   n_tunnels++;
3563   GNUNET_STATISTICS_update (stats, "# tunnels", 1, GNUNET_NO);
3564
3565   GNUNET_CRYPTO_hash (&t->id, sizeof (struct MESH_TunnelID), &hash);
3566   if (GNUNET_OK !=
3567       GNUNET_CONTAINER_multihashmap_put (tunnels, &hash, t,
3568                                          GNUNET_CONTAINER_MULTIHASHMAPOPTION_UNIQUE_ONLY))
3569   {
3570     GNUNET_break (0);
3571     tunnel_destroy (t);
3572     if (NULL != client)
3573       GNUNET_SERVER_receive_done (client->handle, GNUNET_SYSERR);
3574     return NULL;
3575   }
3576
3577   if (NULL != client)
3578   {
3579     GNUNET_CRYPTO_hash (&t->local_tid, sizeof (MESH_TunnelNumber), &hash);
3580     if (GNUNET_OK !=
3581         GNUNET_CONTAINER_multihashmap_put (client->own_tunnels, &hash, t,
3582                                           GNUNET_CONTAINER_MULTIHASHMAPOPTION_UNIQUE_ONLY))
3583     {
3584       GNUNET_break (0);
3585       tunnel_destroy (t);
3586       GNUNET_SERVER_receive_done (client->handle, GNUNET_SYSERR);
3587       return NULL;
3588     }
3589   }
3590
3591   return t;
3592 }
3593
3594
3595 /**
3596  * Removes an explicit path from a tunnel, freeing all intermediate nodes
3597  * that are no longer needed, as well as nodes of no longer reachable peers.
3598  * The tunnel itself is also destoyed if results in a remote empty tunnel.
3599  *
3600  * @param t Tunnel from which to remove the path.
3601  * @param peer Short id of the peer which should be removed.
3602  */
3603 static void
3604 tunnel_delete_peer (struct MeshTunnel *t, GNUNET_PEER_Id peer)
3605 {
3606   if (GNUNET_NO == tree_del_peer (t->tree, peer, NULL, NULL))
3607     tunnel_destroy (t);
3608 }
3609
3610
3611 /**
3612  * tunnel_destroy_iterator: iterator for deleting each tunnel that belongs to a
3613  * client when the client disconnects. If the client is not the owner, the
3614  * owner will get notified if no more clients are in the tunnel and the client
3615  * get removed from the tunnel's list.
3616  *
3617  * @param cls closure (client that is disconnecting)
3618  * @param key the hash of the local tunnel id (used to access the hashmap)
3619  * @param value the value stored at the key (tunnel to destroy)
3620  *
3621  * @return GNUNET_OK on success
3622  */
3623 static int
3624 tunnel_destroy_iterator (void *cls, const struct GNUNET_HashCode * key, void *value)
3625 {
3626   struct MeshTunnel *t = value;
3627   struct MeshClient *c = cls;
3628   int r;
3629
3630   send_client_tunnel_disconnect(t, c);
3631   if (c != t->owner)
3632   {
3633     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
3634                 "Client %u is destination, keeping the tunnel alive.\n", c->id);
3635     tunnel_delete_client(t, c);
3636     client_delete_tunnel(c, t);
3637     return GNUNET_OK;
3638   }
3639   tunnel_send_destroy(t);
3640   r = tunnel_destroy (t);
3641   return r;
3642 }
3643
3644
3645 /**
3646  * Timeout function, destroys tunnel if called
3647  *
3648  * @param cls Closure (tunnel to destroy).
3649  * @param tc TaskContext
3650  */
3651 static void
3652 tunnel_timeout (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
3653 {
3654   struct MeshTunnel *t = cls;
3655
3656   if (0 != (tc->reason & GNUNET_SCHEDULER_REASON_SHUTDOWN))
3657     return;
3658   t->timeout_task = GNUNET_SCHEDULER_NO_TASK;
3659   tunnel_destroy (t);
3660 }
3661
3662 /**
3663  * Resets the tunnel timeout. Starts it if no timeout was running.
3664  *
3665  * @param t Tunnel whose timeout to reset.
3666  */
3667 static void
3668 tunnel_reset_timeout (struct MeshTunnel *t)
3669 {
3670   if (GNUNET_SCHEDULER_NO_TASK != t->timeout_task)
3671     GNUNET_SCHEDULER_cancel (t->timeout_task);
3672   t->timeout_task =
3673       GNUNET_SCHEDULER_add_delayed (GNUNET_TIME_relative_multiply
3674                                     (refresh_path_time, 4), &tunnel_timeout, t);
3675 }
3676
3677
3678 /******************************************************************************/
3679 /****************      MESH NETWORK HANDLER HELPERS     ***********************/
3680 /******************************************************************************/
3681
3682 /**
3683  * Function to send a create path packet to a peer.
3684  *
3685  * @param cls closure
3686  * @param size number of bytes available in buf
3687  * @param buf where the callee should write the message
3688  * @return number of bytes written to buf
3689  */
3690 static size_t
3691 send_core_path_create (void *cls, size_t size, void *buf)
3692 {
3693   struct MeshPathInfo *info = cls;
3694   struct GNUNET_MESH_ManipulatePath *msg;
3695   struct GNUNET_PeerIdentity *peer_ptr;
3696   struct MeshTunnel *t = info->t;
3697   struct MeshPeerPath *p = info->path;
3698   size_t size_needed;
3699   uint32_t opt;
3700   int i;
3701
3702   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "CREATE PATH sending...\n");
3703   size_needed =
3704       sizeof (struct GNUNET_MESH_ManipulatePath) +
3705       p->length * sizeof (struct GNUNET_PeerIdentity);
3706
3707   if (size < size_needed || NULL == buf)
3708   {
3709     GNUNET_break (0);
3710     return 0;
3711   }
3712   msg = (struct GNUNET_MESH_ManipulatePath *) buf;
3713   msg->header.size = htons (size_needed);
3714   msg->header.type = htons (GNUNET_MESSAGE_TYPE_MESH_PATH_CREATE);
3715   msg->tid = ntohl (t->id.tid);
3716
3717   if (GNUNET_YES == t->speed_min)
3718     opt = MESH_TUNNEL_OPT_SPEED_MIN;
3719   if (GNUNET_YES == t->nobuffer)
3720     opt |= MESH_TUNNEL_OPT_NOBUFFER;
3721   msg->opt = htonl(opt);
3722
3723   peer_ptr = (struct GNUNET_PeerIdentity *) &msg[1];
3724   for (i = 0; i < p->length; i++)
3725   {
3726     GNUNET_PEER_resolve (p->peers[i], peer_ptr++);
3727   }
3728
3729   path_destroy (p);
3730   GNUNET_free (info);
3731
3732   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
3733               "CREATE PATH (%u bytes long) sent!\n", size_needed);
3734   return size_needed;
3735 }
3736
3737
3738 /**
3739  * Fill the core buffer 
3740  *
3741  * @param cls closure (data itself)
3742  * @param size number of bytes available in buf
3743  * @param buf where the callee should write the message
3744  *
3745  * @return number of bytes written to buf
3746  */
3747 static size_t
3748 send_core_data_multicast (void *cls, size_t size, void *buf)
3749 {
3750   struct MeshTransmissionDescriptor *info = cls;
3751   size_t total_size;
3752
3753   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Multicast callback.\n");
3754   GNUNET_assert (NULL != info);
3755   GNUNET_assert (NULL != info->peer);
3756   total_size = info->mesh_data->data_len;
3757   GNUNET_assert (total_size < GNUNET_SERVER_MAX_MESSAGE_SIZE);
3758
3759   if (total_size > size)
3760   {
3761     GNUNET_break (0);
3762     return 0;
3763   }
3764   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, " copying data...\n");
3765   memcpy (buf, info->mesh_data->data, total_size);
3766 #if MESH_DEBUG
3767   {
3768     struct GNUNET_MESH_Multicast *mc;
3769     struct GNUNET_MessageHeader *mh;
3770
3771     mh = buf;
3772     if (ntohs (mh->type) == GNUNET_MESSAGE_TYPE_MESH_MULTICAST)
3773     {
3774       mc = (struct GNUNET_MESH_Multicast *) mh;
3775       mh = (struct GNUNET_MessageHeader *) &mc[1];
3776       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
3777                   " multicast, payload type %u\n", ntohs (mh->type));
3778       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
3779                   " multicast, payload size %u\n", ntohs (mh->size));
3780     }
3781     else
3782     {
3783       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, " type %u\n",
3784                   ntohs (mh->type));
3785     }
3786   }
3787 #endif
3788   data_descriptor_decrement_rc (info->mesh_data);
3789   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "freeing info...\n");
3790   GNUNET_free (info);
3791   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "return %u\n", total_size);
3792   return total_size;
3793 }
3794
3795
3796 /**
3797  * Creates a path ack message in buf and frees all unused resources.
3798  *
3799  * @param cls closure (MeshTransmissionDescriptor)
3800  * @param size number of bytes available in buf
3801  * @param buf where the callee should write the message
3802  * @return number of bytes written to buf
3803  */
3804 static size_t
3805 send_core_path_ack (void *cls, size_t size, void *buf)
3806 {
3807   struct MeshTransmissionDescriptor *info = cls;
3808   struct GNUNET_MESH_PathACK *msg = buf;
3809
3810   GNUNET_assert (NULL != info);
3811   if (sizeof (struct GNUNET_MESH_PathACK) > size)
3812   {
3813     GNUNET_break (0);
3814     return 0;
3815   }
3816   msg->header.size = htons (sizeof (struct GNUNET_MESH_PathACK));
3817   msg->header.type = htons (GNUNET_MESSAGE_TYPE_MESH_PATH_ACK);
3818   GNUNET_PEER_resolve (info->origin->oid, &msg->oid);
3819   msg->tid = htonl (info->origin->tid);
3820   msg->peer_id = my_full_id;
3821
3822   GNUNET_free (info);
3823   /* TODO add signature */
3824
3825   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "PATH ACK sent!\n");
3826   return sizeof (struct GNUNET_MESH_PathACK);
3827 }
3828
3829
3830 /**
3831  * Free a transmission that was already queued with all resources
3832  * associated to the request.
3833  *
3834  * @param queue Queue handler to cancel.
3835  * @param clear_cls Is it necessary to free associated cls?
3836  */
3837 static void
3838 queue_destroy (struct MeshPeerQueue *queue, int clear_cls)
3839 {
3840   struct MeshTransmissionDescriptor *dd;
3841   struct MeshPathInfo *path_info;
3842
3843   if (GNUNET_YES == clear_cls)
3844   {
3845     switch (queue->type)
3846     {
3847     case GNUNET_MESSAGE_TYPE_MESH_UNICAST:
3848     case GNUNET_MESSAGE_TYPE_MESH_MULTICAST:
3849     case GNUNET_MESSAGE_TYPE_MESH_TO_ORIGIN:
3850         GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "   type payload\n");
3851         dd = queue->cls;
3852         data_descriptor_decrement_rc (dd->mesh_data);
3853         break;
3854     case GNUNET_MESSAGE_TYPE_MESH_PATH_CREATE:
3855         GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "   type create path\n");
3856         path_info = queue->cls;
3857         path_destroy (path_info->path);
3858         break;
3859     default:
3860         GNUNET_break (0);
3861         GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "   type unknown!\n");
3862     }
3863     GNUNET_free_non_null (queue->cls);
3864   }
3865   GNUNET_CONTAINER_DLL_remove (queue->peer->queue_head,
3866                                queue->peer->queue_tail,
3867                                queue);
3868   GNUNET_free (queue);
3869 }
3870
3871
3872 /**
3873   * Core callback to write a queued packet to core buffer
3874   *
3875   * @param cls Closure (peer info).
3876   * @param size Number of bytes available in buf.
3877   * @param buf Where the to write the message.
3878   *
3879   * @return number of bytes written to buf
3880   */
3881 static size_t
3882 queue_send (void *cls, size_t size, void *buf)
3883 {
3884     struct MeshPeerInfo *peer = cls;
3885     struct GNUNET_MessageHeader *msg;
3886     struct MeshPeerQueue *queue;
3887     struct MeshTunnel *t;
3888     size_t data_size;
3889
3890     peer->core_transmit = NULL;
3891     queue = peer->queue_head;
3892
3893     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "********* Queue send\n");
3894
3895     /* If queue is empty, send should have been cancelled */
3896     if (NULL == queue)
3897     {
3898         GNUNET_break(0);
3899         return 0;
3900     }
3901     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "*********   not empty\n");
3902
3903     /* Check if buffer size is enough for the message */
3904     if (queue->size > size)
3905     {
3906         struct GNUNET_PeerIdentity id;
3907
3908         GNUNET_PEER_resolve (peer->id, &id);
3909         peer->core_transmit =
3910             GNUNET_CORE_notify_transmit_ready(core_handle,
3911                                               0,
3912                                               0,
3913                                               GNUNET_TIME_UNIT_FOREVER_REL,
3914                                               &id,
3915                                               queue->size,
3916                                               &queue_send,
3917                                               peer);
3918         return 0;
3919     }
3920     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "*********   size ok\n");
3921
3922     t = queue->tunnel;
3923     t->queue_n--;
3924
3925     /* Fill buf */
3926     switch (queue->type)
3927     {
3928         case 0:
3929             GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "*********   raw\n");
3930             data_size = send_core_data_raw (queue->cls, size, buf);
3931             msg = (struct GNUNET_MessageHeader *) buf;
3932             if (ntohs (msg->type) == GNUNET_MESSAGE_TYPE_MESH_UNICAST)
3933               tunnel_send_ack (t, GNUNET_MESSAGE_TYPE_MESH_UNICAST);
3934             break;
3935         case GNUNET_MESSAGE_TYPE_MESH_MULTICAST:
3936             GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "*********   multicast\n");
3937             data_size = send_core_data_multicast(queue->cls, size, buf);
3938             tunnel_send_ack (t, GNUNET_MESSAGE_TYPE_MESH_MULTICAST);
3939             break;
3940         case GNUNET_MESSAGE_TYPE_MESH_PATH_CREATE:
3941             GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "*********   path create\n");
3942             data_size = send_core_path_create(queue->cls, size, buf);
3943             break;
3944         case GNUNET_MESSAGE_TYPE_MESH_PATH_ACK:
3945             GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "*********   path ack\n");
3946             data_size = send_core_path_ack(queue->cls, size, buf);
3947             break;
3948         default:
3949             GNUNET_break (0);
3950             GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "*********   type unknown\n");
3951             data_size = 0;
3952     }
3953
3954     /* Free queue, but cls was freed by send_core_* */
3955     queue_destroy (queue, GNUNET_NO);
3956
3957     if (GNUNET_YES == t->destroy && 0 == t->queue_n)
3958     {
3959       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "*********  destroying tunnel!\n");
3960       tunnel_destroy (t);
3961     }
3962
3963     /* If more data in queue, send next */
3964     if (NULL != peer->queue_head)
3965     {
3966         struct GNUNET_PeerIdentity id;
3967
3968         GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "*********   more data!\n");
3969         GNUNET_PEER_resolve (peer->id, &id);
3970         peer->core_transmit =
3971             GNUNET_CORE_notify_transmit_ready(core_handle,
3972                                               0,
3973                                               0,
3974                                               GNUNET_TIME_UNIT_FOREVER_REL,
3975                                               &id,
3976                                               peer->queue_head->size,
3977                                               &queue_send,
3978                                               peer);
3979     }
3980     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "*********   return %d\n", data_size);
3981     return data_size;
3982 }
3983
3984
3985 /**
3986  * Queue and pass message to core when possible.
3987  *
3988  * @param cls Closure (type dependant).
3989  * @param type Type of the message, 0 for a raw message.
3990  * @param size Size of the message.
3991  * @param dst Neighbor to send message to.
3992  * @param t Tunnel this message belongs to.
3993  */
3994 static void
3995 queue_add (void *cls, uint16_t type, size_t size,
3996            struct MeshPeerInfo *dst, struct MeshTunnel *t)
3997 {
3998     struct MeshPeerQueue *queue;
3999
4000     if (t->queue_n >= t->queue_max)
4001     {
4002       if (NULL == t->owner)
4003         GNUNET_break_op(0);       // TODO: kill connection?
4004       else
4005         GNUNET_break(0);
4006       return;                       // Drop message
4007     }
4008     t->queue_n++;
4009     queue = GNUNET_malloc (sizeof (struct MeshPeerQueue));
4010     queue->cls = cls;
4011     queue->type = type;
4012     queue->size = size;
4013     queue->peer = dst;
4014     queue->tunnel = t;
4015     GNUNET_CONTAINER_DLL_insert_tail (dst->queue_head, dst->queue_tail, queue);
4016     if (NULL == dst->core_transmit)
4017     {
4018         struct GNUNET_PeerIdentity id;
4019
4020         GNUNET_PEER_resolve (dst->id, &id);
4021         dst->core_transmit =
4022             GNUNET_CORE_notify_transmit_ready(core_handle,
4023                                               0,
4024                                               0,
4025                                               GNUNET_TIME_UNIT_FOREVER_REL,
4026                                               &id,
4027                                               size,
4028                                               &queue_send,
4029                                               dst);
4030     }
4031 }
4032
4033
4034 /******************************************************************************/
4035 /********************      MESH NETWORK HANDLERS     **************************/
4036 /******************************************************************************/
4037
4038
4039 /**
4040  * Core handler for path creation
4041  *
4042  * @param cls closure
4043  * @param message message
4044  * @param peer peer identity this notification is about
4045  * @param atsi performance data
4046  * @param atsi_count number of records in 'atsi'
4047  *
4048  * @return GNUNET_OK to keep the connection open,
4049  *         GNUNET_SYSERR to close it (signal serious error)
4050  */
4051 static int
4052 handle_mesh_path_create (void *cls, const struct GNUNET_PeerIdentity *peer,
4053                          const struct GNUNET_MessageHeader *message,
4054                          const struct GNUNET_ATS_Information *atsi,
4055                          unsigned int atsi_count)
4056 {
4057   unsigned int own_pos;
4058   uint16_t size;
4059   uint16_t i;
4060   MESH_TunnelNumber tid;
4061   struct GNUNET_MESH_ManipulatePath *msg;
4062   struct GNUNET_PeerIdentity *pi;
4063   struct GNUNET_HashCode hash;
4064   struct MeshPeerPath *path;
4065   struct MeshPeerInfo *dest_peer_info;
4066   struct MeshPeerInfo *orig_peer_info;
4067   struct MeshTunnel *t;
4068
4069   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
4070               "Received a path create msg [%s]\n",
4071               GNUNET_i2s (&my_full_id));
4072   size = ntohs (message->size);
4073   if (size < sizeof (struct GNUNET_MESH_ManipulatePath))
4074   {
4075     GNUNET_break_op (0);
4076     return GNUNET_OK;
4077   }
4078
4079   size -= sizeof (struct GNUNET_MESH_ManipulatePath);
4080   if (size % sizeof (struct GNUNET_PeerIdentity))
4081   {
4082     GNUNET_break_op (0);
4083     return GNUNET_OK;
4084   }
4085   size /= sizeof (struct GNUNET_PeerIdentity);
4086   if (size < 2)
4087   {
4088     GNUNET_break_op (0);
4089     return GNUNET_OK;
4090   }
4091   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "    path has %u hops.\n", size);
4092   msg = (struct GNUNET_MESH_ManipulatePath *) message;
4093
4094   tid = ntohl (msg->tid);
4095   pi = (struct GNUNET_PeerIdentity *) &msg[1];
4096   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
4097               "    path is for tunnel %s [%X].\n", GNUNET_i2s (pi), tid);
4098   t = tunnel_get (pi, tid);
4099   if (NULL == t) // FIXME only for INCOMING tunnels?
4100   {
4101     uint32_t opt;
4102
4103     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  Creating tunnel\n");
4104     t = tunnel_new (GNUNET_PEER_intern (pi), tid, NULL, 0);
4105     if (NULL == t)
4106     {
4107       // FIXME notify failure
4108       return GNUNET_OK;
4109     }
4110     opt = ntohl (msg->opt);
4111     t->speed_min = (0 != (opt & MESH_TUNNEL_OPT_SPEED_MIN)) ?
4112                    GNUNET_YES : GNUNET_NO;
4113     t->nobuffer = (0 != (opt & MESH_TUNNEL_OPT_NOBUFFER)) ?
4114                   GNUNET_YES : GNUNET_NO;
4115
4116     if (GNUNET_YES == t->nobuffer)
4117       t->queue_max = 1;
4118
4119     while (NULL != tunnel_get_incoming (next_local_tid))
4120       next_local_tid = (next_local_tid + 1) | GNUNET_MESH_LOCAL_TUNNEL_ID_SERV;
4121     t->local_tid_dest = next_local_tid++;
4122     next_local_tid = next_local_tid | GNUNET_MESH_LOCAL_TUNNEL_ID_SERV;
4123
4124     tunnel_reset_timeout (t);
4125     GNUNET_CRYPTO_hash (&t->local_tid_dest, sizeof (MESH_TunnelNumber), &hash);
4126     if (GNUNET_OK !=
4127         GNUNET_CONTAINER_multihashmap_put (incoming_tunnels, &hash, t,
4128                                            GNUNET_CONTAINER_MULTIHASHMAPOPTION_UNIQUE_FAST))
4129     {
4130       tunnel_destroy (t);
4131       GNUNET_break (0);
4132       return GNUNET_OK;
4133     }
4134   }
4135   dest_peer_info =
4136       GNUNET_CONTAINER_multihashmap_get (peers, &pi[size - 1].hashPubKey);
4137   if (NULL == dest_peer_info)
4138   {
4139     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
4140                 "  Creating PeerInfo for destination.\n");
4141     dest_peer_info = GNUNET_malloc (sizeof (struct MeshPeerInfo));
4142     dest_peer_info->id = GNUNET_PEER_intern (&pi[size - 1]);
4143     GNUNET_CONTAINER_multihashmap_put (peers, &pi[size - 1].hashPubKey,
4144                                        dest_peer_info,
4145                                        GNUNET_CONTAINER_MULTIHASHMAPOPTION_UNIQUE_ONLY);
4146   }
4147   orig_peer_info = GNUNET_CONTAINER_multihashmap_get (peers, &pi->hashPubKey);
4148   if (NULL == orig_peer_info)
4149   {
4150     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
4151                 "  Creating PeerInfo for origin.\n");
4152     orig_peer_info = GNUNET_malloc (sizeof (struct MeshPeerInfo));
4153     orig_peer_info->id = GNUNET_PEER_intern (pi);
4154     GNUNET_CONTAINER_multihashmap_put (peers, &pi->hashPubKey, orig_peer_info,
4155                                        GNUNET_CONTAINER_MULTIHASHMAPOPTION_UNIQUE_ONLY);
4156   }
4157   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  Creating path...\n");
4158   path = path_new (size);
4159   own_pos = 0;
4160   for (i = 0; i < size; i++)
4161   {
4162     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  ... adding %s\n",
4163                 GNUNET_i2s (&pi[i]));
4164     path->peers[i] = GNUNET_PEER_intern (&pi[i]);
4165     if (path->peers[i] == myid)
4166       own_pos = i;
4167   }
4168   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  Own position: %u\n", own_pos);
4169   if (own_pos == 0)
4170   {
4171     /* cannot be self, must be 'not found' */
4172     /* create path: self not found in path through self */
4173     GNUNET_break_op (0);
4174     path_destroy (path);
4175     /* FIXME error. destroy tunnel? leave for timeout? */
4176     return 0;
4177   }
4178   path_add_to_peers (path, GNUNET_NO);
4179   tunnel_add_path (t, path, own_pos);
4180   if (own_pos == size - 1)
4181   {
4182     /* It is for us! Send ack. */
4183     struct MeshTransmissionDescriptor *info;
4184
4185     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  It's for us!\n");
4186     peer_info_add_path_to_origin (orig_peer_info, path, GNUNET_NO);
4187     if (NULL == t->peers)
4188     {
4189       /* New tunnel! Notify clients on data. */
4190       t->peers = GNUNET_CONTAINER_multihashmap_create (4);
4191     }
4192     GNUNET_break (GNUNET_SYSERR !=
4193                   GNUNET_CONTAINER_multihashmap_put (t->peers,
4194                                                      &my_full_id.hashPubKey,
4195                                                      peer_info_get
4196                                                      (&my_full_id),
4197                                                      GNUNET_CONTAINER_MULTIHASHMAPOPTION_REPLACE));
4198     info = GNUNET_malloc (sizeof (struct MeshTransmissionDescriptor));
4199     info->origin = &t->id;
4200     info->peer = GNUNET_CONTAINER_multihashmap_get (peers, &peer->hashPubKey);
4201     GNUNET_assert (NULL != info->peer);
4202     queue_add(info,
4203               GNUNET_MESSAGE_TYPE_MESH_PATH_ACK,
4204               sizeof (struct GNUNET_MESH_PathACK),
4205               info->peer,
4206               t);
4207   }
4208   else
4209   {
4210     struct MeshPeerPath *path2;
4211
4212     /* It's for somebody else! Retransmit. */
4213     path2 = path_duplicate (path);
4214     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  Retransmitting.\n");
4215     peer_info_add_path (dest_peer_info, path2, GNUNET_NO);
4216     path2 = path_duplicate (path);
4217     peer_info_add_path_to_origin (orig_peer_info, path2, GNUNET_NO);
4218     send_create_path (dest_peer_info, path, t);
4219   }
4220   return GNUNET_OK;
4221 }
4222
4223
4224 /**
4225  * Core handler for path destruction
4226  *
4227  * @param cls closure
4228  * @param message message
4229  * @param peer peer identity this notification is about
4230  * @param atsi performance data
4231  * @param atsi_count number of records in 'atsi'
4232  *
4233  * @return GNUNET_OK to keep the connection open,
4234  *         GNUNET_SYSERR to close it (signal serious error)
4235  */
4236 static int
4237 handle_mesh_path_destroy (void *cls, const struct GNUNET_PeerIdentity *peer,
4238                           const struct GNUNET_MessageHeader *message,
4239                           const struct GNUNET_ATS_Information *atsi,
4240                           unsigned int atsi_count)
4241 {
4242   struct GNUNET_MESH_ManipulatePath *msg;
4243   struct GNUNET_PeerIdentity *pi;
4244   struct MeshPeerPath *path;
4245   struct MeshTunnel *t;
4246   unsigned int own_pos;
4247   unsigned int i;
4248   size_t size;
4249
4250   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
4251               "Received a PATH DESTROY msg from %s\n", GNUNET_i2s (peer));
4252   size = ntohs (message->size);
4253   if (size < sizeof (struct GNUNET_MESH_ManipulatePath))
4254   {
4255     GNUNET_break_op (0);
4256     return GNUNET_OK;
4257   }
4258
4259   size -= sizeof (struct GNUNET_MESH_ManipulatePath);
4260   if (size % sizeof (struct GNUNET_PeerIdentity))
4261   {
4262     GNUNET_break_op (0);
4263     return GNUNET_OK;
4264   }
4265   size /= sizeof (struct GNUNET_PeerIdentity);
4266   if (size < 2)
4267   {
4268     GNUNET_break_op (0);
4269     return GNUNET_OK;
4270   }
4271   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "    path has %u hops.\n", size);
4272
4273   msg = (struct GNUNET_MESH_ManipulatePath *) message;
4274   pi = (struct GNUNET_PeerIdentity *) &msg[1];
4275   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
4276               "    path is for tunnel %s [%X].\n", GNUNET_i2s (pi),
4277               msg->tid);
4278   t = tunnel_get (pi, ntohl (msg->tid));
4279   if (NULL == t)
4280   {
4281     /* TODO notify back: we don't know this tunnel */
4282     GNUNET_break_op (0);
4283     return GNUNET_OK;
4284   }
4285   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  Creating path...\n");
4286   path = path_new (size);
4287   own_pos = 0;
4288   for (i = 0; i < size; i++)
4289   {
4290     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  ... adding %s\n",
4291                 GNUNET_i2s (&pi[i]));
4292     path->peers[i] = GNUNET_PEER_intern (&pi[i]);
4293     if (path->peers[i] == myid)
4294       own_pos = i;
4295   }
4296   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  Own position: %u\n", own_pos);
4297   if (own_pos < path->length - 1)
4298     send_message (message, &pi[own_pos + 1], t);
4299   else
4300     send_client_tunnel_disconnect(t, NULL);
4301
4302   tunnel_delete_peer (t, path->peers[path->length - 1]);
4303   path_destroy (path);
4304   return GNUNET_OK;
4305 }
4306
4307
4308 /**
4309  * Core handler for notifications of broken paths
4310  *
4311  * @param cls closure
4312  * @param message message
4313  * @param peer peer identity this notification is about
4314  * @param atsi performance data
4315  * @param atsi_count number of records in 'atsi'
4316  *
4317  * @return GNUNET_OK to keep the connection open,
4318  *         GNUNET_SYSERR to close it (signal serious error)
4319  */
4320 static int
4321 handle_mesh_path_broken (void *cls, const struct GNUNET_PeerIdentity *peer,
4322                          const struct GNUNET_MessageHeader *message,
4323                          const struct GNUNET_ATS_Information *atsi,
4324                          unsigned int atsi_count)
4325 {
4326   struct GNUNET_MESH_PathBroken *msg;
4327   struct MeshTunnel *t;
4328
4329   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
4330               "Received a PATH BROKEN msg from %s\n", GNUNET_i2s (peer));
4331   msg = (struct GNUNET_MESH_PathBroken *) message;
4332   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  regarding %s\n",
4333               GNUNET_i2s (&msg->peer1));
4334   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  regarding %s\n",
4335               GNUNET_i2s (&msg->peer2));
4336   t = tunnel_get (&msg->oid, ntohl (msg->tid));
4337   if (NULL == t)
4338   {
4339     GNUNET_break_op (0);
4340     return GNUNET_OK;
4341   }
4342   tunnel_notify_connection_broken (t, GNUNET_PEER_search (&msg->peer1),
4343                                    GNUNET_PEER_search (&msg->peer2));
4344   return GNUNET_OK;
4345
4346 }
4347
4348
4349 /**
4350  * Core handler for tunnel destruction
4351  *
4352  * @param cls closure
4353  * @param message message
4354  * @param peer peer identity this notification is about
4355  * @param atsi performance data
4356  * @param atsi_count number of records in 'atsi'
4357  *
4358  * @return GNUNET_OK to keep the connection open,
4359  *         GNUNET_SYSERR to close it (signal serious error)
4360  */
4361 static int
4362 handle_mesh_tunnel_destroy (void *cls, const struct GNUNET_PeerIdentity *peer,
4363                             const struct GNUNET_MessageHeader *message,
4364                             const struct GNUNET_ATS_Information *atsi,
4365                             unsigned int atsi_count)
4366 {
4367   struct GNUNET_MESH_TunnelDestroy *msg;
4368   struct MeshTunnel *t;
4369
4370   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
4371               "Got a TUNNEL DESTROY packet from %s\n", GNUNET_i2s (peer));
4372   msg = (struct GNUNET_MESH_TunnelDestroy *) message;
4373   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  for tunnel %s [%u]\n",
4374               GNUNET_i2s (&msg->oid), ntohl (msg->tid));
4375   t = tunnel_get (&msg->oid, ntohl (msg->tid));
4376   if (NULL == t)
4377   {
4378     /* Probably already got the message from another path,
4379      * destroyed the tunnel and retransmitted to children.
4380      * Safe to ignore.
4381      */
4382     GNUNET_STATISTICS_update (stats, "# control on unknown tunnel", 1, GNUNET_NO);
4383     return GNUNET_OK;
4384   }
4385   if (t->id.oid == myid)
4386   {
4387     GNUNET_break_op (0);
4388     return GNUNET_OK;
4389   }
4390   if (t->local_tid_dest >= GNUNET_MESH_LOCAL_TUNNEL_ID_SERV)
4391   {
4392     /* Tunnel was incoming, notify clients */
4393     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "INCOMING TUNNEL %X %X\n",
4394                 t->local_tid, t->local_tid_dest);
4395     send_clients_tunnel_destroy (t);
4396   }
4397   tunnel_send_destroy (t);
4398   t->destroy = GNUNET_YES;
4399   // TODO: add timeout to destroy the tunnel anyway
4400   return GNUNET_OK;
4401 }
4402
4403
4404 /**
4405  * Core handler for mesh network traffic going from the origin to a peer
4406  *
4407  * @param cls closure
4408  * @param peer peer identity this notification is about
4409  * @param message message
4410  * @param atsi performance data
4411  * @param atsi_count number of records in 'atsi'
4412  * @return GNUNET_OK to keep the connection open,
4413  *         GNUNET_SYSERR to close it (signal serious error)
4414  */
4415 static int
4416 handle_mesh_data_unicast (void *cls, const struct GNUNET_PeerIdentity *peer,
4417                           const struct GNUNET_MessageHeader *message,
4418                           const struct GNUNET_ATS_Information *atsi,
4419                           unsigned int atsi_count)
4420 {
4421   struct GNUNET_MESH_Unicast *msg;
4422   struct GNUNET_PeerIdentity *neighbor;
4423   struct MeshTunnelChildInfo *cinfo;
4424   struct MeshTunnel *t;
4425   GNUNET_PEER_Id dest_id;
4426   uint32_t pid;
4427   uint32_t ttl;
4428   size_t size;
4429
4430   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "got a unicast packet from %s\n",
4431               GNUNET_i2s (peer));
4432   size = ntohs (message->size);
4433   if (size <
4434       sizeof (struct GNUNET_MESH_Unicast) +
4435       sizeof (struct GNUNET_MessageHeader))
4436   {
4437     GNUNET_break (0);
4438     return GNUNET_OK;
4439   }
4440   msg = (struct GNUNET_MESH_Unicast *) message;
4441   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, " of type %u\n",
4442               ntohs (msg[1].header.type));
4443   t = tunnel_get (&msg->oid, ntohl (msg->tid));
4444   if (NULL == t)
4445   {
4446     /* TODO notify back: we don't know this tunnel */
4447     GNUNET_STATISTICS_update (stats, "# data on unknown tunnel", 1, GNUNET_NO);
4448     GNUNET_break_op (0);
4449     return GNUNET_OK;
4450   }
4451   pid = ntohl (msg->pid);
4452   if (t->pid == pid)
4453   {
4454     GNUNET_STATISTICS_update (stats, "# TTL drops", 1, GNUNET_NO);
4455     GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
4456                 " Already seen pid %u, DROPPING!\n", pid);
4457     return GNUNET_OK;
4458   }
4459   else
4460   {
4461     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
4462                 " pid %u not seen yet, forwarding\n", pid);
4463   }
4464   t->skip += (pid - t->pid) - 1;
4465   t->pid = pid;
4466   tunnel_reset_timeout (t);
4467   dest_id = GNUNET_PEER_search (&msg->destination);
4468   if (dest_id == myid)
4469   {
4470     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
4471                 "  it's for us! sending to clients...\n");
4472     GNUNET_STATISTICS_update (stats, "# unicast received", 1, GNUNET_NO);
4473     send_subscribed_clients (message, (struct GNUNET_MessageHeader *) &msg[1]);
4474     // FIXME send after client processes the packet
4475     tunnel_send_ack (t, GNUNET_MESSAGE_TYPE_MESH_ACK);
4476     return GNUNET_OK;
4477   }
4478   ttl = ntohl (msg->ttl);
4479   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "   ttl: %u\n", ttl);
4480   if (ttl == 0)
4481   {
4482     GNUNET_STATISTICS_update (stats, "# TTL drops", 1, GNUNET_NO);
4483     GNUNET_log (GNUNET_ERROR_TYPE_WARNING, " TTL is 0, DROPPING!\n");
4484     return GNUNET_OK;
4485   }
4486   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
4487               "  not for us, retransmitting...\n");
4488   GNUNET_STATISTICS_update (stats, "# unicast forwarded", 1, GNUNET_NO);
4489
4490   neighbor = tree_get_first_hop (t->tree, dest_id);
4491   cinfo = GNUNET_CONTAINER_multihashmap_get (t->children_fc,
4492                                              &neighbor->hashPubKey);
4493   if (NULL == cinfo)
4494   {
4495     cinfo = GNUNET_malloc (sizeof (struct MeshTunnelChildInfo));
4496     cinfo->id = GNUNET_PEER_intern (neighbor);
4497     cinfo->skip = pid;
4498     cinfo->max_pid = pid + t->queue_max - t->queue_n; // FIXME review
4499
4500     GNUNET_assert (GNUNET_OK ==
4501                    GNUNET_CONTAINER_multihashmap_put (t->children_fc,
4502                        &neighbor->hashPubKey,
4503                        cinfo,
4504                        GNUNET_CONTAINER_MULTIHASHMAPOPTION_UNIQUE_FAST));
4505   }
4506   cinfo->pid = pid;
4507   GNUNET_CONTAINER_multihashmap_iterate (t->children_fc,
4508                                          &tunnel_add_skip,
4509                                          &neighbor);
4510   send_message (message, neighbor, t);
4511   return GNUNET_OK;
4512 }
4513
4514
4515 /**
4516  * Core handler for mesh network traffic going from the origin to all peers
4517  *
4518  * @param cls closure
4519  * @param message message
4520  * @param peer peer identity this notification is about
4521  * @param atsi performance data
4522  * @param atsi_count number of records in 'atsi'
4523  * @return GNUNET_OK to keep the connection open,
4524  *         GNUNET_SYSERR to close it (signal serious error)
4525  *
4526  * TODO: Check who we got this from, to validate route.
4527  */
4528 static int
4529 handle_mesh_data_multicast (void *cls, const struct GNUNET_PeerIdentity *peer,
4530                             const struct GNUNET_MessageHeader *message,
4531                             const struct GNUNET_ATS_Information *atsi,
4532                             unsigned int atsi_count)
4533 {
4534   struct GNUNET_MESH_Multicast *msg;
4535   struct MeshTunnel *t;
4536   size_t size;
4537   uint32_t pid;
4538
4539   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "got a multicast packet from %s\n",
4540               GNUNET_i2s (peer));
4541   size = ntohs (message->size);
4542   if (sizeof (struct GNUNET_MESH_Multicast) +
4543       sizeof (struct GNUNET_MessageHeader) > size)
4544   {
4545     GNUNET_break_op (0);
4546     return GNUNET_OK;
4547   }
4548   msg = (struct GNUNET_MESH_Multicast *) message;
4549   t = tunnel_get (&msg->oid, ntohl (msg->tid));
4550
4551   if (NULL == t)
4552   {
4553     /* TODO notify that we dont know that tunnel */
4554     GNUNET_STATISTICS_update (stats, "# data on unknown tunnel", 1, GNUNET_NO);
4555     GNUNET_break_op (0);
4556     return GNUNET_OK;
4557   }
4558   pid = ntohl (msg->pid);
4559   if (t->pid == pid)
4560   {
4561     /* already seen this packet, drop */
4562     GNUNET_STATISTICS_update (stats, "# TTL drops", 1, GNUNET_NO);
4563     GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
4564                 " Already seen pid %u, DROPPING!\n", pid);
4565     return GNUNET_OK;
4566   }
4567   else
4568   {
4569     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
4570                 " pid %u not seen yet, forwarding\n", pid);
4571   }
4572   t->skip += (pid - t->pid) - 1;
4573   t->pid = pid;
4574   tunnel_reset_timeout (t);
4575
4576   /* Transmit to locally interested clients */
4577   if (NULL != t->peers &&
4578       GNUNET_CONTAINER_multihashmap_contains (t->peers, &my_full_id.hashPubKey))
4579   {
4580     GNUNET_STATISTICS_update (stats, "# multicast received", 1, GNUNET_NO);
4581     send_subscribed_clients (message, &msg[1].header);
4582   }
4583   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "   ttl: %u\n", ntohl (msg->ttl));
4584   if (ntohl (msg->ttl) == 0)
4585   {
4586     GNUNET_STATISTICS_update (stats, "# TTL drops", 1, GNUNET_NO);
4587     GNUNET_log (GNUNET_ERROR_TYPE_WARNING, " TTL is 0, DROPPING!\n");
4588     return GNUNET_OK;
4589   }
4590   GNUNET_STATISTICS_update (stats, "# multicast forwarded", 1, GNUNET_NO);
4591   tunnel_send_multicast (t, message, GNUNET_NO);
4592   return GNUNET_OK;
4593 }
4594
4595
4596 /**
4597  * Core handler for mesh network traffic toward the owner of a tunnel
4598  *
4599  * @param cls closure
4600  * @param message message
4601  * @param peer peer identity this notification is about
4602  * @param atsi performance data
4603  * @param atsi_count number of records in 'atsi'
4604  *
4605  * @return GNUNET_OK to keep the connection open,
4606  *         GNUNET_SYSERR to close it (signal serious error)
4607  */
4608 static int
4609 handle_mesh_data_to_orig (void *cls, const struct GNUNET_PeerIdentity *peer,
4610                           const struct GNUNET_MessageHeader *message,
4611                           const struct GNUNET_ATS_Information *atsi,
4612                           unsigned int atsi_count)
4613 {
4614   struct GNUNET_MESH_ToOrigin *msg;
4615   struct GNUNET_PeerIdentity id;
4616   struct MeshPeerInfo *peer_info;
4617   struct MeshTunnel *t;
4618   size_t size;
4619
4620   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "got a ToOrigin packet from %s\n",
4621               GNUNET_i2s (peer));
4622   size = ntohs (message->size);
4623   if (size < sizeof (struct GNUNET_MESH_ToOrigin) +     /* Payload must be */
4624       sizeof (struct GNUNET_MessageHeader))     /* at least a header */
4625   {
4626     GNUNET_break_op (0);
4627     return GNUNET_OK;
4628   }
4629   msg = (struct GNUNET_MESH_ToOrigin *) message;
4630   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, " of type %u\n",
4631               ntohs (msg[1].header.type));
4632   t = tunnel_get (&msg->oid, ntohl (msg->tid));
4633
4634   if (NULL == t)
4635   {
4636     /* TODO notify that we dont know this tunnel (whom)? */
4637     GNUNET_STATISTICS_update (stats, "# data on unknown tunnel", 1, GNUNET_NO);
4638     GNUNET_break_op (0);
4639     return GNUNET_OK;
4640   }
4641
4642   if (t->id.oid == myid)
4643   {
4644     char cbuf[size];
4645     struct GNUNET_MESH_ToOrigin *copy;
4646
4647     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
4648                 "  it's for us! sending to clients...\n");
4649     if (NULL == t->owner)
4650     {
4651       /* got data packet for ownerless tunnel */
4652       GNUNET_STATISTICS_update (stats, "# data on ownerless tunnel",
4653                                 1, GNUNET_NO);
4654       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  no clients!\n");
4655       GNUNET_break_op (0);
4656       return GNUNET_OK;
4657     }
4658     /* TODO signature verification */
4659     memcpy (cbuf, message, size);
4660     copy = (struct GNUNET_MESH_ToOrigin *) cbuf;
4661     copy->tid = htonl (t->local_tid);
4662     GNUNET_STATISTICS_update (stats, "# to origin received", 1, GNUNET_NO);
4663     GNUNET_SERVER_notification_context_unicast (nc, t->owner->handle,
4664                                                 &copy->header, GNUNET_YES);
4665     return GNUNET_OK;
4666   }
4667   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
4668               "  not for us, retransmitting...\n");
4669
4670   peer_info = peer_info_get (&msg->oid);
4671   if (NULL == peer_info)
4672   {
4673     /* unknown origin of tunnel */
4674     GNUNET_break (0);
4675     return GNUNET_OK;
4676   }
4677   GNUNET_PEER_resolve (tree_get_predecessor (t->tree), &id);
4678   send_message (message, &id, t);
4679   GNUNET_STATISTICS_update (stats, "# to origin forwarded", 1, GNUNET_NO);
4680
4681   return GNUNET_OK;
4682 }
4683
4684
4685 /**
4686  * Core handler for mesh network traffic point-to-point acks.
4687  *
4688  * @param cls closure
4689  * @param message message
4690  * @param peer peer identity this notification is about
4691  * @param atsi performance data
4692  * @param atsi_count number of records in 'atsi'
4693  *
4694  * @return GNUNET_OK to keep the connection open,
4695  *         GNUNET_SYSERR to close it (signal serious error)
4696  */
4697 static int
4698 handle_mesh_ack (void *cls, const struct GNUNET_PeerIdentity *peer,
4699                  const struct GNUNET_MessageHeader *message,
4700                  const struct GNUNET_ATS_Information *atsi,
4701                  unsigned int atsi_count)
4702 {
4703   struct GNUNET_MESH_ACK *msg;
4704   struct MeshTunnelChildInfo *cinfo;
4705   struct MeshTunnel *t;
4706   uint32_t ack;
4707
4708   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "got an ACK packet from %s\n",
4709               GNUNET_i2s (peer));
4710   msg = (struct GNUNET_MESH_ACK *) message;
4711   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, " of type %u\n",
4712               ntohs (msg[1].header.type));
4713   t = tunnel_get (&msg->oid, ntohl (msg->tid));
4714
4715   if (NULL == t)
4716   {
4717     /* TODO notify that we dont know this tunnel (whom)? */
4718     GNUNET_STATISTICS_update (stats, "# ack on unknown tunnel", 1, GNUNET_NO);
4719     GNUNET_break_op (0);
4720     return GNUNET_OK;
4721   }
4722   ack = ntohl (msg->pid);
4723   cinfo = GNUNET_CONTAINER_multihashmap_get (t->children_fc,
4724                                              &peer->hashPubKey);
4725   if (NULL == cinfo)
4726   {
4727     GNUNET_break_op (0);
4728     return GNUNET_OK;
4729   }
4730   cinfo->max_pid = ack;
4731   tunnel_send_ack (t, GNUNET_MESSAGE_TYPE_MESH_ACK);
4732   return GNUNET_OK;
4733 }
4734
4735
4736 /**
4737  * Core handler for path ACKs
4738  *
4739  * @param cls closure
4740  * @param message message
4741  * @param peer peer identity this notification is about
4742  * @param atsi performance data
4743  * @param atsi_count number of records in 'atsi'
4744  *
4745  * @return GNUNET_OK to keep the connection open,
4746  *         GNUNET_SYSERR to close it (signal serious error)
4747  */
4748 static int
4749 handle_mesh_path_ack (void *cls, const struct GNUNET_PeerIdentity *peer,
4750                       const struct GNUNET_MessageHeader *message,
4751                       const struct GNUNET_ATS_Information *atsi,
4752                       unsigned int atsi_count)
4753 {
4754   struct GNUNET_MESH_PathACK *msg;
4755   struct GNUNET_PeerIdentity id;
4756   struct MeshPeerInfo *peer_info;
4757   struct MeshPeerPath *p;
4758   struct MeshTunnel *t;
4759
4760   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Received a path ACK msg [%s]\n",
4761               GNUNET_i2s (&my_full_id));
4762   msg = (struct GNUNET_MESH_PathACK *) message;
4763   t = tunnel_get (&msg->oid, ntohl(msg->tid));
4764   if (NULL == t)
4765   {
4766     /* TODO notify that we don't know the tunnel */
4767     GNUNET_STATISTICS_update (stats, "# control on unknown tunnel", 1, GNUNET_NO);
4768     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  don't know the tunnel %s [%X]!\n",
4769                 GNUNET_i2s (&msg->oid), ntohl(msg->tid));
4770     return GNUNET_OK;
4771   }
4772   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  on tunnel %s [%X]\n",
4773               GNUNET_i2s (&msg->oid), ntohl(msg->tid));
4774
4775   peer_info = peer_info_get (&msg->peer_id);
4776   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  by peer %s\n",
4777               GNUNET_i2s (&msg->peer_id));
4778   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  via peer %s\n",
4779               GNUNET_i2s (peer));
4780
4781   if (NULL != t->regex_ctx && t->regex_ctx->info->peer == peer_info->id)
4782   {
4783     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
4784                 "connect_by_string completed, stopping search\n");
4785     regex_cancel_search (t->regex_ctx);
4786     t->regex_ctx = NULL;
4787   }
4788
4789   /* Add paths to peers? */
4790   p = tree_get_path_to_peer (t->tree, peer_info->id);
4791   if (NULL != p)
4792   {
4793     path_add_to_peers (p, GNUNET_YES);
4794     path_destroy (p);
4795   }
4796   else
4797   {
4798     GNUNET_break (0);
4799   }
4800
4801   /* Message for us? */
4802   if (0 == memcmp (&msg->oid, &my_full_id, sizeof (struct GNUNET_PeerIdentity)))
4803   {
4804     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  It's for us!\n");
4805     if (NULL == t->owner)
4806     {
4807       GNUNET_break_op (0);
4808       return GNUNET_OK;
4809     }
4810     if (NULL != t->dht_get_type)
4811     {
4812       GNUNET_DHT_get_stop (t->dht_get_type);
4813       t->dht_get_type = NULL;
4814     }
4815     if (tree_get_status (t->tree, peer_info->id) != MESH_PEER_READY)
4816     {
4817       tree_set_status (t->tree, peer_info->id, MESH_PEER_READY);
4818       send_client_peer_connected (t, peer_info->id);
4819     }
4820     return GNUNET_OK;
4821   }
4822
4823   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
4824               "  not for us, retransmitting...\n");
4825   GNUNET_PEER_resolve (tree_get_predecessor (t->tree), &id);
4826   peer_info = peer_info_get (&msg->oid);
4827   if (NULL == peer_info)
4828   {
4829     /* If we know the tunnel, we should DEFINITELY know the peer */
4830     GNUNET_break (0);
4831     return GNUNET_OK;
4832   }
4833   send_message (message, &id, t);
4834   return GNUNET_OK;
4835 }
4836
4837
4838 /**
4839  * Functions to handle messages from core
4840  */
4841 static struct GNUNET_CORE_MessageHandler core_handlers[] = {
4842   {&handle_mesh_path_create, GNUNET_MESSAGE_TYPE_MESH_PATH_CREATE, 0},
4843   {&handle_mesh_path_destroy, GNUNET_MESSAGE_TYPE_MESH_PATH_DESTROY, 0},
4844   {&handle_mesh_path_broken, GNUNET_MESSAGE_TYPE_MESH_PATH_BROKEN,
4845    sizeof (struct GNUNET_MESH_PathBroken)},
4846   {&handle_mesh_tunnel_destroy, GNUNET_MESSAGE_TYPE_MESH_TUNNEL_DESTROY,
4847    sizeof (struct GNUNET_MESH_TunnelDestroy)},
4848   {&handle_mesh_data_unicast, GNUNET_MESSAGE_TYPE_MESH_UNICAST, 0},
4849   {&handle_mesh_data_multicast, GNUNET_MESSAGE_TYPE_MESH_MULTICAST, 0},
4850   {&handle_mesh_data_to_orig, GNUNET_MESSAGE_TYPE_MESH_TO_ORIGIN, 0},
4851   {&handle_mesh_ack, GNUNET_MESSAGE_TYPE_MESH_ACK,
4852     sizeof (struct GNUNET_MESH_ACK)},
4853   {&handle_mesh_path_ack, GNUNET_MESSAGE_TYPE_MESH_PATH_ACK,
4854    sizeof (struct GNUNET_MESH_PathACK)},
4855   {NULL, 0, 0}
4856 };
4857
4858
4859
4860 /******************************************************************************/
4861 /****************       MESH LOCAL HANDLER HELPERS      ***********************/
4862 /******************************************************************************/
4863
4864 /**
4865  * deregister_app: iterator for removing each application registered by a client
4866  *
4867  * @param cls closure
4868  * @param key the hash of the application id (used to access the hashmap)
4869  * @param value the value stored at the key (client)
4870  *
4871  * @return GNUNET_OK on success
4872  */
4873 static int
4874 deregister_app (void *cls, const struct GNUNET_HashCode * key, void *value)
4875 {
4876   struct GNUNET_CONTAINER_MultiHashMap *h = cls;
4877   GNUNET_break (GNUNET_YES ==
4878                 GNUNET_CONTAINER_multihashmap_remove (h, key, value));
4879   return GNUNET_OK;
4880 }
4881
4882 #if LATER
4883 /**
4884  * notify_client_connection_failure: notify a client that the connection to the
4885  * requested remote peer is not possible (for instance, no route found)
4886  * Function called when the socket is ready to queue more data. "buf" will be
4887  * NULL and "size" zero if the socket was closed for writing in the meantime.
4888  *
4889  * @param cls closure
4890  * @param size number of bytes available in buf
4891  * @param buf where the callee should write the message
4892  * @return number of bytes written to buf
4893  */
4894 static size_t
4895 notify_client_connection_failure (void *cls, size_t size, void *buf)
4896 {
4897   int size_needed;
4898   struct MeshPeerInfo *peer_info;
4899   struct GNUNET_MESH_PeerControl *msg;
4900   struct GNUNET_PeerIdentity id;
4901
4902   if (0 == size && NULL == buf)
4903   {
4904     // TODO retry? cancel?
4905     return 0;
4906   }
4907
4908   size_needed = sizeof (struct GNUNET_MESH_PeerControl);
4909   peer_info = (struct MeshPeerInfo *) cls;
4910   msg = (struct GNUNET_MESH_PeerControl *) buf;
4911   msg->header.size = htons (sizeof (struct GNUNET_MESH_PeerControl));
4912   msg->header.type = htons (GNUNET_MESSAGE_TYPE_MESH_LOCAL_PEER_DISCONNECTED);
4913 //     msg->tunnel_id = htonl(peer_info->t->tid);
4914   GNUNET_PEER_resolve (peer_info->id, &id);
4915   memcpy (&msg->peer, &id, sizeof (struct GNUNET_PeerIdentity));
4916
4917   return size_needed;
4918 }
4919 #endif
4920
4921
4922 /**
4923  * Send keepalive packets for a peer
4924  *
4925  * @param cls Closure (tunnel for which to send the keepalive).
4926  * @param tc Notification context.
4927  *
4928  * TODO: implement explicit multicast keepalive?
4929  */
4930 static void
4931 path_refresh (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
4932 {
4933   struct MeshTunnel *t = cls;
4934   struct GNUNET_MessageHeader *payload;
4935   struct GNUNET_MESH_Multicast *msg;
4936   size_t size =
4937       sizeof (struct GNUNET_MESH_Multicast) +
4938       sizeof (struct GNUNET_MessageHeader);
4939   char cbuf[size];
4940
4941   if (0 != (tc->reason & GNUNET_SCHEDULER_REASON_SHUTDOWN))
4942   {
4943     return;
4944   }
4945   t->path_refresh_task = GNUNET_SCHEDULER_NO_TASK;
4946
4947   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
4948               "sending keepalive for tunnel %d\n", t->id.tid);
4949
4950   msg = (struct GNUNET_MESH_Multicast *) cbuf;
4951   msg->header.size = htons (size);
4952   msg->header.type = htons (GNUNET_MESSAGE_TYPE_MESH_MULTICAST);
4953   msg->oid = my_full_id;
4954   msg->tid = htonl (t->id.tid);
4955   msg->ttl = htonl (default_ttl);
4956   msg->pid = htonl (t->pid + 1);
4957   t->pid++;
4958   payload = (struct GNUNET_MessageHeader *) &msg[1];
4959   payload->size = htons (sizeof (struct GNUNET_MessageHeader));
4960   payload->type = htons (GNUNET_MESSAGE_TYPE_MESH_PATH_KEEPALIVE);
4961   tunnel_send_multicast (t, &msg->header, GNUNET_YES);
4962
4963   t->path_refresh_task =
4964       GNUNET_SCHEDULER_add_delayed (refresh_path_time, &path_refresh, t);
4965   return;
4966 }
4967
4968
4969 /**
4970  * Function to process paths received for a new peer addition. The recorded
4971  * paths form the initial tunnel, which can be optimized later.
4972  * Called on each result obtained for the DHT search.
4973  *
4974  * @param cls closure
4975  * @param exp when will this value expire
4976  * @param key key of the result
4977  * @param get_path path of the get request
4978  * @param get_path_length lenght of get_path
4979  * @param put_path path of the put request
4980  * @param put_path_length length of the put_path
4981  * @param type type of the result
4982  * @param size number of bytes in data
4983  * @param data pointer to the result data
4984  *
4985  * TODO: re-issue the request after certain time? cancel after X results?
4986  */
4987 static void
4988 dht_get_id_handler (void *cls, struct GNUNET_TIME_Absolute exp,
4989                     const struct GNUNET_HashCode * key,
4990                     const struct GNUNET_PeerIdentity *get_path,
4991                     unsigned int get_path_length,
4992                     const struct GNUNET_PeerIdentity *put_path,
4993                     unsigned int put_path_length, enum GNUNET_BLOCK_Type type,
4994                     size_t size, const void *data)
4995 {
4996   struct MeshPathInfo *path_info = cls;
4997   struct MeshPeerPath *p;
4998   struct GNUNET_PeerIdentity pi;
4999   int i;
5000
5001   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Got results from DHT!\n");
5002   GNUNET_PEER_resolve (path_info->peer->id, &pi);
5003   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  for %s\n", GNUNET_i2s (&pi));
5004
5005   p = path_build_from_dht (get_path, get_path_length, put_path,
5006                            put_path_length);
5007   path_add_to_peers (p, GNUNET_NO);
5008   path_destroy(p);
5009   for (i = 0; i < path_info->peer->ntunnels; i++)
5010   {
5011     tunnel_add_peer (path_info->peer->tunnels[i], path_info->peer);
5012     peer_info_connect (path_info->peer, path_info->t);
5013   }
5014
5015   return;
5016 }
5017
5018
5019 /**
5020  * Function to process paths received for a new peer addition. The recorded
5021  * paths form the initial tunnel, which can be optimized later.
5022  * Called on each result obtained for the DHT search.
5023  *
5024  * @param cls closure
5025  * @param exp when will this value expire
5026  * @param key key of the result
5027  * @param get_path path of the get request
5028  * @param get_path_length lenght of get_path
5029  * @param put_path path of the put request
5030  * @param put_path_length length of the put_path
5031  * @param type type of the result
5032  * @param size number of bytes in data
5033  * @param data pointer to the result data
5034  */
5035 static void
5036 dht_get_type_handler (void *cls, struct GNUNET_TIME_Absolute exp,
5037                       const struct GNUNET_HashCode * key,
5038                       const struct GNUNET_PeerIdentity *get_path,
5039                       unsigned int get_path_length,
5040                       const struct GNUNET_PeerIdentity *put_path,
5041                       unsigned int put_path_length, enum GNUNET_BLOCK_Type type,
5042                       size_t size, const void *data)
5043 {
5044   const struct PBlock *pb = data;
5045   const struct GNUNET_PeerIdentity *pi = &pb->id;
5046   struct MeshTunnel *t = cls;
5047   struct MeshPeerInfo *peer_info;
5048   struct MeshPeerPath *p;
5049
5050   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "got type DHT result!\n");
5051   if (size != sizeof (struct PBlock))
5052   {
5053     GNUNET_break_op (0);
5054     return;
5055   }
5056   if (ntohl(pb->type) != t->type)
5057   {
5058     GNUNET_break_op (0);
5059     return;
5060   }
5061   GNUNET_assert (NULL != t->owner);
5062   peer_info = peer_info_get (pi);
5063   (void) GNUNET_CONTAINER_multihashmap_put (t->peers, &pi->hashPubKey,
5064                                             peer_info,
5065                                             GNUNET_CONTAINER_MULTIHASHMAPOPTION_REPLACE);
5066
5067   p = path_build_from_dht (get_path, get_path_length, put_path,
5068                            put_path_length);
5069   path_add_to_peers (p, GNUNET_NO);
5070   path_destroy(p);
5071   tunnel_add_peer (t, peer_info);
5072   peer_info_connect (peer_info, t);
5073 }
5074
5075
5076 /**
5077  * Function to process DHT string to regex matching.
5078  * Called on each result obtained for the DHT search.
5079  *
5080  * @param cls closure (search context)
5081  * @param exp when will this value expire
5082  * @param key key of the result
5083  * @param get_path path of the get request (not used)
5084  * @param get_path_length lenght of get_path (not used)
5085  * @param put_path path of the put request (not used)
5086  * @param put_path_length length of the put_path (not used)
5087  * @param type type of the result
5088  * @param size number of bytes in data
5089  * @param data pointer to the result data
5090  */
5091 static void
5092 dht_get_string_accept_handler (void *cls, struct GNUNET_TIME_Absolute exp,
5093                                const struct GNUNET_HashCode * key,
5094                                const struct GNUNET_PeerIdentity *get_path,
5095                                unsigned int get_path_length,
5096                                const struct GNUNET_PeerIdentity *put_path,
5097                                unsigned int put_path_length,
5098                                enum GNUNET_BLOCK_Type type,
5099                                size_t size, const void *data)
5100 {
5101   const struct MeshRegexAccept *block = data;
5102   struct MeshRegexSearchContext *ctx = cls;
5103   struct MeshRegexSearchInfo *info = ctx->info;
5104   struct MeshPeerPath *p;
5105   struct MeshPeerInfo *peer_info;
5106
5107   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Got regex results from DHT!\n");
5108   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  for %s\n", info->description);
5109
5110   peer_info = peer_info_get(&block->id);
5111   p = path_build_from_dht (get_path, get_path_length, put_path,
5112                            put_path_length);
5113   path_add_to_peers (p, GNUNET_NO);
5114   path_destroy(p);
5115
5116   tunnel_add_peer (info->t, peer_info);
5117   peer_info_connect (peer_info, info->t);
5118   if (0 == info->peer)
5119   {
5120     info->peer = peer_info->id;
5121   }
5122   else
5123   {
5124     GNUNET_array_append (info->peers, info->n_peers, peer_info->id);
5125   }
5126
5127   info->timeout = GNUNET_SCHEDULER_add_delayed (connect_timeout,
5128                                                 &regex_connect_timeout,
5129                                                 info);
5130
5131   return;
5132 }
5133
5134
5135 /**
5136  * Function to process DHT string to regex matching.
5137  * Called on each result obtained for the DHT search.
5138  *
5139  * @param cls closure (search context)
5140  * @param exp when will this value expire
5141  * @param key key of the result
5142  * @param get_path path of the get request (not used)
5143  * @param get_path_length lenght of get_path (not used)
5144  * @param put_path path of the put request (not used)
5145  * @param put_path_length length of the put_path (not used)
5146  * @param type type of the result
5147  * @param size number of bytes in data
5148  * @param data pointer to the result data
5149  *
5150  * TODO: re-issue the request after certain time? cancel after X results?
5151  */
5152 static void
5153 dht_get_string_handler (void *cls, struct GNUNET_TIME_Absolute exp,
5154                         const struct GNUNET_HashCode * key,
5155                         const struct GNUNET_PeerIdentity *get_path,
5156                         unsigned int get_path_length,
5157                         const struct GNUNET_PeerIdentity *put_path,
5158                         unsigned int put_path_length, enum GNUNET_BLOCK_Type type,
5159                         size_t size, const void *data)
5160 {
5161   const struct MeshRegexBlock *block = data;
5162   struct MeshRegexSearchContext *ctx = cls;
5163   struct MeshRegexSearchInfo *info = ctx->info;
5164   void *copy;
5165   size_t len;
5166
5167   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
5168               "DHT GET STRING RETURNED RESULTS\n");
5169   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
5170               "  key: %s\n", GNUNET_h2s (key));
5171
5172   copy = GNUNET_malloc (size);
5173   memcpy (copy, data, size);
5174   GNUNET_break (GNUNET_OK ==
5175                 GNUNET_CONTAINER_multihashmap_put(info->dht_get_results, key, copy,
5176                                                   GNUNET_CONTAINER_MULTIHASHMAPOPTION_MULTIPLE));
5177   len = ntohl (block->n_proof);
5178   {
5179     char proof[len + 1];
5180
5181     memcpy (proof, &block[1], len);
5182     proof[len] = '\0';
5183     if (GNUNET_OK != GNUNET_REGEX_check_proof (proof, key))
5184     {
5185       GNUNET_break_op (0);
5186       return;
5187     }
5188   }
5189   len = strlen (info->description);
5190   if (len == ctx->position) // String processed
5191   {
5192     if (GNUNET_YES == ntohl (block->accepting))
5193     {
5194       regex_find_path(key, ctx);
5195     }
5196     else
5197     {
5198       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  block not accepting!\n");
5199       // FIXME REGEX this block not successful, wait for more? start timeout?
5200     }
5201     return;
5202   }
5203   GNUNET_break (GNUNET_OK ==
5204                 GNUNET_MESH_regex_block_iterate (block, size,
5205                                                  &regex_edge_iterator, ctx));
5206   return;
5207 }
5208
5209 /******************************************************************************/
5210 /*********************       MESH LOCAL HANDLES      **************************/
5211 /******************************************************************************/
5212
5213
5214 /**
5215  * Handler for client disconnection
5216  *
5217  * @param cls closure
5218  * @param client identification of the client; NULL
5219  *        for the last call when the server is destroyed
5220  */
5221 static void
5222 handle_local_client_disconnect (void *cls, struct GNUNET_SERVER_Client *client)
5223 {
5224   struct MeshClient *c;
5225   struct MeshClient *next;
5226   unsigned int i;
5227
5228   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "client disconnected\n");
5229   if (client == NULL)
5230   {
5231     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "   (SERVER DOWN)\n");
5232     return;
5233   }
5234   c = clients;
5235   while (NULL != c)
5236   {
5237     if (c->handle != client)
5238     {
5239       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "   ... searching\n");
5240       c = c->next;
5241       continue;
5242     }
5243     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "matching client found (%u)\n",
5244                 c->id);
5245     GNUNET_SERVER_client_drop (c->handle);
5246     c->shutting_down = GNUNET_YES;
5247     GNUNET_assert (NULL != c->own_tunnels);
5248     GNUNET_assert (NULL != c->incoming_tunnels);
5249     GNUNET_CONTAINER_multihashmap_iterate (c->own_tunnels,
5250                                            &tunnel_destroy_iterator, c);
5251     GNUNET_CONTAINER_multihashmap_iterate (c->incoming_tunnels,
5252                                            &tunnel_destroy_iterator, c);
5253     GNUNET_CONTAINER_multihashmap_iterate (c->ignore_tunnels,
5254                                            &tunnel_destroy_iterator, c);
5255     GNUNET_CONTAINER_multihashmap_destroy (c->own_tunnels);
5256     GNUNET_CONTAINER_multihashmap_destroy (c->incoming_tunnels);
5257     GNUNET_CONTAINER_multihashmap_destroy (c->ignore_tunnels);
5258
5259     /* deregister clients applications */
5260     if (NULL != c->apps)
5261     {
5262       GNUNET_CONTAINER_multihashmap_iterate (c->apps, &deregister_app, c->apps);
5263       GNUNET_CONTAINER_multihashmap_destroy (c->apps);
5264     }
5265     if (0 == GNUNET_CONTAINER_multihashmap_size (applications) &&
5266         GNUNET_SCHEDULER_NO_TASK != announce_applications_task)
5267     {
5268       GNUNET_SCHEDULER_cancel (announce_applications_task);
5269       announce_applications_task = GNUNET_SCHEDULER_NO_TASK;
5270     }
5271     if (NULL != c->types)
5272       GNUNET_CONTAINER_multihashmap_destroy (c->types);
5273     for (i = 0; i < c->n_regex; i++)
5274     {
5275       GNUNET_free (c->regexes[i]);
5276     }
5277     GNUNET_free_non_null (c->regexes);
5278     if (GNUNET_SCHEDULER_NO_TASK != c->regex_announce_task)
5279       GNUNET_SCHEDULER_cancel (c->regex_announce_task);
5280     next = c->next;
5281     GNUNET_CONTAINER_DLL_remove (clients, clients_tail, c);
5282     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  CLIENT FREE at %p\n", c);
5283     GNUNET_free (c);
5284     GNUNET_STATISTICS_update (stats, "# clients", -1, GNUNET_NO);
5285     c = next;
5286   }
5287   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "   done!\n");
5288   return;
5289 }
5290
5291
5292 /**
5293  * Handler for new clients
5294  *
5295  * @param cls closure
5296  * @param client identification of the client
5297  * @param message the actual message, which includes messages the client wants
5298  */
5299 static void
5300 handle_local_new_client (void *cls, struct GNUNET_SERVER_Client *client,
5301                          const struct GNUNET_MessageHeader *message)
5302 {
5303   struct GNUNET_MESH_ClientConnect *cc_msg;
5304   struct MeshClient *c;
5305   GNUNET_MESH_ApplicationType *a;
5306   unsigned int size;
5307   uint16_t ntypes;
5308   uint16_t *t;
5309   uint16_t napps;
5310   uint16_t i;
5311
5312   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "new client connected\n");
5313   /* Check data sanity */
5314   size = ntohs (message->size) - sizeof (struct GNUNET_MESH_ClientConnect);
5315   cc_msg = (struct GNUNET_MESH_ClientConnect *) message;
5316   ntypes = ntohs (cc_msg->types);
5317   napps = ntohs (cc_msg->applications);
5318   if (size !=
5319       ntypes * sizeof (uint16_t) + napps * sizeof (GNUNET_MESH_ApplicationType))
5320   {
5321     GNUNET_break (0);
5322     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
5323     return;
5324   }
5325
5326   /* Create new client structure */
5327   c = GNUNET_malloc (sizeof (struct MeshClient));
5328   c->id = next_client_id++;
5329   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  CLIENT NEW %u\n", c->id);
5330   c->handle = client;
5331   GNUNET_SERVER_client_keep (client);
5332   a = (GNUNET_MESH_ApplicationType *) &cc_msg[1];
5333   if (napps > 0)
5334   {
5335     GNUNET_MESH_ApplicationType at;
5336     struct GNUNET_HashCode hc;
5337
5338     c->apps = GNUNET_CONTAINER_multihashmap_create (napps);
5339     for (i = 0; i < napps; i++)
5340     {
5341       at = ntohl (a[i]);
5342       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  app type: %u\n", at);
5343       GNUNET_CRYPTO_hash (&at, sizeof (at), &hc);
5344       /* store in clients hashmap */
5345       GNUNET_CONTAINER_multihashmap_put (c->apps, &hc, (void *) (long) at,
5346                                          GNUNET_CONTAINER_MULTIHASHMAPOPTION_MULTIPLE);
5347       /* store in global hashmap, for announcements */
5348       GNUNET_CONTAINER_multihashmap_put (applications, &hc, c,
5349                                          GNUNET_CONTAINER_MULTIHASHMAPOPTION_MULTIPLE);
5350     }
5351     if (GNUNET_SCHEDULER_NO_TASK == announce_applications_task)
5352       announce_applications_task =
5353           GNUNET_SCHEDULER_add_now (&announce_applications, NULL);
5354
5355   }
5356   if (ntypes > 0)
5357   {
5358     uint16_t u16;
5359     struct GNUNET_HashCode hc;
5360
5361     t = (uint16_t *) & a[napps];
5362     c->types = GNUNET_CONTAINER_multihashmap_create (ntypes);
5363     for (i = 0; i < ntypes; i++)
5364     {
5365       u16 = ntohs (t[i]);
5366       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  msg type: %u\n", u16);
5367       GNUNET_CRYPTO_hash (&u16, sizeof (u16), &hc);
5368
5369       /* store in clients hashmap */
5370       GNUNET_CONTAINER_multihashmap_put (c->types, &hc, c,
5371                                          GNUNET_CONTAINER_MULTIHASHMAPOPTION_MULTIPLE);
5372       /* store in global hashmap */
5373       GNUNET_CONTAINER_multihashmap_put (types, &hc, c,
5374                                          GNUNET_CONTAINER_MULTIHASHMAPOPTION_MULTIPLE);
5375     }
5376   }
5377   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
5378               " client has %u+%u subscriptions\n", napps, ntypes);
5379
5380   GNUNET_CONTAINER_DLL_insert (clients, clients_tail, c);
5381   c->own_tunnels = GNUNET_CONTAINER_multihashmap_create (32);
5382   c->incoming_tunnels = GNUNET_CONTAINER_multihashmap_create (32);
5383   c->ignore_tunnels = GNUNET_CONTAINER_multihashmap_create (32);
5384   GNUNET_SERVER_notification_context_add (nc, client);
5385   GNUNET_STATISTICS_update (stats, "# clients", 1, GNUNET_NO);
5386
5387   GNUNET_SERVER_receive_done (client, GNUNET_OK);
5388   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "new client processed\n");
5389 }
5390
5391
5392 /**
5393  * Handler for clients announcing available services by a regular expression.
5394  *
5395  * @param cls closure
5396  * @param client identification of the client
5397  * @param message the actual message, which includes messages the client wants
5398  */
5399 static void
5400 handle_local_announce_regex (void *cls, struct GNUNET_SERVER_Client *client,
5401                              const struct GNUNET_MessageHeader *message)
5402 {
5403   struct MeshClient *c;
5404   char *regex;
5405   size_t len;
5406
5407   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "announce regex started\n");
5408
5409   /* Sanity check for client registration */
5410   if (NULL == (c = client_get (client)))
5411   {
5412     GNUNET_break (0);
5413     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
5414     return;
5415   }
5416   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  by client %u\n", c->id);
5417
5418   len = ntohs (message->size) - sizeof(struct GNUNET_MessageHeader);
5419   regex = GNUNET_malloc (len + 1);
5420   memcpy (regex, &message[1], len);
5421   regex[len] = '\0';
5422   GNUNET_array_append (c->regexes, c->n_regex, regex);
5423   if (GNUNET_SCHEDULER_NO_TASK == c->regex_announce_task)
5424   {
5425     c->regex_announce_task = GNUNET_SCHEDULER_add_now(&announce_regex, c);
5426   }
5427   else
5428   {
5429     regex_put(regex);
5430   }
5431   GNUNET_SERVER_receive_done (client, GNUNET_OK);
5432   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "announce regex processed\n");
5433 }
5434
5435
5436 /**
5437  * Handler for requests of new tunnels
5438  *
5439  * @param cls closure
5440  * @param client identification of the client
5441  * @param message the actual message
5442  */
5443 static void
5444 handle_local_tunnel_create (void *cls, struct GNUNET_SERVER_Client *client,
5445                             const struct GNUNET_MessageHeader *message)
5446 {
5447   struct GNUNET_MESH_TunnelMessage *t_msg;
5448   struct MeshTunnel *t;
5449   struct MeshClient *c;
5450
5451   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "new tunnel requested\n");
5452
5453   /* Sanity check for client registration */
5454   if (NULL == (c = client_get (client)))
5455   {
5456     GNUNET_break (0);
5457     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
5458     return;
5459   }
5460   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  by client %u\n", c->id);
5461
5462   /* Message sanity check */
5463   if (sizeof (struct GNUNET_MESH_TunnelMessage) != ntohs (message->size))
5464   {
5465     GNUNET_break (0);
5466     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
5467     return;
5468   }
5469
5470   t_msg = (struct GNUNET_MESH_TunnelMessage *) message;
5471   /* Sanity check for tunnel numbering */
5472   if (0 == (ntohl (t_msg->tunnel_id) & GNUNET_MESH_LOCAL_TUNNEL_ID_CLI))
5473   {
5474     GNUNET_break (0);
5475     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
5476     return;
5477   }
5478   /* Sanity check for duplicate tunnel IDs */
5479   if (NULL != tunnel_get_by_local_id (c, ntohl (t_msg->tunnel_id)))
5480   {
5481     GNUNET_break (0);
5482     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
5483     return;
5484   }
5485
5486   while (NULL != tunnel_get_by_pi (myid, next_tid))
5487     next_tid = (next_tid + 1) & ~GNUNET_MESH_LOCAL_TUNNEL_ID_CLI;
5488   t = tunnel_new (myid, next_tid++, c, ntohl (t_msg->tunnel_id));
5489   if (NULL == t)
5490   {
5491     GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Tunnel creation failed.\n");
5492     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
5493     return;
5494   }
5495   next_tid = next_tid & ~GNUNET_MESH_LOCAL_TUNNEL_ID_CLI;
5496   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "CREATED TUNNEL %s [%x] (%x)\n",
5497               GNUNET_i2s (&my_full_id), t->id.tid, t->local_tid);
5498   t->peers = GNUNET_CONTAINER_multihashmap_create (32);
5499
5500   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "new tunnel created\n");
5501   GNUNET_SERVER_receive_done (client, GNUNET_OK);
5502   return;
5503 }
5504
5505
5506 /**
5507  * Handler for requests of deleting tunnels
5508  *
5509  * @param cls closure
5510  * @param client identification of the client
5511  * @param message the actual message
5512  */
5513 static void
5514 handle_local_tunnel_destroy (void *cls, struct GNUNET_SERVER_Client *client,
5515                              const struct GNUNET_MessageHeader *message)
5516 {
5517   struct GNUNET_MESH_TunnelMessage *tunnel_msg;
5518   struct MeshClient *c;
5519   struct MeshTunnel *t;
5520   MESH_TunnelNumber tid;
5521
5522   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
5523               "Got a DESTROY TUNNEL from client!\n");
5524
5525   /* Sanity check for client registration */
5526   if (NULL == (c = client_get (client)))
5527   {
5528     GNUNET_break (0);
5529     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
5530     return;
5531   }
5532   /* Message sanity check */
5533   if (sizeof (struct GNUNET_MESH_TunnelMessage) != ntohs (message->size))
5534   {
5535     GNUNET_break (0);
5536     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
5537     return;
5538   }
5539   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  by client %u\n", c->id);
5540   tunnel_msg = (struct GNUNET_MESH_TunnelMessage *) message;
5541
5542   /* Retrieve tunnel */
5543   tid = ntohl (tunnel_msg->tunnel_id);
5544   t = tunnel_get_by_local_id(c, tid);
5545   if (NULL == t)
5546   {
5547     GNUNET_break (0);
5548     GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "  tunnel %X not found\n", tid);
5549     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
5550     return;
5551   }
5552   if (c != t->owner || tid >= GNUNET_MESH_LOCAL_TUNNEL_ID_SERV)
5553   {
5554     client_ignore_tunnel (c, t);
5555 #if 0
5556     // TODO: when to destroy incoming tunnel?
5557     if (t->nclients == 0)
5558     {
5559       GNUNET_assert (GNUNET_YES ==
5560                      GNUNET_CONTAINER_multihashmap_remove (incoming_tunnels,
5561                                                            &hash, t));
5562       GNUNET_assert (GNUNET_YES ==
5563                      GNUNET_CONTAINER_multihashmap_remove (t->peers,
5564                                                            &my_full_id.hashPubKey,
5565                                                            t));
5566     }
5567 #endif
5568     GNUNET_SERVER_receive_done (client, GNUNET_OK);
5569     return;
5570   }
5571   send_client_tunnel_disconnect(t, c);
5572   client_delete_tunnel(c, t);
5573
5574   /* Don't try to ACK the client about the tunnel_destroy multicast packet */
5575   t->owner = NULL;
5576   tunnel_send_destroy (t);
5577   t->destroy = GNUNET_YES;
5578   // The tunnel will be destroyed when the last message is transmitted.
5579   GNUNET_SERVER_receive_done (client, GNUNET_OK);
5580   return;
5581 }
5582
5583
5584 /**
5585  * Handler for requests of seeting tunnel's speed.
5586  *
5587  * @param cls Closure (unused).
5588  * @param client Identification of the client.
5589  * @param message The actual message.
5590  */
5591 static void
5592 handle_local_tunnel_speed (void *cls, struct GNUNET_SERVER_Client *client,
5593                            const struct GNUNET_MessageHeader *message)
5594 {
5595   struct GNUNET_MESH_TunnelMessage *tunnel_msg;
5596   struct MeshClient *c;
5597   struct MeshTunnel *t;
5598   MESH_TunnelNumber tid;
5599
5600   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
5601               "Got a SPEED request from client!\n");
5602
5603   /* Sanity check for client registration */
5604   if (NULL == (c = client_get (client)))
5605   {
5606     GNUNET_break (0);
5607     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
5608     return;
5609   }
5610
5611   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  by client %u\n", c->id);
5612   tunnel_msg = (struct GNUNET_MESH_TunnelMessage *) message;
5613
5614   /* Retrieve tunnel */
5615   tid = ntohl (tunnel_msg->tunnel_id);
5616   t = tunnel_get_by_local_id(c, tid);
5617   if (NULL == t)
5618   {
5619     GNUNET_break (0);
5620     GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "  tunnel %X not found\n", tid);
5621     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
5622     return;
5623   }
5624
5625   switch (ntohs(message->type))
5626   {
5627       case GNUNET_MESSAGE_TYPE_MESH_LOCAL_TUNNEL_MIN:
5628           t->speed_min = GNUNET_YES;
5629           break;
5630       case GNUNET_MESSAGE_TYPE_MESH_LOCAL_TUNNEL_MAX:
5631           t->speed_min = GNUNET_NO;
5632           break;
5633       default:
5634           GNUNET_break (0);
5635   }
5636   GNUNET_SERVER_receive_done (client, GNUNET_OK);
5637 }
5638
5639
5640 /**
5641  * Handler for requests of seeting tunnel's buffering policy.
5642  *
5643  * @param cls Closure (unused).
5644  * @param client Identification of the client.
5645  * @param message The actual message.
5646  */
5647 static void
5648 handle_local_tunnel_buffer (void *cls, struct GNUNET_SERVER_Client *client,
5649                             const struct GNUNET_MessageHeader *message)
5650 {
5651   struct GNUNET_MESH_TunnelMessage *tunnel_msg;
5652   struct MeshClient *c;
5653   struct MeshTunnel *t;
5654   MESH_TunnelNumber tid;
5655
5656   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
5657               "Got a BUFFER request from client!\n");
5658
5659   /* Sanity check for client registration */
5660   if (NULL == (c = client_get (client)))
5661   {
5662     GNUNET_break (0);
5663     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
5664     return;
5665   }
5666
5667   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  by client %u\n", c->id);
5668   tunnel_msg = (struct GNUNET_MESH_TunnelMessage *) message;
5669
5670   /* Retrieve tunnel */
5671   tid = ntohl (tunnel_msg->tunnel_id);
5672   t = tunnel_get_by_local_id(c, tid);
5673   if (NULL == t)
5674   {
5675     GNUNET_break (0);
5676     GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "  tunnel %X not found\n", tid);
5677     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
5678     return;
5679   }
5680
5681   switch (ntohs(message->type))
5682   {
5683       case GNUNET_MESSAGE_TYPE_MESH_LOCAL_TUNNEL_BUFFER:
5684           t->nobuffer = GNUNET_NO;
5685           break;
5686       case GNUNET_MESSAGE_TYPE_MESH_LOCAL_TUNNEL_NOBUFFER:
5687           t->nobuffer = GNUNET_YES;
5688           break;
5689       default:
5690           GNUNET_break (0);
5691   }
5692
5693   GNUNET_SERVER_receive_done (client, GNUNET_OK);
5694 }
5695
5696
5697 /**
5698  * Handler for connection requests to new peers
5699  *
5700  * @param cls closure
5701  * @param client identification of the client
5702  * @param message the actual message (PeerControl)
5703  */
5704 static void
5705 handle_local_connect_add (void *cls, struct GNUNET_SERVER_Client *client,
5706                           const struct GNUNET_MessageHeader *message)
5707 {
5708   struct GNUNET_MESH_PeerControl *peer_msg;
5709   struct MeshPeerInfo *peer_info;
5710   struct MeshClient *c;
5711   struct MeshTunnel *t;
5712   MESH_TunnelNumber tid;
5713
5714   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Got connection request\n");
5715   /* Sanity check for client registration */
5716   if (NULL == (c = client_get (client)))
5717   {
5718     GNUNET_break (0);
5719     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
5720     return;
5721   }
5722
5723   peer_msg = (struct GNUNET_MESH_PeerControl *) message;
5724   /* Sanity check for message size */
5725   if (sizeof (struct GNUNET_MESH_PeerControl) != ntohs (peer_msg->header.size))
5726   {
5727     GNUNET_break (0);
5728     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
5729     return;
5730   }
5731
5732   /* Tunnel exists? */
5733   tid = ntohl (peer_msg->tunnel_id);
5734   t = tunnel_get_by_local_id (c, tid);
5735   if (NULL == t)
5736   {
5737     GNUNET_break (0);
5738     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
5739     return;
5740   }
5741
5742   /* Does client own tunnel? */
5743   if (t->owner->handle != client)
5744   {
5745     GNUNET_break (0);
5746     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
5747     return;
5748   }
5749   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "     for %s\n",
5750               GNUNET_i2s (&peer_msg->peer));
5751   peer_info = peer_info_get (&peer_msg->peer);
5752
5753   tunnel_add_peer (t, peer_info);
5754   peer_info_connect (peer_info, t);
5755
5756   GNUNET_SERVER_receive_done (client, GNUNET_OK);
5757   return;
5758 }
5759
5760
5761 /**
5762  * Handler for disconnection requests of peers in a tunnel
5763  *
5764  * @param cls closure
5765  * @param client identification of the client
5766  * @param message the actual message (PeerControl)
5767  */
5768 static void
5769 handle_local_connect_del (void *cls, struct GNUNET_SERVER_Client *client,
5770                           const struct GNUNET_MessageHeader *message)
5771 {
5772   struct GNUNET_MESH_PeerControl *peer_msg;
5773   struct MeshPeerInfo *peer_info;
5774   struct MeshClient *c;
5775   struct MeshTunnel *t;
5776   MESH_TunnelNumber tid;
5777
5778   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Got a PEER DEL request\n");
5779   /* Sanity check for client registration */
5780   if (NULL == (c = client_get (client)))
5781   {
5782     GNUNET_break (0);
5783     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
5784     return;
5785   }
5786   peer_msg = (struct GNUNET_MESH_PeerControl *) message;
5787   /* Sanity check for message size */
5788   if (sizeof (struct GNUNET_MESH_PeerControl) != ntohs (peer_msg->header.size))
5789   {
5790     GNUNET_break (0);
5791     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
5792     return;
5793   }
5794
5795   /* Tunnel exists? */
5796   tid = ntohl (peer_msg->tunnel_id);
5797   t = tunnel_get_by_local_id (c, tid);
5798   if (NULL == t)
5799   {
5800     GNUNET_break (0);
5801     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
5802     return;
5803   }
5804   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  on tunnel %X\n", t->id.tid);
5805
5806   /* Does client own tunnel? */
5807   if (t->owner->handle != client)
5808   {
5809     GNUNET_break (0);
5810     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
5811     return;
5812   }
5813
5814   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  for peer %s\n",
5815               GNUNET_i2s (&peer_msg->peer));
5816   /* Is the peer in the tunnel? */
5817   peer_info =
5818       GNUNET_CONTAINER_multihashmap_get (t->peers, &peer_msg->peer.hashPubKey);
5819   if (NULL == peer_info)
5820   {
5821     GNUNET_break (0);
5822     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
5823     return;
5824   }
5825
5826   /* Ok, delete peer from tunnel */
5827   GNUNET_CONTAINER_multihashmap_remove_all (t->peers,
5828                                             &peer_msg->peer.hashPubKey);
5829
5830   send_destroy_path (t, peer_info->id);
5831   tunnel_delete_peer (t, peer_info->id);
5832   GNUNET_SERVER_receive_done (client, GNUNET_OK);
5833   return;
5834 }
5835
5836 /**
5837  * Handler for blacklist requests of peers in a tunnel
5838  *
5839  * @param cls closure
5840  * @param client identification of the client
5841  * @param message the actual message (PeerControl)
5842  */
5843 static void
5844 handle_local_blacklist (void *cls, struct GNUNET_SERVER_Client *client,
5845                           const struct GNUNET_MessageHeader *message)
5846 {
5847   struct GNUNET_MESH_PeerControl *peer_msg;
5848   struct MeshClient *c;
5849   struct MeshTunnel *t;
5850   MESH_TunnelNumber tid;
5851
5852   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Got a PEER BLACKLIST request\n");
5853   /* Sanity check for client registration */
5854   if (NULL == (c = client_get (client)))
5855   {
5856     GNUNET_break (0);
5857     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
5858     return;
5859   }
5860   peer_msg = (struct GNUNET_MESH_PeerControl *) message;
5861
5862   /* Sanity check for message size */
5863   if (sizeof (struct GNUNET_MESH_PeerControl) != ntohs (peer_msg->header.size))
5864   {
5865     GNUNET_break (0);
5866     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
5867     return;
5868   }
5869
5870   /* Tunnel exists? */
5871   tid = ntohl (peer_msg->tunnel_id);
5872   t = tunnel_get_by_local_id (c, tid);
5873   if (NULL == t)
5874   {
5875     GNUNET_break (0);
5876     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
5877     return;
5878   }
5879   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  on tunnel %X\n", t->id.tid);
5880
5881   GNUNET_array_append(t->blacklisted, t->nblacklisted,
5882                       GNUNET_PEER_intern(&peer_msg->peer));
5883 }
5884
5885
5886 /**
5887  * Handler for unblacklist requests of peers in a tunnel
5888  *
5889  * @param cls closure
5890  * @param client identification of the client
5891  * @param message the actual message (PeerControl)
5892  */
5893 static void
5894 handle_local_unblacklist (void *cls, struct GNUNET_SERVER_Client *client,
5895                           const struct GNUNET_MessageHeader *message)
5896 {
5897   struct GNUNET_MESH_PeerControl *peer_msg;
5898   struct MeshClient *c;
5899   struct MeshTunnel *t;
5900   MESH_TunnelNumber tid;
5901   GNUNET_PEER_Id pid;
5902   unsigned int i;
5903
5904   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Got a PEER UNBLACKLIST request\n");
5905   /* Sanity check for client registration */
5906   if (NULL == (c = client_get (client)))
5907   {
5908     GNUNET_break (0);
5909     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
5910     return;
5911   }
5912   peer_msg = (struct GNUNET_MESH_PeerControl *) message;
5913
5914   /* Sanity check for message size */
5915   if (sizeof (struct GNUNET_MESH_PeerControl) != ntohs (peer_msg->header.size))
5916   {
5917     GNUNET_break (0);
5918     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
5919     return;
5920   }
5921
5922   /* Tunnel exists? */
5923   tid = ntohl (peer_msg->tunnel_id);
5924   t = tunnel_get_by_local_id (c, tid);
5925   if (NULL == t)
5926   {
5927     GNUNET_break (0);
5928     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
5929     return;
5930   }
5931   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  on tunnel %X\n", t->id.tid);
5932
5933   /* if peer is not known, complain */
5934   pid = GNUNET_PEER_search (&peer_msg->peer);
5935   if (0 == pid)
5936   {
5937     GNUNET_break (0);
5938     return;
5939   }
5940
5941   /* search and remove from list */
5942   for (i = 0; i < t->nblacklisted; i++)
5943   {
5944     if (t->blacklisted[i] == pid)
5945     {
5946       t->blacklisted[i] = t->blacklisted[t->nblacklisted - 1];
5947       GNUNET_array_grow (t->blacklisted, t->nblacklisted, t->nblacklisted - 1);
5948       return;
5949     }
5950   }
5951
5952   /* if peer hasn't been blacklisted, complain */
5953   GNUNET_break (0);
5954 }
5955
5956
5957 /**
5958  * Handler for connection requests to new peers by type
5959  *
5960  * @param cls closure
5961  * @param client identification of the client
5962  * @param message the actual message (ConnectPeerByType)
5963  */
5964 static void
5965 handle_local_connect_by_type (void *cls, struct GNUNET_SERVER_Client *client,
5966                               const struct GNUNET_MessageHeader *message)
5967 {
5968   struct GNUNET_MESH_ConnectPeerByType *connect_msg;
5969   struct MeshClient *c;
5970   struct MeshTunnel *t;
5971   struct GNUNET_HashCode hash;
5972   MESH_TunnelNumber tid;
5973
5974   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "got connect by type request\n");
5975   /* Sanity check for client registration */
5976   if (NULL == (c = client_get (client)))
5977   {
5978     GNUNET_break (0);
5979     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
5980     return;
5981   }
5982
5983   connect_msg = (struct GNUNET_MESH_ConnectPeerByType *) message;
5984   /* Sanity check for message size */
5985   if (sizeof (struct GNUNET_MESH_ConnectPeerByType) !=
5986       ntohs (connect_msg->header.size))
5987   {
5988     GNUNET_break (0);
5989     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
5990     return;
5991   }
5992
5993   /* Tunnel exists? */
5994   tid = ntohl (connect_msg->tunnel_id);
5995   t = tunnel_get_by_local_id (c, tid);
5996   if (NULL == t)
5997   {
5998     GNUNET_break (0);
5999     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
6000     return;
6001   }
6002
6003   /* Does client own tunnel? */
6004   if (t->owner->handle != client)
6005   {
6006     GNUNET_break (0);
6007     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
6008     return;
6009   }
6010
6011   /* Do WE have the service? */
6012   t->type = ntohl (connect_msg->type);
6013   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, " type requested: %u\n", t->type);
6014   GNUNET_CRYPTO_hash (&t->type, sizeof (GNUNET_MESH_ApplicationType), &hash);
6015   if (GNUNET_CONTAINER_multihashmap_contains (applications, &hash) ==
6016       GNUNET_YES)
6017   {
6018     /* Yes! Fast forward, add ourselves to the tunnel and send the
6019      * good news to the client, and alert the destination client of
6020      * an incoming tunnel.
6021      *
6022      * FIXME send a path create to self, avoid code duplication
6023      */
6024     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, " available locally\n");
6025     GNUNET_CONTAINER_multihashmap_put (t->peers, &my_full_id.hashPubKey,
6026                                        peer_info_get (&my_full_id),
6027                                        GNUNET_CONTAINER_MULTIHASHMAPOPTION_UNIQUE_FAST);
6028
6029     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, " notifying client\n");
6030     send_client_peer_connected (t, myid);
6031     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, " Done\n");
6032     GNUNET_SERVER_receive_done (client, GNUNET_OK);
6033
6034     t->local_tid_dest = next_local_tid++;
6035     GNUNET_CRYPTO_hash (&t->local_tid_dest, sizeof (MESH_TunnelNumber), &hash);
6036     GNUNET_CONTAINER_multihashmap_put (incoming_tunnels, &hash, t,
6037                                        GNUNET_CONTAINER_MULTIHASHMAPOPTION_UNIQUE_FAST);
6038
6039     return;
6040   }
6041   /* Ok, lets find a peer offering the service */
6042   if (NULL != t->dht_get_type)
6043   {
6044     GNUNET_DHT_get_stop (t->dht_get_type);
6045   }
6046   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, " looking in DHT for %s\n",
6047               GNUNET_h2s (&hash));
6048   t->dht_get_type =
6049       GNUNET_DHT_get_start (dht_handle, 
6050                             GNUNET_BLOCK_TYPE_MESH_PEER_BY_TYPE,
6051                             &hash,
6052                             dht_replication_level,
6053                             GNUNET_DHT_RO_RECORD_ROUTE |
6054                             GNUNET_DHT_RO_DEMULTIPLEX_EVERYWHERE,
6055                             NULL, 0,
6056                             &dht_get_type_handler, t);
6057
6058   GNUNET_SERVER_receive_done (client, GNUNET_OK);
6059   return;
6060 }
6061
6062
6063 /**
6064  * Handler for connection requests to new peers by a string service description.
6065  *
6066  * @param cls closure
6067  * @param client identification of the client
6068  * @param message the actual message, which includes messages the client wants
6069  */
6070 static void
6071 handle_local_connect_by_string (void *cls, struct GNUNET_SERVER_Client *client,
6072                                 const struct GNUNET_MessageHeader *message)
6073 {
6074   struct GNUNET_MESH_ConnectPeerByString *msg;
6075   struct MeshRegexSearchContext *ctx;
6076   struct MeshRegexSearchInfo *info;
6077   struct GNUNET_DHT_GetHandle *get_h;
6078   struct GNUNET_HashCode key;
6079   struct MeshTunnel *t;
6080   struct MeshClient *c;
6081   MESH_TunnelNumber tid;
6082   const char *string;
6083   size_t size;
6084   size_t len;
6085   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
6086               "Connect by string started\n");
6087   msg = (struct GNUNET_MESH_ConnectPeerByString *) message;
6088   size = htons (message->size);
6089
6090   /* Sanity check for client registration */
6091   if (NULL == (c = client_get (client)))
6092   {
6093     GNUNET_break (0);
6094     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
6095     return;
6096   }
6097
6098   /* Message size sanity check */
6099   if (sizeof(struct GNUNET_MESH_ConnectPeerByString) >= size)
6100   {
6101       GNUNET_break (0);
6102       GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
6103       return;
6104   }
6105
6106   /* Tunnel exists? */
6107   tid = ntohl (msg->tunnel_id);
6108   t = tunnel_get_by_local_id (c, tid);
6109   if (NULL == t)
6110   {
6111     GNUNET_break (0);
6112     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
6113     return;
6114   }
6115
6116   /* Does client own tunnel? */
6117   if (t->owner->handle != client)
6118   {
6119     GNUNET_break (0);
6120     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
6121     return;
6122   }
6123
6124   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
6125               "  on tunnel %s [%u]\n",
6126               GNUNET_i2s(&my_full_id),
6127               t->id.tid);
6128
6129   /* Only one connect_by_string allowed at the same time! */
6130   /* FIXME: allow more, return handle at api level to cancel, document */
6131   if (NULL != t->regex_ctx)
6132   {
6133     GNUNET_break (0);
6134     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
6135     return;
6136   }
6137
6138   /* Find string itself */
6139   len = size - sizeof(struct GNUNET_MESH_ConnectPeerByString);
6140   string = (const char *) &msg[1];
6141
6142   /* Initialize context */
6143   size = GNUNET_REGEX_get_first_key(string, len, &key);
6144   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
6145               "  consumed %u bits out of %u\n", size, len);
6146   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
6147               "  looking for %s\n", GNUNET_h2s (&key));
6148
6149   info = GNUNET_malloc (sizeof (struct MeshRegexSearchInfo));
6150   info->t = t;
6151   info->description = GNUNET_malloc (len + 1);
6152   memcpy (info->description, string, len);
6153   info->description[len] = '\0';
6154   info->dht_get_handles = GNUNET_CONTAINER_multihashmap_create(32);
6155   info->dht_get_results = GNUNET_CONTAINER_multihashmap_create(32);
6156   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "   string: %s\n", info->description);
6157
6158   ctx = GNUNET_malloc (sizeof (struct MeshRegexSearchContext));
6159   ctx->position = size;
6160   ctx->info = info;
6161   t->regex_ctx = ctx;
6162
6163   GNUNET_array_append (info->contexts, info->n_contexts, ctx);
6164
6165   /* Start search in DHT */
6166   get_h = GNUNET_DHT_get_start (dht_handle,    /* handle */
6167                                 GNUNET_BLOCK_TYPE_MESH_REGEX, /* type */
6168                                 &key,     /* key to search */
6169                                 dht_replication_level, /* replication level */
6170                                 GNUNET_DHT_RO_DEMULTIPLEX_EVERYWHERE,
6171                                 NULL,       /* xquery */ // FIXME BLOOMFILTER
6172                                 0,     /* xquery bits */ // FIXME BLOOMFILTER SIZE
6173                                 &dht_get_string_handler, ctx);
6174
6175   GNUNET_break (GNUNET_OK ==
6176                 GNUNET_CONTAINER_multihashmap_put(info->dht_get_handles,
6177                                                   &key,
6178                                                   get_h,
6179                                                   GNUNET_CONTAINER_MULTIHASHMAPOPTION_UNIQUE_FAST));
6180
6181   GNUNET_SERVER_receive_done (client, GNUNET_OK);
6182   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "connect by string processed\n");
6183 }
6184
6185
6186 /**
6187  * Handler for client traffic directed to one peer
6188  *
6189  * @param cls closure
6190  * @param client identification of the client
6191  * @param message the actual message
6192  */
6193 static void
6194 handle_local_unicast (void *cls, struct GNUNET_SERVER_Client *client,
6195                       const struct GNUNET_MessageHeader *message)
6196 {
6197   struct MeshClient *c;
6198   struct MeshTunnel *t;
6199   struct MeshPeerInfo *pi;
6200   struct GNUNET_MESH_Unicast *data_msg;
6201   MESH_TunnelNumber tid;
6202   size_t size;
6203
6204   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
6205               "Got a unicast request from a client!\n");
6206
6207   /* Sanity check for client registration */
6208   if (NULL == (c = client_get (client)))
6209   {
6210     GNUNET_break (0);
6211     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
6212     return;
6213   }
6214   data_msg = (struct GNUNET_MESH_Unicast *) message;
6215   /* Sanity check for message size */
6216   size = ntohs (message->size);
6217   if (sizeof (struct GNUNET_MESH_Unicast) +
6218       sizeof (struct GNUNET_MessageHeader) > size)
6219   {
6220     GNUNET_break (0);
6221     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
6222     return;
6223   }
6224
6225   /* Tunnel exists? */
6226   tid = ntohl (data_msg->tid);
6227   t = tunnel_get_by_local_id (c, tid);
6228   if (NULL == t)
6229   {
6230     GNUNET_break (0);
6231     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
6232     return;
6233   }
6234
6235   /*  Is it a local tunnel? Then, does client own the tunnel? */
6236   if (t->owner->handle != client)
6237   {
6238     GNUNET_break (0);
6239     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
6240     return;
6241   }
6242
6243   pi = GNUNET_CONTAINER_multihashmap_get (t->peers,
6244                                           &data_msg->destination.hashPubKey);
6245   /* Is the selected peer in the tunnel? */
6246   if (NULL == pi)
6247   {
6248     GNUNET_break (0);
6249     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
6250     return;
6251   }
6252
6253   /* Ok, everything is correct, send the message
6254    * (pretend we got it from a mesh peer)
6255    */
6256   {
6257     char buf[ntohs (message->size)] GNUNET_ALIGN;
6258     struct GNUNET_MESH_Unicast *copy;
6259
6260     /* Work around const limitation */
6261     copy = (struct GNUNET_MESH_Unicast *) buf;
6262     memcpy (buf, data_msg, size);
6263     copy->oid = my_full_id;
6264     copy->tid = htonl (t->id.tid);
6265     copy->ttl = htonl (default_ttl);
6266     copy->pid = htonl (t->pid + 1);
6267     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
6268                 "  calling generic handler...\n");
6269     handle_mesh_data_unicast (NULL, &my_full_id, &copy->header, NULL, 0);
6270   }
6271   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "receive done OK\n");
6272   GNUNET_SERVER_receive_done (client, GNUNET_OK);
6273   return;
6274 }
6275
6276
6277 /**
6278  * Handler for client traffic directed to the origin
6279  *
6280  * @param cls closure
6281  * @param client identification of the client
6282  * @param message the actual message
6283  */
6284 static void
6285 handle_local_to_origin (void *cls, struct GNUNET_SERVER_Client *client,
6286                         const struct GNUNET_MessageHeader *message)
6287 {
6288   struct GNUNET_MESH_ToOrigin *data_msg;
6289   struct GNUNET_PeerIdentity id;
6290   struct MeshClient *c;
6291   struct MeshTunnel *t;
6292   MESH_TunnelNumber tid;
6293   size_t size;
6294
6295   /* Sanity check for client registration */
6296   if (NULL == (c = client_get (client)))
6297   {
6298     GNUNET_break (0);
6299     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
6300     return;
6301   }
6302   data_msg = (struct GNUNET_MESH_ToOrigin *) message;
6303   /* Sanity check for message size */
6304   size = ntohs (message->size);
6305   if (sizeof (struct GNUNET_MESH_ToOrigin) +
6306       sizeof (struct GNUNET_MessageHeader) > size)
6307   {
6308     GNUNET_break (0);
6309     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
6310     return;
6311   }
6312
6313   /* Tunnel exists? */
6314   tid = ntohl (data_msg->tid);
6315   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
6316               "Got a ToOrigin request from a client! Tunnel %X\n", tid);
6317   if (tid < GNUNET_MESH_LOCAL_TUNNEL_ID_SERV)
6318   {
6319     GNUNET_break (0);
6320     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
6321     return;
6322   }
6323   t = tunnel_get_by_local_id (c, tid);
6324   if (NULL == t)
6325   {
6326     GNUNET_break (0);
6327     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
6328     return;
6329   }
6330
6331   /*  It should be sent by someone who has this as incoming tunnel. */
6332   if (-1 == client_knows_tunnel (c, t))
6333   {
6334     GNUNET_break (0);
6335     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
6336     return;
6337   }
6338   GNUNET_PEER_resolve (t->id.oid, &id);
6339
6340   /* Ok, everything is correct, send the message
6341    * (pretend we got it from a mesh peer)
6342    */
6343   {
6344     char buf[ntohs (message->size)] GNUNET_ALIGN;
6345     struct GNUNET_MESH_ToOrigin *copy;
6346
6347     /* Work around const limitation */
6348     copy = (struct GNUNET_MESH_ToOrigin *) buf;
6349     memcpy (buf, data_msg, size);
6350     copy->oid = id;
6351     copy->tid = htonl (t->id.tid);
6352     copy->sender = my_full_id;
6353     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
6354                 "  calling generic handler...\n");
6355     handle_mesh_data_to_orig (NULL, &my_full_id, &copy->header, NULL, 0);
6356   }
6357   GNUNET_SERVER_receive_done (client, GNUNET_OK);
6358   return;
6359 }
6360
6361
6362 /**
6363  * Handler for client traffic directed to all peers in a tunnel
6364  *
6365  * @param cls closure
6366  * @param client identification of the client
6367  * @param message the actual message
6368  */
6369 static void
6370 handle_local_multicast (void *cls, struct GNUNET_SERVER_Client *client,
6371                         const struct GNUNET_MessageHeader *message)
6372 {
6373   struct MeshClient *c;
6374   struct MeshTunnel *t;
6375   struct GNUNET_MESH_Multicast *data_msg;
6376   MESH_TunnelNumber tid;
6377
6378   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
6379               "Got a multicast request from a client!\n");
6380
6381   /* Sanity check for client registration */
6382   if (NULL == (c = client_get (client)))
6383   {
6384     GNUNET_break (0);
6385     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
6386     return;
6387   }
6388   data_msg = (struct GNUNET_MESH_Multicast *) message;
6389   /* Sanity check for message size */
6390   if (sizeof (struct GNUNET_MESH_Multicast) +
6391       sizeof (struct GNUNET_MessageHeader) > ntohs (data_msg->header.size))
6392   {
6393     GNUNET_break (0);
6394     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
6395     return;
6396   }
6397
6398   /* Tunnel exists? */
6399   tid = ntohl (data_msg->tid);
6400   t = tunnel_get_by_local_id (c, tid);
6401   if (NULL == t)
6402   {
6403     GNUNET_break (0);
6404     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
6405     return;
6406   }
6407
6408   /* Does client own tunnel? */
6409   if (t->owner->handle != client)
6410   {
6411     GNUNET_break (0);
6412     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
6413     return;
6414   }
6415
6416   {
6417     char buf[ntohs (message->size)] GNUNET_ALIGN;
6418     struct GNUNET_MESH_Multicast *copy;
6419
6420     copy = (struct GNUNET_MESH_Multicast *) buf;
6421     memcpy (buf, message, ntohs (message->size));
6422     copy->oid = my_full_id;
6423     copy->tid = htonl (t->id.tid);
6424     copy->ttl = htonl (default_ttl);
6425     copy->pid = htonl (t->pid + 1);
6426     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
6427                 "  calling generic handler...\n");
6428     handle_mesh_data_multicast (client, &my_full_id, &copy->header, NULL, 0);
6429   }
6430
6431   /* receive done gets called when last copy is sent to a neighbor */
6432   return;
6433 }
6434
6435
6436 /**
6437  * Functions to handle messages from clients
6438  */
6439 static struct GNUNET_SERVER_MessageHandler client_handlers[] = {
6440   {&handle_local_new_client, NULL,
6441    GNUNET_MESSAGE_TYPE_MESH_LOCAL_CONNECT, 0},
6442   {&handle_local_announce_regex, NULL,
6443    GNUNET_MESSAGE_TYPE_MESH_LOCAL_ANNOUNCE_REGEX, 0},
6444   {&handle_local_tunnel_create, NULL,
6445    GNUNET_MESSAGE_TYPE_MESH_LOCAL_TUNNEL_CREATE,
6446    sizeof (struct GNUNET_MESH_TunnelMessage)},
6447   {&handle_local_tunnel_destroy, NULL,
6448    GNUNET_MESSAGE_TYPE_MESH_LOCAL_TUNNEL_DESTROY,
6449    sizeof (struct GNUNET_MESH_TunnelMessage)},
6450   {&handle_local_tunnel_speed, NULL,
6451    GNUNET_MESSAGE_TYPE_MESH_LOCAL_TUNNEL_MIN,
6452    sizeof (struct GNUNET_MESH_TunnelMessage)},
6453   {&handle_local_tunnel_speed, NULL,
6454    GNUNET_MESSAGE_TYPE_MESH_LOCAL_TUNNEL_MAX,
6455    sizeof (struct GNUNET_MESH_TunnelMessage)},
6456   {&handle_local_tunnel_buffer, NULL,
6457    GNUNET_MESSAGE_TYPE_MESH_LOCAL_TUNNEL_BUFFER,
6458    sizeof (struct GNUNET_MESH_TunnelMessage)},
6459   {&handle_local_tunnel_buffer, NULL,
6460    GNUNET_MESSAGE_TYPE_MESH_LOCAL_TUNNEL_NOBUFFER,
6461    sizeof (struct GNUNET_MESH_TunnelMessage)},
6462   {&handle_local_connect_add, NULL,
6463    GNUNET_MESSAGE_TYPE_MESH_LOCAL_PEER_ADD,
6464    sizeof (struct GNUNET_MESH_PeerControl)},
6465   {&handle_local_connect_del, NULL,
6466    GNUNET_MESSAGE_TYPE_MESH_LOCAL_PEER_DEL,
6467    sizeof (struct GNUNET_MESH_PeerControl)},
6468   {&handle_local_blacklist, NULL,
6469    GNUNET_MESSAGE_TYPE_MESH_LOCAL_PEER_BLACKLIST,
6470    sizeof (struct GNUNET_MESH_PeerControl)},
6471   {&handle_local_unblacklist, NULL,
6472    GNUNET_MESSAGE_TYPE_MESH_LOCAL_PEER_UNBLACKLIST,
6473    sizeof (struct GNUNET_MESH_PeerControl)},
6474   {&handle_local_connect_by_type, NULL,
6475    GNUNET_MESSAGE_TYPE_MESH_LOCAL_PEER_ADD_BY_TYPE,
6476    sizeof (struct GNUNET_MESH_ConnectPeerByType)},
6477   {&handle_local_connect_by_string, NULL,
6478    GNUNET_MESSAGE_TYPE_MESH_LOCAL_PEER_ADD_BY_STRING, 0},
6479   {&handle_local_unicast, NULL,
6480    GNUNET_MESSAGE_TYPE_MESH_UNICAST, 0},
6481   {&handle_local_to_origin, NULL,
6482    GNUNET_MESSAGE_TYPE_MESH_TO_ORIGIN, 0},
6483   {&handle_local_multicast, NULL,
6484    GNUNET_MESSAGE_TYPE_MESH_MULTICAST, 0},
6485   {NULL, NULL, 0, 0}
6486 };
6487
6488
6489 /**
6490  * To be called on core init/fail.
6491  *
6492  * @param cls service closure
6493  * @param server handle to the server for this service
6494  * @param identity the public identity of this peer
6495  */
6496 static void
6497 core_init (void *cls, struct GNUNET_CORE_Handle *server,
6498            const struct GNUNET_PeerIdentity *identity)
6499 {
6500   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Core init\n");
6501   core_handle = server;
6502   if (0 != memcmp (identity, &my_full_id, sizeof (my_full_id)) ||
6503       NULL == server)
6504   {
6505     GNUNET_log (GNUNET_ERROR_TYPE_ERROR, _("Wrong CORE service\n"));
6506     GNUNET_SCHEDULER_shutdown ();
6507   }
6508   return;
6509 }
6510
6511
6512 /**
6513  * Method called whenever a given peer connects.
6514  *
6515  * @param cls closure
6516  * @param peer peer identity this notification is about
6517  * @param atsi performance data for the connection
6518  * @param atsi_count number of records in 'atsi'
6519  */
6520 static void
6521 core_connect (void *cls, const struct GNUNET_PeerIdentity *peer,
6522               const struct GNUNET_ATS_Information *atsi,
6523               unsigned int atsi_count)
6524 {
6525   struct MeshPeerInfo *peer_info;
6526   struct MeshPeerPath *path;
6527
6528   DEBUG_CONN ("Peer connected\n");
6529   DEBUG_CONN ("     %s\n", GNUNET_i2s (&my_full_id));
6530   peer_info = peer_info_get (peer);
6531   if (myid == peer_info->id)
6532   {
6533     DEBUG_CONN ("     (self)\n");
6534     return;
6535   }
6536   else
6537   {
6538     DEBUG_CONN ("     %s\n", GNUNET_i2s (peer));
6539   }
6540   path = path_new (2);
6541   path->peers[0] = myid;
6542   path->peers[1] = peer_info->id;
6543   GNUNET_PEER_change_rc (myid, 1);
6544   GNUNET_PEER_change_rc (peer_info->id, 1);
6545   peer_info_add_path (peer_info, path, GNUNET_YES);
6546   GNUNET_STATISTICS_update (stats, "# peers", 1, GNUNET_NO);
6547   return;
6548 }
6549
6550
6551 /**
6552  * Method called whenever a peer disconnects.
6553  *
6554  * @param cls closure
6555  * @param peer peer identity this notification is about
6556  */
6557 static void
6558 core_disconnect (void *cls, const struct GNUNET_PeerIdentity *peer)
6559 {
6560   struct MeshPeerInfo *pi;
6561   struct MeshPeerQueue *q;
6562   struct MeshPeerQueue *n;
6563
6564   DEBUG_CONN ("Peer disconnected\n");
6565   pi = GNUNET_CONTAINER_multihashmap_get (peers, &peer->hashPubKey);
6566   if (NULL == pi)
6567   {
6568     GNUNET_break (0);
6569     return;
6570   }
6571   q = pi->queue_head;
6572   while (NULL != q)
6573   {
6574       n = q->next;
6575       if (q->peer == pi)
6576       {
6577         /* try to reroute this traffic instead */
6578         queue_destroy(q, GNUNET_YES);
6579       }
6580       q = n;
6581   }
6582   peer_info_remove_path (pi, pi->id, myid);
6583   if (myid == pi->id)
6584   {
6585     DEBUG_CONN ("     (self)\n");
6586   }
6587   GNUNET_STATISTICS_update (stats, "# peers", -1, GNUNET_NO);
6588   return;
6589 }
6590
6591
6592 /******************************************************************************/
6593 /************************      MAIN FUNCTIONS      ****************************/
6594 /******************************************************************************/
6595
6596 /**
6597  * Iterator over tunnel hash map entries to destroy the tunnel during shutdown.
6598  *
6599  * @param cls closure
6600  * @param key current key code
6601  * @param value value in the hash map
6602  * @return GNUNET_YES if we should continue to iterate,
6603  *         GNUNET_NO if not.
6604  */
6605 static int
6606 shutdown_tunnel (void *cls, const struct GNUNET_HashCode * key, void *value)
6607 {
6608   struct MeshTunnel *t = value;
6609
6610   tunnel_destroy (t);
6611   return GNUNET_YES;
6612 }
6613
6614 /**
6615  * Iterator over peer hash map entries to destroy the tunnel during shutdown.
6616  *
6617  * @param cls closure
6618  * @param key current key code
6619  * @param value value in the hash map
6620  * @return GNUNET_YES if we should continue to iterate,
6621  *         GNUNET_NO if not.
6622  */
6623 static int
6624 shutdown_peer (void *cls, const struct GNUNET_HashCode * key, void *value)
6625 {
6626   struct MeshPeerInfo *p = value;
6627   struct MeshPeerQueue *q;
6628   struct MeshPeerQueue *n;
6629
6630   q = p->queue_head;
6631   while (NULL != q)
6632   {
6633       n = q->next;
6634       if (q->peer == p)
6635       {
6636         queue_destroy(q, GNUNET_YES);
6637       }
6638       q = n;
6639   }
6640   peer_info_destroy (p);
6641   return GNUNET_YES;
6642 }
6643
6644 /**
6645  * Task run during shutdown.
6646  *
6647  * @param cls unused
6648  * @param tc unused
6649  */
6650 static void
6651 shutdown_task (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
6652 {
6653   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "shutting down\n");
6654
6655   if (core_handle != NULL)
6656   {
6657     GNUNET_CORE_disconnect (core_handle);
6658     core_handle = NULL;
6659   }
6660   GNUNET_CONTAINER_multihashmap_iterate (tunnels, &shutdown_tunnel, NULL);
6661   GNUNET_CONTAINER_multihashmap_iterate (peers, &shutdown_peer, NULL);
6662   if (dht_handle != NULL)
6663   {
6664     GNUNET_DHT_disconnect (dht_handle);
6665     dht_handle = NULL;
6666   }
6667   if (nc != NULL)
6668   {
6669     GNUNET_SERVER_notification_context_destroy (nc);
6670     nc = NULL;
6671   }
6672   if (GNUNET_SCHEDULER_NO_TASK != announce_id_task)
6673   {
6674     GNUNET_SCHEDULER_cancel (announce_id_task);
6675     announce_id_task = GNUNET_SCHEDULER_NO_TASK;
6676   }
6677   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "shut down\n");
6678 }
6679
6680 /**
6681  * Process mesh requests.
6682  *
6683  * @param cls closure
6684  * @param server the initialized server
6685  * @param c configuration to use
6686  */
6687 static void
6688 run (void *cls, struct GNUNET_SERVER_Handle *server,
6689      const struct GNUNET_CONFIGURATION_Handle *c)
6690 {
6691   struct MeshPeerInfo *peer;
6692   struct MeshPeerPath *p;
6693   char *keyfile;
6694
6695   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "starting to run\n");
6696   server_handle = server;
6697   core_handle = GNUNET_CORE_connect (c, /* Main configuration */
6698                                      NULL,      /* Closure passed to MESH functions */
6699                                      &core_init,        /* Call core_init once connected */
6700                                      &core_connect,     /* Handle connects */
6701                                      &core_disconnect,  /* remove peers on disconnects */
6702                                      NULL,      /* Don't notify about all incoming messages */
6703                                      GNUNET_NO, /* For header only in notification */
6704                                      NULL,      /* Don't notify about all outbound messages */
6705                                      GNUNET_NO, /* For header-only out notification */
6706                                      core_handlers);    /* Register these handlers */
6707
6708   if (core_handle == NULL)
6709   {
6710     GNUNET_break (0);
6711     GNUNET_SCHEDULER_shutdown ();
6712     return;
6713   }
6714
6715   if (GNUNET_OK !=
6716       GNUNET_CONFIGURATION_get_value_filename (c, "GNUNETD", "HOSTKEY",
6717                                                &keyfile))
6718   {
6719     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
6720                 _
6721                 ("Mesh service is lacking key configuration settings (%s).  Exiting.\n"),
6722                 "hostkey");
6723     GNUNET_SCHEDULER_shutdown ();
6724     return;
6725   }
6726
6727   if (GNUNET_OK !=
6728       GNUNET_CONFIGURATION_get_value_time (c, "MESH", "REFRESH_PATH_TIME",
6729                                            &refresh_path_time))
6730   {
6731     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
6732                 _
6733                 ("Mesh service is lacking key configuration settings (%s).  Exiting.\n"),
6734                 "refresh path time");
6735     GNUNET_SCHEDULER_shutdown ();
6736     return;
6737   }
6738
6739   if (GNUNET_OK !=
6740       GNUNET_CONFIGURATION_get_value_time (c, "MESH", "APP_ANNOUNCE_TIME",
6741                                            &app_announce_time))
6742   {
6743     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
6744                 _
6745                 ("Mesh service is lacking key configuration settings (%s).  Exiting.\n"),
6746                 "app announce time");
6747     GNUNET_SCHEDULER_shutdown ();
6748     return;
6749   }
6750
6751   if (GNUNET_OK !=
6752       GNUNET_CONFIGURATION_get_value_time (c, "MESH", "ID_ANNOUNCE_TIME",
6753                                            &id_announce_time))
6754   {
6755     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
6756                 _
6757                 ("Mesh service is lacking key configuration settings (%s).  Exiting.\n"),
6758                 "id announce time");
6759     GNUNET_SCHEDULER_shutdown ();
6760     return;
6761   }
6762
6763   if (GNUNET_OK !=
6764       GNUNET_CONFIGURATION_get_value_time (c, "MESH", "UNACKNOWLEDGED_WAIT",
6765                                            &unacknowledged_wait_time))
6766   {
6767     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
6768                 _
6769                 ("Mesh service is lacking key configuration settings (%s).  Exiting.\n"),
6770                 "unacknowledged wait time");
6771     GNUNET_SCHEDULER_shutdown ();
6772     return;
6773   }
6774
6775   if (GNUNET_OK !=
6776       GNUNET_CONFIGURATION_get_value_time (c, "MESH", "CONNECT_TIMEOUT",
6777                                            &connect_timeout))
6778   {
6779     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
6780                 _
6781                 ("Mesh service is lacking key configuration settings (%s).  Exiting.\n"),
6782                 "connect timeout");
6783     GNUNET_SCHEDULER_shutdown ();
6784     return;
6785   }
6786
6787   if (GNUNET_OK !=
6788       GNUNET_CONFIGURATION_get_value_number (c, "MESH", "MAX_MSGS_QUEUE",
6789                                              &max_msgs_queue))
6790   {
6791     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
6792                 _
6793                 ("Mesh service is lacking key configuration settings (%s).  Exiting.\n"),
6794                 "max msgs queue");
6795     GNUNET_SCHEDULER_shutdown ();
6796     return;
6797   }
6798
6799   if (GNUNET_OK !=
6800       GNUNET_CONFIGURATION_get_value_number (c, "MESH", "MAX_TUNNELS",
6801                                              &max_tunnels))
6802   {
6803     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
6804                 _
6805                 ("Mesh service is lacking key configuration settings (%s).  Exiting.\n"),
6806                 "max tunnels");
6807     GNUNET_SCHEDULER_shutdown ();
6808     return;
6809   }
6810
6811   if (GNUNET_OK !=
6812       GNUNET_CONFIGURATION_get_value_number (c, "MESH", "DEFAULT_TTL",
6813                                              &default_ttl))
6814   {
6815     GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
6816                 _
6817                 ("Mesh service is lacking key configuration settings (%s). Using default (%u).\n"),
6818                 "default ttl", 64);
6819     default_ttl = 64;
6820   }
6821
6822   if (GNUNET_OK !=
6823       GNUNET_CONFIGURATION_get_value_number (c, "MESH", "DHT_REPLICATION_LEVEL",
6824                                              &dht_replication_level))
6825   {
6826     GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
6827                 _
6828                 ("Mesh service is lacking key configuration settings (%s). Using default (%u).\n"),
6829                 "dht replication level", 10);
6830     dht_replication_level = 10;
6831   }
6832
6833   
6834   my_private_key = GNUNET_CRYPTO_rsa_key_create_from_file (keyfile);
6835   GNUNET_free (keyfile);
6836   if (my_private_key == NULL)
6837   {
6838     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
6839                 _("Mesh service could not access hostkey.  Exiting.\n"));
6840     GNUNET_SCHEDULER_shutdown ();
6841     return;
6842   }
6843   GNUNET_CRYPTO_rsa_key_get_public (my_private_key, &my_public_key);
6844   GNUNET_CRYPTO_hash (&my_public_key, sizeof (my_public_key),
6845                       &my_full_id.hashPubKey);
6846   myid = GNUNET_PEER_intern (&my_full_id);
6847
6848 //   transport_handle = GNUNET_TRANSPORT_connect(c,
6849 //                                               &my_full_id,
6850 //                                               NULL,
6851 //                                               NULL,
6852 //                                               NULL,
6853 //                                               NULL);
6854
6855   dht_handle = GNUNET_DHT_connect (c, 64);
6856   if (dht_handle == NULL)
6857   {
6858     GNUNET_break (0);
6859   }
6860
6861   stats = GNUNET_STATISTICS_create ("mesh", c);
6862
6863
6864   next_tid = 0;
6865   next_local_tid = GNUNET_MESH_LOCAL_TUNNEL_ID_SERV;
6866
6867   tunnels = GNUNET_CONTAINER_multihashmap_create (32);
6868   incoming_tunnels = GNUNET_CONTAINER_multihashmap_create (32);
6869   peers = GNUNET_CONTAINER_multihashmap_create (32);
6870   applications = GNUNET_CONTAINER_multihashmap_create (32);
6871   types = GNUNET_CONTAINER_multihashmap_create (32);
6872
6873   GNUNET_SERVER_add_handlers (server_handle, client_handlers);
6874   nc = GNUNET_SERVER_notification_context_create (server_handle,
6875                                                   LOCAL_QUEUE_SIZE);
6876   GNUNET_SERVER_disconnect_notify (server_handle,
6877                                    &handle_local_client_disconnect, NULL);
6878
6879
6880   clients = NULL;
6881   clients_tail = NULL;
6882   next_client_id = 0;
6883
6884   announce_applications_task = GNUNET_SCHEDULER_NO_TASK;
6885   announce_id_task = GNUNET_SCHEDULER_add_now (&announce_id, cls);
6886
6887   /* Create a peer_info for the local peer */
6888   peer = peer_info_get (&my_full_id);
6889   p = path_new (1);
6890   p->peers[0] = myid;
6891   GNUNET_PEER_change_rc (myid, 1);
6892   peer_info_add_path (peer, p, GNUNET_YES);
6893
6894   /* Scheduled the task to clean up when shutdown is called */
6895   GNUNET_SCHEDULER_add_delayed (GNUNET_TIME_UNIT_FOREVER_REL, &shutdown_task,
6896                                 NULL);
6897
6898   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "end of run()\n");
6899 }
6900
6901 /**
6902  * The main function for the mesh service.
6903  *
6904  * @param argc number of arguments from the command line
6905  * @param argv command line arguments
6906  * @return 0 ok, 1 on error
6907  */
6908 int
6909 main (int argc, char *const *argv)
6910 {
6911   int ret;
6912
6913   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "main()\n");
6914   ret =
6915       (GNUNET_OK ==
6916        GNUNET_SERVICE_run (argc, argv, "mesh", GNUNET_SERVICE_OPTION_NONE, &run,
6917                            NULL)) ? 0 : 1;
6918   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "main() END\n");
6919
6920   return ret;
6921 }