removing legacy send functions from plugins and renaming new send function
[oweals/gnunet.git] / src / transport / plugin_transport_udp.c
1 /*
2      This file is part of GNUnet
3      (C) 2010, 2011 Christian Grothoff (and other contributing authors)
4
5      GNUnet is free software; you can redistribute it and/or modify
6      it under the terms of the GNU General Public License as published
7      by the Free Software Foundation; either version 3, or (at your
8      option) any later version.
9
10      GNUnet is distributed in the hope that it will be useful, but
11      WITHOUT ANY WARRANTY; without even the implied warranty of
12      MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13      General Public License for more details.
14
15      You should have received a copy of the GNU General Public License
16      along with GNUnet; see the file COPYING.  If not, write to the
17      Free Software Foundation, Inc., 59 Temple Place - Suite 330,
18      Boston, MA 02111-1307, USA.
19 */
20
21 /**
22  * @file transport/plugin_transport_udp.c
23  * @brief Implementation of the UDP transport protocol
24  * @author Christian Grothoff
25  * @author Nathan Evans
26  * @author Matthias Wachs
27  */
28 #include "platform.h"
29 #include "plugin_transport_udp.h"
30 #include "gnunet_hello_lib.h"
31 #include "gnunet_util_lib.h"
32 #include "gnunet_fragmentation_lib.h"
33 #include "gnunet_nat_lib.h"
34 #include "gnunet_protocols.h"
35 #include "gnunet_resolver_service.h"
36 #include "gnunet_signatures.h"
37 #include "gnunet_constants.h"
38 #include "gnunet_statistics_service.h"
39 #include "gnunet_transport_service.h"
40 #include "gnunet_transport_plugin.h"
41 #include "transport.h"
42
43 #define LOG(kind,...) GNUNET_log_from (kind, "transport-udp", __VA_ARGS__)
44
45
46 /**
47  * Number of messages we can defragment in parallel.  We only really
48  * defragment 1 message at a time, but if messages get re-ordered, we
49  * may want to keep knowledge about the previous message to avoid
50  * discarding the current message in favor of a single fragment of a
51  * previous message.  3 should be good since we don't expect massive
52  * message reorderings with UDP.
53  */
54 #define UDP_MAX_MESSAGES_IN_DEFRAG 3
55
56 /**
57  * We keep a defragmentation queue per sender address.  How many
58  * sender addresses do we support at the same time? Memory consumption
59  * is roughly a factor of 32k * UDP_MAX_MESSAGES_IN_DEFRAG times this
60  * value. (So 128 corresponds to 12 MB and should suffice for
61  * connecting to roughly 128 peers via UDP).
62  */
63 #define UDP_MAX_SENDER_ADDRESSES_WITH_DEFRAG 128
64
65
66
67 /**
68  * Closure for 'append_port'.
69  */
70 struct PrettyPrinterContext
71 {
72   /**
73    * Function to call with the result.
74    */
75   GNUNET_TRANSPORT_AddressStringCallback asc;
76
77   /**
78    * Clsoure for 'asc'.
79    */
80   void *asc_cls;
81
82   /**
83    * Port to add after the IP address.
84    */
85   uint16_t port;
86 };
87
88 struct Session
89 {
90   /**
91    * Which peer is this session for?
92    */
93   struct GNUNET_PeerIdentity target;
94
95   /**
96    * Address of the other peer
97    */
98   const struct sockaddr *sock_addr;
99
100   size_t addrlen;
101
102   /**
103    * Desired delay for next sending we send to other peer
104    */
105   struct GNUNET_TIME_Relative flow_delay_for_other_peer;
106
107   /**
108    * Desired delay for next sending we received from other peer
109    */
110   struct GNUNET_TIME_Absolute flow_delay_from_other_peer;
111
112   /**
113    * expected delay for ACKs
114    */
115   struct GNUNET_TIME_Relative last_expected_delay;
116
117
118   struct GNUNET_ATS_Information ats;
119
120   struct FragmentationContext * frag_ctx;
121 };
122
123
124 struct SessionCompareContext
125 {
126   struct Session *res;
127   const struct GNUNET_HELLO_Address *addr;
128 };
129
130
131 /**
132  * Closure for 'process_inbound_tokenized_messages'
133  */
134 struct SourceInformation
135 {
136   /**
137    * Sender identity.
138    */
139   struct GNUNET_PeerIdentity sender;
140
141   /**
142    * Source address.
143    */
144   const void *arg;
145
146   /**
147    * Number of bytes in source address.
148    */
149   size_t args;
150
151   struct Session *session;
152 };
153
154
155 /**
156  * Closure for 'find_receive_context'.
157  */
158 struct FindReceiveContext
159 {
160   /**
161    * Where to store the result.
162    */
163   struct DefragContext *rc;
164
165   /**
166    * Address to find.
167    */
168   const struct sockaddr *addr;
169
170   /**
171    * Number of bytes in 'addr'.
172    */
173   socklen_t addr_len;
174
175   struct Session *session;
176 };
177
178
179
180 /**
181  * Data structure to track defragmentation contexts based
182  * on the source of the UDP traffic.
183  */
184 struct DefragContext
185 {
186
187   /**
188    * Defragmentation context.
189    */
190   struct GNUNET_DEFRAGMENT_Context *defrag;
191
192   /**
193    * Source address this receive context is for (allocated at the
194    * end of the struct).
195    */
196   const struct sockaddr *src_addr;
197
198   /**
199    * Reference to master plugin struct.
200    */
201   struct Plugin *plugin;
202
203   /**
204    * Node in the defrag heap.
205    */
206   struct GNUNET_CONTAINER_HeapNode *hnode;
207
208   /**
209    * Length of 'src_addr'
210    */
211   size_t addr_len;
212 };
213
214
215
216 /**
217  * Closure for 'process_inbound_tokenized_messages'
218  */
219 struct FragmentationContext
220 {
221   struct FragmentationContext * next;
222   struct FragmentationContext * prev;
223
224   struct Plugin * plugin;
225   struct GNUNET_FRAGMENT_Context * frag;
226   struct Session * session;
227
228   struct GNUNET_TIME_Absolute timeout;
229
230
231   /**
232    * Function to call upon completion of the transmission.
233    */
234   GNUNET_TRANSPORT_TransmitContinuation cont;
235
236   /**
237    * Closure for 'cont'.
238    */
239   void *cont_cls;
240
241   size_t bytes_to_send;
242 };
243
244
245 struct UDPMessageWrapper
246 {
247   struct Session *session;
248   struct UDPMessageWrapper *prev;
249   struct UDPMessageWrapper *next;
250   char *udp;
251   size_t msg_size;
252
253   struct GNUNET_TIME_Absolute timeout;
254
255   /**
256    * Function to call upon completion of the transmission.
257    */
258   GNUNET_TRANSPORT_TransmitContinuation cont;
259
260   /**
261    * Closure for 'cont'.
262    */
263   void *cont_cls;
264
265   struct FragmentationContext *frag_ctx;
266
267 };
268
269
270 /**
271  * UDP ACK Message-Packet header (after defragmentation).
272  */
273 struct UDP_ACK_Message
274 {
275   /**
276    * Message header.
277    */
278   struct GNUNET_MessageHeader header;
279
280   /**
281    * Desired delay for flow control
282    */
283   uint32_t delay;
284
285   /**
286    * What is the identity of the sender
287    */
288   struct GNUNET_PeerIdentity sender;
289
290 };
291
292
293
294 /**
295  * Function called for a quick conversion of the binary address to
296  * a numeric address.  Note that the caller must not free the
297  * address and that the next call to this function is allowed
298  * to override the address again.
299  *
300  * @param cls closure
301  * @param addr binary address
302  * @param addrlen length of the address
303  * @return string representing the same address
304  */
305 const char *
306 udp_address_to_string (void *cls, const void *addr, size_t addrlen)
307 {
308   static char rbuf[INET6_ADDRSTRLEN + 10];
309   char buf[INET6_ADDRSTRLEN];
310   const void *sb;
311   struct in_addr a4;
312   struct in6_addr a6;
313   const struct IPv4UdpAddress *t4;
314   const struct IPv6UdpAddress *t6;
315   int af;
316   uint16_t port;
317
318   if (addrlen == sizeof (struct IPv6UdpAddress))
319   {
320     t6 = addr;
321     af = AF_INET6;
322     port = ntohs (t6->u6_port);
323     memcpy (&a6, &t6->ipv6_addr, sizeof (a6));
324     sb = &a6;
325   }
326   else if (addrlen == sizeof (struct IPv4UdpAddress))
327   {
328     t4 = addr;
329     af = AF_INET;
330     port = ntohs (t4->u4_port);
331     memcpy (&a4, &t4->ipv4_addr, sizeof (a4));
332     sb = &a4;
333   }
334   else
335   {
336     GNUNET_break_op (0);
337     return NULL;
338   }
339   inet_ntop (af, sb, buf, INET6_ADDRSTRLEN);
340   GNUNET_snprintf (rbuf, sizeof (rbuf), (af == AF_INET6) ? "[%s]:%u" : "%s:%u",
341                    buf, port);
342   return rbuf;
343 }
344
345
346 /**
347  * Append our port and forward the result.
348  *
349  * @param cls a 'struct PrettyPrinterContext'
350  * @param hostname result from DNS resolver
351  */
352 static void
353 append_port (void *cls, const char *hostname)
354 {
355   struct PrettyPrinterContext *ppc = cls;
356   char *ret;
357
358   if (hostname == NULL)
359   {
360     ppc->asc (ppc->asc_cls, NULL);
361     GNUNET_free (ppc);
362     return;
363   }
364   GNUNET_asprintf (&ret, "%s:%d", hostname, ppc->port);
365   ppc->asc (ppc->asc_cls, ret);
366   GNUNET_free (ret);
367 }
368
369
370 /**
371  * Convert the transports address to a nice, human-readable
372  * format.
373  *
374  * @param cls closure
375  * @param type name of the transport that generated the address
376  * @param addr one of the addresses of the host, NULL for the last address
377  *        the specific address format depends on the transport
378  * @param addrlen length of the address
379  * @param numeric should (IP) addresses be displayed in numeric form?
380  * @param timeout after how long should we give up?
381  * @param asc function to call on each string
382  * @param asc_cls closure for asc
383  */
384 static void
385 udp_plugin_address_pretty_printer (void *cls, const char *type,
386                                    const void *addr, size_t addrlen,
387                                    int numeric,
388                                    struct GNUNET_TIME_Relative timeout,
389                                    GNUNET_TRANSPORT_AddressStringCallback asc,
390                                    void *asc_cls)
391 {
392   struct PrettyPrinterContext *ppc;
393   const void *sb;
394   size_t sbs;
395   struct sockaddr_in a4;
396   struct sockaddr_in6 a6;
397   const struct IPv4UdpAddress *u4;
398   const struct IPv6UdpAddress *u6;
399   uint16_t port;
400
401   if (addrlen == sizeof (struct IPv6UdpAddress))
402   {
403     u6 = addr;
404     memset (&a6, 0, sizeof (a6));
405     a6.sin6_family = AF_INET6;
406 #if HAVE_SOCKADDR_IN_SIN_LEN
407     a6.sin6_len = sizeof (a6);
408 #endif
409     a6.sin6_port = u6->u6_port;
410     memcpy (&a6.sin6_addr, &u6->ipv6_addr, sizeof (struct in6_addr));
411     port = ntohs (u6->u6_port);
412     sb = &a6;
413     sbs = sizeof (a6);
414   }
415   else if (addrlen == sizeof (struct IPv4UdpAddress))
416   {
417     u4 = addr;
418     memset (&a4, 0, sizeof (a4));
419     a4.sin_family = AF_INET;
420 #if HAVE_SOCKADDR_IN_SIN_LEN
421     a4.sin_len = sizeof (a4);
422 #endif
423     a4.sin_port = u4->u4_port;
424     a4.sin_addr.s_addr = u4->ipv4_addr;
425     port = ntohs (u4->u4_port);
426     sb = &a4;
427     sbs = sizeof (a4);
428   }
429   else
430   {
431     /* invalid address */
432     GNUNET_break_op (0);
433     asc (asc_cls, NULL);
434     return;
435   }
436   ppc = GNUNET_malloc (sizeof (struct PrettyPrinterContext));
437   ppc->asc = asc;
438   ppc->asc_cls = asc_cls;
439   ppc->port = port;
440   GNUNET_RESOLVER_hostname_get (sb, sbs, !numeric, timeout, &append_port, ppc);
441 }
442
443
444 /**
445  * Check if the given port is plausible (must be either our listen
446  * port or our advertised port).  If it is neither, we return
447  * GNUNET_SYSERR.
448  *
449  * @param plugin global variables
450  * @param in_port port number to check
451  * @return GNUNET_OK if port is either open_port or adv_port
452  */
453 static int
454 check_port (struct Plugin *plugin, uint16_t in_port)
455 {
456   if ((in_port == plugin->port) || (in_port == plugin->aport))
457     return GNUNET_OK;
458   return GNUNET_SYSERR;
459 }
460
461
462
463 /**
464  * Function that will be called to check if a binary address for this
465  * plugin is well-formed and corresponds to an address for THIS peer
466  * (as per our configuration).  Naturally, if absolutely necessary,
467  * plugins can be a bit conservative in their answer, but in general
468  * plugins should make sure that the address does not redirect
469  * traffic to a 3rd party that might try to man-in-the-middle our
470  * traffic.
471  *
472  * @param cls closure, should be our handle to the Plugin
473  * @param addr pointer to the address
474  * @param addrlen length of addr
475  * @return GNUNET_OK if this is a plausible address for this peer
476  *         and transport, GNUNET_SYSERR if not
477  *
478  */
479 static int
480 udp_plugin_check_address (void *cls, const void *addr, size_t addrlen)
481 {
482   struct Plugin *plugin = cls;
483   struct IPv4UdpAddress *v4;
484   struct IPv6UdpAddress *v6;
485
486   if ((addrlen != sizeof (struct IPv4UdpAddress)) &&
487       (addrlen != sizeof (struct IPv6UdpAddress)))
488   {
489     GNUNET_break_op (0);
490     return GNUNET_SYSERR;
491   }
492   if (addrlen == sizeof (struct IPv4UdpAddress))
493   {
494     v4 = (struct IPv4UdpAddress *) addr;
495     if (GNUNET_OK != check_port (plugin, ntohs (v4->u4_port)))
496       return GNUNET_SYSERR;
497     if (GNUNET_OK !=
498         GNUNET_NAT_test_address (plugin->nat, &v4->ipv4_addr,
499                                  sizeof (struct in_addr)))
500       return GNUNET_SYSERR;
501   }
502   else
503   {
504     v6 = (struct IPv6UdpAddress *) addr;
505     if (IN6_IS_ADDR_LINKLOCAL (&v6->ipv6_addr))
506     {
507       GNUNET_break_op (0);
508       return GNUNET_SYSERR;
509     }
510     if (GNUNET_OK != check_port (plugin, ntohs (v6->u6_port)))
511       return GNUNET_SYSERR;
512     if (GNUNET_OK !=
513         GNUNET_NAT_test_address (plugin->nat, &v6->ipv6_addr,
514                                  sizeof (struct in6_addr)))
515       return GNUNET_SYSERR;
516   }
517   return GNUNET_OK;
518 }
519
520
521 /**
522  * Destroy a session, plugin is being unloaded.
523  *
524  * @param cls unused
525  * @param key hash of public key of target peer
526  * @param value a 'struct PeerSession*' to clean up
527  * @return GNUNET_OK (continue to iterate)
528  */
529 static int
530 disconnect_and_free_it (void *cls, const GNUNET_HashCode * key, void *value)
531 {
532   struct Plugin *plugin = cls;
533   struct Session *s = value;
534   struct UDPMessageWrapper *udpw;
535
536 #if DEBUG_UDP
537   LOG (GNUNET_ERROR_TYPE_DEBUG,
538        "Session %p to peer `%s' address ended \n",
539          s,
540          GNUNET_i2s (&s->target),
541          GNUNET_a2s (s->sock_addr, s->addrlen));
542 #endif
543   plugin->env->session_end (plugin->env->cls, &s->target, s);
544
545   if (s->frag_ctx != NULL)
546   {
547     GNUNET_FRAGMENT_context_destroy(s->frag_ctx->frag);
548     GNUNET_free (s->frag_ctx);
549     s->frag_ctx = NULL;
550   }
551
552   udpw = plugin->msg_head;
553   while (udpw != NULL)
554   {
555     if (udpw->session == s)
556     {
557       GNUNET_CONTAINER_DLL_remove(plugin->msg_head, plugin->msg_tail, udpw);
558
559       if (udpw->cont != NULL)
560         udpw->cont (udpw->cont_cls, &s->target, GNUNET_SYSERR);
561       GNUNET_free (udpw);
562     }
563     udpw = plugin->msg_head;
564   }
565
566   GNUNET_assert (GNUNET_YES ==
567                  GNUNET_CONTAINER_multihashmap_remove (plugin->sessions,
568                                                        &s->target.hashPubKey,
569                                                        s));
570
571
572   GNUNET_free (s);
573   return GNUNET_OK;
574 }
575
576
577 /**
578  * Disconnect from a remote node.  Clean up session if we have one for this peer
579  *
580  * @param cls closure for this call (should be handle to Plugin)
581  * @param target the peeridentity of the peer to disconnect
582  * @return GNUNET_OK on success, GNUNET_SYSERR if the operation failed
583  */
584 static void
585 udp_disconnect (void *cls, const struct GNUNET_PeerIdentity *target)
586 {
587   struct Plugin *plugin = cls;
588   GNUNET_assert (plugin != NULL);
589
590   GNUNET_assert (target != NULL);
591 #if DEBUG_UDP
592   LOG (GNUNET_ERROR_TYPE_DEBUG,
593        "Disconnecting from peer `%s'\n", GNUNET_i2s (target));
594 #endif
595   /* Clean up sessions */
596   GNUNET_CONTAINER_multihashmap_get_multiple (plugin->sessions, &target->hashPubKey, &disconnect_and_free_it, plugin);
597
598   LOG (GNUNET_ERROR_TYPE_DEBUG,
599        "FREEED SESSIONS from peer `%s'\n", GNUNET_i2s (target));
600 }
601
602 static struct Session *
603 create_session (struct Plugin *plugin, const struct GNUNET_PeerIdentity *target,
604                 const void *addr, size_t addrlen,
605                 GNUNET_TRANSPORT_TransmitContinuation cont, void *cont_cls)
606 {
607   struct Session *s;
608   const struct IPv4UdpAddress *t4;
609   const struct IPv6UdpAddress *t6;
610   struct sockaddr_in *v4;
611   struct sockaddr_in6 *v6;
612   size_t len;
613
614   switch (addrlen)
615   {
616   case sizeof (struct IPv4UdpAddress):
617     if (NULL == plugin->sockv4)
618     {
619       return NULL;
620     }
621     t4 = addr;
622     s = GNUNET_malloc (sizeof (struct Session) + sizeof (struct sockaddr_in));
623     len = sizeof (struct sockaddr_in);
624     v4 = (struct sockaddr_in *) &s[1];
625     v4->sin_family = AF_INET;
626 #if HAVE_SOCKADDR_IN_SIN_LEN
627     v4->sin_len = sizeof (struct sockaddr_in);
628 #endif
629     v4->sin_port = t4->u4_port;
630     v4->sin_addr.s_addr = t4->ipv4_addr;
631     s->ats = plugin->env->get_address_type (plugin->env->cls, (const struct sockaddr *) v4, sizeof (struct sockaddr_in));
632     break;
633   case sizeof (struct IPv6UdpAddress):
634     if (NULL == plugin->sockv6)
635     {
636       return NULL;
637     }
638     t6 = addr;
639     s =
640         GNUNET_malloc (sizeof (struct Session) + sizeof (struct sockaddr_in6));
641     len = sizeof (struct sockaddr_in6);
642     v6 = (struct sockaddr_in6 *) &s[1];
643     v6->sin6_family = AF_INET6;
644 #if HAVE_SOCKADDR_IN_SIN_LEN
645     v6->sin6_len = sizeof (struct sockaddr_in6);
646 #endif
647     v6->sin6_port = t6->u6_port;
648     v6->sin6_addr = t6->ipv6_addr;
649     s->ats = plugin->env->get_address_type (plugin->env->cls, (const struct sockaddr *) v6, sizeof (struct sockaddr_in6));
650     break;
651   default:
652     /* Must have a valid address to send to */
653     GNUNET_break_op (0);
654     return NULL;
655   }
656
657   s->addrlen = len;
658   s->target = *target;
659   s->sock_addr = (const struct sockaddr *) &s[1];
660   s->flow_delay_for_other_peer = GNUNET_TIME_relative_get_zero();
661   s->flow_delay_from_other_peer = GNUNET_TIME_absolute_get_zero();
662   s->last_expected_delay = GNUNET_TIME_UNIT_SECONDS;
663
664   return s;
665 }
666
667 static int session_cmp_it (void *cls,
668                            const GNUNET_HashCode * key,
669                            void *value)
670 {
671   struct SessionCompareContext * cctx = cls;
672   const struct GNUNET_HELLO_Address *address = cctx->addr;
673   struct Session *s = value;
674
675   socklen_t s_addrlen = s->addrlen;
676
677 #if VERBOSE_UDP
678   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Comparing  address %s <-> %s\n",
679       udp_address_to_string (NULL, (void *) address->address, address->address_length),
680       GNUNET_a2s (s->sock_addr, s->addrlen));
681 #endif
682
683   if ((address->address_length == sizeof (struct IPv4UdpAddress)) &&
684       (s_addrlen == sizeof (struct sockaddr_in)))
685   {
686     struct IPv4UdpAddress * u4 = NULL;
687     u4 = (struct IPv4UdpAddress *) address->address;
688     const struct sockaddr_in *s4 = (const struct sockaddr_in *) s->sock_addr;
689     if ((0 == memcmp ((const void *) &u4->ipv4_addr,(const void *) &s4->sin_addr, sizeof (struct in_addr))) &&
690         (u4->u4_port == s4->sin_port))
691     {
692       cctx->res = s;
693       return GNUNET_NO;
694     }
695
696   }
697   if ((address->address_length == sizeof (struct IPv6UdpAddress)) &&
698       (s_addrlen == sizeof (struct sockaddr_in6)))
699   {
700     struct IPv6UdpAddress * u6 = NULL;
701     u6 = (struct IPv6UdpAddress *) address->address;
702     const struct sockaddr_in6 *s6 = (const struct sockaddr_in6 *) s->sock_addr;
703     if ((0 == memcmp (&u6->ipv6_addr, &s6->sin6_addr, sizeof (struct in6_addr))) &&
704         (u6->u6_port == s6->sin6_port))
705     {
706       cctx->res = s;
707       return GNUNET_NO;
708     }
709   }
710
711
712   return GNUNET_YES;
713 }
714
715
716 /**
717  * Creates a new outbound session the transport service will use to send data to the
718  * peer
719  *
720  * @param cls the plugin
721  * @param address the address
722  * @return the session or NULL of max connections exceeded
723  */
724 static struct Session *
725 udp_plugin_get_session (void *cls,
726                   const struct GNUNET_HELLO_Address *address)
727 {
728   struct Session * s = NULL;
729   struct Plugin * plugin = cls;
730
731   GNUNET_assert (plugin != NULL);
732   GNUNET_assert (address != NULL);
733
734   if ((address->address == NULL) ||
735       ((address->address_length != sizeof (struct IPv4UdpAddress)) &&
736       (address->address_length != sizeof (struct IPv6UdpAddress))))
737   {
738     GNUNET_break (0);
739     return NULL;
740   }
741
742   /* check if session already exists */
743   struct SessionCompareContext cctx;
744   cctx.addr = address;
745   cctx.res = NULL;
746 #if VERBOSE_UDP
747   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Looking for existing session for peer `%s' `%s' \n", GNUNET_i2s (&address->peer), udp_address_to_string(NULL, address->address, address->address_length));
748 #endif
749   GNUNET_CONTAINER_multihashmap_get_multiple(plugin->sessions, &address->peer.hashPubKey, session_cmp_it, &cctx);
750   if (cctx.res != NULL)
751   {
752 #if VERBOSE_UDP
753     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Found existing session %p\n", cctx.res);
754 #endif
755     return cctx.res;
756   }
757
758   /* otherwise create new */
759   s = create_session (plugin,
760       &address->peer,
761       address->address,
762       address->address_length,
763       NULL, NULL);
764 #if VERBOSE
765     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
766               "Creating new session %p for peer `%s' address `%s'\n",
767               s,
768               GNUNET_i2s(&address->peer),
769               udp_address_to_string(NULL,address->address,address->address_length));
770 #endif
771   GNUNET_assert (GNUNET_OK ==
772                  GNUNET_CONTAINER_multihashmap_put (plugin->sessions,
773                                                     &s->target.hashPubKey,
774                                                     s,
775                                                     GNUNET_CONTAINER_MULTIHASHMAPOPTION_MULTIPLE));
776
777   return s;
778 }
779
780 /**
781  * Function that is called with messages created by the fragmentation
782  * module.  In the case of the 'proc' callback of the
783  * GNUNET_FRAGMENT_context_create function, this function must
784  * eventually call 'GNUNET_FRAGMENT_context_transmission_done'.
785  *
786  * @param cls closure, the 'struct FragmentationContext'
787  * @param msg the message that was created
788  */
789 static void
790 enqueue_fragment (void *cls, const struct GNUNET_MessageHeader *msg)
791 {
792   struct FragmentationContext *frag_ctx = cls;
793   struct Plugin *plugin = frag_ctx->plugin;
794   struct UDPMessageWrapper * udpw;
795
796   size_t msg_len = ntohs (msg->size);
797
798 #if VERBOSE_UDP
799   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Enqueuing fragment with %u bytes %u\n", msg_len , sizeof (struct UDPMessageWrapper));
800 #endif
801
802   udpw = GNUNET_malloc (sizeof (struct UDPMessageWrapper) + msg_len);
803   udpw->session = frag_ctx->session;
804   udpw->udp = (char *) &udpw[1];
805
806   udpw->msg_size = msg_len;
807   udpw->cont = frag_ctx->cont;
808   udpw->cont_cls = frag_ctx->cont_cls;
809   udpw->timeout = frag_ctx->timeout;
810   udpw->frag_ctx = frag_ctx;
811   memcpy (udpw->udp, msg, msg_len);
812
813   GNUNET_CONTAINER_DLL_insert(plugin->msg_head, plugin->msg_tail, udpw);
814 }
815
816
817 /**
818  * Function that can be used by the transport service to transmit
819  * a message using the plugin.   Note that in the case of a
820  * peer disconnecting, the continuation MUST be called
821  * prior to the disconnect notification itself.  This function
822  * will be called with this peer's HELLO message to initiate
823  * a fresh connection to another peer.
824  *
825  * @param cls closure
826  * @param session which session must be used
827  * @param msgbuf the message to transmit
828  * @param msgbuf_size number of bytes in 'msgbuf'
829  * @param priority how important is the message (most plugins will
830  *                 ignore message priority and just FIFO)
831  * @param to how long to wait at most for the transmission (does not
832  *                require plugins to discard the message after the timeout,
833  *                just advisory for the desired delay; most plugins will ignore
834  *                this as well)
835  * @param cont continuation to call once the message has
836  *        been transmitted (or if the transport is ready
837  *        for the next transmission call; or if the
838  *        peer disconnected...); can be NULL
839  * @param cont_cls closure for cont
840  * @return number of bytes used (on the physical network, with overheads);
841  *         -1 on hard errors (i.e. address invalid); 0 is a legal value
842  *         and does NOT mean that the message was not transmitted (DV)
843  */
844 static ssize_t
845 udp_plugin_send (void *cls,
846                   struct Session *s,
847                   const char *msgbuf, size_t msgbuf_size,
848                   unsigned int priority,
849                   struct GNUNET_TIME_Relative to,
850                   GNUNET_TRANSPORT_TransmitContinuation cont, void *cont_cls)
851 {
852   struct Plugin *plugin = cls;
853   size_t mlen = msgbuf_size + sizeof (struct UDPMessage);
854
855   struct UDPMessageWrapper * udpw;
856   struct UDPMessage *udp;
857   char mbuf[mlen];
858   GNUNET_assert (plugin != NULL);
859   GNUNET_assert (s != NULL);
860
861   if (mlen >= GNUNET_SERVER_MAX_MESSAGE_SIZE)
862   {
863     GNUNET_break (0);
864     return GNUNET_SYSERR;
865   }
866
867   if (GNUNET_YES != GNUNET_CONTAINER_multihashmap_contains_value(plugin->sessions, &s->target.hashPubKey, s))
868   {
869     GNUNET_break (0);
870     return GNUNET_SYSERR;
871   }
872
873   LOG (GNUNET_ERROR_TYPE_DEBUG,
874        "UDP transmits %u-byte message to `%s' using address `%s'\n",
875          msgbuf_size,
876          GNUNET_i2s (&s->target),
877          GNUNET_a2s(s->sock_addr, s->addrlen));
878
879   /* Message */
880   udp = (struct UDPMessage *) mbuf;
881   udp->header.size = htons (mlen);
882   udp->header.type = htons (GNUNET_MESSAGE_TYPE_TRANSPORT_UDP_MESSAGE);
883   udp->reserved = htonl (0);
884   udp->sender = *plugin->env->my_identity;
885
886   if (mlen <= UDP_MTU)
887   {
888     udpw = GNUNET_malloc (sizeof (struct UDPMessageWrapper) + mlen);
889     udpw->session = s;
890     udpw->udp = (char *) &udpw[1];
891     udpw->msg_size = mlen;
892     udpw->timeout = GNUNET_TIME_absolute_add(GNUNET_TIME_absolute_get(), to);
893     udpw->cont = cont;
894     udpw->cont_cls = cont_cls;
895     udpw->frag_ctx = NULL;
896
897     memcpy (udpw->udp, udp, sizeof (struct UDPMessage));
898     memcpy (&udpw->udp[sizeof (struct UDPMessage)], msgbuf, msgbuf_size);
899
900     GNUNET_CONTAINER_DLL_insert(plugin->msg_head, plugin->msg_tail, udpw);
901   }
902   else
903   {
904     LOG (GNUNET_ERROR_TYPE_DEBUG,
905          "UDP has to fragment message \n");
906     if  (s->frag_ctx != NULL)
907       return GNUNET_SYSERR;
908     memcpy (&udp[1], msgbuf, msgbuf_size);
909     struct FragmentationContext * frag_ctx = GNUNET_malloc(sizeof (struct FragmentationContext));
910
911     frag_ctx->plugin = plugin;
912     frag_ctx->session = s;
913     frag_ctx->cont = cont;
914     frag_ctx->cont_cls = cont_cls;
915     frag_ctx->timeout = GNUNET_TIME_absolute_add(GNUNET_TIME_absolute_get(), to);
916     frag_ctx->bytes_to_send = mlen;
917     frag_ctx->frag = GNUNET_FRAGMENT_context_create (plugin->env->stats,
918               UDP_MTU,
919               &plugin->tracker,
920               s->last_expected_delay,
921               &udp->header,
922               &enqueue_fragment,
923               frag_ctx);
924
925     s->frag_ctx = frag_ctx;
926
927   }
928   return mlen;
929 }
930
931
932 /**
933  * Our external IP address/port mapping has changed.
934  *
935  * @param cls closure, the 'struct LocalAddrList'
936  * @param add_remove GNUNET_YES to mean the new public IP address, GNUNET_NO to mean
937  *     the previous (now invalid) one
938  * @param addr either the previous or the new public IP address
939  * @param addrlen actual lenght of the address
940  */
941 static void
942 udp_nat_port_map_callback (void *cls, int add_remove,
943                            const struct sockaddr *addr, socklen_t addrlen)
944 {
945   struct Plugin *plugin = cls;
946   struct IPv4UdpAddress u4;
947   struct IPv6UdpAddress u6;
948   void *arg;
949   size_t args;
950
951   /* convert 'addr' to our internal format */
952   switch (addr->sa_family)
953   {
954   case AF_INET:
955     GNUNET_assert (addrlen == sizeof (struct sockaddr_in));
956     u4.ipv4_addr = ((struct sockaddr_in *) addr)->sin_addr.s_addr;
957     u4.u4_port = ((struct sockaddr_in *) addr)->sin_port;
958     arg = &u4;
959     args = sizeof (u4);
960     break;
961   case AF_INET6:
962     GNUNET_assert (addrlen == sizeof (struct sockaddr_in6));
963     memcpy (&u6.ipv6_addr, &((struct sockaddr_in6 *) addr)->sin6_addr,
964             sizeof (struct in6_addr));
965     u6.u6_port = ((struct sockaddr_in6 *) addr)->sin6_port;
966     arg = &u6;
967     args = sizeof (u6);
968     break;
969   default:
970     GNUNET_break (0);
971     return;
972   }
973   /* modify our published address list */
974   plugin->env->notify_address (plugin->env->cls, add_remove, arg, args);
975 }
976
977
978
979 /**
980  * Message tokenizer has broken up an incomming message. Pass it on
981  * to the service.
982  *
983  * @param cls the 'struct Plugin'
984  * @param client the 'struct SourceInformation'
985  * @param hdr the actual message
986  */
987 static void
988 process_inbound_tokenized_messages (void *cls, void *client,
989                                     const struct GNUNET_MessageHeader *hdr)
990 {
991   struct Plugin *plugin = cls;
992   struct SourceInformation *si = client;
993   struct GNUNET_ATS_Information ats[2];
994   struct GNUNET_TIME_Relative delay;
995
996   GNUNET_assert (si->session != NULL);
997   /* setup ATS */
998   ats[0].type = htonl (GNUNET_ATS_QUALITY_NET_DISTANCE);
999   ats[0].value = htonl (1);
1000   ats[1] = si->session->ats;
1001   GNUNET_break (ntohl(ats[1].value) != GNUNET_ATS_NET_UNSPECIFIED);
1002
1003   delay = plugin->env->receive (plugin->env->cls,
1004                 &si->sender,
1005                 hdr,
1006                 (const struct GNUNET_ATS_Information *) &ats, 2,
1007                 NULL,
1008                 si->arg,
1009                 si->args);
1010   si->session->flow_delay_for_other_peer = delay;
1011 }
1012
1013
1014 /**
1015  * We've received a UDP Message.  Process it (pass contents to main service).
1016  *
1017  * @param plugin plugin context
1018  * @param msg the message
1019  * @param sender_addr sender address
1020  * @param sender_addr_len number of bytes in sender_addr
1021  */
1022 static void
1023 process_udp_message (struct Plugin *plugin, const struct UDPMessage *msg,
1024                      const struct sockaddr *sender_addr,
1025                      socklen_t sender_addr_len)
1026 {
1027   struct SourceInformation si;
1028   struct Session * s = NULL;
1029   struct IPv4UdpAddress u4;
1030   struct IPv6UdpAddress u6;
1031   struct GNUNET_ATS_Information ats;
1032   const void *arg;
1033   size_t args;
1034
1035   if (0 != ntohl (msg->reserved))
1036   {
1037     GNUNET_break_op (0);
1038     return;
1039   }
1040   if (ntohs (msg->header.size) <
1041       sizeof (struct GNUNET_MessageHeader) + sizeof (struct UDPMessage))
1042   {
1043     GNUNET_break_op (0);
1044     return;
1045   }
1046
1047   ats.type = htonl (GNUNET_ATS_NETWORK_TYPE);
1048   ats.value = htonl (GNUNET_ATS_NET_UNSPECIFIED);
1049   /* convert address */
1050   switch (sender_addr->sa_family)
1051   {
1052   case AF_INET:
1053     GNUNET_assert (sender_addr_len == sizeof (struct sockaddr_in));
1054     u4.ipv4_addr = ((struct sockaddr_in *) sender_addr)->sin_addr.s_addr;
1055     u4.u4_port = ((struct sockaddr_in *) sender_addr)->sin_port;
1056     arg = &u4;
1057     args = sizeof (u4);
1058     break;
1059   case AF_INET6:
1060     GNUNET_assert (sender_addr_len == sizeof (struct sockaddr_in6));
1061     u6.ipv6_addr = ((struct sockaddr_in6 *) sender_addr)->sin6_addr;
1062     u6.u6_port = ((struct sockaddr_in6 *) sender_addr)->sin6_port;
1063     arg = &u6;
1064     args = sizeof (u6);
1065     break;
1066   default:
1067     GNUNET_break (0);
1068     return;
1069   }
1070 #if DEBUG_UDP
1071   LOG (GNUNET_ERROR_TYPE_DEBUG,
1072        "Received message with %u bytes from peer `%s' at `%s'\n",
1073        (unsigned int) ntohs (msg->header.size), GNUNET_i2s (&msg->sender),
1074        GNUNET_a2s (sender_addr, sender_addr_len));
1075 #endif
1076
1077   struct GNUNET_HELLO_Address * address = GNUNET_HELLO_address_allocate(&msg->sender, "udp", arg, args);
1078   s = udp_plugin_get_session(plugin, address);
1079   GNUNET_free (address);
1080
1081   /* iterate over all embedded messages */
1082   si.session = s;
1083   si.sender = msg->sender;
1084   si.arg = arg;
1085   si.args = args;
1086
1087   GNUNET_SERVER_mst_receive (plugin->mst, &si, (const char *) &msg[1],
1088                              ntohs (msg->header.size) -
1089                              sizeof (struct UDPMessage), GNUNET_YES, GNUNET_NO);
1090 }
1091
1092
1093 /**
1094  * Scan the heap for a receive context with the given address.
1095  *
1096  * @param cls the 'struct FindReceiveContext'
1097  * @param node internal node of the heap
1098  * @param element value stored at the node (a 'struct ReceiveContext')
1099  * @param cost cost associated with the node
1100  * @return GNUNET_YES if we should continue to iterate,
1101  *         GNUNET_NO if not.
1102  */
1103 static int
1104 find_receive_context (void *cls, struct GNUNET_CONTAINER_HeapNode *node,
1105                       void *element, GNUNET_CONTAINER_HeapCostType cost)
1106 {
1107   struct FindReceiveContext *frc = cls;
1108   struct DefragContext *e = element;
1109
1110   if ((frc->addr_len == e->addr_len) &&
1111       (0 == memcmp (frc->addr, e->src_addr, frc->addr_len)))
1112   {
1113     frc->rc = e;
1114     return GNUNET_NO;
1115   }
1116   return GNUNET_YES;
1117 }
1118
1119
1120 /**
1121  * Process a defragmented message.
1122  *
1123  * @param cls the 'struct ReceiveContext'
1124  * @param msg the message
1125  */
1126 static void
1127 fragment_msg_proc (void *cls, const struct GNUNET_MessageHeader *msg)
1128 {
1129   struct DefragContext *rc = cls;
1130
1131   if (ntohs (msg->type) != GNUNET_MESSAGE_TYPE_TRANSPORT_UDP_MESSAGE)
1132   {
1133     GNUNET_break (0);
1134     return;
1135   }
1136   if (ntohs (msg->size) < sizeof (struct UDPMessage))
1137   {
1138     GNUNET_break (0);
1139     return;
1140   }
1141   process_udp_message (rc->plugin, (const struct UDPMessage *) msg,
1142                        rc->src_addr, rc->addr_len);
1143 }
1144
1145 struct LookupContext
1146 {
1147   const struct sockaddr * addr;
1148   size_t addrlen;
1149
1150   struct Session *res;
1151 };
1152
1153 static int
1154 lookup_session_by_addr_it (void *cls, const GNUNET_HashCode * key, void *value)
1155 {
1156   struct LookupContext *l_ctx = cls;
1157   struct Session * s = value;
1158
1159   if ((s->addrlen == l_ctx->addrlen) &&
1160       (0 == memcmp (s->sock_addr, l_ctx->addr, s->addrlen)))
1161   {
1162     l_ctx->res = s;
1163     return GNUNET_NO;
1164   }
1165   return GNUNET_YES;
1166 }
1167
1168 /**
1169  * Transmit an acknowledgement.
1170  *
1171  * @param cls the 'struct ReceiveContext'
1172  * @param id message ID (unused)
1173  * @param msg ack to transmit
1174  */
1175 static void
1176 ack_proc (void *cls, uint32_t id, const struct GNUNET_MessageHeader *msg)
1177 {
1178   struct DefragContext *rc = cls;
1179
1180   size_t msize = sizeof (struct UDP_ACK_Message) + ntohs (msg->size);
1181   struct UDP_ACK_Message *udp_ack;
1182   uint32_t delay = 0;
1183   struct UDPMessageWrapper *udpw;
1184   struct Session *s;
1185
1186   struct LookupContext l_ctx;
1187   l_ctx.addr = rc->src_addr;
1188   l_ctx.addrlen = rc->addr_len;
1189   l_ctx.res = NULL;
1190   GNUNET_CONTAINER_multihashmap_iterate (rc->plugin->sessions,
1191       &lookup_session_by_addr_it,
1192       &l_ctx);
1193   s = l_ctx.res;
1194
1195   GNUNET_assert (s != NULL);
1196
1197   if (s->flow_delay_for_other_peer.rel_value <= UINT32_MAX)
1198     delay = s->flow_delay_for_other_peer.rel_value;
1199
1200 #if DEBUG_UDP
1201   LOG (GNUNET_ERROR_TYPE_DEBUG,
1202        "Sending ACK to `%s' including delay of %u ms\n",
1203        GNUNET_a2s (rc->src_addr,
1204                    (rc->src_addr->sa_family ==
1205                     AF_INET) ? sizeof (struct sockaddr_in) : sizeof (struct
1206                                                                      sockaddr_in6)),
1207        delay);
1208 #endif
1209   udpw = GNUNET_malloc (sizeof (struct UDPMessageWrapper) + msize);
1210   udpw->cont = NULL;
1211   udpw->cont_cls = NULL;
1212   udpw->frag_ctx = NULL;
1213   udpw->msg_size = msize;
1214   udpw->session = s;
1215   udpw->timeout = GNUNET_TIME_absolute_get_forever();
1216   udpw->udp = (char *)&udpw[1];
1217
1218   udp_ack = (struct UDP_ACK_Message *) udpw->udp;
1219   udp_ack->header.size = htons ((uint16_t) msize);
1220   udp_ack->header.type = htons (GNUNET_MESSAGE_TYPE_TRANSPORT_UDP_ACK);
1221   udp_ack->delay = htonl (delay);
1222   udp_ack->sender = *rc->plugin->env->my_identity;
1223   memcpy (&udp_ack[1], msg, ntohs (msg->size));
1224
1225   GNUNET_CONTAINER_DLL_insert(rc->plugin->msg_head, rc->plugin->msg_tail, udpw);
1226 }
1227
1228
1229 static void read_process_msg (struct Plugin *plugin,
1230     const struct GNUNET_MessageHeader *msg,
1231     char *addr,
1232     socklen_t fromlen)
1233 {
1234   if (ntohs (msg->size) < sizeof (struct UDPMessage))
1235   {
1236     GNUNET_break_op (0);
1237     return;
1238   }
1239   process_udp_message (plugin, (const struct UDPMessage *) msg,
1240                        (const struct sockaddr *) addr, fromlen);
1241   return;
1242 }
1243
1244 static void read_process_ack (struct Plugin *plugin,
1245     const struct GNUNET_MessageHeader *msg,
1246     char *addr,
1247     socklen_t fromlen)
1248 {
1249   const struct GNUNET_MessageHeader *ack;
1250   const struct UDP_ACK_Message *udp_ack;
1251   struct LookupContext l_ctx;
1252   struct Session *s = NULL;
1253   struct GNUNET_TIME_Relative flow_delay;
1254
1255   if (ntohs (msg->size) <
1256       sizeof (struct UDP_ACK_Message) + sizeof (struct GNUNET_MessageHeader))
1257   {
1258     GNUNET_break_op (0);
1259     return;
1260   }
1261
1262   udp_ack = (const struct UDP_ACK_Message *) msg;
1263
1264   l_ctx.addr = (const struct sockaddr *) addr;
1265   l_ctx.addrlen = fromlen;
1266   l_ctx.res = NULL;
1267   GNUNET_CONTAINER_multihashmap_iterate (plugin->sessions,
1268       &lookup_session_by_addr_it,
1269       &l_ctx);
1270   s = l_ctx.res;
1271
1272   if ((s == NULL) || (s->frag_ctx == NULL))
1273     return;
1274
1275   flow_delay.rel_value = (uint64_t) ntohl (udp_ack->delay);
1276   LOG (GNUNET_ERROR_TYPE_DEBUG, "We received a sending delay of %llu\n",
1277        flow_delay.rel_value);
1278   s->flow_delay_from_other_peer =
1279       GNUNET_TIME_relative_to_absolute (flow_delay);
1280
1281   ack = (const struct GNUNET_MessageHeader *) &udp_ack[1];
1282   if (ntohs (ack->size) !=
1283       ntohs (msg->size) - sizeof (struct UDP_ACK_Message))
1284   {
1285     GNUNET_break_op (0);
1286     return;
1287   }
1288
1289   if (GNUNET_OK != GNUNET_FRAGMENT_process_ack (s->frag_ctx->frag, ack))
1290   {
1291 #if DEBUG_UDP
1292   LOG (GNUNET_ERROR_TYPE_DEBUG,
1293        "UDP processes %u-byte acknowledgement from `%s' at `%s'\n",
1294        (unsigned int) ntohs (msg->size), GNUNET_i2s (&udp_ack->sender),
1295        GNUNET_a2s ((const struct sockaddr *) addr, fromlen));
1296 #endif
1297     return;
1298   }
1299
1300 #if DEBUG_UDP
1301   LOG (GNUNET_ERROR_TYPE_DEBUG,
1302        "FULL MESSAGE ACKed\n",
1303        (unsigned int) ntohs (msg->size), GNUNET_i2s (&udp_ack->sender),
1304        GNUNET_a2s ((const struct sockaddr *) addr, fromlen));
1305 #endif
1306   s->last_expected_delay = GNUNET_FRAGMENT_context_destroy (s->frag_ctx->frag);
1307
1308   struct UDPMessageWrapper * udpw = plugin->msg_head;
1309   while (udpw!= NULL)
1310   {
1311     if ((udpw->frag_ctx != NULL) && (udpw->frag_ctx == s->frag_ctx))
1312     {
1313       GNUNET_CONTAINER_DLL_remove(plugin->msg_head, plugin->msg_tail, udpw);
1314       GNUNET_free (udpw);
1315     }
1316     udpw = udpw->next;
1317   }
1318
1319   if (s->frag_ctx->cont != NULL)
1320     s->frag_ctx->cont
1321     (s->frag_ctx->cont_cls, &udp_ack->sender, GNUNET_OK);
1322   GNUNET_free (s->frag_ctx);
1323   s->frag_ctx = NULL;
1324   return;
1325 }
1326
1327 static void read_process_fragment (struct Plugin *plugin,
1328     const struct GNUNET_MessageHeader *msg,
1329     char *addr,
1330     socklen_t fromlen)
1331 {
1332   struct DefragContext *d_ctx;
1333   struct GNUNET_TIME_Absolute now;
1334   struct FindReceiveContext frc;
1335
1336
1337   frc.rc = NULL;
1338   frc.addr = (const struct sockaddr *) addr;
1339   frc.addr_len = fromlen;
1340
1341 #if DEBUG_UDP
1342   LOG (GNUNET_ERROR_TYPE_DEBUG, "UDP processes %u-byte fragment from `%s'\n",
1343        (unsigned int) ntohs (msg->size),
1344        GNUNET_a2s ((const struct sockaddr *) addr, fromlen));
1345 #endif
1346
1347   /* Lookup existing receive context for this address */
1348   GNUNET_CONTAINER_heap_iterate (plugin->defrag_ctxs,
1349                                  &find_receive_context,
1350                                  &frc);
1351   now = GNUNET_TIME_absolute_get ();
1352   d_ctx = frc.rc;
1353
1354   if (d_ctx == NULL)
1355   {
1356     /* Create a new defragmentation context */
1357     d_ctx = GNUNET_malloc (sizeof (struct DefragContext) + fromlen);
1358     memcpy (&d_ctx[1], addr, fromlen);
1359     d_ctx->src_addr = (const struct sockaddr *) &d_ctx[1];
1360     d_ctx->addr_len = fromlen;
1361     d_ctx->plugin = plugin;
1362     d_ctx->defrag =
1363         GNUNET_DEFRAGMENT_context_create (plugin->env->stats, UDP_MTU,
1364                                           UDP_MAX_MESSAGES_IN_DEFRAG, d_ctx,
1365                                           &fragment_msg_proc, &ack_proc);
1366     d_ctx->hnode =
1367         GNUNET_CONTAINER_heap_insert (plugin->defrag_ctxs, d_ctx,
1368                                       (GNUNET_CONTAINER_HeapCostType)
1369                                       now.abs_value);
1370 #if DEBUG_UDP
1371   LOG (GNUNET_ERROR_TYPE_DEBUG, "Created new defragmentation context for %u-byte fragment from `%s'\n",
1372        (unsigned int) ntohs (msg->size),
1373        GNUNET_a2s ((const struct sockaddr *) addr, fromlen));
1374 #endif
1375   }
1376   else
1377   {
1378 #if DEBUG_UDP
1379   LOG (GNUNET_ERROR_TYPE_DEBUG, "Found existing defragmentation context for %u-byte fragment from `%s'\n",
1380        (unsigned int) ntohs (msg->size),
1381        GNUNET_a2s ((const struct sockaddr *) addr, fromlen));
1382 #endif
1383   }
1384
1385   if (GNUNET_OK == GNUNET_DEFRAGMENT_process_fragment (d_ctx->defrag, msg))
1386   {
1387     /* keep this 'rc' from expiring */
1388     GNUNET_CONTAINER_heap_update_cost (plugin->defrag_ctxs, d_ctx->hnode,
1389                                        (GNUNET_CONTAINER_HeapCostType)
1390                                        now.abs_value);
1391   }
1392   if (GNUNET_CONTAINER_heap_get_size (plugin->defrag_ctxs) >
1393       UDP_MAX_SENDER_ADDRESSES_WITH_DEFRAG)
1394   {
1395     /* remove 'rc' that was inactive the longest */
1396     d_ctx = GNUNET_CONTAINER_heap_remove_root (plugin->defrag_ctxs);
1397     GNUNET_assert (NULL != d_ctx);
1398     GNUNET_DEFRAGMENT_context_destroy (d_ctx->defrag);
1399     GNUNET_free (d_ctx);
1400   }
1401 }
1402
1403 /**
1404  * Read and process a message from the given socket.
1405  *
1406  * @param plugin the overall plugin
1407  * @param rsock socket to read from
1408  */
1409 static void
1410 udp_select_read (struct Plugin *plugin, struct GNUNET_NETWORK_Handle *rsock)
1411 {
1412   socklen_t fromlen;
1413   char addr[32];
1414   char buf[65536];
1415   ssize_t size;
1416   const struct GNUNET_MessageHeader *msg;
1417
1418   fromlen = sizeof (addr);
1419   memset (&addr, 0, sizeof (addr));
1420   size = GNUNET_NETWORK_socket_recvfrom (rsock, buf, sizeof (buf),
1421                                       (struct sockaddr *) &addr, &fromlen);
1422
1423   if (size < sizeof (struct GNUNET_MessageHeader))
1424   {
1425     GNUNET_break_op (0);
1426     return;
1427   }
1428   msg = (const struct GNUNET_MessageHeader *) buf;
1429
1430   LOG (GNUNET_ERROR_TYPE_DEBUG,
1431        "UDP received %u-byte message from `%s' type %i\n", (unsigned int) size,
1432        GNUNET_a2s ((const struct sockaddr *) addr, fromlen), ntohs (msg->type));
1433
1434   if (size != ntohs (msg->size))
1435   {
1436     GNUNET_break_op (0);
1437     return;
1438   }
1439
1440   switch (ntohs (msg->type))
1441   {
1442   case GNUNET_MESSAGE_TYPE_TRANSPORT_BROADCAST_BEACON:
1443     udp_broadcast_receive (plugin, &buf, size, addr, fromlen);
1444     return;
1445
1446   case GNUNET_MESSAGE_TYPE_TRANSPORT_UDP_MESSAGE:
1447     read_process_msg (plugin, msg, addr, fromlen);
1448     return;
1449
1450   case GNUNET_MESSAGE_TYPE_TRANSPORT_UDP_ACK:
1451     read_process_ack (plugin, msg, addr, fromlen);;
1452     return;
1453
1454   case GNUNET_MESSAGE_TYPE_FRAGMENT:
1455     read_process_fragment (plugin, msg, addr, fromlen);
1456     return;
1457
1458   default:
1459     GNUNET_break_op (0);
1460     return;
1461   }
1462 }
1463
1464 size_t
1465 udp_select_send (struct Plugin *plugin)
1466 {
1467   ssize_t sent;
1468   size_t slen;
1469   struct GNUNET_TIME_Absolute max;
1470   struct GNUNET_TIME_Absolute ;
1471
1472   struct UDPMessageWrapper *udpw = plugin->msg_head;
1473   const struct sockaddr * sa = udpw->session->sock_addr;
1474
1475   max = GNUNET_TIME_absolute_max(udpw->timeout, GNUNET_TIME_absolute_get());
1476
1477   while (udpw != NULL)
1478   {
1479     if (max.abs_value != udpw->timeout.abs_value)
1480     {
1481       /* Message timed out */
1482
1483       if (udpw->cont != NULL)
1484         udpw->cont (udpw->cont_cls, &udpw->session->target, GNUNET_SYSERR);
1485       if (udpw->frag_ctx != NULL)
1486       {
1487 #if DEBUG_UDP
1488         GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Fragmented message for peer `%s' with size %u timed out\n",
1489             GNUNET_i2s(&udpw->session->target), udpw->frag_ctx->bytes_to_send);
1490 #endif
1491         udpw->session->last_expected_delay = GNUNET_FRAGMENT_context_destroy(udpw->frag_ctx->frag);
1492         GNUNET_free (udpw->frag_ctx);
1493         udpw->session->frag_ctx = NULL;
1494       }
1495       else
1496       {
1497 #if DEBUG_UDP
1498         GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Message for peer `%s' with size %u timed out\n",
1499             GNUNET_i2s(&udpw->session->target), udpw->msg_size);
1500 #endif
1501       }
1502
1503       GNUNET_CONTAINER_DLL_remove(plugin->msg_head, plugin->msg_tail, udpw);
1504       GNUNET_free (udpw);
1505       udpw = plugin->msg_head;
1506     }
1507     else
1508     {
1509       struct GNUNET_TIME_Relative delta = GNUNET_TIME_absolute_get_remaining (udpw->session->flow_delay_from_other_peer);
1510       if (delta.rel_value == 0)
1511       {
1512         /* this message is not delayed */
1513         GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Message for peer `%s' (%u bytes) is not delayed \n",
1514             GNUNET_i2s(&udpw->session->target), udpw->msg_size);
1515         break;
1516       }
1517       else
1518       {
1519         /* this message is delayed, try next */
1520         GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Message for peer `%s' (%u bytes) is delayed for %llu \n",
1521             GNUNET_i2s(&udpw->session->target), udpw->msg_size,
1522             delta);
1523         udpw = udpw->next;
1524       }
1525     }
1526
1527   }
1528
1529   if (udpw == NULL)
1530   {
1531     /* No message left */
1532     return 0;
1533   }
1534
1535   switch (sa->sa_family)
1536   {
1537   case AF_INET:
1538     if (NULL == plugin->sockv4)
1539       return 0;
1540     sent =
1541         GNUNET_NETWORK_socket_sendto (plugin->sockv4, udpw->udp, udpw->msg_size,
1542                                       sa, slen = sizeof (struct sockaddr_in));
1543     break;
1544   case AF_INET6:
1545     if (NULL == plugin->sockv6)
1546       return 0;
1547     sent =
1548         GNUNET_NETWORK_socket_sendto (plugin->sockv6, udpw->udp, udpw->msg_size,
1549                                       sa, slen = sizeof (struct sockaddr_in6));
1550     break;
1551   default:
1552     GNUNET_break (0);
1553     return 0;
1554   }
1555   if (GNUNET_SYSERR == sent)
1556   {
1557     GNUNET_log_strerror (GNUNET_ERROR_TYPE_ERROR, "sendto");
1558     LOG (GNUNET_ERROR_TYPE_DEBUG,
1559          "UDP transmitted %u-byte message to %s (%d: %s)\n",
1560          (unsigned int) (udpw->msg_size), GNUNET_a2s (sa, slen), (int) sent,
1561          (sent < 0) ? STRERROR (errno) : "ok");
1562     if (udpw->cont != NULL)
1563       udpw->cont (udpw->cont_cls, &udpw->session->target, GNUNET_SYSERR);
1564   }
1565   LOG (GNUNET_ERROR_TYPE_DEBUG,
1566        "UDP transmitted %u-byte message to %s (%d: %s)\n",
1567        (unsigned int) (udpw->msg_size), GNUNET_a2s (sa, slen), (int) sent,
1568        (sent < 0) ? STRERROR (errno) : "ok");
1569
1570   /* This was just a message fragment */
1571   if (udpw->frag_ctx != NULL)
1572   {
1573     GNUNET_FRAGMENT_context_transmission_done (udpw->frag_ctx->frag);
1574   }
1575   /* This was a complete message*/
1576   else
1577   {
1578     if (udpw->cont != NULL)
1579       udpw->cont (udpw->cont_cls, &udpw->session->target, GNUNET_OK);
1580   }
1581
1582   GNUNET_CONTAINER_DLL_remove(plugin->msg_head, plugin->msg_tail, udpw);
1583   GNUNET_free (udpw);
1584
1585   return sent;
1586 }
1587
1588 /**
1589  * We have been notified that our readset has something to read.  We don't
1590  * know which socket needs to be read, so we have to check each one
1591  * Then reschedule this function to be called again once more is available.
1592  *
1593  * @param cls the plugin handle
1594  * @param tc the scheduling context (for rescheduling this function again)
1595  */
1596 static void
1597 udp_plugin_select (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
1598 {
1599   struct Plugin *plugin = cls;
1600
1601   plugin->select_task = GNUNET_SCHEDULER_NO_TASK;
1602   if ((tc->reason & GNUNET_SCHEDULER_REASON_SHUTDOWN) != 0)
1603     return;
1604
1605   if ((tc->reason & GNUNET_SCHEDULER_REASON_READ_READY) != 0)
1606   {
1607     if ((NULL != plugin->sockv4) &&
1608       (GNUNET_NETWORK_fdset_isset (tc->read_ready, plugin->sockv4)))
1609         udp_select_read (plugin, plugin->sockv4);
1610     if ((NULL != plugin->sockv6) &&
1611       (GNUNET_NETWORK_fdset_isset (tc->read_ready, plugin->sockv6)))
1612         udp_select_read (plugin, plugin->sockv6);
1613   }
1614
1615   if ((tc->reason & GNUNET_SCHEDULER_REASON_WRITE_READY) != 0)
1616   {
1617     if (plugin->msg_head != NULL)
1618       udp_select_send (plugin);
1619   }
1620
1621   plugin->select_task = GNUNET_SCHEDULER_add_select (GNUNET_SCHEDULER_PRIORITY_DEFAULT,
1622                                    GNUNET_SCHEDULER_NO_TASK,
1623                                    GNUNET_TIME_UNIT_FOREVER_REL, plugin->rs,
1624                                    plugin->ws, &udp_plugin_select, plugin);
1625
1626 }
1627
1628
1629 static int
1630 setup_sockets (struct Plugin *plugin, struct sockaddr_in6 *serverAddrv6, struct sockaddr_in *serverAddrv4)
1631 {
1632   int tries;
1633   int sockets_created = 0;
1634   struct sockaddr *serverAddr;
1635   struct sockaddr *addrs[2];
1636   socklen_t addrlens[2];
1637   socklen_t addrlen;
1638
1639   /* Create IPv6 socket */
1640   if (plugin->enable_ipv6 == GNUNET_YES)
1641   {
1642     plugin->sockv6 = GNUNET_NETWORK_socket_create (PF_INET6, SOCK_DGRAM, 0);
1643     if (NULL == plugin->sockv6)
1644     {
1645       GNUNET_log_strerror (GNUNET_ERROR_TYPE_WARNING, "socket");
1646     }
1647     else
1648     {
1649 #if HAVE_SOCKADDR_IN_SIN_LEN
1650       serverAddrv6->sin6_len = sizeof (serverAddrv6);
1651 #endif
1652       serverAddrv6->sin6_family = AF_INET6;
1653       serverAddrv6->sin6_addr = in6addr_any;
1654       serverAddrv6->sin6_port = htons (plugin->port);
1655       addrlen = sizeof (struct sockaddr_in6);
1656       serverAddr = (struct sockaddr *) serverAddrv6;
1657 #if DEBUG_UDP
1658       LOG (GNUNET_ERROR_TYPE_DEBUG, "Binding to IPv6 port %d\n",
1659            ntohs (serverAddrv6->sin6_port));
1660 #endif
1661       tries = 0;
1662       while (GNUNET_NETWORK_socket_bind (plugin->sockv6, serverAddr, addrlen) !=
1663              GNUNET_OK)
1664       {
1665         serverAddrv6->sin6_port = htons (GNUNET_CRYPTO_random_u32 (GNUNET_CRYPTO_QUALITY_STRONG, 33537) + 32000);        /* Find a good, non-root port */
1666 #if DEBUG_UDP
1667         LOG (GNUNET_ERROR_TYPE_DEBUG,
1668              "IPv6 Binding failed, trying new port %d\n",
1669              ntohs (serverAddrv6->sin6_port));
1670 #endif
1671         tries++;
1672         if (tries > 10)
1673         {
1674           GNUNET_NETWORK_socket_close (plugin->sockv6);
1675           plugin->sockv6 = NULL;
1676           break;
1677         }
1678       }
1679       if (plugin->sockv6 != NULL)
1680       {
1681 #if DEBUG_UDP
1682         LOG (GNUNET_ERROR_TYPE_DEBUG,
1683              "IPv6 socket created on port %d\n",
1684              ntohs (serverAddrv6->sin6_port));
1685 #endif
1686         addrs[sockets_created] = (struct sockaddr *) serverAddrv6;
1687         addrlens[sockets_created] = sizeof (struct sockaddr_in6);
1688         sockets_created++;
1689       }
1690     }
1691   }
1692
1693   /* Create IPv4 socket */
1694   plugin->sockv4 = GNUNET_NETWORK_socket_create (PF_INET, SOCK_DGRAM, 0);
1695   if (NULL == plugin->sockv4)
1696   {
1697     GNUNET_log_strerror (GNUNET_ERROR_TYPE_WARNING, "socket");
1698   }
1699   else
1700   {
1701 #if HAVE_SOCKADDR_IN_SIN_LEN
1702     serverAddrv4->sin_len = sizeof (serverAddrv4);
1703 #endif
1704     serverAddrv4->sin_family = AF_INET;
1705     serverAddrv4->sin_addr.s_addr = INADDR_ANY;
1706     serverAddrv4->sin_port = htons (plugin->port);
1707     addrlen = sizeof (struct sockaddr_in);
1708     serverAddr = (struct sockaddr *) serverAddrv4;
1709
1710 #if DEBUG_UDP
1711     LOG (GNUNET_ERROR_TYPE_DEBUG, "Binding to IPv4 port %d\n",
1712          ntohs (serverAddrv4->sin_port));
1713 #endif
1714     tries = 0;
1715     while (GNUNET_NETWORK_socket_bind (plugin->sockv4, serverAddr, addrlen) !=
1716            GNUNET_OK)
1717     {
1718       serverAddrv4->sin_port = htons (GNUNET_CRYPTO_random_u32 (GNUNET_CRYPTO_QUALITY_STRONG, 33537) + 32000);   /* Find a good, non-root port */
1719 #if DEBUG_UDP
1720       LOG (GNUNET_ERROR_TYPE_DEBUG, "IPv4 Binding failed, trying new port %d\n",
1721            ntohs (serverAddrv4->sin_port));
1722 #endif
1723       tries++;
1724       if (tries > 10)
1725       {
1726         GNUNET_NETWORK_socket_close (plugin->sockv4);
1727         plugin->sockv4 = NULL;
1728         break;
1729       }
1730     }
1731     if (plugin->sockv4 != NULL)
1732     {
1733       addrs[sockets_created] = (struct sockaddr *) serverAddrv4;
1734       addrlens[sockets_created] = sizeof (struct sockaddr_in);
1735       sockets_created++;
1736     }
1737   }
1738
1739   /* Create file descriptors */
1740   plugin->rs = GNUNET_NETWORK_fdset_create ();
1741   plugin->ws = GNUNET_NETWORK_fdset_create ();
1742   GNUNET_NETWORK_fdset_zero (plugin->rs);
1743   GNUNET_NETWORK_fdset_zero (plugin->ws);
1744   if (NULL != plugin->sockv4)
1745   {
1746     GNUNET_NETWORK_fdset_set (plugin->rs, plugin->sockv4);
1747     GNUNET_NETWORK_fdset_set (plugin->ws, plugin->sockv4);
1748   }
1749   if (NULL != plugin->sockv6)
1750   {
1751     GNUNET_NETWORK_fdset_set (plugin->rs, plugin->sockv6);
1752     GNUNET_NETWORK_fdset_set (plugin->ws, plugin->sockv6);
1753   }
1754
1755   if (sockets_created == 0)
1756     GNUNET_log (GNUNET_ERROR_TYPE_WARNING, _("Failed to open UDP sockets\n"));
1757
1758   plugin->select_task =
1759       GNUNET_SCHEDULER_add_select (GNUNET_SCHEDULER_PRIORITY_DEFAULT,
1760                                    GNUNET_SCHEDULER_NO_TASK,
1761                                    GNUNET_TIME_UNIT_FOREVER_REL, plugin->rs,
1762                                    plugin->ws, &udp_plugin_select, plugin);
1763
1764   plugin->nat = GNUNET_NAT_register (plugin->env->cfg,
1765                            GNUNET_NO, plugin->port,
1766                            sockets_created,
1767                            (const struct sockaddr **) addrs, addrlens,
1768                            &udp_nat_port_map_callback, NULL, plugin);
1769
1770   return sockets_created;
1771 }
1772
1773
1774 /**
1775  * The exported method. Makes the core api available via a global and
1776  * returns the udp transport API.
1777  *
1778  * @param cls our 'struct GNUNET_TRANSPORT_PluginEnvironment'
1779  * @return our 'struct GNUNET_TRANSPORT_PluginFunctions'
1780  */
1781 void *
1782 libgnunet_plugin_transport_udp_init (void *cls)
1783 {
1784   struct GNUNET_TRANSPORT_PluginEnvironment *env = cls;
1785   struct GNUNET_TRANSPORT_PluginFunctions *api;
1786   struct Plugin *plugin;
1787
1788   unsigned long long port;
1789   unsigned long long aport;
1790   unsigned long long broadcast;
1791   unsigned long long udp_max_bps;
1792   unsigned long long enable_v6;
1793   char * bind4_address;
1794   char * bind6_address;
1795   struct GNUNET_TIME_Relative interval;
1796
1797   struct sockaddr_in serverAddrv4;
1798   struct sockaddr_in6 serverAddrv6;
1799
1800   int res;
1801
1802   /* Get port number */
1803   if (GNUNET_OK !=
1804       GNUNET_CONFIGURATION_get_value_number (env->cfg, "transport-udp", "PORT",
1805                                              &port))
1806     port = 2086;
1807   if (GNUNET_OK !=
1808       GNUNET_CONFIGURATION_get_value_number (env->cfg, "transport-udp",
1809                                              "ADVERTISED_PORT", &aport))
1810     aport = port;
1811   if (port > 65535)
1812   {
1813     LOG (GNUNET_ERROR_TYPE_WARNING,
1814          _("Given `%s' option is out of range: %llu > %u\n"), "PORT", port,
1815          65535);
1816     return NULL;
1817   }
1818
1819   /* Protocols */
1820   if ((GNUNET_YES ==
1821        GNUNET_CONFIGURATION_get_value_yesno (env->cfg, "nat",
1822                                              "DISABLEV6")))
1823   {
1824     enable_v6 = GNUNET_NO;
1825   }
1826   else
1827     enable_v6 = GNUNET_YES;
1828
1829
1830   /* Addresses */
1831   memset (&serverAddrv6, 0, sizeof (serverAddrv6));
1832   memset (&serverAddrv4, 0, sizeof (serverAddrv4));
1833
1834   if (GNUNET_YES ==
1835       GNUNET_CONFIGURATION_get_value_string (env->cfg, "transport-udp",
1836                                              "BINDTO", &bind4_address))
1837   {
1838     LOG (GNUNET_ERROR_TYPE_DEBUG,
1839          "Binding udp plugin to specific address: `%s'\n",
1840          bind4_address);
1841     if (1 != inet_pton (AF_INET, bind4_address, &serverAddrv4.sin_addr))
1842     {
1843       GNUNET_free (bind4_address);
1844       return NULL;
1845     }
1846   }
1847
1848   if (GNUNET_YES ==
1849       GNUNET_CONFIGURATION_get_value_string (env->cfg, "transport-udp",
1850                                              "BINDTO6", &bind6_address))
1851   {
1852     LOG (GNUNET_ERROR_TYPE_DEBUG,
1853          "Binding udp plugin to specific address: `%s'\n",
1854          bind6_address);
1855     if (1 !=
1856         inet_pton (AF_INET6, bind6_address, &serverAddrv6.sin6_addr))
1857     {
1858       LOG (GNUNET_ERROR_TYPE_ERROR, _("Invalid IPv6 address: `%s'\n"),
1859            bind6_address);
1860       GNUNET_free_non_null (bind4_address);
1861       GNUNET_free (bind6_address);
1862       return NULL;
1863     }
1864   }
1865
1866
1867   /* Enable neighbour discovery */
1868   broadcast = GNUNET_CONFIGURATION_get_value_yesno (env->cfg, "transport-udp",
1869                                             "BROADCAST");
1870   if (broadcast == GNUNET_SYSERR)
1871     broadcast = GNUNET_NO;
1872
1873   if (GNUNET_SYSERR == GNUNET_CONFIGURATION_get_value_time (env->cfg, "transport-udp",
1874                                            "BROADCAST_INTERVAL", &interval))
1875   {
1876     interval = GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_SECONDS, 10);
1877   }
1878
1879   /* Maximum datarate */
1880   if (GNUNET_OK != GNUNET_CONFIGURATION_get_value_number (env->cfg, "transport-udp",
1881                                              "MAX_BPS", &udp_max_bps))
1882   {
1883     udp_max_bps = 1024 * 1024 * 50;     /* 50 MB/s == infinity for practical purposes */
1884   }
1885
1886   plugin = GNUNET_malloc (sizeof (struct Plugin));
1887   api = GNUNET_malloc (sizeof (struct GNUNET_TRANSPORT_PluginFunctions));
1888
1889   GNUNET_BANDWIDTH_tracker_init (&plugin->tracker,
1890                                  GNUNET_BANDWIDTH_value_init ((uint32_t)udp_max_bps), 30);
1891
1892
1893   plugin->sessions = GNUNET_CONTAINER_multihashmap_create (10);
1894   plugin->defrag_ctxs = GNUNET_CONTAINER_heap_create (GNUNET_CONTAINER_HEAP_ORDER_MIN);
1895   plugin->mst = GNUNET_SERVER_mst_create (&process_inbound_tokenized_messages, plugin);
1896   plugin->port = port;
1897   plugin->aport = aport;
1898   plugin->broadcast_interval = interval;
1899   plugin->enable_ipv6 = enable_v6;
1900   plugin->env = env;
1901
1902   api->cls = plugin;
1903   api->send = NULL;
1904   api->disconnect = &udp_disconnect;
1905   api->address_pretty_printer = &udp_plugin_address_pretty_printer;
1906   api->address_to_string = &udp_address_to_string;
1907   api->check_address = &udp_plugin_check_address;
1908   api->get_session = &udp_plugin_get_session;
1909   api->send = &udp_plugin_send;
1910
1911   LOG (GNUNET_ERROR_TYPE_DEBUG, "Setting up sockets\n");
1912   res = setup_sockets (plugin, &serverAddrv6, &serverAddrv4);
1913   if ((res == 0) || ((plugin->sockv4 == NULL) && (plugin->sockv6 == NULL)))
1914   {
1915     LOG (GNUNET_ERROR_TYPE_ERROR, "Failed to create network sockets, plugin failed\n");
1916     GNUNET_free (plugin);
1917     GNUNET_free (api);
1918     return NULL;
1919   }
1920
1921   LOG (GNUNET_ERROR_TYPE_DEBUG, "Starting broadcasting\n");
1922   if (broadcast == GNUNET_YES)
1923     setup_broadcast (plugin, &serverAddrv6, &serverAddrv4);
1924
1925
1926   GNUNET_free_non_null (bind4_address);
1927   GNUNET_free_non_null (bind6_address);
1928   return api;
1929 }
1930
1931 int heap_cleanup_iterator (void *cls,
1932                           struct GNUNET_CONTAINER_HeapNode *
1933                           node, void *element,
1934                           GNUNET_CONTAINER_HeapCostType
1935                           cost)
1936 {
1937   struct DefragContext * d_ctx = element;
1938
1939   GNUNET_CONTAINER_heap_remove_node (node);
1940   GNUNET_DEFRAGMENT_context_destroy(d_ctx->defrag);
1941   GNUNET_free (d_ctx);
1942
1943   return GNUNET_YES;
1944 }
1945
1946
1947 /**
1948  * The exported method. Makes the core api available via a global and
1949  * returns the udp transport API.
1950  *
1951  * @param cls our 'struct GNUNET_TRANSPORT_PluginEnvironment'
1952  * @return our 'struct GNUNET_TRANSPORT_PluginFunctions'
1953  */
1954 void *
1955 libgnunet_plugin_transport_udp_done (void *cls)
1956 {
1957   struct GNUNET_TRANSPORT_PluginFunctions *api = cls;
1958   struct Plugin *plugin = api->cls;
1959   stop_broadcast (plugin);
1960
1961   if (plugin->select_task != GNUNET_SCHEDULER_NO_TASK)
1962   {
1963     GNUNET_SCHEDULER_cancel (plugin->select_task);
1964     plugin->select_task = GNUNET_SCHEDULER_NO_TASK;
1965   }
1966
1967   /* Closing sockets */
1968   if (plugin->sockv4 != NULL)
1969   {
1970     GNUNET_break (GNUNET_OK == GNUNET_NETWORK_socket_close (plugin->sockv4));
1971     plugin->sockv4 = NULL;
1972   }
1973   if (plugin->sockv6 != NULL)
1974   {
1975     GNUNET_break (GNUNET_OK == GNUNET_NETWORK_socket_close (plugin->sockv6));
1976     plugin->sockv6 = NULL;
1977   }
1978   GNUNET_NETWORK_fdset_destroy (plugin->rs);
1979   GNUNET_NETWORK_fdset_destroy (plugin->ws);
1980   GNUNET_NAT_unregister (plugin->nat);
1981
1982   if (plugin->defrag_ctxs != NULL)
1983   {
1984     GNUNET_CONTAINER_heap_iterate(plugin->defrag_ctxs,
1985         heap_cleanup_iterator, NULL);
1986     GNUNET_CONTAINER_heap_destroy(plugin->defrag_ctxs);
1987     plugin->defrag_ctxs = NULL;
1988   }
1989   if (plugin->mst != NULL)
1990   {
1991     GNUNET_SERVER_mst_destroy(plugin->mst);
1992     plugin->mst = NULL;
1993   }
1994
1995   /* Clean up leftover messages */
1996   struct UDPMessageWrapper *udpw = plugin->msg_head;
1997   while (udpw != NULL)
1998   {
1999     struct UDPMessageWrapper *tmp = udpw->next;
2000     GNUNET_CONTAINER_DLL_remove(plugin->msg_head, plugin->msg_tail, udpw);
2001     if (udpw->cont != NULL)
2002       udpw->cont (udpw->cont_cls, &udpw->session->target, GNUNET_SYSERR);
2003     GNUNET_free (udpw);
2004     udpw = tmp;
2005   }
2006
2007   /* Clean up sessions */
2008 #if DEBUG_UDP
2009   LOG (GNUNET_ERROR_TYPE_DEBUG,
2010        "Cleaning up sessions\n");
2011 #endif
2012   GNUNET_CONTAINER_multihashmap_iterate (plugin->sessions, &disconnect_and_free_it, plugin);
2013   GNUNET_CONTAINER_multihashmap_destroy (plugin->sessions);
2014
2015   plugin->nat = NULL;
2016   GNUNET_free (plugin);
2017   GNUNET_free (api);
2018   return NULL;
2019 }
2020
2021
2022 /* end of plugin_transport_udp.c */