f6645f2fdc93c4d81404b8a91bd8018518dd144b
[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         GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
4668                     "   type prebuilt (payload, tunnel destroy)\n");
4669         dd = queue->cls;
4670         data_descriptor_decrement_rc (dd->mesh_data);
4671         break;
4672       case GNUNET_MESSAGE_TYPE_MESH_PATH_CREATE:
4673         GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "   type create path\n");
4674         path_info = queue->cls;
4675         path_destroy (path_info->path);
4676         break;
4677       default:
4678         GNUNET_break (0);
4679         GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
4680                     "   type %s unknown!\n",
4681                     GNUNET_MESH_DEBUG_M2S(queue->type));
4682     }
4683     GNUNET_free_non_null (queue->cls);
4684   }
4685   GNUNET_CONTAINER_DLL_remove (queue->peer->queue_head,
4686                                queue->peer->queue_tail,
4687                                queue);
4688
4689   /* Delete from child_fc in the appropiate tunnel */
4690   max = queue->tunnel->fwd_queue_max;
4691   GNUNET_PEER_resolve (queue->peer->id, &id);
4692   cinfo = tunnel_get_neighbor_fc (queue->tunnel, &id);
4693   if (NULL != cinfo)
4694   {
4695     for (i = 0; i < cinfo->send_buffer_n; i++)
4696     {
4697       unsigned int i2;
4698       i2 = (cinfo->send_buffer_start + i) % max;
4699       if (cinfo->send_buffer[i2] == queue)
4700       {
4701         /* Found corresponding entry in the send_buffer. Move all others back. */
4702         unsigned int j;
4703         unsigned int j2;
4704         unsigned int j3;
4705
4706         for (j = i, j2 = 0, j3 = 0; j < cinfo->send_buffer_n - 1; j++)
4707         {
4708           j2 = (cinfo->send_buffer_start + j) % max;
4709           j3 = (cinfo->send_buffer_start + j + 1) % max;
4710           cinfo->send_buffer[j2] = cinfo->send_buffer[j3];
4711         }
4712
4713         cinfo->send_buffer[j3] = NULL;
4714         cinfo->send_buffer_n--;
4715       }
4716     }
4717   }
4718
4719   GNUNET_free (queue);
4720 }
4721
4722
4723 /**
4724  * @brief Get the next transmittable message from the queue.
4725  *
4726  * This will be the head, except in the case of being a data packet
4727  * not allowed by the destination peer.
4728  *
4729  * @param peer Destination peer.
4730  *
4731  * @return The next viable MeshPeerQueue element to send to that peer.
4732  *         NULL when there are no transmittable messages.
4733  */
4734 struct MeshPeerQueue *
4735 queue_get_next (const struct MeshPeerInfo *peer)
4736 {
4737   struct MeshPeerQueue *q;
4738   struct MeshTunnel *t;
4739   struct MeshTransmissionDescriptor *info;
4740   struct MeshTunnelChildInfo *cinfo;
4741   struct GNUNET_MESH_Unicast *ucast;
4742   struct GNUNET_MESH_ToOrigin *to_orig;
4743   struct GNUNET_MESH_Multicast *mcast;
4744   struct GNUNET_PeerIdentity id;
4745   uint32_t pid;
4746   uint32_t ack;
4747
4748   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "*********   selecting message\n");
4749   for (q = peer->queue_head; NULL != q; q = q->next)
4750   {
4751     t = q->tunnel;
4752     info = q->cls;
4753     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
4754                 "*********     %s\n",
4755                 GNUNET_MESH_DEBUG_M2S(q->type));
4756     switch (q->type)
4757     {
4758       case GNUNET_MESSAGE_TYPE_MESH_UNICAST:
4759         ucast = (struct GNUNET_MESH_Unicast *) info->mesh_data->data;
4760         pid = ntohl (ucast->pid);
4761         GNUNET_PEER_resolve (info->peer->id, &id);
4762         cinfo = tunnel_get_neighbor_fc(t, &id);
4763         ack = cinfo->fwd_ack;
4764         break;
4765       case GNUNET_MESSAGE_TYPE_MESH_TO_ORIGIN:
4766         to_orig = (struct GNUNET_MESH_ToOrigin *) info->mesh_data->data;
4767         pid = ntohl (to_orig->pid);
4768         ack = t->bck_ack;
4769         break;
4770       case GNUNET_MESSAGE_TYPE_MESH_MULTICAST:
4771         mcast = (struct GNUNET_MESH_Multicast *) info->mesh_data->data;
4772         if (GNUNET_MESSAGE_TYPE_MESH_MULTICAST != ntohs(mcast->header.type)) 
4773         {
4774           // Not a multicast payload: multicast control traffic (destroy, etc)
4775           return q;
4776         }
4777         pid = ntohl (mcast->pid);
4778         GNUNET_PEER_resolve (info->peer->id, &id);
4779         cinfo = tunnel_get_neighbor_fc(t, &id);
4780         ack = cinfo->fwd_ack;
4781         break;
4782       default:
4783         GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
4784                     "*********   OK!\n");
4785         return q;
4786     }
4787         GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
4788                     "*********     ACK: %u, PID: %u\n",
4789                     ack, pid);
4790     if (GNUNET_NO == GMC_is_pid_bigger(pid, ack))
4791     {
4792       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
4793                   "*********   OK!\n");
4794       return q;
4795     }
4796     else
4797     {
4798       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
4799                   "*********     NEXT!\n");
4800     }
4801   }
4802   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
4803                 "*********   nothing found\n");
4804   return NULL;
4805 }
4806
4807
4808 /**
4809   * Core callback to write a queued packet to core buffer
4810   *
4811   * @param cls Closure (peer info).
4812   * @param size Number of bytes available in buf.
4813   * @param buf Where the to write the message.
4814   *
4815   * @return number of bytes written to buf
4816   */
4817 static size_t
4818 queue_send (void *cls, size_t size, void *buf)
4819 {
4820     struct MeshPeerInfo *peer = cls;
4821     struct GNUNET_MessageHeader *msg;
4822     struct MeshPeerQueue *queue;
4823     struct MeshTunnel *t;
4824     struct MeshTunnelChildInfo *cinfo;
4825     struct GNUNET_PeerIdentity dst_id;
4826     size_t data_size;
4827
4828     peer->core_transmit = NULL;
4829     cinfo = NULL;
4830
4831     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "********* Queue send\n");
4832     queue = queue_get_next (peer);
4833
4834     /* Queue has no internal mesh traffic nor sendable payload */
4835     if (NULL == queue)
4836     {
4837       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "*********   not ready, return\n");
4838       if (NULL == peer->queue_head)
4839         GNUNET_break (0); // Should've been canceled
4840       return 0;
4841     }
4842     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "*********   not empty\n");
4843
4844     GNUNET_PEER_resolve (peer->id, &dst_id);
4845     /* Check if buffer size is enough for the message */
4846     if (queue->size > size)
4847     {
4848         GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
4849                     "*********   not enough room, reissue\n");
4850         peer->core_transmit =
4851             GNUNET_CORE_notify_transmit_ready (core_handle,
4852                                                0,
4853                                                0,
4854                                                GNUNET_TIME_UNIT_FOREVER_REL,
4855                                                &dst_id,
4856                                                queue->size,
4857                                                &queue_send,
4858                                                peer);
4859         return 0;
4860     }
4861     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "*********   size ok\n");
4862
4863     t = queue->tunnel;
4864     if (GNUNET_MESSAGE_TYPE_MESH_UNICAST == queue->type)
4865     {
4866       t->fwd_queue_n--;
4867       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
4868                   "*********   unicast: t->q (%u/%u)\n",
4869                   t->fwd_queue_n, t->fwd_queue_max);
4870     }
4871     else if (GNUNET_MESSAGE_TYPE_MESH_TO_ORIGIN == queue->type)
4872     {
4873       t->bck_queue_n--;
4874       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "*********   to origin\n");
4875     }
4876
4877     /* Fill buf */
4878     switch (queue->type)
4879     {
4880       case 0:
4881       case GNUNET_MESSAGE_TYPE_MESH_ACK:
4882       case GNUNET_MESSAGE_TYPE_MESH_PATH_BROKEN:
4883       case GNUNET_MESSAGE_TYPE_MESH_PATH_DESTROY:
4884       case GNUNET_MESSAGE_TYPE_MESH_TUNNEL_DESTROY:
4885         GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
4886                     "*********   raw: %s\n",
4887                     GNUNET_MESH_DEBUG_M2S (queue->type));
4888         /* Fall through */
4889       case GNUNET_MESSAGE_TYPE_MESH_UNICAST:
4890       case GNUNET_MESSAGE_TYPE_MESH_TO_ORIGIN:
4891         data_size = send_core_data_raw (queue->cls, size, buf);
4892         msg = (struct GNUNET_MessageHeader *) buf;
4893         switch (ntohs (msg->type)) // Type of preconstructed message
4894         {
4895           case GNUNET_MESSAGE_TYPE_MESH_UNICAST:
4896             tunnel_send_fwd_ack (t, GNUNET_MESSAGE_TYPE_MESH_UNICAST);
4897             break;
4898           case GNUNET_MESSAGE_TYPE_MESH_TO_ORIGIN:
4899             tunnel_send_bck_ack (t, GNUNET_MESSAGE_TYPE_MESH_TO_ORIGIN);
4900             break;
4901           default:
4902               break;
4903         }
4904         break;
4905       case GNUNET_MESSAGE_TYPE_MESH_MULTICAST:
4906         GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "*********   multicast\n");
4907         {
4908           struct MeshTransmissionDescriptor *info = queue->cls;
4909
4910           if ((1 == info->mesh_data->reference_counter
4911               && GNUNET_YES == t->speed_min)
4912               ||
4913               (info->mesh_data->total_out == info->mesh_data->reference_counter
4914               && GNUNET_NO == t->speed_min))
4915           {
4916             GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
4917                         "*********   considered sent\n");
4918             t->fwd_queue_n--;
4919           }
4920         }
4921         data_size = send_core_data_multicast(queue->cls, size, buf);
4922         tunnel_send_fwd_ack (t, GNUNET_MESSAGE_TYPE_MESH_MULTICAST);
4923         break;
4924       case GNUNET_MESSAGE_TYPE_MESH_PATH_CREATE:
4925         GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "*********   path create\n");
4926         data_size = send_core_path_create (queue->cls, size, buf);
4927         break;
4928       case GNUNET_MESSAGE_TYPE_MESH_PATH_ACK:
4929         GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "*********   path ack\n");
4930         data_size = send_core_path_ack (queue->cls, size, buf);
4931         break;
4932       case GNUNET_MESSAGE_TYPE_MESH_PATH_KEEPALIVE:
4933         GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "*********   path keepalive\n");
4934         data_size = send_core_data_multicast (queue->cls, size, buf);
4935         break;
4936       default:
4937         GNUNET_break (0);
4938         GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
4939                     "*********   type unknown: %u\n",
4940                     queue->type);
4941         data_size = 0;
4942     }
4943     switch (queue->type)
4944     {
4945       case GNUNET_MESSAGE_TYPE_MESH_UNICAST:
4946       case GNUNET_MESSAGE_TYPE_MESH_TO_ORIGIN:
4947       case GNUNET_MESSAGE_TYPE_MESH_MULTICAST:
4948         cinfo = tunnel_get_neighbor_fc (t, &dst_id);
4949         if (cinfo->send_buffer[cinfo->send_buffer_start] != queue)
4950         {
4951           GNUNET_break (0);
4952           GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
4953                       "at pos %u (%p) != %p\n",
4954                       cinfo->send_buffer_start,
4955                       cinfo->send_buffer[cinfo->send_buffer_start],
4956                       queue);
4957         }
4958         if (cinfo->send_buffer_n > 0)
4959         {
4960           cinfo->send_buffer[cinfo->send_buffer_start] = NULL;
4961           cinfo->send_buffer_n--;
4962           cinfo->send_buffer_start++;
4963           cinfo->send_buffer_start %= t->fwd_queue_max;
4964         }
4965         else
4966         {
4967           GNUNET_break (0);
4968         }
4969         break;
4970       default:
4971         break;
4972     }
4973
4974     /* Free queue, but cls was freed by send_core_* */
4975     queue_destroy (queue, GNUNET_NO);
4976
4977     if (GNUNET_YES == t->destroy)
4978     {
4979       // FIXME fc tunnel destroy all pending traffic? wait for it?
4980       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "*********  destroying tunnel!\n");
4981       tunnel_destroy (t);
4982     }
4983
4984     /* If more data in queue, send next */
4985     queue = queue_get_next(peer);
4986     if (NULL != queue)
4987     {
4988         struct GNUNET_PeerIdentity id;
4989
4990         GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "*********   more data!\n");
4991         GNUNET_PEER_resolve (peer->id, &id);
4992         peer->core_transmit =
4993             GNUNET_CORE_notify_transmit_ready(core_handle,
4994                                               0,
4995                                               0,
4996                                               GNUNET_TIME_UNIT_FOREVER_REL,
4997                                               &id,
4998                                               queue->size,
4999                                               &queue_send,
5000                                               peer);
5001     }
5002     else
5003     {
5004       if (NULL != peer->queue_head)
5005       {
5006         GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
5007                     "*********   %s stalled\n",
5008                     GNUNET_i2s(&my_full_id));
5009         if (NULL == cinfo)
5010           cinfo = tunnel_get_neighbor_fc (t, &dst_id);
5011         cinfo->fc_poll = GNUNET_SCHEDULER_add_delayed(GNUNET_TIME_UNIT_SECONDS,
5012                                                      &tunnel_poll, cinfo);
5013       }
5014     }
5015     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "*********   return %d\n", data_size);
5016     return data_size;
5017 }
5018
5019
5020 /**
5021  * @brief Queue and pass message to core when possible.
5022  * 
5023  * If type is payload (UNICAST, TO_ORIGIN, MULTICAST) checks for queue status
5024  * and accounts for it. In case the queue is full, the message is dropped and
5025  * a break issued.
5026  * 
5027  * Otherwise, message is treated as internal and allowed to go regardless of 
5028  * queue status.
5029  *
5030  * @param cls Closure (@c type dependant). It will be used by queue_send to
5031  *            build the message to be sent if not already prebuilt.
5032  * @param type Type of the message, 0 for a raw message.
5033  * @param size Size of the message.
5034  * @param dst Neighbor to send message to.
5035  * @param t Tunnel this message belongs to.
5036  */
5037 static void
5038 queue_add (void *cls, uint16_t type, size_t size,
5039            struct MeshPeerInfo *dst, struct MeshTunnel *t)
5040 {
5041   struct MeshPeerQueue *queue;
5042   struct MeshTunnelChildInfo *cinfo;
5043   struct GNUNET_PeerIdentity id;
5044   unsigned int *max;
5045   unsigned int *n;
5046   unsigned int i;
5047
5048   n = NULL;
5049   if (GNUNET_MESSAGE_TYPE_MESH_UNICAST == type ||
5050       GNUNET_MESSAGE_TYPE_MESH_MULTICAST == type)
5051   {
5052     n = &t->fwd_queue_n;
5053     max = &t->fwd_queue_max;
5054   }
5055   else if (GNUNET_MESSAGE_TYPE_MESH_TO_ORIGIN == type)
5056   {
5057     n = &t->bck_queue_n;
5058     max = &t->bck_queue_max;
5059   }
5060   if (NULL != n) {
5061     if (*n >= *max)
5062     {
5063       if (NULL == t->owner)
5064         GNUNET_break_op(0);       // TODO: kill connection?
5065       else
5066         GNUNET_break(0);
5067       GNUNET_STATISTICS_update(stats, "# messages dropped (buffer full)",
5068                                1, GNUNET_NO);
5069       return;                       // Drop message
5070     }
5071     (*n)++;
5072   }
5073   queue = GNUNET_malloc (sizeof (struct MeshPeerQueue));
5074   queue->cls = cls;
5075   queue->type = type;
5076   queue->size = size;
5077   queue->peer = dst;
5078   queue->tunnel = t;
5079   GNUNET_CONTAINER_DLL_insert_tail (dst->queue_head, dst->queue_tail, queue);
5080   GNUNET_PEER_resolve (dst->id, &id);
5081   if (NULL == dst->core_transmit)
5082   {
5083       dst->core_transmit =
5084           GNUNET_CORE_notify_transmit_ready (core_handle,
5085                                              0,
5086                                              0,
5087                                              GNUNET_TIME_UNIT_FOREVER_REL,
5088                                              &id,
5089                                              size,
5090                                              &queue_send,
5091                                              dst);
5092   }
5093   if (NULL == n) // Is this internal mesh traffic?
5094     return;
5095
5096   // It's payload, keep track of buffer per peer.
5097   cinfo = tunnel_get_neighbor_fc(t, &id);
5098   i = (cinfo->send_buffer_start + cinfo->send_buffer_n) % t->fwd_queue_max;
5099   if (NULL != cinfo->send_buffer[i])
5100   {
5101     GNUNET_break (cinfo->send_buffer_n == t->fwd_queue_max); // aka i == start
5102     queue_destroy (cinfo->send_buffer[cinfo->send_buffer_start], GNUNET_YES);
5103     cinfo->send_buffer_start++;
5104     cinfo->send_buffer_start %= t->fwd_queue_max;
5105   }
5106   else
5107   {
5108     cinfo->send_buffer_n++;
5109   }
5110   cinfo->send_buffer[i] = queue;
5111   if (cinfo->send_buffer_n > t->fwd_queue_max)
5112   {
5113     GNUNET_break (0);
5114     cinfo->send_buffer_n = t->fwd_queue_max;
5115   }
5116 }
5117
5118
5119 /******************************************************************************/
5120 /********************      MESH NETWORK HANDLERS     **************************/
5121 /******************************************************************************/
5122
5123
5124 /**
5125  * Core handler for path creation
5126  *
5127  * @param cls closure
5128  * @param message message
5129  * @param peer peer identity this notification is about
5130  * @param atsi performance data
5131  * @param atsi_count number of records in 'atsi'
5132  *
5133  * @return GNUNET_OK to keep the connection open,
5134  *         GNUNET_SYSERR to close it (signal serious error)
5135  */
5136 static int
5137 handle_mesh_path_create (void *cls, const struct GNUNET_PeerIdentity *peer,
5138                          const struct GNUNET_MessageHeader *message,
5139                          const struct GNUNET_ATS_Information *atsi,
5140                          unsigned int atsi_count)
5141 {
5142   unsigned int own_pos;
5143   uint16_t size;
5144   uint16_t i;
5145   MESH_TunnelNumber tid;
5146   struct GNUNET_MESH_ManipulatePath *msg;
5147   struct GNUNET_PeerIdentity *pi;
5148   struct GNUNET_HashCode hash;
5149   struct MeshPeerPath *path;
5150   struct MeshPeerInfo *dest_peer_info;
5151   struct MeshPeerInfo *orig_peer_info;
5152   struct MeshTunnel *t;
5153
5154   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
5155               "Received a path create msg [%s]\n",
5156               GNUNET_i2s (&my_full_id));
5157   size = ntohs (message->size);
5158   if (size < sizeof (struct GNUNET_MESH_ManipulatePath))
5159   {
5160     GNUNET_break_op (0);
5161     return GNUNET_OK;
5162   }
5163
5164   size -= sizeof (struct GNUNET_MESH_ManipulatePath);
5165   if (size % sizeof (struct GNUNET_PeerIdentity))
5166   {
5167     GNUNET_break_op (0);
5168     return GNUNET_OK;
5169   }
5170   size /= sizeof (struct GNUNET_PeerIdentity);
5171   if (size < 2)
5172   {
5173     GNUNET_break_op (0);
5174     return GNUNET_OK;
5175   }
5176   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "    path has %u hops.\n", size);
5177   msg = (struct GNUNET_MESH_ManipulatePath *) message;
5178
5179   tid = ntohl (msg->tid);
5180   pi = (struct GNUNET_PeerIdentity *) &msg[1];
5181   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
5182               "    path is for tunnel %s [%X].\n", GNUNET_i2s (pi), tid);
5183   t = tunnel_get (pi, tid);
5184   if (NULL == t) // FIXME only for INCOMING tunnels?
5185   {
5186     uint32_t opt;
5187
5188     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  Creating tunnel\n");
5189     t = tunnel_new (GNUNET_PEER_intern (pi), tid, NULL, 0);
5190     if (NULL == t)
5191     {
5192       // FIXME notify failure
5193       return GNUNET_OK;
5194     }
5195     opt = ntohl (msg->opt);
5196     t->speed_min = (0 != (opt & MESH_TUNNEL_OPT_SPEED_MIN)) ?
5197                    GNUNET_YES : GNUNET_NO;
5198     if (0 != (opt & MESH_TUNNEL_OPT_NOBUFFER))
5199     {
5200       t->nobuffer = GNUNET_YES;
5201       t->last_fwd_ack = t->fwd_pid + 1;
5202     }
5203     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
5204                 "  speed_min: %d, nobuffer:%d\n",
5205                 t->speed_min, t->nobuffer);
5206
5207     if (GNUNET_YES == t->nobuffer)
5208     {
5209       t->bck_queue_max = 1;
5210       t->fwd_queue_max = 1;
5211     }
5212
5213     // FIXME only assign a local tid if a local client is interested (on demand)
5214     while (NULL != tunnel_get_incoming (next_local_tid))
5215       next_local_tid = (next_local_tid + 1) | GNUNET_MESH_LOCAL_TUNNEL_ID_SERV;
5216     t->local_tid_dest = next_local_tid++;
5217     next_local_tid = next_local_tid | GNUNET_MESH_LOCAL_TUNNEL_ID_SERV;
5218     // FIXME end
5219
5220     tunnel_reset_timeout (t);
5221     GNUNET_CRYPTO_hash (&t->local_tid_dest, sizeof (MESH_TunnelNumber), &hash);
5222     if (GNUNET_OK !=
5223         GNUNET_CONTAINER_multihashmap_put (incoming_tunnels, &hash, t,
5224                                            GNUNET_CONTAINER_MULTIHASHMAPOPTION_UNIQUE_FAST))
5225     {
5226       tunnel_destroy (t);
5227       GNUNET_break (0);
5228       return GNUNET_OK;
5229     }
5230   }
5231   dest_peer_info =
5232       GNUNET_CONTAINER_multihashmap_get (peers, &pi[size - 1].hashPubKey);
5233   if (NULL == dest_peer_info)
5234   {
5235     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
5236                 "  Creating PeerInfo for destination.\n");
5237     dest_peer_info = GNUNET_malloc (sizeof (struct MeshPeerInfo));
5238     dest_peer_info->id = GNUNET_PEER_intern (&pi[size - 1]);
5239     GNUNET_CONTAINER_multihashmap_put (peers, &pi[size - 1].hashPubKey,
5240                                        dest_peer_info,
5241                                        GNUNET_CONTAINER_MULTIHASHMAPOPTION_UNIQUE_ONLY);
5242   }
5243   orig_peer_info = GNUNET_CONTAINER_multihashmap_get (peers, &pi->hashPubKey);
5244   if (NULL == orig_peer_info)
5245   {
5246     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
5247                 "  Creating PeerInfo for origin.\n");
5248     orig_peer_info = GNUNET_malloc (sizeof (struct MeshPeerInfo));
5249     orig_peer_info->id = GNUNET_PEER_intern (pi);
5250     GNUNET_CONTAINER_multihashmap_put (peers, &pi->hashPubKey, orig_peer_info,
5251                                        GNUNET_CONTAINER_MULTIHASHMAPOPTION_UNIQUE_ONLY);
5252   }
5253   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  Creating path...\n");
5254   path = path_new (size);
5255   own_pos = 0;
5256   for (i = 0; i < size; i++)
5257   {
5258     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  ... adding %s\n",
5259                 GNUNET_i2s (&pi[i]));
5260     path->peers[i] = GNUNET_PEER_intern (&pi[i]);
5261     if (path->peers[i] == myid)
5262       own_pos = i;
5263   }
5264   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  Own position: %u\n", own_pos);
5265   if (own_pos == 0)
5266   {
5267     /* cannot be self, must be 'not found' */
5268     /* create path: self not found in path through self */
5269     GNUNET_break_op (0);
5270     path_destroy (path);
5271     tunnel_destroy (t);
5272     return GNUNET_OK;
5273   }
5274   path_add_to_peers (path, GNUNET_NO);
5275   tunnel_add_path (t, path, own_pos);
5276   if (own_pos == size - 1)
5277   {
5278     /* It is for us! Send ack. */
5279     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  It's for us!\n");
5280     peer_info_add_path_to_origin (orig_peer_info, path, GNUNET_NO);
5281     if (NULL == t->peers)
5282     {
5283       /* New tunnel! Notify clients on first payload message. */
5284       t->peers = GNUNET_CONTAINER_multihashmap_create (4);
5285     }
5286     GNUNET_break (GNUNET_SYSERR !=
5287                   GNUNET_CONTAINER_multihashmap_put (t->peers,
5288                                                      &my_full_id.hashPubKey,
5289                                                      peer_info_get
5290                                                      (&my_full_id),
5291                                                      GNUNET_CONTAINER_MULTIHASHMAPOPTION_REPLACE));
5292     send_path_ack (t);
5293   }
5294   else
5295   {
5296     struct MeshPeerPath *path2;
5297
5298     /* It's for somebody else! Retransmit. */
5299     path2 = path_duplicate (path);
5300     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  Retransmitting.\n");
5301     peer_info_add_path (dest_peer_info, path2, GNUNET_NO);
5302     path2 = path_duplicate (path);
5303     peer_info_add_path_to_origin (orig_peer_info, path2, GNUNET_NO);
5304     send_create_path (dest_peer_info, path, t);
5305   }
5306   return GNUNET_OK;
5307 }
5308
5309
5310 /**
5311  * Core handler for path destruction
5312  *
5313  * @param cls closure
5314  * @param message message
5315  * @param peer peer identity this notification is about
5316  * @param atsi performance data
5317  * @param atsi_count number of records in 'atsi'
5318  *
5319  * @return GNUNET_OK to keep the connection open,
5320  *         GNUNET_SYSERR to close it (signal serious error)
5321  */
5322 static int
5323 handle_mesh_path_destroy (void *cls, const struct GNUNET_PeerIdentity *peer,
5324                           const struct GNUNET_MessageHeader *message,
5325                           const struct GNUNET_ATS_Information *atsi,
5326                           unsigned int atsi_count)
5327 {
5328   struct GNUNET_MESH_ManipulatePath *msg;
5329   struct GNUNET_PeerIdentity *pi;
5330   struct MeshPeerPath *path;
5331   struct MeshTunnel *t;
5332   unsigned int own_pos;
5333   unsigned int i;
5334   size_t size;
5335
5336   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
5337               "Received a PATH DESTROY msg from %s\n", GNUNET_i2s (peer));
5338   size = ntohs (message->size);
5339   if (size < sizeof (struct GNUNET_MESH_ManipulatePath))
5340   {
5341     GNUNET_break_op (0);
5342     return GNUNET_OK;
5343   }
5344
5345   size -= sizeof (struct GNUNET_MESH_ManipulatePath);
5346   if (size % sizeof (struct GNUNET_PeerIdentity))
5347   {
5348     GNUNET_break_op (0);
5349     return GNUNET_OK;
5350   }
5351   size /= sizeof (struct GNUNET_PeerIdentity);
5352   if (size < 2)
5353   {
5354     GNUNET_break_op (0);
5355     return GNUNET_OK;
5356   }
5357   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "    path has %u hops.\n", size);
5358
5359   msg = (struct GNUNET_MESH_ManipulatePath *) message;
5360   pi = (struct GNUNET_PeerIdentity *) &msg[1];
5361   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
5362               "    path is for tunnel %s [%X].\n", GNUNET_i2s (pi),
5363               msg->tid);
5364   t = tunnel_get (pi, ntohl (msg->tid));
5365   if (NULL == t)
5366   {
5367     /* TODO notify back: we don't know this tunnel */
5368     GNUNET_break_op (0);
5369     return GNUNET_OK;
5370   }
5371   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  Creating path...\n");
5372   path = path_new (size);
5373   own_pos = 0;
5374   for (i = 0; i < size; i++)
5375   {
5376     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  ... adding %s\n",
5377                 GNUNET_i2s (&pi[i]));
5378     path->peers[i] = GNUNET_PEER_intern (&pi[i]);
5379     if (path->peers[i] == myid)
5380       own_pos = i;
5381   }
5382   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  Own position: %u\n", own_pos);
5383   if (own_pos < path->length - 1)
5384     send_prebuilt_message (message, &pi[own_pos + 1], t);
5385   else
5386     send_client_tunnel_disconnect(t, NULL);
5387
5388   tunnel_delete_peer (t, path->peers[path->length - 1]);
5389   path_destroy (path);
5390   return GNUNET_OK;
5391 }
5392
5393
5394 /**
5395  * Core handler for notifications of broken paths
5396  *
5397  * @param cls closure
5398  * @param message message
5399  * @param peer peer identity this notification is about
5400  * @param atsi performance data
5401  * @param atsi_count number of records in 'atsi'
5402  *
5403  * @return GNUNET_OK to keep the connection open,
5404  *         GNUNET_SYSERR to close it (signal serious error)
5405  */
5406 static int
5407 handle_mesh_path_broken (void *cls, const struct GNUNET_PeerIdentity *peer,
5408                          const struct GNUNET_MessageHeader *message,
5409                          const struct GNUNET_ATS_Information *atsi,
5410                          unsigned int atsi_count)
5411 {
5412   struct GNUNET_MESH_PathBroken *msg;
5413   struct MeshTunnel *t;
5414
5415   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
5416               "Received a PATH BROKEN msg from %s\n", GNUNET_i2s (peer));
5417   msg = (struct GNUNET_MESH_PathBroken *) message;
5418   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  regarding %s\n",
5419               GNUNET_i2s (&msg->peer1));
5420   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  regarding %s\n",
5421               GNUNET_i2s (&msg->peer2));
5422   t = tunnel_get (&msg->oid, ntohl (msg->tid));
5423   if (NULL == t)
5424   {
5425     GNUNET_break_op (0);
5426     return GNUNET_OK;
5427   }
5428   tunnel_notify_connection_broken (t, GNUNET_PEER_search (&msg->peer1),
5429                                    GNUNET_PEER_search (&msg->peer2));
5430   return GNUNET_OK;
5431
5432 }
5433
5434
5435 /**
5436  * Core handler for tunnel destruction
5437  *
5438  * @param cls closure
5439  * @param message message
5440  * @param peer peer identity this notification is about
5441  * @param atsi performance data
5442  * @param atsi_count number of records in 'atsi'
5443  *
5444  * @return GNUNET_OK to keep the connection open,
5445  *         GNUNET_SYSERR to close it (signal serious error)
5446  */
5447 static int
5448 handle_mesh_tunnel_destroy (void *cls, const struct GNUNET_PeerIdentity *peer,
5449                             const struct GNUNET_MessageHeader *message,
5450                             const struct GNUNET_ATS_Information *atsi,
5451                             unsigned int atsi_count)
5452 {
5453   struct GNUNET_MESH_TunnelDestroy *msg;
5454   struct MeshTunnel *t;
5455
5456   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
5457               "Got a TUNNEL DESTROY packet from %s\n", GNUNET_i2s (peer));
5458   msg = (struct GNUNET_MESH_TunnelDestroy *) message;
5459   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  for tunnel %s [%u]\n",
5460               GNUNET_i2s (&msg->oid), ntohl (msg->tid));
5461   t = tunnel_get (&msg->oid, ntohl (msg->tid));
5462   if (NULL == t)
5463   {
5464     /* Probably already got the message from another path,
5465      * destroyed the tunnel and retransmitted to children.
5466      * Safe to ignore.
5467      */
5468     GNUNET_STATISTICS_update (stats, "# control on unknown tunnel", 1, GNUNET_NO);
5469     return GNUNET_OK;
5470   }
5471   if (t->id.oid == myid)
5472   {
5473     GNUNET_break_op (0);
5474     return GNUNET_OK;
5475   }
5476   if (t->local_tid_dest >= GNUNET_MESH_LOCAL_TUNNEL_ID_SERV)
5477   {
5478     /* Tunnel was incoming, notify clients */
5479     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "INCOMING TUNNEL %X %X\n",
5480                 t->local_tid, t->local_tid_dest);
5481     send_clients_tunnel_destroy (t);
5482   }
5483   tunnel_send_destroy (t);
5484   t->destroy = GNUNET_YES;
5485   // TODO: add timeout to destroy the tunnel anyway
5486   return GNUNET_OK;
5487 }
5488
5489
5490 /**
5491  * Core handler for mesh network traffic going from the origin to a peer
5492  *
5493  * @param cls closure
5494  * @param peer peer identity this notification is about
5495  * @param message message
5496  * @param atsi performance data
5497  * @param atsi_count number of records in 'atsi'
5498  * @return GNUNET_OK to keep the connection open,
5499  *         GNUNET_SYSERR to close it (signal serious error)
5500  */
5501 static int
5502 handle_mesh_data_unicast (void *cls, const struct GNUNET_PeerIdentity *peer,
5503                           const struct GNUNET_MessageHeader *message,
5504                           const struct GNUNET_ATS_Information *atsi,
5505                           unsigned int atsi_count)
5506 {
5507   struct GNUNET_MESH_Unicast *msg;
5508   struct GNUNET_PeerIdentity *neighbor;
5509   struct MeshTunnelChildInfo *cinfo;
5510   struct MeshTunnel *t;
5511   GNUNET_PEER_Id dest_id;
5512   uint32_t pid;
5513   uint32_t ttl;
5514   size_t size;
5515
5516   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "got a unicast packet from %s\n",
5517               GNUNET_i2s (peer));
5518   /* Check size */
5519   size = ntohs (message->size);
5520   if (size <
5521       sizeof (struct GNUNET_MESH_Unicast) +
5522       sizeof (struct GNUNET_MessageHeader))
5523   {
5524     GNUNET_break (0);
5525     return GNUNET_OK;
5526   }
5527   msg = (struct GNUNET_MESH_Unicast *) message;
5528   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, " of type %s\n",
5529               GNUNET_MESH_DEBUG_M2S (ntohs (msg[1].header.type)));
5530   /* Check tunnel */
5531   t = tunnel_get (&msg->oid, ntohl (msg->tid));
5532   if (NULL == t)
5533   {
5534     /* TODO notify back: we don't know this tunnel */
5535     GNUNET_STATISTICS_update (stats, "# data on unknown tunnel", 1, GNUNET_NO);
5536     GNUNET_break_op (0);
5537     return GNUNET_OK;
5538   }
5539   pid = ntohl (msg->pid);
5540   if (t->fwd_pid == pid)
5541   {
5542     GNUNET_STATISTICS_update (stats, "# duplicate PID drops", 1, GNUNET_NO);
5543     GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
5544                 " Already seen pid %u, DROPPING!\n", pid);
5545     return GNUNET_OK;
5546   }
5547   else
5548   {
5549     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
5550                 " pid %u not seen yet, forwarding\n", pid);
5551   }
5552
5553   t->skip += (pid - t->fwd_pid) - 1;
5554   t->fwd_pid = pid;
5555
5556   if (GMC_is_pid_bigger (pid, t->last_fwd_ack))
5557   {
5558     GNUNET_STATISTICS_update (stats, "# unsolicited unicast", 1, GNUNET_NO);
5559     GNUNET_break_op (0);
5560     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
5561                 "Received PID %u, ACK %u\n",
5562                 pid, t->last_fwd_ack);
5563     return GNUNET_OK;
5564   }
5565
5566   tunnel_reset_timeout (t);
5567   dest_id = GNUNET_PEER_search (&msg->destination);
5568   if (dest_id == myid)
5569   {
5570     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
5571                 "  it's for us! sending to clients...\n");
5572     GNUNET_STATISTICS_update (stats, "# unicast received", 1, GNUNET_NO);
5573     send_subscribed_clients (message, &msg[1].header, t);
5574     tunnel_send_fwd_ack (t, GNUNET_MESSAGE_TYPE_MESH_UNICAST);
5575     return GNUNET_OK;
5576   }
5577   ttl = ntohl (msg->ttl);
5578   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "   ttl: %u\n", ttl);
5579   if (ttl == 0)
5580   {
5581     GNUNET_STATISTICS_update (stats, "# TTL drops", 1, GNUNET_NO);
5582     GNUNET_log (GNUNET_ERROR_TYPE_WARNING, " TTL is 0, DROPPING!\n");
5583     tunnel_send_fwd_ack (t, GNUNET_MESSAGE_TYPE_MESH_ACK);
5584     return GNUNET_OK;
5585   }
5586   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
5587               "  not for us, retransmitting...\n");
5588
5589   neighbor = tree_get_first_hop (t->tree, dest_id);
5590   cinfo = tunnel_get_neighbor_fc (t, neighbor);
5591   cinfo->pid = pid;
5592   GNUNET_CONTAINER_multihashmap_iterate (t->children_fc,
5593                                          &tunnel_add_skip,
5594                                          &neighbor);
5595   if (GNUNET_YES == t->nobuffer &&
5596       GNUNET_YES == GMC_is_pid_bigger (pid, cinfo->fwd_ack))
5597   {
5598     GNUNET_STATISTICS_update (stats, "# unsolicited unicast", 1, GNUNET_NO);
5599     GNUNET_log (GNUNET_ERROR_TYPE_INFO, "  %u > %u\n", pid, cinfo->fwd_ack);
5600     GNUNET_break_op (0);
5601     return GNUNET_OK;
5602   }
5603   send_prebuilt_message (message, neighbor, t);
5604   GNUNET_STATISTICS_update (stats, "# unicast forwarded", 1, GNUNET_NO);
5605   return GNUNET_OK;
5606 }
5607
5608
5609 /**
5610  * Core handler for mesh network traffic going from the origin to all peers
5611  *
5612  * @param cls closure
5613  * @param message message
5614  * @param peer peer identity this notification is about
5615  * @param atsi performance data
5616  * @param atsi_count number of records in 'atsi'
5617  * @return GNUNET_OK to keep the connection open,
5618  *         GNUNET_SYSERR to close it (signal serious error)
5619  *
5620  * TODO: Check who we got this from, to validate route.
5621  */
5622 static int
5623 handle_mesh_data_multicast (void *cls, const struct GNUNET_PeerIdentity *peer,
5624                             const struct GNUNET_MessageHeader *message,
5625                             const struct GNUNET_ATS_Information *atsi,
5626                             unsigned int atsi_count)
5627 {
5628   struct GNUNET_MESH_Multicast *msg;
5629   struct MeshTunnel *t;
5630   size_t size;
5631   uint32_t pid;
5632
5633   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "got a multicast packet from %s\n",
5634               GNUNET_i2s (peer));
5635   size = ntohs (message->size);
5636   if (sizeof (struct GNUNET_MESH_Multicast) +
5637       sizeof (struct GNUNET_MessageHeader) > size)
5638   {
5639     GNUNET_break_op (0);
5640     return GNUNET_OK;
5641   }
5642   msg = (struct GNUNET_MESH_Multicast *) message;
5643   t = tunnel_get (&msg->oid, ntohl (msg->tid));
5644
5645   if (NULL == t)
5646   {
5647     /* TODO notify that we dont know that tunnel */
5648     GNUNET_STATISTICS_update (stats, "# data on unknown tunnel", 1, GNUNET_NO);
5649     GNUNET_break_op (0);
5650     return GNUNET_OK;
5651   }
5652   pid = ntohl (msg->pid);
5653   if (t->fwd_pid == pid)
5654   {
5655     /* already seen this packet, drop */
5656     GNUNET_STATISTICS_update (stats, "# duplicate PID drops", 1, GNUNET_NO);
5657     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
5658                 " Already seen pid %u, DROPPING!\n", pid);
5659     tunnel_send_fwd_ack (t, GNUNET_MESSAGE_TYPE_MESH_ACK);
5660     return GNUNET_OK;
5661   }
5662   else
5663   {
5664     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
5665                 " pid %u not seen yet, forwarding\n", pid);
5666   }
5667   t->skip += (pid - t->fwd_pid) - 1;
5668   t->fwd_pid = pid;
5669   tunnel_reset_timeout (t);
5670
5671   /* Transmit to locally interested clients */
5672   if (NULL != t->peers &&
5673       GNUNET_CONTAINER_multihashmap_contains (t->peers, &my_full_id.hashPubKey))
5674   {
5675     GNUNET_STATISTICS_update (stats, "# multicast received", 1, GNUNET_NO);
5676     send_subscribed_clients (message, &msg[1].header, t);
5677     tunnel_send_fwd_ack(t, GNUNET_MESSAGE_TYPE_MESH_MULTICAST);
5678   }
5679   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "   ttl: %u\n", ntohl (msg->ttl));
5680   if (ntohl (msg->ttl) == 0)
5681   {
5682     GNUNET_STATISTICS_update (stats, "# TTL drops", 1, GNUNET_NO);
5683     GNUNET_log (GNUNET_ERROR_TYPE_WARNING, " TTL is 0, DROPPING!\n");
5684     tunnel_send_fwd_ack (t, GNUNET_MESSAGE_TYPE_MESH_ACK);
5685     return GNUNET_OK;
5686   }
5687   GNUNET_STATISTICS_update (stats, "# multicast forwarded", 1, GNUNET_NO);
5688   tunnel_send_multicast (t, message);
5689   return GNUNET_OK;
5690 }
5691
5692
5693 /**
5694  * Core handler for mesh network traffic toward the owner of a tunnel
5695  *
5696  * @param cls closure
5697  * @param message message
5698  * @param peer peer identity this notification is about
5699  * @param atsi performance data
5700  * @param atsi_count number of records in 'atsi'
5701  *
5702  * @return GNUNET_OK to keep the connection open,
5703  *         GNUNET_SYSERR to close it (signal serious error)
5704  */
5705 static int
5706 handle_mesh_data_to_orig (void *cls, const struct GNUNET_PeerIdentity *peer,
5707                           const struct GNUNET_MessageHeader *message,
5708                           const struct GNUNET_ATS_Information *atsi,
5709                           unsigned int atsi_count)
5710 {
5711   struct GNUNET_MESH_ToOrigin *msg;
5712   struct GNUNET_PeerIdentity id;
5713   struct MeshPeerInfo *peer_info;
5714   struct MeshTunnel *t;
5715   size_t size;
5716
5717
5718   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "got a ToOrigin packet from %s\n",
5719               GNUNET_i2s (peer));
5720   size = ntohs (message->size);
5721   if (size < sizeof (struct GNUNET_MESH_ToOrigin) +     /* Payload must be */
5722       sizeof (struct GNUNET_MessageHeader))     /* at least a header */
5723   {
5724     GNUNET_break_op (0);
5725     return GNUNET_OK;
5726   }
5727   msg = (struct GNUNET_MESH_ToOrigin *) message;
5728   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, " of type %s\n",
5729               GNUNET_MESH_DEBUG_M2S (ntohs (msg[1].header.type)));
5730   t = tunnel_get (&msg->oid, ntohl (msg->tid));
5731
5732   if (NULL == t)
5733   {
5734     /* TODO notify that we dont know this tunnel (whom)? */
5735     GNUNET_STATISTICS_update (stats, "# data on unknown tunnel", 1, GNUNET_NO);
5736     GNUNET_break_op (0);
5737     return GNUNET_OK;
5738   }
5739
5740   if (NULL != t->owner)
5741   {
5742     char cbuf[size];
5743     struct GNUNET_MESH_ToOrigin *copy;
5744
5745     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
5746                 "  it's for us! sending to clients...\n");
5747     /* TODO signature verification */
5748     memcpy (cbuf, message, size);
5749     copy = (struct GNUNET_MESH_ToOrigin *) cbuf;
5750     copy->tid = htonl (t->local_tid);
5751     GNUNET_STATISTICS_update (stats, "# to origin received", 1, GNUNET_NO);
5752     GNUNET_SERVER_notification_context_unicast (nc, t->owner->handle,
5753                                                 &copy->header, GNUNET_NO);
5754     tunnel_send_bck_ack (t, GNUNET_MESSAGE_TYPE_MESH_TO_ORIGIN);
5755     return GNUNET_OK;
5756   }
5757   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
5758               "  not for us, retransmitting...\n");
5759
5760   peer_info = peer_info_get (&msg->oid);
5761   if (NULL == peer_info)
5762   {
5763     /* unknown origin of tunnel */
5764     GNUNET_break (0);
5765     return GNUNET_OK;
5766   }
5767   GNUNET_PEER_resolve (tree_get_predecessor (t->tree), &id);
5768   send_prebuilt_message (message, &id, t);
5769   GNUNET_STATISTICS_update (stats, "# to origin forwarded", 1, GNUNET_NO);
5770
5771   return GNUNET_OK;
5772 }
5773
5774
5775 /**
5776  * Core handler for mesh network traffic point-to-point acks.
5777  *
5778  * @param cls closure
5779  * @param message message
5780  * @param peer peer identity this notification is about
5781  * @param atsi performance data
5782  * @param atsi_count number of records in 'atsi'
5783  *
5784  * @return GNUNET_OK to keep the connection open,
5785  *         GNUNET_SYSERR to close it (signal serious error)
5786  */
5787 static int
5788 handle_mesh_ack (void *cls, const struct GNUNET_PeerIdentity *peer,
5789                  const struct GNUNET_MessageHeader *message,
5790                  const struct GNUNET_ATS_Information *atsi,
5791                  unsigned int atsi_count)
5792 {
5793   struct GNUNET_MESH_ACK *msg;
5794   struct MeshTunnel *t;
5795   uint32_t ack;
5796
5797   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Got an ACK packet from %s!\n",
5798               GNUNET_i2s (peer));
5799   msg = (struct GNUNET_MESH_ACK *) message;
5800
5801   t = tunnel_get (&msg->oid, ntohl (msg->tid));
5802
5803   if (NULL == t)
5804   {
5805     /* TODO notify that we dont know this tunnel (whom)? */
5806     GNUNET_STATISTICS_update (stats, "# ack on unknown tunnel", 1, GNUNET_NO);
5807     GNUNET_break_op (0);
5808     return GNUNET_OK;
5809   }
5810   ack = ntohl (msg->pid);
5811
5812   /* Is this a forward or backward ACK? */
5813   if (tree_get_predecessor(t->tree) != GNUNET_PEER_search(peer))
5814   {
5815     struct MeshTunnelChildInfo *cinfo;
5816
5817     debug_bck_ack++;
5818     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  FWD ACK\n");
5819     cinfo = tunnel_get_neighbor_fc (t, peer);
5820     cinfo->fwd_ack = ack;
5821     tunnel_send_fwd_ack (t, GNUNET_MESSAGE_TYPE_MESH_ACK);
5822     tunnel_unlock_fwd_queues (t);
5823   }
5824   else
5825   {
5826     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  BCK ACK\n");
5827     t->bck_ack = ack;
5828     tunnel_send_bck_ack (t, GNUNET_MESSAGE_TYPE_MESH_ACK);
5829     tunnel_unlock_bck_queue (t);
5830   }
5831   return GNUNET_OK;
5832 }
5833
5834
5835 /**
5836  * Core handler for mesh network traffic point-to-point ack polls.
5837  *
5838  * @param cls closure
5839  * @param message message
5840  * @param peer peer identity this notification is about
5841  * @param atsi performance data
5842  * @param atsi_count number of records in 'atsi'
5843  *
5844  * @return GNUNET_OK to keep the connection open,
5845  *         GNUNET_SYSERR to close it (signal serious error)
5846  */
5847 static int
5848 handle_mesh_poll (void *cls, const struct GNUNET_PeerIdentity *peer,
5849                   const struct GNUNET_MessageHeader *message,
5850                   const struct GNUNET_ATS_Information *atsi,
5851                   unsigned int atsi_count)
5852 {
5853   struct GNUNET_MESH_Poll *msg;
5854   struct MeshTunnel *t;
5855
5856   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Got an POLL packet from %s!\n",
5857               GNUNET_i2s (peer));
5858
5859   msg = (struct GNUNET_MESH_Poll *) message;
5860
5861   t = tunnel_get (&msg->oid, ntohl (msg->tid));
5862
5863   if (NULL == t)
5864   {
5865     /* TODO notify that we dont know this tunnel (whom)? */
5866     GNUNET_STATISTICS_update (stats, "# poll on unknown tunnel", 1, GNUNET_NO);
5867     GNUNET_break_op (0);
5868     return GNUNET_OK;
5869   }
5870
5871   /* Is this a forward or backward ACK? */
5872   if (tree_get_predecessor(t->tree) != GNUNET_PEER_search(peer))
5873   {
5874     struct MeshTunnelChildInfo *cinfo;
5875
5876     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  from FWD\n");
5877     cinfo = tunnel_get_neighbor_fc (t, peer);
5878     cinfo->bck_ack = cinfo->pid; // mark as ready to send
5879     tunnel_send_bck_ack (t, GNUNET_MESSAGE_TYPE_MESH_POLL);
5880   }
5881   else
5882   {
5883     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  from BCK\n");
5884     tunnel_send_fwd_ack (t, GNUNET_MESSAGE_TYPE_MESH_POLL);
5885   }
5886
5887   return GNUNET_OK;
5888 }
5889
5890
5891 /**
5892  * Core handler for path ACKs
5893  *
5894  * @param cls closure
5895  * @param message message
5896  * @param peer peer identity this notification is about
5897  * @param atsi performance data
5898  * @param atsi_count number of records in 'atsi'
5899  *
5900  * @return GNUNET_OK to keep the connection open,
5901  *         GNUNET_SYSERR to close it (signal serious error)
5902  */
5903 static int
5904 handle_mesh_path_ack (void *cls, const struct GNUNET_PeerIdentity *peer,
5905                       const struct GNUNET_MessageHeader *message,
5906                       const struct GNUNET_ATS_Information *atsi,
5907                       unsigned int atsi_count)
5908 {
5909   struct GNUNET_MESH_PathACK *msg;
5910   struct GNUNET_PeerIdentity id;
5911   struct MeshPeerInfo *peer_info;
5912   struct MeshPeerPath *p;
5913   struct MeshTunnel *t;
5914
5915   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Received a path ACK msg [%s]\n",
5916               GNUNET_i2s (&my_full_id));
5917   msg = (struct GNUNET_MESH_PathACK *) message;
5918   t = tunnel_get (&msg->oid, ntohl(msg->tid));
5919   if (NULL == t)
5920   {
5921     /* TODO notify that we don't know the tunnel */
5922     GNUNET_STATISTICS_update (stats, "# control on unknown tunnel", 1, GNUNET_NO);
5923     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  don't know the tunnel %s [%X]!\n",
5924                 GNUNET_i2s (&msg->oid), ntohl(msg->tid));
5925     return GNUNET_OK;
5926   }
5927   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  on tunnel %s [%X]\n",
5928               GNUNET_i2s (&msg->oid), ntohl(msg->tid));
5929
5930   peer_info = peer_info_get (&msg->peer_id);
5931   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  by peer %s\n",
5932               GNUNET_i2s (&msg->peer_id));
5933   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  via peer %s\n",
5934               GNUNET_i2s (peer));
5935
5936   if (NULL != t->regex_ctx && t->regex_ctx->info->peer == peer_info->id)
5937   {
5938     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
5939                 "connect_by_string completed, stopping search\n");
5940     regex_cancel_search (t->regex_ctx);
5941     t->regex_ctx = NULL;
5942   }
5943
5944   /* Add paths to peers? */
5945   p = tree_get_path_to_peer (t->tree, peer_info->id);
5946   if (NULL != p)
5947   {
5948     path_add_to_peers (p, GNUNET_YES);
5949     path_destroy (p);
5950   }
5951   else
5952   {
5953     GNUNET_break (0);
5954   }
5955
5956   /* Message for us? */
5957   if (0 == memcmp (&msg->oid, &my_full_id, sizeof (struct GNUNET_PeerIdentity)))
5958   {
5959     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  It's for us!\n");
5960     if (NULL == t->owner)
5961     {
5962       GNUNET_break_op (0);
5963       return GNUNET_OK;
5964     }
5965     if (NULL != t->dht_get_type)
5966     {
5967       GNUNET_DHT_get_stop (t->dht_get_type);
5968       t->dht_get_type = NULL;
5969     }
5970     if (tree_get_status (t->tree, peer_info->id) != MESH_PEER_READY)
5971     {
5972       tree_set_status (t->tree, peer_info->id, MESH_PEER_READY);
5973       send_client_peer_connected (t, peer_info->id);
5974     }
5975     return GNUNET_OK;
5976   }
5977
5978   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
5979               "  not for us, retransmitting...\n");
5980   GNUNET_PEER_resolve (tree_get_predecessor (t->tree), &id);
5981   peer_info = peer_info_get (&msg->oid);
5982   if (NULL == peer_info)
5983   {
5984     /* If we know the tunnel, we should DEFINITELY know the peer */
5985     GNUNET_break (0);
5986     return GNUNET_OK;
5987   }
5988   send_prebuilt_message (message, &id, t);
5989   return GNUNET_OK;
5990 }
5991
5992
5993 /**
5994  * Core handler for mesh keepalives.
5995  *
5996  * @param cls closure
5997  * @param message message
5998  * @param peer peer identity this notification is about
5999  * @param atsi performance data
6000  * @param atsi_count number of records in 'atsi'
6001  * @return GNUNET_OK to keep the connection open,
6002  *         GNUNET_SYSERR to close it (signal serious error)
6003  *
6004  * TODO: Check who we got this from, to validate route.
6005  */
6006 static int
6007 handle_mesh_keepalive (void *cls, const struct GNUNET_PeerIdentity *peer,
6008                        const struct GNUNET_MessageHeader *message,
6009                        const struct GNUNET_ATS_Information *atsi,
6010                        unsigned int atsi_count)
6011 {
6012   struct GNUNET_MESH_TunnelKeepAlive *msg;
6013   struct MeshTunnel *t;
6014
6015   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "got a keepalive packet from %s\n",
6016               GNUNET_i2s (peer));
6017
6018   msg = (struct GNUNET_MESH_TunnelKeepAlive *) message;
6019   t = tunnel_get (&msg->oid, ntohl (msg->tid));
6020
6021   if (NULL == t)
6022   {
6023     /* TODO notify that we dont know that tunnel */
6024     GNUNET_STATISTICS_update (stats, "# keepalive on unknown tunnel", 1, GNUNET_NO);
6025     GNUNET_break_op (0);
6026     return GNUNET_OK;
6027   }
6028
6029   tunnel_reset_timeout (t);
6030
6031   GNUNET_STATISTICS_update (stats, "# keepalives forwarded", 1, GNUNET_NO);
6032   tunnel_send_multicast (t, message);
6033   return GNUNET_OK;
6034   }
6035
6036
6037
6038 /**
6039  * Functions to handle messages from core
6040  */
6041 static struct GNUNET_CORE_MessageHandler core_handlers[] = {
6042   {&handle_mesh_path_create, GNUNET_MESSAGE_TYPE_MESH_PATH_CREATE, 0},
6043   {&handle_mesh_path_destroy, GNUNET_MESSAGE_TYPE_MESH_PATH_DESTROY, 0},
6044   {&handle_mesh_path_broken, GNUNET_MESSAGE_TYPE_MESH_PATH_BROKEN,
6045    sizeof (struct GNUNET_MESH_PathBroken)},
6046   {&handle_mesh_tunnel_destroy, GNUNET_MESSAGE_TYPE_MESH_TUNNEL_DESTROY,
6047    sizeof (struct GNUNET_MESH_TunnelDestroy)},
6048   {&handle_mesh_data_unicast, GNUNET_MESSAGE_TYPE_MESH_UNICAST, 0},
6049   {&handle_mesh_data_multicast, GNUNET_MESSAGE_TYPE_MESH_MULTICAST, 0},
6050   {&handle_mesh_keepalive, GNUNET_MESSAGE_TYPE_MESH_PATH_KEEPALIVE,
6051     sizeof (struct GNUNET_MESH_TunnelKeepAlive)},
6052   {&handle_mesh_data_to_orig, GNUNET_MESSAGE_TYPE_MESH_TO_ORIGIN, 0},
6053   {&handle_mesh_ack, GNUNET_MESSAGE_TYPE_MESH_ACK,
6054     sizeof (struct GNUNET_MESH_ACK)},
6055   {&handle_mesh_poll, GNUNET_MESSAGE_TYPE_MESH_POLL,
6056     sizeof (struct GNUNET_MESH_Poll)},
6057   {&handle_mesh_path_ack, GNUNET_MESSAGE_TYPE_MESH_PATH_ACK,
6058    sizeof (struct GNUNET_MESH_PathACK)},
6059   {NULL, 0, 0}
6060 };
6061
6062
6063
6064 /******************************************************************************/
6065 /****************       MESH LOCAL HANDLER HELPERS      ***********************/
6066 /******************************************************************************/
6067
6068 /**
6069  * deregister_app: iterator for removing each application registered by a client
6070  *
6071  * @param cls closure
6072  * @param key the hash of the application id (used to access the hashmap)
6073  * @param value the value stored at the key (client)
6074  *
6075  * @return GNUNET_OK on success
6076  */
6077 static int
6078 deregister_app (void *cls, const struct GNUNET_HashCode * key, void *value)
6079 {
6080   struct GNUNET_CONTAINER_MultiHashMap *h = cls;
6081   GNUNET_break (GNUNET_YES ==
6082                 GNUNET_CONTAINER_multihashmap_remove (h, key, value));
6083   return GNUNET_OK;
6084 }
6085
6086 #if LATER
6087 /**
6088  * notify_client_connection_failure: notify a client that the connection to the
6089  * requested remote peer is not possible (for instance, no route found)
6090  * Function called when the socket is ready to queue more data. "buf" will be
6091  * NULL and "size" zero if the socket was closed for writing in the meantime.
6092  *
6093  * @param cls closure
6094  * @param size number of bytes available in buf
6095  * @param buf where the callee should write the message
6096  * @return number of bytes written to buf
6097  */
6098 static size_t
6099 notify_client_connection_failure (void *cls, size_t size, void *buf)
6100 {
6101   int size_needed;
6102   struct MeshPeerInfo *peer_info;
6103   struct GNUNET_MESH_PeerControl *msg;
6104   struct GNUNET_PeerIdentity id;
6105
6106   if (0 == size && NULL == buf)
6107   {
6108     // TODO retry? cancel?
6109     return 0;
6110   }
6111
6112   size_needed = sizeof (struct GNUNET_MESH_PeerControl);
6113   peer_info = (struct MeshPeerInfo *) cls;
6114   msg = (struct GNUNET_MESH_PeerControl *) buf;
6115   msg->header.size = htons (sizeof (struct GNUNET_MESH_PeerControl));
6116   msg->header.type = htons (GNUNET_MESSAGE_TYPE_MESH_LOCAL_PEER_DISCONNECTED);
6117 //     msg->tunnel_id = htonl(peer_info->t->tid);
6118   GNUNET_PEER_resolve (peer_info->id, &id);
6119   memcpy (&msg->peer, &id, sizeof (struct GNUNET_PeerIdentity));
6120
6121   return size_needed;
6122 }
6123 #endif
6124
6125
6126 /**
6127  * Send keepalive packets for a peer
6128  *
6129  * @param cls Closure (tunnel for which to send the keepalive).
6130  * @param tc Notification context.
6131  */
6132 static void
6133 path_refresh (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
6134 {
6135   struct MeshTunnel *t = cls;
6136   struct GNUNET_MESH_TunnelKeepAlive *msg;
6137   size_t size = sizeof (struct GNUNET_MESH_TunnelKeepAlive);
6138   char cbuf[size];
6139
6140   t->path_refresh_task = GNUNET_SCHEDULER_NO_TASK;
6141   if (0 != (tc->reason & GNUNET_SCHEDULER_REASON_SHUTDOWN))
6142   {
6143     return;
6144   }
6145
6146   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
6147               "sending keepalive for tunnel %d\n", t->id.tid);
6148
6149   msg = (struct GNUNET_MESH_TunnelKeepAlive *) cbuf;
6150   msg->header.size = htons (size);
6151   msg->header.type = htons (GNUNET_MESSAGE_TYPE_MESH_PATH_KEEPALIVE);
6152   msg->oid = my_full_id;
6153   msg->tid = htonl (t->id.tid);
6154   tunnel_send_multicast (t, &msg->header);
6155
6156   t->path_refresh_task =
6157       GNUNET_SCHEDULER_add_delayed (refresh_path_time, &path_refresh, t);
6158   tunnel_reset_timeout(t);
6159 }
6160
6161
6162 /**
6163  * Function to process paths received for a new peer addition. The recorded
6164  * paths form the initial tunnel, which can be optimized later.
6165  * Called on each result obtained for the DHT search.
6166  *
6167  * @param cls closure
6168  * @param exp when will this value expire
6169  * @param key key of the result
6170  * @param get_path path of the get request
6171  * @param get_path_length lenght of get_path
6172  * @param put_path path of the put request
6173  * @param put_path_length length of the put_path
6174  * @param type type of the result
6175  * @param size number of bytes in data
6176  * @param data pointer to the result data
6177  *
6178  * TODO: re-issue the request after certain time? cancel after X results?
6179  */
6180 static void
6181 dht_get_id_handler (void *cls, struct GNUNET_TIME_Absolute exp,
6182                     const struct GNUNET_HashCode * key,
6183                     const struct GNUNET_PeerIdentity *get_path,
6184                     unsigned int get_path_length,
6185                     const struct GNUNET_PeerIdentity *put_path,
6186                     unsigned int put_path_length, enum GNUNET_BLOCK_Type type,
6187                     size_t size, const void *data)
6188 {
6189   struct MeshPathInfo *path_info = cls;
6190   struct MeshPeerPath *p;
6191   struct GNUNET_PeerIdentity pi;
6192   int i;
6193
6194   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Got results from DHT!\n");
6195   GNUNET_PEER_resolve (path_info->peer->id, &pi);
6196   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  for %s\n", GNUNET_i2s (&pi));
6197
6198   p = path_build_from_dht (get_path, get_path_length, put_path,
6199                            put_path_length);
6200   path_add_to_peers (p, GNUNET_NO);
6201   path_destroy(p);
6202   for (i = 0; i < path_info->peer->ntunnels; i++)
6203   {
6204     tunnel_add_peer (path_info->peer->tunnels[i], path_info->peer);
6205     peer_info_connect (path_info->peer, path_info->t);
6206   }
6207
6208   return;
6209 }
6210
6211
6212 /**
6213  * Function to process paths received for a new peer addition. The recorded
6214  * paths form the initial tunnel, which can be optimized later.
6215  * Called on each result obtained for the DHT search.
6216  *
6217  * @param cls closure
6218  * @param exp when will this value expire
6219  * @param key key of the result
6220  * @param get_path path of the get request
6221  * @param get_path_length lenght of get_path
6222  * @param put_path path of the put request
6223  * @param put_path_length length of the put_path
6224  * @param type type of the result
6225  * @param size number of bytes in data
6226  * @param data pointer to the result data
6227  */
6228 static void
6229 dht_get_type_handler (void *cls, struct GNUNET_TIME_Absolute exp,
6230                       const struct GNUNET_HashCode * key,
6231                       const struct GNUNET_PeerIdentity *get_path,
6232                       unsigned int get_path_length,
6233                       const struct GNUNET_PeerIdentity *put_path,
6234                       unsigned int put_path_length, enum GNUNET_BLOCK_Type type,
6235                       size_t size, const void *data)
6236 {
6237   const struct PBlock *pb = data;
6238   const struct GNUNET_PeerIdentity *pi = &pb->id;
6239   struct MeshTunnel *t = cls;
6240   struct MeshPeerInfo *peer_info;
6241   struct MeshPeerPath *p;
6242
6243   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "got type DHT result!\n");
6244   if (size != sizeof (struct PBlock))
6245   {
6246     GNUNET_break_op (0);
6247     return;
6248   }
6249   if (ntohl(pb->type) != t->type)
6250   {
6251     GNUNET_break_op (0);
6252     return;
6253   }
6254   GNUNET_assert (NULL != t->owner);
6255   peer_info = peer_info_get (pi);
6256   (void) GNUNET_CONTAINER_multihashmap_put (t->peers, &pi->hashPubKey,
6257                                             peer_info,
6258                                             GNUNET_CONTAINER_MULTIHASHMAPOPTION_REPLACE);
6259
6260   p = path_build_from_dht (get_path, get_path_length, put_path,
6261                            put_path_length);
6262   path_add_to_peers (p, GNUNET_NO);
6263   path_destroy(p);
6264   tunnel_add_peer (t, peer_info);
6265   peer_info_connect (peer_info, t);
6266 }
6267
6268
6269 /**
6270  * Function to process DHT string to regex matching.
6271  * Called on each result obtained for the DHT search.
6272  *
6273  * @param cls closure (search context)
6274  * @param exp when will this value expire
6275  * @param key key of the result
6276  * @param get_path path of the get request (not used)
6277  * @param get_path_length lenght of get_path (not used)
6278  * @param put_path path of the put request (not used)
6279  * @param put_path_length length of the put_path (not used)
6280  * @param type type of the result
6281  * @param size number of bytes in data
6282  * @param data pointer to the result data
6283  */
6284 static void
6285 dht_get_string_accept_handler (void *cls, struct GNUNET_TIME_Absolute exp,
6286                                const struct GNUNET_HashCode * key,
6287                                const struct GNUNET_PeerIdentity *get_path,
6288                                unsigned int get_path_length,
6289                                const struct GNUNET_PeerIdentity *put_path,
6290                                unsigned int put_path_length,
6291                                enum GNUNET_BLOCK_Type type,
6292                                size_t size, const void *data)
6293 {
6294   const struct MeshRegexAccept *block = data;
6295   struct MeshRegexSearchContext *ctx = cls;
6296   struct MeshRegexSearchInfo *info = ctx->info;
6297   struct MeshPeerPath *p;
6298   struct MeshPeerInfo *peer_info;
6299
6300   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Got regex results from DHT!\n");
6301   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  for %s\n", info->description);
6302
6303   peer_info = peer_info_get(&block->id);
6304   p = path_build_from_dht (get_path, get_path_length, put_path,
6305                            put_path_length);
6306   path_add_to_peers (p, GNUNET_NO);
6307   path_destroy(p);
6308
6309   tunnel_add_peer (info->t, peer_info);
6310   peer_info_connect (peer_info, info->t);
6311   if (0 == info->peer)
6312   {
6313     info->peer = peer_info->id;
6314   }
6315   else
6316   {
6317     GNUNET_array_append (info->peers, info->n_peers, peer_info->id);
6318   }
6319
6320   info->timeout = GNUNET_SCHEDULER_add_delayed (connect_timeout,
6321                                                 &regex_connect_timeout,
6322                                                 info);
6323
6324   return;
6325 }
6326
6327
6328 /**
6329  * Function to process DHT string to regex matching.
6330  * Called on each result obtained for the DHT search.
6331  *
6332  * @param cls closure (search context)
6333  * @param exp when will this value expire
6334  * @param key key of the result
6335  * @param get_path path of the get request (not used)
6336  * @param get_path_length lenght of get_path (not used)
6337  * @param put_path path of the put request (not used)
6338  * @param put_path_length length of the put_path (not used)
6339  * @param type type of the result
6340  * @param size number of bytes in data
6341  * @param data pointer to the result data
6342  *
6343  * TODO: re-issue the request after certain time? cancel after X results?
6344  */
6345 static void
6346 dht_get_string_handler (void *cls, struct GNUNET_TIME_Absolute exp,
6347                         const struct GNUNET_HashCode * key,
6348                         const struct GNUNET_PeerIdentity *get_path,
6349                         unsigned int get_path_length,
6350                         const struct GNUNET_PeerIdentity *put_path,
6351                         unsigned int put_path_length,
6352                         enum GNUNET_BLOCK_Type type,
6353                         size_t size, const void *data)
6354 {
6355   const struct MeshRegexBlock *block = data;
6356   struct MeshRegexSearchContext *ctx = cls;
6357   struct MeshRegexSearchInfo *info = ctx->info;
6358   void *copy;
6359   size_t len;
6360
6361   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
6362               "DHT GET STRING RETURNED RESULTS\n");
6363   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
6364               "  key: %s\n", GNUNET_h2s (key));
6365
6366   copy = GNUNET_malloc (size);
6367   memcpy (copy, data, size);
6368   GNUNET_break (GNUNET_OK ==
6369                 GNUNET_CONTAINER_multihashmap_put(info->dht_get_results, key, copy,
6370                                                   GNUNET_CONTAINER_MULTIHASHMAPOPTION_MULTIPLE));
6371   len = ntohl (block->n_proof);
6372   {
6373     char proof[len + 1];
6374
6375     memcpy (proof, &block[1], len);
6376     proof[len] = '\0';
6377     if (GNUNET_OK != GNUNET_REGEX_check_proof (proof, key))
6378     {
6379       GNUNET_break_op (0);
6380       return;
6381     }
6382   }
6383   len = strlen (info->description);
6384   if (len == ctx->position) // String processed
6385   {
6386     if (GNUNET_YES == ntohl (block->accepting))
6387     {
6388       regex_find_path(key, ctx);
6389     }
6390     else
6391     {
6392       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  block not accepting!\n");
6393       // FIXME REGEX this block not successful, wait for more? start timeout?
6394     }
6395     return;
6396   }
6397
6398   regex_next_edge (block, size, ctx);
6399
6400   return;
6401 }
6402
6403 /******************************************************************************/
6404 /*********************       MESH LOCAL HANDLES      **************************/
6405 /******************************************************************************/
6406
6407
6408 /**
6409  * Handler for client disconnection
6410  *
6411  * @param cls closure
6412  * @param client identification of the client; NULL
6413  *        for the last call when the server is destroyed
6414  */
6415 static void
6416 handle_local_client_disconnect (void *cls, struct GNUNET_SERVER_Client *client)
6417 {
6418   struct MeshClient *c;
6419   struct MeshClient *next;
6420   unsigned int i;
6421
6422   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "client disconnected\n");
6423   if (client == NULL)
6424   {
6425     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "   (SERVER DOWN)\n");
6426     return;
6427   }
6428   c = clients;
6429   while (NULL != c)
6430   {
6431     if (c->handle != client)
6432     {
6433       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "   ... searching\n");
6434       c = c->next;
6435       continue;
6436     }
6437     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "matching client found (%u)\n",
6438                 c->id);
6439     GNUNET_SERVER_client_drop (c->handle);
6440     c->shutting_down = GNUNET_YES;
6441     GNUNET_assert (NULL != c->own_tunnels);
6442     GNUNET_assert (NULL != c->incoming_tunnels);
6443     GNUNET_CONTAINER_multihashmap_iterate (c->own_tunnels,
6444                                            &tunnel_destroy_iterator, c);
6445     GNUNET_CONTAINER_multihashmap_iterate (c->incoming_tunnels,
6446                                            &tunnel_destroy_iterator, c);
6447     GNUNET_CONTAINER_multihashmap_iterate (c->ignore_tunnels,
6448                                            &tunnel_destroy_iterator, c);
6449     GNUNET_CONTAINER_multihashmap_destroy (c->own_tunnels);
6450     GNUNET_CONTAINER_multihashmap_destroy (c->incoming_tunnels);
6451     GNUNET_CONTAINER_multihashmap_destroy (c->ignore_tunnels);
6452
6453     /* deregister clients applications */
6454     if (NULL != c->apps)
6455     {
6456       GNUNET_CONTAINER_multihashmap_iterate (c->apps, &deregister_app, c->apps);
6457       GNUNET_CONTAINER_multihashmap_destroy (c->apps);
6458     }
6459     if (0 == GNUNET_CONTAINER_multihashmap_size (applications) &&
6460         GNUNET_SCHEDULER_NO_TASK != announce_applications_task)
6461     {
6462       GNUNET_SCHEDULER_cancel (announce_applications_task);
6463       announce_applications_task = GNUNET_SCHEDULER_NO_TASK;
6464     }
6465     if (NULL != c->types)
6466       GNUNET_CONTAINER_multihashmap_destroy (c->types);
6467     for (i = 0; i < c->n_regex; i++)
6468     {
6469       GNUNET_free (c->regexes[i]);
6470     }
6471     GNUNET_free_non_null (c->regexes);
6472     if (GNUNET_SCHEDULER_NO_TASK != c->regex_announce_task)
6473       GNUNET_SCHEDULER_cancel (c->regex_announce_task);
6474     next = c->next;
6475     GNUNET_CONTAINER_DLL_remove (clients, clients_tail, c);
6476     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  CLIENT FREE at %p\n", c);
6477     GNUNET_free (c);
6478     GNUNET_STATISTICS_update (stats, "# clients", -1, GNUNET_NO);
6479     c = next;
6480   }
6481   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "   done!\n");
6482   return;
6483 }
6484
6485
6486 /**
6487  * Handler for new clients
6488  *
6489  * @param cls closure
6490  * @param client identification of the client
6491  * @param message the actual message, which includes messages the client wants
6492  */
6493 static void
6494 handle_local_new_client (void *cls, struct GNUNET_SERVER_Client *client,
6495                          const struct GNUNET_MessageHeader *message)
6496 {
6497   struct GNUNET_MESH_ClientConnect *cc_msg;
6498   struct MeshClient *c;
6499   GNUNET_MESH_ApplicationType *a;
6500   unsigned int size;
6501   uint16_t ntypes;
6502   uint16_t *t;
6503   uint16_t napps;
6504   uint16_t i;
6505
6506   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "new client connected\n");
6507   /* Check data sanity */
6508   size = ntohs (message->size) - sizeof (struct GNUNET_MESH_ClientConnect);
6509   cc_msg = (struct GNUNET_MESH_ClientConnect *) message;
6510   ntypes = ntohs (cc_msg->types);
6511   napps = ntohs (cc_msg->applications);
6512   if (size !=
6513       ntypes * sizeof (uint16_t) + napps * sizeof (GNUNET_MESH_ApplicationType))
6514   {
6515     GNUNET_break (0);
6516     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
6517     return;
6518   }
6519
6520   /* Create new client structure */
6521   c = GNUNET_malloc (sizeof (struct MeshClient));
6522   c->id = next_client_id++;
6523   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  CLIENT NEW %u\n", c->id);
6524   c->handle = client;
6525   GNUNET_SERVER_client_keep (client);
6526   a = (GNUNET_MESH_ApplicationType *) &cc_msg[1];
6527   if (napps > 0)
6528   {
6529     GNUNET_MESH_ApplicationType at;
6530     struct GNUNET_HashCode hc;
6531
6532     c->apps = GNUNET_CONTAINER_multihashmap_create (napps);
6533     for (i = 0; i < napps; i++)
6534     {
6535       at = ntohl (a[i]);
6536       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  app type: %u\n", at);
6537       GNUNET_CRYPTO_hash (&at, sizeof (at), &hc);
6538       /* store in clients hashmap */
6539       GNUNET_CONTAINER_multihashmap_put (c->apps, &hc, (void *) (long) at,
6540                                          GNUNET_CONTAINER_MULTIHASHMAPOPTION_MULTIPLE);
6541       /* store in global hashmap, for announcements */
6542       GNUNET_CONTAINER_multihashmap_put (applications, &hc, c,
6543                                          GNUNET_CONTAINER_MULTIHASHMAPOPTION_MULTIPLE);
6544     }
6545     if (GNUNET_SCHEDULER_NO_TASK == announce_applications_task)
6546       announce_applications_task =
6547           GNUNET_SCHEDULER_add_now (&announce_applications, NULL);
6548
6549   }
6550   if (ntypes > 0)
6551   {
6552     uint16_t u16;
6553     struct GNUNET_HashCode hc;
6554
6555     t = (uint16_t *) & a[napps];
6556     c->types = GNUNET_CONTAINER_multihashmap_create (ntypes);
6557     for (i = 0; i < ntypes; i++)
6558     {
6559       u16 = ntohs (t[i]);
6560       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  msg type: %u\n", u16);
6561       GNUNET_CRYPTO_hash (&u16, sizeof (u16), &hc);
6562
6563       /* store in clients hashmap */
6564       GNUNET_CONTAINER_multihashmap_put (c->types, &hc, c,
6565                                          GNUNET_CONTAINER_MULTIHASHMAPOPTION_MULTIPLE);
6566       /* store in global hashmap */
6567       GNUNET_CONTAINER_multihashmap_put (types, &hc, c,
6568                                          GNUNET_CONTAINER_MULTIHASHMAPOPTION_MULTIPLE);
6569     }
6570   }
6571   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
6572               " client has %u+%u subscriptions\n", napps, ntypes);
6573
6574   GNUNET_CONTAINER_DLL_insert (clients, clients_tail, c);
6575   c->own_tunnels = GNUNET_CONTAINER_multihashmap_create (32);
6576   c->incoming_tunnels = GNUNET_CONTAINER_multihashmap_create (32);
6577   c->ignore_tunnels = GNUNET_CONTAINER_multihashmap_create (32);
6578   GNUNET_SERVER_notification_context_add (nc, client);
6579   GNUNET_STATISTICS_update (stats, "# clients", 1, GNUNET_NO);
6580
6581   GNUNET_SERVER_receive_done (client, GNUNET_OK);
6582   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "new client processed\n");
6583 }
6584
6585
6586 /**
6587  * Handler for clients announcing available services by a regular expression.
6588  *
6589  * @param cls closure
6590  * @param client identification of the client
6591  * @param message the actual message, which includes messages the client wants
6592  */
6593 static void
6594 handle_local_announce_regex (void *cls, struct GNUNET_SERVER_Client *client,
6595                              const struct GNUNET_MessageHeader *message)
6596 {
6597   struct MeshClient *c;
6598   char *regex;
6599   size_t len;
6600
6601   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "announce regex started\n");
6602
6603   /* Sanity check for client registration */
6604   if (NULL == (c = client_get (client)))
6605   {
6606     GNUNET_break (0);
6607     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
6608     return;
6609   }
6610   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  by client %u\n", c->id);
6611
6612   len = ntohs (message->size) - sizeof(struct GNUNET_MessageHeader);
6613   regex = GNUNET_malloc (len + 1);
6614   memcpy (regex, &message[1], len);
6615   regex[len] = '\0';
6616   GNUNET_array_append (c->regexes, c->n_regex, regex);
6617   if (GNUNET_SCHEDULER_NO_TASK == c->regex_announce_task)
6618   {
6619     c->regex_announce_task = GNUNET_SCHEDULER_add_now(&announce_regex, c);
6620   }
6621   else
6622   {
6623     regex_put(regex);
6624   }
6625   GNUNET_SERVER_receive_done (client, GNUNET_OK);
6626   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "announce regex processed\n");
6627 }
6628
6629
6630 /**
6631  * Handler for requests of new tunnels
6632  *
6633  * @param cls closure
6634  * @param client identification of the client
6635  * @param message the actual message
6636  */
6637 static void
6638 handle_local_tunnel_create (void *cls, struct GNUNET_SERVER_Client *client,
6639                             const struct GNUNET_MessageHeader *message)
6640 {
6641   struct GNUNET_MESH_TunnelMessage *t_msg;
6642   struct MeshTunnel *t;
6643   struct MeshClient *c;
6644   MESH_TunnelNumber tid;
6645
6646   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "new tunnel requested\n");
6647
6648   /* Sanity check for client registration */
6649   if (NULL == (c = client_get (client)))
6650   {
6651     GNUNET_break (0);
6652     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
6653     return;
6654   }
6655   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  by client %u\n", c->id);
6656
6657   /* Message sanity check */
6658   if (sizeof (struct GNUNET_MESH_TunnelMessage) != ntohs (message->size))
6659   {
6660     GNUNET_break (0);
6661     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
6662     return;
6663   }
6664
6665   t_msg = (struct GNUNET_MESH_TunnelMessage *) message;
6666   /* Sanity check for tunnel numbering */
6667   tid = ntohl (t_msg->tunnel_id);
6668   if (0 == (tid & GNUNET_MESH_LOCAL_TUNNEL_ID_CLI))
6669   {
6670     GNUNET_break (0);
6671     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
6672     return;
6673   }
6674   /* Sanity check for duplicate tunnel IDs */
6675   if (NULL != tunnel_get_by_local_id (c, tid))
6676   {
6677     GNUNET_break (0);
6678     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
6679     return;
6680   }
6681
6682   while (NULL != tunnel_get_by_pi (myid, next_tid))
6683     next_tid = (next_tid + 1) & ~GNUNET_MESH_LOCAL_TUNNEL_ID_CLI;
6684   t = tunnel_new (myid, next_tid++, c, tid);
6685   if (NULL == t)
6686   {
6687     GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Tunnel creation failed.\n");
6688     GNUNET_break (0);
6689     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
6690     return;
6691   }
6692   next_tid = next_tid & ~GNUNET_MESH_LOCAL_TUNNEL_ID_CLI;
6693   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "CREATED TUNNEL %s [%x] (%x)\n",
6694               GNUNET_i2s (&my_full_id), t->id.tid, t->local_tid);
6695   t->peers = GNUNET_CONTAINER_multihashmap_create (32);
6696
6697   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "new tunnel created\n");
6698   GNUNET_SERVER_receive_done (client, GNUNET_OK);
6699   return;
6700 }
6701
6702
6703 /**
6704  * Handler for requests of deleting tunnels
6705  *
6706  * @param cls closure
6707  * @param client identification of the client
6708  * @param message the actual message
6709  */
6710 static void
6711 handle_local_tunnel_destroy (void *cls, struct GNUNET_SERVER_Client *client,
6712                              const struct GNUNET_MessageHeader *message)
6713 {
6714   struct GNUNET_MESH_TunnelMessage *tunnel_msg;
6715   struct MeshClient *c;
6716   struct MeshTunnel *t;
6717   MESH_TunnelNumber tid;
6718
6719   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
6720               "Got a DESTROY TUNNEL from client!\n");
6721
6722   /* Sanity check for client registration */
6723   if (NULL == (c = client_get (client)))
6724   {
6725     GNUNET_break (0);
6726     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
6727     return;
6728   }
6729   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  by client %u\n", c->id);
6730
6731   /* Message sanity check */
6732   if (sizeof (struct GNUNET_MESH_TunnelMessage) != ntohs (message->size))
6733   {
6734     GNUNET_break (0);
6735     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
6736     return;
6737   }
6738
6739   tunnel_msg = (struct GNUNET_MESH_TunnelMessage *) message;
6740
6741   /* Retrieve tunnel */
6742   tid = ntohl (tunnel_msg->tunnel_id);
6743   t = tunnel_get_by_local_id(c, tid);
6744   if (NULL == t)
6745   {
6746     GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "  tunnel %X not found\n", tid);
6747     GNUNET_break (0);
6748     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
6749     return;
6750   }
6751   if (c != t->owner || tid >= GNUNET_MESH_LOCAL_TUNNEL_ID_SERV)
6752   {
6753     client_ignore_tunnel (c, t);
6754 #if 0
6755     // TODO: when to destroy incoming tunnel?
6756     if (t->nclients == 0)
6757     {
6758       GNUNET_assert (GNUNET_YES ==
6759                      GNUNET_CONTAINER_multihashmap_remove (incoming_tunnels,
6760                                                            &hash, t));
6761       GNUNET_assert (GNUNET_YES ==
6762                      GNUNET_CONTAINER_multihashmap_remove (t->peers,
6763                                                            &my_full_id.hashPubKey,
6764                                                            t));
6765     }
6766 #endif
6767     GNUNET_SERVER_receive_done (client, GNUNET_OK);
6768     return;
6769   }
6770   send_client_tunnel_disconnect(t, c);
6771   client_delete_tunnel(c, t);
6772
6773   /* Don't try to ACK the client about the tunnel_destroy multicast packet */
6774   t->owner = NULL;
6775   tunnel_send_destroy (t);
6776   t->destroy = GNUNET_YES;
6777   // The tunnel will be destroyed when the last message is transmitted.
6778   GNUNET_SERVER_receive_done (client, GNUNET_OK);
6779   return;
6780 }
6781
6782
6783 /**
6784  * Handler for requests of seeting tunnel's speed.
6785  *
6786  * @param cls Closure (unused).
6787  * @param client Identification of the client.
6788  * @param message The actual message.
6789  */
6790 static void
6791 handle_local_tunnel_speed (void *cls, struct GNUNET_SERVER_Client *client,
6792                            const struct GNUNET_MessageHeader *message)
6793 {
6794   struct GNUNET_MESH_TunnelMessage *tunnel_msg;
6795   struct MeshClient *c;
6796   struct MeshTunnel *t;
6797   MESH_TunnelNumber tid;
6798
6799   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
6800               "Got a SPEED request from client!\n");
6801
6802   /* Sanity check for client registration */
6803   if (NULL == (c = client_get (client)))
6804   {
6805     GNUNET_break (0);
6806     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
6807     return;
6808   }
6809
6810   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  by client %u\n", c->id);
6811
6812   tunnel_msg = (struct GNUNET_MESH_TunnelMessage *) message;
6813
6814   /* Retrieve tunnel */
6815   tid = ntohl (tunnel_msg->tunnel_id);
6816   t = tunnel_get_by_local_id(c, tid);
6817   if (NULL == t)
6818   {
6819     GNUNET_log (GNUNET_ERROR_TYPE_WARNING, "  tunnel %X not found\n", tid);
6820     GNUNET_break (0);
6821     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
6822     return;
6823   }
6824
6825   switch (ntohs(message->type))
6826   {
6827       case GNUNET_MESSAGE_TYPE_MESH_LOCAL_TUNNEL_MIN:
6828           t->speed_min = GNUNET_YES;
6829           break;
6830       case GNUNET_MESSAGE_TYPE_MESH_LOCAL_TUNNEL_MAX:
6831           t->speed_min = GNUNET_NO;
6832           break;
6833       default:
6834           GNUNET_break (0);
6835   }
6836   GNUNET_SERVER_receive_done (client, GNUNET_OK);
6837 }
6838
6839
6840 /**
6841  * Handler for requests of seeting tunnel's buffering policy.
6842  *
6843  * @param cls Closure (unused).
6844  * @param client Identification of the client.
6845  * @param message The actual message.
6846  */
6847 static void
6848 handle_local_tunnel_buffer (void *cls, struct GNUNET_SERVER_Client *client,
6849                             const struct GNUNET_MessageHeader *message)
6850 {
6851   struct GNUNET_MESH_TunnelMessage *tunnel_msg;
6852   struct MeshClient *c;
6853   struct MeshTunnel *t;
6854   MESH_TunnelNumber tid;
6855
6856   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
6857               "Got a BUFFER request from client!\n");
6858
6859   /* Sanity check for client registration */
6860   if (NULL == (c = client_get (client)))
6861   {
6862     GNUNET_break (0);
6863     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
6864     return;
6865   }
6866   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  by client %u\n", c->id);
6867
6868   tunnel_msg = (struct GNUNET_MESH_TunnelMessage *) message;
6869
6870   /* Retrieve tunnel */
6871   tid = ntohl (tunnel_msg->tunnel_id);
6872   t = tunnel_get_by_local_id(c, tid);
6873   if (NULL == t)
6874   {
6875     GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "  tunnel %X not found\n", tid);
6876     GNUNET_break (0);
6877     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
6878     return;
6879   }
6880
6881   switch (ntohs(message->type))
6882   {
6883       case GNUNET_MESSAGE_TYPE_MESH_LOCAL_TUNNEL_BUFFER:
6884           t->nobuffer = GNUNET_NO;
6885           break;
6886       case GNUNET_MESSAGE_TYPE_MESH_LOCAL_TUNNEL_NOBUFFER:
6887           t->nobuffer = GNUNET_YES;
6888           break;
6889       default:
6890           GNUNET_break (0);
6891   }
6892
6893   GNUNET_SERVER_receive_done (client, GNUNET_OK);
6894 }
6895
6896
6897 /**
6898  * Handler for connection requests to new peers
6899  *
6900  * @param cls closure
6901  * @param client identification of the client
6902  * @param message the actual message (PeerControl)
6903  */
6904 static void
6905 handle_local_connect_add (void *cls, struct GNUNET_SERVER_Client *client,
6906                           const struct GNUNET_MessageHeader *message)
6907 {
6908   struct GNUNET_MESH_PeerControl *peer_msg;
6909   struct MeshPeerInfo *peer_info;
6910   struct MeshClient *c;
6911   struct MeshTunnel *t;
6912   MESH_TunnelNumber tid;
6913
6914   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Got connection request\n");
6915   /* Sanity check for client registration */
6916   if (NULL == (c = client_get (client)))
6917   {
6918     GNUNET_break (0);
6919     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
6920     return;
6921   }
6922   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  by client %u\n", c->id);
6923
6924   peer_msg = (struct GNUNET_MESH_PeerControl *) message;
6925
6926   /* Sanity check for message size */
6927   if (sizeof (struct GNUNET_MESH_PeerControl) != ntohs (peer_msg->header.size))
6928   {
6929     GNUNET_break (0);
6930     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
6931     return;
6932   }
6933
6934   /* Tunnel exists? */
6935   tid = ntohl (peer_msg->tunnel_id);
6936   t = tunnel_get_by_local_id (c, tid);
6937   if (NULL == t)
6938   {
6939     GNUNET_break (0);
6940     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
6941     return;
6942   }
6943
6944   /* Does client own tunnel? */
6945   if (t->owner->handle != client)
6946   {
6947     GNUNET_break (0);
6948     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
6949     return;
6950   }
6951   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "     for %s\n",
6952               GNUNET_i2s (&peer_msg->peer));
6953   peer_info = peer_info_get (&peer_msg->peer);
6954
6955   tunnel_add_peer (t, peer_info);
6956   peer_info_connect (peer_info, t);
6957
6958   GNUNET_SERVER_receive_done (client, GNUNET_OK);
6959   return;
6960 }
6961
6962
6963 /**
6964  * Handler for disconnection requests of peers in a tunnel
6965  *
6966  * @param cls closure
6967  * @param client identification of the client
6968  * @param message the actual message (PeerControl)
6969  */
6970 static void
6971 handle_local_connect_del (void *cls, struct GNUNET_SERVER_Client *client,
6972                           const struct GNUNET_MessageHeader *message)
6973 {
6974   struct GNUNET_MESH_PeerControl *peer_msg;
6975   struct MeshPeerInfo *peer_info;
6976   struct MeshClient *c;
6977   struct MeshTunnel *t;
6978   MESH_TunnelNumber tid;
6979
6980   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Got a PEER DEL request\n");
6981   /* Sanity check for client registration */
6982   if (NULL == (c = client_get (client)))
6983   {
6984     GNUNET_break (0);
6985     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
6986     return;
6987   }
6988   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  by client %u\n", c->id);
6989
6990   peer_msg = (struct GNUNET_MESH_PeerControl *) message;
6991
6992   /* Sanity check for message size */
6993   if (sizeof (struct GNUNET_MESH_PeerControl) != ntohs (peer_msg->header.size))
6994   {
6995     GNUNET_break (0);
6996     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
6997     return;
6998   }
6999
7000   /* Tunnel exists? */
7001   tid = ntohl (peer_msg->tunnel_id);
7002   t = tunnel_get_by_local_id (c, tid);
7003   if (NULL == t)
7004   {
7005     GNUNET_break (0);
7006     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
7007     return;
7008   }
7009   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  on tunnel %X\n", t->id.tid);
7010
7011   /* Does client own tunnel? */
7012   if (t->owner->handle != client)
7013   {
7014     GNUNET_break (0);
7015     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
7016     return;
7017   }
7018
7019   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  for peer %s\n",
7020               GNUNET_i2s (&peer_msg->peer));
7021   /* Is the peer in the tunnel? */
7022   peer_info =
7023       GNUNET_CONTAINER_multihashmap_get (t->peers, &peer_msg->peer.hashPubKey);
7024   if (NULL == peer_info)
7025   {
7026     GNUNET_break (0);
7027     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
7028     return;
7029   }
7030
7031   /* Ok, delete peer from tunnel */
7032   GNUNET_CONTAINER_multihashmap_remove_all (t->peers,
7033                                             &peer_msg->peer.hashPubKey);
7034
7035   send_destroy_path (t, peer_info->id);
7036   tunnel_delete_peer (t, peer_info->id);
7037   GNUNET_SERVER_receive_done (client, GNUNET_OK);
7038   return;
7039 }
7040
7041 /**
7042  * Handler for blacklist requests of peers in a tunnel
7043  *
7044  * @param cls closure
7045  * @param client identification of the client
7046  * @param message the actual message (PeerControl)
7047  * 
7048  * FIXME implement DHT block bloomfilter
7049  */
7050 static void
7051 handle_local_blacklist (void *cls, struct GNUNET_SERVER_Client *client,
7052                           const struct GNUNET_MessageHeader *message)
7053 {
7054   struct GNUNET_MESH_PeerControl *peer_msg;
7055   struct MeshClient *c;
7056   struct MeshTunnel *t;
7057   MESH_TunnelNumber tid;
7058
7059   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Got a PEER BLACKLIST request\n");
7060   /* Sanity check for client registration */
7061   if (NULL == (c = client_get (client)))
7062   {
7063     GNUNET_break (0);
7064     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
7065     return;
7066   }
7067   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  by client %u\n", c->id);
7068
7069   peer_msg = (struct GNUNET_MESH_PeerControl *) message;
7070
7071   /* Sanity check for message size */
7072   if (sizeof (struct GNUNET_MESH_PeerControl) != ntohs (peer_msg->header.size))
7073   {
7074     GNUNET_break (0);
7075     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
7076     return;
7077   }
7078
7079   /* Tunnel exists? */
7080   tid = ntohl (peer_msg->tunnel_id);
7081   t = tunnel_get_by_local_id (c, tid);
7082   if (NULL == t)
7083   {
7084     GNUNET_break (0);
7085     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
7086     return;
7087   }
7088   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  on tunnel %X\n", t->id.tid);
7089
7090   GNUNET_array_append(t->blacklisted, t->nblacklisted,
7091                       GNUNET_PEER_intern(&peer_msg->peer));
7092 }
7093
7094
7095 /**
7096  * Handler for unblacklist requests of peers in a tunnel
7097  *
7098  * @param cls closure
7099  * @param client identification of the client
7100  * @param message the actual message (PeerControl)
7101  */
7102 static void
7103 handle_local_unblacklist (void *cls, struct GNUNET_SERVER_Client *client,
7104                           const struct GNUNET_MessageHeader *message)
7105 {
7106   struct GNUNET_MESH_PeerControl *peer_msg;
7107   struct MeshClient *c;
7108   struct MeshTunnel *t;
7109   MESH_TunnelNumber tid;
7110   GNUNET_PEER_Id pid;
7111   unsigned int i;
7112
7113   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Got a PEER UNBLACKLIST request\n");
7114   /* Sanity check for client registration */
7115   if (NULL == (c = client_get (client)))
7116   {
7117     GNUNET_break (0);
7118     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
7119     return;
7120   }
7121   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  by client %u\n", c->id);
7122
7123   peer_msg = (struct GNUNET_MESH_PeerControl *) message;
7124
7125   /* Sanity check for message size */
7126   if (sizeof (struct GNUNET_MESH_PeerControl) != ntohs (peer_msg->header.size))
7127   {
7128     GNUNET_break (0);
7129     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
7130     return;
7131   }
7132
7133   /* Tunnel exists? */
7134   tid = ntohl (peer_msg->tunnel_id);
7135   t = tunnel_get_by_local_id (c, tid);
7136   if (NULL == t)
7137   {
7138     GNUNET_break (0);
7139     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
7140     return;
7141   }
7142   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  on tunnel %X\n", t->id.tid);
7143
7144   /* if peer is not known, complain */
7145   pid = GNUNET_PEER_search (&peer_msg->peer);
7146   if (0 == pid)
7147   {
7148     GNUNET_break (0);
7149     return;
7150   }
7151
7152   /* search and remove from list */
7153   for (i = 0; i < t->nblacklisted; i++)
7154   {
7155     if (t->blacklisted[i] == pid)
7156     {
7157       t->blacklisted[i] = t->blacklisted[t->nblacklisted - 1];
7158       GNUNET_array_grow (t->blacklisted, t->nblacklisted, t->nblacklisted - 1);
7159       return;
7160     }
7161   }
7162
7163   /* if peer hasn't been blacklisted, complain */
7164   GNUNET_break (0);
7165 }
7166
7167
7168 /**
7169  * Handler for connection requests to new peers by type
7170  *
7171  * @param cls closure
7172  * @param client identification of the client
7173  * @param message the actual message (ConnectPeerByType)
7174  */
7175 static void
7176 handle_local_connect_by_type (void *cls, struct GNUNET_SERVER_Client *client,
7177                               const struct GNUNET_MessageHeader *message)
7178 {
7179   struct GNUNET_MESH_ConnectPeerByType *connect_msg;
7180   struct MeshClient *c;
7181   struct MeshTunnel *t;
7182   struct GNUNET_HashCode hash;
7183   MESH_TunnelNumber tid;
7184
7185   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "got connect by type request\n");
7186   /* Sanity check for client registration */
7187   if (NULL == (c = client_get (client)))
7188   {
7189     GNUNET_break (0);
7190     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
7191     return;
7192   }
7193   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  by client %u\n", c->id);
7194
7195   connect_msg = (struct GNUNET_MESH_ConnectPeerByType *) message;
7196
7197   /* Sanity check for message size */
7198   if (sizeof (struct GNUNET_MESH_ConnectPeerByType) !=
7199       ntohs (connect_msg->header.size))
7200   {
7201     GNUNET_break (0);
7202     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
7203     return;
7204   }
7205
7206   /* Tunnel exists? */
7207   tid = ntohl (connect_msg->tunnel_id);
7208   t = tunnel_get_by_local_id (c, tid);
7209   if (NULL == t)
7210   {
7211     GNUNET_break (0);
7212     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
7213     return;
7214   }
7215
7216   /* Does client own tunnel? */
7217   if (t->owner->handle != client)
7218   {
7219     GNUNET_break (0);
7220     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
7221     return;
7222   }
7223
7224   /* Do WE have the service? */
7225   t->type = ntohl (connect_msg->type);
7226   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, " type requested: %u\n", t->type);
7227   GNUNET_CRYPTO_hash (&t->type, sizeof (GNUNET_MESH_ApplicationType), &hash);
7228   if (GNUNET_CONTAINER_multihashmap_contains (applications, &hash) ==
7229       GNUNET_YES)
7230   {
7231     /* Yes! Fast forward, add ourselves to the tunnel and send the
7232      * good news to the client, and alert the destination client of
7233      * an incoming tunnel.
7234      *
7235      * FIXME send a path create to self, avoid code duplication
7236      */
7237     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, " available locally\n");
7238     GNUNET_CONTAINER_multihashmap_put (t->peers, &my_full_id.hashPubKey,
7239                                        peer_info_get (&my_full_id),
7240                                        GNUNET_CONTAINER_MULTIHASHMAPOPTION_UNIQUE_FAST);
7241
7242     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, " notifying client\n");
7243     send_client_peer_connected (t, myid);
7244     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, " Done\n");
7245     GNUNET_SERVER_receive_done (client, GNUNET_OK);
7246
7247     t->local_tid_dest = next_local_tid++;
7248     GNUNET_CRYPTO_hash (&t->local_tid_dest, sizeof (MESH_TunnelNumber), &hash);
7249     GNUNET_CONTAINER_multihashmap_put (incoming_tunnels, &hash, t,
7250                                        GNUNET_CONTAINER_MULTIHASHMAPOPTION_UNIQUE_FAST);
7251
7252     return;
7253   }
7254   /* Ok, lets find a peer offering the service */
7255   if (NULL != t->dht_get_type)
7256   {
7257     GNUNET_DHT_get_stop (t->dht_get_type);
7258   }
7259   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, " looking in DHT for %s\n",
7260               GNUNET_h2s (&hash));
7261   t->dht_get_type =
7262       GNUNET_DHT_get_start (dht_handle, 
7263                             GNUNET_BLOCK_TYPE_MESH_PEER_BY_TYPE,
7264                             &hash,
7265                             dht_replication_level,
7266                             GNUNET_DHT_RO_RECORD_ROUTE |
7267                             GNUNET_DHT_RO_DEMULTIPLEX_EVERYWHERE,
7268                             NULL, 0,
7269                             &dht_get_type_handler, t);
7270
7271   GNUNET_SERVER_receive_done (client, GNUNET_OK);
7272   return;
7273 }
7274
7275
7276 /**
7277  * Handler for connection requests to new peers by a string service description.
7278  *
7279  * @param cls closure
7280  * @param client identification of the client
7281  * @param message the actual message, which includes messages the client wants
7282  */
7283 static void
7284 handle_local_connect_by_string (void *cls, struct GNUNET_SERVER_Client *client,
7285                                 const struct GNUNET_MessageHeader *message)
7286 {
7287   struct GNUNET_MESH_ConnectPeerByString *msg;
7288   struct MeshRegexSearchContext *ctx;
7289   struct MeshRegexSearchInfo *info;
7290   struct GNUNET_DHT_GetHandle *get_h;
7291   struct GNUNET_HashCode key;
7292   struct MeshTunnel *t;
7293   struct MeshClient *c;
7294   MESH_TunnelNumber tid;
7295   const char *string;
7296   size_t size;
7297   size_t len;
7298   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
7299               "Connect by string started\n");
7300   msg = (struct GNUNET_MESH_ConnectPeerByString *) message;
7301   size = htons (message->size);
7302
7303   /* Sanity check for client registration */
7304   if (NULL == (c = client_get (client)))
7305   {
7306     GNUNET_break (0);
7307     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
7308     return;
7309   }
7310   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  by client %u\n", c->id);
7311
7312   /* Message size sanity check */
7313   if (sizeof(struct GNUNET_MESH_ConnectPeerByString) >= size)
7314   {
7315     GNUNET_break (0);
7316     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
7317     return;
7318   }
7319
7320   /* Tunnel exists? */
7321   tid = ntohl (msg->tunnel_id);
7322   t = tunnel_get_by_local_id (c, tid);
7323   if (NULL == t)
7324   {
7325     GNUNET_break (0);
7326     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
7327     return;
7328   }
7329
7330   /* Does client own tunnel? */
7331   if (t->owner->handle != client)
7332   {
7333     GNUNET_break (0);
7334     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
7335     return;
7336   }
7337
7338   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
7339               "  on tunnel %s [%u]\n",
7340               GNUNET_i2s(&my_full_id),
7341               t->id.tid);
7342
7343   /* Only one connect_by_string allowed at the same time! */
7344   /* FIXME: allow more, return handle at api level to cancel, document */
7345   if (NULL != t->regex_ctx)
7346   {
7347     GNUNET_break (0);
7348     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
7349     return;
7350   }
7351
7352   /* Find string itself */
7353   len = size - sizeof(struct GNUNET_MESH_ConnectPeerByString);
7354   string = (const char *) &msg[1];
7355
7356   /* Initialize context */
7357   size = GNUNET_REGEX_get_first_key(string, len, &key);
7358   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
7359               "  consumed %u bits out of %u\n", size, len);
7360   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
7361               "  looking for %s\n", GNUNET_h2s (&key));
7362
7363   info = GNUNET_malloc (sizeof (struct MeshRegexSearchInfo));
7364   info->t = t;
7365   info->description = GNUNET_malloc (len + 1);
7366   memcpy (info->description, string, len);
7367   info->description[len] = '\0';
7368   info->dht_get_handles = GNUNET_CONTAINER_multihashmap_create(32);
7369   info->dht_get_results = GNUNET_CONTAINER_multihashmap_create(32);
7370   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "   string: %s\n", info->description);
7371
7372   ctx = GNUNET_malloc (sizeof (struct MeshRegexSearchContext));
7373   ctx->position = size;
7374   ctx->info = info;
7375   t->regex_ctx = ctx;
7376
7377   GNUNET_array_append (info->contexts, info->n_contexts, ctx);
7378
7379   /* Start search in DHT */
7380   get_h = GNUNET_DHT_get_start (dht_handle,    /* handle */
7381                                 GNUNET_BLOCK_TYPE_MESH_REGEX, /* type */
7382                                 &key,     /* key to search */
7383                                 dht_replication_level, /* replication level */
7384                                 GNUNET_DHT_RO_DEMULTIPLEX_EVERYWHERE,
7385                                 NULL,       /* xquery */ // FIXME BLOOMFILTER
7386                                 0,     /* xquery bits */ // FIXME BLOOMFILTER SIZE
7387                                 &dht_get_string_handler, ctx);
7388
7389   GNUNET_break (GNUNET_OK ==
7390                 GNUNET_CONTAINER_multihashmap_put(info->dht_get_handles,
7391                                                   &key,
7392                                                   get_h,
7393                                                   GNUNET_CONTAINER_MULTIHASHMAPOPTION_UNIQUE_FAST));
7394
7395   GNUNET_SERVER_receive_done (client, GNUNET_OK);
7396   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "connect by string processed\n");
7397 }
7398
7399
7400 /**
7401  * Handler for client traffic directed to one peer
7402  *
7403  * @param cls closure
7404  * @param client identification of the client
7405  * @param message the actual message
7406  */
7407 static void
7408 handle_local_unicast (void *cls, struct GNUNET_SERVER_Client *client,
7409                       const struct GNUNET_MessageHeader *message)
7410 {
7411   struct MeshClient *c;
7412   struct MeshTunnel *t;
7413   struct MeshPeerInfo *pi;
7414   struct GNUNET_MESH_Unicast *data_msg;
7415   MESH_TunnelNumber tid;
7416   size_t size;
7417
7418   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
7419               "Got a unicast request from a client!\n");
7420
7421   /* Sanity check for client registration */
7422   if (NULL == (c = client_get (client)))
7423   {
7424     GNUNET_break (0);
7425     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
7426     return;
7427   }
7428   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  by client %u\n", c->id);
7429
7430   data_msg = (struct GNUNET_MESH_Unicast *) message;
7431
7432   /* Sanity check for message size */
7433   size = ntohs (message->size);
7434   if (sizeof (struct GNUNET_MESH_Unicast) +
7435       sizeof (struct GNUNET_MessageHeader) > size)
7436   {
7437     GNUNET_break (0);
7438     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
7439     return;
7440   }
7441
7442   /* Tunnel exists? */
7443   tid = ntohl (data_msg->tid);
7444   t = tunnel_get_by_local_id (c, tid);
7445   if (NULL == t)
7446   {
7447     GNUNET_break (0);
7448     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
7449     return;
7450   }
7451
7452   /*  Is it a local tunnel? Then, does client own the tunnel? */
7453   if (t->owner->handle != client)
7454   {
7455     GNUNET_break (0);
7456     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
7457     return;
7458   }
7459
7460   pi = GNUNET_CONTAINER_multihashmap_get (t->peers,
7461                                           &data_msg->destination.hashPubKey);
7462   /* Is the selected peer in the tunnel? */
7463   if (NULL == pi)
7464   {
7465     GNUNET_break (0);
7466     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
7467     return;
7468   }
7469
7470   /* PID should be as expected */
7471   if (ntohl (data_msg->pid) != t->fwd_pid + 1)
7472   {
7473     GNUNET_break (0);
7474     GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
7475               "Unicast PID, expected %u, got %u\n",
7476               t->fwd_pid + 1, ntohl (data_msg->pid));
7477     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
7478     return;
7479   }
7480
7481   /* Ok, everything is correct, send the message
7482    * (pretend we got it from a mesh peer)
7483    */
7484   {
7485     /* Work around const limitation */
7486     char buf[ntohs (message->size)] GNUNET_ALIGN;
7487     struct GNUNET_MESH_Unicast *copy;
7488
7489     copy = (struct GNUNET_MESH_Unicast *) buf;
7490     memcpy (buf, data_msg, size);
7491     copy->oid = my_full_id;
7492     copy->tid = htonl (t->id.tid);
7493     copy->ttl = htonl (default_ttl);
7494     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
7495                 "  calling generic handler...\n");
7496     handle_mesh_data_unicast (NULL, &my_full_id, &copy->header, NULL, 0);
7497   }
7498   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "receive done OK\n");
7499   GNUNET_SERVER_receive_done (client, GNUNET_OK);
7500
7501   return;
7502 }
7503
7504
7505 /**
7506  * Handler for client traffic directed to the origin
7507  *
7508  * @param cls closure
7509  * @param client identification of the client
7510  * @param message the actual message
7511  */
7512 static void
7513 handle_local_to_origin (void *cls, struct GNUNET_SERVER_Client *client,
7514                         const struct GNUNET_MessageHeader *message)
7515 {
7516   struct GNUNET_MESH_ToOrigin *data_msg;
7517   struct MeshTunnelClientInfo *clinfo;
7518   struct MeshClient *c;
7519   struct MeshTunnel *t;
7520   MESH_TunnelNumber tid;
7521   size_t size;
7522
7523   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
7524               "Got a ToOrigin request from a client!\n");
7525   /* Sanity check for client registration */
7526   if (NULL == (c = client_get (client)))
7527   {
7528     GNUNET_break (0);
7529     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
7530     return;
7531   }
7532   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  by client %u\n", c->id);
7533
7534   data_msg = (struct GNUNET_MESH_ToOrigin *) message;
7535
7536   /* Sanity check for message size */
7537   size = ntohs (message->size);
7538   if (sizeof (struct GNUNET_MESH_ToOrigin) +
7539       sizeof (struct GNUNET_MessageHeader) > size)
7540   {
7541     GNUNET_break (0);
7542     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
7543     return;
7544   }
7545
7546   /* Tunnel exists? */
7547   tid = ntohl (data_msg->tid);
7548   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  on tunnel %X\n", tid);
7549   if (tid < GNUNET_MESH_LOCAL_TUNNEL_ID_SERV)
7550   {
7551     GNUNET_break (0);
7552     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
7553     return;
7554   }
7555   t = tunnel_get_by_local_id (c, tid);
7556   if (NULL == t)
7557   {
7558     GNUNET_log (GNUNET_ERROR_TYPE_WARNING, "Tunnel %X unknown.\n", tid);
7559     GNUNET_log (GNUNET_ERROR_TYPE_WARNING, "  for client %u.\n", c->id);
7560     GNUNET_break (0);
7561     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
7562     return;
7563   }
7564
7565   /*  It should be sent by someone who has this as incoming tunnel. */
7566   if (GNUNET_NO == client_knows_tunnel (c, t))
7567   {
7568     GNUNET_break (0);
7569     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
7570     return;
7571   }
7572
7573   /* PID should be as expected */
7574   clinfo = tunnel_get_client_fc (t, c);
7575   if (ntohl (data_msg->pid) != clinfo->bck_pid + 1)
7576   {
7577     GNUNET_break (0);
7578     GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
7579                 "To Origin PID, expected %u, got %u\n",
7580                 clinfo->bck_pid + 1,
7581                 ntohl (data_msg->pid));
7582     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
7583     return;
7584   }
7585
7586   /* Ok, everything is correct, send the message
7587    * (pretend we got it from a mesh peer)
7588    */
7589   clinfo->bck_pid++;
7590   {
7591     char buf[ntohs (message->size)] GNUNET_ALIGN;
7592     struct GNUNET_MESH_ToOrigin *copy;
7593
7594     /* Work around const limitation */
7595     copy = (struct GNUNET_MESH_ToOrigin *) buf;
7596     memcpy (buf, data_msg, size);
7597     GNUNET_PEER_resolve (t->id.oid, &copy->oid);
7598     copy->tid = htonl (t->id.tid);
7599     copy->ttl = htonl (default_ttl);
7600     if (ntohl (copy->pid) != (t->bck_pid + 1))
7601     {
7602       GNUNET_break (0);
7603       GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
7604                   "To Origin PID, expected %u, got %u\n",
7605                   t->bck_pid + 1,
7606                   ntohl (copy->pid));
7607       return;
7608     }
7609     t->bck_pid++;
7610     copy->sender = my_full_id;
7611     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
7612                 "  calling generic handler...\n");
7613     handle_mesh_data_to_orig (NULL, &my_full_id, &copy->header, NULL, 0);
7614   }
7615   GNUNET_SERVER_receive_done (client, GNUNET_OK);
7616
7617   return;
7618 }
7619
7620
7621 /**
7622  * Handler for client traffic directed to all peers in a tunnel
7623  *
7624  * @param cls closure
7625  * @param client identification of the client
7626  * @param message the actual message
7627  */
7628 static void
7629 handle_local_multicast (void *cls, struct GNUNET_SERVER_Client *client,
7630                         const struct GNUNET_MessageHeader *message)
7631 {
7632   struct MeshClient *c;
7633   struct MeshTunnel *t;
7634   struct GNUNET_MESH_Multicast *data_msg;
7635   MESH_TunnelNumber tid;
7636
7637   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
7638               "Got a multicast request from a client!\n");
7639
7640   /* Sanity check for client registration */
7641   if (NULL == (c = client_get (client)))
7642   {
7643     GNUNET_break (0);
7644     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
7645     return;
7646   }
7647   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  by client %u\n", c->id);
7648
7649   data_msg = (struct GNUNET_MESH_Multicast *) message;
7650
7651   /* Sanity check for message size */
7652   if (sizeof (struct GNUNET_MESH_Multicast) +
7653       sizeof (struct GNUNET_MessageHeader) > ntohs (data_msg->header.size))
7654   {
7655     GNUNET_break (0);
7656     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
7657     return;
7658   }
7659
7660   /* Tunnel exists? */
7661   tid = ntohl (data_msg->tid);
7662   t = tunnel_get_by_local_id (c, tid);
7663   if (NULL == t)
7664   {
7665     GNUNET_break (0);
7666     GNUNET_log (GNUNET_ERROR_TYPE_WARNING, "Tunnel %X unknown.\n", tid);
7667     GNUNET_log (GNUNET_ERROR_TYPE_WARNING, "  for client %u.\n", c->id);
7668     GNUNET_break (0);
7669     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
7670     return;
7671   }
7672
7673   /* Does client own tunnel? */
7674   if (t->owner->handle != client)
7675   {
7676     GNUNET_break (0);
7677     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
7678     return;
7679   }
7680
7681   /* PID should be as expected */
7682   if (ntohl (data_msg->pid) != t->fwd_pid + 1)
7683   {
7684     GNUNET_break (0);
7685     GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
7686               "Multicast PID, expected %u, got %u\n",
7687               t->fwd_pid + 1, ntohl (data_msg->pid));
7688     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
7689     return;
7690   }
7691
7692   {
7693     char buf[ntohs (message->size)] GNUNET_ALIGN;
7694     struct GNUNET_MESH_Multicast *copy;
7695
7696     copy = (struct GNUNET_MESH_Multicast *) buf;
7697     memcpy (buf, message, ntohs (message->size));
7698     copy->oid = my_full_id;
7699     copy->tid = htonl (t->id.tid);
7700     copy->ttl = htonl (default_ttl);
7701     GNUNET_assert (ntohl (copy->pid) == (t->fwd_pid + 1));
7702     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
7703                 "  calling generic handler...\n");
7704     handle_mesh_data_multicast (client, &my_full_id, &copy->header, NULL, 0);
7705   }
7706
7707   GNUNET_SERVER_receive_done (t->owner->handle, GNUNET_OK);
7708   return;
7709 }
7710
7711
7712 /**
7713  * Handler for client's ACKs for payload traffic.
7714  *
7715  * @param cls Closure (unused).
7716  * @param client Identification of the client.
7717  * @param message The actual message.
7718  */
7719 static void
7720 handle_local_ack (void *cls, struct GNUNET_SERVER_Client *client,
7721                   const struct GNUNET_MessageHeader *message)
7722 {
7723   struct GNUNET_MESH_LocalAck *msg;
7724   struct MeshTunnel *t;
7725   struct MeshClient *c;
7726   MESH_TunnelNumber tid;
7727   uint32_t ack;
7728
7729   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Got a local ACK\n");
7730   /* Sanity check for client registration */
7731   if (NULL == (c = client_get (client)))
7732   {
7733     GNUNET_break (0);
7734     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
7735     return;
7736   }
7737   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  by client %u\n", c->id);
7738
7739   msg = (struct GNUNET_MESH_LocalAck *) message;
7740
7741   /* Tunnel exists? */
7742   tid = ntohl (msg->tunnel_id);
7743   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  on tunnel %X\n", tid);
7744   t = tunnel_get_by_local_id (c, tid);
7745   if (NULL == t)
7746   {
7747     GNUNET_break (0);
7748     GNUNET_log (GNUNET_ERROR_TYPE_WARNING, "Tunnel %X unknown.\n", tid);
7749     GNUNET_log (GNUNET_ERROR_TYPE_WARNING, "  for client %u.\n", c->id);
7750     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
7751     return;
7752   }
7753
7754   ack = ntohl (msg->max_pid);
7755   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  ack %u\n", ack);
7756
7757   /* Does client own tunnel? I.E: Is this and ACK for BCK traffic? */
7758   if (NULL != t->owner && t->owner->handle == client)
7759   {
7760     /* The client owns the tunnel, ACK is for data to_origin, send BCK ACK. */
7761     t->bck_ack = ack;
7762     tunnel_send_bck_ack(t, GNUNET_MESSAGE_TYPE_MESH_LOCAL_ACK);
7763   }
7764   else
7765   {
7766     /* The client doesn't own the tunnel, this ACK is for FWD traffic. */
7767     tunnel_set_client_fwd_ack (t, c, ack);
7768     tunnel_send_fwd_ack (t, GNUNET_MESSAGE_TYPE_MESH_LOCAL_ACK);
7769   }
7770
7771   GNUNET_SERVER_receive_done (client, GNUNET_OK);  
7772
7773   return;
7774 }
7775
7776
7777 /**
7778  * Functions to handle messages from clients
7779  */
7780 static struct GNUNET_SERVER_MessageHandler client_handlers[] = {
7781   {&handle_local_new_client, NULL,
7782    GNUNET_MESSAGE_TYPE_MESH_LOCAL_CONNECT, 0},
7783   {&handle_local_announce_regex, NULL,
7784    GNUNET_MESSAGE_TYPE_MESH_LOCAL_ANNOUNCE_REGEX, 0},
7785   {&handle_local_tunnel_create, NULL,
7786    GNUNET_MESSAGE_TYPE_MESH_LOCAL_TUNNEL_CREATE,
7787    sizeof (struct GNUNET_MESH_TunnelMessage)},
7788   {&handle_local_tunnel_destroy, NULL,
7789    GNUNET_MESSAGE_TYPE_MESH_LOCAL_TUNNEL_DESTROY,
7790    sizeof (struct GNUNET_MESH_TunnelMessage)},
7791   {&handle_local_tunnel_speed, NULL,
7792    GNUNET_MESSAGE_TYPE_MESH_LOCAL_TUNNEL_MIN,
7793    sizeof (struct GNUNET_MESH_TunnelMessage)},
7794   {&handle_local_tunnel_speed, NULL,
7795    GNUNET_MESSAGE_TYPE_MESH_LOCAL_TUNNEL_MAX,
7796    sizeof (struct GNUNET_MESH_TunnelMessage)},
7797   {&handle_local_tunnel_buffer, NULL,
7798    GNUNET_MESSAGE_TYPE_MESH_LOCAL_TUNNEL_BUFFER,
7799    sizeof (struct GNUNET_MESH_TunnelMessage)},
7800   {&handle_local_tunnel_buffer, NULL,
7801    GNUNET_MESSAGE_TYPE_MESH_LOCAL_TUNNEL_NOBUFFER,
7802    sizeof (struct GNUNET_MESH_TunnelMessage)},
7803   {&handle_local_connect_add, NULL,
7804    GNUNET_MESSAGE_TYPE_MESH_LOCAL_PEER_ADD,
7805    sizeof (struct GNUNET_MESH_PeerControl)},
7806   {&handle_local_connect_del, NULL,
7807    GNUNET_MESSAGE_TYPE_MESH_LOCAL_PEER_DEL,
7808    sizeof (struct GNUNET_MESH_PeerControl)},
7809   {&handle_local_blacklist, NULL,
7810    GNUNET_MESSAGE_TYPE_MESH_LOCAL_PEER_BLACKLIST,
7811    sizeof (struct GNUNET_MESH_PeerControl)},
7812   {&handle_local_unblacklist, NULL,
7813    GNUNET_MESSAGE_TYPE_MESH_LOCAL_PEER_UNBLACKLIST,
7814    sizeof (struct GNUNET_MESH_PeerControl)},
7815   {&handle_local_connect_by_type, NULL,
7816    GNUNET_MESSAGE_TYPE_MESH_LOCAL_PEER_ADD_BY_TYPE,
7817    sizeof (struct GNUNET_MESH_ConnectPeerByType)},
7818   {&handle_local_connect_by_string, NULL,
7819    GNUNET_MESSAGE_TYPE_MESH_LOCAL_PEER_ADD_BY_STRING, 0},
7820   {&handle_local_unicast, NULL,
7821    GNUNET_MESSAGE_TYPE_MESH_UNICAST, 0},
7822   {&handle_local_to_origin, NULL,
7823    GNUNET_MESSAGE_TYPE_MESH_TO_ORIGIN, 0},
7824   {&handle_local_multicast, NULL,
7825    GNUNET_MESSAGE_TYPE_MESH_MULTICAST, 0},
7826   {&handle_local_ack, NULL,
7827    GNUNET_MESSAGE_TYPE_MESH_LOCAL_ACK,
7828    sizeof (struct GNUNET_MESH_LocalAck)},
7829   {NULL, NULL, 0, 0}
7830 };
7831
7832
7833 /**
7834  * To be called on core init/fail.
7835  *
7836  * @param cls service closure
7837  * @param server handle to the server for this service
7838  * @param identity the public identity of this peer
7839  */
7840 static void
7841 core_init (void *cls, struct GNUNET_CORE_Handle *server,
7842            const struct GNUNET_PeerIdentity *identity)
7843 {
7844   static int i = 0;
7845   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Core init\n");
7846   core_handle = server;
7847   if (0 != memcmp (identity, &my_full_id, sizeof (my_full_id)) ||
7848       NULL == server)
7849   {
7850     GNUNET_log (GNUNET_ERROR_TYPE_ERROR, _("Wrong CORE service\n"));
7851     GNUNET_SCHEDULER_shutdown (); // Try gracefully
7852     if (10 < i++)
7853       GNUNET_abort(); // Try harder
7854   }
7855   return;
7856 }
7857
7858
7859 /**
7860  * Method called whenever a given peer connects.
7861  *
7862  * @param cls closure
7863  * @param peer peer identity this notification is about
7864  * @param atsi performance data for the connection
7865  * @param atsi_count number of records in 'atsi'
7866  */
7867 static void
7868 core_connect (void *cls, const struct GNUNET_PeerIdentity *peer,
7869               const struct GNUNET_ATS_Information *atsi,
7870               unsigned int atsi_count)
7871 {
7872   struct MeshPeerInfo *peer_info;
7873   struct MeshPeerPath *path;
7874
7875   DEBUG_CONN ("Peer connected\n");
7876   DEBUG_CONN ("     %s\n", GNUNET_i2s (&my_full_id));
7877   peer_info = peer_info_get (peer);
7878   if (myid == peer_info->id)
7879   {
7880     DEBUG_CONN ("     (self)\n");
7881     return;
7882   }
7883   else
7884   {
7885     DEBUG_CONN ("     %s\n", GNUNET_i2s (peer));
7886   }
7887   path = path_new (2);
7888   path->peers[0] = myid;
7889   path->peers[1] = peer_info->id;
7890   GNUNET_PEER_change_rc (myid, 1);
7891   GNUNET_PEER_change_rc (peer_info->id, 1);
7892   peer_info_add_path (peer_info, path, GNUNET_YES);
7893   GNUNET_STATISTICS_update (stats, "# peers", 1, GNUNET_NO);
7894   return;
7895 }
7896
7897
7898 /**
7899  * Method called whenever a peer disconnects.
7900  *
7901  * @param cls closure
7902  * @param peer peer identity this notification is about
7903  */
7904 static void
7905 core_disconnect (void *cls, const struct GNUNET_PeerIdentity *peer)
7906 {
7907   struct MeshPeerInfo *pi;
7908   struct MeshPeerQueue *q;
7909   struct MeshPeerQueue *n;
7910
7911   DEBUG_CONN ("Peer disconnected\n");
7912   pi = GNUNET_CONTAINER_multihashmap_get (peers, &peer->hashPubKey);
7913   if (NULL == pi)
7914   {
7915     GNUNET_break (0);
7916     return;
7917   }
7918   q = pi->queue_head;
7919   while (NULL != q)
7920   {
7921       n = q->next;
7922       /* TODO try to reroute this traffic instead */
7923       queue_destroy(q, GNUNET_YES);
7924       q = n;
7925   }
7926   if (NULL != pi->core_transmit)
7927   {
7928     GNUNET_CORE_notify_transmit_ready_cancel(pi->core_transmit);
7929     pi->core_transmit = NULL;
7930   }
7931   peer_info_remove_path (pi, pi->id, myid);
7932   if (myid == pi->id)
7933   {
7934     DEBUG_CONN ("     (self)\n");
7935   }
7936   GNUNET_STATISTICS_update (stats, "# peers", -1, GNUNET_NO);
7937   return;
7938 }
7939
7940
7941 /******************************************************************************/
7942 /************************      MAIN FUNCTIONS      ****************************/
7943 /******************************************************************************/
7944
7945 /**
7946  * Iterator over tunnel hash map entries to destroy the tunnel during shutdown.
7947  *
7948  * @param cls closure
7949  * @param key current key code
7950  * @param value value in the hash map
7951  * @return GNUNET_YES if we should continue to iterate,
7952  *         GNUNET_NO if not.
7953  */
7954 static int
7955 shutdown_tunnel (void *cls, const struct GNUNET_HashCode * key, void *value)
7956 {
7957   struct MeshTunnel *t = value;
7958
7959   tunnel_destroy (t);
7960   return GNUNET_YES;
7961 }
7962
7963 /**
7964  * Iterator over peer hash map entries to destroy the tunnel during shutdown.
7965  *
7966  * @param cls closure
7967  * @param key current key code
7968  * @param value value in the hash map
7969  * @return GNUNET_YES if we should continue to iterate,
7970  *         GNUNET_NO if not.
7971  */
7972 static int
7973 shutdown_peer (void *cls, const struct GNUNET_HashCode * key, void *value)
7974 {
7975   struct MeshPeerInfo *p = value;
7976   struct MeshPeerQueue *q;
7977   struct MeshPeerQueue *n;
7978
7979   q = p->queue_head;
7980   while (NULL != q)
7981   {
7982       n = q->next;
7983       if (q->peer == p)
7984       {
7985         queue_destroy(q, GNUNET_YES);
7986       }
7987       q = n;
7988   }
7989   peer_info_destroy (p);
7990   return GNUNET_YES;
7991 }
7992
7993
7994 /**
7995  * Task run during shutdown.
7996  *
7997  * @param cls unused
7998  * @param tc unused
7999  */
8000 static void
8001 shutdown_task (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
8002 {
8003   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "shutting down\n");
8004
8005   if (core_handle != NULL)
8006   {
8007     GNUNET_CORE_disconnect (core_handle);
8008     core_handle = NULL;
8009   }
8010  if (NULL != keygen)
8011   {
8012     GNUNET_CRYPTO_rsa_key_create_stop (keygen);
8013     keygen = NULL;
8014   }
8015   GNUNET_CONTAINER_multihashmap_iterate (tunnels, &shutdown_tunnel, NULL);
8016   GNUNET_CONTAINER_multihashmap_iterate (peers, &shutdown_peer, NULL);
8017   if (dht_handle != NULL)
8018   {
8019     GNUNET_DHT_disconnect (dht_handle);
8020     dht_handle = NULL;
8021   }
8022   if (nc != NULL)
8023   {
8024     GNUNET_SERVER_notification_context_destroy (nc);
8025     nc = NULL;
8026   }
8027   if (GNUNET_SCHEDULER_NO_TASK != announce_id_task)
8028   {
8029     GNUNET_SCHEDULER_cancel (announce_id_task);
8030     announce_id_task = GNUNET_SCHEDULER_NO_TASK;
8031   }
8032   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "shut down\n");
8033 }
8034
8035
8036 /**
8037  * Callback for hostkey read/generation
8038  *
8039  * @param cls NULL
8040  * @param pk the private key
8041  * @param emsg error message
8042  */
8043 static void
8044 key_generation_cb (void *cls,
8045                    struct GNUNET_CRYPTO_RsaPrivateKey *pk,
8046                    const char *emsg)
8047 {
8048   struct MeshPeerInfo *peer;
8049   struct MeshPeerPath *p;
8050
8051   keygen = NULL;  
8052   if (NULL == pk)
8053   {
8054     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
8055                 _("Mesh service could not access hostkey.  Exiting.\n"));
8056     GNUNET_SCHEDULER_shutdown ();
8057     return;
8058   }
8059   my_private_key = pk;
8060   GNUNET_CRYPTO_rsa_key_get_public (my_private_key, &my_public_key);
8061   GNUNET_CRYPTO_hash (&my_public_key, sizeof (my_public_key),
8062                       &my_full_id.hashPubKey);
8063   myid = GNUNET_PEER_intern (&my_full_id);
8064   GNUNET_log (GNUNET_ERROR_TYPE_INFO,
8065               "Mesh for peer [%s] starting\n",
8066               GNUNET_i2s(&my_full_id));
8067
8068 //   transport_handle = GNUNET_TRANSPORT_connect(c,
8069 //                                               &my_full_id,
8070 //                                               NULL,
8071 //                                               NULL,
8072 //                                               NULL,
8073 //                                               NULL);
8074
8075
8076
8077   next_tid = 0;
8078   next_local_tid = GNUNET_MESH_LOCAL_TUNNEL_ID_SERV;
8079
8080
8081   GNUNET_SERVER_add_handlers (server_handle, client_handlers);
8082   nc = GNUNET_SERVER_notification_context_create (server_handle, 1);
8083   GNUNET_SERVER_disconnect_notify (server_handle,
8084                                    &handle_local_client_disconnect, NULL);
8085
8086
8087   clients = NULL;
8088   clients_tail = NULL;
8089   next_client_id = 0;
8090
8091   announce_applications_task = GNUNET_SCHEDULER_NO_TASK;
8092   announce_id_task = GNUNET_SCHEDULER_add_now (&announce_id, cls);
8093
8094   /* Create a peer_info for the local peer */
8095   peer = peer_info_get (&my_full_id);
8096   p = path_new (1);
8097   p->peers[0] = myid;
8098   GNUNET_PEER_change_rc (myid, 1);
8099   peer_info_add_path (peer, p, GNUNET_YES);
8100   GNUNET_SERVER_resume (server_handle);
8101   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Mesh service running\n");
8102 }
8103
8104
8105 /**
8106  * Process mesh requests.
8107  *
8108  * @param cls closure
8109  * @param server the initialized server
8110  * @param c configuration to use
8111  */
8112 static void
8113 run (void *cls, struct GNUNET_SERVER_Handle *server,
8114      const struct GNUNET_CONFIGURATION_Handle *c)
8115 {
8116   char *keyfile;
8117
8118   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "starting to run\n");
8119   server_handle = server;
8120   core_handle = GNUNET_CORE_connect (c, /* Main configuration */
8121                                      NULL,      /* Closure passed to MESH functions */
8122                                      &core_init,        /* Call core_init once connected */
8123                                      &core_connect,     /* Handle connects */
8124                                      &core_disconnect,  /* remove peers on disconnects */
8125                                      NULL,      /* Don't notify about all incoming messages */
8126                                      GNUNET_NO, /* For header only in notification */
8127                                      NULL,      /* Don't notify about all outbound messages */
8128                                      GNUNET_NO, /* For header-only out notification */
8129                                      core_handlers);    /* Register these handlers */
8130
8131   if (core_handle == NULL)
8132   {
8133     GNUNET_break (0);
8134     GNUNET_SCHEDULER_shutdown ();
8135     return;
8136   }
8137
8138   if (GNUNET_OK !=
8139       GNUNET_CONFIGURATION_get_value_filename (c, "GNUNETD", "HOSTKEY",
8140                                                &keyfile))
8141   {
8142     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
8143                 _
8144                 ("%s service is lacking key configuration settings (%s).  Exiting.\n"),
8145                 "mesh", "hostkey");
8146     GNUNET_SCHEDULER_shutdown ();
8147     return;
8148   }
8149
8150   if (GNUNET_OK !=
8151       GNUNET_CONFIGURATION_get_value_time (c, "MESH", "REFRESH_PATH_TIME",
8152                                            &refresh_path_time))
8153   {
8154     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
8155                 _
8156                 ("%s service is lacking key configuration settings (%s).  Exiting.\n"),
8157                 "mesh", "refresh path time");
8158     GNUNET_SCHEDULER_shutdown ();
8159     return;
8160   }
8161
8162   if (GNUNET_OK !=
8163       GNUNET_CONFIGURATION_get_value_time (c, "MESH", "APP_ANNOUNCE_TIME",
8164                                            &app_announce_time))
8165   {
8166     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
8167                 _
8168                 ("%s service is lacking key configuration settings (%s).  Exiting.\n"),
8169                 "mesh", "app announce time");
8170     GNUNET_SCHEDULER_shutdown ();
8171     return;
8172   }
8173
8174   if (GNUNET_OK !=
8175       GNUNET_CONFIGURATION_get_value_time (c, "MESH", "ID_ANNOUNCE_TIME",
8176                                            &id_announce_time))
8177   {
8178     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
8179                 _
8180                 ("%s service is lacking key configuration settings (%s).  Exiting.\n"),
8181                 "mesh", "id announce time");
8182     GNUNET_SCHEDULER_shutdown ();
8183     return;
8184   }
8185   else
8186   {
8187   }
8188
8189   if (GNUNET_OK !=
8190       GNUNET_CONFIGURATION_get_value_time (c, "MESH", "UNACKNOWLEDGED_WAIT",
8191                                            &unacknowledged_wait_time))
8192   {
8193     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
8194                 _
8195                 ("%s service is lacking key configuration settings (%s).  Exiting.\n"),
8196                 "mesh", "unacknowledged wait time");
8197     GNUNET_SCHEDULER_shutdown ();
8198     return;
8199   }
8200
8201   if (GNUNET_OK !=
8202       GNUNET_CONFIGURATION_get_value_time (c, "MESH", "CONNECT_TIMEOUT",
8203                                            &connect_timeout))
8204   {
8205     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
8206                 _
8207                 ("%s service is lacking key configuration settings (%s).  Exiting.\n"),
8208                 "mesh", "connect timeout");
8209     GNUNET_SCHEDULER_shutdown ();
8210     return;
8211   }
8212
8213   if (GNUNET_OK !=
8214       GNUNET_CONFIGURATION_get_value_number (c, "MESH", "MAX_MSGS_QUEUE",
8215                                              &max_msgs_queue))
8216   {
8217     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
8218                 _
8219                 ("%s service is lacking key configuration settings (%s).  Exiting.\n"),
8220                 "mesh", "max msgs queue");
8221     GNUNET_SCHEDULER_shutdown ();
8222     return;
8223   }
8224
8225   if (GNUNET_OK !=
8226       GNUNET_CONFIGURATION_get_value_number (c, "MESH", "MAX_TUNNELS",
8227                                              &max_tunnels))
8228   {
8229     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
8230                 _
8231                 ("%s service is lacking key configuration settings (%s).  Exiting.\n"),
8232                 "mesh", "max tunnels");
8233     GNUNET_SCHEDULER_shutdown ();
8234     return;
8235   }
8236
8237   if (GNUNET_OK !=
8238       GNUNET_CONFIGURATION_get_value_number (c, "MESH", "DEFAULT_TTL",
8239                                              &default_ttl))
8240   {
8241     GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
8242                 _
8243                 ("%s service is lacking key configuration settings (%s). Using default (%u).\n"),
8244                 "mesh", "default ttl", 64);
8245     default_ttl = 64;
8246   }
8247
8248   if (GNUNET_OK !=
8249       GNUNET_CONFIGURATION_get_value_number (c, "MESH", "DHT_REPLICATION_LEVEL",
8250                                              &dht_replication_level))
8251   {
8252     GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
8253                 _
8254                 ("%s service is lacking key configuration settings (%s). Using default (%u).\n"),
8255                 "mesh", "dht replication level", 10);
8256     dht_replication_level = 10;
8257   }
8258
8259   tunnels = GNUNET_CONTAINER_multihashmap_create (32);
8260   incoming_tunnels = GNUNET_CONTAINER_multihashmap_create (32);
8261   peers = GNUNET_CONTAINER_multihashmap_create (32);
8262   applications = GNUNET_CONTAINER_multihashmap_create (32);
8263   types = GNUNET_CONTAINER_multihashmap_create (32);
8264
8265   dht_handle = GNUNET_DHT_connect (c, 64);
8266   if (NULL == dht_handle)
8267   {
8268     GNUNET_break (0);
8269   }
8270   stats = GNUNET_STATISTICS_create ("mesh", c);
8271
8272   GNUNET_SERVER_suspend (server_handle);
8273   /* Scheduled the task to clean up when shutdown is called */
8274   GNUNET_SCHEDULER_add_delayed (GNUNET_TIME_UNIT_FOREVER_REL, &shutdown_task,
8275                                 NULL);
8276   keygen = GNUNET_CRYPTO_rsa_key_create_start (keyfile, &key_generation_cb, NULL);
8277   GNUNET_free (keyfile);
8278 }
8279
8280
8281 /**
8282  * The main function for the mesh service.
8283  *
8284  * @param argc number of arguments from the command line
8285  * @param argv command line arguments
8286  * @return 0 ok, 1 on error
8287  */
8288 int
8289 main (int argc, char *const *argv)
8290 {
8291   int ret;
8292   int r;
8293
8294   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "main()\n");
8295   r = GNUNET_SERVICE_run (argc, argv, "mesh", GNUNET_SERVICE_OPTION_NONE, &run,
8296                           NULL);
8297   ret = (GNUNET_OK == r) ? 0 : 1;
8298   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "main() END\n");
8299
8300   INTERVAL_SHOW;
8301
8302   GNUNET_log (GNUNET_ERROR_TYPE_INFO,
8303               "Mesh for peer [%s] FWD ACKs %u, BCK ACKs %u\n",
8304               GNUNET_i2s(&my_full_id), debug_fwd_ack, debug_bck_ack);
8305
8306   return ret;
8307 }