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