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