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