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