Finishing mesh reliable:
[oweals/gnunet.git] / src / mesh / gnunet-service-mesh.c
1 /*
2      This file is part of GNUnet.
3      (C) 2001-2013 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  *  FIXME in progress:
27  * - keep queues until receiving ACK
28  *
29  * TODO:
30  * - relay corking down to core
31  * - set ttl relative to path length
32  * - add signatures
33  * - add encryption
34  * TODO END
35  */
36
37 #include "platform.h"
38 #include "mesh.h"
39 #include "mesh_protocol.h"
40 #include "mesh_path.h"
41 #include "block_mesh.h"
42 #include "gnunet_dht_service.h"
43 #include "gnunet_statistics_service.h"
44
45 #define MESH_BLOOM_SIZE         128
46
47 #define MESH_DEBUG_DHT          GNUNET_NO
48 #define MESH_DEBUG_CONNECTION   GNUNET_NO
49 #define MESH_DEBUG_TIMING       __LINUX__ && GNUNET_NO
50
51 #define MESH_MAX_POLL_TIME      GNUNET_TIME_relative_multiply (\
52                                   GNUNET_TIME_UNIT_MINUTES,\
53                                   10)
54 #define MESH_RETRANSMIT_TIME    GNUNET_TIME_relative_multiply (\
55                                   GNUNET_TIME_UNIT_SECONDS,\
56                                   5)
57
58 #if MESH_DEBUG_CONNECTION
59 #define DEBUG_CONN(...) GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, __VA_ARGS__)
60 #else
61 #define DEBUG_CONN(...)
62 #endif
63
64 #if MESH_DEBUG_DHT
65 #define DEBUG_DHT(...) GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, __VA_ARGS__)
66 #else
67 #define DEBUG_DHT(...)
68 #endif
69
70 #if MESH_DEBUG_TIMING
71 #include <time.h>
72 double __sum;
73 uint64_t __count;
74 struct timespec __mesh_start;
75 struct timespec __mesh_end;
76 #define INTERVAL_START clock_gettime(CLOCK_PROCESS_CPUTIME_ID, &(__mesh_start))
77 #define INTERVAL_END \
78 do {\
79   clock_gettime(CLOCK_PROCESS_CPUTIME_ID, &(__mesh_end));\
80   double __diff = __mesh_end.tv_nsec - __mesh_start.tv_nsec;\
81   if (__diff < 0) __diff += 1000000000;\
82   __sum += __diff;\
83   __count++;\
84 } while (0)
85 #define INTERVAL_SHOW \
86 if (0 < __count)\
87   GNUNET_log (GNUNET_ERROR_TYPE_INFO, "AVG process time: %f ns\n", __sum/__count)
88 #else
89 #define INTERVAL_START
90 #define INTERVAL_END
91 #define INTERVAL_SHOW
92 #endif
93
94 /******************************************************************************/
95 /************************      DATA STRUCTURES     ****************************/
96 /******************************************************************************/
97
98 /** FWD declaration */
99 struct MeshPeerInfo;
100 struct MeshClient;
101
102
103 /**
104  * Struct containing info about a queued transmission to this peer
105  */
106 struct MeshPeerQueue
107 {
108     /**
109       * DLL next
110       */
111   struct MeshPeerQueue *next;
112
113     /**
114       * DLL previous
115       */
116   struct MeshPeerQueue *prev;
117
118     /**
119      * Peer this transmission is directed to.
120      */
121   struct MeshPeerInfo *peer;
122
123     /**
124      * Tunnel this message belongs to.
125      */
126   struct MeshTunnel *tunnel;
127
128     /**
129      * Pointer to info stucture used as cls.
130      */
131   void *cls;
132
133     /**
134      * Type of message
135      */
136   uint16_t type;
137
138     /**
139      * Size of the message
140      */
141   size_t size;
142 };
143
144
145 /**
146  * Struct containing all information regarding a given peer
147  */
148 struct MeshPeerInfo
149 {
150     /**
151      * ID of the peer
152      */
153   GNUNET_PEER_Id id;
154
155     /**
156      * Last time we heard from this peer
157      */
158   struct GNUNET_TIME_Absolute last_contact;
159
160     /**
161      * Number of attempts to reconnect so far
162      */
163   int n_reconnect_attempts;
164
165     /**
166      * Paths to reach the peer, ordered by ascending hop count
167      */
168   struct MeshPeerPath *path_head;
169
170     /**
171      * Paths to reach the peer, ordered by ascending hop count
172      */
173   struct MeshPeerPath *path_tail;
174
175     /**
176      * Handle to stop the DHT search for a path to this peer
177      */
178   struct GNUNET_DHT_GetHandle *dhtget;
179
180     /**
181      * Array of tunnels this peer is the target of.
182      * Most probably a small amount, therefore not a hashmap.
183      * When the path to the peer changes, notify these tunnels to let them
184      * re-adjust their path trees.
185      */
186   struct MeshTunnel **tunnels;
187
188     /**
189      * Number of tunnels this peers participates in
190      */
191   unsigned int ntunnels;
192
193    /**
194     * Transmission queue to core DLL head
195     */
196   struct MeshPeerQueue *queue_head;
197
198    /**
199     * Transmission queue to core DLL tail
200     */
201    struct MeshPeerQueue *queue_tail;
202
203    /**
204     * How many messages are in the queue to this peer.
205     */
206    unsigned int queue_n;
207
208    /**
209     * Handle for queued transmissions
210     */
211   struct GNUNET_CORE_TransmitHandle *core_transmit;
212 };
213
214
215 /**
216  * Struct to encapsulate all the Flow Control information to a peer in the
217  * context of a tunnel: Same peer in different tunnels will have independent
218  * flow control structures, allowing to choke/free tunnels according to its
219  * own criteria.
220  */
221 struct MeshFlowControl
222 {
223   /**
224    * ID of the last packet sent towards the peer.
225    */
226   uint32_t last_pid_sent;
227
228   /**
229    * ID of the last packet received from the peer.
230    */
231   uint32_t last_pid_recv;
232
233   /**
234    * Last ACK sent to the peer (peer can't send more than this PID).
235    */
236   uint32_t last_ack_sent;
237
238   /**
239    * Last ACK sent towards the origin (for traffic towards leaf node).
240    */
241   uint32_t last_ack_recv;
242
243   /**
244    * How many payload messages are in the queue towards this peer.
245    */
246   uint32_t queue_n;
247
248   /**
249    * Task to poll the peer in case of a lost ACK causes stall.
250    */
251   GNUNET_SCHEDULER_TaskIdentifier poll_task;
252
253   /**
254    * How frequently to poll for ACKs.
255    */
256   struct GNUNET_TIME_Relative poll_time;
257
258   /**
259    * On which tunnel to poll.
260    * Using an explicit poll_ctx would not help memory wise,
261    * since the allocated context would have to be stored in the
262    * fc struct in order to free it upon cancelling poll_task.
263    */
264   struct MeshTunnel *t;
265 };
266
267
268 /**
269  * Globally unique tunnel identification (owner + number)
270  * DO NOT USE OVER THE NETWORK
271  */
272 struct MESH_TunnelID
273 {
274     /**
275      * Node that owns the tunnel
276      */
277   GNUNET_PEER_Id oid;
278
279     /**
280      * Tunnel number to differentiate all the tunnels owned by the node oid
281      * ( tid < GNUNET_MESH_LOCAL_TUNNEL_ID_CLI )
282      */
283   MESH_TunnelNumber tid;
284 };
285
286
287 /**
288  * Info needed to retry a message in case it gets lost.
289  */
290 struct MeshReliableMessage
291 {
292     /**
293      * Double linked list, FIFO style
294      */
295   struct MeshReliableMessage    *next;
296   struct MeshReliableMessage    *prev;
297
298     /**
299      * Tunnel Reliability queue this message is in.
300      */
301   struct MeshTunnelReliability  *rel;
302
303     /**
304      * ID of the message (ACK needed to free)
305      */
306   uint32_t                      id;
307
308     /**
309      * When was this message issued (to calculate ACK delay) FIXME update with traffic
310      */
311   struct GNUNET_TIME_Absolute   timestamp;
312
313   /* struct GNUNET_MESH_Data with payload */
314 };
315
316
317 /**
318  * Data needed for reliable tunnel endpoint retransmission management.
319  */
320 struct MeshTunnelReliability
321 {
322     /**
323      * Tunnel this is about.
324      */
325   struct MeshTunnel *t;
326
327     /**
328      * DLL of messages sent and not yet ACK'd.
329      */
330   struct MeshReliableMessage            *head_sent;
331   struct MeshReliableMessage            *tail_sent;
332
333     /**
334      * DLL of messages received out of order.
335      */
336   struct MeshReliableMessage            *head_recv;
337   struct MeshReliableMessage            *tail_recv;
338
339     /**
340      * Task to resend/poll in case no ACK is received.
341      */
342   GNUNET_SCHEDULER_TaskIdentifier       retry_task;
343
344     /**
345      * Counter for exponential backoff.
346      */
347   struct GNUNET_TIME_Relative           retry_timer;
348
349     /**
350      * How long does it usually take to get an ACK. FIXME update with traffic
351      */
352   struct GNUNET_TIME_Relative           expected_delay;
353 };
354
355
356 /**
357  * Struct containing all information regarding a tunnel
358  * For an intermediate node the improtant info used will be:
359  * - id        Tunnel unique identification
360  * - paths[0]  To know where to send it next
361  * - metainfo: ready, speeds, accounting
362  */
363 struct MeshTunnel
364 {
365     /**
366      * Tunnel ID
367      */
368   struct MESH_TunnelID id;
369
370     /**
371      * Port of the tunnel.
372      */
373   uint32_t port;
374
375     /**
376      * State of the tunnel.
377      */
378   enum MeshTunnelState state;
379
380     /**
381      * Local tunnel number ( >= GNUNET_MESH_LOCAL_TUNNEL_ID_CLI or 0 )
382      */
383   MESH_TunnelNumber local_tid;
384
385     /**
386      * Local tunnel number for local destination clients (incoming number)
387      * ( >= GNUNET_MESH_LOCAL_TUNNEL_ID_SERV or 0). All clients share the same
388      * number.
389      */
390   MESH_TunnelNumber local_tid_dest;
391
392     /**
393      * Is the tunnel bufferless (minimum latency)?
394      */
395   int nobuffer;
396
397     /**
398      * Is the tunnel reliable?
399      */
400   int reliable;
401
402     /**
403      * Force sending ACK? Flag to allow duplicate ACK on POLL.
404      */
405   int force_ack;
406
407     /**
408      * How many messages do we accept in the forward queue.
409      */
410   unsigned int queue_max;
411
412     /**
413      * Last time the tunnel was used
414      */
415   struct GNUNET_TIME_Absolute timestamp;
416
417     /**
418      * Destination of the tunnel.
419      */
420   GNUNET_PEER_Id dest;
421
422     /**
423      * Next hop in the tunnel. If 0, @c client must be set.
424      */
425   GNUNET_PEER_Id next_hop;
426
427     /**
428      * Previous hop in the tunnel. If 0, @c owner must be set.
429      */
430   GNUNET_PEER_Id prev_hop;
431
432     /**
433      * Flow control information about @c next_hop or @c client.
434      */
435   struct MeshFlowControl next_fc;
436
437   /**
438    * Flow control information about @c prev_hop or @c owner.
439    */
440   struct MeshFlowControl prev_fc;
441
442     /**
443      * Client owner of the tunnel, if any
444      */
445   struct MeshClient *owner;
446
447     /**
448      * Client destination of the tunnel, if any.
449      */
450   struct MeshClient *client;
451
452     /**
453      * Task to keep the used paths alive at the owner,
454      * time tunnel out on all the other peers.
455      */
456   GNUNET_SCHEDULER_TaskIdentifier maintenance_task;
457
458     /**
459      * Path being used for the tunnel.
460      */
461   struct MeshPeerPath *path;
462
463     /**
464      * Flag to signal the destruction of the tunnel.
465      * If this is set GNUNET_YES the tunnel will be destroyed
466      * when the queue is empty.
467      */
468   int destroy;
469
470     /**
471      * Total messages pending for this tunnels, payload or not.
472      */
473   unsigned int pending_messages;
474
475     /**
476      * Reliability data.
477      * Only present (non-NULL) at the owner of a tunnel.
478      */
479   struct MeshTunnelReliability *fwd_rel;
480
481     /**
482      * Reliability data.
483      * Only present (non-NULL) at the destination of a tunnel.
484      */
485   struct MeshTunnelReliability *bck_rel;
486 };
487
488
489 /**
490  * Struct containing information about a client of the service
491  * 
492  * TODO: add a list of 'waiting' ports
493  */
494 struct MeshClient
495 {
496     /**
497      * Linked list next
498      */
499   struct MeshClient *next;
500
501     /**
502      * Linked list prev
503      */
504   struct MeshClient *prev;
505
506     /**
507      * Tunnels that belong to this client, indexed by local id
508      */
509   struct GNUNET_CONTAINER_MultiHashMap32 *own_tunnels;
510
511    /**
512      * Tunnels this client has accepted, indexed by incoming local id
513      */
514   struct GNUNET_CONTAINER_MultiHashMap32 *incoming_tunnels;
515
516     /**
517      * Handle to communicate with the client
518      */
519   struct GNUNET_SERVER_Client *handle;
520
521     /**
522      * Ports that this client has declared interest in.
523      * Indexed by port, contains *Client.
524      */
525   struct GNUNET_CONTAINER_MultiHashMap32 *ports;
526
527     /**
528      * Whether the client is active or shutting down (don't send confirmations
529      * to a client that is shutting down.
530      */
531   int shutting_down;
532
533     /**
534      * ID of the client, mainly for debug messages
535      */
536   unsigned int id;
537
538 };
539
540
541 /******************************************************************************/
542 /************************      DEBUG FUNCTIONS     ****************************/
543 /******************************************************************************/
544
545 #if MESH_DEBUG
546 /**
547  * GNUNET_SCHEDULER_Task for printing a message after some operation is done
548  * @param cls string to print
549  * @param success  GNUNET_OK if the PUT was transmitted,
550  *                GNUNET_NO on timeout,
551  *                GNUNET_SYSERR on disconnect from service
552  *                after the PUT message was transmitted
553  *                (so we don't know if it was received or not)
554  */
555
556 #if 0
557 static void
558 mesh_debug (void *cls, int success)
559 {
560   char *s = cls;
561
562   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "%s (%d)\n", s, success);
563 }
564 #endif
565
566 /* FIXME */
567 unsigned int debug_fwd_ack;
568 unsigned int debug_bck_ack;
569
570 #endif
571
572 /******************************************************************************/
573 /***********************      GLOBAL VARIABLES     ****************************/
574 /******************************************************************************/
575
576 /************************** Configuration parameters **************************/
577
578 /**
579  * How often to send tunnel keepalives. Tunnels timeout after 4 missed.
580  */
581 static struct GNUNET_TIME_Relative refresh_path_time;
582
583 /**
584  * How often to PUT own ID in the DHT.
585  */
586 static struct GNUNET_TIME_Relative id_announce_time;
587
588 /**
589  * Maximum time allowed to connect to a peer found by string.
590  */
591 static struct GNUNET_TIME_Relative connect_timeout;
592
593 /**
594  * Default TTL for payload packets.
595  */
596 static unsigned long long default_ttl;
597
598 /**
599  * DHT replication level, see DHT API: GNUNET_DHT_get_start, GNUNET_DHT_put.
600  */
601 static unsigned long long dht_replication_level;
602
603 /**
604  * How many tunnels are we willing to maintain.
605  * Local tunnels are always allowed, even if there are more tunnels than max.
606  */
607 static unsigned long long max_tunnels;
608
609 /**
610  * How many messages *in total* are we willing to queue, divided by number of 
611  * tunnels to get tunnel queue size.
612  */
613 static unsigned long long max_msgs_queue;
614
615 /**
616  * How many peers do we want to remember?
617  */
618 static unsigned long long max_peers;
619
620 /**
621  * Percentage of messages that will be dropped (for test purposes only).
622  */
623 static unsigned long long drop_percent;
624
625 /*************************** Static global variables **************************/
626
627 /**
628  * DLL with all the clients, head.
629  */
630 static struct MeshClient *clients_head;
631
632 /**
633  * DLL with all the clients, tail.
634  */
635 static struct MeshClient *clients_tail;
636
637 /**
638  * Tunnels known, indexed by MESH_TunnelID (MeshTunnel).
639  */
640 static struct GNUNET_CONTAINER_MultiHashMap *tunnels;
641
642 /**
643  * Number of tunnels known.
644  */
645 static unsigned long long n_tunnels;
646
647 /**
648  * Tunnels incoming, indexed by MESH_TunnelNumber
649  * (which is greater than GNUNET_MESH_LOCAL_TUNNEL_ID_SERV).
650  */
651 static struct GNUNET_CONTAINER_MultiHashMap32 *incoming_tunnels;
652
653 /**
654  * Peers known, indexed by PeerIdentity (MeshPeerInfo).
655  */
656 static struct GNUNET_CONTAINER_MultiHashMap *peers;
657
658 /*
659  * Handle to communicate with transport
660  */
661 // static struct GNUNET_TRANSPORT_Handle *transport_handle;
662
663 /**
664  * Handle to communicate with core.
665  */
666 static struct GNUNET_CORE_Handle *core_handle;
667
668 /**
669  * Handle to use DHT.
670  */
671 static struct GNUNET_DHT_Handle *dht_handle;
672
673 /**
674  * Handle to server.
675  */
676 static struct GNUNET_SERVER_Handle *server_handle;
677
678 /**
679  * Handle to the statistics service.
680  */
681 static struct GNUNET_STATISTICS_Handle *stats;
682
683 /**
684  * Notification context, to send messages to local clients.
685  */
686 static struct GNUNET_SERVER_NotificationContext *nc;
687
688 /**
689  * Local peer own ID (memory efficient handle).
690  */
691 static GNUNET_PEER_Id myid;
692
693 /**
694  * Local peer own ID (full value).
695  */
696 static struct GNUNET_PeerIdentity my_full_id;
697
698 /**
699  * Own private key.
700  */
701 static struct GNUNET_CRYPTO_EccPrivateKey *my_private_key;
702
703 /**
704  * Own public key.
705  */
706 static struct GNUNET_CRYPTO_EccPublicKeyBinaryEncoded my_public_key;
707
708 /**
709  * Tunnel ID for the next created tunnel (global tunnel number).
710  */
711 static MESH_TunnelNumber next_tid;
712
713 /**
714  * Tunnel ID for the next incoming tunnel (local tunnel number).
715  */
716 static MESH_TunnelNumber next_local_tid;
717
718 /**
719  * All ports clients of this peer have opened.
720  */
721 static struct GNUNET_CONTAINER_MultiHashMap32 *ports;
722
723 /**
724  * Task to periodically announce itself in the network.
725  */
726 GNUNET_SCHEDULER_TaskIdentifier announce_id_task;
727
728 /**
729  * Next ID to assign to a client.
730  */
731 unsigned int next_client_id;
732
733
734 /******************************************************************************/
735 /***********************         DECLARATIONS        **************************/
736 /******************************************************************************/
737
738 /**
739  * Function to process paths received for a new peer addition. The recorded
740  * paths form the initial tunnel, which can be optimized later.
741  * Called on each result obtained for the DHT search.
742  *
743  * @param cls closure
744  * @param exp when will this value expire
745  * @param key key of the result
746  * @param type type of the result
747  * @param size number of bytes in data
748  * @param data pointer to the result data
749  */
750 static void
751 dht_get_id_handler (void *cls, struct GNUNET_TIME_Absolute exp,
752                     const struct GNUNET_HashCode * key,
753                     const struct GNUNET_PeerIdentity *get_path,
754                     unsigned int get_path_length,
755                     const struct GNUNET_PeerIdentity *put_path,
756                     unsigned int put_path_length, enum GNUNET_BLOCK_Type type,
757                     size_t size, const void *data);
758
759
760 /**
761  * Retrieve the MeshPeerInfo stucture associated with the peer, create one
762  * and insert it in the appropriate structures if the peer is not known yet.
763  *
764  * @param peer Full identity of the peer.
765  *
766  * @return Existing or newly created peer info.
767  */
768 static struct MeshPeerInfo *
769 peer_get (const struct GNUNET_PeerIdentity *peer);
770
771
772 /**
773  * Retrieve the MeshPeerInfo stucture associated with the peer, create one
774  * and insert it in the appropriate structures if the peer is not known yet.
775  *
776  * @param peer Short identity of the peer.
777  *
778  * @return Existing or newly created peer info.
779  */
780 static struct MeshPeerInfo *
781 peer_get_short (const GNUNET_PEER_Id peer);
782
783
784 /**
785  * Build a PeerPath from the paths returned from the DHT, reversing the paths
786  * to obtain a local peer -> destination path and interning the peer ids.
787  *
788  * @return Newly allocated and created path
789  */
790 static struct MeshPeerPath *
791 path_build_from_dht (const struct GNUNET_PeerIdentity *get_path,
792                      unsigned int get_path_length,
793                      const struct GNUNET_PeerIdentity *put_path,
794                      unsigned int put_path_length);
795
796
797 /**
798  * Adds a path to the peer_infos of all the peers in the path
799  *
800  * @param p Path to process.
801  * @param confirmed Whether we know if the path works or not.
802  */
803 static void
804 path_add_to_peers (struct MeshPeerPath *p, int confirmed);
805
806
807
808 /**
809  * Search for a tunnel by global ID using full PeerIdentities.
810  *
811  * @param oid owner of the tunnel.
812  * @param tid global tunnel number.
813  *
814  * @return tunnel handler, NULL if doesn't exist.
815  */
816 static struct MeshTunnel *
817 tunnel_get (const struct GNUNET_PeerIdentity *oid, MESH_TunnelNumber tid);
818
819
820 /**
821  * Notify a tunnel that a connection has broken that affects at least
822  * some of its peers.
823  *
824  * @param t Tunnel affected.
825  * @param p1 Peer that got disconnected from p2.
826  * @param p2 Peer that got disconnected from p1.
827  *
828  * @return Short ID of the peer disconnected (either p1 or p2).
829  *         0 if the tunnel remained unaffected.
830  */
831 static GNUNET_PEER_Id
832 tunnel_notify_connection_broken (struct MeshTunnel *t, GNUNET_PEER_Id p1,
833                                  GNUNET_PEER_Id p2);
834
835
836 /**
837  * @brief Use the given path for the tunnel.
838  * Update the next and prev hops (and RCs).
839  * (Re)start the path refresh in case the tunnel is locally owned.
840  * 
841  * @param t Tunnel to update.
842  * @param p Path to use.
843  */
844 static void
845 tunnel_use_path (struct MeshTunnel *t, struct MeshPeerPath *p);
846
847 /**
848  * Tunnel is empty: destroy it.
849  * 
850  * Notifies all participants (peers, cleints) about the destruction.
851  * 
852  * @param t Tunnel to destroy. 
853  */
854 static void
855 tunnel_destroy_empty (struct MeshTunnel *t);
856
857 /**
858  * @brief Queue and pass message to core when possible.
859  * 
860  * If type is payload (UNICAST, TO_ORIGIN, MULTICAST) checks for queue status
861  * and accounts for it. In case the queue is full, the message is dropped and
862  * a break issued.
863  * 
864  * Otherwise, message is treated as internal and allowed to go regardless of 
865  * queue status.
866  *
867  * @param cls Closure (@c type dependant). It will be used by queue_send to
868  *            build the message to be sent if not already prebuilt.
869  * @param type Type of the message, 0 for a raw message.
870  * @param size Size of the message.
871  * @param dst Neighbor to send message to.
872  * @param t Tunnel this message belongs to.
873  */
874 static void
875 queue_add (void *cls, uint16_t type, size_t size,
876            struct MeshPeerInfo *dst, struct MeshTunnel *t);
877
878
879 /**
880  * Free a transmission that was already queued with all resources
881  * associated to the request.
882  *
883  * @param queue Queue handler to cancel.
884  * @param clear_cls Is it necessary to free associated cls?
885  */
886 static void
887 queue_destroy (struct MeshPeerQueue *queue, int clear_cls);
888
889
890 /**
891  * @brief Get the next transmittable message from the queue.
892  *
893  * This will be the head, except in the case of being a data packet
894  * not allowed by the destination peer.
895  *
896  * @param peer Destination peer.
897  *
898  * @return The next viable MeshPeerQueue element to send to that peer.
899  *         NULL when there are no transmittable messages.
900  */
901 struct MeshPeerQueue *
902 queue_get_next (const struct MeshPeerInfo *peer);
903
904
905 /**
906  * Core callback to write a queued packet to core buffer
907  *
908  * @param cls Closure (peer info).
909  * @param size Number of bytes available in buf.
910  * @param buf Where the to write the message.
911  *
912  * @return number of bytes written to buf
913  */
914 static size_t
915 queue_send (void *cls, size_t size, void *buf);
916
917
918 /******************************************************************************/
919 /************************    PERIODIC FUNCTIONS    ****************************/
920 /******************************************************************************/
921
922 /**
923  * Periodically announce self id in the DHT
924  *
925  * @param cls closure
926  * @param tc task context
927  */
928 static void
929 announce_id (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
930 {
931   struct PBlock block;
932
933   if (0 != (tc->reason & GNUNET_SCHEDULER_REASON_SHUTDOWN))
934   {
935     announce_id_task = GNUNET_SCHEDULER_NO_TASK;
936     return;
937   }
938   /* TODO
939    * - Set data expiration in function of X
940    * - Adapt X to churn
941    */
942   DEBUG_DHT ("DHT_put for ID %s started.\n", GNUNET_i2s (&my_full_id));
943
944   block.id = my_full_id;
945   GNUNET_DHT_put (dht_handle,   /* DHT handle */
946                   &my_full_id.hashPubKey,       /* Key to use */
947                   dht_replication_level,     /* Replication level */
948                   GNUNET_DHT_RO_RECORD_ROUTE | GNUNET_DHT_RO_DEMULTIPLEX_EVERYWHERE,    /* DHT options */
949                   GNUNET_BLOCK_TYPE_MESH_PEER,       /* Block type */
950                   sizeof (block),  /* Size of the data */
951                   (const char *) &block, /* Data itself */
952                   GNUNET_TIME_UNIT_FOREVER_ABS,  /* Data expiration */
953                   GNUNET_TIME_UNIT_FOREVER_REL, /* Retry time */
954                   NULL,         /* Continuation */
955                   NULL);        /* Continuation closure */
956   announce_id_task =
957       GNUNET_SCHEDULER_add_delayed (id_announce_time, &announce_id, cls);
958 }
959
960
961 /******************************************************************************/
962 /******************      GENERAL HELPER FUNCTIONS      ************************/
963 /******************************************************************************/
964
965
966 /**
967  * Check if client has registered with the service and has not disconnected
968  *
969  * @param client the client to check
970  *
971  * @return non-NULL if client exists in the global DLL
972  */
973 static struct MeshClient *
974 client_get (struct GNUNET_SERVER_Client *client)
975 {
976   struct MeshClient *c;
977
978   c = clients_head;
979   while (NULL != c)
980   {
981     if (c->handle == client)
982       return c;
983     c = c->next;
984   }
985   return NULL;
986 }
987
988
989 /**
990  * Deletes a tunnel from a client (either owner or destination). To be used on
991  * tunnel destroy.
992  *
993  * @param c Client whose tunnel to delete.
994  * @param t Tunnel which should be deleted.
995  */
996 static void
997 client_delete_tunnel (struct MeshClient *c, struct MeshTunnel *t)
998 {
999   if (c == t->owner)
1000   {
1001     GNUNET_assert (GNUNET_YES ==
1002                    GNUNET_CONTAINER_multihashmap32_remove (c->own_tunnels,
1003                                                            t->local_tid,
1004                                                            t));
1005   }
1006   if (c == t->client)
1007   {
1008     GNUNET_assert (GNUNET_YES ==
1009                    GNUNET_CONTAINER_multihashmap32_remove (c->incoming_tunnels,
1010                                                            t->local_tid_dest,
1011                                                            t));
1012   }
1013 }
1014
1015 /**
1016  * Notify the appropriate client that a new incoming tunnel was created.
1017  *
1018  * @param t Tunnel that was created.
1019  */
1020 static void
1021 send_client_tunnel_create (struct MeshTunnel *t)
1022 {
1023   struct GNUNET_MESH_TunnelMessage msg;
1024
1025   if (NULL == t->client)
1026     return;
1027   msg.header.size = htons (sizeof (msg));
1028   msg.header.type = htons (GNUNET_MESSAGE_TYPE_MESH_LOCAL_TUNNEL_CREATE);
1029   msg.tunnel_id = htonl (t->local_tid_dest);
1030   msg.port = htonl (t->port);
1031   msg.options = 0;
1032   msg.options |= GNUNET_YES == t->reliable ? GNUNET_MESH_OPTION_RELIABLE : 0;
1033   msg.options |= GNUNET_YES == t->nobuffer ? GNUNET_MESH_OPTION_NOBUFFER : 0;
1034   msg.options = htonl (msg.options);
1035   GNUNET_PEER_resolve (t->id.oid, &msg.peer);
1036   GNUNET_SERVER_notification_context_unicast (nc, t->client->handle,
1037                                               &msg.header, GNUNET_NO);
1038 }
1039
1040
1041 /**
1042  * Notify dest client that the incoming tunnel is no longer valid.
1043  *
1044  * @param c Client to notify..
1045  * @param t Tunnel that is destroyed.
1046  */
1047 static void
1048 send_client_tunnel_destroy (struct MeshClient *c, struct MeshTunnel *t)
1049 {
1050   struct GNUNET_MESH_TunnelMessage msg;
1051
1052   if (NULL == c)
1053   {
1054     GNUNET_break (0);
1055     return;
1056   }
1057   if (c != t->client && c != t->owner)
1058   {
1059     GNUNET_break (0);
1060     return;
1061   }
1062   msg.header.size = htons (sizeof (msg));
1063   msg.header.type = htons (GNUNET_MESSAGE_TYPE_MESH_LOCAL_TUNNEL_DESTROY);
1064   msg.tunnel_id = htonl (t->local_tid_dest);
1065   msg.port = htonl (0);
1066   memset(&msg.peer, 0, sizeof (msg.peer));
1067   GNUNET_SERVER_notification_context_unicast (nc, c->handle,
1068                                               &msg.header, GNUNET_NO);
1069 }
1070
1071
1072 /**
1073  * Iterator over all the peers to remove the oldest not-used entry.
1074  *
1075  * @param cls Closure (unsued).
1076  * @param key ID of the peer.
1077  * @param value Peer_Info of the peer.
1078  *
1079  * FIXME implement
1080  */
1081 static int
1082 peer_info_timeout (void *cls,
1083                    const struct GNUNET_HashCode *key,
1084                    void *value)
1085 {
1086   return GNUNET_YES;
1087 }
1088
1089 /**
1090  * Retrieve the MeshPeerInfo stucture associated with the peer, create one
1091  * and insert it in the appropriate structures if the peer is not known yet.
1092  *
1093  * @param peer Full identity of the peer.
1094  *
1095  * @return Existing or newly created peer info.
1096  */
1097 static struct MeshPeerInfo *
1098 peer_get (const struct GNUNET_PeerIdentity *peer)
1099 {
1100   struct MeshPeerInfo *peer_info;
1101
1102   peer_info = GNUNET_CONTAINER_multihashmap_get (peers, &peer->hashPubKey);
1103   if (NULL == peer_info)
1104   {
1105     peer_info =
1106         (struct MeshPeerInfo *) GNUNET_malloc (sizeof (struct MeshPeerInfo));
1107     if (GNUNET_CONTAINER_multihashmap_size (peers) > max_peers)
1108     {
1109       GNUNET_CONTAINER_multihashmap_iterate (peers,
1110                                              &peer_info_timeout,
1111                                              NULL);
1112     }
1113     GNUNET_CONTAINER_multihashmap_put (peers, &peer->hashPubKey, peer_info,
1114                                        GNUNET_CONTAINER_MULTIHASHMAPOPTION_UNIQUE_FAST);
1115     peer_info->id = GNUNET_PEER_intern (peer);
1116   }
1117   peer_info->last_contact = GNUNET_TIME_absolute_get();
1118
1119   return peer_info;
1120 }
1121
1122
1123 /**
1124  * Retrieve the MeshPeerInfo stucture associated with the peer, create one
1125  * and insert it in the appropriate structures if the peer is not known yet.
1126  *
1127  * @param peer Short identity of the peer.
1128  *
1129  * @return Existing or newly created peer info.
1130  */
1131 static struct MeshPeerInfo *
1132 peer_get_short (const GNUNET_PEER_Id peer)
1133 {
1134   struct GNUNET_PeerIdentity id;
1135
1136   GNUNET_PEER_resolve (peer, &id);
1137   return peer_get (&id);
1138 }
1139
1140
1141 /**
1142  * Choose the best path towards a peer considering the tunnel properties.
1143  * 
1144  * @param peer The destination peer.
1145  * @param t The tunnel the path is for.
1146  *
1147  * @return Best current known path towards the peer, if any.
1148  */
1149 static struct MeshPeerPath *
1150 peer_get_best_path (const struct MeshPeerInfo *peer, const struct MeshTunnel *t)
1151 {
1152   struct MeshPeerPath *best_p;
1153   struct MeshPeerPath *p;
1154   unsigned int best_cost;
1155   unsigned int cost;
1156
1157   best_p = p = peer->path_head;
1158   best_cost = cost = p->length;
1159   while (NULL != p)
1160   {
1161     if ((cost = p->length) < best_cost)
1162     {
1163       best_cost = cost;
1164       best_p = p;
1165     }
1166         p = p->next;
1167   }
1168   return best_p;
1169 }
1170
1171 /**
1172   * Core callback to write a pre-constructed data packet to core buffer
1173   *
1174   * @param cls Closure (MeshTransmissionDescriptor with data in "data" member).
1175   * @param size Number of bytes available in buf.
1176   * @param buf Where the to write the message.
1177   *
1178   * @return number of bytes written to buf
1179   */
1180 static size_t
1181 send_core_data_raw (void *cls, size_t size, void *buf)
1182 {
1183   struct GNUNET_MessageHeader *msg = cls;
1184   size_t total_size;
1185
1186   GNUNET_assert (NULL != msg);
1187   total_size = ntohs (msg->size);
1188
1189   if (total_size > size)
1190   {
1191     GNUNET_break (0);
1192     return 0;
1193   }
1194   memcpy (buf, msg, total_size);
1195   GNUNET_free (cls);
1196   return total_size;
1197 }
1198
1199
1200 /**
1201  * Sends an already built message to a peer, properly registrating
1202  * all used resources.
1203  *
1204  * @param message Message to send. Function makes a copy of it.
1205  * @param peer Short ID of the neighbor whom to send the message.
1206  * @param t Tunnel on which this message is transmitted.
1207  */
1208 static void
1209 send_prebuilt_message (const struct GNUNET_MessageHeader *message,
1210                        GNUNET_PEER_Id peer,
1211                        struct MeshTunnel *t)
1212 {
1213   struct GNUNET_PeerIdentity id;
1214   struct MeshPeerInfo *neighbor;
1215   struct MeshPeerPath *p;
1216   void *data;
1217   size_t size;
1218   uint16_t type;
1219
1220 //   GNUNET_TRANSPORT_try_connect(); FIXME use?
1221
1222   if (0 == peer)
1223     return;
1224
1225   size = ntohs (message->size);
1226   data = GNUNET_malloc (size);
1227   memcpy (data, message, size);
1228   type = ntohs(message->type);
1229   if (GNUNET_MESSAGE_TYPE_MESH_UNICAST == type ||
1230       GNUNET_MESSAGE_TYPE_MESH_TO_ORIGIN == type)
1231   {
1232     struct GNUNET_MESH_Data *u;
1233
1234     u = (struct GNUNET_MESH_Data *) data;
1235     u->ttl = htonl (ntohl (u->ttl) - 1);
1236   }
1237   GNUNET_PEER_resolve (peer, &id);
1238   neighbor = peer_get (&id);
1239   for (p = neighbor->path_head; NULL != p; p = p->next)
1240   {
1241     if (2 >= p->length)
1242     {
1243       break;
1244     }
1245   }
1246   if (NULL == p)
1247   {
1248 #if MESH_DEBUG
1249     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1250                 "  %s IS NOT DIRECTLY CONNECTED\n",
1251                 GNUNET_i2s(&id));
1252     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1253                 "  PATHS TO %s:\n",
1254                 GNUNET_i2s(&id));
1255     for (p = neighbor->path_head; NULL != p; p = p->next)
1256     {
1257       struct GNUNET_PeerIdentity debug_id;
1258       unsigned int i;
1259
1260       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1261                   "    path with %u hops through:\n",
1262                   p->length);
1263       for (i = 0; i < p->length; i++)
1264       {
1265         GNUNET_PEER_resolve(p->peers[i], &debug_id);
1266         GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1267                     "      hop %u: %s\n",
1268                     i, GNUNET_i2s(&debug_id));
1269       }
1270     }
1271 #endif
1272     GNUNET_break (0); // FIXME sometimes fails (testing disconnect?)
1273     GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
1274                     " no direct connection to %s\n",
1275                     GNUNET_i2s (&id));
1276     GNUNET_free (data);
1277     return;
1278   }
1279   if (GNUNET_MESSAGE_TYPE_MESH_PATH_ACK == type)
1280     type = 0;
1281   queue_add (data,
1282              type,
1283              size,
1284              neighbor,
1285              t);
1286 }
1287
1288
1289 /**
1290  * Sends a CREATE PATH message for a path to a peer, properly registrating
1291  * all used resources.
1292  *
1293  * @param t Tunnel for which the path is created.
1294  */
1295 static void
1296 send_create_path (struct MeshTunnel *t)
1297 {
1298   struct MeshPeerInfo *neighbor;
1299
1300   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Send create path\n");
1301   neighbor = peer_get_short (t->next_hop);
1302   queue_add (t,
1303              GNUNET_MESSAGE_TYPE_MESH_PATH_CREATE,
1304              sizeof (struct GNUNET_MESH_CreateTunnel) +
1305                 (t->path->length * sizeof (struct GNUNET_PeerIdentity)),
1306              neighbor,
1307              t);
1308   t->state = MESH_TUNNEL_WAITING;
1309 }
1310
1311
1312 /**
1313  * Sends a PATH ACK message in reponse to a received PATH_CREATE directed to us.
1314  *
1315  * @param t Tunnel which to confirm.
1316  */
1317 static void
1318 send_path_ack (struct MeshTunnel *t) 
1319 {
1320   struct MeshPeerInfo *peer;
1321
1322   peer = peer_get_short (t->prev_hop);
1323
1324   queue_add (t,
1325              GNUNET_MESSAGE_TYPE_MESH_PATH_ACK,
1326              sizeof (struct GNUNET_MESH_PathACK),
1327              peer,
1328              t);
1329 }
1330
1331
1332 /**
1333  * Try to establish a new connection to this peer in the given tunnel.
1334  * If the peer doesn't have any path to it yet, try to get one.
1335  * If the peer already has some path, send a CREATE PATH towards it.
1336  *
1337  * @param peer PeerInfo of the peer.
1338  * @param t Tunnel for which to create the path, if possible.
1339  */
1340 static void
1341 peer_connect (struct MeshPeerInfo *peer, struct MeshTunnel *t)
1342 {
1343   struct MeshPeerPath *p;
1344
1345   if (NULL != peer->path_head)
1346   {
1347     p = peer_get_best_path (peer, t);
1348     tunnel_use_path (t, p);
1349     send_create_path (t);
1350   }
1351   else if (NULL == peer->dhtget)
1352   {
1353     struct GNUNET_PeerIdentity id;
1354
1355     GNUNET_PEER_resolve (peer->id, &id);
1356     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1357                 "  Starting DHT GET for peer %s\n", GNUNET_i2s (&id));
1358     peer->dhtget = GNUNET_DHT_get_start (dht_handle,    /* handle */
1359                                          GNUNET_BLOCK_TYPE_MESH_PEER, /* type */
1360                                          &id.hashPubKey,     /* key to search */
1361                                          dht_replication_level, /* replication level */
1362                                          GNUNET_DHT_RO_RECORD_ROUTE |
1363                                          GNUNET_DHT_RO_DEMULTIPLEX_EVERYWHERE,
1364                                          NULL,       /* xquery */
1365                                          0,     /* xquery bits */
1366                                          &dht_get_id_handler, peer);
1367     t->state = MESH_TUNNEL_SEARCHING;
1368   }
1369   else
1370   {
1371     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1372                 "There is no path but the DHT GET is already started.\n");
1373   }
1374 }
1375
1376
1377 /**
1378  * Destroy the peer_info and free any allocated resources linked to it
1379  *
1380  * @param pi The peer_info to destroy.
1381  *
1382  * @return GNUNET_OK on success
1383  */
1384 static int
1385 peer_info_destroy (struct MeshPeerInfo *pi)
1386 {
1387   struct GNUNET_PeerIdentity id;
1388   struct MeshPeerPath *p;
1389   struct MeshPeerPath *nextp;
1390   unsigned int i;
1391
1392   GNUNET_PEER_resolve (pi->id, &id);
1393   GNUNET_PEER_change_rc (pi->id, -1);
1394
1395   if (GNUNET_YES !=
1396       GNUNET_CONTAINER_multihashmap_remove (peers, &id.hashPubKey, pi))
1397   {
1398     GNUNET_break (0);
1399     GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
1400                 "removing peer %s, not in hashmap\n", GNUNET_i2s (&id));
1401   }
1402   if (NULL != pi->dhtget)
1403   {
1404     GNUNET_DHT_get_stop (pi->dhtget);
1405   }
1406   p = pi->path_head;
1407   while (NULL != p)
1408   {
1409     nextp = p->next;
1410     GNUNET_CONTAINER_DLL_remove (pi->path_head, pi->path_tail, p);
1411     path_destroy (p);
1412     p = nextp;
1413   }
1414   for (i = 0; i < pi->ntunnels; i++)
1415     tunnel_destroy_empty (pi->tunnels[i]);
1416   GNUNET_array_grow (pi->tunnels, pi->ntunnels, 0);
1417   GNUNET_free (pi);
1418   return GNUNET_OK;
1419 }
1420
1421
1422 /**
1423  * Remove all paths that rely on a direct connection between p1 and p2
1424  * from the peer itself and notify all tunnels about it.
1425  *
1426  * @param peer PeerInfo of affected peer.
1427  * @param p1 GNUNET_PEER_Id of one peer.
1428  * @param p2 GNUNET_PEER_Id of another peer that was connected to the first and
1429  *           no longer is.
1430  *
1431  * TODO: optimize (see below)
1432  */
1433 static void
1434 peer_remove_path (struct MeshPeerInfo *peer, GNUNET_PEER_Id p1,
1435                        GNUNET_PEER_Id p2)
1436 {
1437   struct MeshPeerPath *p;
1438   struct MeshPeerPath *next;
1439   struct MeshPeerInfo *peer_d;
1440   GNUNET_PEER_Id d;
1441   unsigned int destroyed;
1442   unsigned int i;
1443
1444   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "peer_info_remove_path\n");
1445   destroyed = 0;
1446   for (p = peer->path_head; NULL != p; p = next)
1447   {
1448     next = p->next;
1449     for (i = 0; i < (p->length - 1); i++)
1450     {
1451       if ((p->peers[i] == p1 && p->peers[i + 1] == p2) ||
1452           (p->peers[i] == p2 && p->peers[i + 1] == p1))
1453       {
1454         GNUNET_CONTAINER_DLL_remove (peer->path_head, peer->path_tail, p);
1455         path_destroy (p);
1456         destroyed++;
1457         break;
1458       }
1459     }
1460   }
1461   if (0 == destroyed)
1462     return;
1463
1464   for (i = 0; i < peer->ntunnels; i++)
1465   {
1466     d = tunnel_notify_connection_broken (peer->tunnels[i], p1, p2);
1467     if (0 == d)
1468       continue;
1469
1470     peer_d = peer_get_short (d);
1471     next = peer_get_best_path (peer_d, peer->tunnels[i]);
1472     tunnel_use_path (peer->tunnels[i], next);
1473     peer_connect (peer_d, peer->tunnels[i]);
1474   }
1475   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "peer_info_remove_path END\n");
1476 }
1477
1478
1479 /**
1480  * Add the path to the peer and update the path used to reach it in case this
1481  * is the shortest.
1482  *
1483  * @param peer_info Destination peer to add the path to.
1484  * @param path New path to add. Last peer must be the peer in arg 1.
1485  *             Path will be either used of freed if already known.
1486  * @param trusted Do we trust that this path is real?
1487  */
1488 void
1489 peer_info_add_path (struct MeshPeerInfo *peer_info, struct MeshPeerPath *path,
1490                     int trusted)
1491 {
1492   struct MeshPeerPath *aux;
1493   unsigned int l;
1494   unsigned int l2;
1495
1496   if ((NULL == peer_info) || (NULL == path))
1497   {
1498     GNUNET_break (0);
1499     path_destroy (path);
1500     return;
1501   }
1502   if (path->peers[path->length - 1] != peer_info->id)
1503   {
1504     GNUNET_break (0);
1505     path_destroy (path);
1506     return;
1507   }
1508   if (2 >= path->length && GNUNET_NO == trusted)
1509   {
1510     /* Only allow CORE to tell us about direct paths */
1511     path_destroy (path);
1512     return;
1513   }
1514   for (l = 1; l < path->length; l++)
1515   {
1516     if (path->peers[l] == myid)
1517     {
1518       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "shortening path by %u\n", l);
1519       for (l2 = 0; l2 < path->length - l; l2++)
1520       {
1521         path->peers[l2] = path->peers[l + l2];
1522       }
1523       path->length -= l;
1524       l = 1;
1525       path->peers =
1526           GNUNET_realloc (path->peers, path->length * sizeof (GNUNET_PEER_Id));
1527     }
1528   }
1529 #if MESH_DEBUG
1530   {
1531     struct GNUNET_PeerIdentity id;
1532
1533     GNUNET_PEER_resolve (peer_info->id, &id);
1534     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "adding path [%u] to peer %s\n",
1535                 path->length, GNUNET_i2s (&id));
1536   }
1537 #endif
1538   l = path_get_length (path);
1539   if (0 == l)
1540   {
1541     path_destroy (path);
1542     return;
1543   }
1544
1545   GNUNET_assert (peer_info->id == path->peers[path->length - 1]);
1546   for (aux = peer_info->path_head; aux != NULL; aux = aux->next)
1547   {
1548     l2 = path_get_length (aux);
1549     if (l2 > l)
1550     {
1551       GNUNET_CONTAINER_DLL_insert_before (peer_info->path_head,
1552                                           peer_info->path_tail, aux, path);
1553       return;
1554     }
1555     else
1556     {
1557       if (l2 == l && memcmp (path->peers, aux->peers, l) == 0)
1558       {
1559         path_destroy (path);
1560         return;
1561       }
1562     }
1563   }
1564   GNUNET_CONTAINER_DLL_insert_tail (peer_info->path_head, peer_info->path_tail,
1565                                     path);
1566   return;
1567 }
1568
1569
1570 /**
1571  * Add the path to the origin peer and update the path used to reach it in case
1572  * this is the shortest.
1573  * The path is given in peer_info -> destination, therefore we turn the path
1574  * upside down first.
1575  *
1576  * @param peer_info Peer to add the path to, being the origin of the path.
1577  * @param path New path to add after being inversed.
1578  *             Path will be either used or freed.
1579  * @param trusted Do we trust that this path is real?
1580  */
1581 static void
1582 peer_info_add_path_to_origin (struct MeshPeerInfo *peer_info,
1583                               struct MeshPeerPath *path, int trusted)
1584 {
1585   path_invert (path);
1586   peer_info_add_path (peer_info, path, trusted);
1587 }
1588
1589
1590 /**
1591  * Add a tunnel to the list of tunnels a peer participates in.
1592  * Update the tunnel's destination.
1593  * 
1594  * @param p Peer to add to.
1595  * @param t Tunnel to add.
1596  */
1597 static void
1598 peer_info_add_tunnel (struct MeshPeerInfo *p, struct MeshTunnel *t)
1599 {
1600   if (0 != t->dest)
1601   {
1602     GNUNET_break (t->dest == p->id);
1603     return;
1604   }
1605   t->dest = p->id;
1606   GNUNET_PEER_change_rc (t->dest, 1);
1607   GNUNET_array_append (p->tunnels, p->ntunnels, t);
1608 }
1609
1610
1611 /**
1612  * Remove a tunnel from the list of tunnels a peer participates in.
1613  * Free the tunnel's destination.
1614  * 
1615  * @param p Peer to clean.
1616  * @param t Tunnel to remove.
1617  */
1618 static void
1619 peer_info_remove_tunnel (struct MeshPeerInfo *p, struct MeshTunnel *t)
1620 {
1621   unsigned int i;
1622
1623   if (t->dest == p->id)
1624   {
1625       GNUNET_PEER_change_rc (t->dest, -1);
1626       t->dest = 0;
1627   }
1628   for (i = 0; i < p->ntunnels; i++)
1629   {
1630     if (p->tunnels[i] == t)
1631     {
1632       p->tunnels[i] = p->tunnels[p->ntunnels - 1];
1633       GNUNET_array_grow (p->tunnels, p->ntunnels, p->ntunnels - 1);
1634       return;
1635     }
1636   }
1637 }
1638
1639
1640 /**
1641  * Function called if the connection to the peer has been stalled for a while,
1642  * possibly due to a missed ACK. Poll the peer about its ACK status.
1643  *
1644  * @param cls Closure (poll ctx).
1645  * @param tc TaskContext.
1646  */
1647 static void
1648 tunnel_poll (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
1649 {
1650   struct MeshFlowControl *fc = cls;
1651   struct GNUNET_MESH_Poll msg;
1652   struct MeshTunnel *t = fc->t;
1653   GNUNET_PEER_Id peer;
1654
1655   fc->poll_task = GNUNET_SCHEDULER_NO_TASK;
1656   if (0 != (tc->reason & GNUNET_SCHEDULER_REASON_SHUTDOWN))
1657   {
1658     return;
1659   }
1660
1661   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, " *** Polling!\n");
1662
1663   msg.header.type = htons (GNUNET_MESSAGE_TYPE_MESH_POLL);
1664   msg.header.size = htons (sizeof (msg));
1665   msg.tid = htonl (t->id.tid);
1666   msg.pid = htonl (fc->last_pid_sent);
1667   GNUNET_PEER_resolve (t->id.oid, &msg.oid);
1668
1669   if (fc == &t->prev_fc)
1670   {
1671     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, " *** prev peer!\n");
1672     peer = t->prev_hop;
1673   }
1674   else if (fc == &t->next_fc)
1675   {
1676     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, " *** next peer!\n");
1677     peer = t->next_hop;
1678   }
1679   else
1680   {
1681     GNUNET_break (0);
1682     return;
1683   }
1684   send_prebuilt_message (&msg.header, peer, t);
1685   fc->poll_time = GNUNET_TIME_STD_BACKOFF (fc->poll_time);
1686   fc->poll_task = GNUNET_SCHEDULER_add_delayed (fc->poll_time,
1687                                                 &tunnel_poll, fc);
1688 }
1689
1690
1691 /**
1692  * Build a PeerPath from the paths returned from the DHT, reversing the paths
1693  * to obtain a local peer -> destination path and interning the peer ids.
1694  *
1695  * @return Newly allocated and created path
1696  */
1697 static struct MeshPeerPath *
1698 path_build_from_dht (const struct GNUNET_PeerIdentity *get_path,
1699                      unsigned int get_path_length,
1700                      const struct GNUNET_PeerIdentity *put_path,
1701                      unsigned int put_path_length)
1702 {
1703   struct MeshPeerPath *p;
1704   GNUNET_PEER_Id id;
1705   int i;
1706
1707   p = path_new (1);
1708   p->peers[0] = myid;
1709   GNUNET_PEER_change_rc (myid, 1);
1710   i = get_path_length;
1711   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "   GET has %d hops.\n", i);
1712   for (i--; i >= 0; i--)
1713   {
1714     id = GNUNET_PEER_intern (&get_path[i]);
1715     if (p->length > 0 && id == p->peers[p->length - 1])
1716     {
1717       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "   Optimizing 1 hop out.\n");
1718       GNUNET_PEER_change_rc (id, -1);
1719     }
1720     else
1721     {
1722       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "   Adding from GET: %s.\n",
1723                   GNUNET_i2s (&get_path[i]));
1724       p->length++;
1725       p->peers = GNUNET_realloc (p->peers, sizeof (GNUNET_PEER_Id) * p->length);
1726       p->peers[p->length - 1] = id;
1727     }
1728   }
1729   i = put_path_length;
1730   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "   PUT has %d hops.\n", i);
1731   for (i--; i >= 0; i--)
1732   {
1733     id = GNUNET_PEER_intern (&put_path[i]);
1734     if (id == myid)
1735     {
1736       /* PUT path went through us, so discard the path up until now and start
1737        * from here to get a much shorter (and loop-free) path.
1738        */
1739       path_destroy (p);
1740       p = path_new (0);
1741     }
1742     if (p->length > 0 && id == p->peers[p->length - 1])
1743     {
1744       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "   Optimizing 1 hop out.\n");
1745       GNUNET_PEER_change_rc (id, -1);
1746     }
1747     else
1748     {
1749       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "   Adding from PUT: %s.\n",
1750                   GNUNET_i2s (&put_path[i]));
1751       p->length++;
1752       p->peers = GNUNET_realloc (p->peers, sizeof (GNUNET_PEER_Id) * p->length);
1753       p->peers[p->length - 1] = id;
1754     }
1755   }
1756 #if MESH_DEBUG
1757   if (get_path_length > 0)
1758     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "   (first of GET: %s)\n",
1759                 GNUNET_i2s (&get_path[0]));
1760   if (put_path_length > 0)
1761     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "   (first of PUT: %s)\n",
1762                 GNUNET_i2s (&put_path[0]));
1763   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "   In total: %d hops\n",
1764               p->length);
1765   for (i = 0; i < p->length; i++)
1766   {
1767     struct GNUNET_PeerIdentity peer_id;
1768
1769     GNUNET_PEER_resolve (p->peers[i], &peer_id);
1770     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "       %u: %s\n", p->peers[i],
1771                 GNUNET_i2s (&peer_id));
1772   }
1773 #endif
1774   return p;
1775 }
1776
1777
1778 /**
1779  * Adds a path to the peer_infos of all the peers in the path
1780  *
1781  * @param p Path to process.
1782  * @param confirmed Whether we know if the path works or not.
1783  */
1784 static void
1785 path_add_to_peers (struct MeshPeerPath *p, int confirmed)
1786 {
1787   unsigned int i;
1788
1789   /* TODO: invert and add */
1790   for (i = 0; i < p->length && p->peers[i] != myid; i++) /* skip'em */ ;
1791   for (i++; i < p->length; i++)
1792   {
1793     struct MeshPeerInfo *aux;
1794     struct MeshPeerPath *copy;
1795
1796     aux = peer_get_short (p->peers[i]);
1797     copy = path_duplicate (p);
1798     copy->length = i + 1;
1799     peer_info_add_path (aux, copy, p->length < 3 ? GNUNET_NO : confirmed);
1800   }
1801 }
1802
1803
1804 /**
1805  * Send keepalive packets for a peer
1806  *
1807  * @param cls Closure (tunnel for which to send the keepalive).
1808  * @param tc Notification context.
1809  */
1810 static void
1811 path_refresh (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc);
1812
1813
1814 /**
1815  * Search for a tunnel among the incoming tunnels
1816  *
1817  * @param tid the local id of the tunnel
1818  *
1819  * @return tunnel handler, NULL if doesn't exist
1820  */
1821 static struct MeshTunnel *
1822 tunnel_get_incoming (MESH_TunnelNumber tid)
1823 {
1824   GNUNET_assert (tid >= GNUNET_MESH_LOCAL_TUNNEL_ID_SERV);
1825   return GNUNET_CONTAINER_multihashmap32_get (incoming_tunnels, tid);
1826 }
1827
1828
1829 /**
1830  * Search for a tunnel among the tunnels for a client
1831  *
1832  * @param c the client whose tunnels to search in
1833  * @param tid the local id of the tunnel
1834  *
1835  * @return tunnel handler, NULL if doesn't exist
1836  */
1837 static struct MeshTunnel *
1838 tunnel_get_by_local_id (struct MeshClient *c, MESH_TunnelNumber tid)
1839 {
1840   if (tid >= GNUNET_MESH_LOCAL_TUNNEL_ID_SERV)
1841   {
1842     return tunnel_get_incoming (tid);
1843   }
1844   else
1845   {
1846     GNUNET_assert (tid >= GNUNET_MESH_LOCAL_TUNNEL_ID_CLI);
1847     return GNUNET_CONTAINER_multihashmap32_get (c->own_tunnels, tid);
1848   }
1849 }
1850
1851
1852 /**
1853  * Search for a tunnel by global ID using PEER_ID
1854  *
1855  * @param pi owner of the tunnel
1856  * @param tid global tunnel number
1857  *
1858  * @return tunnel handler, NULL if doesn't exist
1859  */
1860 static struct MeshTunnel *
1861 tunnel_get_by_pi (GNUNET_PEER_Id pi, MESH_TunnelNumber tid)
1862 {
1863   struct MESH_TunnelID id;
1864   struct GNUNET_HashCode hash;
1865
1866   id.oid = pi;
1867   id.tid = tid;
1868
1869   GNUNET_CRYPTO_hash (&id, sizeof (struct MESH_TunnelID), &hash);
1870   return GNUNET_CONTAINER_multihashmap_get (tunnels, &hash);
1871 }
1872
1873
1874 /**
1875  * Search for a tunnel by global ID using full PeerIdentities
1876  *
1877  * @param oid owner of the tunnel
1878  * @param tid global tunnel number
1879  *
1880  * @return tunnel handler, NULL if doesn't exist
1881  */
1882 static struct MeshTunnel *
1883 tunnel_get (const struct GNUNET_PeerIdentity *oid, MESH_TunnelNumber tid)
1884 {
1885   return tunnel_get_by_pi (GNUNET_PEER_search (oid), tid);
1886 }
1887
1888
1889 /**
1890  * Add a client to a tunnel, initializing all needed data structures.
1891  * 
1892  * @param t Tunnel to which add the client.
1893  * @param c Client which to add to the tunnel.
1894  */
1895 static void
1896 tunnel_add_client (struct MeshTunnel *t, struct MeshClient *c)
1897 {
1898   if (NULL != t->client)
1899   {
1900     GNUNET_break(0);
1901     return;
1902   }
1903   if (GNUNET_OK !=
1904       GNUNET_CONTAINER_multihashmap32_put (c->incoming_tunnels,
1905                                            t->local_tid_dest, t,
1906                                            GNUNET_CONTAINER_MULTIHASHMAPOPTION_UNIQUE_FAST))
1907   {
1908     GNUNET_break (0);
1909     return;
1910   }
1911   if (GNUNET_OK !=
1912       GNUNET_CONTAINER_multihashmap32_put (incoming_tunnels,
1913                                            t->local_tid_dest, t,
1914                                            GNUNET_CONTAINER_MULTIHASHMAPOPTION_UNIQUE_FAST))
1915   {
1916     GNUNET_break (0);
1917     return;
1918   }
1919   t->client = c;
1920 }
1921
1922
1923 static void
1924 tunnel_use_path (struct MeshTunnel *t, struct MeshPeerPath *p)
1925 {
1926   unsigned int own_pos;
1927
1928   for (own_pos = 0; own_pos < p->length; own_pos++)
1929   {
1930     if (p->peers[own_pos] == myid)
1931       break;
1932   }
1933   if (own_pos > p->length - 1)
1934   {
1935     GNUNET_break (0);
1936     return;
1937   }
1938
1939   if (own_pos < p->length - 1)
1940     t->next_hop = p->peers[own_pos + 1];
1941   else
1942     t->next_hop = p->peers[own_pos];
1943   GNUNET_PEER_change_rc (t->next_hop, 1);
1944   if (0 < own_pos)
1945     t->prev_hop = p->peers[own_pos - 1];
1946   else
1947     t->prev_hop = p->peers[0];
1948   GNUNET_PEER_change_rc (t->prev_hop, 1);
1949
1950   if (NULL != t->path)
1951     path_destroy (t->path);
1952   t->path = path_duplicate (p);
1953   if (0 == own_pos)
1954   {
1955     if (GNUNET_SCHEDULER_NO_TASK != t->maintenance_task)
1956       GNUNET_SCHEDULER_cancel (t->maintenance_task);
1957     t->maintenance_task = GNUNET_SCHEDULER_add_delayed (refresh_path_time,
1958                                                         &path_refresh, t);
1959   }
1960 }
1961
1962
1963 /**
1964  * Notifies a tunnel that a connection has broken that affects at least
1965  * some of its peers. Sends a notification towards the root of the tree.
1966  * In case the peer is the owner of the tree, notifies the client that owns
1967  * the tunnel and tries to reconnect.
1968  *
1969  * @param t Tunnel affected.
1970  * @param p1 Peer that got disconnected from p2.
1971  * @param p2 Peer that got disconnected from p1.
1972  *
1973  * @return Short ID of the peer disconnected (either p1 or p2).
1974  *         0 if the tunnel remained unaffected.
1975  */
1976 static GNUNET_PEER_Id
1977 tunnel_notify_connection_broken (struct MeshTunnel *t, GNUNET_PEER_Id p1,
1978                                  GNUNET_PEER_Id p2)
1979 {
1980 //   if (myid != p1 && myid != p2) FIXME
1981 //   {
1982 //     return;
1983 //   }
1984 // 
1985 //   if (tree_get_predecessor (t->tree) != 0)
1986 //   {
1987 //     /* We are the peer still connected, notify owner of the disconnection. */
1988 //     struct GNUNET_MESH_PathBroken msg;
1989 //     struct GNUNET_PeerIdentity neighbor;
1990 // 
1991 //     msg.header.size = htons (sizeof (msg));
1992 //     msg.header.type = htons (GNUNET_MESSAGE_TYPE_MESH_PATH_BROKEN);
1993 //     GNUNET_PEER_resolve (t->id.oid, &msg.oid);
1994 //     msg.tid = htonl (t->id.tid);
1995 //     msg.peer1 = my_full_id;
1996 //     GNUNET_PEER_resolve (pid, &msg.peer2);
1997 //     GNUNET_PEER_resolve (tree_get_predecessor (t->tree), &neighbor);
1998 //     send_prebuilt_message (&msg.header, &neighbor, t);
1999 //   }
2000   return 0;
2001 }
2002
2003
2004 /**
2005  * Build a local ACK message and send it to a local client.
2006  * 
2007  * @param t Tunnel on which to send the ACK.
2008  * @param c Client to whom send the ACK.
2009  * @param is_fwd Set to GNUNET_YES for FWD ACK (dest->owner)
2010  */
2011 static void
2012 send_local_ack (struct MeshTunnel *t,
2013                 struct MeshClient *c,
2014                 int is_fwd)
2015 {
2016   struct GNUNET_MESH_LocalAck msg;
2017
2018   msg.header.size = htons (sizeof (msg));
2019   msg.header.type = htons (GNUNET_MESSAGE_TYPE_MESH_LOCAL_ACK);
2020   msg.tunnel_id = htonl (is_fwd ? t->local_tid : t->local_tid_dest);
2021   GNUNET_SERVER_notification_context_unicast (nc,
2022                                               c->handle,
2023                                               &msg.header,
2024                                               GNUNET_NO);
2025 }
2026
2027 /**
2028  * Build an ACK message and queue it to send to the given peer.
2029  * 
2030  * @param t Tunnel on which to send the ACK.
2031  * @param peer Peer to whom send the ACK.
2032  * @param ack Value of the ACK.
2033  */
2034 static void
2035 send_ack (struct MeshTunnel *t, GNUNET_PEER_Id peer,  uint32_t ack)
2036 {
2037   struct GNUNET_MESH_ACK msg;
2038
2039   GNUNET_PEER_resolve (t->id.oid, &msg.oid);
2040   msg.header.size = htons (sizeof (msg));
2041   msg.header.type = htons (GNUNET_MESSAGE_TYPE_MESH_ACK);
2042   msg.pid = htonl (ack);
2043   msg.tid = htonl (t->id.tid);
2044
2045   send_prebuilt_message (&msg.header, peer, t);
2046 }
2047
2048
2049 /**
2050  * Send an end-to-end FWD ACK message for the most recent in-sequence payload.
2051  * 
2052  * @param t Tunnel this is about.
2053  */
2054 static void
2055 tunnel_send_fwd_data_ack (struct MeshTunnel *t)
2056 {
2057   struct GNUNET_MESH_DataACK msg;
2058
2059   msg.header.type = htons (GNUNET_MESSAGE_TYPE_MESH_UNICAST_ACK);
2060   msg.header.size = htons (sizeof (msg));
2061   msg.tid = htonl (t->id.tid);
2062   GNUNET_PEER_resolve (t->id.oid, &msg.oid);
2063   msg.pid = htonl (t->prev_fc.last_pid_recv);
2064   msg.futures = 0; // FIXME set bits of other newer messages received
2065
2066   send_prebuilt_message (&msg.header, t->prev_hop, t);
2067 }
2068
2069
2070 /**
2071  * Send an end-to-end BCK ACK message for the most recent in-sequence payload.
2072  * 
2073  * @param t Tunnel this is about.
2074  */
2075 static void
2076 tunnel_send_bck_data_ack (struct MeshTunnel *t)
2077 {
2078   struct GNUNET_MESH_DataACK msg;
2079
2080   msg.header.type = htons (GNUNET_MESSAGE_TYPE_MESH_TO_ORIG_ACK);
2081   msg.header.size = htons (sizeof (msg));
2082   msg.tid = htonl (t->id.tid);
2083   GNUNET_PEER_resolve (t->id.oid, &msg.oid);
2084   msg.pid = htonl (t->next_fc.last_pid_recv);
2085   msg.futures = 0; // FIXME set bits of other newer messages received
2086
2087   send_prebuilt_message (&msg.header, t->next_hop, t);
2088 }
2089
2090
2091 /**
2092  * Send an ACK informing the predecessor about the available buffer space.
2093  * In case there is no predecessor, inform the owning client.
2094  * If buffering is off, send only on behalf of children or self if endpoint.
2095  * If buffering is on, send when sent to children and buffer space is free.
2096  * Note that although the name is fwd_ack, the FWD mean forward *traffic*,
2097  * the ACK itself goes "back" (towards root).
2098  * 
2099  * @param t Tunnel on which to send the ACK.
2100  * @param type Type of message that triggered the ACK transmission.
2101  */
2102 static void
2103 tunnel_send_fwd_ack (struct MeshTunnel *t, uint16_t type)
2104 {
2105   uint32_t ack;
2106
2107   /* Is it after unicast retransmission? */
2108   switch (type)
2109   {
2110     case GNUNET_MESSAGE_TYPE_MESH_UNICAST:
2111       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
2112                   "ACK due to FWD DATA retransmission\n");
2113       if (GNUNET_YES == t->nobuffer)
2114       {
2115         GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Not sending ACK, nobuffer\n");
2116         return;
2117       }
2118       if (GNUNET_YES == t->reliable && NULL != t->client)
2119         tunnel_send_fwd_data_ack (t);
2120       break;
2121     case GNUNET_MESSAGE_TYPE_MESH_ACK:
2122       if (NULL != t->owner && GNUNET_YES == t->reliable)
2123         return;
2124     case GNUNET_MESSAGE_TYPE_MESH_LOCAL_ACK:
2125       break;
2126     case GNUNET_MESSAGE_TYPE_MESH_UNICAST_ACK:
2127       tunnel_send_fwd_data_ack (t);
2128       break;
2129     case GNUNET_MESSAGE_TYPE_MESH_POLL:
2130     case GNUNET_MESSAGE_TYPE_MESH_PATH_ACK:
2131       t->force_ack = GNUNET_YES;
2132       break;
2133     default:
2134       GNUNET_break (0);
2135   }
2136
2137   /* Check if we need to transmit the ACK */
2138   if (NULL == t->owner && 
2139       t->queue_max > t->next_fc.queue_n * 4 &&
2140       GMC_is_pid_bigger(t->prev_fc.last_ack_sent, t->prev_fc.last_pid_recv) &&
2141       GNUNET_NO == t->force_ack)
2142   {
2143     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Not sending FWD ACK, buffer free\n");
2144     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
2145                 "  t->qmax: %u, t->qn: %u\n",
2146                 t->queue_max, t->next_fc.queue_n);
2147     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
2148                 "  t->pid: %u, t->ack: %u\n",
2149                 t->prev_fc.last_pid_recv, t->prev_fc.last_ack_sent);
2150     return;
2151   }
2152
2153   /* Ok, ACK might be necessary, what PID to ACK? */
2154   ack = t->prev_fc.last_pid_recv + t->queue_max - t->next_fc.queue_n;
2155   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, " FWD ACK %u\n", ack);
2156   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
2157               " last %u, qmax %u, q %u\n",
2158               t->prev_fc.last_pid_recv, t->queue_max, t->next_fc.queue_n);
2159   if (ack == t->prev_fc.last_ack_sent && GNUNET_NO == t->force_ack)
2160   {
2161     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Not sending FWD ACK, not needed\n");
2162     return;
2163   }
2164
2165   t->prev_fc.last_ack_sent = ack;
2166   if (NULL != t->owner)
2167     send_local_ack (t, t->owner, GNUNET_YES);
2168   else if (0 != t->prev_hop)
2169     send_ack (t, t->prev_hop, ack);
2170   else
2171     GNUNET_break (0);
2172   debug_fwd_ack++;
2173   t->force_ack = GNUNET_NO;
2174 }
2175
2176
2177 /**
2178  * Send an ACK informing the children node/client about the available
2179  * buffer space.
2180  * If buffering is off, send only on behalf of root (can be self).
2181  * If buffering is on, send when sent to predecessor and buffer space is free.
2182  * Note that although the name is bck_ack, the BCK mean backwards *traffic*,
2183  * the ACK itself goes "forward" (towards children/clients).
2184  * 
2185  * @param t Tunnel on which to send the ACK.
2186  * @param type Type of message that triggered the ACK transmission.
2187  */
2188 static void
2189 tunnel_send_bck_ack (struct MeshTunnel *t, uint16_t type)
2190 {
2191   uint32_t ack;
2192   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
2193               "Sending BCK ACK on tunnel %u [%u] due to %s\n",
2194               t->id.oid, t->id.tid, GNUNET_MESH_DEBUG_M2S(type));
2195   /* Is it after data to_origin retransmission? */
2196   switch (type)
2197   {
2198     case GNUNET_MESSAGE_TYPE_MESH_TO_ORIGIN:
2199       if (GNUNET_YES == t->nobuffer)
2200       {
2201         GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
2202                     "    Not sending ACK, nobuffer + traffic\n");
2203         return;
2204       }
2205       break;
2206     case GNUNET_MESSAGE_TYPE_MESH_ACK:
2207       if (NULL != t->client && GNUNET_YES == t->reliable)
2208         return;
2209     case GNUNET_MESSAGE_TYPE_MESH_LOCAL_ACK:
2210       break;
2211     case GNUNET_MESSAGE_TYPE_MESH_TO_ORIG_ACK:
2212       tunnel_send_bck_data_ack (t);
2213       /* fall through */
2214     case GNUNET_MESSAGE_TYPE_MESH_PATH_ACK:
2215     case GNUNET_MESSAGE_TYPE_MESH_POLL:
2216       t->force_ack = GNUNET_YES;
2217       break;
2218     default:
2219       GNUNET_break (0);
2220   }
2221
2222   /* TODO: Check if we need to transmit the ACK (as in fwd) */
2223
2224   ack = t->next_fc.last_pid_recv + t->queue_max - t->prev_fc.queue_n;
2225
2226   if (t->next_fc.last_ack_sent == ack && GNUNET_NO == t->force_ack)
2227   {
2228     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
2229                 "    Not sending ACK, not needed, last ack sent was %u\n",
2230                 t->next_fc.last_ack_sent);
2231     return;
2232   }
2233   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
2234               "    Sending BCK ACK %u (last sent: %u)\n",
2235               ack, t->next_fc.last_ack_sent);
2236   t->next_fc.last_ack_sent = ack;
2237
2238   if (NULL != t->client)
2239     send_local_ack (t, t->client, GNUNET_NO);
2240   else if (0 != t->next_hop)
2241     send_ack (t, t->next_hop, ack);
2242   else
2243     GNUNET_break (0);
2244   t->force_ack = GNUNET_NO;
2245 }
2246
2247
2248 /**
2249  * Modify the mesh message TID from global to local and send to client.
2250  * 
2251  * @param t Tunnel on which to send the message.
2252  * @param msg Message to modify and send.
2253  * @param c Client to send to.
2254  * @param tid Tunnel ID to use (c can be both owner and client).
2255  */
2256 static void
2257 tunnel_send_client_data (struct MeshTunnel *t,
2258                          const struct GNUNET_MESH_Data *msg,
2259                          struct MeshClient *c, MESH_TunnelNumber tid)
2260 {
2261   struct GNUNET_MESH_LocalData *copy;
2262   uint16_t size = ntohs (msg->header.size) - sizeof (struct GNUNET_MESH_Data);
2263   char cbuf[size + sizeof (struct GNUNET_MESH_LocalData)];
2264
2265   if (size < sizeof (struct GNUNET_MessageHeader))
2266   {
2267     GNUNET_break_op (0);
2268     return;
2269   }
2270   if (NULL == c)
2271   {
2272     GNUNET_break (0);
2273     return;
2274   }
2275   copy = (struct GNUNET_MESH_LocalData *) cbuf;
2276   memcpy (&copy[1], &msg[1], size);
2277   copy->header.size = htons (sizeof (struct GNUNET_MESH_LocalData) + size);
2278   copy->header.type = htons (GNUNET_MESSAGE_TYPE_MESH_LOCAL_DATA);
2279   copy->tid = htonl (tid);
2280   GNUNET_SERVER_notification_context_unicast (nc, c->handle,
2281                                               &copy->header, GNUNET_NO);
2282 }
2283
2284 /**
2285  * Modify the unicast message TID from global to local and send to client.
2286  * 
2287  * @param t Tunnel on which to send the message.
2288  * @param msg Message to modify and send.
2289  */
2290 static void
2291 tunnel_send_client_ucast (struct MeshTunnel *t,
2292                           const struct GNUNET_MESH_Data *msg)
2293 {
2294   tunnel_send_client_data (t, msg, t->client, t->local_tid_dest);
2295 }
2296
2297
2298 /**
2299  * Modify the to_origin  message TID from global to local and send to client.
2300  * 
2301  * @param t Tunnel on which to send the message.
2302  * @param msg Message to modify and send.
2303  */
2304 static void
2305 tunnel_send_client_to_orig (struct MeshTunnel *t,
2306                             const struct GNUNET_MESH_Data *msg)
2307 {
2308   tunnel_send_client_data (t, msg, t->owner, t->local_tid);
2309 }
2310
2311
2312 /**
2313  * We haven't received an ACK after a certain time: restransmit the message.
2314  *
2315  * @param cls Closure (MeshReliableMessage with the message to restransmit)
2316  * @param tc TaskContext.
2317  */
2318 static void
2319 tunnel_retransmit_message (void *cls,
2320                            const struct GNUNET_SCHEDULER_TaskContext *tc)
2321 {
2322   struct MeshTunnelReliability *rel = cls;
2323   struct MeshReliableMessage *copy;
2324   struct MeshTunnel *t;
2325   struct GNUNET_MESH_Data *payload;
2326   GNUNET_PEER_Id hop;
2327
2328   rel->retry_task = GNUNET_SCHEDULER_NO_TASK;
2329   if (0 != (tc->reason & GNUNET_SCHEDULER_REASON_SHUTDOWN))
2330     return;
2331
2332   t = rel->t;
2333   copy = rel->head_sent;
2334   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "!!! Retransmit \n");
2335   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "!!!  id %u\n", copy->id);
2336
2337   payload = (struct GNUNET_MESH_Data *) &copy[1];
2338   hop = rel == t->fwd_rel ? t->next_hop : t->prev_hop;
2339   send_prebuilt_message (&payload->header, hop, t);
2340   GNUNET_STATISTICS_update (stats, "# data retransmitted", 1, GNUNET_NO);
2341   rel->retry_timer = GNUNET_TIME_STD_BACKOFF (rel->retry_timer); // FIXME adapt
2342   rel->retry_task = GNUNET_SCHEDULER_add_delayed (rel->retry_timer,
2343                                                    &tunnel_retransmit_message,
2344                                                    cls);
2345 }
2346
2347
2348 /**
2349  * @brief Re-initiate traffic to this peer if necessary.
2350  *
2351  * Check if there is traffic queued towards this peer
2352  * and the core transmit handle is NULL (traffic was stalled).
2353  * If so, call core tmt rdy.
2354  *
2355  * @param peer_id Short ID of peer to which initiate traffic.
2356  */
2357 static void
2358 peer_unlock_queue(GNUNET_PEER_Id peer_id)
2359 {
2360   struct MeshPeerInfo *peer;
2361   struct GNUNET_PeerIdentity id;
2362   struct MeshPeerQueue *q;
2363   size_t size;
2364
2365   peer = peer_get_short (peer_id);
2366   if (NULL != peer->core_transmit)
2367     return;
2368
2369   q = queue_get_next (peer);
2370   if (NULL == q)
2371   {
2372     /* Might br multicast traffic already sent to this particular peer but
2373      * not to other children in this tunnel.
2374      * This way t->queue_n would be > 0 but the queue of this particular peer
2375      * would be empty.
2376      */
2377     return;
2378   }
2379   size = q->size;
2380   GNUNET_PEER_resolve (peer->id, &id);
2381   peer->core_transmit =
2382         GNUNET_CORE_notify_transmit_ready(core_handle,
2383                                           0,
2384                                           0,
2385                                           GNUNET_TIME_UNIT_FOREVER_REL,
2386                                           &id,
2387                                           size,
2388                                           &queue_send,
2389                                           peer);
2390         return;
2391 }
2392
2393
2394 /**
2395  * Send a message to all peers and clients in this tunnel that the tunnel
2396  * is no longer valid. If some peer or client should not receive the message,
2397  * should be zero'ed out before calling this function.
2398  *
2399  * @param t The tunnel whose peers and clients to notify.
2400  */
2401 static void
2402 tunnel_send_destroy (struct MeshTunnel *t)
2403 {
2404   struct GNUNET_MESH_TunnelDestroy msg;
2405   struct GNUNET_PeerIdentity id;
2406
2407   msg.header.size = htons (sizeof (msg));
2408   msg.header.type = htons (GNUNET_MESSAGE_TYPE_MESH_TUNNEL_DESTROY);
2409   GNUNET_PEER_resolve (t->id.oid, &msg.oid);
2410   msg.tid = htonl (t->id.tid);
2411   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
2412               "  sending tunnel destroy for tunnel: %s [%X]\n",
2413               GNUNET_i2s (&msg.oid), t->id.tid);
2414
2415   if (NULL == t->client && 0 != t->next_hop)
2416   {
2417     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  child: %u\n", t->next_hop);
2418     GNUNET_PEER_resolve (t->next_hop, &id);
2419     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
2420                 "  sending forward to %s\n",
2421                 GNUNET_i2s (&id));
2422     send_prebuilt_message (&msg.header, t->next_hop, t);
2423   }
2424   if (NULL == t->owner && 0 != t->prev_hop)
2425   {
2426     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  parent: %u\n", t->prev_hop);
2427     GNUNET_PEER_resolve (t->prev_hop, &id);
2428     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
2429                 "  sending back to %s\n",
2430                 GNUNET_i2s (&id));
2431     send_prebuilt_message (&msg.header, t->prev_hop, t);
2432   }
2433   if (NULL != t->owner)
2434   {
2435     send_client_tunnel_destroy (t->owner, t);
2436   }
2437   if (NULL != t->client)
2438   {
2439     send_client_tunnel_destroy (t->client, t);
2440   }
2441 }
2442
2443
2444 /**
2445  * Cancel all transmissions towards a neighbor that belongs to a certain tunnel.
2446  *
2447  * @param t Tunnel which to cancel.
2448  * @param neighbor Short ID of the neighbor to whom cancel the transmissions.
2449  */
2450 static void
2451 peer_cancel_queues (GNUNET_PEER_Id neighbor, struct MeshTunnel *t)
2452 {
2453   struct MeshPeerInfo *peer_info;
2454   struct MeshPeerQueue *pq;
2455   struct MeshPeerQueue *next;
2456
2457   if (0 == neighbor)
2458     return; /* Was local peer, 0'ed in tunnel_destroy_iterator */
2459   peer_info = peer_get_short (neighbor);
2460   for (pq = peer_info->queue_head; NULL != pq; pq = next)
2461   {
2462     next = pq->next;
2463     if (pq->tunnel == t)
2464     {
2465       if (GNUNET_MESSAGE_TYPE_MESH_UNICAST == pq->type ||
2466           GNUNET_MESSAGE_TYPE_MESH_TO_ORIGIN == pq->type)
2467       {
2468         /* Should have been removed on destroy children */
2469         GNUNET_break (0);
2470       }
2471       queue_destroy (pq, GNUNET_YES);
2472     }
2473   }
2474   if (NULL == peer_info->queue_head && NULL != peer_info->core_transmit)
2475   {
2476     GNUNET_CORE_notify_transmit_ready_cancel(peer_info->core_transmit);
2477     peer_info->core_transmit = NULL;
2478   }
2479 }
2480
2481
2482 /**
2483  * Destroy the tunnel.
2484  * 
2485  * This function does not generate any warning traffic to clients or peers.
2486  * 
2487  * Tasks:
2488  * Remove the tunnel from peer_info's and clients' hashmaps.
2489  * Cancel messages belonging to this tunnel queued to neighbors.
2490  * Free any allocated resources linked to the tunnel.
2491  *
2492  * @param t the tunnel to destroy
2493  *
2494  * @return GNUNET_OK on success
2495  */
2496 static int
2497 tunnel_destroy (struct MeshTunnel *t)
2498 {
2499   struct MeshClient *c;
2500   struct GNUNET_HashCode hash;
2501   int r;
2502
2503   if (NULL == t)
2504     return GNUNET_OK;
2505
2506   r = GNUNET_OK;
2507   c = t->owner;
2508 #if MESH_DEBUG
2509   {
2510     struct GNUNET_PeerIdentity id;
2511
2512     GNUNET_PEER_resolve (t->id.oid, &id);
2513     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "destroying tunnel %s [%x]\n",
2514                 GNUNET_i2s (&id), t->id.tid);
2515     if (NULL != c)
2516       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  by client %u\n", c->id);
2517   }
2518 #endif
2519
2520   GNUNET_CRYPTO_hash (&t->id, sizeof (struct MESH_TunnelID), &hash);
2521   if (GNUNET_YES != GNUNET_CONTAINER_multihashmap_remove (tunnels, &hash, t))
2522   {
2523     GNUNET_break (0);
2524     r = GNUNET_SYSERR;
2525   }
2526
2527   if (NULL != c)
2528   {
2529     if (GNUNET_YES !=
2530       GNUNET_CONTAINER_multihashmap32_remove (c->own_tunnels, t->local_tid, t))
2531     {
2532       GNUNET_break (0);
2533       r = GNUNET_SYSERR;
2534     }
2535   }
2536
2537   if (NULL != t->client)
2538   {
2539     c = t->client;
2540     if (GNUNET_YES !=
2541         GNUNET_CONTAINER_multihashmap32_remove (c->incoming_tunnels,
2542                                                 t->local_tid_dest, t))
2543     {
2544       GNUNET_break (0);
2545       r = GNUNET_SYSERR;
2546     }
2547     if (GNUNET_YES != 
2548         GNUNET_CONTAINER_multihashmap32_remove (incoming_tunnels,
2549                                                 t->local_tid_dest, t))
2550     {
2551       GNUNET_break (0);
2552       r = GNUNET_SYSERR;
2553     }
2554   }
2555
2556   if (0 != t->prev_hop)
2557   {
2558     peer_cancel_queues (t->prev_hop, t);
2559     GNUNET_PEER_change_rc (t->prev_hop, -1);
2560   }
2561   if (0 != t->next_hop)
2562   {
2563     peer_cancel_queues (t->next_hop, t);
2564     GNUNET_PEER_change_rc (t->next_hop, -1);
2565   }
2566   if (0 != t->dest) {
2567       peer_info_remove_tunnel (peer_get_short (t->dest), t);
2568   }
2569
2570   if (GNUNET_SCHEDULER_NO_TASK != t->maintenance_task)
2571     GNUNET_SCHEDULER_cancel (t->maintenance_task);
2572
2573   n_tunnels--;
2574   GNUNET_STATISTICS_update (stats, "# tunnels", -1, GNUNET_NO);
2575   path_destroy (t->path);
2576   GNUNET_free (t);
2577   return r;
2578 }
2579
2580 /**
2581  * Tunnel is empty: destroy it.
2582  * 
2583  * Notifies all participants (peers, cleints) about the destruction.
2584  * 
2585  * @param t Tunnel to destroy. 
2586  */
2587 static void
2588 tunnel_destroy_empty (struct MeshTunnel *t)
2589 {
2590   #if MESH_DEBUG
2591   {
2592     struct GNUNET_PeerIdentity id;
2593
2594     GNUNET_PEER_resolve (t->id.oid, &id);
2595     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
2596                 "executing destruction of empty tunnel %s [%X]\n",
2597                 GNUNET_i2s (&id), t->id.tid);
2598   }
2599   #endif
2600
2601   if (GNUNET_NO == t->destroy)
2602     tunnel_send_destroy (t);
2603   if (0 == t->pending_messages)
2604     tunnel_destroy (t);
2605   else
2606     t->destroy = GNUNET_YES;
2607 }
2608
2609 /**
2610  * Initialize a Flow Control structure to the initial state.
2611  * 
2612  * @param fc Flow Control structure to initialize.
2613  */
2614 static void
2615 fc_init (struct MeshFlowControl *fc)
2616 {
2617   fc->last_pid_sent = (uint32_t) -1; /* Next (expected) = 0 */
2618   fc->last_pid_recv = (uint32_t) -1;
2619   fc->last_ack_sent = (uint32_t) -1; /* No traffic allowed yet */
2620   fc->last_ack_recv = (uint32_t) -1;
2621   fc->poll_task = GNUNET_SCHEDULER_NO_TASK;
2622   fc->poll_time = GNUNET_TIME_UNIT_SECONDS;
2623   fc->queue_n = 0;
2624 }
2625
2626 /**
2627  * Create a new tunnel
2628  * 
2629  * @param owner Who is the owner of the tunnel (short ID).
2630  * @param tid Tunnel Number of the tunnel.
2631  * @param client Clients that owns the tunnel, NULL for foreign tunnels.
2632  * @param local Tunnel Number for the tunnel, for the client point of view.
2633  * 
2634  * @return A new initialized tunnel. NULL on error.
2635  */
2636 static struct MeshTunnel *
2637 tunnel_new (GNUNET_PEER_Id owner,
2638             MESH_TunnelNumber tid,
2639             struct MeshClient *client,
2640             MESH_TunnelNumber local)
2641 {
2642   struct MeshTunnel *t;
2643   struct GNUNET_HashCode hash;
2644
2645   if (n_tunnels >= max_tunnels && NULL == client)
2646     return NULL;
2647
2648   t = GNUNET_malloc (sizeof (struct MeshTunnel));
2649   t->id.oid = owner;
2650   t->id.tid = tid;
2651   t->queue_max = (max_msgs_queue / max_tunnels) + 1;
2652   t->owner = client;
2653   fc_init (&t->next_fc);
2654   fc_init (&t->prev_fc);
2655   t->local_tid = local;
2656   n_tunnels++;
2657   GNUNET_STATISTICS_update (stats, "# tunnels", 1, GNUNET_NO);
2658
2659   GNUNET_CRYPTO_hash (&t->id, sizeof (struct MESH_TunnelID), &hash);
2660   if (GNUNET_OK !=
2661       GNUNET_CONTAINER_multihashmap_put (tunnels, &hash, t,
2662                                          GNUNET_CONTAINER_MULTIHASHMAPOPTION_UNIQUE_ONLY))
2663   {
2664     GNUNET_break (0);
2665     tunnel_destroy (t);
2666     if (NULL != client)
2667     {
2668       GNUNET_break (0);
2669       GNUNET_SERVER_receive_done (client->handle, GNUNET_SYSERR);
2670     }
2671     return NULL;
2672   }
2673
2674   if (NULL != client)
2675   {
2676     if (GNUNET_OK !=
2677         GNUNET_CONTAINER_multihashmap32_put (client->own_tunnels,
2678                                              t->local_tid, t,
2679                                              GNUNET_CONTAINER_MULTIHASHMAPOPTION_UNIQUE_ONLY))
2680     {
2681       tunnel_destroy (t);
2682       GNUNET_break (0);
2683       GNUNET_SERVER_receive_done (client->handle, GNUNET_SYSERR);
2684       return NULL;
2685     }
2686   }
2687
2688   return t;
2689 }
2690
2691
2692 /**
2693  * Set options in a tunnel, extracted from a bit flag field
2694  * 
2695  * @param t Tunnel to set options to.
2696  * @param options Bit array in host byte order.
2697  */
2698 static void
2699 tunnel_set_options (struct MeshTunnel *t, uint32_t options)
2700 {
2701   t->nobuffer = (options & GNUNET_MESH_OPTION_NOBUFFER) != 0 ?
2702                  GNUNET_YES : GNUNET_NO;
2703   t->reliable = (options & GNUNET_MESH_OPTION_RELIABLE) != 0 ?
2704                  GNUNET_YES : GNUNET_NO;
2705 }
2706
2707
2708 /**
2709  * Iterator for deleting each tunnel whose client endpoint disconnected.
2710  *
2711  * @param cls Closure (client that has disconnected).
2712  * @param key The local tunnel id (used to access the hashmap).
2713  * @param value The value stored at the key (tunnel to destroy).
2714  *
2715  * @return GNUNET_OK, keep iterating.
2716  */
2717 static int
2718 tunnel_destroy_iterator (void *cls,
2719                          uint32_t key,
2720                          void *value)
2721 {
2722   struct MeshTunnel *t = value;
2723   struct MeshClient *c = cls;
2724
2725   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
2726               " Tunnel %X / %X destroy, due to client %u shutdown.\n",
2727               t->local_tid, t->local_tid_dest, c->id);
2728   client_delete_tunnel (c, t);
2729   if (c == t->client)
2730   {
2731     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, " Client %u is destination.\n", c->id);
2732     t->client = NULL;
2733     if (0 != t->next_hop) { /* destroy could come before a path is used */
2734         GNUNET_PEER_change_rc (t->next_hop, -1);
2735         t->next_hop = 0;
2736     }
2737   }
2738   if (c == t->owner)
2739   {
2740     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, " Client %u is owner.\n", c->id);
2741     t->owner = NULL;
2742     if (0 != t->prev_hop) { /* destroy could come before a path is used */
2743         GNUNET_PEER_change_rc (t->prev_hop, -1);
2744         t->prev_hop = 0;
2745     }
2746   }
2747
2748   tunnel_destroy_empty (t);
2749
2750   return GNUNET_OK;
2751 }
2752
2753
2754 /**
2755  * Timeout function, destroys tunnel if called
2756  *
2757  * @param cls Closure (tunnel to destroy).
2758  * @param tc TaskContext
2759  */
2760 static void
2761 tunnel_timeout (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
2762 {
2763   struct MeshTunnel *t = cls;
2764   struct GNUNET_PeerIdentity id;
2765
2766   t->maintenance_task = GNUNET_SCHEDULER_NO_TASK;
2767   if (0 != (tc->reason & GNUNET_SCHEDULER_REASON_SHUTDOWN))
2768     return;
2769   GNUNET_PEER_resolve(t->id.oid, &id);
2770   GNUNET_log (GNUNET_ERROR_TYPE_INFO,
2771               "Tunnel %s [%X] timed out. Destroying.\n",
2772               GNUNET_i2s(&id), t->id.tid);
2773   if (NULL != t->client)
2774     send_client_tunnel_destroy (t->client, t);
2775   tunnel_destroy (t); /* Do not notify other */
2776 }
2777
2778
2779 /**
2780  * Resets the tunnel timeout. Starts it if no timeout was running.
2781  *
2782  * @param t Tunnel whose timeout to reset.
2783  *
2784  * TODO use heap to improve efficiency of scheduler.
2785  */
2786 static void
2787 tunnel_reset_timeout (struct MeshTunnel *t)
2788 {
2789   if (NULL != t->owner || 0 != t->local_tid || 0 == t->prev_hop)
2790     return;
2791   if (GNUNET_SCHEDULER_NO_TASK != t->maintenance_task)
2792     GNUNET_SCHEDULER_cancel (t->maintenance_task);
2793   t->maintenance_task =
2794       GNUNET_SCHEDULER_add_delayed (GNUNET_TIME_relative_multiply
2795                                     (refresh_path_time, 4), &tunnel_timeout, t);
2796 }
2797
2798
2799 /******************************************************************************/
2800 /****************      MESH NETWORK HANDLER HELPERS     ***********************/
2801 /******************************************************************************/
2802
2803 /**
2804  * Function to send a create path packet to a peer.
2805  *
2806  * @param cls closure
2807  * @param size number of bytes available in buf
2808  * @param buf where the callee should write the message
2809  * @return number of bytes written to buf
2810  */
2811 static size_t
2812 send_core_path_create (void *cls, size_t size, void *buf)
2813 {
2814   struct MeshTunnel *t = cls;
2815   struct GNUNET_MESH_CreateTunnel *msg;
2816   struct GNUNET_PeerIdentity *peer_ptr;
2817   struct MeshPeerPath *p = t->path;
2818   size_t size_needed;
2819   uint32_t opt;
2820   int i;
2821
2822   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "CREATE PATH sending...\n");
2823   size_needed =
2824       sizeof (struct GNUNET_MESH_CreateTunnel) +
2825       p->length * sizeof (struct GNUNET_PeerIdentity);
2826
2827   if (size < size_needed || NULL == buf)
2828   {
2829     GNUNET_break (0);
2830     return 0;
2831   }
2832   msg = (struct GNUNET_MESH_CreateTunnel *) buf;
2833   msg->header.size = htons (size_needed);
2834   msg->header.type = htons (GNUNET_MESSAGE_TYPE_MESH_PATH_CREATE);
2835   msg->tid = ntohl (t->id.tid);
2836
2837   opt = 0;
2838   if (GNUNET_YES == t->nobuffer)
2839     opt |= GNUNET_MESH_OPTION_NOBUFFER;
2840   if (GNUNET_YES == t->reliable)
2841     opt |= GNUNET_MESH_OPTION_RELIABLE;
2842   msg->opt = htonl (opt);
2843   msg->port = htonl (t->port);
2844
2845   peer_ptr = (struct GNUNET_PeerIdentity *) &msg[1];
2846   for (i = 0; i < p->length; i++)
2847   {
2848     GNUNET_PEER_resolve (p->peers[i], peer_ptr++);
2849   }
2850
2851   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
2852               "CREATE PATH (%u bytes long) sent!\n", size_needed);
2853   return size_needed;
2854 }
2855
2856
2857 /**
2858  * Creates a path ack message in buf and frees all unused resources.
2859  *
2860  * @param cls closure (MeshTransmissionDescriptor)
2861  * @param size number of bytes available in buf
2862  * @param buf where the callee should write the message
2863  * @return number of bytes written to buf
2864  */
2865 static size_t
2866 send_core_path_ack (void *cls, size_t size, void *buf)
2867 {
2868   struct MeshTunnel *t = cls;
2869   struct GNUNET_MESH_PathACK *msg = buf;
2870
2871   GNUNET_assert (NULL != t);
2872   if (sizeof (struct GNUNET_MESH_PathACK) > size)
2873   {
2874     GNUNET_break (0);
2875     return 0;
2876   }
2877   t->prev_fc.last_ack_sent = t->nobuffer ? 0 : t->queue_max - 1;
2878   msg->header.size = htons (sizeof (struct GNUNET_MESH_PathACK));
2879   msg->header.type = htons (GNUNET_MESSAGE_TYPE_MESH_PATH_ACK);
2880   GNUNET_PEER_resolve (t->id.oid, &msg->oid);
2881   msg->tid = htonl (t->id.tid);
2882   msg->peer_id = my_full_id;
2883   msg->ack = htonl (t->prev_fc.last_ack_sent);
2884
2885   /* TODO add signature */
2886
2887   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "PATH ACK sent!\n");
2888   return sizeof (struct GNUNET_MESH_PathACK);
2889 }
2890
2891
2892 /**
2893  * Free a transmission that was already queued with all resources
2894  * associated to the request.
2895  *
2896  * @param queue Queue handler to cancel.
2897  * @param clear_cls Is it necessary to free associated cls?
2898  */
2899 static void
2900 queue_destroy (struct MeshPeerQueue *queue, int clear_cls)
2901 {
2902   struct MeshFlowControl *fc;
2903
2904   if (GNUNET_YES == clear_cls)
2905   {
2906     switch (queue->type)
2907     {
2908       case GNUNET_MESSAGE_TYPE_MESH_TUNNEL_DESTROY:
2909         GNUNET_log (GNUNET_ERROR_TYPE_INFO, "   cancelling TUNNEL_DESTROY\n");
2910         GNUNET_break (GNUNET_YES == queue->tunnel->destroy);
2911         /* fall through */
2912       case GNUNET_MESSAGE_TYPE_MESH_UNICAST:
2913       case GNUNET_MESSAGE_TYPE_MESH_TO_ORIGIN:
2914       case GNUNET_MESSAGE_TYPE_MESH_ACK:
2915       case GNUNET_MESSAGE_TYPE_MESH_POLL:
2916       case GNUNET_MESSAGE_TYPE_MESH_PATH_KEEPALIVE:
2917         GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
2918                     "   prebuilt message\n");
2919         GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
2920                     "   type %s\n",
2921                     GNUNET_MESH_DEBUG_M2S (queue->type));
2922         break;
2923       case GNUNET_MESSAGE_TYPE_MESH_PATH_CREATE:
2924         GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "   type create path\n");
2925         break;
2926       default:
2927         GNUNET_break (0);
2928         GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
2929                     "   type %s unknown!\n",
2930                     GNUNET_MESH_DEBUG_M2S (queue->type));
2931     }
2932     GNUNET_free_non_null (queue->cls);
2933   }
2934   GNUNET_CONTAINER_DLL_remove (queue->peer->queue_head,
2935                                queue->peer->queue_tail,
2936                                queue);
2937
2938   /* Delete from appropriate fc in the tunnel */
2939   if (GNUNET_MESSAGE_TYPE_MESH_UNICAST == queue->type ||
2940       GNUNET_MESSAGE_TYPE_MESH_TO_ORIGIN == queue->type )
2941   {
2942     if (queue->peer->id == queue->tunnel->prev_hop)
2943       fc = &queue->tunnel->prev_fc;
2944     else if (queue->peer->id == queue->tunnel->next_hop)
2945       fc = &queue->tunnel->next_fc;
2946     else
2947     {
2948       GNUNET_break (0);
2949       GNUNET_free (queue);
2950       return;
2951     }
2952     fc->queue_n--;
2953   }
2954   GNUNET_free (queue);
2955 }
2956
2957
2958 /**
2959  * @brief Get the next transmittable message from the queue.
2960  *
2961  * This will be the head, except in the case of being a data packet
2962  * not allowed by the destination peer.
2963  *
2964  * @param peer Destination peer.
2965  *
2966  * @return The next viable MeshPeerQueue element to send to that peer.
2967  *         NULL when there are no transmittable messages.
2968  */
2969 struct MeshPeerQueue *
2970 queue_get_next (const struct MeshPeerInfo *peer)
2971 {
2972   struct MeshPeerQueue *q;
2973
2974   struct GNUNET_MESH_Data *dmsg;
2975   struct MeshTunnel* t;
2976   uint32_t pid;
2977   uint32_t ack;
2978
2979   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "*   selecting message\n");
2980   for (q = peer->queue_head; NULL != q; q = q->next)
2981   {
2982     t = q->tunnel;
2983     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
2984                 "*     %s\n",
2985                 GNUNET_MESH_DEBUG_M2S (q->type));
2986     dmsg = (struct GNUNET_MESH_Data *) q->cls;
2987     pid = ntohl (dmsg->pid);
2988     switch (q->type)
2989     {
2990       case GNUNET_MESSAGE_TYPE_MESH_UNICAST:
2991         ack = t->next_fc.last_ack_recv;
2992         break;
2993       case GNUNET_MESSAGE_TYPE_MESH_TO_ORIGIN:
2994         ack = t->prev_fc.last_ack_recv;
2995         break;
2996       default:
2997         GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
2998                     "*   OK!\n");
2999         return q;
3000     }
3001     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
3002                 "*     ACK: %u, PID: %u\n",
3003                 ack, pid);
3004     if (GNUNET_NO == GMC_is_pid_bigger (pid, ack))
3005     {
3006       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
3007                   "*   OK!\n");
3008       return q;
3009     }
3010     else
3011     {
3012       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
3013                   "*     NEXT!\n");
3014     }
3015   }
3016   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
3017                 "*   nothing found\n");
3018   return NULL;
3019 }
3020
3021
3022 static size_t
3023 queue_send (void *cls, size_t size, void *buf)
3024 {
3025   struct MeshPeerInfo *peer = cls;
3026   struct GNUNET_MessageHeader *msg;
3027   struct MeshPeerQueue *queue;
3028   struct MeshTunnel *t;
3029   struct GNUNET_PeerIdentity dst_id;
3030   struct MeshFlowControl *fc;
3031   size_t data_size;
3032   uint32_t pid;
3033   uint16_t type;
3034
3035   peer->core_transmit = NULL;
3036
3037   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "* Queue send\n");
3038   queue = queue_get_next (peer);
3039
3040   /* Queue has no internal mesh traffic nor sendable payload */
3041   if (NULL == queue)
3042   {
3043     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "*   not ready, return\n");
3044     if (NULL == peer->queue_head)
3045       GNUNET_break (0); /* Core tmt_rdy should've been canceled */
3046     return 0;
3047   }
3048   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "*   not empty\n");
3049
3050   GNUNET_PEER_resolve (peer->id, &dst_id);
3051   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
3052               "*   towards %s\n",
3053               GNUNET_i2s (&dst_id));
3054   /* Check if buffer size is enough for the message */
3055   if (queue->size > size)
3056   {
3057       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
3058                   "*   not enough room, reissue\n");
3059       peer->core_transmit =
3060           GNUNET_CORE_notify_transmit_ready (core_handle,
3061                                              GNUNET_NO,
3062                                              0,
3063                                              GNUNET_TIME_UNIT_FOREVER_REL,
3064                                              &dst_id,
3065                                              queue->size,
3066                                              &queue_send,
3067                                              peer);
3068       return 0;
3069   }
3070   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "*   size ok\n");
3071
3072   t = queue->tunnel;
3073   GNUNET_assert (0 < t->pending_messages);
3074   t->pending_messages--;
3075   type = 0;
3076
3077   /* Fill buf */
3078   switch (queue->type)
3079   {
3080     case 0:
3081     case GNUNET_MESSAGE_TYPE_MESH_ACK:
3082     case GNUNET_MESSAGE_TYPE_MESH_UNICAST_ACK:
3083     case GNUNET_MESSAGE_TYPE_MESH_TO_ORIG_ACK:
3084     case GNUNET_MESSAGE_TYPE_MESH_POLL:
3085     case GNUNET_MESSAGE_TYPE_MESH_PATH_BROKEN:
3086     case GNUNET_MESSAGE_TYPE_MESH_PATH_DESTROY:
3087     case GNUNET_MESSAGE_TYPE_MESH_TUNNEL_DESTROY:
3088     case GNUNET_MESSAGE_TYPE_MESH_PATH_KEEPALIVE:
3089       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
3090                   "*   raw: %s\n",
3091                   GNUNET_MESH_DEBUG_M2S (queue->type));
3092       /* Fall through */
3093     case GNUNET_MESSAGE_TYPE_MESH_UNICAST:
3094     case GNUNET_MESSAGE_TYPE_MESH_TO_ORIGIN:
3095       data_size = send_core_data_raw (queue->cls, size, buf);
3096       msg = (struct GNUNET_MessageHeader *) buf;
3097       type = ntohs (msg->type);
3098       break;
3099     case GNUNET_MESSAGE_TYPE_MESH_PATH_CREATE:
3100       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "*   path create\n");
3101       data_size = send_core_path_create (queue->cls, size, buf);
3102       break;
3103     case GNUNET_MESSAGE_TYPE_MESH_PATH_ACK:
3104       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "*   path ack\n");
3105       data_size = send_core_path_ack (queue->cls, size, buf);
3106       break;
3107     default:
3108       GNUNET_break (0);
3109       GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
3110                   "*   type unknown: %u\n",
3111                   queue->type);
3112       data_size = 0;
3113   }
3114
3115   if (0 < drop_percent &&
3116       GNUNET_CRYPTO_random_u32(GNUNET_CRYPTO_QUALITY_WEAK, 101) < drop_percent)
3117   {
3118     GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
3119                 "Dropping message of type %s\n",
3120                 GNUNET_MESH_DEBUG_M2S(queue->type));
3121     data_size = 0;
3122   }
3123   /* Free queue, but cls was freed by send_core_* */
3124   queue_destroy (queue, GNUNET_NO);
3125
3126   /* Send ACK if needed, after accounting for sent ID in fc->queue_n */
3127   pid = ((struct GNUNET_MESH_Data *) buf)->pid;
3128   pid = ntohl (pid);
3129   switch (type)
3130   {
3131     case GNUNET_MESSAGE_TYPE_MESH_UNICAST:
3132       if (GMC_is_pid_bigger(pid, t->next_fc.last_pid_sent))
3133         t->next_fc.last_pid_sent = pid;
3134       tunnel_send_fwd_ack (t, GNUNET_MESSAGE_TYPE_MESH_UNICAST);
3135       break;
3136     case GNUNET_MESSAGE_TYPE_MESH_TO_ORIGIN:
3137       if (GMC_is_pid_bigger(pid, t->prev_fc.last_pid_sent))
3138         t->prev_fc.last_pid_sent = pid;
3139       tunnel_send_bck_ack (t, GNUNET_MESSAGE_TYPE_MESH_TO_ORIGIN);
3140       break;
3141     default:
3142       break;
3143   }
3144
3145   if (GNUNET_YES == t->destroy && 0 == t->pending_messages)
3146   {
3147     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "*  destroying tunnel!\n");
3148     tunnel_destroy (t);
3149   }
3150
3151   /* If more data in queue, send next */
3152   queue = queue_get_next (peer);
3153   if (NULL != queue)
3154   {
3155       struct GNUNET_PeerIdentity id;
3156
3157       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "*   more data!\n");
3158       GNUNET_PEER_resolve (peer->id, &id);
3159       peer->core_transmit =
3160           GNUNET_CORE_notify_transmit_ready(core_handle,
3161                                             0,
3162                                             0,
3163                                             GNUNET_TIME_UNIT_FOREVER_REL,
3164                                             &id,
3165                                             queue->size,
3166                                             &queue_send,
3167                                             peer);
3168   }
3169   else if (NULL != peer->queue_head)
3170   {
3171     GNUNET_log (GNUNET_ERROR_TYPE_INFO,
3172                 "*   %s stalled\n",
3173                 GNUNET_i2s (&my_full_id));
3174     if (peer->id == t->next_hop)
3175       fc = &t->next_fc;
3176     else if (peer->id == t->prev_hop)
3177       fc = &t->prev_fc;
3178     else
3179     {
3180       GNUNET_break (0);
3181       fc = NULL;
3182     }
3183     if (NULL != fc && GNUNET_SCHEDULER_NO_TASK == fc->poll_task)
3184     {
3185       fc->t = t;
3186       fc->poll_task = GNUNET_SCHEDULER_add_delayed (fc->poll_time,
3187                                                     &tunnel_poll, fc);
3188     }
3189   }
3190   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "*  Return %d\n", data_size);
3191   return data_size;
3192 }
3193
3194
3195 /**
3196  * @brief Queue and pass message to core when possible.
3197  * 
3198  * If type is payload (UNICAST, TO_ORIGIN) checks for queue status and
3199  * accounts for it. In case the queue is full, the message is dropped and
3200  * a break issued.
3201  * 
3202  * Otherwise, message is treated as internal and allowed to go regardless of 
3203  * queue status.
3204  *
3205  * @param cls Closure (@c type dependant). It will be used by queue_send to
3206  *            build the message to be sent if not already prebuilt.
3207  * @param type Type of the message, 0 for a raw message.
3208  * @param size Size of the message.
3209  * @param dst Neighbor to send message to.
3210  * @param t Tunnel this message belongs to.
3211  */
3212 static void
3213 queue_add (void *cls, uint16_t type, size_t size,
3214            struct MeshPeerInfo *dst, struct MeshTunnel *t)
3215 {
3216   struct MeshPeerQueue *queue;
3217   struct GNUNET_PeerIdentity id;
3218   struct MeshFlowControl *fc;
3219   uint32_t pid;
3220   uint32_t pid_q;
3221   int priority;
3222
3223   fc = NULL;
3224   priority = GNUNET_NO;
3225   if (GNUNET_MESSAGE_TYPE_MESH_UNICAST == type)
3226   {
3227     fc = &t->next_fc;
3228     pid = ntohl (((struct GNUNET_MESH_Data *)cls)->pid);
3229   }
3230   else if (GNUNET_MESSAGE_TYPE_MESH_TO_ORIGIN == type)
3231   {
3232     fc = &t->prev_fc;
3233     pid = ntohl (((struct GNUNET_MESH_Data *)cls)->pid);
3234   }
3235   if (NULL != fc)
3236   {
3237     if (fc->queue_n >= t->queue_max)
3238     {
3239       GNUNET_break (0);
3240       GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
3241                   "queue full: %u/%u\n",
3242                   fc->queue_n, t->queue_max);
3243       GNUNET_STATISTICS_update (stats,
3244                                 "# messages dropped (buffer full)",
3245                                 1, GNUNET_NO);
3246       /* Get the PID of the oldest message in the queue */
3247       for (queue = dst->queue_head; queue != NULL; queue = queue->next)
3248         if (queue->type == type && queue->tunnel == t)
3249         {
3250           pid_q = ntohl (((struct GNUNET_MESH_Data *)(queue->cls))->pid);
3251           GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
3252                       "pid: %u, pid_q: %u\n", pid, pid_q);
3253           break;
3254         }
3255       GNUNET_assert (NULL != queue);
3256
3257       /* If this is an earlier message that that, give it priority:
3258        * - drop the newest message in the queue
3259        * - instert current one at the end of the queue (first to get out)
3260        */
3261       if (GNUNET_YES == t->reliable && GMC_is_pid_bigger(pid_q, pid))
3262       {
3263         for (queue = dst->queue_tail; queue != NULL; queue = queue->prev)
3264           if (queue->type == type && queue->tunnel == t)
3265           {
3266             /* Drop message from queue */
3267             pid_q = ntohl (((struct GNUNET_MESH_Data *)(queue->cls))->pid);
3268             GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
3269                         "dropping pid: %u\n", pid_q);
3270             queue_destroy (queue, GNUNET_YES);
3271             t->pending_messages--;
3272             priority = GNUNET_YES;
3273             break;
3274           }
3275       }
3276       else
3277         return; /* Drop this message */
3278     }
3279     fc->queue_n++;
3280   }
3281   queue = GNUNET_malloc (sizeof (struct MeshPeerQueue));
3282   queue->cls = cls;
3283   queue->type = type;
3284   queue->size = size;
3285   queue->peer = dst;
3286   queue->tunnel = t;
3287   if (GNUNET_YES == priority)
3288     GNUNET_CONTAINER_DLL_insert (dst->queue_head, dst->queue_tail, queue);
3289   else
3290     GNUNET_CONTAINER_DLL_insert_tail (dst->queue_head, dst->queue_tail, queue);
3291   if (NULL == dst->core_transmit)
3292   {
3293     GNUNET_PEER_resolve (dst->id, &id);
3294     dst->core_transmit =
3295         GNUNET_CORE_notify_transmit_ready (core_handle,
3296                                            0,
3297                                            0,
3298                                            GNUNET_TIME_UNIT_FOREVER_REL,
3299                                            &id,
3300                                            size,
3301                                            &queue_send,
3302                                            dst);
3303   }
3304   t->pending_messages++;
3305 }
3306
3307
3308 /******************************************************************************/
3309 /********************      MESH NETWORK HANDLERS     **************************/
3310 /******************************************************************************/
3311
3312
3313 /**
3314  * Core handler for path creation
3315  *
3316  * @param cls closure
3317  * @param message message
3318  * @param peer peer identity this notification is about
3319  *
3320  * @return GNUNET_OK to keep the connection open,
3321  *         GNUNET_SYSERR to close it (signal serious error)
3322  */
3323 static int
3324 handle_mesh_path_create (void *cls, const struct GNUNET_PeerIdentity *peer,
3325                          const struct GNUNET_MessageHeader *message)
3326 {
3327   unsigned int own_pos;
3328   uint16_t size;
3329   uint16_t i;
3330   MESH_TunnelNumber tid;
3331   struct GNUNET_MESH_CreateTunnel *msg;
3332   struct GNUNET_PeerIdentity *pi;
3333   struct MeshPeerPath *path;
3334   struct MeshPeerInfo *dest_peer_info;
3335   struct MeshPeerInfo *orig_peer_info;
3336   struct MeshTunnel *t;
3337
3338   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
3339               "Received a path create msg [%s]\n",
3340               GNUNET_i2s (&my_full_id));
3341   size = ntohs (message->size);
3342   if (size < sizeof (struct GNUNET_MESH_CreateTunnel))
3343   {
3344     GNUNET_break_op (0);
3345     return GNUNET_OK;
3346   }
3347
3348   size -= sizeof (struct GNUNET_MESH_CreateTunnel);
3349   if (size % sizeof (struct GNUNET_PeerIdentity))
3350   {
3351     GNUNET_break_op (0);
3352     return GNUNET_OK;
3353   }
3354   size /= sizeof (struct GNUNET_PeerIdentity);
3355   if (size < 1)
3356   {
3357     GNUNET_break_op (0);
3358     return GNUNET_OK;
3359   }
3360   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "    path has %u hops.\n", size);
3361   msg = (struct GNUNET_MESH_CreateTunnel *) message;
3362
3363   tid = ntohl (msg->tid);
3364   pi = (struct GNUNET_PeerIdentity *) &msg[1];
3365   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
3366               "    path is for tunnel %s[%X].\n", GNUNET_i2s (pi), tid);
3367   t = tunnel_get (pi, tid);
3368   if (NULL == t) /* might be a local tunnel */
3369   {
3370     uint32_t opt;
3371
3372     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  Creating tunnel\n");
3373     t = tunnel_new (GNUNET_PEER_intern (pi), tid, NULL, 0);
3374     if (NULL == t)
3375     {
3376       GNUNET_break (0);
3377       return GNUNET_OK;
3378     }
3379     t->port = ntohl (msg->port);
3380     opt = ntohl (msg->opt);
3381     if (0 != (opt & GNUNET_MESH_OPTION_NOBUFFER))
3382     {
3383       t->nobuffer = GNUNET_YES;
3384       t->queue_max = 1;
3385     }
3386     if (0 != (opt & GNUNET_MESH_OPTION_RELIABLE))
3387     {
3388       t->reliable = GNUNET_YES;
3389     }
3390     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  nobuffer:%d\n", t->nobuffer);
3391
3392     tunnel_reset_timeout (t);
3393   }
3394   t->state = MESH_TUNNEL_WAITING;
3395   dest_peer_info =
3396       GNUNET_CONTAINER_multihashmap_get (peers, &pi[size - 1].hashPubKey);
3397   if (NULL == dest_peer_info)
3398   {
3399     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
3400                 "  Creating PeerInfo for destination.\n");
3401     dest_peer_info = GNUNET_malloc (sizeof (struct MeshPeerInfo));
3402     dest_peer_info->id = GNUNET_PEER_intern (&pi[size - 1]);
3403     GNUNET_CONTAINER_multihashmap_put (peers, &pi[size - 1].hashPubKey,
3404                                        dest_peer_info,
3405                                        GNUNET_CONTAINER_MULTIHASHMAPOPTION_UNIQUE_ONLY);
3406   }
3407   orig_peer_info = GNUNET_CONTAINER_multihashmap_get (peers, &pi->hashPubKey);
3408   if (NULL == orig_peer_info)
3409   {
3410     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
3411                 "  Creating PeerInfo for origin.\n");
3412     orig_peer_info = GNUNET_malloc (sizeof (struct MeshPeerInfo));
3413     orig_peer_info->id = GNUNET_PEER_intern (pi);
3414     GNUNET_CONTAINER_multihashmap_put (peers, &pi->hashPubKey, orig_peer_info,
3415                                        GNUNET_CONTAINER_MULTIHASHMAPOPTION_UNIQUE_ONLY);
3416   }
3417   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  Creating path...\n");
3418   path = path_new (size);
3419   own_pos = 0;
3420   for (i = 0; i < size; i++)
3421   {
3422     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  ... adding %s\n",
3423                 GNUNET_i2s (&pi[i]));
3424     path->peers[i] = GNUNET_PEER_intern (&pi[i]);
3425     if (path->peers[i] == myid)
3426       own_pos = i;
3427   }
3428   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  Own position: %u\n", own_pos);
3429   if (own_pos == 0 && path->peers[own_pos] != myid)
3430   {
3431     /* create path: self not found in path through self */
3432     GNUNET_break_op (0);
3433     path_destroy (path);
3434     tunnel_destroy (t);
3435     return GNUNET_OK;
3436   }
3437   path_add_to_peers (path, GNUNET_NO);
3438   tunnel_use_path (t, path);
3439
3440   peer_info_add_tunnel (dest_peer_info, t);
3441
3442   if (own_pos == size - 1)
3443   {
3444     struct MeshClient *c;
3445
3446     /* Find target client */
3447     c = GNUNET_CONTAINER_multihashmap32_get (ports, t->port);
3448     if (NULL == c)
3449     {
3450       /* TODO send reject */
3451       return GNUNET_OK;
3452     }
3453
3454     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  It's for us!\n");
3455     peer_info_add_path_to_origin (orig_peer_info, path, GNUNET_YES);
3456
3457     /* Assign local tid */
3458     while (NULL != tunnel_get_incoming (next_local_tid))
3459       next_local_tid = (next_local_tid + 1) | GNUNET_MESH_LOCAL_TUNNEL_ID_SERV;
3460     t->local_tid_dest = next_local_tid++;
3461     next_local_tid = next_local_tid | GNUNET_MESH_LOCAL_TUNNEL_ID_SERV;
3462
3463     if (GNUNET_YES == t->reliable)
3464     {
3465       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "!!! Reliable\n");
3466       t->bck_rel = GNUNET_malloc (sizeof (struct MeshTunnelReliability));
3467       t->bck_rel->t = t;
3468       t->bck_rel->expected_delay = MESH_RETRANSMIT_TIME;
3469     }
3470
3471     tunnel_add_client (t, c);
3472     send_client_tunnel_create (t);
3473     send_path_ack (t);
3474   }
3475   else
3476   {
3477     struct MeshPeerPath *path2;
3478
3479     t->next_hop = path->peers[own_pos + 1];
3480     GNUNET_PEER_change_rc(t->next_hop, 1);
3481
3482     /* It's for somebody else! Retransmit. */
3483     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  Retransmitting.\n");
3484     path2 = path_duplicate (path);
3485     peer_info_add_path (dest_peer_info, path2, GNUNET_NO);
3486     peer_info_add_path_to_origin (orig_peer_info, path, GNUNET_NO);
3487     send_create_path (t);
3488   }
3489   return GNUNET_OK;
3490 }
3491
3492
3493
3494 /**
3495  * Core handler for path ACKs
3496  *
3497  * @param cls closure
3498  * @param message message
3499  * @param peer peer identity this notification is about
3500  *
3501  * @return GNUNET_OK to keep the connection open,
3502  *         GNUNET_SYSERR to close it (signal serious error)
3503  */
3504 static int
3505 handle_mesh_path_ack (void *cls, const struct GNUNET_PeerIdentity *peer,
3506                       const struct GNUNET_MessageHeader *message)
3507 {
3508   struct GNUNET_MESH_PathACK *msg;
3509   struct MeshPeerInfo *peer_info;
3510   struct MeshPeerPath *p;
3511   struct MeshTunnel *t;
3512
3513   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Received a path ACK msg [%s]\n",
3514               GNUNET_i2s (&my_full_id));
3515   msg = (struct GNUNET_MESH_PathACK *) message;
3516   t = tunnel_get (&msg->oid, ntohl(msg->tid));
3517   if (NULL == t)
3518   {
3519     /* TODO notify that we don't know the tunnel */
3520     GNUNET_STATISTICS_update (stats, "# control on unknown tunnel", 1, GNUNET_NO);
3521     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  don't know the tunnel %s [%X]!\n",
3522                 GNUNET_i2s (&msg->oid), ntohl(msg->tid));
3523     return GNUNET_OK;
3524   }
3525   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  on tunnel %s [%X]\n",
3526               GNUNET_i2s (&msg->oid), ntohl(msg->tid));
3527
3528   peer_info = peer_get (&msg->peer_id);
3529   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  by peer %s\n",
3530               GNUNET_i2s (&msg->peer_id));
3531   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  via peer %s\n",
3532               GNUNET_i2s (peer));
3533
3534   /* Add path to peers? */
3535   p = t->path;
3536   if (NULL != p)
3537   {
3538     path_add_to_peers (p, GNUNET_YES);
3539   }
3540   else
3541   {
3542     GNUNET_break (0);
3543   }
3544   t->state = MESH_TUNNEL_READY;
3545   t->next_fc.last_ack_recv = (NULL == t->client) ? ntohl (msg->ack) : 0;
3546   t->prev_fc.last_ack_sent = ntohl (msg->ack);
3547
3548   /* Message for us? */
3549   if (0 == memcmp (&msg->oid, &my_full_id, sizeof (struct GNUNET_PeerIdentity)))
3550   {
3551     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  It's for us!\n");
3552     if (NULL == t->owner)
3553     {
3554       GNUNET_break_op (0);
3555       return GNUNET_OK;
3556     }
3557     if (NULL != peer_info->dhtget)
3558     {
3559       GNUNET_DHT_get_stop (peer_info->dhtget);
3560       peer_info->dhtget = NULL;
3561     }
3562     tunnel_send_bck_ack (t, GNUNET_MESSAGE_TYPE_MESH_PATH_ACK);
3563     tunnel_send_fwd_ack (t, GNUNET_MESSAGE_TYPE_MESH_PATH_ACK);
3564     return GNUNET_OK;
3565   }
3566
3567   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
3568               "  not for us, retransmitting...\n");
3569   peer_info = peer_get (&msg->oid);
3570   send_prebuilt_message (message, t->prev_hop, t);
3571   return GNUNET_OK;
3572 }
3573
3574
3575 /**
3576  * Core handler for notifications of broken paths
3577  *
3578  * @param cls closure
3579  * @param message message
3580  * @param peer peer identity this notification is about
3581  *
3582  * @return GNUNET_OK to keep the connection open,
3583  *         GNUNET_SYSERR to close it (signal serious error)
3584  */
3585 static int
3586 handle_mesh_path_broken (void *cls, const struct GNUNET_PeerIdentity *peer,
3587                          const struct GNUNET_MessageHeader *message)
3588 {
3589   struct GNUNET_MESH_PathBroken *msg;
3590   struct MeshTunnel *t;
3591
3592   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
3593               "Received a PATH BROKEN msg from %s\n", GNUNET_i2s (peer));
3594   msg = (struct GNUNET_MESH_PathBroken *) message;
3595   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  regarding %s\n",
3596               GNUNET_i2s (&msg->peer1));
3597   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  regarding %s\n",
3598               GNUNET_i2s (&msg->peer2));
3599   t = tunnel_get (&msg->oid, ntohl (msg->tid));
3600   if (NULL == t)
3601   {
3602     GNUNET_break_op (0);
3603     return GNUNET_OK;
3604   }
3605   tunnel_notify_connection_broken (t, GNUNET_PEER_search (&msg->peer1),
3606                                    GNUNET_PEER_search (&msg->peer2));
3607   return GNUNET_OK;
3608
3609 }
3610
3611
3612 /**
3613  * Core handler for tunnel destruction
3614  *
3615  * @param cls closure
3616  * @param message message
3617  * @param peer peer identity this notification is about
3618  *
3619  * @return GNUNET_OK to keep the connection open,
3620  *         GNUNET_SYSERR to close it (signal serious error)
3621  */
3622 static int
3623 handle_mesh_tunnel_destroy (void *cls, const struct GNUNET_PeerIdentity *peer,
3624                             const struct GNUNET_MessageHeader *message)
3625 {
3626   struct GNUNET_MESH_TunnelDestroy *msg;
3627   struct MeshTunnel *t;
3628
3629   msg = (struct GNUNET_MESH_TunnelDestroy *) message;
3630   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
3631               "Got a TUNNEL DESTROY packet from %s\n",
3632               GNUNET_i2s (peer));
3633   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
3634               "  for tunnel %s [%u]\n",
3635               GNUNET_i2s (&msg->oid), ntohl (msg->tid));
3636   t = tunnel_get (&msg->oid, ntohl (msg->tid));
3637   if (NULL == t)
3638   {
3639     /* Probably already got the message from another path,
3640      * destroyed the tunnel and retransmitted to children.
3641      * Safe to ignore.
3642      */
3643     GNUNET_STATISTICS_update (stats, "# control on unknown tunnel",
3644                               1, GNUNET_NO);
3645     return GNUNET_OK;
3646   }
3647   if (t->local_tid_dest >= GNUNET_MESH_LOCAL_TUNNEL_ID_SERV)
3648   {
3649     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "INCOMING TUNNEL %X %X\n",
3650                 t->local_tid, t->local_tid_dest);
3651   }
3652   if (GNUNET_PEER_search (peer) == t->prev_hop)
3653   {
3654     // TODO check owner's signature
3655     // TODO add owner's signatue to tunnel for retransmission
3656     peer_cancel_queues (t->prev_hop, t);
3657     GNUNET_PEER_change_rc (t->prev_hop, -1);
3658     t->prev_hop = 0;
3659   }
3660   else if (GNUNET_PEER_search (peer) == t->next_hop)
3661   {
3662     // TODO check dest's signature
3663     // TODO add dest's signatue to tunnel for retransmission
3664     peer_cancel_queues (t->next_hop, t);
3665     GNUNET_PEER_change_rc (t->next_hop, -1);
3666     t->next_hop = 0;
3667   }
3668   else
3669   {
3670     GNUNET_break_op (0);
3671     // TODO check both owner AND destination's signature to see which matches
3672     // TODO restransmit in appropriate direction
3673     return GNUNET_OK;
3674   }
3675   tunnel_destroy_empty (t);
3676
3677   // TODO: add timeout to destroy the tunnel anyway
3678   return GNUNET_OK;
3679 }
3680
3681
3682 /**
3683  * Core handler for mesh network traffic going from the origin to a peer
3684  *
3685  * @param cls closure
3686  * @param peer peer identity this notification is about
3687  * @param message message
3688  * @return GNUNET_OK to keep the connection open,
3689  *         GNUNET_SYSERR to close it (signal serious error)
3690  */
3691 static int
3692 handle_mesh_unicast (void *cls, const struct GNUNET_PeerIdentity *peer,
3693                           const struct GNUNET_MessageHeader *message)
3694 {
3695   struct GNUNET_MESH_Data *msg;
3696   struct MeshTunnel *t;
3697   uint32_t pid;
3698   uint32_t ttl;
3699   size_t size;
3700
3701   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "got a unicast packet from %s\n",
3702               GNUNET_i2s (peer));
3703   /* Check size */
3704   size = ntohs (message->size);
3705   if (size <
3706       sizeof (struct GNUNET_MESH_Data) +
3707       sizeof (struct GNUNET_MessageHeader))
3708   {
3709     GNUNET_break (0);
3710     return GNUNET_OK;
3711   }
3712   msg = (struct GNUNET_MESH_Data *) message;
3713   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, " of type %s\n",
3714               GNUNET_MESH_DEBUG_M2S (ntohs (msg[1].header.type)));
3715   /* Check tunnel */
3716   t = tunnel_get (&msg->oid, ntohl (msg->tid));
3717   if (NULL == t)
3718   {
3719     /* TODO notify back: we don't know this tunnel */
3720     GNUNET_STATISTICS_update (stats, "# data on unknown tunnel", 1, GNUNET_NO);
3721     GNUNET_break_op (0);
3722     return GNUNET_OK;
3723   }
3724   pid = ntohl (msg->pid);
3725   if (GMC_is_pid_bigger (pid, t->prev_fc.last_ack_sent))
3726   {
3727     GNUNET_STATISTICS_update (stats, "# unsolicited unicast", 1, GNUNET_NO);
3728     GNUNET_break_op (0);
3729     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
3730                 "Received PID %u, ACK %u\n",
3731                 pid, t->prev_fc.last_ack_sent);
3732     tunnel_send_fwd_ack(t, GNUNET_MESSAGE_TYPE_MESH_POLL);
3733     return GNUNET_OK;
3734   }
3735
3736   tunnel_reset_timeout (t);
3737   if (t->dest == myid)
3738   {
3739     /* TODO signature verification */
3740     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
3741                 "  it's for us! sending to clients...\n");
3742     GNUNET_STATISTICS_update (stats, "# unicast received", 1, GNUNET_NO);
3743 //     if (GMC_is_pid_bigger(pid, t->prev_fc.last_pid_recv)) FIXME use
3744     if ( (GNUNET_NO == t->reliable &&
3745           GMC_is_pid_bigger(pid, t->prev_fc.last_pid_recv))
3746         ||
3747           (GNUNET_YES == t->reliable &&
3748            pid == t->prev_fc.last_pid_recv + 1) )
3749     {
3750       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
3751                   " pid %u not seen yet, forwarding\n", pid);
3752       t->prev_fc.last_pid_recv = pid;
3753       tunnel_send_client_ucast (t, msg);
3754     }
3755     else
3756     {
3757 //       GNUNET_STATISTICS_update (stats, "# duplicate PID", 1, GNUNET_NO);
3758       GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
3759                   " Pid %u not expected (%u), sending FWD ACK!\n",
3760                   pid, t->prev_fc.last_pid_recv + 1);
3761     }
3762     tunnel_send_fwd_ack (t, GNUNET_MESSAGE_TYPE_MESH_UNICAST_ACK);
3763     return GNUNET_OK;
3764   }
3765   if (GMC_is_pid_bigger(pid, t->prev_fc.last_pid_recv))
3766     t->prev_fc.last_pid_recv = pid;
3767   if (0 == t->next_hop)
3768   {
3769     GNUNET_break (0);
3770     return GNUNET_OK;
3771   }
3772   ttl = ntohl (msg->ttl);
3773   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "   ttl: %u\n", ttl);
3774   if (ttl == 0)
3775   {
3776     GNUNET_STATISTICS_update (stats, "# TTL drops", 1, GNUNET_NO);
3777     GNUNET_log (GNUNET_ERROR_TYPE_WARNING, " TTL is 0, DROPPING!\n");
3778     tunnel_send_fwd_ack (t, GNUNET_MESSAGE_TYPE_MESH_ACK);
3779     return GNUNET_OK;
3780   }
3781   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
3782               "  not for us, retransmitting...\n");
3783
3784   send_prebuilt_message (message, t->next_hop, t);
3785   GNUNET_STATISTICS_update (stats, "# unicast forwarded", 1, GNUNET_NO);
3786   return GNUNET_OK;
3787 }
3788
3789
3790 /**
3791  * Core handler for mesh network traffic toward the owner of a tunnel
3792  *
3793  * @param cls closure
3794  * @param message message
3795  * @param peer peer identity this notification is about
3796  *
3797  * @return GNUNET_OK to keep the connection open,
3798  *         GNUNET_SYSERR to close it (signal serious error)
3799  */
3800 static int
3801 handle_mesh_to_orig (void *cls, const struct GNUNET_PeerIdentity *peer,
3802                           const struct GNUNET_MessageHeader *message)
3803 {
3804   struct GNUNET_MESH_Data *msg;
3805   struct MeshTunnel *t;
3806   size_t size;
3807   uint32_t pid;
3808   uint32_t ttl;
3809
3810   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "got a ToOrigin packet from %s\n",
3811               GNUNET_i2s (peer));
3812   size = ntohs (message->size);
3813   if (size < sizeof (struct GNUNET_MESH_Data) +     /* Payload must be */
3814       sizeof (struct GNUNET_MessageHeader))     /* at least a header */
3815   {
3816     GNUNET_break_op (0);
3817     return GNUNET_OK;
3818   }
3819   msg = (struct GNUNET_MESH_Data *) message;
3820   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, " of type %s\n",
3821               GNUNET_MESH_DEBUG_M2S (ntohs (msg[1].header.type)));
3822   t = tunnel_get (&msg->oid, ntohl (msg->tid));
3823   pid = ntohl (msg->pid);
3824   if (NULL == t)
3825   {
3826     /* TODO notify that we dont know this tunnel (whom)? */
3827     GNUNET_STATISTICS_update (stats, "# data on unknown tunnel", 1, GNUNET_NO);
3828     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
3829                 "Received to_origin with PID %u on unknown tunnel %s [%u]\n",
3830                 pid, GNUNET_i2s (&msg->oid), ntohl (msg->tid));
3831     return GNUNET_OK;
3832   }
3833
3834   if (GMC_is_pid_bigger (pid, t->next_fc.last_ack_sent))
3835   {
3836     GNUNET_STATISTICS_update (stats, "# unsolicited to_orig", 1, GNUNET_NO);
3837     GNUNET_break_op (0);
3838     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
3839                 "Received PID %u, ACK %u\n",
3840                 pid, t->next_fc.last_ack_sent);
3841     tunnel_send_bck_ack (t, GNUNET_MESSAGE_TYPE_MESH_POLL);
3842     return GNUNET_OK;
3843   }
3844
3845   if (myid == t->id.oid)
3846   {
3847     /* TODO signature verification */
3848     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
3849                 "  it's for us! sending to clients...\n");
3850     GNUNET_STATISTICS_update (stats, "# to origin received", 1, GNUNET_NO);
3851     if ( (GNUNET_NO == t->reliable &&
3852           GMC_is_pid_bigger(pid, t->next_fc.last_pid_recv))
3853         ||
3854           (GNUNET_YES == t->reliable &&
3855            pid == t->next_fc.last_pid_recv + 1) ) // FIXME use "futures" as accepting
3856     {
3857       t->next_fc.last_pid_recv = pid;
3858       tunnel_send_client_to_orig (t, msg);
3859     }
3860     else
3861     {
3862 //       GNUNET_STATISTICS_update (stats, "# duplicate PID drops BCK", 1, GNUNET_NO);
3863       GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
3864                   " Pid %u not expected, sending FWD ACK!\n", pid);
3865     }
3866     tunnel_send_bck_ack (t, GNUNET_MESSAGE_TYPE_MESH_TO_ORIG_ACK);
3867     return GNUNET_OK;
3868   }
3869   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
3870               "  not for us, retransmitting...\n");
3871   if (GMC_is_pid_bigger (pid, t->next_fc.last_pid_recv))
3872     t->next_fc.last_pid_recv = pid;
3873   if (0 == t->prev_hop) /* No owner AND no prev hop */
3874   {
3875     if (GNUNET_YES == t->destroy)
3876     {
3877       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
3878                   "to orig received on a dying tunnel %s [%X]\n",
3879                   GNUNET_i2s (&msg->oid), ntohl(msg->tid));
3880       return GNUNET_OK;
3881     }
3882     GNUNET_log (GNUNET_ERROR_TYPE_ERROR, 
3883                 "unknown to origin at %s\n",
3884                 GNUNET_i2s (&my_full_id));
3885     GNUNET_log (GNUNET_ERROR_TYPE_ERROR, 
3886                 "from peer %s\n",
3887                 GNUNET_i2s (peer));
3888     GNUNET_log (GNUNET_ERROR_TYPE_ERROR, 
3889                 "on tunnel %s [%X]\n",
3890                 GNUNET_i2s (&msg->oid), ntohl(msg->tid));
3891     return GNUNET_OK;
3892   }
3893   ttl = ntohl (msg->ttl);
3894   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "   ttl: %u\n", ttl);
3895   if (ttl == 0)
3896   {
3897     GNUNET_STATISTICS_update (stats, "# TTL drops", 1, GNUNET_NO);
3898     GNUNET_log (GNUNET_ERROR_TYPE_WARNING, " TTL is 0, DROPPING!\n");
3899     tunnel_send_bck_ack (t, GNUNET_MESSAGE_TYPE_MESH_ACK);
3900     return GNUNET_OK;
3901   }
3902   send_prebuilt_message (message, t->prev_hop, t);
3903   GNUNET_STATISTICS_update (stats, "# to origin forwarded", 1, GNUNET_NO);
3904
3905   return GNUNET_OK;
3906 }
3907
3908
3909 /**
3910  * Core handler for mesh network traffic end-to-end ACKs.
3911  *
3912  * @param cls Closure.
3913  * @param message Message.
3914  * @param peer Peer identity this notification is about.
3915  *
3916  * @return GNUNET_OK to keep the connection open,
3917  *         GNUNET_SYSERR to close it (signal serious error)
3918  */
3919 static int
3920 handle_mesh_data_ack (void *cls, const struct GNUNET_PeerIdentity *peer,
3921                       const struct GNUNET_MessageHeader *message)
3922 {
3923   struct GNUNET_MESH_DataACK *msg;
3924   struct MeshTunnelReliability *rel;
3925   struct MeshReliableMessage *copy;
3926   struct MeshReliableMessage *next;
3927   struct MeshTunnel *t;
3928   GNUNET_PEER_Id id;
3929   uint32_t ack;
3930   uint16_t type;
3931   int work;
3932
3933   type = ntohs (message->type);
3934   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Got a %s message from %s!\n",
3935               GNUNET_MESH_DEBUG_M2S (type), GNUNET_i2s (peer));
3936   msg = (struct GNUNET_MESH_DataACK *) message;
3937
3938   t = tunnel_get (&msg->oid, ntohl (msg->tid));
3939   if (NULL == t)
3940   {
3941     /* TODO notify that we dont know this tunnel (whom)? */
3942     GNUNET_STATISTICS_update (stats, "# ack on unknown tunnel", 1, GNUNET_NO);
3943     return GNUNET_OK;
3944   }
3945   ack = ntohl (msg->pid);
3946   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  ACK %u\n", ack);
3947
3948   /* Is this a forward or backward ACK? */
3949   id = GNUNET_PEER_search (peer);
3950   if (t->next_hop == id && GNUNET_MESSAGE_TYPE_MESH_UNICAST_ACK == type)
3951   {
3952     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  FWD ACK\n");
3953     if (NULL == t->owner)
3954     {
3955       send_prebuilt_message (message, t->prev_hop, t);
3956       return GNUNET_OK;
3957     }
3958     rel = t->fwd_rel;
3959     tunnel_send_fwd_ack (t, GNUNET_MESSAGE_TYPE_MESH_UNICAST);
3960   }
3961   else if (t->prev_hop == id && GNUNET_MESSAGE_TYPE_MESH_TO_ORIG_ACK == type)
3962   {
3963     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  BCK ACK\n");
3964     if (NULL == t->client)
3965     {
3966       send_prebuilt_message (message, t->next_hop, t);
3967       return GNUNET_OK;
3968     }
3969     rel = t->bck_rel;
3970     tunnel_send_bck_ack (t, GNUNET_MESSAGE_TYPE_MESH_TO_ORIGIN);
3971   }
3972   else
3973   {
3974     GNUNET_break_op (0);
3975     return GNUNET_OK;
3976   }
3977
3978   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "!!! ACK \n");
3979   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "!!!  ack  %u\n", ack);
3980   for (work = GNUNET_NO, copy = rel->head_sent; copy != NULL; copy = next)
3981   {
3982     struct GNUNET_TIME_Relative time;
3983
3984     if (copy->id > ack)
3985     {
3986       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "!!!  head %u, out!\n", copy->id);
3987       return GNUNET_OK;
3988     }
3989     work = GNUNET_YES;
3990     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "!!!  id %u\n", copy->id);
3991     GNUNET_CONTAINER_DLL_remove (rel->head_sent, rel->tail_sent, copy);
3992     next = copy->next;
3993     GNUNET_free (copy);
3994     time = GNUNET_TIME_absolute_get_duration (copy->timestamp);
3995     rel->expected_delay.rel_value += time.rel_value;
3996     rel->expected_delay.rel_value /= 2;
3997     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "!!!  new expected delay %s!\n",
3998                 GNUNET_STRINGS_relative_time_to_string (rel->expected_delay,
3999                                                         GNUNET_NO));
4000     rel->retry_timer = rel->expected_delay;
4001   }
4002   if (GNUNET_YES == work)
4003   {
4004     if (GNUNET_SCHEDULER_NO_TASK != rel->retry_task)
4005     {
4006       GNUNET_SCHEDULER_cancel (rel->retry_task);
4007       if (NULL == rel->head_sent)
4008       {
4009         rel->retry_task = GNUNET_SCHEDULER_NO_TASK;
4010       }
4011       else
4012       {
4013         struct GNUNET_TIME_Absolute new_target;
4014         struct GNUNET_TIME_Relative delay;
4015
4016         new_target = GNUNET_TIME_absolute_add (rel->head_sent->timestamp,
4017                                                rel->retry_timer);
4018         delay = GNUNET_TIME_absolute_get_remaining (new_target);
4019         rel->retry_task =
4020             GNUNET_SCHEDULER_add_delayed (delay,
4021                                           &tunnel_retransmit_message,
4022                                           rel);
4023       }
4024     }
4025     else
4026       GNUNET_break (0);
4027   }
4028   return GNUNET_OK;
4029 }
4030
4031 /**
4032  * Core handler for mesh network traffic point-to-point acks.
4033  *
4034  * @param cls closure
4035  * @param message message
4036  * @param peer peer identity this notification is about
4037  *
4038  * @return GNUNET_OK to keep the connection open,
4039  *         GNUNET_SYSERR to close it (signal serious error)
4040  */
4041 static int
4042 handle_mesh_ack (void *cls, const struct GNUNET_PeerIdentity *peer,
4043                  const struct GNUNET_MessageHeader *message)
4044 {
4045   struct GNUNET_MESH_ACK *msg;
4046   struct MeshTunnel *t;
4047   struct MeshFlowControl *fc;
4048   GNUNET_PEER_Id id;
4049   uint32_t ack;
4050
4051   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Got an ACK packet from %s!\n",
4052               GNUNET_i2s (peer));
4053   msg = (struct GNUNET_MESH_ACK *) message;
4054
4055   t = tunnel_get (&msg->oid, ntohl (msg->tid));
4056
4057   if (NULL == t)
4058   {
4059     /* TODO notify that we dont know this tunnel (whom)? */
4060     GNUNET_STATISTICS_update (stats, "# ack on unknown tunnel", 1, GNUNET_NO);
4061     return GNUNET_OK;
4062   }
4063   ack = ntohl (msg->pid);
4064   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  ACK %u\n", ack);
4065
4066   /* Is this a forward or backward ACK? */
4067   id = GNUNET_PEER_search (peer);
4068   if (t->next_hop == id)
4069   {
4070     debug_fwd_ack++;
4071     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  FWD ACK\n");
4072     fc = &t->next_fc;
4073   }
4074   else if (t->prev_hop == id)
4075   {
4076     debug_bck_ack++;
4077     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  BCK ACK\n");
4078     fc = &t->prev_fc;
4079   }
4080   else
4081   {
4082     GNUNET_break_op (0);
4083     return GNUNET_OK;
4084   }
4085
4086   if (GNUNET_SCHEDULER_NO_TASK != fc->poll_task &&
4087       GMC_is_pid_bigger (ack, fc->last_ack_recv))
4088   {
4089     GNUNET_SCHEDULER_cancel (fc->poll_task);
4090     fc->poll_task = GNUNET_SCHEDULER_NO_TASK;
4091     fc->poll_time = GNUNET_TIME_UNIT_SECONDS;
4092   }
4093   fc->last_ack_recv = ack;
4094   peer_unlock_queue (id);
4095
4096   if (t->next_hop == id)
4097     tunnel_send_fwd_ack (t, GNUNET_MESSAGE_TYPE_MESH_ACK);
4098   else
4099     tunnel_send_bck_ack (t, GNUNET_MESSAGE_TYPE_MESH_ACK);
4100
4101   return GNUNET_OK;
4102 }
4103
4104
4105 /**
4106  * Core handler for mesh network traffic point-to-point ack polls.
4107  *
4108  * @param cls closure
4109  * @param message message
4110  * @param peer peer identity this notification is about
4111  *
4112  * @return GNUNET_OK to keep the connection open,
4113  *         GNUNET_SYSERR to close it (signal serious error)
4114  */
4115 static int
4116 handle_mesh_poll (void *cls, const struct GNUNET_PeerIdentity *peer,
4117                   const struct GNUNET_MessageHeader *message)
4118 {
4119   struct GNUNET_MESH_Poll *msg;
4120   struct MeshTunnel *t;
4121   struct MeshFlowControl *fc;
4122   GNUNET_PEER_Id id;
4123   uint32_t pid;
4124   uint32_t old;
4125
4126   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Got an POLL packet from %s!\n",
4127               GNUNET_i2s (peer));
4128
4129   msg = (struct GNUNET_MESH_Poll *) message;
4130
4131   t = tunnel_get (&msg->oid, ntohl (msg->tid));
4132
4133   if (NULL == t)
4134   {
4135     /* TODO notify that we dont know this tunnel (whom)? */
4136     GNUNET_STATISTICS_update (stats, "# poll on unknown tunnel", 1, GNUNET_NO);
4137     GNUNET_break_op (0);
4138     return GNUNET_OK;
4139   }
4140
4141   /* Is this a forward or backward ACK? */
4142   id = GNUNET_PEER_search(peer);
4143   pid = ntohl (msg->pid);
4144   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  PID %u\n", pid);
4145   if (t->next_hop == id)
4146   {
4147     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  from FWD\n");
4148     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  was %u\n", t->next_fc.last_pid_recv);
4149     fc = &t->next_fc;
4150     old = fc->last_pid_recv;
4151     fc->last_pid_recv = pid;
4152     tunnel_send_bck_ack (t, GNUNET_MESSAGE_TYPE_MESH_POLL);
4153   }
4154   else if (t->prev_hop == id)
4155   {
4156     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  from BCK\n");
4157     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  was %u\n", t->prev_fc.last_pid_recv);
4158     fc = &t->prev_fc;
4159     old = fc->last_pid_recv;
4160     fc->last_pid_recv = pid;
4161     tunnel_send_fwd_ack (t, GNUNET_MESSAGE_TYPE_MESH_POLL);
4162   }
4163   else
4164     GNUNET_break (0);
4165   
4166   if (GNUNET_YES == t->reliable)
4167     fc->last_pid_recv = old;
4168
4169   return GNUNET_OK;
4170 }
4171
4172
4173 /**
4174  * Core handler for mesh keepalives.
4175  *
4176  * @param cls closure
4177  * @param message message
4178  * @param peer peer identity this notification is about
4179  * @return GNUNET_OK to keep the connection open,
4180  *         GNUNET_SYSERR to close it (signal serious error)
4181  *
4182  * TODO: Check who we got this from, to validate route.
4183  */
4184 static int
4185 handle_mesh_keepalive (void *cls, const struct GNUNET_PeerIdentity *peer,
4186                        const struct GNUNET_MessageHeader *message)
4187 {
4188   struct GNUNET_MESH_TunnelKeepAlive *msg;
4189   struct MeshTunnel *t;
4190
4191   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "got a keepalive packet from %s\n",
4192               GNUNET_i2s (peer));
4193
4194   msg = (struct GNUNET_MESH_TunnelKeepAlive *) message;
4195   t = tunnel_get (&msg->oid, ntohl (msg->tid));
4196
4197   if (NULL == t)
4198   {
4199     /* TODO notify that we dont know that tunnel */
4200     GNUNET_STATISTICS_update (stats, "# keepalive on unknown tunnel", 1,
4201                               GNUNET_NO);
4202     return GNUNET_OK;
4203   }
4204
4205   tunnel_reset_timeout (t);
4206   if (NULL != t->client || 0 == t->next_hop || myid == t->next_hop)
4207     return GNUNET_OK;
4208
4209   GNUNET_STATISTICS_update (stats, "# keepalives forwarded", 1, GNUNET_NO);
4210   send_prebuilt_message (message, t->next_hop, t);
4211   return GNUNET_OK;
4212   }
4213
4214
4215
4216 /**
4217  * Functions to handle messages from core
4218  */
4219 static struct GNUNET_CORE_MessageHandler core_handlers[] = {
4220   {&handle_mesh_path_create, GNUNET_MESSAGE_TYPE_MESH_PATH_CREATE, 0},
4221   {&handle_mesh_path_broken, GNUNET_MESSAGE_TYPE_MESH_PATH_BROKEN,
4222    sizeof (struct GNUNET_MESH_PathBroken)},
4223   {&handle_mesh_tunnel_destroy, GNUNET_MESSAGE_TYPE_MESH_TUNNEL_DESTROY,
4224    sizeof (struct GNUNET_MESH_TunnelDestroy)},
4225   {&handle_mesh_unicast, GNUNET_MESSAGE_TYPE_MESH_UNICAST, 0},
4226   {&handle_mesh_to_orig, GNUNET_MESSAGE_TYPE_MESH_TO_ORIGIN, 0},
4227   {&handle_mesh_data_ack, GNUNET_MESSAGE_TYPE_MESH_UNICAST_ACK,
4228     sizeof (struct GNUNET_MESH_DataACK)},
4229   {&handle_mesh_data_ack, GNUNET_MESSAGE_TYPE_MESH_TO_ORIG_ACK,
4230     sizeof (struct GNUNET_MESH_DataACK)},
4231   {&handle_mesh_keepalive, GNUNET_MESSAGE_TYPE_MESH_PATH_KEEPALIVE,
4232     sizeof (struct GNUNET_MESH_TunnelKeepAlive)},
4233   {&handle_mesh_ack, GNUNET_MESSAGE_TYPE_MESH_ACK,
4234     sizeof (struct GNUNET_MESH_ACK)},
4235   {&handle_mesh_poll, GNUNET_MESSAGE_TYPE_MESH_POLL,
4236     sizeof (struct GNUNET_MESH_Poll)},
4237   {&handle_mesh_path_ack, GNUNET_MESSAGE_TYPE_MESH_PATH_ACK,
4238    sizeof (struct GNUNET_MESH_PathACK)},
4239   {NULL, 0, 0}
4240 };
4241
4242
4243
4244 /******************************************************************************/
4245 /****************       MESH LOCAL HANDLER HELPERS      ***********************/
4246 /******************************************************************************/
4247
4248
4249 #if LATER
4250 /**
4251  * notify_client_connection_failure: notify a client that the connection to the
4252  * requested remote peer is not possible (for instance, no route found)
4253  * Function called when the socket is ready to queue more data. "buf" will be
4254  * NULL and "size" zero if the socket was closed for writing in the meantime.
4255  *
4256  * @param cls closure
4257  * @param size number of bytes available in buf
4258  * @param buf where the callee should write the message
4259  * @return number of bytes written to buf
4260  */
4261 static size_t
4262 notify_client_connection_failure (void *cls, size_t size, void *buf)
4263 {
4264   int size_needed;
4265   struct MeshPeerInfo *peer_info;
4266   struct GNUNET_MESH_PeerControl *msg;
4267   struct GNUNET_PeerIdentity id;
4268
4269   if (0 == size && NULL == buf)
4270   {
4271     // TODO retry? cancel?
4272     return 0;
4273   }
4274
4275   size_needed = sizeof (struct GNUNET_MESH_PeerControl);
4276   peer_info = (struct MeshPeerInfo *) cls;
4277   msg = (struct GNUNET_MESH_PeerControl *) buf;
4278   msg->header.size = htons (sizeof (struct GNUNET_MESH_PeerControl));
4279   msg->header.type = htons (GNUNET_MESSAGE_TYPE_MESH_LOCAL_PEER_DISCONNECTED);
4280 //     msg->tunnel_id = htonl(peer_info->t->tid);
4281   GNUNET_PEER_resolve (peer_info->id, &id);
4282   memcpy (&msg->peer, &id, sizeof (struct GNUNET_PeerIdentity));
4283
4284   return size_needed;
4285 }
4286 #endif
4287
4288
4289 /**
4290  * Send keepalive packets for a tunnel.
4291  *
4292  * @param cls Closure (tunnel for which to send the keepalive).
4293  * @param tc Notification context.
4294  * 
4295  * FIXME: add a refresh reset in case of normal unicast traffic is doing the job
4296  */
4297 static void
4298 path_refresh (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
4299 {
4300   struct MeshTunnel *t = cls;
4301   struct GNUNET_MESH_TunnelKeepAlive *msg;
4302   size_t size = sizeof (struct GNUNET_MESH_TunnelKeepAlive);
4303   char cbuf[size];
4304
4305   t->maintenance_task = GNUNET_SCHEDULER_NO_TASK;
4306   if (0 != (tc->reason & GNUNET_SCHEDULER_REASON_SHUTDOWN) ||
4307       NULL == t->owner || 0 == t->local_tid)
4308   {
4309     return;
4310   }
4311
4312   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
4313               "sending keepalive for tunnel %d\n", t->id.tid);
4314
4315   msg = (struct GNUNET_MESH_TunnelKeepAlive *) cbuf;
4316   msg->header.size = htons (size);
4317   msg->header.type = htons (GNUNET_MESSAGE_TYPE_MESH_PATH_KEEPALIVE);
4318   msg->oid = my_full_id;
4319   msg->tid = htonl (t->id.tid);
4320   send_prebuilt_message (&msg->header, t->next_hop, t);
4321
4322   t->maintenance_task =
4323       GNUNET_SCHEDULER_add_delayed (refresh_path_time, &path_refresh, t);
4324 }
4325
4326
4327 /**
4328  * Function to process paths received for a new peer addition. The recorded
4329  * paths form the initial tunnel, which can be optimized later.
4330  * Called on each result obtained for the DHT search.
4331  *
4332  * @param cls closure
4333  * @param exp when will this value expire
4334  * @param key key of the result
4335  * @param get_path path of the get request
4336  * @param get_path_length lenght of get_path
4337  * @param put_path path of the put request
4338  * @param put_path_length length of the put_path
4339  * @param type type of the result
4340  * @param size number of bytes in data
4341  * @param data pointer to the result data
4342  */
4343 static void
4344 dht_get_id_handler (void *cls, struct GNUNET_TIME_Absolute exp,
4345                     const struct GNUNET_HashCode * key,
4346                     const struct GNUNET_PeerIdentity *get_path,
4347                     unsigned int get_path_length,
4348                     const struct GNUNET_PeerIdentity *put_path,
4349                     unsigned int put_path_length, enum GNUNET_BLOCK_Type type,
4350                     size_t size, const void *data)
4351 {
4352   struct MeshPeerInfo *peer = cls;
4353   struct MeshPeerPath *p;
4354   struct GNUNET_PeerIdentity pi;
4355   int i;
4356
4357   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Got results from DHT!\n");
4358   GNUNET_PEER_resolve (peer->id, &pi);
4359   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  for %s\n", GNUNET_i2s (&pi));
4360
4361   p = path_build_from_dht (get_path, get_path_length,
4362                            put_path, put_path_length);
4363   path_add_to_peers (p, GNUNET_NO);
4364   path_destroy (p);
4365   for (i = 0; i < peer->ntunnels; i++)
4366   {
4367     struct GNUNET_PeerIdentity id;
4368
4369     GNUNET_PEER_resolve (peer->tunnels[i]->id.oid, &id);
4370     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, " ... tunnel %s:%X (%X / %X)\n",
4371                 GNUNET_i2s (&id), peer->tunnels[i]->id.tid,
4372                 peer->tunnels[i]->local_tid, 
4373                 peer->tunnels[i]->local_tid_dest);
4374     if (peer->tunnels[i]->state == MESH_TUNNEL_SEARCHING)
4375     {
4376       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, " ... connect!\n");
4377       peer_connect (peer, peer->tunnels[i]);
4378     }
4379   }
4380
4381   return;
4382 }
4383
4384
4385 /******************************************************************************/
4386 /*********************       MESH LOCAL HANDLES      **************************/
4387 /******************************************************************************/
4388
4389
4390 /**
4391  * Handler for client disconnection
4392  *
4393  * @param cls closure
4394  * @param client identification of the client; NULL
4395  *        for the last call when the server is destroyed
4396  */
4397 static void
4398 handle_local_client_disconnect (void *cls, struct GNUNET_SERVER_Client *client)
4399 {
4400   struct MeshClient *c;
4401   struct MeshClient *next;
4402
4403   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "client disconnected: %p\n", client);
4404   if (client == NULL)
4405   {
4406     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "   (SERVER DOWN)\n");
4407     return;
4408   }
4409
4410   c = clients_head;
4411   while (NULL != c)
4412   {
4413     if (c->handle != client)
4414     {
4415       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
4416                   "   ... searching %p (%u)\n",
4417                   c->handle, c->id);
4418       c = c->next;
4419       continue;
4420     }
4421     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "matching client found (%u)\n",
4422                 c->id);
4423     GNUNET_SERVER_client_drop (c->handle);
4424     c->shutting_down = GNUNET_YES;
4425     GNUNET_CONTAINER_multihashmap32_iterate (c->own_tunnels,
4426                                              &tunnel_destroy_iterator, c);
4427     GNUNET_CONTAINER_multihashmap32_iterate (c->incoming_tunnels,
4428                                              &tunnel_destroy_iterator, c);
4429     GNUNET_CONTAINER_multihashmap32_destroy (c->own_tunnels);
4430     GNUNET_CONTAINER_multihashmap32_destroy (c->incoming_tunnels);
4431
4432     if (NULL != c->ports)
4433       GNUNET_CONTAINER_multihashmap32_destroy (c->ports);
4434     next = c->next;
4435     GNUNET_CONTAINER_DLL_remove (clients_head, clients_tail, c);
4436     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  CLIENT FREE at %p\n", c);
4437     GNUNET_free (c);
4438     GNUNET_STATISTICS_update (stats, "# clients", -1, GNUNET_NO);
4439     c = next;
4440   }
4441   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "done!\n");
4442   return;
4443 }
4444
4445
4446 /**
4447  * Handler for new clients
4448  *
4449  * @param cls closure
4450  * @param client identification of the client
4451  * @param message the actual message, which includes messages the client wants
4452  */
4453 static void
4454 handle_local_new_client (void *cls, struct GNUNET_SERVER_Client *client,
4455                          const struct GNUNET_MessageHeader *message)
4456 {
4457   struct GNUNET_MESH_ClientConnect *cc_msg;
4458   struct MeshClient *c;
4459   unsigned int size;
4460   uint32_t *p;
4461   unsigned int i;
4462
4463   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "new client connected %p\n", client);
4464
4465   /* Check data sanity */
4466   size = ntohs (message->size) - sizeof (struct GNUNET_MESH_ClientConnect);
4467   cc_msg = (struct GNUNET_MESH_ClientConnect *) message;
4468   if (0 != (size % sizeof (uint32_t)))
4469   {
4470     GNUNET_break (0);
4471     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
4472     return;
4473   }
4474   size /= sizeof (uint32_t);
4475
4476   /* Create new client structure */
4477   c = GNUNET_malloc (sizeof (struct MeshClient));
4478   c->id = next_client_id++; /* overflow not important: just for debug */
4479   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  client id %u\n", c->id);
4480   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  client has %u ports\n", size);
4481   c->handle = client;
4482   GNUNET_SERVER_client_keep (client);
4483   if (size > 0)
4484   {
4485     uint32_t u32;
4486
4487     p = (uint32_t *) &cc_msg[1];
4488     c->ports = GNUNET_CONTAINER_multihashmap32_create (size);
4489     for (i = 0; i < size; i++)
4490     {
4491       u32 = ntohl (p[i]);
4492       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "    port: %u\n", u32);
4493
4494       /* store in client's hashmap */
4495       GNUNET_CONTAINER_multihashmap32_put (c->ports, u32, c,
4496                                            GNUNET_CONTAINER_MULTIHASHMAPOPTION_UNIQUE_FAST);
4497       /* store in global hashmap */
4498       /* FIXME only allow one client to have the port open,
4499        *       have a backup hashmap with waiting clients */
4500       GNUNET_CONTAINER_multihashmap32_put (ports, u32, c,
4501                                            GNUNET_CONTAINER_MULTIHASHMAPOPTION_MULTIPLE);
4502     }
4503   }
4504
4505   GNUNET_CONTAINER_DLL_insert (clients_head, clients_tail, c);
4506   c->own_tunnels = GNUNET_CONTAINER_multihashmap32_create (32);
4507   c->incoming_tunnels = GNUNET_CONTAINER_multihashmap32_create (32);
4508   GNUNET_SERVER_notification_context_add (nc, client);
4509   GNUNET_STATISTICS_update (stats, "# clients", 1, GNUNET_NO);
4510
4511   GNUNET_SERVER_receive_done (client, GNUNET_OK);
4512   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "new client processed\n");
4513 }
4514
4515
4516 /**
4517  * Handler for requests of new tunnels
4518  *
4519  * @param cls Closure.
4520  * @param client Identification of the client.
4521  * @param message The actual message.
4522  */
4523 static void
4524 handle_local_tunnel_create (void *cls, struct GNUNET_SERVER_Client *client,
4525                             const struct GNUNET_MessageHeader *message)
4526 {
4527   struct GNUNET_MESH_TunnelMessage *t_msg;
4528   struct MeshPeerInfo *peer_info;
4529   struct MeshTunnel *t;
4530   struct MeshClient *c;
4531   MESH_TunnelNumber tid;
4532
4533   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "new tunnel requested\n");
4534
4535   /* Sanity check for client registration */
4536   if (NULL == (c = client_get (client)))
4537   {
4538     GNUNET_break (0);
4539     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
4540     return;
4541   }
4542   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  by client %u\n", c->id);
4543
4544   /* Message size sanity check */
4545   if (sizeof (struct GNUNET_MESH_TunnelMessage) != ntohs (message->size))
4546   {
4547     GNUNET_break (0);
4548     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
4549     return;
4550   }
4551
4552   t_msg = (struct GNUNET_MESH_TunnelMessage *) message;
4553   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  towards %s\n",
4554               GNUNET_i2s (&t_msg->peer));
4555   /* Sanity check for tunnel numbering */
4556   tid = ntohl (t_msg->tunnel_id);
4557   if (0 == (tid & GNUNET_MESH_LOCAL_TUNNEL_ID_CLI))
4558   {
4559     GNUNET_break (0);
4560     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
4561     return;
4562   }
4563   /* Sanity check for duplicate tunnel IDs */
4564   if (NULL != tunnel_get_by_local_id (c, tid))
4565   {
4566     GNUNET_break (0);
4567     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
4568     return;
4569   }
4570
4571   /* Create tunnel */
4572   while (NULL != tunnel_get_by_pi (myid, next_tid))
4573     next_tid = (next_tid + 1) & ~GNUNET_MESH_LOCAL_TUNNEL_ID_CLI;
4574   t = tunnel_new (myid, next_tid, c, tid);
4575   next_tid = (next_tid + 1) & ~GNUNET_MESH_LOCAL_TUNNEL_ID_CLI;
4576   if (NULL == t)
4577   {
4578     GNUNET_break (0);
4579     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
4580     return;
4581   }
4582   t->port = ntohl (t_msg->port);
4583   tunnel_set_options (t, ntohl (t_msg->options));
4584   if (GNUNET_YES == t->reliable)
4585   {
4586     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "!!! Reliable\n");
4587     t->fwd_rel = GNUNET_malloc (sizeof (struct MeshTunnelReliability));
4588     t->fwd_rel->t = t;
4589     t->fwd_rel->expected_delay = MESH_RETRANSMIT_TIME;
4590   }
4591
4592   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "CREATED TUNNEL %s[%x]:%u (%x)\n",
4593               GNUNET_i2s (&my_full_id), t->id.tid, t->port, t->local_tid);
4594
4595   peer_info = peer_get (&t_msg->peer);
4596   peer_info_add_tunnel (peer_info, t);
4597   peer_connect (peer_info, t);
4598   GNUNET_SERVER_receive_done (client, GNUNET_OK);
4599   return;
4600 }
4601
4602
4603 /**
4604  * Handler for requests of deleting tunnels
4605  *
4606  * @param cls closure
4607  * @param client identification of the client
4608  * @param message the actual message
4609  */
4610 static void
4611 handle_local_tunnel_destroy (void *cls, struct GNUNET_SERVER_Client *client,
4612                              const struct GNUNET_MessageHeader *message)
4613 {
4614   struct GNUNET_MESH_TunnelMessage *tunnel_msg;
4615   struct MeshClient *c;
4616   struct MeshTunnel *t;
4617   MESH_TunnelNumber tid;
4618
4619   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
4620               "Got a DESTROY TUNNEL from client!\n");
4621
4622   /* Sanity check for client registration */
4623   if (NULL == (c = client_get (client)))
4624   {
4625     GNUNET_break (0);
4626     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
4627     return;
4628   }
4629   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  by client %u\n", c->id);
4630
4631   /* Message sanity check */
4632   if (sizeof (struct GNUNET_MESH_TunnelMessage) != ntohs (message->size))
4633   {
4634     GNUNET_break (0);
4635     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
4636     return;
4637   }
4638
4639   tunnel_msg = (struct GNUNET_MESH_TunnelMessage *) message;
4640
4641   /* Retrieve tunnel */
4642   tid = ntohl (tunnel_msg->tunnel_id);
4643   t = tunnel_get_by_local_id(c, tid);
4644   if (NULL == t)
4645   {
4646     GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "  tunnel %X not found\n", tid);
4647     GNUNET_break (0);
4648     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
4649     return;
4650   }
4651
4652   /* Cleanup after the tunnel */
4653   client_delete_tunnel (c, t);
4654   if (c == t->client)
4655   {
4656     t->client = NULL;
4657   }
4658   if (c == t->owner)
4659   {
4660     peer_info_remove_tunnel (peer_get_short (t->dest), t);
4661     t->owner = NULL;
4662   }
4663
4664   /* The tunnel will be destroyed when the last message is transmitted. */
4665   tunnel_destroy_empty (t);
4666
4667   GNUNET_SERVER_receive_done (client, GNUNET_OK);
4668   return;
4669 }
4670
4671
4672 /**
4673  * Handler for client traffic
4674  *
4675  * @param cls closure
4676  * @param client identification of the client
4677  * @param message the actual message
4678  */
4679 static void
4680 handle_local_data (void *cls, struct GNUNET_SERVER_Client *client,
4681                    const struct GNUNET_MessageHeader *message)
4682 {
4683   struct GNUNET_MESH_LocalData *data_msg;
4684   struct MeshClient *c;
4685   struct MeshTunnel *t;
4686   struct MeshFlowControl *fc;
4687   MESH_TunnelNumber tid;
4688   size_t size;
4689
4690   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
4691               "Got data from a client!\n");
4692
4693   /* Sanity check for client registration */
4694   if (NULL == (c = client_get (client)))
4695   {
4696     GNUNET_break (0);
4697     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
4698     return;
4699   }
4700   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  by client %u\n", c->id);
4701
4702   data_msg = (struct GNUNET_MESH_LocalData *) message;
4703
4704   /* Sanity check for message size */
4705   size = ntohs (message->size) - sizeof (struct GNUNET_MESH_LocalData);
4706   if (size < sizeof (struct GNUNET_MessageHeader))
4707   {
4708     GNUNET_break (0);
4709     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
4710     return;
4711   }
4712
4713   /* Tunnel exists? */
4714   tid = ntohl (data_msg->tid);
4715   if (tid < GNUNET_MESH_LOCAL_TUNNEL_ID_CLI)
4716   {
4717     GNUNET_break (0);
4718     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
4719     return;
4720   }
4721   t = tunnel_get_by_local_id (c, tid);
4722   if (NULL == t)
4723   {
4724     GNUNET_break (0);
4725     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
4726     return;
4727   }
4728
4729   /* Is the client in the tunnel? */
4730   if ( !( (tid < GNUNET_MESH_LOCAL_TUNNEL_ID_SERV &&
4731            t->owner &&
4732            t->owner->handle == client)
4733          ||
4734           (tid >= GNUNET_MESH_LOCAL_TUNNEL_ID_SERV &&
4735            t->client && 
4736            t->client->handle == client) ) )
4737   {
4738     GNUNET_break (0);
4739     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
4740     return;
4741   }
4742
4743   /* Ok, everything is correct, send the message
4744    * (pretend we got it from a mesh peer)
4745    */
4746   {
4747     struct GNUNET_MESH_Data *payload;
4748     char cbuf[sizeof(struct GNUNET_MESH_Data) + size];
4749
4750     fc = tid < GNUNET_MESH_LOCAL_TUNNEL_ID_SERV ? &t->prev_fc : &t->next_fc;
4751     if (GNUNET_YES == t->reliable)
4752     {
4753       struct MeshTunnelReliability *rel;
4754       struct MeshReliableMessage *copy;
4755
4756       copy = GNUNET_malloc (sizeof (struct MeshReliableMessage)
4757                             + sizeof(struct GNUNET_MESH_Data)
4758                             + size);
4759       copy->id = fc->last_pid_recv + 1;
4760       copy->timestamp = GNUNET_TIME_absolute_get ();
4761       rel = (tid < GNUNET_MESH_LOCAL_TUNNEL_ID_SERV) ? t->fwd_rel : t->bck_rel;
4762       copy->rel = rel;
4763       GNUNET_CONTAINER_DLL_insert_tail (rel->head_sent, rel->tail_sent, copy);
4764       if (GNUNET_SCHEDULER_NO_TASK == rel->retry_task)
4765       {
4766         rel->retry_timer = rel->expected_delay;
4767         rel->retry_task =
4768             GNUNET_SCHEDULER_add_delayed (rel->retry_timer,
4769                                           &tunnel_retransmit_message,
4770                                           rel);
4771       }
4772       payload = (struct GNUNET_MESH_Data *) &copy[1];
4773     }
4774     else
4775     {
4776       payload = (struct GNUNET_MESH_Data *) cbuf;
4777     }
4778     memcpy (&payload[1], &data_msg[1], size);
4779     payload->header.size = htons (sizeof (struct GNUNET_MESH_Data) + size);
4780     payload->header.type = htons (tid < GNUNET_MESH_LOCAL_TUNNEL_ID_SERV ?
4781                                   GNUNET_MESSAGE_TYPE_MESH_UNICAST :
4782                                   GNUNET_MESSAGE_TYPE_MESH_TO_ORIGIN);
4783     GNUNET_PEER_resolve(t->id.oid, &payload->oid);;
4784     payload->tid = htonl (t->id.tid);
4785     payload->ttl = htonl (default_ttl);
4786     payload->pid = htonl (fc->last_pid_recv + 1);
4787     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
4788                 "  calling generic handler...\n");
4789     if (tid < GNUNET_MESH_LOCAL_TUNNEL_ID_SERV)
4790       handle_mesh_unicast (NULL, &my_full_id, &payload->header);
4791     else
4792       handle_mesh_to_orig (NULL, &my_full_id, &payload->header);
4793   }
4794   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "receive done OK\n");
4795   GNUNET_SERVER_receive_done (client, GNUNET_OK);
4796
4797   return;
4798 }
4799
4800
4801 /**
4802  * Handler for client's ACKs for payload traffic.
4803  *
4804  * @param cls Closure (unused).
4805  * @param client Identification of the client.
4806  * @param message The actual message.
4807  */
4808 static void
4809 handle_local_ack (void *cls, struct GNUNET_SERVER_Client *client,
4810                   const struct GNUNET_MessageHeader *message)
4811 {
4812   struct GNUNET_MESH_LocalAck *msg;
4813   struct MeshTunnel *t;
4814   struct MeshClient *c;
4815   MESH_TunnelNumber tid;
4816
4817   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Got a local ACK\n");
4818   /* Sanity check for client registration */
4819   if (NULL == (c = client_get (client)))
4820   {
4821     GNUNET_break (0);
4822     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
4823     return;
4824   }
4825   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  by client %u\n", c->id);
4826
4827   msg = (struct GNUNET_MESH_LocalAck *) message;
4828
4829   /* Tunnel exists? */
4830   tid = ntohl (msg->tunnel_id);
4831   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  on tunnel %X\n", tid);
4832   t = tunnel_get_by_local_id (c, tid);
4833   if (NULL == t)
4834   {
4835     GNUNET_break (0);
4836     GNUNET_log (GNUNET_ERROR_TYPE_WARNING, "Tunnel %X unknown.\n", tid);
4837     GNUNET_log (GNUNET_ERROR_TYPE_WARNING, "  for client %u.\n", c->id);
4838     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
4839     return;
4840   }
4841
4842   /* Does client own tunnel? I.E: Is this an ACK for BCK traffic? */
4843   if (t->owner == c)
4844   {
4845     /* The client owns the tunnel, ACK is for data to_origin, send BCK ACK. */
4846     t->prev_fc.last_ack_recv++;
4847     tunnel_send_bck_ack (t, GNUNET_MESSAGE_TYPE_MESH_LOCAL_ACK);
4848   }
4849   else
4850   {
4851     /* The client doesn't own the tunnel, this ACK is for FWD traffic. */
4852     t->next_fc.last_ack_recv++;
4853     tunnel_send_fwd_ack (t, GNUNET_MESSAGE_TYPE_MESH_LOCAL_ACK);
4854   }
4855
4856   GNUNET_SERVER_receive_done (client, GNUNET_OK);
4857
4858   return;
4859 }
4860
4861
4862
4863 /**
4864  * Iterator over all tunnels to send a monitoring client info about each tunnel.
4865  *
4866  * @param cls Closure (client handle).
4867  * @param key Key (hashed tunnel ID, unused).
4868  * @param value Tunnel info.
4869  *
4870  * @return GNUNET_YES, to keep iterating.
4871  */
4872 static int
4873 monitor_all_tunnels_iterator (void *cls,
4874                               const struct GNUNET_HashCode * key,
4875                               void *value)
4876 {
4877   struct GNUNET_SERVER_Client *client = cls;
4878   struct MeshTunnel *t = value;
4879   struct GNUNET_MESH_LocalMonitor *msg;
4880
4881   msg = GNUNET_malloc (sizeof(struct GNUNET_MESH_LocalMonitor));
4882   GNUNET_PEER_resolve(t->id.oid, &msg->owner);
4883   msg->tunnel_id = htonl (t->id.tid);
4884   msg->header.size = htons (sizeof (struct GNUNET_MESH_LocalMonitor));
4885   msg->header.type = htons (GNUNET_MESSAGE_TYPE_MESH_LOCAL_INFO_TUNNELS);
4886   GNUNET_PEER_resolve (t->dest, &msg->destination);
4887
4888   GNUNET_log (GNUNET_ERROR_TYPE_INFO,
4889               "*  sending info about tunnel %s [%u]\n",
4890               GNUNET_i2s (&msg->owner), t->id.tid);
4891
4892   GNUNET_SERVER_notification_context_unicast (nc, client,
4893                                               &msg->header, GNUNET_NO);
4894   return GNUNET_YES;
4895 }
4896
4897
4898 /**
4899  * Handler for client's MONITOR request.
4900  *
4901  * @param cls Closure (unused).
4902  * @param client Identification of the client.
4903  * @param message The actual message.
4904  */
4905 static void
4906 handle_local_get_tunnels (void *cls, struct GNUNET_SERVER_Client *client,
4907                           const struct GNUNET_MessageHeader *message)
4908 {
4909   struct MeshClient *c;
4910
4911   /* Sanity check for client registration */
4912   if (NULL == (c = client_get (client)))
4913   {
4914     GNUNET_break (0);
4915     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
4916     return;
4917   }
4918
4919   GNUNET_log (GNUNET_ERROR_TYPE_INFO,
4920               "Received get tunnels request from client %u\n",
4921               c->id);
4922   GNUNET_CONTAINER_multihashmap_iterate (tunnels,
4923                                          monitor_all_tunnels_iterator,
4924                                          client);
4925   GNUNET_log (GNUNET_ERROR_TYPE_INFO,
4926               "Get tunnels request from client %u completed\n",
4927               c->id);
4928   GNUNET_SERVER_receive_done (client, GNUNET_OK);
4929 }
4930
4931
4932 /**
4933  * Handler for client's MONITOR_TUNNEL request.
4934  *
4935  * @param cls Closure (unused).
4936  * @param client Identification of the client.
4937  * @param message The actual message.
4938  */
4939 static void
4940 handle_local_show_tunnel (void *cls, struct GNUNET_SERVER_Client *client,
4941                           const struct GNUNET_MessageHeader *message)
4942 {
4943   const struct GNUNET_MESH_LocalMonitor *msg;
4944   struct GNUNET_MESH_LocalMonitor *resp;
4945   struct MeshClient *c;
4946   struct MeshTunnel *t;
4947
4948   /* Sanity check for client registration */
4949   if (NULL == (c = client_get (client)))
4950   {
4951     GNUNET_break (0);
4952     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
4953     return;
4954   }
4955
4956   msg = (struct GNUNET_MESH_LocalMonitor *) message;
4957   GNUNET_log (GNUNET_ERROR_TYPE_INFO,
4958               "Received tunnel info request from client %u for tunnel %s[%X]\n",
4959               c->id,
4960               &msg->owner,
4961               ntohl (msg->tunnel_id));
4962   t = tunnel_get (&msg->owner, ntohl (msg->tunnel_id));
4963   if (NULL == t)
4964   {
4965     /* We don't know the tunnel FIXME */
4966     struct GNUNET_MESH_LocalMonitor warn;
4967
4968     warn = *msg;
4969     GNUNET_SERVER_notification_context_unicast (nc, client,
4970                                                 &warn.header,
4971                                                 GNUNET_NO);
4972     GNUNET_SERVER_receive_done (client, GNUNET_OK);
4973     return;
4974   }
4975
4976   /* Initialize context */
4977   resp = GNUNET_malloc (sizeof (struct GNUNET_MESH_LocalMonitor));
4978   *resp = *msg;
4979   GNUNET_PEER_resolve (t->dest, &resp->destination);
4980   resp->header.size = htons (sizeof (struct GNUNET_MESH_LocalMonitor));
4981   GNUNET_SERVER_notification_context_unicast (nc, c->handle,
4982                                               &resp->header, GNUNET_NO);
4983   GNUNET_free (resp);
4984
4985   GNUNET_log (GNUNET_ERROR_TYPE_INFO,
4986               "Monitor tunnel request from client %u completed\n",
4987               c->id);
4988   GNUNET_SERVER_receive_done (client, GNUNET_OK);
4989 }
4990
4991
4992 /**
4993  * Functions to handle messages from clients
4994  */
4995 static struct GNUNET_SERVER_MessageHandler client_handlers[] = {
4996   {&handle_local_new_client, NULL,
4997    GNUNET_MESSAGE_TYPE_MESH_LOCAL_CONNECT, 0},
4998   {&handle_local_tunnel_create, NULL,
4999    GNUNET_MESSAGE_TYPE_MESH_LOCAL_TUNNEL_CREATE,
5000    sizeof (struct GNUNET_MESH_TunnelMessage)},
5001   {&handle_local_tunnel_destroy, NULL,
5002    GNUNET_MESSAGE_TYPE_MESH_LOCAL_TUNNEL_DESTROY,
5003    sizeof (struct GNUNET_MESH_TunnelMessage)},
5004   {&handle_local_data, NULL,
5005    GNUNET_MESSAGE_TYPE_MESH_LOCAL_DATA, 0},
5006   {&handle_local_ack, NULL,
5007    GNUNET_MESSAGE_TYPE_MESH_LOCAL_ACK,
5008    sizeof (struct GNUNET_MESH_LocalAck)},
5009   {&handle_local_get_tunnels, NULL,
5010    GNUNET_MESSAGE_TYPE_MESH_LOCAL_INFO_TUNNELS,
5011    sizeof (struct GNUNET_MessageHeader)},
5012   {&handle_local_show_tunnel, NULL,
5013    GNUNET_MESSAGE_TYPE_MESH_LOCAL_INFO_TUNNEL,
5014      sizeof (struct GNUNET_MESH_LocalMonitor)},
5015   {NULL, NULL, 0, 0}
5016 };
5017
5018
5019 /**
5020  * Method called whenever a given peer connects.
5021  *
5022  * @param cls closure
5023  * @param peer peer identity this notification is about
5024  */
5025 static void
5026 core_connect (void *cls, const struct GNUNET_PeerIdentity *peer)
5027 {
5028   struct MeshPeerInfo *peer_info;
5029   struct MeshPeerPath *path;
5030
5031   DEBUG_CONN ("Peer connected\n");
5032   DEBUG_CONN ("     %s\n", GNUNET_i2s (&my_full_id));
5033   peer_info = peer_get (peer);
5034   if (myid == peer_info->id)
5035   {
5036     DEBUG_CONN ("     (self)\n");
5037     path = path_new (1);
5038   }
5039   else
5040   {
5041     DEBUG_CONN ("     %s\n", GNUNET_i2s (peer));
5042     path = path_new (2);
5043     path->peers[1] = peer_info->id;
5044     GNUNET_PEER_change_rc (peer_info->id, 1);
5045     GNUNET_STATISTICS_update (stats, "# peers", 1, GNUNET_NO);
5046   }
5047   path->peers[0] = myid;
5048   GNUNET_PEER_change_rc (myid, 1);
5049   peer_info_add_path (peer_info, path, GNUNET_YES);
5050   return;
5051 }
5052
5053
5054 /**
5055  * Method called whenever a peer disconnects.
5056  *
5057  * @param cls closure
5058  * @param peer peer identity this notification is about
5059  */
5060 static void
5061 core_disconnect (void *cls, const struct GNUNET_PeerIdentity *peer)
5062 {
5063   struct MeshPeerInfo *pi;
5064   struct MeshPeerQueue *q;
5065   struct MeshPeerQueue *n;
5066
5067   DEBUG_CONN ("Peer disconnected\n");
5068   pi = GNUNET_CONTAINER_multihashmap_get (peers, &peer->hashPubKey);
5069   if (NULL == pi)
5070   {
5071     GNUNET_break (0);
5072     return;
5073   }
5074   q = pi->queue_head;
5075   while (NULL != q)
5076   {
5077       n = q->next;
5078       /* TODO try to reroute this traffic instead */
5079       queue_destroy(q, GNUNET_YES);
5080       q = n;
5081   }
5082   if (NULL != pi->core_transmit)
5083   {
5084     GNUNET_CORE_notify_transmit_ready_cancel(pi->core_transmit);
5085     pi->core_transmit = NULL;
5086   }
5087     peer_remove_path (pi, pi->id, myid);
5088   if (myid == pi->id)
5089   {
5090     DEBUG_CONN ("     (self)\n");
5091   }
5092   GNUNET_STATISTICS_update (stats, "# peers", -1, GNUNET_NO);
5093   return;
5094 }
5095
5096
5097 /**
5098  * Install server (service) handlers and start listening to clients.
5099  */
5100 static void
5101 server_init (void)
5102 {
5103   GNUNET_SERVER_add_handlers (server_handle, client_handlers);
5104   GNUNET_SERVER_disconnect_notify (server_handle,
5105                                    &handle_local_client_disconnect, NULL);
5106   nc = GNUNET_SERVER_notification_context_create (server_handle, 1);
5107
5108   clients_head = NULL;
5109   clients_tail = NULL;
5110   next_client_id = 0;
5111   GNUNET_SERVER_resume (server_handle);
5112 }
5113
5114
5115 /**
5116  * To be called on core init/fail.
5117  *
5118  * @param cls Closure (config)
5119  * @param server handle to the server for this service
5120  * @param identity the public identity of this peer
5121  */
5122 static void
5123 core_init (void *cls, struct GNUNET_CORE_Handle *server,
5124            const struct GNUNET_PeerIdentity *identity)
5125 {
5126   const struct GNUNET_CONFIGURATION_Handle *c = cls;
5127   static int i = 0;
5128
5129   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Core init\n");
5130   GNUNET_break (core_handle == server);
5131   if (0 != memcmp (identity, &my_full_id, sizeof (my_full_id)) ||
5132     NULL == server)
5133   {
5134     GNUNET_log (GNUNET_ERROR_TYPE_ERROR, _("Wrong CORE service\n"));
5135     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
5136                 " core id %s\n",
5137                 GNUNET_i2s (identity));
5138     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
5139                 " my id %s\n",
5140                 GNUNET_i2s (&my_full_id));
5141     GNUNET_CORE_disconnect (core_handle);
5142     core_handle = GNUNET_CORE_connect (c, /* Main configuration */
5143                                        NULL,      /* Closure passed to MESH functions */
5144                                        &core_init,        /* Call core_init once connected */
5145                                        &core_connect,     /* Handle connects */
5146                                        &core_disconnect,  /* remove peers on disconnects */
5147                                        NULL,      /* Don't notify about all incoming messages */
5148                                        GNUNET_NO, /* For header only in notification */
5149                                        NULL,      /* Don't notify about all outbound messages */
5150                                        GNUNET_NO, /* For header-only out notification */
5151                                        core_handlers);    /* Register these handlers */
5152     if (10 < i++)
5153       GNUNET_abort();
5154   }
5155   server_init ();
5156   return;
5157 }
5158
5159
5160 /******************************************************************************/
5161 /************************      MAIN FUNCTIONS      ****************************/
5162 /******************************************************************************/
5163
5164 /**
5165  * Iterator over tunnel hash map entries to destroy the tunnel during shutdown.
5166  *
5167  * @param cls closure
5168  * @param key current key code
5169  * @param value value in the hash map
5170  * @return GNUNET_YES if we should continue to iterate,
5171  *         GNUNET_NO if not.
5172  */
5173 static int
5174 shutdown_tunnel (void *cls, const struct GNUNET_HashCode * key, void *value)
5175 {
5176   struct MeshTunnel *t = value;
5177
5178   tunnel_destroy (t);
5179   return GNUNET_YES;
5180 }
5181
5182 /**
5183  * Iterator over peer hash map entries to destroy the tunnel during shutdown.
5184  *
5185  * @param cls closure
5186  * @param key current key code
5187  * @param value value in the hash map
5188  * @return GNUNET_YES if we should continue to iterate,
5189  *         GNUNET_NO if not.
5190  */
5191 static int
5192 shutdown_peer (void *cls, const struct GNUNET_HashCode * key, void *value)
5193 {
5194   struct MeshPeerInfo *p = value;
5195   struct MeshPeerQueue *q;
5196   struct MeshPeerQueue *n;
5197
5198   q = p->queue_head;
5199   while (NULL != q)
5200   {
5201       n = q->next;
5202       if (q->peer == p)
5203       {
5204         queue_destroy(q, GNUNET_YES);
5205       }
5206       q = n;
5207   }
5208   peer_info_destroy (p);
5209   return GNUNET_YES;
5210 }
5211
5212
5213 /**
5214  * Task run during shutdown.
5215  *
5216  * @param cls unused
5217  * @param tc unused
5218  */
5219 static void
5220 shutdown_task (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
5221 {
5222   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "shutting down\n");
5223
5224   if (core_handle != NULL)
5225   {
5226     GNUNET_CORE_disconnect (core_handle);
5227     core_handle = NULL;
5228   }
5229   GNUNET_CONTAINER_multihashmap_iterate (tunnels, &shutdown_tunnel, NULL);
5230   GNUNET_CONTAINER_multihashmap_iterate (peers, &shutdown_peer, NULL);
5231   if (dht_handle != NULL)
5232   {
5233     GNUNET_DHT_disconnect (dht_handle);
5234     dht_handle = NULL;
5235   }
5236   if (nc != NULL)
5237   {
5238     GNUNET_SERVER_notification_context_destroy (nc);
5239     nc = NULL;
5240   }
5241   if (GNUNET_SCHEDULER_NO_TASK != announce_id_task)
5242   {
5243     GNUNET_SCHEDULER_cancel (announce_id_task);
5244     announce_id_task = GNUNET_SCHEDULER_NO_TASK;
5245   }
5246   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "shut down\n");
5247 }
5248
5249
5250 /**
5251  * Process mesh requests.
5252  *
5253  * @param cls closure
5254  * @param server the initialized server
5255  * @param c configuration to use
5256  */
5257 static void
5258 run (void *cls, struct GNUNET_SERVER_Handle *server,
5259      const struct GNUNET_CONFIGURATION_Handle *c)
5260 {
5261   char *keyfile;
5262   struct GNUNET_CRYPTO_EccPrivateKey *pk;
5263
5264   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "starting to run\n");
5265   server_handle = server;
5266   GNUNET_SERVER_suspend (server_handle);
5267
5268   if (GNUNET_OK !=
5269       GNUNET_CONFIGURATION_get_value_filename (c, "PEER", "PRIVATE_KEY",
5270                                                &keyfile))
5271   {
5272     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
5273                 _
5274                 ("%s service is lacking key configuration settings (%s).  Exiting.\n"),
5275                 "mesh", "peer/privatekey");
5276     GNUNET_SCHEDULER_shutdown ();
5277     return;
5278   }
5279
5280   if (GNUNET_OK !=
5281       GNUNET_CONFIGURATION_get_value_time (c, "MESH", "REFRESH_PATH_TIME",
5282                                            &refresh_path_time))
5283   {
5284     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
5285                 _
5286                 ("%s service is lacking key configuration settings (%s).  Exiting.\n"),
5287                 "mesh", "refresh path time");
5288     GNUNET_SCHEDULER_shutdown ();
5289     return;
5290   }
5291
5292   if (GNUNET_OK !=
5293       GNUNET_CONFIGURATION_get_value_time (c, "MESH", "ID_ANNOUNCE_TIME",
5294                                            &id_announce_time))
5295   {
5296     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
5297                 _
5298                 ("%s service is lacking key configuration settings (%s).  Exiting.\n"),
5299                 "mesh", "id announce time");
5300     GNUNET_SCHEDULER_shutdown ();
5301     return;
5302   }
5303
5304   if (GNUNET_OK !=
5305       GNUNET_CONFIGURATION_get_value_time (c, "MESH", "CONNECT_TIMEOUT",
5306                                            &connect_timeout))
5307   {
5308     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
5309                 _
5310                 ("%s service is lacking key configuration settings (%s).  Exiting.\n"),
5311                 "mesh", "connect timeout");
5312     GNUNET_SCHEDULER_shutdown ();
5313     return;
5314   }
5315
5316   if (GNUNET_OK !=
5317       GNUNET_CONFIGURATION_get_value_number (c, "MESH", "MAX_MSGS_QUEUE",
5318                                              &max_msgs_queue))
5319   {
5320     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
5321                 _
5322                 ("%s service is lacking key configuration settings (%s).  Exiting.\n"),
5323                 "mesh", "max msgs queue");
5324     GNUNET_SCHEDULER_shutdown ();
5325     return;
5326   }
5327
5328   if (GNUNET_OK !=
5329       GNUNET_CONFIGURATION_get_value_number (c, "MESH", "MAX_TUNNELS",
5330                                              &max_tunnels))
5331   {
5332     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
5333                 _
5334                 ("%s service is lacking key configuration settings (%s).  Exiting.\n"),
5335                 "mesh", "max tunnels");
5336     GNUNET_SCHEDULER_shutdown ();
5337     return;
5338   }
5339
5340   if (GNUNET_OK !=
5341       GNUNET_CONFIGURATION_get_value_number (c, "MESH", "DEFAULT_TTL",
5342                                              &default_ttl))
5343   {
5344     GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
5345                 _
5346                 ("%s service is lacking key configuration settings (%s). Using default (%u).\n"),
5347                 "mesh", "default ttl", 64);
5348     default_ttl = 64;
5349   }
5350
5351   if (GNUNET_OK !=
5352       GNUNET_CONFIGURATION_get_value_number (c, "MESH", "MAX_PEERS",
5353                                              &max_peers))
5354   {
5355     GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
5356                 _("%s service is lacking key configuration settings (%s). Using default (%u).\n"),
5357                 "mesh", "max peers", 1000);
5358     max_peers = 1000;
5359   }
5360
5361   if (GNUNET_OK !=
5362       GNUNET_CONFIGURATION_get_value_number (c, "MESH", "DROP_PERCENT",
5363                                              &drop_percent))
5364   {
5365     drop_percent = 0;
5366   }
5367   else
5368   {
5369     GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
5370                 "Mesh is running with drop mode enabled. "
5371                 "This is NOT a good idea! "
5372                 "Remove the DROP_PERCENT option from your configuration.\n");
5373   }
5374
5375   if (GNUNET_OK !=
5376       GNUNET_CONFIGURATION_get_value_number (c, "MESH", "DHT_REPLICATION_LEVEL",
5377                                              &dht_replication_level))
5378   {
5379     GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
5380                 _
5381                 ("%s service is lacking key configuration settings (%s). Using default (%u).\n"),
5382                 "mesh", "dht replication level", 3);
5383     dht_replication_level = 3;
5384   }
5385
5386   tunnels = GNUNET_CONTAINER_multihashmap_create (32, GNUNET_NO);
5387   incoming_tunnels = GNUNET_CONTAINER_multihashmap32_create (32);
5388   peers = GNUNET_CONTAINER_multihashmap_create (32, GNUNET_NO);
5389   ports = GNUNET_CONTAINER_multihashmap32_create (32);
5390
5391   dht_handle = GNUNET_DHT_connect (c, 64);
5392   if (NULL == dht_handle)
5393   {
5394     GNUNET_break (0);
5395   }
5396   stats = GNUNET_STATISTICS_create ("mesh", c);
5397
5398   /* Scheduled the task to clean up when shutdown is called */
5399   GNUNET_SCHEDULER_add_delayed (GNUNET_TIME_UNIT_FOREVER_REL, &shutdown_task,
5400                                 NULL);
5401   pk = GNUNET_CRYPTO_ecc_key_create_from_file (keyfile);
5402   GNUNET_free (keyfile);
5403   GNUNET_assert (NULL != pk);
5404   my_private_key = pk;
5405   GNUNET_CRYPTO_ecc_key_get_public (my_private_key, &my_public_key);
5406   GNUNET_CRYPTO_hash (&my_public_key, sizeof (my_public_key),
5407                       &my_full_id.hashPubKey);
5408   myid = GNUNET_PEER_intern (&my_full_id);
5409   GNUNET_log (GNUNET_ERROR_TYPE_INFO,
5410               "Mesh for peer [%s] starting\n",
5411               GNUNET_i2s(&my_full_id));
5412
5413   core_handle = GNUNET_CORE_connect (c, /* Main configuration */
5414                                      NULL,      /* Closure passed to MESH functions */
5415                                      &core_init,        /* Call core_init once connected */
5416                                      &core_connect,     /* Handle connects */
5417                                      &core_disconnect,  /* remove peers on disconnects */
5418                                      NULL,      /* Don't notify about all incoming messages */
5419                                      GNUNET_NO, /* For header only in notification */
5420                                      NULL,      /* Don't notify about all outbound messages */
5421                                      GNUNET_NO, /* For header-only out notification */
5422                                      core_handlers);    /* Register these handlers */
5423   if (NULL == core_handle)
5424   {
5425     GNUNET_break (0);
5426     GNUNET_SCHEDULER_shutdown ();
5427     return;
5428   }
5429   next_tid = 0;
5430   next_local_tid = GNUNET_MESH_LOCAL_TUNNEL_ID_SERV;
5431   announce_id_task = GNUNET_SCHEDULER_add_now (&announce_id, cls);
5432   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Mesh service running\n");
5433 }
5434
5435
5436 /**
5437  * The main function for the mesh service.
5438  *
5439  * @param argc number of arguments from the command line
5440  * @param argv command line arguments
5441  * @return 0 ok, 1 on error
5442  */
5443 int
5444 main (int argc, char *const *argv)
5445 {
5446   int ret;
5447   int r;
5448
5449   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "main()\n");
5450   r = GNUNET_SERVICE_run (argc, argv, "mesh", GNUNET_SERVICE_OPTION_NONE, &run,
5451                           NULL);
5452   ret = (GNUNET_OK == r) ? 0 : 1;
5453   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "main() END\n");
5454
5455   INTERVAL_SHOW;
5456
5457   GNUNET_log (GNUNET_ERROR_TYPE_INFO,
5458               "Mesh for peer [%s] FWD ACKs %u, BCK ACKs %u\n",
5459               GNUNET_i2s(&my_full_id), debug_fwd_ack, debug_bck_ack);
5460
5461   return ret;
5462 }