-chaning multihashmap API to allow option for avoiding key allocation
[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   unsigned int c;
3196   unsigned int i;
3197
3198   for (c = 0; c < cinfo->send_buffer_n; c++)
3199   {
3200     i = (cinfo->send_buffer_start + c) % t->fwd_queue_max;
3201     if (NULL != cinfo->send_buffer[i])
3202       queue_destroy (cinfo->send_buffer[i], GNUNET_YES);
3203     else
3204       GNUNET_break (0);
3205     GNUNET_log (GNUNET_ERROR_TYPE_INFO, "%u %u\n", c, cinfo->send_buffer_n);
3206   }
3207   GNUNET_free_non_null (cinfo->send_buffer);
3208   GNUNET_free (cinfo);
3209   return GNUNET_YES;
3210 }
3211
3212
3213 /**
3214  * Callback used to notify a client owner of a tunnel that a peer has
3215  * disconnected, most likely because of a path change.
3216  *
3217  * @param cls Closure (tunnel this notification is about).
3218  * @param peer_id Short ID of disconnected peer.
3219  */
3220 void
3221 tunnel_notify_client_peer_disconnected (void *cls, GNUNET_PEER_Id peer_id)
3222 {
3223   struct MeshTunnel *t = cls;
3224   struct MeshPeerInfo *peer;
3225   struct MeshPathInfo *path_info;
3226
3227   if (NULL != t->owner && NULL != nc)
3228   {
3229     struct GNUNET_MESH_PeerControl msg;
3230
3231     msg.header.size = htons (sizeof (msg));
3232     msg.header.type = htons (GNUNET_MESSAGE_TYPE_MESH_LOCAL_PEER_DEL);
3233     msg.tunnel_id = htonl (t->local_tid);
3234     GNUNET_PEER_resolve (peer_id, &msg.peer);
3235     GNUNET_SERVER_notification_context_unicast (nc, t->owner->handle,
3236                                                 &msg.header, GNUNET_NO);
3237   }
3238   peer = peer_info_get_short (peer_id);
3239   path_info = GNUNET_malloc (sizeof (struct MeshPathInfo));
3240   path_info->peer = peer;
3241   path_info->t = t;
3242   GNUNET_SCHEDULER_add_now (&peer_info_connect_task, path_info);
3243 }
3244
3245
3246 /**
3247  * Add a peer to a tunnel, accomodating paths accordingly and initializing all
3248  * needed rescources.
3249  * If peer already exists, reevaluate shortest path and change if different.
3250  *
3251  * @param t Tunnel we want to add a new peer to
3252  * @param peer PeerInfo of the peer being added
3253  *
3254  */
3255 static void
3256 tunnel_add_peer (struct MeshTunnel *t, struct MeshPeerInfo *peer)
3257 {
3258   struct GNUNET_PeerIdentity id;
3259   struct MeshPeerPath *best_p;
3260   struct MeshPeerPath *p;
3261   unsigned int best_cost;
3262   unsigned int cost;
3263
3264   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "tunnel_add_peer\n");
3265   GNUNET_PEER_resolve (peer->id, &id);
3266   if (GNUNET_NO ==
3267       GNUNET_CONTAINER_multihashmap_contains (t->peers, &id.hashPubKey))
3268   {
3269     t->peers_total++;
3270     GNUNET_array_append (peer->tunnels, peer->ntunnels, t);
3271     GNUNET_assert (GNUNET_OK ==
3272                    GNUNET_CONTAINER_multihashmap_put (t->peers, &id.hashPubKey,
3273                                                       peer,
3274                                                       GNUNET_CONTAINER_MULTIHASHMAPOPTION_UNIQUE_FAST));
3275   }
3276
3277   if (NULL != (p = peer->path_head))
3278   {
3279     best_p = p;
3280     best_cost = tree_get_path_cost (t->tree, p);
3281     while (NULL != p)
3282     {
3283       if ((cost = tree_get_path_cost (t->tree, p)) < best_cost)
3284       {
3285         best_cost = cost;
3286         best_p = p;
3287       }
3288       p = p->next;
3289     }
3290     tree_add_path (t->tree, best_p, &tunnel_notify_client_peer_disconnected, t);
3291     if (GNUNET_SCHEDULER_NO_TASK == t->path_refresh_task)
3292       t->path_refresh_task =
3293           GNUNET_SCHEDULER_add_delayed (refresh_path_time, &path_refresh, t);
3294   }
3295   else
3296   {
3297     /* Start a DHT get */
3298     peer_info_connect (peer, t);
3299   }
3300   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "tunnel_add_peer END\n");
3301 }
3302
3303 /**
3304  * Add a path to a tunnel which we don't own, just to remember the next hop.
3305  * If destination node was already in the tunnel, the first hop information
3306  * will be replaced with the new path.
3307  *
3308  * @param t Tunnel we want to add a new peer to
3309  * @param p Path to add
3310  * @param own_pos Position of local node in path.
3311  *
3312  */
3313 static void
3314 tunnel_add_path (struct MeshTunnel *t, struct MeshPeerPath *p,
3315                  unsigned int own_pos)
3316 {
3317   struct GNUNET_PeerIdentity id;
3318
3319   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "tunnel_add_path\n");
3320   GNUNET_assert (0 != own_pos);
3321   tree_add_path (t->tree, p, NULL, NULL);
3322   if (own_pos < p->length - 1)
3323   {
3324     GNUNET_PEER_resolve (p->peers[own_pos + 1], &id);
3325     tree_update_first_hops (t->tree, myid, &id);
3326   }
3327   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "tunnel_add_path END\n");
3328 }
3329
3330 /**
3331  * Add a client to a tunnel, initializing all needed data structures.
3332  * 
3333  * @param t Tunnel to which add the client.
3334  * @param c Client which to add to the tunnel.
3335  */
3336 static void
3337 tunnel_add_client (struct MeshTunnel *t, struct MeshClient *c)
3338 {
3339   struct MeshTunnelClientInfo clinfo;
3340
3341   GNUNET_array_append (t->clients, t->nclients, c);
3342   clinfo.fwd_ack = t->fwd_pid + 1;
3343   clinfo.bck_ack = t->nobuffer ? 1 : INITIAL_WINDOW_SIZE - 1;
3344   clinfo.fwd_pid = t->fwd_pid;
3345   clinfo.bck_pid = (uint32_t) -1; // Expected next: 0
3346   t->nclients--;
3347   GNUNET_array_append (t->clients_fc, t->nclients, clinfo);
3348 }
3349
3350
3351 /**
3352  * Notifies a tunnel that a connection has broken that affects at least
3353  * some of its peers. Sends a notification towards the root of the tree.
3354  * In case the peer is the owner of the tree, notifies the client that owns
3355  * the tunnel and tries to reconnect.
3356  *
3357  * @param t Tunnel affected.
3358  * @param p1 Peer that got disconnected from p2.
3359  * @param p2 Peer that got disconnected from p1.
3360  *
3361  * @return Short ID of the peer disconnected (either p1 or p2).
3362  *         0 if the tunnel remained unaffected.
3363  */
3364 static GNUNET_PEER_Id
3365 tunnel_notify_connection_broken (struct MeshTunnel *t, GNUNET_PEER_Id p1,
3366                                  GNUNET_PEER_Id p2)
3367 {
3368   GNUNET_PEER_Id pid;
3369
3370   pid =
3371       tree_notify_connection_broken (t->tree, p1, p2,
3372                                      &tunnel_notify_client_peer_disconnected,
3373                                      t);
3374   if (myid != p1 && myid != p2)
3375   {
3376     return pid;
3377   }
3378   if (pid != myid)
3379   {
3380     if (tree_get_predecessor (t->tree) != 0)
3381     {
3382       /* We are the peer still connected, notify owner of the disconnection. */
3383       struct GNUNET_MESH_PathBroken msg;
3384       struct GNUNET_PeerIdentity neighbor;
3385
3386       msg.header.size = htons (sizeof (msg));
3387       msg.header.type = htons (GNUNET_MESSAGE_TYPE_MESH_PATH_BROKEN);
3388       GNUNET_PEER_resolve (t->id.oid, &msg.oid);
3389       msg.tid = htonl (t->id.tid);
3390       msg.peer1 = my_full_id;
3391       GNUNET_PEER_resolve (pid, &msg.peer2);
3392       GNUNET_PEER_resolve (tree_get_predecessor (t->tree), &neighbor);
3393       send_prebuilt_message (&msg.header, &neighbor, t);
3394     }
3395   }
3396   return pid;
3397 }
3398
3399
3400 /**
3401  * Send a multicast packet to a neighbor.
3402  *
3403  * @param cls Closure (Info about the multicast packet)
3404  * @param neighbor_id Short ID of the neighbor to send the packet to.
3405  */
3406 static void
3407 tunnel_send_multicast_iterator (void *cls, GNUNET_PEER_Id neighbor_id)
3408 {
3409   struct MeshData *mdata = cls;
3410   struct MeshTransmissionDescriptor *info;
3411   struct GNUNET_PeerIdentity neighbor;
3412   struct GNUNET_MessageHeader *msg;
3413
3414   info = GNUNET_malloc (sizeof (struct MeshTransmissionDescriptor));
3415
3416   info->mesh_data = mdata;
3417   (mdata->reference_counter) ++;
3418   info->destination = neighbor_id;
3419   GNUNET_PEER_resolve (neighbor_id, &neighbor);
3420   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "   sending to %s...\n",
3421               GNUNET_i2s (&neighbor));
3422   info->peer = peer_info_get (&neighbor);
3423   GNUNET_assert (NULL != info->peer);
3424   msg = (struct GNUNET_MessageHeader *) mdata->data;
3425   queue_add(info,
3426             ntohs (msg->type),
3427             info->mesh_data->data_len,
3428             info->peer,
3429             mdata->t);
3430 }
3431
3432
3433 /**
3434  * Queue a message in a tunnel in multicast, sending a copy to each child node
3435  * down the local one in the tunnel tree.
3436  *
3437  * @param t Tunnel in which to send the data.
3438  * @param msg Message to be sent.
3439  */
3440 static void
3441 tunnel_send_multicast (struct MeshTunnel *t,
3442                        const struct GNUNET_MessageHeader *msg)
3443 {
3444   struct MeshData *mdata;
3445
3446   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
3447               " sending a multicast packet...\n");
3448
3449   mdata = GNUNET_malloc (sizeof (struct MeshData));
3450   mdata->data_len = ntohs (msg->size);
3451   mdata->t = t;
3452   mdata->data = GNUNET_malloc (mdata->data_len);
3453   memcpy (mdata->data, msg, mdata->data_len);
3454   if (ntohs (msg->type) == GNUNET_MESSAGE_TYPE_MESH_MULTICAST)
3455   {
3456     struct GNUNET_MESH_Multicast *mcast;
3457
3458     mcast = (struct GNUNET_MESH_Multicast *) mdata->data;
3459     if (t->fwd_queue_n >= t->fwd_queue_max)
3460     {
3461       GNUNET_break (0);
3462       GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "  queue full!\n");
3463       GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
3464                   "  message from %s!\n",
3465                   GNUNET_i2s(&mcast->oid));
3466       GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
3467                   "  message at %s!\n",
3468                   GNUNET_i2s(&my_full_id));
3469       GNUNET_free (mdata->data);
3470       GNUNET_free (mdata);
3471       return;
3472     }
3473     t->fwd_queue_n++;
3474     mcast->ttl = htonl (ntohl (mcast->ttl) - 1);
3475     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  data packet, ttl: %u\n",
3476                 ntohl (mcast->ttl));
3477   }
3478   else
3479   {
3480     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  not a data packet, no ttl\n");
3481   }
3482
3483   tree_iterate_children (t->tree, &tunnel_send_multicast_iterator, mdata);
3484   if (mdata->reference_counter == 0)
3485   {
3486     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
3487               "  no one to send data to\n");
3488     GNUNET_free (mdata->data);
3489     GNUNET_free (mdata);
3490     t->fwd_queue_n--;
3491   }
3492   else
3493   {
3494     mdata->total_out = mdata->reference_counter;
3495   }
3496   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
3497               " sending a multicast packet done\n");
3498   return;
3499 }
3500
3501
3502 /**
3503  * Increase the SKIP value of all peers that
3504  * have not received a unicast message.
3505  *
3506  * @param cls Closure (ID of the peer that HAS received the message).
3507  * @param key ID of the neighbor.
3508  * @param value Information about the neighbor.
3509  *
3510  * @return GNUNET_YES to keep iterating.
3511  */
3512 static int
3513 tunnel_add_skip (void *cls,
3514                  const struct GNUNET_HashCode * key,
3515                  void *value)
3516 {
3517   struct GNUNET_PeerIdentity *neighbor = cls;
3518   struct MeshTunnelChildInfo *cinfo = value;
3519
3520   /* TODO compare only pointers? key == neighbor? */
3521   if (0 == memcmp (&neighbor->hashPubKey, key, sizeof (struct GNUNET_HashCode)))
3522   {
3523     return GNUNET_YES;
3524   }
3525   cinfo->skip++;
3526   return GNUNET_YES;
3527 }
3528
3529
3530 /**
3531  * @brief Get neighbor's Flow Control information.
3532  *
3533  * Retrieves the MeshTunnelChildInfo containing Flow Control data about a direct
3534  * descendant of the local node in a certain tunnel.
3535  * If the info is not yet there (recently created path), creates the data struct
3536  * and inserts it into the tunnel info, initialized to the current tunnel ACK
3537  * values.
3538  *
3539  * @param t Tunnel related.
3540  * @param peer Neighbor whose Flow Control info is needed.
3541  *
3542  * @return Neighbor's Flow Control info.
3543  */
3544 static struct MeshTunnelChildInfo *
3545 tunnel_get_neighbor_fc (struct MeshTunnel *t,
3546                         const struct GNUNET_PeerIdentity *peer)
3547 {
3548   struct MeshTunnelChildInfo *cinfo;
3549
3550   if (NULL == t->children_fc)
3551     return NULL;
3552
3553   cinfo = GNUNET_CONTAINER_multihashmap_get (t->children_fc,
3554                                              &peer->hashPubKey);
3555   if (NULL == cinfo)
3556   {
3557     uint32_t delta;
3558
3559     cinfo = GNUNET_malloc (sizeof (struct MeshTunnelChildInfo));
3560     cinfo->id = GNUNET_PEER_intern (peer);
3561     cinfo->skip = t->fwd_pid;
3562     cinfo->t = t;
3563
3564     delta = t->nobuffer ? 1 : INITIAL_WINDOW_SIZE;
3565     cinfo->fwd_ack = t->fwd_pid + delta;
3566     cinfo->bck_ack = delta;
3567
3568     cinfo->send_buffer =
3569         GNUNET_malloc (sizeof(struct MeshPeerQueue *) * t->fwd_queue_max);
3570
3571     GNUNET_assert (GNUNET_OK ==
3572       GNUNET_CONTAINER_multihashmap_put (t->children_fc,
3573                                          &peer->hashPubKey,
3574                                          cinfo,
3575                                          GNUNET_CONTAINER_MULTIHASHMAPOPTION_UNIQUE_FAST));
3576   }
3577   return cinfo;
3578 }
3579
3580
3581 /**
3582  * Get the Flow Control info of a client.
3583  * 
3584  * @param t Tunnel on which to look.
3585  * @param c Client whose ACK to get.
3586  * 
3587  * @return ACK value.
3588  */
3589 static struct MeshTunnelClientInfo *
3590 tunnel_get_client_fc (struct MeshTunnel *t,
3591                       struct MeshClient *c)
3592 {
3593   unsigned int i;
3594
3595   for (i = 0; i < t->nclients; i++)
3596   {
3597     if (t->clients[i] != c)
3598       continue;
3599     return &t->clients_fc[i];
3600   }
3601   GNUNET_assert (0);
3602   return NULL; // avoid compiler / coverity complaints
3603 }
3604
3605
3606 /**
3607  * Iterator to get the appropiate ACK value from all children nodes.
3608  *
3609  * @param cls Closue (tunnel).
3610  * @param id Id of the child node.
3611  */
3612 static void
3613 tunnel_get_child_fwd_ack (void *cls,
3614                           GNUNET_PEER_Id id)
3615 {
3616   struct GNUNET_PeerIdentity peer_id;
3617   struct MeshTunnelChildInfo *cinfo;
3618   struct MeshTunnelChildIteratorContext *ctx = cls;
3619   struct MeshTunnel *t = ctx->t;
3620   uint32_t ack;
3621
3622   GNUNET_PEER_resolve (id, &peer_id);
3623   cinfo = tunnel_get_neighbor_fc (t, &peer_id);
3624   ack = cinfo->fwd_ack;
3625
3626   ctx->nchildren++;
3627   if (GNUNET_NO == ctx->init)
3628   {
3629     ctx->max_child_ack = ack;
3630     ctx->init = GNUNET_YES;
3631   }
3632
3633   if (GNUNET_YES == t->speed_min)
3634   {
3635     ctx->max_child_ack = ctx->max_child_ack > ack ? ack : ctx->max_child_ack;
3636   }
3637   else
3638   {
3639     ctx->max_child_ack = ctx->max_child_ack > ack ? ctx->max_child_ack : ack;
3640   }
3641
3642 }
3643
3644
3645 /**
3646  * Get the maximum PID allowed to transmit to any
3647  * tunnel child of the local peer, depending on the tunnel
3648  * buffering/speed settings.
3649  *
3650  * @param t Tunnel.
3651  *
3652  * @return Maximum PID allowed (uint32 MAX), -1LL if node has no children.
3653  */
3654 static int64_t
3655 tunnel_get_children_fwd_ack (struct MeshTunnel *t)
3656 {
3657   struct MeshTunnelChildIteratorContext ctx;
3658   ctx.t = t;
3659   ctx.max_child_ack = 0;
3660   ctx.nchildren = 0;
3661   ctx.init = GNUNET_NO;
3662   tree_iterate_children (t->tree, tunnel_get_child_fwd_ack, &ctx);
3663
3664   if (0 == ctx.nchildren)
3665   {
3666     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
3667             "  tunnel has no children, no FWD ACK\n");
3668     return -1LL;
3669   }
3670
3671   if (GNUNET_YES == t->nobuffer && GMC_is_pid_bigger(ctx.max_child_ack, t->fwd_pid))
3672     ctx.max_child_ack = t->fwd_pid + 1; // Might overflow, it's ok.
3673
3674   return (int64_t) ctx.max_child_ack;
3675 }
3676
3677
3678 /**
3679  * Set the FWD ACK value of a client in a particular tunnel.
3680  * 
3681  * @param t Tunnel affected.
3682  * @param c Client whose ACK to set.
3683  * @param ack ACK value.
3684  */
3685 static void
3686 tunnel_set_client_fwd_ack (struct MeshTunnel *t,
3687                            struct MeshClient *c, 
3688                            uint32_t ack)
3689 {
3690   unsigned int i;
3691
3692   for (i = 0; i < t->nclients; i++)
3693   {
3694     if (t->clients[i] != c)
3695       continue;
3696     t->clients_fc[i].fwd_ack = ack;
3697     return;
3698   }
3699   GNUNET_break (0);
3700 }
3701
3702
3703 /**
3704  * Get the highest ACK value of all clients in a particular tunnel,
3705  * according to the buffering/speed settings.
3706  * 
3707  * @param t Tunnel on which to look.
3708  * 
3709  * @return Corresponding ACK value (max uint32_t).
3710  *         If no clients are suscribed, -1LL.
3711  */
3712 static int64_t
3713 tunnel_get_clients_fwd_ack (struct MeshTunnel *t)
3714 {
3715   unsigned int i;
3716   int64_t ack;
3717
3718   if (0 == t->nclients)
3719   {
3720     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
3721                 "  tunnel has no clients, no FWD ACK\n");
3722     return -1LL;
3723   }
3724
3725   for (ack = -1LL, i = 0; i < t->nclients; i++)
3726   {
3727     if (-1LL == ack ||
3728         (GNUNET_YES == t->speed_min &&
3729          GNUNET_YES == GMC_is_pid_bigger (ack, t->clients_fc[i].fwd_ack)) ||
3730         (GNUNET_NO == t->speed_min &&
3731          GNUNET_YES == GMC_is_pid_bigger (t->clients_fc[i].fwd_ack, ack)))
3732     {
3733       ack = t->clients_fc[i].fwd_ack;
3734     }
3735   }
3736
3737   if (GNUNET_YES == t->nobuffer && GMC_is_pid_bigger(ack, t->fwd_pid))
3738     ack = (uint32_t) t->fwd_pid + 1; // Might overflow, it's ok.
3739
3740   return (uint32_t) ack;
3741 }
3742
3743
3744 /**
3745  * Get the current fwd ack value for a tunnel, taking in account the tunnel
3746  * mode and the status of all children nodes.
3747  *
3748  * @param t Tunnel.
3749  *
3750  * @return Maximum PID allowed.
3751  */
3752 static uint32_t
3753 tunnel_get_fwd_ack (struct MeshTunnel *t)
3754 {
3755   uint32_t ack;
3756   uint32_t count;
3757   uint32_t buffer_free;
3758   int64_t child_ack;
3759   int64_t client_ack;
3760
3761   count = t->fwd_pid - t->skip;
3762   buffer_free = t->fwd_queue_max - t->fwd_queue_n;
3763   child_ack = tunnel_get_children_fwd_ack (t);
3764   client_ack = tunnel_get_clients_fwd_ack (t);
3765   if (GNUNET_YES == t->nobuffer)
3766   {
3767     ack = count;
3768     if (-1LL == child_ack)
3769       child_ack = client_ack;
3770     if (-1LL == child_ack)
3771     {
3772       GNUNET_break (0);
3773       client_ack = child_ack = ack;
3774     }
3775   }
3776   else
3777   {
3778     ack = count + buffer_free; // Overflow? OK!
3779   }
3780   if (-1LL == child_ack)
3781   {
3782     // Node has no children, child_ack AND core buffer are irrelevant.
3783     GNUNET_break (-1LL != client_ack); // No children AND no clients? Not good!
3784     return (uint32_t) client_ack;
3785   }
3786   if (-1LL == client_ack)
3787   {
3788     client_ack = ack;
3789   }
3790   if (GNUNET_YES == t->speed_min)
3791   {
3792     ack = GMC_min_pid ((uint32_t) child_ack, ack);
3793     ack = GMC_min_pid ((uint32_t) client_ack, ack);
3794   }
3795   else
3796   {
3797     ack = GMC_max_pid ((uint32_t) child_ack, ack);
3798     ack = GMC_max_pid ((uint32_t) client_ack, ack);
3799   }
3800   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
3801               "c %u, bf %u, ch %lld, cl %lld, ACK: %u\n",
3802               count, buffer_free, child_ack, client_ack, ack);
3803   return ack;
3804 }
3805
3806
3807 /**
3808  * Build a local ACK message and send it to a local client.
3809  * 
3810  * @param t Tunnel on which to send the ACK.
3811  * @param c Client to whom send the ACK.
3812  * @param ack Value of the ACK.
3813  */
3814 static void
3815 send_local_ack (struct MeshTunnel *t, struct MeshClient *c, uint32_t ack)
3816 {
3817   struct GNUNET_MESH_LocalAck msg;
3818
3819   msg.header.size = htons (sizeof (msg));
3820   msg.header.type = htons (GNUNET_MESSAGE_TYPE_MESH_LOCAL_ACK);
3821   msg.tunnel_id = htonl (t->owner == c ? t->local_tid : t->local_tid_dest);
3822   msg.max_pid = htonl (ack); 
3823   GNUNET_SERVER_notification_context_unicast(nc,
3824                                               c->handle,
3825                                               &msg.header,
3826                                               GNUNET_NO);
3827 }
3828
3829 /**
3830  * Build an ACK message and queue it to send to the given peer.
3831  * 
3832  * @param t Tunnel on which to send the ACK.
3833  * @param peer Peer to whom send the ACK.
3834  * @param ack Value of the ACK.
3835  */
3836 static void
3837 send_ack (struct MeshTunnel *t, struct GNUNET_PeerIdentity *peer,  uint32_t ack)
3838 {
3839   struct GNUNET_MESH_ACK msg;
3840
3841   GNUNET_PEER_resolve (t->id.oid, &msg.oid);
3842   msg.header.size = htons (sizeof (msg));
3843   msg.header.type = htons (GNUNET_MESSAGE_TYPE_MESH_ACK);
3844   msg.pid = htonl (ack);
3845   msg.tid = htonl (t->id.tid);
3846
3847   send_prebuilt_message (&msg.header, peer, t);
3848 }
3849
3850
3851 /**
3852  * Notify a the owner of a tunnel about how many more
3853  * payload packages will we accept on a given tunnel.
3854  *
3855  * @param t Tunnel on which to send the ACK.
3856  */
3857 static void
3858 tunnel_send_client_fwd_ack (struct MeshTunnel *t)
3859 {
3860   uint32_t ack;
3861
3862   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
3863               "Sending client FWD ACK on tunnel %X\n",
3864               t->local_tid);
3865
3866   ack = tunnel_get_fwd_ack (t);
3867
3868   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, " ack %u\n", ack);
3869   if (t->last_fwd_ack == ack)
3870   {
3871     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, " same as last, not sending!\n");
3872     return;
3873   }
3874
3875   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, " sending!\n");
3876   t->last_fwd_ack = ack;
3877   send_local_ack (t, t->owner, ack);
3878 }
3879
3880
3881 /**
3882  * Send an ACK informing the predecessor about the available buffer space.
3883  * In case there is no predecessor, inform the owning client.
3884  * If buffering is off, send only on behalf of children or self if endpoint.
3885  * If buffering is on, send when sent to children and buffer space is free.
3886  * Note that although the name is fwd_ack, the FWD mean forward *traffic*,
3887  * the ACK itself goes "back" (towards root).
3888  * 
3889  * @param t Tunnel on which to send the ACK.
3890  * @param type Type of message that triggered the ACK transmission.
3891  */
3892 static void
3893 tunnel_send_fwd_ack (struct MeshTunnel *t, uint16_t type)
3894 {
3895   struct GNUNET_PeerIdentity id;
3896   uint32_t ack;
3897
3898   if (NULL != t->owner)
3899   {
3900     tunnel_send_client_fwd_ack (t);
3901     return;
3902   }
3903   /* Is it after unicast / multicast retransmission? */
3904   switch (type)
3905   {
3906     case GNUNET_MESSAGE_TYPE_MESH_UNICAST:
3907     case GNUNET_MESSAGE_TYPE_MESH_MULTICAST:
3908       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
3909                   "ACK due to FWD DATA retransmission\n");
3910       if (GNUNET_YES == t->nobuffer)
3911       {
3912         GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Not sending ACK, nobuffer\n");
3913         return;
3914       }
3915       break;
3916     case GNUNET_MESSAGE_TYPE_MESH_ACK:
3917     case GNUNET_MESSAGE_TYPE_MESH_LOCAL_ACK:
3918       break;
3919     default:
3920       GNUNET_break (0);
3921   }
3922
3923   /* Check if we need no retransmit the ACK */
3924   if (t->fwd_queue_max > t->fwd_queue_n * 4 &&
3925       GMC_is_pid_bigger(t->last_fwd_ack, t->fwd_pid))
3926   {
3927     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Not sending ACK, buffer free\n");
3928     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
3929                 "  t->qmax: %u, t->qn: %u\n",
3930                 t->fwd_queue_max, t->fwd_queue_n);
3931     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
3932                 "  t->pid: %u, t->ack: %u\n",
3933                 t->fwd_pid, t->last_fwd_ack);
3934     return;
3935   }
3936
3937   /* Ok, ACK might be necessary, what PID to ACK? */
3938   ack = tunnel_get_fwd_ack (t);
3939
3940   /* If speed_min and not all children have ack'd, dont send yet */
3941   if (ack == t->last_fwd_ack)
3942   {
3943     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Not sending FWD ACK, not ready\n");
3944     return;
3945   }
3946
3947   t->last_fwd_ack = ack;
3948   GNUNET_PEER_resolve (tree_get_predecessor (t->tree), &id);
3949   send_ack (t, &id, ack);
3950   debug_fwd_ack++;
3951 }
3952
3953
3954 /**
3955  * Iterator to send a child node a BCK ACK to allow him to send more
3956  * to_origin data.
3957  *
3958  * @param cls Closure (tunnel).
3959  * @param id Id of the child node.
3960  */
3961 static void
3962 tunnel_send_child_bck_ack (void *cls,
3963                            GNUNET_PEER_Id id)
3964 {
3965   struct MeshTunnel *t = cls;
3966   struct MeshTunnelChildInfo *cinfo;
3967   struct GNUNET_PeerIdentity peer;
3968
3969   GNUNET_PEER_resolve (id, &peer);
3970   cinfo = tunnel_get_neighbor_fc (t, &peer);
3971
3972   if (cinfo->bck_ack != cinfo->pid &&
3973       GNUNET_NO == GMC_is_pid_bigger (cinfo->bck_ack, cinfo->pid))
3974     return;
3975
3976   cinfo->bck_ack++; // FIXME window size?
3977   send_ack (t, &peer, cinfo->bck_ack);
3978 }
3979
3980
3981 /**
3982  * @brief Send BCK ACKs to clients to allow them more to_origin traffic
3983  * 
3984  * Iterates over all clients and sends BCK ACKs to the ones that need it.
3985  * 
3986  * @param t Tunnel on which to send the BCK ACKs.
3987  */
3988 static void
3989 tunnel_send_clients_bck_ack (struct MeshTunnel *t)
3990 {
3991   unsigned int i;
3992   unsigned int tunnel_delta;
3993
3994   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  Sending BCK ACK to clients\n");
3995
3996   tunnel_delta = t->bck_ack - t->bck_pid;
3997   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "   tunnel delta: %u\n", tunnel_delta);
3998
3999   /* Find client whom to allow to send to origin (with lowest buffer space) */
4000   for (i = 0; i < t->nclients; i++)
4001   {
4002     struct MeshTunnelClientInfo *clinfo;
4003     unsigned int delta;
4004
4005     clinfo = &t->clients_fc[i];
4006     delta = clinfo->bck_ack - clinfo->bck_pid;
4007     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "    client %u delta: %u\n",
4008          t->clients[i]->id, delta);
4009
4010     if ((GNUNET_NO == t->nobuffer && tunnel_delta > delta) ||
4011         (GNUNET_YES == t->nobuffer && 0 == delta))
4012     {
4013       uint32_t ack;
4014
4015       ack = clinfo->bck_pid;
4016       ack += t->nobuffer ? 1 : tunnel_delta;
4017       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
4018                   "    sending ack to client %u: %u\n",
4019                   t->clients[i]->id, ack);
4020       send_local_ack (t, t->clients[i], ack);
4021       clinfo->bck_ack = ack;
4022     }
4023   }
4024 }
4025
4026
4027 /**
4028  * Send an ACK informing the children nodes and destination clients about
4029  * the available buffer space.
4030  * If buffering is off, send only on behalf of root (can be self).
4031  * If buffering is on, send when sent to predecessor and buffer space is free.
4032  * Note that although the name is bck_ack, the BCK mean backwards *traffic*,
4033  * the ACK itself goes "forward" (towards children/clients).
4034  * 
4035  * @param t Tunnel on which to send the ACK.
4036  * @param type Type of message that triggered the ACK transmission.
4037  */
4038 static void
4039 tunnel_send_bck_ack (struct MeshTunnel *t, uint16_t type)
4040 {
4041   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
4042               "Sending BCK ACK on tunnel %u [%u] due to %s\n",
4043               t->id.oid, t->id.tid, GNUNET_MESH_DEBUG_M2S(type));
4044   /* Is it after data to_origin retransmission? */
4045   switch (type)
4046   {
4047     case GNUNET_MESSAGE_TYPE_MESH_TO_ORIGIN:
4048       if (GNUNET_YES == t->nobuffer)
4049       {
4050         GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
4051                     "    Not sending ACK, nobuffer\n");
4052         return;
4053       }
4054       break;
4055     case GNUNET_MESSAGE_TYPE_MESH_ACK:
4056     case GNUNET_MESSAGE_TYPE_MESH_LOCAL_ACK:
4057     case GNUNET_MESSAGE_TYPE_MESH_POLL:
4058       break;
4059     default:
4060       GNUNET_break (0);
4061   }
4062
4063   tunnel_send_clients_bck_ack (t);
4064   tree_iterate_children (t->tree, &tunnel_send_child_bck_ack, t);
4065 }
4066
4067
4068 /**
4069  * @brief Re-initiate traffic to this peer if necessary.
4070  *
4071  * Check if there is traffic queued towards this peer
4072  * and the core transmit handle is NULL (traffic was stalled).
4073  * If so, call core tmt rdy.
4074  *
4075  * @param cls Closure (unused)
4076  * @param peer_id Short ID of peer to which initiate traffic.
4077  */
4078 static void
4079 peer_unlock_queue(void *cls, GNUNET_PEER_Id peer_id)
4080 {
4081   struct MeshPeerInfo *peer;
4082   struct GNUNET_PeerIdentity id;
4083   struct MeshPeerQueue *q;
4084   size_t size;
4085
4086   peer = peer_info_get_short(peer_id);
4087   if (NULL != peer->core_transmit)
4088     return;
4089
4090   q = queue_get_next(peer);
4091   if (NULL == q)
4092   {
4093     /* Might br multicast traffic already sent to this particular peer but
4094      * not to other children in this tunnel.
4095      * This way t->queue_n would be > 0 but the queue of this particular peer
4096      * would be empty.
4097      */
4098     return;
4099   }
4100   size = q->size;
4101   GNUNET_PEER_resolve (peer->id, &id);
4102   peer->core_transmit =
4103         GNUNET_CORE_notify_transmit_ready(core_handle,
4104                                           0,
4105                                           0,
4106                                           GNUNET_TIME_UNIT_FOREVER_REL,
4107                                           &id,
4108                                           size,
4109                                           &queue_send,
4110                                           peer);
4111         return;
4112 }
4113
4114
4115 /**
4116  * @brief Allow transmission of FWD traffic on this tunnel
4117  *
4118  * Check if there is traffic queued towards any children
4119  * and the core transmit handle is NULL, and if so, call core tmt rdy.
4120  *
4121  * @param t Tunnel on which to unlock FWD traffic.
4122  */
4123 static void
4124 tunnel_unlock_fwd_queues (struct MeshTunnel *t)
4125 {
4126   if (0 == t->fwd_queue_n)
4127     return;
4128
4129   tree_iterate_children (t->tree, &peer_unlock_queue, NULL);
4130 }
4131
4132
4133 /**
4134  * @brief Allow transmission of BCK traffic on this tunnel
4135  *
4136  * Check if there is traffic queued towards the root of the tree
4137  * and the core transmit handle is NULL, and if so, call core tmt rdy.
4138  *
4139  * @param t Tunnel on which to unlock BCK traffic.
4140  */
4141 static void
4142 tunnel_unlock_bck_queue (struct MeshTunnel *t)
4143 {
4144   if (0 == t->bck_queue_n)
4145     return;
4146
4147   peer_unlock_queue(NULL, tree_get_predecessor(t->tree));
4148 }
4149
4150
4151 /**
4152  * Send a message to all peers in this tunnel that the tunnel is no longer
4153  * valid.
4154  *
4155  * @param t The tunnel whose peers to notify.
4156  */
4157 static void
4158 tunnel_send_destroy (struct MeshTunnel *t)
4159 {
4160   struct GNUNET_MESH_TunnelDestroy msg;
4161
4162   msg.header.size = htons (sizeof (msg));
4163   msg.header.type = htons (GNUNET_MESSAGE_TYPE_MESH_TUNNEL_DESTROY);
4164   GNUNET_PEER_resolve (t->id.oid, &msg.oid);
4165   msg.tid = htonl (t->id.tid);
4166   tunnel_send_multicast (t, &msg.header);
4167 }
4168
4169
4170 /**
4171  * Cancel all transmissions towards a neighbor that belong to a certain tunnel.
4172  *
4173  * @param cls Closure (Tunnel which to cancel).
4174  * @param neighbor_id Short ID of the neighbor to whom cancel the transmissions.
4175  */
4176 static void
4177 tunnel_cancel_queues (void *cls, GNUNET_PEER_Id neighbor_id)
4178 {
4179   struct MeshTunnel *t = cls;
4180   struct MeshPeerInfo *peer_info;
4181   struct MeshPeerQueue *pq;
4182   struct MeshPeerQueue *next;
4183
4184   peer_info = peer_info_get_short (neighbor_id);
4185   for (pq = peer_info->queue_head; NULL != pq; pq = next)
4186   {
4187     next = pq->next;
4188     if (pq->tunnel == t)
4189     {
4190       if (GNUNET_MESSAGE_TYPE_MESH_MULTICAST == pq->type ||
4191           GNUNET_MESSAGE_TYPE_MESH_UNICAST == pq->type ||
4192           GNUNET_MESSAGE_TYPE_MESH_TO_ORIGIN == pq->type)
4193       {
4194         // Should have been removed on destroy children
4195         GNUNET_break (0);
4196       }
4197       queue_destroy (pq, GNUNET_YES);
4198     }
4199   }
4200   if (NULL == peer_info->queue_head && NULL != peer_info->core_transmit)
4201   {
4202     GNUNET_CORE_notify_transmit_ready_cancel(peer_info->core_transmit);
4203     peer_info->core_transmit = NULL;
4204   }
4205 }
4206
4207 /**
4208  * Destroy the tunnel and free any allocated resources linked to it.
4209  *
4210  * @param t the tunnel to destroy
4211  *
4212  * @return GNUNET_OK on success
4213  */
4214 static int
4215 tunnel_destroy (struct MeshTunnel *t)
4216 {
4217   struct MeshClient *c;
4218   struct GNUNET_HashCode hash;
4219   unsigned int i;
4220   int r;
4221
4222   if (NULL == t)
4223     return GNUNET_OK;
4224
4225   r = GNUNET_OK;
4226   c = t->owner;
4227 #if MESH_DEBUG
4228   {
4229     struct GNUNET_PeerIdentity id;
4230
4231     GNUNET_PEER_resolve (t->id.oid, &id);
4232     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "destroying tunnel %s [%x]\n",
4233                 GNUNET_i2s (&id), t->id.tid);
4234     if (NULL != c)
4235       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  by client %u\n", c->id);
4236   }
4237 #endif
4238
4239   GNUNET_CRYPTO_hash (&t->id, sizeof (struct MESH_TunnelID), &hash);
4240   if (GNUNET_YES != GNUNET_CONTAINER_multihashmap_remove (tunnels, &hash, t))
4241   {
4242     GNUNET_break (0);
4243     r = GNUNET_SYSERR;
4244   }
4245
4246   if (NULL != c)
4247   {
4248     GNUNET_CRYPTO_hash (&t->local_tid, sizeof (MESH_TunnelNumber), &hash);
4249     if (GNUNET_YES !=
4250         GNUNET_CONTAINER_multihashmap_remove (c->own_tunnels, &hash, t))
4251     {
4252       GNUNET_break (0);
4253       r = GNUNET_SYSERR;
4254     }
4255   }
4256
4257   GNUNET_CRYPTO_hash (&t->local_tid_dest, sizeof (MESH_TunnelNumber), &hash);
4258   for (i = 0; i < t->nclients; i++)
4259   {
4260     c = t->clients[i];
4261     if (GNUNET_YES !=
4262           GNUNET_CONTAINER_multihashmap_remove (c->incoming_tunnels, &hash, t))
4263     {
4264       GNUNET_break (0);
4265       r = GNUNET_SYSERR;
4266     }
4267   }
4268   for (i = 0; i < t->nignore; i++)
4269   {
4270     c = t->ignore[i];
4271     if (GNUNET_YES !=
4272           GNUNET_CONTAINER_multihashmap_remove (c->ignore_tunnels, &hash, t))
4273     {
4274       GNUNET_break (0);
4275       r = GNUNET_SYSERR;
4276     }
4277   }
4278
4279   if (t->nclients > 0)
4280   {
4281     if (GNUNET_YES !=
4282         GNUNET_CONTAINER_multihashmap_remove (incoming_tunnels, &hash, t))
4283     {
4284       GNUNET_break (0);
4285       r = GNUNET_SYSERR;
4286     }
4287     GNUNET_free (t->clients);
4288     GNUNET_free (t->clients_fc);
4289   }
4290
4291   if (NULL != t->peers)
4292   {
4293     GNUNET_CONTAINER_multihashmap_iterate (t->peers, &peer_info_delete_tunnel,
4294                                            t);
4295     GNUNET_CONTAINER_multihashmap_destroy (t->peers);
4296   }
4297
4298   GNUNET_CONTAINER_multihashmap_iterate (t->children_fc,
4299                                          &tunnel_destroy_child,
4300                                          t);
4301   GNUNET_CONTAINER_multihashmap_destroy (t->children_fc);
4302   t->children_fc = NULL;
4303
4304   tree_iterate_children (t->tree, &tunnel_cancel_queues, t);
4305   tree_destroy (t->tree);
4306
4307   if (NULL != t->regex_ctx)
4308     regex_cancel_search (t->regex_ctx);
4309   if (NULL != t->dht_get_type)
4310     GNUNET_DHT_get_stop (t->dht_get_type);
4311   if (GNUNET_SCHEDULER_NO_TASK != t->timeout_task)
4312     GNUNET_SCHEDULER_cancel (t->timeout_task);
4313   if (GNUNET_SCHEDULER_NO_TASK != t->path_refresh_task)
4314     GNUNET_SCHEDULER_cancel (t->path_refresh_task);
4315
4316   n_tunnels--;
4317   GNUNET_STATISTICS_update (stats, "# tunnels", -1, GNUNET_NO);
4318   GNUNET_free (t);
4319   return r;
4320 }
4321
4322
4323 /**
4324  * Create a new tunnel
4325  * 
4326  * @param owner Who is the owner of the tunnel (short ID).
4327  * @param tid Tunnel Number of the tunnel.
4328  * @param client Clients that owns the tunnel, NULL for foreign tunnels.
4329  * @param local Tunnel Number for the tunnel, for the client point of view.
4330  * 
4331  * @return A new initialized tunnel. NULL on error.
4332  */
4333 static struct MeshTunnel *
4334 tunnel_new (GNUNET_PEER_Id owner,
4335             MESH_TunnelNumber tid,
4336             struct MeshClient *client,
4337             MESH_TunnelNumber local)
4338 {
4339   struct MeshTunnel *t;
4340   struct GNUNET_HashCode hash;
4341
4342   if (n_tunnels >= max_tunnels && NULL == client)
4343     return NULL;
4344
4345   t = GNUNET_malloc (sizeof (struct MeshTunnel));
4346   t->id.oid = owner;
4347   t->id.tid = tid;
4348   t->fwd_queue_max = (max_msgs_queue / max_tunnels) + 1;
4349   t->bck_queue_max = t->fwd_queue_max;
4350   t->tree = tree_new (owner);
4351   t->owner = client;
4352   t->fwd_pid = (uint32_t) -1; // Next (expected) = 0
4353   t->bck_pid = (uint32_t) -1; // Next (expected) = 0
4354   t->bck_ack = INITIAL_WINDOW_SIZE - 1;
4355   t->last_fwd_ack = INITIAL_WINDOW_SIZE - 1;
4356   t->local_tid = local;
4357   t->children_fc = GNUNET_CONTAINER_multihashmap_create (8, GNUNET_NO);
4358   n_tunnels++;
4359   GNUNET_STATISTICS_update (stats, "# tunnels", 1, GNUNET_NO);
4360
4361   GNUNET_CRYPTO_hash (&t->id, sizeof (struct MESH_TunnelID), &hash);
4362   if (GNUNET_OK !=
4363       GNUNET_CONTAINER_multihashmap_put (tunnels, &hash, t,
4364                                          GNUNET_CONTAINER_MULTIHASHMAPOPTION_UNIQUE_ONLY))
4365   {
4366     GNUNET_break (0);
4367     tunnel_destroy (t);
4368     if (NULL != client)
4369     {
4370       GNUNET_break (0);
4371       GNUNET_SERVER_receive_done (client->handle, GNUNET_SYSERR);
4372     }
4373     return NULL;
4374   }
4375
4376   if (NULL != client)
4377   {
4378     GNUNET_CRYPTO_hash (&t->local_tid, sizeof (MESH_TunnelNumber), &hash);
4379     if (GNUNET_OK !=
4380         GNUNET_CONTAINER_multihashmap_put (client->own_tunnels, &hash, t,
4381                                           GNUNET_CONTAINER_MULTIHASHMAPOPTION_UNIQUE_ONLY))
4382     {
4383       tunnel_destroy (t);
4384       GNUNET_break (0);
4385       GNUNET_SERVER_receive_done (client->handle, GNUNET_SYSERR);
4386       return NULL;
4387     }
4388   }
4389
4390   return t;
4391 }
4392
4393
4394 /**
4395  * Removes an explicit path from a tunnel, freeing all intermediate nodes
4396  * that are no longer needed, as well as nodes of no longer reachable peers.
4397  * The tunnel itself is also destoyed if results in a remote empty tunnel.
4398  *
4399  * @param t Tunnel from which to remove the path.
4400  * @param peer Short id of the peer which should be removed.
4401  */
4402 static void
4403 tunnel_delete_peer (struct MeshTunnel *t, GNUNET_PEER_Id peer)
4404 {
4405   if (GNUNET_NO == tree_del_peer (t->tree, peer, NULL, NULL))
4406     tunnel_destroy (t);
4407 }
4408
4409
4410 /**
4411  * tunnel_destroy_iterator: iterator for deleting each tunnel that belongs to a
4412  * client when the client disconnects. If the client is not the owner, the
4413  * owner will get notified if no more clients are in the tunnel and the client
4414  * get removed from the tunnel's list.
4415  *
4416  * @param cls closure (client that is disconnecting)
4417  * @param key the hash of the local tunnel id (used to access the hashmap)
4418  * @param value the value stored at the key (tunnel to destroy)
4419  *
4420  * @return GNUNET_OK, keep iterating.
4421  */
4422 static int
4423 tunnel_destroy_iterator (void *cls, const struct GNUNET_HashCode * key, void *value)
4424 {
4425   struct MeshTunnel *t = value;
4426   struct MeshClient *c = cls;
4427
4428   send_client_tunnel_disconnect(t, c);
4429   if (c != t->owner)
4430   {
4431     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
4432                 "Client %u is destination, keeping the tunnel alive.\n", c->id);
4433     tunnel_delete_client(t, c);
4434     client_delete_tunnel(c, t);
4435     return GNUNET_OK;
4436   }
4437   tunnel_send_destroy(t);
4438   t->owner = NULL;
4439   t->destroy = GNUNET_YES;
4440
4441   return GNUNET_OK;
4442 }
4443
4444
4445 /**
4446  * Timeout function, destroys tunnel if called
4447  *
4448  * @param cls Closure (tunnel to destroy).
4449  * @param tc TaskContext
4450  */
4451 static void
4452 tunnel_timeout (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
4453 {
4454   struct MeshTunnel *t = cls;
4455   struct GNUNET_PeerIdentity id;
4456
4457   t->timeout_task = GNUNET_SCHEDULER_NO_TASK;
4458   if (0 != (tc->reason & GNUNET_SCHEDULER_REASON_SHUTDOWN))
4459     return;
4460   GNUNET_PEER_resolve(t->id.oid, &id);
4461   GNUNET_log (GNUNET_ERROR_TYPE_INFO,
4462               "Tunnel %s [%X] timed out. Destroying.\n",
4463               GNUNET_i2s(&id), t->id.tid);
4464   send_clients_tunnel_destroy (t);
4465   tunnel_destroy (t);
4466 }
4467
4468 /**
4469  * Resets the tunnel timeout. Starts it if no timeout was running.
4470  *
4471  * @param t Tunnel whose timeout to reset.
4472  *
4473  * TODO use heap to improve efficiency of scheduler.
4474  */
4475 static void
4476 tunnel_reset_timeout (struct MeshTunnel *t)
4477 {
4478   if (GNUNET_SCHEDULER_NO_TASK != t->timeout_task)
4479     GNUNET_SCHEDULER_cancel (t->timeout_task);
4480   t->timeout_task =
4481       GNUNET_SCHEDULER_add_delayed (GNUNET_TIME_relative_multiply
4482                                     (refresh_path_time, 4), &tunnel_timeout, t);
4483 }
4484
4485
4486 /******************************************************************************/
4487 /****************      MESH NETWORK HANDLER HELPERS     ***********************/
4488 /******************************************************************************/
4489
4490 /**
4491  * Function to send a create path packet to a peer.
4492  *
4493  * @param cls closure
4494  * @param size number of bytes available in buf
4495  * @param buf where the callee should write the message
4496  * @return number of bytes written to buf
4497  */
4498 static size_t
4499 send_core_path_create (void *cls, size_t size, void *buf)
4500 {
4501   struct MeshPathInfo *info = cls;
4502   struct GNUNET_MESH_ManipulatePath *msg;
4503   struct GNUNET_PeerIdentity *peer_ptr;
4504   struct MeshTunnel *t = info->t;
4505   struct MeshPeerPath *p = info->path;
4506   size_t size_needed;
4507   uint32_t opt;
4508   int i;
4509
4510   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "CREATE PATH sending...\n");
4511   size_needed =
4512       sizeof (struct GNUNET_MESH_ManipulatePath) +
4513       p->length * sizeof (struct GNUNET_PeerIdentity);
4514
4515   if (size < size_needed || NULL == buf)
4516   {
4517     GNUNET_break (0);
4518     return 0;
4519   }
4520   msg = (struct GNUNET_MESH_ManipulatePath *) buf;
4521   msg->header.size = htons (size_needed);
4522   msg->header.type = htons (GNUNET_MESSAGE_TYPE_MESH_PATH_CREATE);
4523   msg->tid = ntohl (t->id.tid);
4524
4525   opt = 0;
4526   if (GNUNET_YES == t->speed_min)
4527     opt |= MESH_TUNNEL_OPT_SPEED_MIN;
4528   if (GNUNET_YES == t->nobuffer)
4529     opt |= MESH_TUNNEL_OPT_NOBUFFER;
4530   msg->opt = htonl(opt);
4531   msg->reserved = 0;
4532
4533   peer_ptr = (struct GNUNET_PeerIdentity *) &msg[1];
4534   for (i = 0; i < p->length; i++)
4535   {
4536     GNUNET_PEER_resolve (p->peers[i], peer_ptr++);
4537   }
4538
4539   path_destroy (p);
4540   GNUNET_free (info);
4541
4542   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
4543               "CREATE PATH (%u bytes long) sent!\n", size_needed);
4544   return size_needed;
4545 }
4546
4547
4548 /**
4549  * Fill the core buffer 
4550  *
4551  * @param cls closure (data itself)
4552  * @param size number of bytes available in buf
4553  * @param buf where the callee should write the message
4554  *
4555  * @return number of bytes written to buf
4556  */
4557 static size_t
4558 send_core_data_multicast (void *cls, size_t size, void *buf)
4559 {
4560   struct MeshTransmissionDescriptor *info = cls;
4561   size_t total_size;
4562
4563   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Multicast callback.\n");
4564   GNUNET_assert (NULL != info);
4565   GNUNET_assert (NULL != info->peer);
4566   total_size = info->mesh_data->data_len;
4567   GNUNET_assert (total_size < GNUNET_SERVER_MAX_MESSAGE_SIZE);
4568
4569   if (total_size > size)
4570   {
4571     GNUNET_break (0);
4572     return 0;
4573   }
4574   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, " copying data...\n");
4575   memcpy (buf, info->mesh_data->data, total_size);
4576 #if MESH_DEBUG
4577   {
4578     struct GNUNET_MESH_Multicast *mc;
4579     struct GNUNET_MessageHeader *mh;
4580
4581     mh = buf;
4582     if (ntohs (mh->type) == GNUNET_MESSAGE_TYPE_MESH_MULTICAST)
4583     {
4584       mc = (struct GNUNET_MESH_Multicast *) mh;
4585       mh = (struct GNUNET_MessageHeader *) &mc[1];
4586       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
4587                   " multicast, payload type %s\n",
4588                   GNUNET_MESH_DEBUG_M2S (ntohs (mh->type)));
4589       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
4590                   " multicast, payload size %u\n", ntohs (mh->size));
4591     }
4592     else
4593     {
4594       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, " type %s\n",
4595                   GNUNET_MESH_DEBUG_M2S (ntohs (mh->type)));
4596     }
4597   }
4598 #endif
4599   data_descriptor_decrement_rc (info->mesh_data);
4600   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "freeing info...\n");
4601   GNUNET_free (info);
4602   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "return %u\n", total_size);
4603   return total_size;
4604 }
4605
4606
4607 /**
4608  * Creates a path ack message in buf and frees all unused resources.
4609  *
4610  * @param cls closure (MeshTransmissionDescriptor)
4611  * @param size number of bytes available in buf
4612  * @param buf where the callee should write the message
4613  * @return number of bytes written to buf
4614  */
4615 static size_t
4616 send_core_path_ack (void *cls, size_t size, void *buf)
4617 {
4618   struct MeshTransmissionDescriptor *info = cls;
4619   struct GNUNET_MESH_PathACK *msg = buf;
4620
4621   GNUNET_assert (NULL != info);
4622   if (sizeof (struct GNUNET_MESH_PathACK) > size)
4623   {
4624     GNUNET_break (0);
4625     return 0;
4626   }
4627   msg->header.size = htons (sizeof (struct GNUNET_MESH_PathACK));
4628   msg->header.type = htons (GNUNET_MESSAGE_TYPE_MESH_PATH_ACK);
4629   GNUNET_PEER_resolve (info->origin->oid, &msg->oid);
4630   msg->tid = htonl (info->origin->tid);
4631   msg->peer_id = my_full_id;
4632
4633   GNUNET_free (info);
4634   /* TODO add signature */
4635
4636   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "PATH ACK sent!\n");
4637   return sizeof (struct GNUNET_MESH_PathACK);
4638 }
4639
4640
4641 /**
4642  * Free a transmission that was already queued with all resources
4643  * associated to the request.
4644  *
4645  * @param queue Queue handler to cancel.
4646  * @param clear_cls Is it necessary to free associated cls?
4647  */
4648 static void
4649 queue_destroy (struct MeshPeerQueue *queue, int clear_cls)
4650 {
4651   struct MeshTransmissionDescriptor *dd;
4652   struct MeshPathInfo *path_info;
4653   struct MeshTunnelChildInfo *cinfo;
4654   struct GNUNET_PeerIdentity id;
4655   unsigned int i;
4656   unsigned int max;
4657
4658   if (GNUNET_YES == clear_cls)
4659   {
4660     switch (queue->type)
4661     {
4662       case GNUNET_MESSAGE_TYPE_MESH_TUNNEL_DESTROY:
4663         GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "   cancelling TUNNEL_DESTROY\n");
4664         /* fall through */
4665       case GNUNET_MESSAGE_TYPE_MESH_UNICAST:
4666       case GNUNET_MESSAGE_TYPE_MESH_MULTICAST:
4667       case GNUNET_MESSAGE_TYPE_MESH_TO_ORIGIN:
4668       case GNUNET_MESSAGE_TYPE_MESH_PATH_KEEPALIVE:
4669         GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
4670                     "   prebuilt message\n");
4671         GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
4672                     "   type %s\n",
4673                     GNUNET_MESH_DEBUG_M2S(queue->type));
4674         dd = queue->cls;
4675         data_descriptor_decrement_rc (dd->mesh_data);
4676         break;
4677       case GNUNET_MESSAGE_TYPE_MESH_PATH_CREATE:
4678         GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "   type create path\n");
4679         path_info = queue->cls;
4680         path_destroy (path_info->path);
4681         break;
4682       default:
4683         GNUNET_break (0);
4684         GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
4685                     "   type %s unknown!\n",
4686                     GNUNET_MESH_DEBUG_M2S(queue->type));
4687     }
4688     GNUNET_free_non_null (queue->cls);
4689   }
4690   GNUNET_CONTAINER_DLL_remove (queue->peer->queue_head,
4691                                queue->peer->queue_tail,
4692                                queue);
4693
4694   /* Delete from child_fc in the appropiate tunnel */
4695   max = queue->tunnel->fwd_queue_max;
4696   GNUNET_PEER_resolve (queue->peer->id, &id);
4697   cinfo = tunnel_get_neighbor_fc (queue->tunnel, &id);
4698   if (NULL != cinfo)
4699   {
4700     for (i = 0; i < cinfo->send_buffer_n; i++)
4701     {
4702       unsigned int i2;
4703       i2 = (cinfo->send_buffer_start + i) % max;
4704       if (cinfo->send_buffer[i2] == queue)
4705       {
4706         /* Found corresponding entry in the send_buffer. Move all others back. */
4707         unsigned int j;
4708         unsigned int j2;
4709         unsigned int j3;
4710
4711         for (j = i, j2 = 0, j3 = 0; j < cinfo->send_buffer_n - 1; j++)
4712         {
4713           j2 = (cinfo->send_buffer_start + j) % max;
4714           j3 = (cinfo->send_buffer_start + j + 1) % max;
4715           cinfo->send_buffer[j2] = cinfo->send_buffer[j3];
4716         }
4717
4718         cinfo->send_buffer[j3] = NULL;
4719         cinfo->send_buffer_n--;
4720       }
4721     }
4722   }
4723
4724   GNUNET_free (queue);
4725 }
4726
4727
4728 /**
4729  * @brief Get the next transmittable message from the queue.
4730  *
4731  * This will be the head, except in the case of being a data packet
4732  * not allowed by the destination peer.
4733  *
4734  * @param peer Destination peer.
4735  *
4736  * @return The next viable MeshPeerQueue element to send to that peer.
4737  *         NULL when there are no transmittable messages.
4738  */
4739 struct MeshPeerQueue *
4740 queue_get_next (const struct MeshPeerInfo *peer)
4741 {
4742   struct MeshPeerQueue *q;
4743   struct MeshTunnel *t;
4744   struct MeshTransmissionDescriptor *info;
4745   struct MeshTunnelChildInfo *cinfo;
4746   struct GNUNET_MESH_Unicast *ucast;
4747   struct GNUNET_MESH_ToOrigin *to_orig;
4748   struct GNUNET_MESH_Multicast *mcast;
4749   struct GNUNET_PeerIdentity id;
4750   uint32_t pid;
4751   uint32_t ack;
4752
4753   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "*********   selecting message\n");
4754   for (q = peer->queue_head; NULL != q; q = q->next)
4755   {
4756     t = q->tunnel;
4757     info = q->cls;
4758     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
4759                 "*********     %s\n",
4760                 GNUNET_MESH_DEBUG_M2S(q->type));
4761     switch (q->type)
4762     {
4763       case GNUNET_MESSAGE_TYPE_MESH_UNICAST:
4764         ucast = (struct GNUNET_MESH_Unicast *) info->mesh_data->data;
4765         pid = ntohl (ucast->pid);
4766         GNUNET_PEER_resolve (info->peer->id, &id);
4767         cinfo = tunnel_get_neighbor_fc(t, &id);
4768         ack = cinfo->fwd_ack;
4769         break;
4770       case GNUNET_MESSAGE_TYPE_MESH_TO_ORIGIN:
4771         to_orig = (struct GNUNET_MESH_ToOrigin *) info->mesh_data->data;
4772         pid = ntohl (to_orig->pid);
4773         ack = t->bck_ack;
4774         break;
4775       case GNUNET_MESSAGE_TYPE_MESH_MULTICAST:
4776         mcast = (struct GNUNET_MESH_Multicast *) info->mesh_data->data;
4777         if (GNUNET_MESSAGE_TYPE_MESH_MULTICAST != ntohs(mcast->header.type)) 
4778         {
4779           // Not a multicast payload: multicast control traffic (destroy, etc)
4780           return q;
4781         }
4782         pid = ntohl (mcast->pid);
4783         GNUNET_PEER_resolve (info->peer->id, &id);
4784         cinfo = tunnel_get_neighbor_fc(t, &id);
4785         ack = cinfo->fwd_ack;
4786         break;
4787       default:
4788         GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
4789                     "*********   OK!\n");
4790         return q;
4791     }
4792         GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
4793                     "*********     ACK: %u, PID: %u\n",
4794                     ack, pid);
4795     if (GNUNET_NO == GMC_is_pid_bigger(pid, ack))
4796     {
4797       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
4798                   "*********   OK!\n");
4799       return q;
4800     }
4801     else
4802     {
4803       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
4804                   "*********     NEXT!\n");
4805     }
4806   }
4807   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
4808                 "*********   nothing found\n");
4809   return NULL;
4810 }
4811
4812
4813 /**
4814   * Core callback to write a queued packet to core buffer
4815   *
4816   * @param cls Closure (peer info).
4817   * @param size Number of bytes available in buf.
4818   * @param buf Where the to write the message.
4819   *
4820   * @return number of bytes written to buf
4821   */
4822 static size_t
4823 queue_send (void *cls, size_t size, void *buf)
4824 {
4825     struct MeshPeerInfo *peer = cls;
4826     struct GNUNET_MessageHeader *msg;
4827     struct MeshPeerQueue *queue;
4828     struct MeshTunnel *t;
4829     struct MeshTunnelChildInfo *cinfo;
4830     struct GNUNET_PeerIdentity dst_id;
4831     size_t data_size;
4832
4833     peer->core_transmit = NULL;
4834     cinfo = NULL;
4835
4836     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "********* Queue send\n");
4837     queue = queue_get_next (peer);
4838
4839     /* Queue has no internal mesh traffic nor sendable payload */
4840     if (NULL == queue)
4841     {
4842       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "*********   not ready, return\n");
4843       if (NULL == peer->queue_head)
4844         GNUNET_break (0); // Should've been canceled
4845       return 0;
4846     }
4847     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "*********   not empty\n");
4848
4849     GNUNET_PEER_resolve (peer->id, &dst_id);
4850     /* Check if buffer size is enough for the message */
4851     if (queue->size > size)
4852     {
4853         GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
4854                     "*********   not enough room, reissue\n");
4855         peer->core_transmit =
4856             GNUNET_CORE_notify_transmit_ready (core_handle,
4857                                                0,
4858                                                0,
4859                                                GNUNET_TIME_UNIT_FOREVER_REL,
4860                                                &dst_id,
4861                                                queue->size,
4862                                                &queue_send,
4863                                                peer);
4864         return 0;
4865     }
4866     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "*********   size ok\n");
4867
4868     t = queue->tunnel;
4869     if (GNUNET_MESSAGE_TYPE_MESH_UNICAST == queue->type)
4870     {
4871       t->fwd_queue_n--;
4872       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
4873                   "*********   unicast: t->q (%u/%u)\n",
4874                   t->fwd_queue_n, t->fwd_queue_max);
4875     }
4876     else if (GNUNET_MESSAGE_TYPE_MESH_TO_ORIGIN == queue->type)
4877     {
4878       t->bck_queue_n--;
4879       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "*********   to origin\n");
4880     }
4881
4882     /* Fill buf */
4883     switch (queue->type)
4884     {
4885       case 0:
4886       case GNUNET_MESSAGE_TYPE_MESH_ACK:
4887       case GNUNET_MESSAGE_TYPE_MESH_PATH_BROKEN:
4888       case GNUNET_MESSAGE_TYPE_MESH_PATH_DESTROY:
4889       case GNUNET_MESSAGE_TYPE_MESH_TUNNEL_DESTROY:
4890         GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
4891                     "*********   raw: %s\n",
4892                     GNUNET_MESH_DEBUG_M2S (queue->type));
4893         /* Fall through */
4894       case GNUNET_MESSAGE_TYPE_MESH_UNICAST:
4895       case GNUNET_MESSAGE_TYPE_MESH_TO_ORIGIN:
4896         data_size = send_core_data_raw (queue->cls, size, buf);
4897         msg = (struct GNUNET_MessageHeader *) buf;
4898         switch (ntohs (msg->type)) // Type of preconstructed message
4899         {
4900           case GNUNET_MESSAGE_TYPE_MESH_UNICAST:
4901             tunnel_send_fwd_ack (t, GNUNET_MESSAGE_TYPE_MESH_UNICAST);
4902             break;
4903           case GNUNET_MESSAGE_TYPE_MESH_TO_ORIGIN:
4904             tunnel_send_bck_ack (t, GNUNET_MESSAGE_TYPE_MESH_TO_ORIGIN);
4905             break;
4906           default:
4907               break;
4908         }
4909         break;
4910       case GNUNET_MESSAGE_TYPE_MESH_MULTICAST:
4911         GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "*********   multicast\n");
4912         {
4913           struct MeshTransmissionDescriptor *info = queue->cls;
4914
4915           if ((1 == info->mesh_data->reference_counter
4916               && GNUNET_YES == t->speed_min)
4917               ||
4918               (info->mesh_data->total_out == info->mesh_data->reference_counter
4919               && GNUNET_NO == t->speed_min))
4920           {
4921             GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
4922                         "*********   considered sent\n");
4923             t->fwd_queue_n--;
4924           }
4925         }
4926         data_size = send_core_data_multicast(queue->cls, size, buf);
4927         tunnel_send_fwd_ack (t, GNUNET_MESSAGE_TYPE_MESH_MULTICAST);
4928         break;
4929       case GNUNET_MESSAGE_TYPE_MESH_PATH_CREATE:
4930         GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "*********   path create\n");
4931         data_size = send_core_path_create (queue->cls, size, buf);
4932         break;
4933       case GNUNET_MESSAGE_TYPE_MESH_PATH_ACK:
4934         GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "*********   path ack\n");
4935         data_size = send_core_path_ack (queue->cls, size, buf);
4936         break;
4937       case GNUNET_MESSAGE_TYPE_MESH_PATH_KEEPALIVE:
4938         GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "*********   path keepalive\n");
4939         data_size = send_core_data_multicast (queue->cls, size, buf);
4940         break;
4941       default:
4942         GNUNET_break (0);
4943         GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
4944                     "*********   type unknown: %u\n",
4945                     queue->type);
4946         data_size = 0;
4947     }
4948     switch (queue->type)
4949     {
4950       case GNUNET_MESSAGE_TYPE_MESH_UNICAST:
4951       case GNUNET_MESSAGE_TYPE_MESH_TO_ORIGIN:
4952       case GNUNET_MESSAGE_TYPE_MESH_MULTICAST:
4953         cinfo = tunnel_get_neighbor_fc (t, &dst_id);
4954         if (cinfo->send_buffer[cinfo->send_buffer_start] != queue)
4955         {
4956           GNUNET_break (0);
4957           GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
4958                       "at pos %u (%p) != %p\n",
4959                       cinfo->send_buffer_start,
4960                       cinfo->send_buffer[cinfo->send_buffer_start],
4961                       queue);
4962         }
4963         if (cinfo->send_buffer_n > 0)
4964         {
4965           cinfo->send_buffer[cinfo->send_buffer_start] = NULL;
4966           cinfo->send_buffer_n--;
4967           cinfo->send_buffer_start++;
4968           cinfo->send_buffer_start %= t->fwd_queue_max;
4969         }
4970         else
4971         {
4972           GNUNET_break (0);
4973         }
4974         break;
4975       default:
4976         break;
4977     }
4978
4979     /* Free queue, but cls was freed by send_core_* */
4980     queue_destroy (queue, GNUNET_NO);
4981
4982     if (GNUNET_YES == t->destroy)
4983     {
4984       // FIXME fc tunnel destroy all pending traffic? wait for it?
4985       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "*********  destroying tunnel!\n");
4986       tunnel_destroy (t);
4987     }
4988
4989     /* If more data in queue, send next */
4990     queue = queue_get_next(peer);
4991     if (NULL != queue)
4992     {
4993         struct GNUNET_PeerIdentity id;
4994
4995         GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "*********   more data!\n");
4996         GNUNET_PEER_resolve (peer->id, &id);
4997         peer->core_transmit =
4998             GNUNET_CORE_notify_transmit_ready(core_handle,
4999                                               0,
5000                                               0,
5001                                               GNUNET_TIME_UNIT_FOREVER_REL,
5002                                               &id,
5003                                               queue->size,
5004                                               &queue_send,
5005                                               peer);
5006     }
5007     else
5008     {
5009       if (NULL != peer->queue_head)
5010       {
5011         GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
5012                     "*********   %s stalled\n",
5013                     GNUNET_i2s(&my_full_id));
5014         if (NULL == cinfo)
5015           cinfo = tunnel_get_neighbor_fc (t, &dst_id);
5016         cinfo->fc_poll = GNUNET_SCHEDULER_add_delayed(GNUNET_TIME_UNIT_SECONDS,
5017                                                      &tunnel_poll, cinfo);
5018       }
5019     }
5020     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "*********   return %d\n", data_size);
5021     return data_size;
5022 }
5023
5024
5025 /**
5026  * @brief Queue and pass message to core when possible.
5027  * 
5028  * If type is payload (UNICAST, TO_ORIGIN, MULTICAST) checks for queue status
5029  * and accounts for it. In case the queue is full, the message is dropped and
5030  * a break issued.
5031  * 
5032  * Otherwise, message is treated as internal and allowed to go regardless of 
5033  * queue status.
5034  *
5035  * @param cls Closure (@c type dependant). It will be used by queue_send to
5036  *            build the message to be sent if not already prebuilt.
5037  * @param type Type of the message, 0 for a raw message.
5038  * @param size Size of the message.
5039  * @param dst Neighbor to send message to.
5040  * @param t Tunnel this message belongs to.
5041  */
5042 static void
5043 queue_add (void *cls, uint16_t type, size_t size,
5044            struct MeshPeerInfo *dst, struct MeshTunnel *t)
5045 {
5046   struct MeshPeerQueue *queue;
5047   struct MeshTunnelChildInfo *cinfo;
5048   struct GNUNET_PeerIdentity id;
5049   unsigned int *max;
5050   unsigned int *n;
5051   unsigned int i;
5052
5053   n = NULL;
5054   if (GNUNET_MESSAGE_TYPE_MESH_UNICAST == type ||
5055       GNUNET_MESSAGE_TYPE_MESH_MULTICAST == type)
5056   {
5057     n = &t->fwd_queue_n;
5058     max = &t->fwd_queue_max;
5059   }
5060   else if (GNUNET_MESSAGE_TYPE_MESH_TO_ORIGIN == type)
5061   {
5062     n = &t->bck_queue_n;
5063     max = &t->bck_queue_max;
5064   }
5065   if (NULL != n) {
5066     if (*n >= *max)
5067     {
5068       if (NULL == t->owner)
5069         GNUNET_break_op(0);       // TODO: kill connection?
5070       else
5071         GNUNET_break(0);
5072       GNUNET_STATISTICS_update(stats, "# messages dropped (buffer full)",
5073                                1, GNUNET_NO);
5074       return;                       // Drop message
5075     }
5076     (*n)++;
5077   }
5078   queue = GNUNET_malloc (sizeof (struct MeshPeerQueue));
5079   queue->cls = cls;
5080   queue->type = type;
5081   queue->size = size;
5082   queue->peer = dst;
5083   queue->tunnel = t;
5084   GNUNET_CONTAINER_DLL_insert_tail (dst->queue_head, dst->queue_tail, queue);
5085   GNUNET_PEER_resolve (dst->id, &id);
5086   if (NULL == dst->core_transmit)
5087   {
5088       dst->core_transmit =
5089           GNUNET_CORE_notify_transmit_ready (core_handle,
5090                                              0,
5091                                              0,
5092                                              GNUNET_TIME_UNIT_FOREVER_REL,
5093                                              &id,
5094                                              size,
5095                                              &queue_send,
5096                                              dst);
5097   }
5098   if (NULL == n) // Is this internal mesh traffic?
5099     return;
5100
5101   // It's payload, keep track of buffer per peer.
5102   cinfo = tunnel_get_neighbor_fc(t, &id);
5103   i = (cinfo->send_buffer_start + cinfo->send_buffer_n) % t->fwd_queue_max;
5104   if (NULL != cinfo->send_buffer[i])
5105   {
5106     GNUNET_break (cinfo->send_buffer_n == t->fwd_queue_max); // aka i == start
5107     queue_destroy (cinfo->send_buffer[cinfo->send_buffer_start], GNUNET_YES);
5108     cinfo->send_buffer_start++;
5109     cinfo->send_buffer_start %= t->fwd_queue_max;
5110   }
5111   else
5112   {
5113     cinfo->send_buffer_n++;
5114   }
5115   cinfo->send_buffer[i] = queue;
5116   if (cinfo->send_buffer_n > t->fwd_queue_max)
5117   {
5118     GNUNET_break (0);
5119     cinfo->send_buffer_n = t->fwd_queue_max;
5120   }
5121 }
5122
5123
5124 /******************************************************************************/
5125 /********************      MESH NETWORK HANDLERS     **************************/
5126 /******************************************************************************/
5127
5128
5129 /**
5130  * Core handler for path creation
5131  *
5132  * @param cls closure
5133  * @param message message
5134  * @param peer peer identity this notification is about
5135  * @param atsi performance data
5136  * @param atsi_count number of records in 'atsi'
5137  *
5138  * @return GNUNET_OK to keep the connection open,
5139  *         GNUNET_SYSERR to close it (signal serious error)
5140  */
5141 static int
5142 handle_mesh_path_create (void *cls, const struct GNUNET_PeerIdentity *peer,
5143                          const struct GNUNET_MessageHeader *message,
5144                          const struct GNUNET_ATS_Information *atsi,
5145                          unsigned int atsi_count)
5146 {
5147   unsigned int own_pos;
5148   uint16_t size;
5149   uint16_t i;
5150   MESH_TunnelNumber tid;
5151   struct GNUNET_MESH_ManipulatePath *msg;
5152   struct GNUNET_PeerIdentity *pi;
5153   struct GNUNET_HashCode hash;
5154   struct MeshPeerPath *path;
5155   struct MeshPeerInfo *dest_peer_info;
5156   struct MeshPeerInfo *orig_peer_info;
5157   struct MeshTunnel *t;
5158
5159   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
5160               "Received a path create msg [%s]\n",
5161               GNUNET_i2s (&my_full_id));
5162   size = ntohs (message->size);
5163   if (size < sizeof (struct GNUNET_MESH_ManipulatePath))
5164   {
5165     GNUNET_break_op (0);
5166     return GNUNET_OK;
5167   }
5168
5169   size -= sizeof (struct GNUNET_MESH_ManipulatePath);
5170   if (size % sizeof (struct GNUNET_PeerIdentity))
5171   {
5172     GNUNET_break_op (0);
5173     return GNUNET_OK;
5174   }
5175   size /= sizeof (struct GNUNET_PeerIdentity);
5176   if (size < 2)
5177   {
5178     GNUNET_break_op (0);
5179     return GNUNET_OK;
5180   }
5181   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "    path has %u hops.\n", size);
5182   msg = (struct GNUNET_MESH_ManipulatePath *) message;
5183
5184   tid = ntohl (msg->tid);
5185   pi = (struct GNUNET_PeerIdentity *) &msg[1];
5186   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
5187               "    path is for tunnel %s [%X].\n", GNUNET_i2s (pi), tid);
5188   t = tunnel_get (pi, tid);
5189   if (NULL == t) // FIXME only for INCOMING tunnels?
5190   {
5191     uint32_t opt;
5192
5193     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  Creating tunnel\n");
5194     t = tunnel_new (GNUNET_PEER_intern (pi), tid, NULL, 0);
5195     if (NULL == t)
5196     {
5197       // FIXME notify failure
5198       return GNUNET_OK;
5199     }
5200     opt = ntohl (msg->opt);
5201     t->speed_min = (0 != (opt & MESH_TUNNEL_OPT_SPEED_MIN)) ?
5202                    GNUNET_YES : GNUNET_NO;
5203     if (0 != (opt & MESH_TUNNEL_OPT_NOBUFFER))
5204     {
5205       t->nobuffer = GNUNET_YES;
5206       t->last_fwd_ack = t->fwd_pid + 1;
5207     }
5208     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
5209                 "  speed_min: %d, nobuffer:%d\n",
5210                 t->speed_min, t->nobuffer);
5211
5212     if (GNUNET_YES == t->nobuffer)
5213     {
5214       t->bck_queue_max = 1;
5215       t->fwd_queue_max = 1;
5216     }
5217
5218     // FIXME only assign a local tid if a local client is interested (on demand)
5219     while (NULL != tunnel_get_incoming (next_local_tid))
5220       next_local_tid = (next_local_tid + 1) | GNUNET_MESH_LOCAL_TUNNEL_ID_SERV;
5221     t->local_tid_dest = next_local_tid++;
5222     next_local_tid = next_local_tid | GNUNET_MESH_LOCAL_TUNNEL_ID_SERV;
5223     // FIXME end
5224
5225     tunnel_reset_timeout (t);
5226     GNUNET_CRYPTO_hash (&t->local_tid_dest, sizeof (MESH_TunnelNumber), &hash);
5227     if (GNUNET_OK !=
5228         GNUNET_CONTAINER_multihashmap_put (incoming_tunnels, &hash, t,
5229                                            GNUNET_CONTAINER_MULTIHASHMAPOPTION_UNIQUE_FAST))
5230     {
5231       tunnel_destroy (t);
5232       GNUNET_break (0);
5233       return GNUNET_OK;
5234     }
5235   }
5236   dest_peer_info =
5237       GNUNET_CONTAINER_multihashmap_get (peers, &pi[size - 1].hashPubKey);
5238   if (NULL == dest_peer_info)
5239   {
5240     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
5241                 "  Creating PeerInfo for destination.\n");
5242     dest_peer_info = GNUNET_malloc (sizeof (struct MeshPeerInfo));
5243     dest_peer_info->id = GNUNET_PEER_intern (&pi[size - 1]);
5244     GNUNET_CONTAINER_multihashmap_put (peers, &pi[size - 1].hashPubKey,
5245                                        dest_peer_info,
5246                                        GNUNET_CONTAINER_MULTIHASHMAPOPTION_UNIQUE_ONLY);
5247   }
5248   orig_peer_info = GNUNET_CONTAINER_multihashmap_get (peers, &pi->hashPubKey);
5249   if (NULL == orig_peer_info)
5250   {
5251     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
5252                 "  Creating PeerInfo for origin.\n");
5253     orig_peer_info = GNUNET_malloc (sizeof (struct MeshPeerInfo));
5254     orig_peer_info->id = GNUNET_PEER_intern (pi);
5255     GNUNET_CONTAINER_multihashmap_put (peers, &pi->hashPubKey, orig_peer_info,
5256                                        GNUNET_CONTAINER_MULTIHASHMAPOPTION_UNIQUE_ONLY);
5257   }
5258   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  Creating path...\n");
5259   path = path_new (size);
5260   own_pos = 0;
5261   for (i = 0; i < size; i++)
5262   {
5263     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  ... adding %s\n",
5264                 GNUNET_i2s (&pi[i]));
5265     path->peers[i] = GNUNET_PEER_intern (&pi[i]);
5266     if (path->peers[i] == myid)
5267       own_pos = i;
5268   }
5269   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  Own position: %u\n", own_pos);
5270   if (own_pos == 0)
5271   {
5272     /* cannot be self, must be 'not found' */
5273     /* create path: self not found in path through self */
5274     GNUNET_break_op (0);
5275     path_destroy (path);
5276     tunnel_destroy (t);
5277     return GNUNET_OK;
5278   }
5279   path_add_to_peers (path, GNUNET_NO);
5280   tunnel_add_path (t, path, own_pos);
5281   if (own_pos == size - 1)
5282   {
5283     /* It is for us! Send ack. */
5284     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  It's for us!\n");
5285     peer_info_add_path_to_origin (orig_peer_info, path, GNUNET_NO);
5286     if (NULL == t->peers)
5287     {
5288       /* New tunnel! Notify clients on first payload message. */
5289       t->peers = GNUNET_CONTAINER_multihashmap_create (4, GNUNET_NO);
5290     }
5291     GNUNET_break (GNUNET_SYSERR !=
5292                   GNUNET_CONTAINER_multihashmap_put (t->peers,
5293                                                      &my_full_id.hashPubKey,
5294                                                      peer_info_get
5295                                                      (&my_full_id),
5296                                                      GNUNET_CONTAINER_MULTIHASHMAPOPTION_REPLACE));
5297     send_path_ack (t);
5298   }
5299   else
5300   {
5301     struct MeshPeerPath *path2;
5302
5303     /* It's for somebody else! Retransmit. */
5304     path2 = path_duplicate (path);
5305     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  Retransmitting.\n");
5306     peer_info_add_path (dest_peer_info, path2, GNUNET_NO);
5307     path2 = path_duplicate (path);
5308     peer_info_add_path_to_origin (orig_peer_info, path2, GNUNET_NO);
5309     send_create_path (dest_peer_info, path, t);
5310   }
5311   return GNUNET_OK;
5312 }
5313
5314
5315 /**
5316  * Core handler for path destruction
5317  *
5318  * @param cls closure
5319  * @param message message
5320  * @param peer peer identity this notification is about
5321  * @param atsi performance data
5322  * @param atsi_count number of records in 'atsi'
5323  *
5324  * @return GNUNET_OK to keep the connection open,
5325  *         GNUNET_SYSERR to close it (signal serious error)
5326  */
5327 static int
5328 handle_mesh_path_destroy (void *cls, const struct GNUNET_PeerIdentity *peer,
5329                           const struct GNUNET_MessageHeader *message,
5330                           const struct GNUNET_ATS_Information *atsi,
5331                           unsigned int atsi_count)
5332 {
5333   struct GNUNET_MESH_ManipulatePath *msg;
5334   struct GNUNET_PeerIdentity *pi;
5335   struct MeshPeerPath *path;
5336   struct MeshTunnel *t;
5337   unsigned int own_pos;
5338   unsigned int i;
5339   size_t size;
5340
5341   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
5342               "Received a PATH DESTROY msg from %s\n", GNUNET_i2s (peer));
5343   size = ntohs (message->size);
5344   if (size < sizeof (struct GNUNET_MESH_ManipulatePath))
5345   {
5346     GNUNET_break_op (0);
5347     return GNUNET_OK;
5348   }
5349
5350   size -= sizeof (struct GNUNET_MESH_ManipulatePath);
5351   if (size % sizeof (struct GNUNET_PeerIdentity))
5352   {
5353     GNUNET_break_op (0);
5354     return GNUNET_OK;
5355   }
5356   size /= sizeof (struct GNUNET_PeerIdentity);
5357   if (size < 2)
5358   {
5359     GNUNET_break_op (0);
5360     return GNUNET_OK;
5361   }
5362   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "    path has %u hops.\n", size);
5363
5364   msg = (struct GNUNET_MESH_ManipulatePath *) message;
5365   pi = (struct GNUNET_PeerIdentity *) &msg[1];
5366   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
5367               "    path is for tunnel %s [%X].\n", GNUNET_i2s (pi),
5368               msg->tid);
5369   t = tunnel_get (pi, ntohl (msg->tid));
5370   if (NULL == t)
5371   {
5372     /* TODO notify back: we don't know this tunnel */
5373     GNUNET_break_op (0);
5374     return GNUNET_OK;
5375   }
5376   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  Creating path...\n");
5377   path = path_new (size);
5378   own_pos = 0;
5379   for (i = 0; i < size; i++)
5380   {
5381     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  ... adding %s\n",
5382                 GNUNET_i2s (&pi[i]));
5383     path->peers[i] = GNUNET_PEER_intern (&pi[i]);
5384     if (path->peers[i] == myid)
5385       own_pos = i;
5386   }
5387   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  Own position: %u\n", own_pos);
5388   if (own_pos < path->length - 1)
5389     send_prebuilt_message (message, &pi[own_pos + 1], t);
5390   else
5391     send_client_tunnel_disconnect(t, NULL);
5392
5393   tunnel_delete_peer (t, path->peers[path->length - 1]);
5394   path_destroy (path);
5395   return GNUNET_OK;
5396 }
5397
5398
5399 /**
5400  * Core handler for notifications of broken paths
5401  *
5402  * @param cls closure
5403  * @param message message
5404  * @param peer peer identity this notification is about
5405  * @param atsi performance data
5406  * @param atsi_count number of records in 'atsi'
5407  *
5408  * @return GNUNET_OK to keep the connection open,
5409  *         GNUNET_SYSERR to close it (signal serious error)
5410  */
5411 static int
5412 handle_mesh_path_broken (void *cls, const struct GNUNET_PeerIdentity *peer,
5413                          const struct GNUNET_MessageHeader *message,
5414                          const struct GNUNET_ATS_Information *atsi,
5415                          unsigned int atsi_count)
5416 {
5417   struct GNUNET_MESH_PathBroken *msg;
5418   struct MeshTunnel *t;
5419
5420   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
5421               "Received a PATH BROKEN msg from %s\n", GNUNET_i2s (peer));
5422   msg = (struct GNUNET_MESH_PathBroken *) message;
5423   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  regarding %s\n",
5424               GNUNET_i2s (&msg->peer1));
5425   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  regarding %s\n",
5426               GNUNET_i2s (&msg->peer2));
5427   t = tunnel_get (&msg->oid, ntohl (msg->tid));
5428   if (NULL == t)
5429   {
5430     GNUNET_break_op (0);
5431     return GNUNET_OK;
5432   }
5433   tunnel_notify_connection_broken (t, GNUNET_PEER_search (&msg->peer1),
5434                                    GNUNET_PEER_search (&msg->peer2));
5435   return GNUNET_OK;
5436
5437 }
5438
5439
5440 /**
5441  * Core handler for tunnel destruction
5442  *
5443  * @param cls closure
5444  * @param message message
5445  * @param peer peer identity this notification is about
5446  * @param atsi performance data
5447  * @param atsi_count number of records in 'atsi'
5448  *
5449  * @return GNUNET_OK to keep the connection open,
5450  *         GNUNET_SYSERR to close it (signal serious error)
5451  */
5452 static int
5453 handle_mesh_tunnel_destroy (void *cls, const struct GNUNET_PeerIdentity *peer,
5454                             const struct GNUNET_MessageHeader *message,
5455                             const struct GNUNET_ATS_Information *atsi,
5456                             unsigned int atsi_count)
5457 {
5458   struct GNUNET_MESH_TunnelDestroy *msg;
5459   struct MeshTunnel *t;
5460
5461   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
5462               "Got a TUNNEL DESTROY packet from %s\n", GNUNET_i2s (peer));
5463   msg = (struct GNUNET_MESH_TunnelDestroy *) message;
5464   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  for tunnel %s [%u]\n",
5465               GNUNET_i2s (&msg->oid), ntohl (msg->tid));
5466   t = tunnel_get (&msg->oid, ntohl (msg->tid));
5467   if (NULL == t)
5468   {
5469     /* Probably already got the message from another path,
5470      * destroyed the tunnel and retransmitted to children.
5471      * Safe to ignore.
5472      */
5473     GNUNET_STATISTICS_update (stats, "# control on unknown tunnel", 1, GNUNET_NO);
5474     return GNUNET_OK;
5475   }
5476   if (t->id.oid == myid)
5477   {
5478     GNUNET_break_op (0);
5479     return GNUNET_OK;
5480   }
5481   if (t->local_tid_dest >= GNUNET_MESH_LOCAL_TUNNEL_ID_SERV)
5482   {
5483     /* Tunnel was incoming, notify clients */
5484     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "INCOMING TUNNEL %X %X\n",
5485                 t->local_tid, t->local_tid_dest);
5486     send_clients_tunnel_destroy (t);
5487   }
5488   tunnel_send_destroy (t);
5489   t->destroy = GNUNET_YES;
5490   // TODO: add timeout to destroy the tunnel anyway
5491   return GNUNET_OK;
5492 }
5493
5494
5495 /**
5496  * Core handler for mesh network traffic going from the origin to a peer
5497  *
5498  * @param cls closure
5499  * @param peer peer identity this notification is about
5500  * @param message message
5501  * @param atsi performance data
5502  * @param atsi_count number of records in 'atsi'
5503  * @return GNUNET_OK to keep the connection open,
5504  *         GNUNET_SYSERR to close it (signal serious error)
5505  */
5506 static int
5507 handle_mesh_data_unicast (void *cls, const struct GNUNET_PeerIdentity *peer,
5508                           const struct GNUNET_MessageHeader *message,
5509                           const struct GNUNET_ATS_Information *atsi,
5510                           unsigned int atsi_count)
5511 {
5512   struct GNUNET_MESH_Unicast *msg;
5513   struct GNUNET_PeerIdentity *neighbor;
5514   struct MeshTunnelChildInfo *cinfo;
5515   struct MeshTunnel *t;
5516   GNUNET_PEER_Id dest_id;
5517   uint32_t pid;
5518   uint32_t ttl;
5519   size_t size;
5520
5521   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "got a unicast packet from %s\n",
5522               GNUNET_i2s (peer));
5523   /* Check size */
5524   size = ntohs (message->size);
5525   if (size <
5526       sizeof (struct GNUNET_MESH_Unicast) +
5527       sizeof (struct GNUNET_MessageHeader))
5528   {
5529     GNUNET_break (0);
5530     return GNUNET_OK;
5531   }
5532   msg = (struct GNUNET_MESH_Unicast *) message;
5533   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, " of type %s\n",
5534               GNUNET_MESH_DEBUG_M2S (ntohs (msg[1].header.type)));
5535   /* Check tunnel */
5536   t = tunnel_get (&msg->oid, ntohl (msg->tid));
5537   if (NULL == t)
5538   {
5539     /* TODO notify back: we don't know this tunnel */
5540     GNUNET_STATISTICS_update (stats, "# data on unknown tunnel", 1, GNUNET_NO);
5541     GNUNET_break_op (0);
5542     return GNUNET_OK;
5543   }
5544   pid = ntohl (msg->pid);
5545   if (t->fwd_pid == pid)
5546   {
5547     GNUNET_STATISTICS_update (stats, "# duplicate PID drops", 1, GNUNET_NO);
5548     GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
5549                 " Already seen pid %u, DROPPING!\n", pid);
5550     return GNUNET_OK;
5551   }
5552   else
5553   {
5554     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
5555                 " pid %u not seen yet, forwarding\n", pid);
5556   }
5557
5558   t->skip += (pid - t->fwd_pid) - 1;
5559   t->fwd_pid = pid;
5560
5561   if (GMC_is_pid_bigger (pid, t->last_fwd_ack))
5562   {
5563     GNUNET_STATISTICS_update (stats, "# unsolicited unicast", 1, GNUNET_NO);
5564     GNUNET_break_op (0);
5565     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
5566                 "Received PID %u, ACK %u\n",
5567                 pid, t->last_fwd_ack);
5568     return GNUNET_OK;
5569   }
5570
5571   tunnel_reset_timeout (t);
5572   dest_id = GNUNET_PEER_search (&msg->destination);
5573   if (dest_id == myid)
5574   {
5575     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
5576                 "  it's for us! sending to clients...\n");
5577     GNUNET_STATISTICS_update (stats, "# unicast received", 1, GNUNET_NO);
5578     send_subscribed_clients (message, &msg[1].header, t);
5579     tunnel_send_fwd_ack (t, GNUNET_MESSAGE_TYPE_MESH_UNICAST);
5580     return GNUNET_OK;
5581   }
5582   ttl = ntohl (msg->ttl);
5583   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "   ttl: %u\n", ttl);
5584   if (ttl == 0)
5585   {
5586     GNUNET_STATISTICS_update (stats, "# TTL drops", 1, GNUNET_NO);
5587     GNUNET_log (GNUNET_ERROR_TYPE_WARNING, " TTL is 0, DROPPING!\n");
5588     tunnel_send_fwd_ack (t, GNUNET_MESSAGE_TYPE_MESH_ACK);
5589     return GNUNET_OK;
5590   }
5591   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
5592               "  not for us, retransmitting...\n");
5593
5594   neighbor = tree_get_first_hop (t->tree, dest_id);
5595   cinfo = tunnel_get_neighbor_fc (t, neighbor);
5596   cinfo->pid = pid;
5597   GNUNET_CONTAINER_multihashmap_iterate (t->children_fc,
5598                                          &tunnel_add_skip,
5599                                          &neighbor);
5600   if (GNUNET_YES == t->nobuffer &&
5601       GNUNET_YES == GMC_is_pid_bigger (pid, cinfo->fwd_ack))
5602   {
5603     GNUNET_STATISTICS_update (stats, "# unsolicited unicast", 1, GNUNET_NO);
5604     GNUNET_log (GNUNET_ERROR_TYPE_INFO, "  %u > %u\n", pid, cinfo->fwd_ack);
5605     GNUNET_break_op (0);
5606     return GNUNET_OK;
5607   }
5608   send_prebuilt_message (message, neighbor, t);
5609   GNUNET_STATISTICS_update (stats, "# unicast forwarded", 1, GNUNET_NO);
5610   return GNUNET_OK;
5611 }
5612
5613
5614 /**
5615  * Core handler for mesh network traffic going from the origin to all peers
5616  *
5617  * @param cls closure
5618  * @param message message
5619  * @param peer peer identity this notification is about
5620  * @param atsi performance data
5621  * @param atsi_count number of records in 'atsi'
5622  * @return GNUNET_OK to keep the connection open,
5623  *         GNUNET_SYSERR to close it (signal serious error)
5624  *
5625  * TODO: Check who we got this from, to validate route.
5626  */
5627 static int
5628 handle_mesh_data_multicast (void *cls, const struct GNUNET_PeerIdentity *peer,
5629                             const struct GNUNET_MessageHeader *message,
5630                             const struct GNUNET_ATS_Information *atsi,
5631                             unsigned int atsi_count)
5632 {
5633   struct GNUNET_MESH_Multicast *msg;
5634   struct MeshTunnel *t;
5635   size_t size;
5636   uint32_t pid;
5637
5638   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "got a multicast packet from %s\n",
5639               GNUNET_i2s (peer));
5640   size = ntohs (message->size);
5641   if (sizeof (struct GNUNET_MESH_Multicast) +
5642       sizeof (struct GNUNET_MessageHeader) > size)
5643   {
5644     GNUNET_break_op (0);
5645     return GNUNET_OK;
5646   }
5647   msg = (struct GNUNET_MESH_Multicast *) message;
5648   t = tunnel_get (&msg->oid, ntohl (msg->tid));
5649
5650   if (NULL == t)
5651   {
5652     /* TODO notify that we dont know that tunnel */
5653     GNUNET_STATISTICS_update (stats, "# data on unknown tunnel", 1, GNUNET_NO);
5654     GNUNET_break_op (0);
5655     return GNUNET_OK;
5656   }
5657   pid = ntohl (msg->pid);
5658   if (t->fwd_pid == pid)
5659   {
5660     /* already seen this packet, drop */
5661     GNUNET_STATISTICS_update (stats, "# duplicate PID drops", 1, GNUNET_NO);
5662     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
5663                 " Already seen pid %u, DROPPING!\n", pid);
5664     tunnel_send_fwd_ack (t, GNUNET_MESSAGE_TYPE_MESH_ACK);
5665     return GNUNET_OK;
5666   }
5667   else
5668   {
5669     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
5670                 " pid %u not seen yet, forwarding\n", pid);
5671   }
5672   t->skip += (pid - t->fwd_pid) - 1;
5673   t->fwd_pid = pid;
5674   tunnel_reset_timeout (t);
5675
5676   /* Transmit to locally interested clients */
5677   if (NULL != t->peers &&
5678       GNUNET_CONTAINER_multihashmap_contains (t->peers, &my_full_id.hashPubKey))
5679   {
5680     GNUNET_STATISTICS_update (stats, "# multicast received", 1, GNUNET_NO);
5681     send_subscribed_clients (message, &msg[1].header, t);
5682     tunnel_send_fwd_ack(t, GNUNET_MESSAGE_TYPE_MESH_MULTICAST);
5683   }
5684   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "   ttl: %u\n", ntohl (msg->ttl));
5685   if (ntohl (msg->ttl) == 0)
5686   {
5687     GNUNET_STATISTICS_update (stats, "# TTL drops", 1, GNUNET_NO);
5688     GNUNET_log (GNUNET_ERROR_TYPE_WARNING, " TTL is 0, DROPPING!\n");
5689     tunnel_send_fwd_ack (t, GNUNET_MESSAGE_TYPE_MESH_ACK);
5690     return GNUNET_OK;
5691   }
5692   GNUNET_STATISTICS_update (stats, "# multicast forwarded", 1, GNUNET_NO);
5693   tunnel_send_multicast (t, message);
5694   return GNUNET_OK;
5695 }
5696
5697
5698 /**
5699  * Core handler for mesh network traffic toward the owner of a tunnel
5700  *
5701  * @param cls closure
5702  * @param message message
5703  * @param peer peer identity this notification is about
5704  * @param atsi performance data
5705  * @param atsi_count number of records in 'atsi'
5706  *
5707  * @return GNUNET_OK to keep the connection open,
5708  *         GNUNET_SYSERR to close it (signal serious error)
5709  */
5710 static int
5711 handle_mesh_data_to_orig (void *cls, const struct GNUNET_PeerIdentity *peer,
5712                           const struct GNUNET_MessageHeader *message,
5713                           const struct GNUNET_ATS_Information *atsi,
5714                           unsigned int atsi_count)
5715 {
5716   struct GNUNET_MESH_ToOrigin *msg;
5717   struct GNUNET_PeerIdentity id;
5718   struct MeshPeerInfo *peer_info;
5719   struct MeshTunnel *t;
5720   size_t size;
5721
5722
5723   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "got a ToOrigin packet from %s\n",
5724               GNUNET_i2s (peer));
5725   size = ntohs (message->size);
5726   if (size < sizeof (struct GNUNET_MESH_ToOrigin) +     /* Payload must be */
5727       sizeof (struct GNUNET_MessageHeader))     /* at least a header */
5728   {
5729     GNUNET_break_op (0);
5730     return GNUNET_OK;
5731   }
5732   msg = (struct GNUNET_MESH_ToOrigin *) message;
5733   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, " of type %s\n",
5734               GNUNET_MESH_DEBUG_M2S (ntohs (msg[1].header.type)));
5735   t = tunnel_get (&msg->oid, ntohl (msg->tid));
5736
5737   if (NULL == t)
5738   {
5739     /* TODO notify that we dont know this tunnel (whom)? */
5740     GNUNET_STATISTICS_update (stats, "# data on unknown tunnel", 1, GNUNET_NO);
5741     GNUNET_break_op (0);
5742     return GNUNET_OK;
5743   }
5744
5745   if (NULL != t->owner)
5746   {
5747     char cbuf[size];
5748     struct GNUNET_MESH_ToOrigin *copy;
5749
5750     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
5751                 "  it's for us! sending to clients...\n");
5752     /* TODO signature verification */
5753     memcpy (cbuf, message, size);
5754     copy = (struct GNUNET_MESH_ToOrigin *) cbuf;
5755     copy->tid = htonl (t->local_tid);
5756     GNUNET_STATISTICS_update (stats, "# to origin received", 1, GNUNET_NO);
5757     GNUNET_SERVER_notification_context_unicast (nc, t->owner->handle,
5758                                                 &copy->header, GNUNET_NO);
5759     tunnel_send_bck_ack (t, GNUNET_MESSAGE_TYPE_MESH_TO_ORIGIN);
5760     return GNUNET_OK;
5761   }
5762   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
5763               "  not for us, retransmitting...\n");
5764
5765   peer_info = peer_info_get (&msg->oid);
5766   if (NULL == peer_info)
5767   {
5768     /* unknown origin of tunnel */
5769     GNUNET_break (0);
5770     return GNUNET_OK;
5771   }
5772   GNUNET_PEER_resolve (tree_get_predecessor (t->tree), &id);
5773   send_prebuilt_message (message, &id, t);
5774   GNUNET_STATISTICS_update (stats, "# to origin forwarded", 1, GNUNET_NO);
5775
5776   return GNUNET_OK;
5777 }
5778
5779
5780 /**
5781  * Core handler for mesh network traffic point-to-point acks.
5782  *
5783  * @param cls closure
5784  * @param message message
5785  * @param peer peer identity this notification is about
5786  * @param atsi performance data
5787  * @param atsi_count number of records in 'atsi'
5788  *
5789  * @return GNUNET_OK to keep the connection open,
5790  *         GNUNET_SYSERR to close it (signal serious error)
5791  */
5792 static int
5793 handle_mesh_ack (void *cls, const struct GNUNET_PeerIdentity *peer,
5794                  const struct GNUNET_MessageHeader *message,
5795                  const struct GNUNET_ATS_Information *atsi,
5796                  unsigned int atsi_count)
5797 {
5798   struct GNUNET_MESH_ACK *msg;
5799   struct MeshTunnel *t;
5800   uint32_t ack;
5801
5802   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Got an ACK packet from %s!\n",
5803               GNUNET_i2s (peer));
5804   msg = (struct GNUNET_MESH_ACK *) message;
5805
5806   t = tunnel_get (&msg->oid, ntohl (msg->tid));
5807
5808   if (NULL == t)
5809   {
5810     /* TODO notify that we dont know this tunnel (whom)? */
5811     GNUNET_STATISTICS_update (stats, "# ack on unknown tunnel", 1, GNUNET_NO);
5812     GNUNET_break_op (0);
5813     return GNUNET_OK;
5814   }
5815   ack = ntohl (msg->pid);
5816
5817   /* Is this a forward or backward ACK? */
5818   if (tree_get_predecessor(t->tree) != GNUNET_PEER_search(peer))
5819   {
5820     struct MeshTunnelChildInfo *cinfo;
5821
5822     debug_bck_ack++;
5823     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  FWD ACK\n");
5824     cinfo = tunnel_get_neighbor_fc (t, peer);
5825     cinfo->fwd_ack = ack;
5826     tunnel_send_fwd_ack (t, GNUNET_MESSAGE_TYPE_MESH_ACK);
5827     tunnel_unlock_fwd_queues (t);
5828   }
5829   else
5830   {
5831     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  BCK ACK\n");
5832     t->bck_ack = ack;
5833     tunnel_send_bck_ack (t, GNUNET_MESSAGE_TYPE_MESH_ACK);
5834     tunnel_unlock_bck_queue (t);
5835   }
5836   return GNUNET_OK;
5837 }
5838
5839
5840 /**
5841  * Core handler for mesh network traffic point-to-point ack polls.
5842  *
5843  * @param cls closure
5844  * @param message message
5845  * @param peer peer identity this notification is about
5846  * @param atsi performance data
5847  * @param atsi_count number of records in 'atsi'
5848  *
5849  * @return GNUNET_OK to keep the connection open,
5850  *         GNUNET_SYSERR to close it (signal serious error)
5851  */
5852 static int
5853 handle_mesh_poll (void *cls, const struct GNUNET_PeerIdentity *peer,
5854                   const struct GNUNET_MessageHeader *message,
5855                   const struct GNUNET_ATS_Information *atsi,
5856                   unsigned int atsi_count)
5857 {
5858   struct GNUNET_MESH_Poll *msg;
5859   struct MeshTunnel *t;
5860
5861   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Got an POLL packet from %s!\n",
5862               GNUNET_i2s (peer));
5863
5864   msg = (struct GNUNET_MESH_Poll *) message;
5865
5866   t = tunnel_get (&msg->oid, ntohl (msg->tid));
5867
5868   if (NULL == t)
5869   {
5870     /* TODO notify that we dont know this tunnel (whom)? */
5871     GNUNET_STATISTICS_update (stats, "# poll on unknown tunnel", 1, GNUNET_NO);
5872     GNUNET_break_op (0);
5873     return GNUNET_OK;
5874   }
5875
5876   /* Is this a forward or backward ACK? */
5877   if (tree_get_predecessor(t->tree) != GNUNET_PEER_search(peer))
5878   {
5879     struct MeshTunnelChildInfo *cinfo;
5880
5881     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  from FWD\n");
5882     cinfo = tunnel_get_neighbor_fc (t, peer);
5883     cinfo->bck_ack = cinfo->pid; // mark as ready to send
5884     tunnel_send_bck_ack (t, GNUNET_MESSAGE_TYPE_MESH_POLL);
5885   }
5886   else
5887   {
5888     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  from BCK\n");
5889     tunnel_send_fwd_ack (t, GNUNET_MESSAGE_TYPE_MESH_POLL);
5890   }
5891
5892   return GNUNET_OK;
5893 }
5894
5895
5896 /**
5897  * Core handler for path ACKs
5898  *
5899  * @param cls closure
5900  * @param message message
5901  * @param peer peer identity this notification is about
5902  * @param atsi performance data
5903  * @param atsi_count number of records in 'atsi'
5904  *
5905  * @return GNUNET_OK to keep the connection open,
5906  *         GNUNET_SYSERR to close it (signal serious error)
5907  */
5908 static int
5909 handle_mesh_path_ack (void *cls, const struct GNUNET_PeerIdentity *peer,
5910                       const struct GNUNET_MessageHeader *message,
5911                       const struct GNUNET_ATS_Information *atsi,
5912                       unsigned int atsi_count)
5913 {
5914   struct GNUNET_MESH_PathACK *msg;
5915   struct GNUNET_PeerIdentity id;
5916   struct MeshPeerInfo *peer_info;
5917   struct MeshPeerPath *p;
5918   struct MeshTunnel *t;
5919
5920   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Received a path ACK msg [%s]\n",
5921               GNUNET_i2s (&my_full_id));
5922   msg = (struct GNUNET_MESH_PathACK *) message;
5923   t = tunnel_get (&msg->oid, ntohl(msg->tid));
5924   if (NULL == t)
5925   {
5926     /* TODO notify that we don't know the tunnel */
5927     GNUNET_STATISTICS_update (stats, "# control on unknown tunnel", 1, GNUNET_NO);
5928     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  don't know the tunnel %s [%X]!\n",
5929                 GNUNET_i2s (&msg->oid), ntohl(msg->tid));
5930     return GNUNET_OK;
5931   }
5932   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  on tunnel %s [%X]\n",
5933               GNUNET_i2s (&msg->oid), ntohl(msg->tid));
5934
5935   peer_info = peer_info_get (&msg->peer_id);
5936   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  by peer %s\n",
5937               GNUNET_i2s (&msg->peer_id));
5938   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  via peer %s\n",
5939               GNUNET_i2s (peer));
5940
5941   if (NULL != t->regex_ctx && t->regex_ctx->info->peer == peer_info->id)
5942   {
5943     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
5944                 "connect_by_string completed, stopping search\n");
5945     regex_cancel_search (t->regex_ctx);
5946     t->regex_ctx = NULL;
5947   }
5948
5949   /* Add paths to peers? */
5950   p = tree_get_path_to_peer (t->tree, peer_info->id);
5951   if (NULL != p)
5952   {
5953     path_add_to_peers (p, GNUNET_YES);
5954     path_destroy (p);
5955   }
5956   else
5957   {
5958     GNUNET_break (0);
5959   }
5960
5961   /* Message for us? */
5962   if (0 == memcmp (&msg->oid, &my_full_id, sizeof (struct GNUNET_PeerIdentity)))
5963   {
5964     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  It's for us!\n");
5965     if (NULL == t->owner)
5966     {
5967       GNUNET_break_op (0);
5968       return GNUNET_OK;
5969     }
5970     if (NULL != t->dht_get_type)
5971     {
5972       GNUNET_DHT_get_stop (t->dht_get_type);
5973       t->dht_get_type = NULL;
5974     }
5975     if (tree_get_status (t->tree, peer_info->id) != MESH_PEER_READY)
5976     {
5977       tree_set_status (t->tree, peer_info->id, MESH_PEER_READY);
5978       send_client_peer_connected (t, peer_info->id);
5979     }
5980     return GNUNET_OK;
5981   }
5982
5983   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
5984               "  not for us, retransmitting...\n");
5985   GNUNET_PEER_resolve (tree_get_predecessor (t->tree), &id);
5986   peer_info = peer_info_get (&msg->oid);
5987   if (NULL == peer_info)
5988   {
5989     /* If we know the tunnel, we should DEFINITELY know the peer */
5990     GNUNET_break (0);
5991     return GNUNET_OK;
5992   }
5993   send_prebuilt_message (message, &id, t);
5994   return GNUNET_OK;
5995 }
5996
5997
5998 /**
5999  * Core handler for mesh keepalives.
6000  *
6001  * @param cls closure
6002  * @param message message
6003  * @param peer peer identity this notification is about
6004  * @param atsi performance data
6005  * @param atsi_count number of records in 'atsi'
6006  * @return GNUNET_OK to keep the connection open,
6007  *         GNUNET_SYSERR to close it (signal serious error)
6008  *
6009  * TODO: Check who we got this from, to validate route.
6010  */
6011 static int
6012 handle_mesh_keepalive (void *cls, const struct GNUNET_PeerIdentity *peer,
6013                        const struct GNUNET_MessageHeader *message,
6014                        const struct GNUNET_ATS_Information *atsi,
6015                        unsigned int atsi_count)
6016 {
6017   struct GNUNET_MESH_TunnelKeepAlive *msg;
6018   struct MeshTunnel *t;
6019
6020   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "got a keepalive packet from %s\n",
6021               GNUNET_i2s (peer));
6022
6023   msg = (struct GNUNET_MESH_TunnelKeepAlive *) message;
6024   t = tunnel_get (&msg->oid, ntohl (msg->tid));
6025
6026   if (NULL == t)
6027   {
6028     /* TODO notify that we dont know that tunnel */
6029     GNUNET_STATISTICS_update (stats, "# keepalive on unknown tunnel", 1, GNUNET_NO);
6030     GNUNET_break_op (0);
6031     return GNUNET_OK;
6032   }
6033
6034   tunnel_reset_timeout (t);
6035
6036   GNUNET_STATISTICS_update (stats, "# keepalives forwarded", 1, GNUNET_NO);
6037   tunnel_send_multicast (t, message);
6038   return GNUNET_OK;
6039   }
6040
6041
6042
6043 /**
6044  * Functions to handle messages from core
6045  */
6046 static struct GNUNET_CORE_MessageHandler core_handlers[] = {
6047   {&handle_mesh_path_create, GNUNET_MESSAGE_TYPE_MESH_PATH_CREATE, 0},
6048   {&handle_mesh_path_destroy, GNUNET_MESSAGE_TYPE_MESH_PATH_DESTROY, 0},
6049   {&handle_mesh_path_broken, GNUNET_MESSAGE_TYPE_MESH_PATH_BROKEN,
6050    sizeof (struct GNUNET_MESH_PathBroken)},
6051   {&handle_mesh_tunnel_destroy, GNUNET_MESSAGE_TYPE_MESH_TUNNEL_DESTROY,
6052    sizeof (struct GNUNET_MESH_TunnelDestroy)},
6053   {&handle_mesh_data_unicast, GNUNET_MESSAGE_TYPE_MESH_UNICAST, 0},
6054   {&handle_mesh_data_multicast, GNUNET_MESSAGE_TYPE_MESH_MULTICAST, 0},
6055   {&handle_mesh_keepalive, GNUNET_MESSAGE_TYPE_MESH_PATH_KEEPALIVE,
6056     sizeof (struct GNUNET_MESH_TunnelKeepAlive)},
6057   {&handle_mesh_data_to_orig, GNUNET_MESSAGE_TYPE_MESH_TO_ORIGIN, 0},
6058   {&handle_mesh_ack, GNUNET_MESSAGE_TYPE_MESH_ACK,
6059     sizeof (struct GNUNET_MESH_ACK)},
6060   {&handle_mesh_poll, GNUNET_MESSAGE_TYPE_MESH_POLL,
6061     sizeof (struct GNUNET_MESH_Poll)},
6062   {&handle_mesh_path_ack, GNUNET_MESSAGE_TYPE_MESH_PATH_ACK,
6063    sizeof (struct GNUNET_MESH_PathACK)},
6064   {NULL, 0, 0}
6065 };
6066
6067
6068
6069 /******************************************************************************/
6070 /****************       MESH LOCAL HANDLER HELPERS      ***********************/
6071 /******************************************************************************/
6072
6073 /**
6074  * deregister_app: iterator for removing each application registered by a client
6075  *
6076  * @param cls closure
6077  * @param key the hash of the application id (used to access the hashmap)
6078  * @param value the value stored at the key (client)
6079  *
6080  * @return GNUNET_OK on success
6081  */
6082 static int
6083 deregister_app (void *cls, const struct GNUNET_HashCode * key, void *value)
6084 {
6085   struct GNUNET_CONTAINER_MultiHashMap *h = cls;
6086   GNUNET_break (GNUNET_YES ==
6087                 GNUNET_CONTAINER_multihashmap_remove (h, key, value));
6088   return GNUNET_OK;
6089 }
6090
6091 #if LATER
6092 /**
6093  * notify_client_connection_failure: notify a client that the connection to the
6094  * requested remote peer is not possible (for instance, no route found)
6095  * Function called when the socket is ready to queue more data. "buf" will be
6096  * NULL and "size" zero if the socket was closed for writing in the meantime.
6097  *
6098  * @param cls closure
6099  * @param size number of bytes available in buf
6100  * @param buf where the callee should write the message
6101  * @return number of bytes written to buf
6102  */
6103 static size_t
6104 notify_client_connection_failure (void *cls, size_t size, void *buf)
6105 {
6106   int size_needed;
6107   struct MeshPeerInfo *peer_info;
6108   struct GNUNET_MESH_PeerControl *msg;
6109   struct GNUNET_PeerIdentity id;
6110
6111   if (0 == size && NULL == buf)
6112   {
6113     // TODO retry? cancel?
6114     return 0;
6115   }
6116
6117   size_needed = sizeof (struct GNUNET_MESH_PeerControl);
6118   peer_info = (struct MeshPeerInfo *) cls;
6119   msg = (struct GNUNET_MESH_PeerControl *) buf;
6120   msg->header.size = htons (sizeof (struct GNUNET_MESH_PeerControl));
6121   msg->header.type = htons (GNUNET_MESSAGE_TYPE_MESH_LOCAL_PEER_DISCONNECTED);
6122 //     msg->tunnel_id = htonl(peer_info->t->tid);
6123   GNUNET_PEER_resolve (peer_info->id, &id);
6124   memcpy (&msg->peer, &id, sizeof (struct GNUNET_PeerIdentity));
6125
6126   return size_needed;
6127 }
6128 #endif
6129
6130
6131 /**
6132  * Send keepalive packets for a peer
6133  *
6134  * @param cls Closure (tunnel for which to send the keepalive).
6135  * @param tc Notification context.
6136  */
6137 static void
6138 path_refresh (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
6139 {
6140   struct MeshTunnel *t = cls;
6141   struct GNUNET_MESH_TunnelKeepAlive *msg;
6142   size_t size = sizeof (struct GNUNET_MESH_TunnelKeepAlive);
6143   char cbuf[size];
6144
6145   t->path_refresh_task = GNUNET_SCHEDULER_NO_TASK;
6146   if (0 != (tc->reason & GNUNET_SCHEDULER_REASON_SHUTDOWN))
6147   {
6148     return;
6149   }
6150
6151   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
6152               "sending keepalive for tunnel %d\n", t->id.tid);
6153
6154   msg = (struct GNUNET_MESH_TunnelKeepAlive *) cbuf;
6155   msg->header.size = htons (size);
6156   msg->header.type = htons (GNUNET_MESSAGE_TYPE_MESH_PATH_KEEPALIVE);
6157   msg->oid = my_full_id;
6158   msg->tid = htonl (t->id.tid);
6159   tunnel_send_multicast (t, &msg->header);
6160
6161   t->path_refresh_task =
6162       GNUNET_SCHEDULER_add_delayed (refresh_path_time, &path_refresh, t);
6163   tunnel_reset_timeout(t);
6164 }
6165
6166
6167 /**
6168  * Function to process paths received for a new peer addition. The recorded
6169  * paths form the initial tunnel, which can be optimized later.
6170  * Called on each result obtained for the DHT search.
6171  *
6172  * @param cls closure
6173  * @param exp when will this value expire
6174  * @param key key of the result
6175  * @param get_path path of the get request
6176  * @param get_path_length lenght of get_path
6177  * @param put_path path of the put request
6178  * @param put_path_length length of the put_path
6179  * @param type type of the result
6180  * @param size number of bytes in data
6181  * @param data pointer to the result data
6182  *
6183  * TODO: re-issue the request after certain time? cancel after X results?
6184  */
6185 static void
6186 dht_get_id_handler (void *cls, struct GNUNET_TIME_Absolute exp,
6187                     const struct GNUNET_HashCode * key,
6188                     const struct GNUNET_PeerIdentity *get_path,
6189                     unsigned int get_path_length,
6190                     const struct GNUNET_PeerIdentity *put_path,
6191                     unsigned int put_path_length, enum GNUNET_BLOCK_Type type,
6192                     size_t size, const void *data)
6193 {
6194   struct MeshPathInfo *path_info = cls;
6195   struct MeshPeerPath *p;
6196   struct GNUNET_PeerIdentity pi;
6197   int i;
6198
6199   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Got results from DHT!\n");
6200   GNUNET_PEER_resolve (path_info->peer->id, &pi);
6201   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  for %s\n", GNUNET_i2s (&pi));
6202
6203   p = path_build_from_dht (get_path, get_path_length, put_path,
6204                            put_path_length);
6205   path_add_to_peers (p, GNUNET_NO);
6206   path_destroy(p);
6207   for (i = 0; i < path_info->peer->ntunnels; i++)
6208   {
6209     tunnel_add_peer (path_info->peer->tunnels[i], path_info->peer);
6210     peer_info_connect (path_info->peer, path_info->t);
6211   }
6212
6213   return;
6214 }
6215
6216
6217 /**
6218  * Function to process paths received for a new peer addition. The recorded
6219  * paths form the initial tunnel, which can be optimized later.
6220  * Called on each result obtained for the DHT search.
6221  *
6222  * @param cls closure
6223  * @param exp when will this value expire
6224  * @param key key of the result
6225  * @param get_path path of the get request
6226  * @param get_path_length lenght of get_path
6227  * @param put_path path of the put request
6228  * @param put_path_length length of the put_path
6229  * @param type type of the result
6230  * @param size number of bytes in data
6231  * @param data pointer to the result data
6232  */
6233 static void
6234 dht_get_type_handler (void *cls, struct GNUNET_TIME_Absolute exp,
6235                       const struct GNUNET_HashCode * key,
6236                       const struct GNUNET_PeerIdentity *get_path,
6237                       unsigned int get_path_length,
6238                       const struct GNUNET_PeerIdentity *put_path,
6239                       unsigned int put_path_length, enum GNUNET_BLOCK_Type type,
6240                       size_t size, const void *data)
6241 {
6242   const struct PBlock *pb = data;
6243   const struct GNUNET_PeerIdentity *pi = &pb->id;
6244   struct MeshTunnel *t = cls;
6245   struct MeshPeerInfo *peer_info;
6246   struct MeshPeerPath *p;
6247
6248   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "got type DHT result!\n");
6249   if (size != sizeof (struct PBlock))
6250   {
6251     GNUNET_break_op (0);
6252     return;
6253   }
6254   if (ntohl(pb->type) != t->type)
6255   {
6256     GNUNET_break_op (0);
6257     return;
6258   }
6259   GNUNET_assert (NULL != t->owner);
6260   peer_info = peer_info_get (pi);
6261   (void) GNUNET_CONTAINER_multihashmap_put (t->peers, &pi->hashPubKey,
6262                                             peer_info,
6263                                             GNUNET_CONTAINER_MULTIHASHMAPOPTION_REPLACE);
6264
6265   p = path_build_from_dht (get_path, get_path_length, put_path,
6266                            put_path_length);
6267   path_add_to_peers (p, GNUNET_NO);
6268   path_destroy(p);
6269   tunnel_add_peer (t, peer_info);
6270   peer_info_connect (peer_info, t);
6271 }
6272
6273
6274 /**
6275  * Function to process DHT string to regex matching.
6276  * Called on each result obtained for the DHT search.
6277  *
6278  * @param cls closure (search context)
6279  * @param exp when will this value expire
6280  * @param key key of the result
6281  * @param get_path path of the get request (not used)
6282  * @param get_path_length lenght of get_path (not used)
6283  * @param put_path path of the put request (not used)
6284  * @param put_path_length length of the put_path (not used)
6285  * @param type type of the result
6286  * @param size number of bytes in data
6287  * @param data pointer to the result data
6288  */
6289 static void
6290 dht_get_string_accept_handler (void *cls, struct GNUNET_TIME_Absolute exp,
6291                                const struct GNUNET_HashCode * key,
6292                                const struct GNUNET_PeerIdentity *get_path,
6293                                unsigned int get_path_length,
6294                                const struct GNUNET_PeerIdentity *put_path,
6295                                unsigned int put_path_length,
6296                                enum GNUNET_BLOCK_Type type,
6297                                size_t size, const void *data)
6298 {
6299   const struct MeshRegexAccept *block = data;
6300   struct MeshRegexSearchContext *ctx = cls;
6301   struct MeshRegexSearchInfo *info = ctx->info;
6302   struct MeshPeerPath *p;
6303   struct MeshPeerInfo *peer_info;
6304
6305   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Got regex results from DHT!\n");
6306   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  for %s\n", info->description);
6307
6308   peer_info = peer_info_get(&block->id);
6309   p = path_build_from_dht (get_path, get_path_length, put_path,
6310                            put_path_length);
6311   path_add_to_peers (p, GNUNET_NO);
6312   path_destroy(p);
6313
6314   tunnel_add_peer (info->t, peer_info);
6315   peer_info_connect (peer_info, info->t);
6316   if (0 == info->peer)
6317   {
6318     info->peer = peer_info->id;
6319   }
6320   else
6321   {
6322     GNUNET_array_append (info->peers, info->n_peers, peer_info->id);
6323   }
6324
6325   info->timeout = GNUNET_SCHEDULER_add_delayed (connect_timeout,
6326                                                 &regex_connect_timeout,
6327                                                 info);
6328
6329   return;
6330 }
6331
6332
6333 /**
6334  * Function to process DHT string to regex matching.
6335  * Called on each result obtained for the DHT search.
6336  *
6337  * @param cls closure (search context)
6338  * @param exp when will this value expire
6339  * @param key key of the result
6340  * @param get_path path of the get request (not used)
6341  * @param get_path_length lenght of get_path (not used)
6342  * @param put_path path of the put request (not used)
6343  * @param put_path_length length of the put_path (not used)
6344  * @param type type of the result
6345  * @param size number of bytes in data
6346  * @param data pointer to the result data
6347  *
6348  * TODO: re-issue the request after certain time? cancel after X results?
6349  */
6350 static void
6351 dht_get_string_handler (void *cls, struct GNUNET_TIME_Absolute exp,
6352                         const struct GNUNET_HashCode * key,
6353                         const struct GNUNET_PeerIdentity *get_path,
6354                         unsigned int get_path_length,
6355                         const struct GNUNET_PeerIdentity *put_path,
6356                         unsigned int put_path_length,
6357                         enum GNUNET_BLOCK_Type type,
6358                         size_t size, const void *data)
6359 {
6360   const struct MeshRegexBlock *block = data;
6361   struct MeshRegexSearchContext *ctx = cls;
6362   struct MeshRegexSearchInfo *info = ctx->info;
6363   void *copy;
6364   size_t len;
6365
6366   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
6367               "DHT GET STRING RETURNED RESULTS\n");
6368   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
6369               "  key: %s\n", GNUNET_h2s (key));
6370
6371   copy = GNUNET_malloc (size);
6372   memcpy (copy, data, size);
6373   GNUNET_break (GNUNET_OK ==
6374                 GNUNET_CONTAINER_multihashmap_put(info->dht_get_results, key, copy,
6375                                                   GNUNET_CONTAINER_MULTIHASHMAPOPTION_MULTIPLE));
6376   len = ntohl (block->n_proof);
6377   {
6378     char proof[len + 1];
6379
6380     memcpy (proof, &block[1], len);
6381     proof[len] = '\0';
6382     if (GNUNET_OK != GNUNET_REGEX_check_proof (proof, key))
6383     {
6384       GNUNET_break_op (0);
6385       return;
6386     }
6387   }
6388   len = strlen (info->description);
6389   if (len == ctx->position) // String processed
6390   {
6391     if (GNUNET_YES == ntohl (block->accepting))
6392     {
6393       regex_find_path(key, ctx);
6394     }
6395     else
6396     {
6397       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  block not accepting!\n");
6398       // FIXME REGEX this block not successful, wait for more? start timeout?
6399     }
6400     return;
6401   }
6402
6403   regex_next_edge (block, size, ctx);
6404
6405   return;
6406 }
6407
6408 /******************************************************************************/
6409 /*********************       MESH LOCAL HANDLES      **************************/
6410 /******************************************************************************/
6411
6412
6413 /**
6414  * Handler for client disconnection
6415  *
6416  * @param cls closure
6417  * @param client identification of the client; NULL
6418  *        for the last call when the server is destroyed
6419  */
6420 static void
6421 handle_local_client_disconnect (void *cls, struct GNUNET_SERVER_Client *client)
6422 {
6423   struct MeshClient *c;
6424   struct MeshClient *next;
6425   unsigned int i;
6426
6427   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "client disconnected\n");
6428   if (client == NULL)
6429   {
6430     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "   (SERVER DOWN)\n");
6431     return;
6432   }
6433   c = clients;
6434   while (NULL != c)
6435   {
6436     if (c->handle != client)
6437     {
6438       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "   ... searching\n");
6439       c = c->next;
6440       continue;
6441     }
6442     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "matching client found (%u)\n",
6443                 c->id);
6444     GNUNET_SERVER_client_drop (c->handle);
6445     c->shutting_down = GNUNET_YES;
6446     GNUNET_assert (NULL != c->own_tunnels);
6447     GNUNET_assert (NULL != c->incoming_tunnels);
6448     GNUNET_CONTAINER_multihashmap_iterate (c->own_tunnels,
6449                                            &tunnel_destroy_iterator, c);
6450     GNUNET_CONTAINER_multihashmap_iterate (c->incoming_tunnels,
6451                                            &tunnel_destroy_iterator, c);
6452     GNUNET_CONTAINER_multihashmap_iterate (c->ignore_tunnels,
6453                                            &tunnel_destroy_iterator, c);
6454     GNUNET_CONTAINER_multihashmap_destroy (c->own_tunnels);
6455     GNUNET_CONTAINER_multihashmap_destroy (c->incoming_tunnels);
6456     GNUNET_CONTAINER_multihashmap_destroy (c->ignore_tunnels);
6457
6458     /* deregister clients applications */
6459     if (NULL != c->apps)
6460     {
6461       GNUNET_CONTAINER_multihashmap_iterate (c->apps, &deregister_app, c->apps);
6462       GNUNET_CONTAINER_multihashmap_destroy (c->apps);
6463     }
6464     if (0 == GNUNET_CONTAINER_multihashmap_size (applications) &&
6465         GNUNET_SCHEDULER_NO_TASK != announce_applications_task)
6466     {
6467       GNUNET_SCHEDULER_cancel (announce_applications_task);
6468       announce_applications_task = GNUNET_SCHEDULER_NO_TASK;
6469     }
6470     if (NULL != c->types)
6471       GNUNET_CONTAINER_multihashmap_destroy (c->types);
6472     for (i = 0; i < c->n_regex; i++)
6473     {
6474       GNUNET_free (c->regexes[i]);
6475     }
6476     GNUNET_free_non_null (c->regexes);
6477     if (GNUNET_SCHEDULER_NO_TASK != c->regex_announce_task)
6478       GNUNET_SCHEDULER_cancel (c->regex_announce_task);
6479     next = c->next;
6480     GNUNET_CONTAINER_DLL_remove (clients, clients_tail, c);
6481     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  CLIENT FREE at %p\n", c);
6482     GNUNET_free (c);
6483     GNUNET_STATISTICS_update (stats, "# clients", -1, GNUNET_NO);
6484     c = next;
6485   }
6486   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "   done!\n");
6487   return;
6488 }
6489
6490
6491 /**
6492  * Handler for new clients
6493  *
6494  * @param cls closure
6495  * @param client identification of the client
6496  * @param message the actual message, which includes messages the client wants
6497  */
6498 static void
6499 handle_local_new_client (void *cls, struct GNUNET_SERVER_Client *client,
6500                          const struct GNUNET_MessageHeader *message)
6501 {
6502   struct GNUNET_MESH_ClientConnect *cc_msg;
6503   struct MeshClient *c;
6504   GNUNET_MESH_ApplicationType *a;
6505   unsigned int size;
6506   uint16_t ntypes;
6507   uint16_t *t;
6508   uint16_t napps;
6509   uint16_t i;
6510
6511   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "new client connected\n");
6512   /* Check data sanity */
6513   size = ntohs (message->size) - sizeof (struct GNUNET_MESH_ClientConnect);
6514   cc_msg = (struct GNUNET_MESH_ClientConnect *) message;
6515   ntypes = ntohs (cc_msg->types);
6516   napps = ntohs (cc_msg->applications);
6517   if (size !=
6518       ntypes * sizeof (uint16_t) + napps * sizeof (GNUNET_MESH_ApplicationType))
6519   {
6520     GNUNET_break (0);
6521     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
6522     return;
6523   }
6524
6525   /* Create new client structure */
6526   c = GNUNET_malloc (sizeof (struct MeshClient));
6527   c->id = next_client_id++;
6528   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  CLIENT NEW %u\n", c->id);
6529   c->handle = client;
6530   GNUNET_SERVER_client_keep (client);
6531   a = (GNUNET_MESH_ApplicationType *) &cc_msg[1];
6532   if (napps > 0)
6533   {
6534     GNUNET_MESH_ApplicationType at;
6535     struct GNUNET_HashCode hc;
6536
6537     c->apps = GNUNET_CONTAINER_multihashmap_create (napps, GNUNET_NO);
6538     for (i = 0; i < napps; i++)
6539     {
6540       at = ntohl (a[i]);
6541       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  app type: %u\n", at);
6542       GNUNET_CRYPTO_hash (&at, sizeof (at), &hc);
6543       /* store in clients hashmap */
6544       GNUNET_CONTAINER_multihashmap_put (c->apps, &hc, (void *) (long) at,
6545                                          GNUNET_CONTAINER_MULTIHASHMAPOPTION_MULTIPLE);
6546       /* store in global hashmap, for announcements */
6547       GNUNET_CONTAINER_multihashmap_put (applications, &hc, c,
6548                                          GNUNET_CONTAINER_MULTIHASHMAPOPTION_MULTIPLE);
6549     }
6550     if (GNUNET_SCHEDULER_NO_TASK == announce_applications_task)
6551       announce_applications_task =
6552           GNUNET_SCHEDULER_add_now (&announce_applications, NULL);
6553
6554   }
6555   if (ntypes > 0)
6556   {
6557     uint16_t u16;
6558     struct GNUNET_HashCode hc;
6559
6560     t = (uint16_t *) & a[napps];
6561     c->types = GNUNET_CONTAINER_multihashmap_create (ntypes, GNUNET_NO);
6562     for (i = 0; i < ntypes; i++)
6563     {
6564       u16 = ntohs (t[i]);
6565       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  msg type: %u\n", u16);
6566       GNUNET_CRYPTO_hash (&u16, sizeof (u16), &hc);
6567
6568       /* store in clients hashmap */
6569       GNUNET_CONTAINER_multihashmap_put (c->types, &hc, c,
6570                                          GNUNET_CONTAINER_MULTIHASHMAPOPTION_MULTIPLE);
6571       /* store in global hashmap */
6572       GNUNET_CONTAINER_multihashmap_put (types, &hc, c,
6573                                          GNUNET_CONTAINER_MULTIHASHMAPOPTION_MULTIPLE);
6574     }
6575   }
6576   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
6577               " client has %u+%u subscriptions\n", napps, ntypes);
6578
6579   GNUNET_CONTAINER_DLL_insert (clients, clients_tail, c);
6580   c->own_tunnels = GNUNET_CONTAINER_multihashmap_create (32, GNUNET_NO);
6581   c->incoming_tunnels = GNUNET_CONTAINER_multihashmap_create (32, GNUNET_NO);
6582   c->ignore_tunnels = GNUNET_CONTAINER_multihashmap_create (32, GNUNET_NO);
6583   GNUNET_SERVER_notification_context_add (nc, client);
6584   GNUNET_STATISTICS_update (stats, "# clients", 1, GNUNET_NO);
6585
6586   GNUNET_SERVER_receive_done (client, GNUNET_OK);
6587   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "new client processed\n");
6588 }
6589
6590
6591 /**
6592  * Handler for clients announcing available services by a regular expression.
6593  *
6594  * @param cls closure
6595  * @param client identification of the client
6596  * @param message the actual message, which includes messages the client wants
6597  */
6598 static void
6599 handle_local_announce_regex (void *cls, struct GNUNET_SERVER_Client *client,
6600                              const struct GNUNET_MessageHeader *message)
6601 {
6602   struct MeshClient *c;
6603   char *regex;
6604   size_t len;
6605
6606   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "announce regex started\n");
6607
6608   /* Sanity check for client registration */
6609   if (NULL == (c = client_get (client)))
6610   {
6611     GNUNET_break (0);
6612     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
6613     return;
6614   }
6615   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  by client %u\n", c->id);
6616
6617   len = ntohs (message->size) - sizeof(struct GNUNET_MessageHeader);
6618   regex = GNUNET_malloc (len + 1);
6619   memcpy (regex, &message[1], len);
6620   regex[len] = '\0';
6621   GNUNET_array_append (c->regexes, c->n_regex, regex);
6622   if (GNUNET_SCHEDULER_NO_TASK == c->regex_announce_task)
6623   {
6624     c->regex_announce_task = GNUNET_SCHEDULER_add_now(&announce_regex, c);
6625   }
6626   else
6627   {
6628     regex_put(regex);
6629   }
6630   GNUNET_SERVER_receive_done (client, GNUNET_OK);
6631   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "announce regex processed\n");
6632 }
6633
6634
6635 /**
6636  * Handler for requests of new tunnels
6637  *
6638  * @param cls closure
6639  * @param client identification of the client
6640  * @param message the actual message
6641  */
6642 static void
6643 handle_local_tunnel_create (void *cls, struct GNUNET_SERVER_Client *client,
6644                             const struct GNUNET_MessageHeader *message)
6645 {
6646   struct GNUNET_MESH_TunnelMessage *t_msg;
6647   struct MeshTunnel *t;
6648   struct MeshClient *c;
6649   MESH_TunnelNumber tid;
6650
6651   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "new tunnel requested\n");
6652
6653   /* Sanity check for client registration */
6654   if (NULL == (c = client_get (client)))
6655   {
6656     GNUNET_break (0);
6657     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
6658     return;
6659   }
6660   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  by client %u\n", c->id);
6661
6662   /* Message sanity check */
6663   if (sizeof (struct GNUNET_MESH_TunnelMessage) != ntohs (message->size))
6664   {
6665     GNUNET_break (0);
6666     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
6667     return;
6668   }
6669
6670   t_msg = (struct GNUNET_MESH_TunnelMessage *) message;
6671   /* Sanity check for tunnel numbering */
6672   tid = ntohl (t_msg->tunnel_id);
6673   if (0 == (tid & GNUNET_MESH_LOCAL_TUNNEL_ID_CLI))
6674   {
6675     GNUNET_break (0);
6676     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
6677     return;
6678   }
6679   /* Sanity check for duplicate tunnel IDs */
6680   if (NULL != tunnel_get_by_local_id (c, tid))
6681   {
6682     GNUNET_break (0);
6683     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
6684     return;
6685   }
6686
6687   while (NULL != tunnel_get_by_pi (myid, next_tid))
6688     next_tid = (next_tid + 1) & ~GNUNET_MESH_LOCAL_TUNNEL_ID_CLI;
6689   t = tunnel_new (myid, next_tid++, c, tid);
6690   if (NULL == t)
6691   {
6692     GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Tunnel creation failed.\n");
6693     GNUNET_break (0);
6694     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
6695     return;
6696   }
6697   next_tid = next_tid & ~GNUNET_MESH_LOCAL_TUNNEL_ID_CLI;
6698   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "CREATED TUNNEL %s [%x] (%x)\n",
6699               GNUNET_i2s (&my_full_id), t->id.tid, t->local_tid);
6700   t->peers = GNUNET_CONTAINER_multihashmap_create (32, GNUNET_NO);
6701
6702   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "new tunnel created\n");
6703   GNUNET_SERVER_receive_done (client, GNUNET_OK);
6704   return;
6705 }
6706
6707
6708 /**
6709  * Handler for requests of deleting tunnels
6710  *
6711  * @param cls closure
6712  * @param client identification of the client
6713  * @param message the actual message
6714  */
6715 static void
6716 handle_local_tunnel_destroy (void *cls, struct GNUNET_SERVER_Client *client,
6717                              const struct GNUNET_MessageHeader *message)
6718 {
6719   struct GNUNET_MESH_TunnelMessage *tunnel_msg;
6720   struct MeshClient *c;
6721   struct MeshTunnel *t;
6722   MESH_TunnelNumber tid;
6723
6724   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
6725               "Got a DESTROY TUNNEL from client!\n");
6726
6727   /* Sanity check for client registration */
6728   if (NULL == (c = client_get (client)))
6729   {
6730     GNUNET_break (0);
6731     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
6732     return;
6733   }
6734   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  by client %u\n", c->id);
6735
6736   /* Message sanity check */
6737   if (sizeof (struct GNUNET_MESH_TunnelMessage) != ntohs (message->size))
6738   {
6739     GNUNET_break (0);
6740     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
6741     return;
6742   }
6743
6744   tunnel_msg = (struct GNUNET_MESH_TunnelMessage *) message;
6745
6746   /* Retrieve tunnel */
6747   tid = ntohl (tunnel_msg->tunnel_id);
6748   t = tunnel_get_by_local_id(c, tid);
6749   if (NULL == t)
6750   {
6751     GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "  tunnel %X not found\n", tid);
6752     GNUNET_break (0);
6753     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
6754     return;
6755   }
6756   if (c != t->owner || tid >= GNUNET_MESH_LOCAL_TUNNEL_ID_SERV)
6757   {
6758     client_ignore_tunnel (c, t);
6759 #if 0
6760     // TODO: when to destroy incoming tunnel?
6761     if (t->nclients == 0)
6762     {
6763       GNUNET_assert (GNUNET_YES ==
6764                      GNUNET_CONTAINER_multihashmap_remove (incoming_tunnels,
6765                                                            &hash, t));
6766       GNUNET_assert (GNUNET_YES ==
6767                      GNUNET_CONTAINER_multihashmap_remove (t->peers,
6768                                                            &my_full_id.hashPubKey,
6769                                                            t));
6770     }
6771 #endif
6772     GNUNET_SERVER_receive_done (client, GNUNET_OK);
6773     return;
6774   }
6775   send_client_tunnel_disconnect(t, c);
6776   client_delete_tunnel(c, t);
6777
6778   /* Don't try to ACK the client about the tunnel_destroy multicast packet */
6779   t->owner = NULL;
6780   tunnel_send_destroy (t);
6781   t->destroy = GNUNET_YES;
6782   // The tunnel will be destroyed when the last message is transmitted.
6783   GNUNET_SERVER_receive_done (client, GNUNET_OK);
6784   return;
6785 }
6786
6787
6788 /**
6789  * Handler for requests of seeting tunnel's speed.
6790  *
6791  * @param cls Closure (unused).
6792  * @param client Identification of the client.
6793  * @param message The actual message.
6794  */
6795 static void
6796 handle_local_tunnel_speed (void *cls, struct GNUNET_SERVER_Client *client,
6797                            const struct GNUNET_MessageHeader *message)
6798 {
6799   struct GNUNET_MESH_TunnelMessage *tunnel_msg;
6800   struct MeshClient *c;
6801   struct MeshTunnel *t;
6802   MESH_TunnelNumber tid;
6803
6804   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
6805               "Got a SPEED request from client!\n");
6806
6807   /* Sanity check for client registration */
6808   if (NULL == (c = client_get (client)))
6809   {
6810     GNUNET_break (0);
6811     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
6812     return;
6813   }
6814
6815   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  by client %u\n", c->id);
6816
6817   tunnel_msg = (struct GNUNET_MESH_TunnelMessage *) message;
6818
6819   /* Retrieve tunnel */
6820   tid = ntohl (tunnel_msg->tunnel_id);
6821   t = tunnel_get_by_local_id(c, tid);
6822   if (NULL == t)
6823   {
6824     GNUNET_log (GNUNET_ERROR_TYPE_WARNING, "  tunnel %X not found\n", tid);
6825     GNUNET_break (0);
6826     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
6827     return;
6828   }
6829
6830   switch (ntohs(message->type))
6831   {
6832       case GNUNET_MESSAGE_TYPE_MESH_LOCAL_TUNNEL_MIN:
6833           t->speed_min = GNUNET_YES;
6834           break;
6835       case GNUNET_MESSAGE_TYPE_MESH_LOCAL_TUNNEL_MAX:
6836           t->speed_min = GNUNET_NO;
6837           break;
6838       default:
6839           GNUNET_break (0);
6840   }
6841   GNUNET_SERVER_receive_done (client, GNUNET_OK);
6842 }
6843
6844
6845 /**
6846  * Handler for requests of seeting tunnel's buffering policy.
6847  *
6848  * @param cls Closure (unused).
6849  * @param client Identification of the client.
6850  * @param message The actual message.
6851  */
6852 static void
6853 handle_local_tunnel_buffer (void *cls, struct GNUNET_SERVER_Client *client,
6854                             const struct GNUNET_MessageHeader *message)
6855 {
6856   struct GNUNET_MESH_TunnelMessage *tunnel_msg;
6857   struct MeshClient *c;
6858   struct MeshTunnel *t;
6859   MESH_TunnelNumber tid;
6860
6861   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
6862               "Got a BUFFER request from client!\n");
6863
6864   /* Sanity check for client registration */
6865   if (NULL == (c = client_get (client)))
6866   {
6867     GNUNET_break (0);
6868     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
6869     return;
6870   }
6871   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  by client %u\n", c->id);
6872
6873   tunnel_msg = (struct GNUNET_MESH_TunnelMessage *) message;
6874
6875   /* Retrieve tunnel */
6876   tid = ntohl (tunnel_msg->tunnel_id);
6877   t = tunnel_get_by_local_id(c, tid);
6878   if (NULL == t)
6879   {
6880     GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "  tunnel %X not found\n", tid);
6881     GNUNET_break (0);
6882     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
6883     return;
6884   }
6885
6886   switch (ntohs(message->type))
6887   {
6888       case GNUNET_MESSAGE_TYPE_MESH_LOCAL_TUNNEL_BUFFER:
6889           t->nobuffer = GNUNET_NO;
6890           break;
6891       case GNUNET_MESSAGE_TYPE_MESH_LOCAL_TUNNEL_NOBUFFER:
6892           t->nobuffer = GNUNET_YES;
6893           break;
6894       default:
6895           GNUNET_break (0);
6896   }
6897
6898   GNUNET_SERVER_receive_done (client, GNUNET_OK);
6899 }
6900
6901
6902 /**
6903  * Handler for connection requests to new peers
6904  *
6905  * @param cls closure
6906  * @param client identification of the client
6907  * @param message the actual message (PeerControl)
6908  */
6909 static void
6910 handle_local_connect_add (void *cls, struct GNUNET_SERVER_Client *client,
6911                           const struct GNUNET_MessageHeader *message)
6912 {
6913   struct GNUNET_MESH_PeerControl *peer_msg;
6914   struct MeshPeerInfo *peer_info;
6915   struct MeshClient *c;
6916   struct MeshTunnel *t;
6917   MESH_TunnelNumber tid;
6918
6919   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Got connection request\n");
6920   /* Sanity check for client registration */
6921   if (NULL == (c = client_get (client)))
6922   {
6923     GNUNET_break (0);
6924     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
6925     return;
6926   }
6927   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  by client %u\n", c->id);
6928
6929   peer_msg = (struct GNUNET_MESH_PeerControl *) message;
6930
6931   /* Sanity check for message size */
6932   if (sizeof (struct GNUNET_MESH_PeerControl) != ntohs (peer_msg->header.size))
6933   {
6934     GNUNET_break (0);
6935     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
6936     return;
6937   }
6938
6939   /* Tunnel exists? */
6940   tid = ntohl (peer_msg->tunnel_id);
6941   t = tunnel_get_by_local_id (c, tid);
6942   if (NULL == t)
6943   {
6944     GNUNET_break (0);
6945     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
6946     return;
6947   }
6948
6949   /* Does client own tunnel? */
6950   if (t->owner->handle != client)
6951   {
6952     GNUNET_break (0);
6953     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
6954     return;
6955   }
6956   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "     for %s\n",
6957               GNUNET_i2s (&peer_msg->peer));
6958   peer_info = peer_info_get (&peer_msg->peer);
6959
6960   tunnel_add_peer (t, peer_info);
6961   peer_info_connect (peer_info, t);
6962
6963   GNUNET_SERVER_receive_done (client, GNUNET_OK);
6964   return;
6965 }
6966
6967
6968 /**
6969  * Handler for disconnection requests of peers in a tunnel
6970  *
6971  * @param cls closure
6972  * @param client identification of the client
6973  * @param message the actual message (PeerControl)
6974  */
6975 static void
6976 handle_local_connect_del (void *cls, struct GNUNET_SERVER_Client *client,
6977                           const struct GNUNET_MessageHeader *message)
6978 {
6979   struct GNUNET_MESH_PeerControl *peer_msg;
6980   struct MeshPeerInfo *peer_info;
6981   struct MeshClient *c;
6982   struct MeshTunnel *t;
6983   MESH_TunnelNumber tid;
6984
6985   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Got a PEER DEL request\n");
6986   /* Sanity check for client registration */
6987   if (NULL == (c = client_get (client)))
6988   {
6989     GNUNET_break (0);
6990     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
6991     return;
6992   }
6993   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  by client %u\n", c->id);
6994
6995   peer_msg = (struct GNUNET_MESH_PeerControl *) message;
6996
6997   /* Sanity check for message size */
6998   if (sizeof (struct GNUNET_MESH_PeerControl) != ntohs (peer_msg->header.size))
6999   {
7000     GNUNET_break (0);
7001     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
7002     return;
7003   }
7004
7005   /* Tunnel exists? */
7006   tid = ntohl (peer_msg->tunnel_id);
7007   t = tunnel_get_by_local_id (c, tid);
7008   if (NULL == t)
7009   {
7010     GNUNET_break (0);
7011     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
7012     return;
7013   }
7014   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  on tunnel %X\n", t->id.tid);
7015
7016   /* Does client own tunnel? */
7017   if (t->owner->handle != client)
7018   {
7019     GNUNET_break (0);
7020     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
7021     return;
7022   }
7023
7024   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  for peer %s\n",
7025               GNUNET_i2s (&peer_msg->peer));
7026   /* Is the peer in the tunnel? */
7027   peer_info =
7028       GNUNET_CONTAINER_multihashmap_get (t->peers, &peer_msg->peer.hashPubKey);
7029   if (NULL == peer_info)
7030   {
7031     GNUNET_break (0);
7032     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
7033     return;
7034   }
7035
7036   /* Ok, delete peer from tunnel */
7037   GNUNET_CONTAINER_multihashmap_remove_all (t->peers,
7038                                             &peer_msg->peer.hashPubKey);
7039
7040   send_destroy_path (t, peer_info->id);
7041   tunnel_delete_peer (t, peer_info->id);
7042   GNUNET_SERVER_receive_done (client, GNUNET_OK);
7043   return;
7044 }
7045
7046 /**
7047  * Handler for blacklist requests of peers in a tunnel
7048  *
7049  * @param cls closure
7050  * @param client identification of the client
7051  * @param message the actual message (PeerControl)
7052  * 
7053  * FIXME implement DHT block bloomfilter
7054  */
7055 static void
7056 handle_local_blacklist (void *cls, struct GNUNET_SERVER_Client *client,
7057                           const struct GNUNET_MessageHeader *message)
7058 {
7059   struct GNUNET_MESH_PeerControl *peer_msg;
7060   struct MeshClient *c;
7061   struct MeshTunnel *t;
7062   MESH_TunnelNumber tid;
7063
7064   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Got a PEER BLACKLIST request\n");
7065   /* Sanity check for client registration */
7066   if (NULL == (c = client_get (client)))
7067   {
7068     GNUNET_break (0);
7069     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
7070     return;
7071   }
7072   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  by client %u\n", c->id);
7073
7074   peer_msg = (struct GNUNET_MESH_PeerControl *) message;
7075
7076   /* Sanity check for message size */
7077   if (sizeof (struct GNUNET_MESH_PeerControl) != ntohs (peer_msg->header.size))
7078   {
7079     GNUNET_break (0);
7080     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
7081     return;
7082   }
7083
7084   /* Tunnel exists? */
7085   tid = ntohl (peer_msg->tunnel_id);
7086   t = tunnel_get_by_local_id (c, tid);
7087   if (NULL == t)
7088   {
7089     GNUNET_break (0);
7090     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
7091     return;
7092   }
7093   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  on tunnel %X\n", t->id.tid);
7094
7095   GNUNET_array_append(t->blacklisted, t->nblacklisted,
7096                       GNUNET_PEER_intern(&peer_msg->peer));
7097 }
7098
7099
7100 /**
7101  * Handler for unblacklist requests of peers in a tunnel
7102  *
7103  * @param cls closure
7104  * @param client identification of the client
7105  * @param message the actual message (PeerControl)
7106  */
7107 static void
7108 handle_local_unblacklist (void *cls, struct GNUNET_SERVER_Client *client,
7109                           const struct GNUNET_MessageHeader *message)
7110 {
7111   struct GNUNET_MESH_PeerControl *peer_msg;
7112   struct MeshClient *c;
7113   struct MeshTunnel *t;
7114   MESH_TunnelNumber tid;
7115   GNUNET_PEER_Id pid;
7116   unsigned int i;
7117
7118   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Got a PEER UNBLACKLIST request\n");
7119   /* Sanity check for client registration */
7120   if (NULL == (c = client_get (client)))
7121   {
7122     GNUNET_break (0);
7123     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
7124     return;
7125   }
7126   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  by client %u\n", c->id);
7127
7128   peer_msg = (struct GNUNET_MESH_PeerControl *) message;
7129
7130   /* Sanity check for message size */
7131   if (sizeof (struct GNUNET_MESH_PeerControl) != ntohs (peer_msg->header.size))
7132   {
7133     GNUNET_break (0);
7134     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
7135     return;
7136   }
7137
7138   /* Tunnel exists? */
7139   tid = ntohl (peer_msg->tunnel_id);
7140   t = tunnel_get_by_local_id (c, tid);
7141   if (NULL == t)
7142   {
7143     GNUNET_break (0);
7144     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
7145     return;
7146   }
7147   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  on tunnel %X\n", t->id.tid);
7148
7149   /* if peer is not known, complain */
7150   pid = GNUNET_PEER_search (&peer_msg->peer);
7151   if (0 == pid)
7152   {
7153     GNUNET_break (0);
7154     return;
7155   }
7156
7157   /* search and remove from list */
7158   for (i = 0; i < t->nblacklisted; i++)
7159   {
7160     if (t->blacklisted[i] == pid)
7161     {
7162       t->blacklisted[i] = t->blacklisted[t->nblacklisted - 1];
7163       GNUNET_array_grow (t->blacklisted, t->nblacklisted, t->nblacklisted - 1);
7164       return;
7165     }
7166   }
7167
7168   /* if peer hasn't been blacklisted, complain */
7169   GNUNET_break (0);
7170 }
7171
7172
7173 /**
7174  * Handler for connection requests to new peers by type
7175  *
7176  * @param cls closure
7177  * @param client identification of the client
7178  * @param message the actual message (ConnectPeerByType)
7179  */
7180 static void
7181 handle_local_connect_by_type (void *cls, struct GNUNET_SERVER_Client *client,
7182                               const struct GNUNET_MessageHeader *message)
7183 {
7184   struct GNUNET_MESH_ConnectPeerByType *connect_msg;
7185   struct MeshClient *c;
7186   struct MeshTunnel *t;
7187   struct GNUNET_HashCode hash;
7188   MESH_TunnelNumber tid;
7189
7190   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "got connect by type request\n");
7191   /* Sanity check for client registration */
7192   if (NULL == (c = client_get (client)))
7193   {
7194     GNUNET_break (0);
7195     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
7196     return;
7197   }
7198   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  by client %u\n", c->id);
7199
7200   connect_msg = (struct GNUNET_MESH_ConnectPeerByType *) message;
7201
7202   /* Sanity check for message size */
7203   if (sizeof (struct GNUNET_MESH_ConnectPeerByType) !=
7204       ntohs (connect_msg->header.size))
7205   {
7206     GNUNET_break (0);
7207     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
7208     return;
7209   }
7210
7211   /* Tunnel exists? */
7212   tid = ntohl (connect_msg->tunnel_id);
7213   t = tunnel_get_by_local_id (c, tid);
7214   if (NULL == t)
7215   {
7216     GNUNET_break (0);
7217     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
7218     return;
7219   }
7220
7221   /* Does client own tunnel? */
7222   if (t->owner->handle != client)
7223   {
7224     GNUNET_break (0);
7225     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
7226     return;
7227   }
7228
7229   /* Do WE have the service? */
7230   t->type = ntohl (connect_msg->type);
7231   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, " type requested: %u\n", t->type);
7232   GNUNET_CRYPTO_hash (&t->type, sizeof (GNUNET_MESH_ApplicationType), &hash);
7233   if (GNUNET_CONTAINER_multihashmap_contains (applications, &hash) ==
7234       GNUNET_YES)
7235   {
7236     /* Yes! Fast forward, add ourselves to the tunnel and send the
7237      * good news to the client, and alert the destination client of
7238      * an incoming tunnel.
7239      *
7240      * FIXME send a path create to self, avoid code duplication
7241      */
7242     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, " available locally\n");
7243     GNUNET_CONTAINER_multihashmap_put (t->peers, &my_full_id.hashPubKey,
7244                                        peer_info_get (&my_full_id),
7245                                        GNUNET_CONTAINER_MULTIHASHMAPOPTION_UNIQUE_FAST);
7246
7247     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, " notifying client\n");
7248     send_client_peer_connected (t, myid);
7249     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, " Done\n");
7250     GNUNET_SERVER_receive_done (client, GNUNET_OK);
7251
7252     t->local_tid_dest = next_local_tid++;
7253     GNUNET_CRYPTO_hash (&t->local_tid_dest, sizeof (MESH_TunnelNumber), &hash);
7254     GNUNET_CONTAINER_multihashmap_put (incoming_tunnels, &hash, t,
7255                                        GNUNET_CONTAINER_MULTIHASHMAPOPTION_UNIQUE_FAST);
7256
7257     return;
7258   }
7259   /* Ok, lets find a peer offering the service */
7260   if (NULL != t->dht_get_type)
7261   {
7262     GNUNET_DHT_get_stop (t->dht_get_type);
7263   }
7264   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, " looking in DHT for %s\n",
7265               GNUNET_h2s (&hash));
7266   t->dht_get_type =
7267       GNUNET_DHT_get_start (dht_handle, 
7268                             GNUNET_BLOCK_TYPE_MESH_PEER_BY_TYPE,
7269                             &hash,
7270                             dht_replication_level,
7271                             GNUNET_DHT_RO_RECORD_ROUTE |
7272                             GNUNET_DHT_RO_DEMULTIPLEX_EVERYWHERE,
7273                             NULL, 0,
7274                             &dht_get_type_handler, t);
7275
7276   GNUNET_SERVER_receive_done (client, GNUNET_OK);
7277   return;
7278 }
7279
7280
7281 /**
7282  * Handler for connection requests to new peers by a string service description.
7283  *
7284  * @param cls closure
7285  * @param client identification of the client
7286  * @param message the actual message, which includes messages the client wants
7287  */
7288 static void
7289 handle_local_connect_by_string (void *cls, struct GNUNET_SERVER_Client *client,
7290                                 const struct GNUNET_MessageHeader *message)
7291 {
7292   struct GNUNET_MESH_ConnectPeerByString *msg;
7293   struct MeshRegexSearchContext *ctx;
7294   struct MeshRegexSearchInfo *info;
7295   struct GNUNET_DHT_GetHandle *get_h;
7296   struct GNUNET_HashCode key;
7297   struct MeshTunnel *t;
7298   struct MeshClient *c;
7299   MESH_TunnelNumber tid;
7300   const char *string;
7301   size_t size;
7302   size_t len;
7303   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
7304               "Connect by string started\n");
7305   msg = (struct GNUNET_MESH_ConnectPeerByString *) message;
7306   size = htons (message->size);
7307
7308   /* Sanity check for client registration */
7309   if (NULL == (c = client_get (client)))
7310   {
7311     GNUNET_break (0);
7312     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
7313     return;
7314   }
7315   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  by client %u\n", c->id);
7316
7317   /* Message size sanity check */
7318   if (sizeof(struct GNUNET_MESH_ConnectPeerByString) >= size)
7319   {
7320     GNUNET_break (0);
7321     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
7322     return;
7323   }
7324
7325   /* Tunnel exists? */
7326   tid = ntohl (msg->tunnel_id);
7327   t = tunnel_get_by_local_id (c, tid);
7328   if (NULL == t)
7329   {
7330     GNUNET_break (0);
7331     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
7332     return;
7333   }
7334
7335   /* Does client own tunnel? */
7336   if (t->owner->handle != client)
7337   {
7338     GNUNET_break (0);
7339     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
7340     return;
7341   }
7342
7343   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
7344               "  on tunnel %s [%u]\n",
7345               GNUNET_i2s(&my_full_id),
7346               t->id.tid);
7347
7348   /* Only one connect_by_string allowed at the same time! */
7349   /* FIXME: allow more, return handle at api level to cancel, document */
7350   if (NULL != t->regex_ctx)
7351   {
7352     GNUNET_break (0);
7353     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
7354     return;
7355   }
7356
7357   /* Find string itself */
7358   len = size - sizeof(struct GNUNET_MESH_ConnectPeerByString);
7359   string = (const char *) &msg[1];
7360
7361   /* Initialize context */
7362   size = GNUNET_REGEX_get_first_key(string, len, &key);
7363   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
7364               "  consumed %u bits out of %u\n", size, len);
7365   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
7366               "  looking for %s\n", GNUNET_h2s (&key));
7367
7368   info = GNUNET_malloc (sizeof (struct MeshRegexSearchInfo));
7369   info->t = t;
7370   info->description = GNUNET_malloc (len + 1);
7371   memcpy (info->description, string, len);
7372   info->description[len] = '\0';
7373   info->dht_get_handles = GNUNET_CONTAINER_multihashmap_create(32, GNUNET_NO);
7374   info->dht_get_results = GNUNET_CONTAINER_multihashmap_create(32, GNUNET_NO);
7375   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "   string: %s\n", info->description);
7376
7377   ctx = GNUNET_malloc (sizeof (struct MeshRegexSearchContext));
7378   ctx->position = size;
7379   ctx->info = info;
7380   t->regex_ctx = ctx;
7381
7382   GNUNET_array_append (info->contexts, info->n_contexts, ctx);
7383
7384   /* Start search in DHT */
7385   get_h = GNUNET_DHT_get_start (dht_handle,    /* handle */
7386                                 GNUNET_BLOCK_TYPE_MESH_REGEX, /* type */
7387                                 &key,     /* key to search */
7388                                 dht_replication_level, /* replication level */
7389                                 GNUNET_DHT_RO_DEMULTIPLEX_EVERYWHERE,
7390                                 NULL,       /* xquery */ // FIXME BLOOMFILTER
7391                                 0,     /* xquery bits */ // FIXME BLOOMFILTER SIZE
7392                                 &dht_get_string_handler, ctx);
7393
7394   GNUNET_break (GNUNET_OK ==
7395                 GNUNET_CONTAINER_multihashmap_put(info->dht_get_handles,
7396                                                   &key,
7397                                                   get_h,
7398                                                   GNUNET_CONTAINER_MULTIHASHMAPOPTION_UNIQUE_FAST));
7399
7400   GNUNET_SERVER_receive_done (client, GNUNET_OK);
7401   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "connect by string processed\n");
7402 }
7403
7404
7405 /**
7406  * Handler for client traffic directed to one peer
7407  *
7408  * @param cls closure
7409  * @param client identification of the client
7410  * @param message the actual message
7411  */
7412 static void
7413 handle_local_unicast (void *cls, struct GNUNET_SERVER_Client *client,
7414                       const struct GNUNET_MessageHeader *message)
7415 {
7416   struct MeshClient *c;
7417   struct MeshTunnel *t;
7418   struct MeshPeerInfo *pi;
7419   struct GNUNET_MESH_Unicast *data_msg;
7420   MESH_TunnelNumber tid;
7421   size_t size;
7422
7423   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
7424               "Got a unicast request from a client!\n");
7425
7426   /* Sanity check for client registration */
7427   if (NULL == (c = client_get (client)))
7428   {
7429     GNUNET_break (0);
7430     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
7431     return;
7432   }
7433   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  by client %u\n", c->id);
7434
7435   data_msg = (struct GNUNET_MESH_Unicast *) message;
7436
7437   /* Sanity check for message size */
7438   size = ntohs (message->size);
7439   if (sizeof (struct GNUNET_MESH_Unicast) +
7440       sizeof (struct GNUNET_MessageHeader) > size)
7441   {
7442     GNUNET_break (0);
7443     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
7444     return;
7445   }
7446
7447   /* Tunnel exists? */
7448   tid = ntohl (data_msg->tid);
7449   t = tunnel_get_by_local_id (c, tid);
7450   if (NULL == t)
7451   {
7452     GNUNET_break (0);
7453     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
7454     return;
7455   }
7456
7457   /*  Is it a local tunnel? Then, does client own the tunnel? */
7458   if (t->owner->handle != client)
7459   {
7460     GNUNET_break (0);
7461     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
7462     return;
7463   }
7464
7465   pi = GNUNET_CONTAINER_multihashmap_get (t->peers,
7466                                           &data_msg->destination.hashPubKey);
7467   /* Is the selected peer in the tunnel? */
7468   if (NULL == pi)
7469   {
7470     GNUNET_break (0);
7471     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
7472     return;
7473   }
7474
7475   /* PID should be as expected */
7476   if (ntohl (data_msg->pid) != t->fwd_pid + 1)
7477   {
7478     GNUNET_break (0);
7479     GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
7480               "Unicast PID, expected %u, got %u\n",
7481               t->fwd_pid + 1, ntohl (data_msg->pid));
7482     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
7483     return;
7484   }
7485
7486   /* Ok, everything is correct, send the message
7487    * (pretend we got it from a mesh peer)
7488    */
7489   {
7490     /* Work around const limitation */
7491     char buf[ntohs (message->size)] GNUNET_ALIGN;
7492     struct GNUNET_MESH_Unicast *copy;
7493
7494     copy = (struct GNUNET_MESH_Unicast *) buf;
7495     memcpy (buf, data_msg, size);
7496     copy->oid = my_full_id;
7497     copy->tid = htonl (t->id.tid);
7498     copy->ttl = htonl (default_ttl);
7499     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
7500                 "  calling generic handler...\n");
7501     handle_mesh_data_unicast (NULL, &my_full_id, &copy->header, NULL, 0);
7502   }
7503   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "receive done OK\n");
7504   GNUNET_SERVER_receive_done (client, GNUNET_OK);
7505
7506   return;
7507 }
7508
7509
7510 /**
7511  * Handler for client traffic directed to the origin
7512  *
7513  * @param cls closure
7514  * @param client identification of the client
7515  * @param message the actual message
7516  */
7517 static void
7518 handle_local_to_origin (void *cls, struct GNUNET_SERVER_Client *client,
7519                         const struct GNUNET_MessageHeader *message)
7520 {
7521   struct GNUNET_MESH_ToOrigin *data_msg;
7522   struct MeshTunnelClientInfo *clinfo;
7523   struct MeshClient *c;
7524   struct MeshTunnel *t;
7525   MESH_TunnelNumber tid;
7526   size_t size;
7527
7528   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
7529               "Got a ToOrigin request from a client!\n");
7530   /* Sanity check for client registration */
7531   if (NULL == (c = client_get (client)))
7532   {
7533     GNUNET_break (0);
7534     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
7535     return;
7536   }
7537   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  by client %u\n", c->id);
7538
7539   data_msg = (struct GNUNET_MESH_ToOrigin *) message;
7540
7541   /* Sanity check for message size */
7542   size = ntohs (message->size);
7543   if (sizeof (struct GNUNET_MESH_ToOrigin) +
7544       sizeof (struct GNUNET_MessageHeader) > size)
7545   {
7546     GNUNET_break (0);
7547     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
7548     return;
7549   }
7550
7551   /* Tunnel exists? */
7552   tid = ntohl (data_msg->tid);
7553   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  on tunnel %X\n", tid);
7554   if (tid < GNUNET_MESH_LOCAL_TUNNEL_ID_SERV)
7555   {
7556     GNUNET_break (0);
7557     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
7558     return;
7559   }
7560   t = tunnel_get_by_local_id (c, tid);
7561   if (NULL == t)
7562   {
7563     GNUNET_log (GNUNET_ERROR_TYPE_WARNING, "Tunnel %X unknown.\n", tid);
7564     GNUNET_log (GNUNET_ERROR_TYPE_WARNING, "  for client %u.\n", c->id);
7565     GNUNET_break (0);
7566     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
7567     return;
7568   }
7569
7570   /*  It should be sent by someone who has this as incoming tunnel. */
7571   if (GNUNET_NO == client_knows_tunnel (c, t))
7572   {
7573     GNUNET_break (0);
7574     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
7575     return;
7576   }
7577
7578   /* PID should be as expected */
7579   clinfo = tunnel_get_client_fc (t, c);
7580   if (ntohl (data_msg->pid) != clinfo->bck_pid + 1)
7581   {
7582     GNUNET_break (0);
7583     GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
7584                 "To Origin PID, expected %u, got %u\n",
7585                 clinfo->bck_pid + 1,
7586                 ntohl (data_msg->pid));
7587     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
7588     return;
7589   }
7590
7591   /* Ok, everything is correct, send the message
7592    * (pretend we got it from a mesh peer)
7593    */
7594   clinfo->bck_pid++;
7595   {
7596     char buf[ntohs (message->size)] GNUNET_ALIGN;
7597     struct GNUNET_MESH_ToOrigin *copy;
7598
7599     /* Work around const limitation */
7600     copy = (struct GNUNET_MESH_ToOrigin *) buf;
7601     memcpy (buf, data_msg, size);
7602     GNUNET_PEER_resolve (t->id.oid, &copy->oid);
7603     copy->tid = htonl (t->id.tid);
7604     copy->ttl = htonl (default_ttl);
7605     if (ntohl (copy->pid) != (t->bck_pid + 1))
7606     {
7607       GNUNET_break (0);
7608       GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
7609                   "To Origin PID, expected %u, got %u\n",
7610                   t->bck_pid + 1,
7611                   ntohl (copy->pid));
7612       return;
7613     }
7614     t->bck_pid++;
7615     copy->sender = my_full_id;
7616     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
7617                 "  calling generic handler...\n");
7618     handle_mesh_data_to_orig (NULL, &my_full_id, &copy->header, NULL, 0);
7619   }
7620   GNUNET_SERVER_receive_done (client, GNUNET_OK);
7621
7622   return;
7623 }
7624
7625
7626 /**
7627  * Handler for client traffic directed to all peers in a tunnel
7628  *
7629  * @param cls closure
7630  * @param client identification of the client
7631  * @param message the actual message
7632  */
7633 static void
7634 handle_local_multicast (void *cls, struct GNUNET_SERVER_Client *client,
7635                         const struct GNUNET_MessageHeader *message)
7636 {
7637   struct MeshClient *c;
7638   struct MeshTunnel *t;
7639   struct GNUNET_MESH_Multicast *data_msg;
7640   MESH_TunnelNumber tid;
7641
7642   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
7643               "Got a multicast request from a client!\n");
7644
7645   /* Sanity check for client registration */
7646   if (NULL == (c = client_get (client)))
7647   {
7648     GNUNET_break (0);
7649     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
7650     return;
7651   }
7652   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  by client %u\n", c->id);
7653
7654   data_msg = (struct GNUNET_MESH_Multicast *) message;
7655
7656   /* Sanity check for message size */
7657   if (sizeof (struct GNUNET_MESH_Multicast) +
7658       sizeof (struct GNUNET_MessageHeader) > ntohs (data_msg->header.size))
7659   {
7660     GNUNET_break (0);
7661     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
7662     return;
7663   }
7664
7665   /* Tunnel exists? */
7666   tid = ntohl (data_msg->tid);
7667   t = tunnel_get_by_local_id (c, tid);
7668   if (NULL == t)
7669   {
7670     GNUNET_break (0);
7671     GNUNET_log (GNUNET_ERROR_TYPE_WARNING, "Tunnel %X unknown.\n", tid);
7672     GNUNET_log (GNUNET_ERROR_TYPE_WARNING, "  for client %u.\n", c->id);
7673     GNUNET_break (0);
7674     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
7675     return;
7676   }
7677
7678   /* Does client own tunnel? */
7679   if (t->owner->handle != client)
7680   {
7681     GNUNET_break (0);
7682     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
7683     return;
7684   }
7685
7686   /* PID should be as expected */
7687   if (ntohl (data_msg->pid) != t->fwd_pid + 1)
7688   {
7689     GNUNET_break (0);
7690     GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
7691               "Multicast PID, expected %u, got %u\n",
7692               t->fwd_pid + 1, ntohl (data_msg->pid));
7693     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
7694     return;
7695   }
7696
7697   {
7698     char buf[ntohs (message->size)] GNUNET_ALIGN;
7699     struct GNUNET_MESH_Multicast *copy;
7700
7701     copy = (struct GNUNET_MESH_Multicast *) buf;
7702     memcpy (buf, message, ntohs (message->size));
7703     copy->oid = my_full_id;
7704     copy->tid = htonl (t->id.tid);
7705     copy->ttl = htonl (default_ttl);
7706     GNUNET_assert (ntohl (copy->pid) == (t->fwd_pid + 1));
7707     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
7708                 "  calling generic handler...\n");
7709     handle_mesh_data_multicast (client, &my_full_id, &copy->header, NULL, 0);
7710   }
7711
7712   GNUNET_SERVER_receive_done (t->owner->handle, GNUNET_OK);
7713   return;
7714 }
7715
7716
7717 /**
7718  * Handler for client's ACKs for payload traffic.
7719  *
7720  * @param cls Closure (unused).
7721  * @param client Identification of the client.
7722  * @param message The actual message.
7723  */
7724 static void
7725 handle_local_ack (void *cls, struct GNUNET_SERVER_Client *client,
7726                   const struct GNUNET_MessageHeader *message)
7727 {
7728   struct GNUNET_MESH_LocalAck *msg;
7729   struct MeshTunnel *t;
7730   struct MeshClient *c;
7731   MESH_TunnelNumber tid;
7732   uint32_t ack;
7733
7734   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Got a local ACK\n");
7735   /* Sanity check for client registration */
7736   if (NULL == (c = client_get (client)))
7737   {
7738     GNUNET_break (0);
7739     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
7740     return;
7741   }
7742   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  by client %u\n", c->id);
7743
7744   msg = (struct GNUNET_MESH_LocalAck *) message;
7745
7746   /* Tunnel exists? */
7747   tid = ntohl (msg->tunnel_id);
7748   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  on tunnel %X\n", tid);
7749   t = tunnel_get_by_local_id (c, tid);
7750   if (NULL == t)
7751   {
7752     GNUNET_break (0);
7753     GNUNET_log (GNUNET_ERROR_TYPE_WARNING, "Tunnel %X unknown.\n", tid);
7754     GNUNET_log (GNUNET_ERROR_TYPE_WARNING, "  for client %u.\n", c->id);
7755     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
7756     return;
7757   }
7758
7759   ack = ntohl (msg->max_pid);
7760   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  ack %u\n", ack);
7761
7762   /* Does client own tunnel? I.E: Is this and ACK for BCK traffic? */
7763   if (NULL != t->owner && t->owner->handle == client)
7764   {
7765     /* The client owns the tunnel, ACK is for data to_origin, send BCK ACK. */
7766     t->bck_ack = ack;
7767     tunnel_send_bck_ack(t, GNUNET_MESSAGE_TYPE_MESH_LOCAL_ACK);
7768   }
7769   else
7770   {
7771     /* The client doesn't own the tunnel, this ACK is for FWD traffic. */
7772     tunnel_set_client_fwd_ack (t, c, ack);
7773     tunnel_send_fwd_ack (t, GNUNET_MESSAGE_TYPE_MESH_LOCAL_ACK);
7774   }
7775
7776   GNUNET_SERVER_receive_done (client, GNUNET_OK);  
7777
7778   return;
7779 }
7780
7781
7782 /**
7783  * Functions to handle messages from clients
7784  */
7785 static struct GNUNET_SERVER_MessageHandler client_handlers[] = {
7786   {&handle_local_new_client, NULL,
7787    GNUNET_MESSAGE_TYPE_MESH_LOCAL_CONNECT, 0},
7788   {&handle_local_announce_regex, NULL,
7789    GNUNET_MESSAGE_TYPE_MESH_LOCAL_ANNOUNCE_REGEX, 0},
7790   {&handle_local_tunnel_create, NULL,
7791    GNUNET_MESSAGE_TYPE_MESH_LOCAL_TUNNEL_CREATE,
7792    sizeof (struct GNUNET_MESH_TunnelMessage)},
7793   {&handle_local_tunnel_destroy, NULL,
7794    GNUNET_MESSAGE_TYPE_MESH_LOCAL_TUNNEL_DESTROY,
7795    sizeof (struct GNUNET_MESH_TunnelMessage)},
7796   {&handle_local_tunnel_speed, NULL,
7797    GNUNET_MESSAGE_TYPE_MESH_LOCAL_TUNNEL_MIN,
7798    sizeof (struct GNUNET_MESH_TunnelMessage)},
7799   {&handle_local_tunnel_speed, NULL,
7800    GNUNET_MESSAGE_TYPE_MESH_LOCAL_TUNNEL_MAX,
7801    sizeof (struct GNUNET_MESH_TunnelMessage)},
7802   {&handle_local_tunnel_buffer, NULL,
7803    GNUNET_MESSAGE_TYPE_MESH_LOCAL_TUNNEL_BUFFER,
7804    sizeof (struct GNUNET_MESH_TunnelMessage)},
7805   {&handle_local_tunnel_buffer, NULL,
7806    GNUNET_MESSAGE_TYPE_MESH_LOCAL_TUNNEL_NOBUFFER,
7807    sizeof (struct GNUNET_MESH_TunnelMessage)},
7808   {&handle_local_connect_add, NULL,
7809    GNUNET_MESSAGE_TYPE_MESH_LOCAL_PEER_ADD,
7810    sizeof (struct GNUNET_MESH_PeerControl)},
7811   {&handle_local_connect_del, NULL,
7812    GNUNET_MESSAGE_TYPE_MESH_LOCAL_PEER_DEL,
7813    sizeof (struct GNUNET_MESH_PeerControl)},
7814   {&handle_local_blacklist, NULL,
7815    GNUNET_MESSAGE_TYPE_MESH_LOCAL_PEER_BLACKLIST,
7816    sizeof (struct GNUNET_MESH_PeerControl)},
7817   {&handle_local_unblacklist, NULL,
7818    GNUNET_MESSAGE_TYPE_MESH_LOCAL_PEER_UNBLACKLIST,
7819    sizeof (struct GNUNET_MESH_PeerControl)},
7820   {&handle_local_connect_by_type, NULL,
7821    GNUNET_MESSAGE_TYPE_MESH_LOCAL_PEER_ADD_BY_TYPE,
7822    sizeof (struct GNUNET_MESH_ConnectPeerByType)},
7823   {&handle_local_connect_by_string, NULL,
7824    GNUNET_MESSAGE_TYPE_MESH_LOCAL_PEER_ADD_BY_STRING, 0},
7825   {&handle_local_unicast, NULL,
7826    GNUNET_MESSAGE_TYPE_MESH_UNICAST, 0},
7827   {&handle_local_to_origin, NULL,
7828    GNUNET_MESSAGE_TYPE_MESH_TO_ORIGIN, 0},
7829   {&handle_local_multicast, NULL,
7830    GNUNET_MESSAGE_TYPE_MESH_MULTICAST, 0},
7831   {&handle_local_ack, NULL,
7832    GNUNET_MESSAGE_TYPE_MESH_LOCAL_ACK,
7833    sizeof (struct GNUNET_MESH_LocalAck)},
7834   {NULL, NULL, 0, 0}
7835 };
7836
7837
7838 /**
7839  * To be called on core init/fail.
7840  *
7841  * @param cls service closure
7842  * @param server handle to the server for this service
7843  * @param identity the public identity of this peer
7844  */
7845 static void
7846 core_init (void *cls, struct GNUNET_CORE_Handle *server,
7847            const struct GNUNET_PeerIdentity *identity)
7848 {
7849   static int i = 0;
7850   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Core init\n");
7851   core_handle = server;
7852   if (0 != memcmp (identity, &my_full_id, sizeof (my_full_id)) ||
7853       NULL == server)
7854   {
7855     GNUNET_log (GNUNET_ERROR_TYPE_ERROR, _("Wrong CORE service\n"));
7856     GNUNET_SCHEDULER_shutdown (); // Try gracefully
7857     if (10 < i++)
7858       GNUNET_abort(); // Try harder
7859   }
7860   return;
7861 }
7862
7863
7864 /**
7865  * Method called whenever a given peer connects.
7866  *
7867  * @param cls closure
7868  * @param peer peer identity this notification is about
7869  * @param atsi performance data for the connection
7870  * @param atsi_count number of records in 'atsi'
7871  */
7872 static void
7873 core_connect (void *cls, const struct GNUNET_PeerIdentity *peer,
7874               const struct GNUNET_ATS_Information *atsi,
7875               unsigned int atsi_count)
7876 {
7877   struct MeshPeerInfo *peer_info;
7878   struct MeshPeerPath *path;
7879
7880   DEBUG_CONN ("Peer connected\n");
7881   DEBUG_CONN ("     %s\n", GNUNET_i2s (&my_full_id));
7882   peer_info = peer_info_get (peer);
7883   if (myid == peer_info->id)
7884   {
7885     DEBUG_CONN ("     (self)\n");
7886     return;
7887   }
7888   else
7889   {
7890     DEBUG_CONN ("     %s\n", GNUNET_i2s (peer));
7891   }
7892   path = path_new (2);
7893   path->peers[0] = myid;
7894   path->peers[1] = peer_info->id;
7895   GNUNET_PEER_change_rc (myid, 1);
7896   GNUNET_PEER_change_rc (peer_info->id, 1);
7897   peer_info_add_path (peer_info, path, GNUNET_YES);
7898   GNUNET_STATISTICS_update (stats, "# peers", 1, GNUNET_NO);
7899   return;
7900 }
7901
7902
7903 /**
7904  * Method called whenever a peer disconnects.
7905  *
7906  * @param cls closure
7907  * @param peer peer identity this notification is about
7908  */
7909 static void
7910 core_disconnect (void *cls, const struct GNUNET_PeerIdentity *peer)
7911 {
7912   struct MeshPeerInfo *pi;
7913   struct MeshPeerQueue *q;
7914   struct MeshPeerQueue *n;
7915
7916   DEBUG_CONN ("Peer disconnected\n");
7917   pi = GNUNET_CONTAINER_multihashmap_get (peers, &peer->hashPubKey);
7918   if (NULL == pi)
7919   {
7920     GNUNET_break (0);
7921     return;
7922   }
7923   q = pi->queue_head;
7924   while (NULL != q)
7925   {
7926       n = q->next;
7927       /* TODO try to reroute this traffic instead */
7928       queue_destroy(q, GNUNET_YES);
7929       q = n;
7930   }
7931   if (NULL != pi->core_transmit)
7932   {
7933     GNUNET_CORE_notify_transmit_ready_cancel(pi->core_transmit);
7934     pi->core_transmit = NULL;
7935   }
7936   peer_info_remove_path (pi, pi->id, myid);
7937   if (myid == pi->id)
7938   {
7939     DEBUG_CONN ("     (self)\n");
7940   }
7941   GNUNET_STATISTICS_update (stats, "# peers", -1, GNUNET_NO);
7942   return;
7943 }
7944
7945
7946 /******************************************************************************/
7947 /************************      MAIN FUNCTIONS      ****************************/
7948 /******************************************************************************/
7949
7950 /**
7951  * Iterator over tunnel hash map entries to destroy the tunnel during shutdown.
7952  *
7953  * @param cls closure
7954  * @param key current key code
7955  * @param value value in the hash map
7956  * @return GNUNET_YES if we should continue to iterate,
7957  *         GNUNET_NO if not.
7958  */
7959 static int
7960 shutdown_tunnel (void *cls, const struct GNUNET_HashCode * key, void *value)
7961 {
7962   struct MeshTunnel *t = value;
7963
7964   tunnel_destroy (t);
7965   return GNUNET_YES;
7966 }
7967
7968 /**
7969  * Iterator over peer hash map entries to destroy the tunnel during shutdown.
7970  *
7971  * @param cls closure
7972  * @param key current key code
7973  * @param value value in the hash map
7974  * @return GNUNET_YES if we should continue to iterate,
7975  *         GNUNET_NO if not.
7976  */
7977 static int
7978 shutdown_peer (void *cls, const struct GNUNET_HashCode * key, void *value)
7979 {
7980   struct MeshPeerInfo *p = value;
7981   struct MeshPeerQueue *q;
7982   struct MeshPeerQueue *n;
7983
7984   q = p->queue_head;
7985   while (NULL != q)
7986   {
7987       n = q->next;
7988       if (q->peer == p)
7989       {
7990         queue_destroy(q, GNUNET_YES);
7991       }
7992       q = n;
7993   }
7994   peer_info_destroy (p);
7995   return GNUNET_YES;
7996 }
7997
7998
7999 /**
8000  * Task run during shutdown.
8001  *
8002  * @param cls unused
8003  * @param tc unused
8004  */
8005 static void
8006 shutdown_task (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
8007 {
8008   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "shutting down\n");
8009
8010   if (core_handle != NULL)
8011   {
8012     GNUNET_CORE_disconnect (core_handle);
8013     core_handle = NULL;
8014   }
8015  if (NULL != keygen)
8016   {
8017     GNUNET_CRYPTO_rsa_key_create_stop (keygen);
8018     keygen = NULL;
8019   }
8020   GNUNET_CONTAINER_multihashmap_iterate (tunnels, &shutdown_tunnel, NULL);
8021   GNUNET_CONTAINER_multihashmap_iterate (peers, &shutdown_peer, NULL);
8022   if (dht_handle != NULL)
8023   {
8024     GNUNET_DHT_disconnect (dht_handle);
8025     dht_handle = NULL;
8026   }
8027   if (nc != NULL)
8028   {
8029     GNUNET_SERVER_notification_context_destroy (nc);
8030     nc = NULL;
8031   }
8032   if (GNUNET_SCHEDULER_NO_TASK != announce_id_task)
8033   {
8034     GNUNET_SCHEDULER_cancel (announce_id_task);
8035     announce_id_task = GNUNET_SCHEDULER_NO_TASK;
8036   }
8037   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "shut down\n");
8038 }
8039
8040
8041 /**
8042  * Callback for hostkey read/generation
8043  *
8044  * @param cls NULL
8045  * @param pk the private key
8046  * @param emsg error message
8047  */
8048 static void
8049 key_generation_cb (void *cls,
8050                    struct GNUNET_CRYPTO_RsaPrivateKey *pk,
8051                    const char *emsg)
8052 {
8053   struct MeshPeerInfo *peer;
8054   struct MeshPeerPath *p;
8055
8056   keygen = NULL;  
8057   if (NULL == pk)
8058   {
8059     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
8060                 _("Mesh service could not access hostkey.  Exiting.\n"));
8061     GNUNET_SCHEDULER_shutdown ();
8062     return;
8063   }
8064   my_private_key = pk;
8065   GNUNET_CRYPTO_rsa_key_get_public (my_private_key, &my_public_key);
8066   GNUNET_CRYPTO_hash (&my_public_key, sizeof (my_public_key),
8067                       &my_full_id.hashPubKey);
8068   myid = GNUNET_PEER_intern (&my_full_id);
8069   GNUNET_log (GNUNET_ERROR_TYPE_INFO,
8070               "Mesh for peer [%s] starting\n",
8071               GNUNET_i2s(&my_full_id));
8072
8073 //   transport_handle = GNUNET_TRANSPORT_connect(c,
8074 //                                               &my_full_id,
8075 //                                               NULL,
8076 //                                               NULL,
8077 //                                               NULL,
8078 //                                               NULL);
8079
8080
8081
8082   next_tid = 0;
8083   next_local_tid = GNUNET_MESH_LOCAL_TUNNEL_ID_SERV;
8084
8085
8086   GNUNET_SERVER_add_handlers (server_handle, client_handlers);
8087   nc = GNUNET_SERVER_notification_context_create (server_handle, 1);
8088   GNUNET_SERVER_disconnect_notify (server_handle,
8089                                    &handle_local_client_disconnect, NULL);
8090
8091
8092   clients = NULL;
8093   clients_tail = NULL;
8094   next_client_id = 0;
8095
8096   announce_applications_task = GNUNET_SCHEDULER_NO_TASK;
8097   announce_id_task = GNUNET_SCHEDULER_add_now (&announce_id, cls);
8098
8099   /* Create a peer_info for the local peer */
8100   peer = peer_info_get (&my_full_id);
8101   p = path_new (1);
8102   p->peers[0] = myid;
8103   GNUNET_PEER_change_rc (myid, 1);
8104   peer_info_add_path (peer, p, GNUNET_YES);
8105   GNUNET_SERVER_resume (server_handle);
8106   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Mesh service running\n");
8107 }
8108
8109
8110 /**
8111  * Process mesh requests.
8112  *
8113  * @param cls closure
8114  * @param server the initialized server
8115  * @param c configuration to use
8116  */
8117 static void
8118 run (void *cls, struct GNUNET_SERVER_Handle *server,
8119      const struct GNUNET_CONFIGURATION_Handle *c)
8120 {
8121   char *keyfile;
8122
8123   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "starting to run\n");
8124   server_handle = server;
8125   core_handle = GNUNET_CORE_connect (c, /* Main configuration */
8126                                      NULL,      /* Closure passed to MESH functions */
8127                                      &core_init,        /* Call core_init once connected */
8128                                      &core_connect,     /* Handle connects */
8129                                      &core_disconnect,  /* remove peers on disconnects */
8130                                      NULL,      /* Don't notify about all incoming messages */
8131                                      GNUNET_NO, /* For header only in notification */
8132                                      NULL,      /* Don't notify about all outbound messages */
8133                                      GNUNET_NO, /* For header-only out notification */
8134                                      core_handlers);    /* Register these handlers */
8135
8136   if (core_handle == NULL)
8137   {
8138     GNUNET_break (0);
8139     GNUNET_SCHEDULER_shutdown ();
8140     return;
8141   }
8142
8143   if (GNUNET_OK !=
8144       GNUNET_CONFIGURATION_get_value_filename (c, "GNUNETD", "HOSTKEY",
8145                                                &keyfile))
8146   {
8147     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
8148                 _
8149                 ("%s service is lacking key configuration settings (%s).  Exiting.\n"),
8150                 "mesh", "hostkey");
8151     GNUNET_SCHEDULER_shutdown ();
8152     return;
8153   }
8154
8155   if (GNUNET_OK !=
8156       GNUNET_CONFIGURATION_get_value_time (c, "MESH", "REFRESH_PATH_TIME",
8157                                            &refresh_path_time))
8158   {
8159     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
8160                 _
8161                 ("%s service is lacking key configuration settings (%s).  Exiting.\n"),
8162                 "mesh", "refresh path time");
8163     GNUNET_SCHEDULER_shutdown ();
8164     return;
8165   }
8166
8167   if (GNUNET_OK !=
8168       GNUNET_CONFIGURATION_get_value_time (c, "MESH", "APP_ANNOUNCE_TIME",
8169                                            &app_announce_time))
8170   {
8171     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
8172                 _
8173                 ("%s service is lacking key configuration settings (%s).  Exiting.\n"),
8174                 "mesh", "app announce time");
8175     GNUNET_SCHEDULER_shutdown ();
8176     return;
8177   }
8178
8179   if (GNUNET_OK !=
8180       GNUNET_CONFIGURATION_get_value_time (c, "MESH", "ID_ANNOUNCE_TIME",
8181                                            &id_announce_time))
8182   {
8183     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
8184                 _
8185                 ("%s service is lacking key configuration settings (%s).  Exiting.\n"),
8186                 "mesh", "id announce time");
8187     GNUNET_SCHEDULER_shutdown ();
8188     return;
8189   }
8190   else
8191   {
8192   }
8193
8194   if (GNUNET_OK !=
8195       GNUNET_CONFIGURATION_get_value_time (c, "MESH", "UNACKNOWLEDGED_WAIT",
8196                                            &unacknowledged_wait_time))
8197   {
8198     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
8199                 _
8200                 ("%s service is lacking key configuration settings (%s).  Exiting.\n"),
8201                 "mesh", "unacknowledged wait time");
8202     GNUNET_SCHEDULER_shutdown ();
8203     return;
8204   }
8205
8206   if (GNUNET_OK !=
8207       GNUNET_CONFIGURATION_get_value_time (c, "MESH", "CONNECT_TIMEOUT",
8208                                            &connect_timeout))
8209   {
8210     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
8211                 _
8212                 ("%s service is lacking key configuration settings (%s).  Exiting.\n"),
8213                 "mesh", "connect timeout");
8214     GNUNET_SCHEDULER_shutdown ();
8215     return;
8216   }
8217
8218   if (GNUNET_OK !=
8219       GNUNET_CONFIGURATION_get_value_number (c, "MESH", "MAX_MSGS_QUEUE",
8220                                              &max_msgs_queue))
8221   {
8222     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
8223                 _
8224                 ("%s service is lacking key configuration settings (%s).  Exiting.\n"),
8225                 "mesh", "max msgs queue");
8226     GNUNET_SCHEDULER_shutdown ();
8227     return;
8228   }
8229
8230   if (GNUNET_OK !=
8231       GNUNET_CONFIGURATION_get_value_number (c, "MESH", "MAX_TUNNELS",
8232                                              &max_tunnels))
8233   {
8234     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
8235                 _
8236                 ("%s service is lacking key configuration settings (%s).  Exiting.\n"),
8237                 "mesh", "max tunnels");
8238     GNUNET_SCHEDULER_shutdown ();
8239     return;
8240   }
8241
8242   if (GNUNET_OK !=
8243       GNUNET_CONFIGURATION_get_value_number (c, "MESH", "DEFAULT_TTL",
8244                                              &default_ttl))
8245   {
8246     GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
8247                 _
8248                 ("%s service is lacking key configuration settings (%s). Using default (%u).\n"),
8249                 "mesh", "default ttl", 64);
8250     default_ttl = 64;
8251   }
8252
8253   if (GNUNET_OK !=
8254       GNUNET_CONFIGURATION_get_value_number (c, "MESH", "DHT_REPLICATION_LEVEL",
8255                                              &dht_replication_level))
8256   {
8257     GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
8258                 _
8259                 ("%s service is lacking key configuration settings (%s). Using default (%u).\n"),
8260                 "mesh", "dht replication level", 10);
8261     dht_replication_level = 10;
8262   }
8263
8264   tunnels = GNUNET_CONTAINER_multihashmap_create (32, GNUNET_NO);
8265   incoming_tunnels = GNUNET_CONTAINER_multihashmap_create (32, GNUNET_NO);
8266   peers = GNUNET_CONTAINER_multihashmap_create (32, GNUNET_NO);
8267   applications = GNUNET_CONTAINER_multihashmap_create (32, GNUNET_NO);
8268   types = GNUNET_CONTAINER_multihashmap_create (32, GNUNET_NO);
8269
8270   dht_handle = GNUNET_DHT_connect (c, 64);
8271   if (NULL == dht_handle)
8272   {
8273     GNUNET_break (0);
8274   }
8275   stats = GNUNET_STATISTICS_create ("mesh", c);
8276
8277   GNUNET_SERVER_suspend (server_handle);
8278   /* Scheduled the task to clean up when shutdown is called */
8279   GNUNET_SCHEDULER_add_delayed (GNUNET_TIME_UNIT_FOREVER_REL, &shutdown_task,
8280                                 NULL);
8281   keygen = GNUNET_CRYPTO_rsa_key_create_start (keyfile, &key_generation_cb, NULL);
8282   GNUNET_free (keyfile);
8283 }
8284
8285
8286 /**
8287  * The main function for the mesh service.
8288  *
8289  * @param argc number of arguments from the command line
8290  * @param argv command line arguments
8291  * @return 0 ok, 1 on error
8292  */
8293 int
8294 main (int argc, char *const *argv)
8295 {
8296   int ret;
8297   int r;
8298
8299   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "main()\n");
8300   r = GNUNET_SERVICE_run (argc, argv, "mesh", GNUNET_SERVICE_OPTION_NONE, &run,
8301                           NULL);
8302   ret = (GNUNET_OK == r) ? 0 : 1;
8303   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "main() END\n");
8304
8305   INTERVAL_SHOW;
8306
8307   GNUNET_log (GNUNET_ERROR_TYPE_INFO,
8308               "Mesh for peer [%s] FWD ACKs %u, BCK ACKs %u\n",
8309               GNUNET_i2s(&my_full_id), debug_fwd_ack, debug_bck_ack);
8310
8311   return ret;
8312 }