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