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