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