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