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