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