remove dead assignments
[oweals/gnunet.git] / src / transport / plugin_transport_udp.c
1 /*
2      This file is part of GNUnet
3      (C) 2010-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 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 #define PLUGIN_NAME "udp"
46
47 /**
48  * Number of messages we can defragment in parallel.  We only really
49  * defragment 1 message at a time, but if messages get re-ordered, we
50  * may want to keep knowledge about the previous message to avoid
51  * discarding the current message in favor of a single fragment of a
52  * previous message.  3 should be good since we don't expect massive
53  * message reorderings with UDP.
54  */
55 #define UDP_MAX_MESSAGES_IN_DEFRAG 3
56
57 /**
58  * We keep a defragmentation queue per sender address.  How many
59  * sender addresses do we support at the same time? Memory consumption
60  * is roughly a factor of 32k * UDP_MAX_MESSAGES_IN_DEFRAG times this
61  * value. (So 128 corresponds to 12 MB and should suffice for
62  * connecting to roughly 128 peers via UDP).
63  */
64 #define UDP_MAX_SENDER_ADDRESSES_WITH_DEFRAG 128
65
66 /**
67  * Running pretty printers: head
68  */
69 static struct PrettyPrinterContext *ppc_dll_head;
70
71 /**
72  * Running pretty printers: tail
73  */
74 static struct PrettyPrinterContext *ppc_dll_tail;
75
76 /**
77  * Closure for 'append_port'.
78  */
79 struct PrettyPrinterContext
80 {
81   /**
82    * DLL
83    */
84   struct PrettyPrinterContext *next;
85   
86   /**
87    * DLL
88    */
89   struct PrettyPrinterContext *prev;
90
91   /**
92    * Timeout task
93    */
94   GNUNET_SCHEDULER_TaskIdentifier timeout_task;
95
96   /**
97    * Resolver handle
98    */
99   struct GNUNET_RESOLVER_RequestHandle *resolver_handle;
100
101   /**
102    * Function to call with the result.
103    */
104   GNUNET_TRANSPORT_AddressStringCallback asc;
105
106   /**
107    * Clsoure for 'asc'.
108    */
109   void *asc_cls;
110
111   /**
112    * Port to add after the IP address.
113    */
114   uint16_t port;
115
116   /**
117    * IPv6 address
118    */
119
120   int ipv6;
121
122   /**
123    * Options
124    */
125   uint32_t options;
126 };
127
128
129 enum UDP_MessageType
130 {
131   UNDEFINED = 0,
132   MSG_FRAGMENTED = 1,
133   MSG_FRAGMENTED_COMPLETE = 2,
134   MSG_UNFRAGMENTED = 3,
135   MSG_ACK = 4,
136   MSG_BEACON = 5
137 };
138
139 struct Session
140 {
141   /**
142    * Which peer is this session for?
143    */
144   struct GNUNET_PeerIdentity target;
145
146   struct UDP_FragmentationContext * frag_ctx;
147
148   /**
149    * Address of the other peer
150    */
151   const struct sockaddr *sock_addr;
152
153   /**
154    * Desired delay for next sending we send to other peer
155    */
156   struct GNUNET_TIME_Relative flow_delay_for_other_peer;
157
158   /**
159    * Desired delay for next sending we received from other peer
160    */
161   struct GNUNET_TIME_Absolute flow_delay_from_other_peer;
162
163   /**
164    * Session timeout task
165    */
166   GNUNET_SCHEDULER_TaskIdentifier timeout_task;
167
168   /**
169    * expected delay for ACKs
170    */
171   struct GNUNET_TIME_Relative last_expected_ack_delay;
172
173   /**
174    * desired delay between UDP messages
175    */
176   struct GNUNET_TIME_Relative last_expected_msg_delay;
177
178   struct GNUNET_ATS_Information ats;
179
180   size_t addrlen;
181
182
183   unsigned int rc;
184
185   int in_destroy;
186
187   int inbound;
188 };
189
190
191 struct SessionCompareContext
192 {
193   struct Session *res;
194   const struct GNUNET_HELLO_Address *addr;
195 };
196
197
198 /**
199  * Closure for 'process_inbound_tokenized_messages'
200  */
201 struct SourceInformation
202 {
203   /**
204    * Sender identity.
205    */
206   struct GNUNET_PeerIdentity sender;
207
208   /**
209    * Source address.
210    */
211   const void *arg;
212
213   struct Session *session;
214   /**
215    * Number of bytes in source address.
216    */
217   size_t args;
218
219 };
220
221
222 /**
223  * Closure for 'find_receive_context'.
224  */
225 struct FindReceiveContext
226 {
227   /**
228    * Where to store the result.
229    */
230   struct DefragContext *rc;
231
232   /**
233    * Address to find.
234    */
235   const struct sockaddr *addr;
236
237   struct Session *session;
238
239   /**
240    * Number of bytes in 'addr'.
241    */
242   socklen_t addr_len;
243
244 };
245
246
247
248 /**
249  * Data structure to track defragmentation contexts based
250  * on the source of the UDP traffic.
251  */
252 struct DefragContext
253 {
254
255   /**
256    * Defragmentation context.
257    */
258   struct GNUNET_DEFRAGMENT_Context *defrag;
259
260   /**
261    * Source address this receive context is for (allocated at the
262    * end of the struct).
263    */
264   const struct sockaddr *src_addr;
265
266   /**
267    * Reference to master plugin struct.
268    */
269   struct Plugin *plugin;
270
271   /**
272    * Node in the defrag heap.
273    */
274   struct GNUNET_CONTAINER_HeapNode *hnode;
275
276   /**
277    * Length of 'src_addr'
278    */
279   size_t addr_len;
280 };
281
282
283
284 /**
285  * Context to send fragmented messages
286  */
287 struct UDP_FragmentationContext
288 {
289   /**
290    * Next in linked list
291    */
292   struct UDP_FragmentationContext * next;
293
294   /**
295    * Previous in linked list
296    */
297   struct UDP_FragmentationContext * prev;
298
299   /**
300    * The plugin
301    */
302   struct Plugin * plugin;
303
304   /**
305    * Handle for GNUNET_FRAGMENT context
306    */
307   struct GNUNET_FRAGMENT_Context * frag;
308
309   /**
310    * The session this fragmentation context belongs to
311    */
312   struct Session * session;
313
314   /**
315    * Function to call upon completion of the transmission.
316    */
317   GNUNET_TRANSPORT_TransmitContinuation cont;
318
319   /**
320    * Closure for 'cont'.
321    */
322   void *cont_cls;
323
324   /**
325    * Message timeout
326    */
327   struct GNUNET_TIME_Absolute timeout;
328
329   /**
330    * Payload size of original unfragmented message
331    */
332   size_t payload_size;
333
334   /**
335    * Bytes used to send all fragments on wire including UDP overhead
336    */
337   size_t on_wire_size;
338
339   unsigned int fragments_used;
340
341 };
342
343
344 struct UDP_MessageWrapper
345 {
346   /**
347    * Session this message belongs to
348    */
349   struct Session *session;
350
351   /**
352    * DLL of messages
353    * previous element
354    */
355   struct UDP_MessageWrapper *prev;
356
357   /**
358    * DLL of messages
359    * previous element
360    */
361   struct UDP_MessageWrapper *next;
362
363   /**
364    * Message type
365    * According to UDP_MessageType
366    */
367   int msg_type;
368
369   /**
370    * Message with size msg_size including UDP specific overhead
371    */
372   char *msg_buf;
373
374   /**
375    * Size of UDP message to send including UDP specific overhead
376    */
377   size_t msg_size;
378
379   /**
380    * Payload size of original message
381    */
382   size_t payload_size;
383
384   /**
385    * Message timeout
386    */
387   struct GNUNET_TIME_Absolute timeout;
388
389   /**
390    * Function to call upon completion of the transmission.
391    */
392   GNUNET_TRANSPORT_TransmitContinuation cont;
393
394   /**
395    * Closure for 'cont'.
396    */
397   void *cont_cls;
398
399   /**
400    * Fragmentation context
401    * frag_ctx == NULL if transport <= MTU
402    * frag_ctx != NULL if transport > MTU
403    */
404   struct UDP_FragmentationContext *frag_ctx;
405 };
406
407
408 /**
409  * UDP ACK Message-Packet header (after defragmentation).
410  */
411 struct UDP_ACK_Message
412 {
413   /**
414    * Message header.
415    */
416   struct GNUNET_MessageHeader header;
417
418   /**
419    * Desired delay for flow control
420    */
421   uint32_t delay;
422
423   /**
424    * What is the identity of the sender
425    */
426   struct GNUNET_PeerIdentity sender;
427
428 };
429
430 /**
431  * Address options
432  */
433 static uint32_t myoptions;
434
435
436 /**
437  * Encapsulation of all of the state of the plugin.
438  */
439 struct Plugin * plugin;
440
441
442 /**
443  * We have been notified that our readset has something to read.  We don't
444  * know which socket needs to be read, so we have to check each one
445  * Then reschedule this function to be called again once more is available.
446  *
447  * @param cls the plugin handle
448  * @param tc the scheduling context (for rescheduling this function again)
449  */
450 static void
451 udp_plugin_select (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc);
452
453
454 /**
455  * We have been notified that our readset has something to read.  We don't
456  * know which socket needs to be read, so we have to check each one
457  * Then reschedule this function to be called again once more is available.
458  *
459  * @param cls the plugin handle
460  * @param tc the scheduling context (for rescheduling this function again)
461  */
462 static void
463 udp_plugin_select_v6 (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc);
464
465
466 /**
467  * Cancel timeout
468  */
469 static void
470 stop_session_timeout (struct Session *s)
471 {
472   GNUNET_assert (NULL != s);
473
474   if (GNUNET_SCHEDULER_NO_TASK != s->timeout_task)
475   {
476     GNUNET_SCHEDULER_cancel (s->timeout_task);
477     s->timeout_task = GNUNET_SCHEDULER_NO_TASK;
478     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
479                 "Timeout stopped for session %p canceled\n",
480                 s);
481   }
482 }
483
484
485 /**
486  * (re)schedule select tasks for this plugin.
487  *
488  * @param plugin plugin to reschedule
489  */
490 static void
491 schedule_select (struct Plugin *plugin)
492 {
493   struct GNUNET_TIME_Relative min_delay;
494   struct UDP_MessageWrapper *udpw;
495
496   if ((GNUNET_YES == plugin->enable_ipv4) && (NULL != plugin->sockv4))
497   {
498     /* Find a message ready to send:
499      * Flow delay from other peer is expired or not set (0) */
500     min_delay = GNUNET_TIME_UNIT_FOREVER_REL;
501     for (udpw = plugin->ipv4_queue_head; NULL != udpw; udpw = udpw->next)
502       min_delay = GNUNET_TIME_relative_min (min_delay,
503                                             GNUNET_TIME_absolute_get_remaining (udpw->session->flow_delay_from_other_peer));
504     
505     if (plugin->select_task != GNUNET_SCHEDULER_NO_TASK)
506       GNUNET_SCHEDULER_cancel(plugin->select_task);
507
508     /* Schedule with:
509      * - write active set if message is ready
510      * - timeout minimum delay */
511     plugin->select_task =
512       GNUNET_SCHEDULER_add_select (GNUNET_SCHEDULER_PRIORITY_DEFAULT,
513                                    (0 == min_delay.rel_value_us) ? GNUNET_TIME_UNIT_FOREVER_REL : min_delay,
514                                    plugin->rs_v4,
515                                    (0 == min_delay.rel_value_us) ? plugin->ws_v4 : NULL,
516                                    &udp_plugin_select, plugin);  
517   }
518   if ((GNUNET_YES == plugin->enable_ipv6) && (NULL != plugin->sockv6))
519   {
520     min_delay = GNUNET_TIME_UNIT_FOREVER_REL;
521     for (udpw = plugin->ipv6_queue_head; NULL != udpw; udpw = udpw->next)
522       min_delay = GNUNET_TIME_relative_min (min_delay,
523                                             GNUNET_TIME_absolute_get_remaining (udpw->session->flow_delay_from_other_peer));
524     
525     if (GNUNET_SCHEDULER_NO_TASK != plugin->select_task_v6)
526       GNUNET_SCHEDULER_cancel(plugin->select_task_v6);
527     plugin->select_task_v6 =
528       GNUNET_SCHEDULER_add_select (GNUNET_SCHEDULER_PRIORITY_DEFAULT,
529                                    (0 == min_delay.rel_value_us) ? GNUNET_TIME_UNIT_FOREVER_REL : min_delay,
530                                    plugin->rs_v6,
531                                    (0 == min_delay.rel_value_us) ? plugin->ws_v6 : NULL,
532                                    &udp_plugin_select_v6, plugin);
533   }
534 }
535
536
537 /**
538  * Function called for a quick conversion of the binary address to
539  * a numeric address.  Note that the caller must not free the
540  * address and that the next call to this function is allowed
541  * to override the address again.
542  *
543  * @param cls closure
544  * @param addr binary address
545  * @param addrlen length of the address
546  * @return string representing the same address
547  */
548 const char *
549 udp_address_to_string (void *cls, const void *addr, size_t addrlen)
550 {
551   static char rbuf[INET6_ADDRSTRLEN + 10];
552   char buf[INET6_ADDRSTRLEN];
553   const void *sb;
554   struct in_addr a4;
555   struct in6_addr a6;
556   const struct IPv4UdpAddress *t4;
557   const struct IPv6UdpAddress *t6;
558   int af;
559   uint16_t port;
560   uint32_t options;
561
562   if (addrlen == sizeof (struct IPv6UdpAddress))
563   {
564     t6 = addr;
565     af = AF_INET6;
566     options = ntohl (t6->options);
567     port = ntohs (t6->u6_port);
568     memcpy (&a6, &t6->ipv6_addr, sizeof (a6));
569     sb = &a6;
570   }
571   else if (addrlen == sizeof (struct IPv4UdpAddress))
572   {
573     t4 = addr;
574     af = AF_INET;
575     options = ntohl (t4->options);
576     port = ntohs (t4->u4_port);
577     memcpy (&a4, &t4->ipv4_addr, sizeof (a4));
578     sb = &a4;
579   }
580   else if (addrlen == 0)
581   {
582     GNUNET_snprintf (rbuf, sizeof (rbuf), "%s", TRANSPORT_SESSION_INBOUND_STRING);
583     return rbuf;
584   }
585   else
586   {
587     return NULL;
588   }
589   inet_ntop (af, sb, buf, INET6_ADDRSTRLEN);
590
591   GNUNET_snprintf (rbuf, sizeof (rbuf), 
592                    (af == AF_INET6) ? "%s.%u.[%s]:%u" : "%s.%u.%s:%u",
593                    PLUGIN_NAME, options, buf, port);
594   return rbuf;
595 }
596
597
598 /**
599  * Function called to convert a string address to
600  * a binary address.
601  *
602  * @param cls closure ('struct Plugin*')
603  * @param addr string address
604  * @param addrlen length of the address
605  * @param buf location to store the buffer
606  * @param added location to store the number of bytes in the buffer.
607  *        If the function returns GNUNET_SYSERR, its contents are undefined.
608  * @return GNUNET_OK on success, GNUNET_SYSERR on failure
609  */
610 static int
611 udp_string_to_address (void *cls, const char *addr, uint16_t addrlen,
612     void **buf, size_t *added)
613 {
614   struct sockaddr_storage socket_address;
615   char *address;
616   char *plugin;
617   char *optionstr;
618   uint32_t options;
619
620   /* Format tcp.options.address:port */
621   address = NULL;
622   plugin = NULL;
623   optionstr = NULL;
624
625   if ((NULL == addr) || (addrlen == 0))
626   {
627     GNUNET_break (0);
628     return GNUNET_SYSERR;
629   }
630   if ('\0' != addr[addrlen - 1])
631   {
632     GNUNET_break (0);
633     return GNUNET_SYSERR;
634   }
635   if (strlen (addr) != addrlen - 1)
636   {
637     GNUNET_break (0);
638     return GNUNET_SYSERR;
639   }
640   plugin = GNUNET_strdup (addr);
641   optionstr = strchr (plugin, '.');
642   if (NULL == optionstr)
643   {
644     GNUNET_break (0);
645     GNUNET_free (plugin);
646     return GNUNET_SYSERR;
647   }
648   optionstr[0] = '\0';
649   optionstr ++;
650   options = atol (optionstr);
651   address = strchr (optionstr, '.');
652   if (NULL == address)
653   {
654     GNUNET_break (0);
655     GNUNET_free (plugin);
656     return GNUNET_SYSERR;
657   }
658   address[0] = '\0';
659   address ++;
660
661   if (GNUNET_OK !=
662       GNUNET_STRINGS_to_address_ip (address, strlen (address),
663                                     &socket_address))
664   {
665     GNUNET_break (0);
666     GNUNET_free (plugin);
667     return GNUNET_SYSERR;
668   }
669
670   GNUNET_free (plugin);
671
672   switch (socket_address.ss_family)
673   {
674   case AF_INET:
675     {
676       struct IPv4UdpAddress *u4;
677       struct sockaddr_in *in4 = (struct sockaddr_in *) &socket_address;
678       u4 = GNUNET_malloc (sizeof (struct IPv4UdpAddress));
679       u4->options =  htonl (options);
680       u4->ipv4_addr = in4->sin_addr.s_addr;
681       u4->u4_port = in4->sin_port;
682       *buf = u4;
683       *added = sizeof (struct IPv4UdpAddress);
684       return GNUNET_OK;
685     }
686   case AF_INET6:
687     {
688       struct IPv6UdpAddress *u6;
689       struct sockaddr_in6 *in6 = (struct sockaddr_in6 *) &socket_address;
690       u6 = GNUNET_malloc (sizeof (struct IPv6UdpAddress));
691       u6->options =  htonl (options);
692       u6->ipv6_addr = in6->sin6_addr;
693       u6->u6_port = in6->sin6_port;
694       *buf = u6;
695       *added = sizeof (struct IPv6UdpAddress);
696       return GNUNET_OK;
697     }
698   default:
699     GNUNET_break (0);
700     return GNUNET_SYSERR;
701   }
702 }
703
704
705 static void
706 ppc_cancel_task (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
707 {
708         struct PrettyPrinterContext *ppc = cls;
709         /* GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "PPC %p was not removed!\n", ppc); */
710         ppc->timeout_task = GNUNET_SCHEDULER_NO_TASK;
711         if (NULL != ppc->resolver_handle)
712         {
713                 GNUNET_RESOLVER_request_cancel (ppc->resolver_handle);
714                 ppc->resolver_handle = NULL;
715         }
716
717         GNUNET_CONTAINER_DLL_remove (ppc_dll_head, ppc_dll_tail, ppc);
718         GNUNET_free (ppc);
719 }
720
721
722 /**
723  * Append our port and forward the result.
724  *
725  * @param cls a 'struct PrettyPrinterContext'
726  * @param hostname result from DNS resolver
727  */
728 static void
729 append_port (void *cls, const char *hostname)
730 {
731   struct PrettyPrinterContext *ppc = cls;
732   struct PrettyPrinterContext *cur;
733   char *ret;
734         /* GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "PPC callback: %p `%s'\n",ppc, hostname); */
735   if (hostname == NULL)
736   {
737     ppc->asc (ppc->asc_cls, NULL);
738     GNUNET_CONTAINER_DLL_remove (ppc_dll_head, ppc_dll_tail, ppc);
739     GNUNET_SCHEDULER_cancel (ppc->timeout_task);
740     ppc->timeout_task = GNUNET_SCHEDULER_NO_TASK;
741     ppc->resolver_handle = NULL;
742         /* GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "PPC %p was removed!\n", ppc); */
743     GNUNET_free (ppc);
744     return;
745   }
746   for (cur = ppc_dll_head; (NULL != cur); cur = cur->next)
747   {
748         if (cur == ppc)
749                 break;
750   }
751   if (NULL == cur)
752   {
753         GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Invalid callback for PPC %p \n", ppc);
754         return;
755   }
756
757   if (GNUNET_YES == ppc->ipv6)
758     GNUNET_asprintf (&ret, "%s.%u.[%s]:%d", PLUGIN_NAME, ppc->options, hostname, ppc->port);
759   else
760     GNUNET_asprintf (&ret, "%s.%u.%s:%d", PLUGIN_NAME, ppc->options, hostname, ppc->port);
761   ppc->asc (ppc->asc_cls, ret);
762   GNUNET_free (ret);
763 }
764
765 /**
766  * Convert the transports address to a nice, human-readable
767  * format.
768  *
769  * @param cls closure
770  * @param type name of the transport that generated the address
771  * @param addr one of the addresses of the host, NULL for the last address
772  *        the specific address format depends on the transport
773  * @param addrlen length of the address
774  * @param numeric should (IP) addresses be displayed in numeric form?
775  * @param timeout after how long should we give up?
776  * @param asc function to call on each string
777  * @param asc_cls closure for asc
778  */
779 static void
780 udp_plugin_address_pretty_printer (void *cls, const char *type,
781                                    const void *addr, size_t addrlen,
782                                    int numeric,
783                                    struct GNUNET_TIME_Relative timeout,
784                                    GNUNET_TRANSPORT_AddressStringCallback asc,
785                                    void *asc_cls)
786 {
787   struct PrettyPrinterContext *ppc;
788   const void *sb;
789   size_t sbs;
790   struct sockaddr_in a4;
791   struct sockaddr_in6 a6;
792   const struct IPv4UdpAddress *u4;
793   const struct IPv6UdpAddress *u6;
794   uint16_t port;
795   uint32_t options;
796
797   if (addrlen == sizeof (struct IPv6UdpAddress))
798   {
799     u6 = addr;
800     memset (&a6, 0, sizeof (a6));
801     a6.sin6_family = AF_INET6;
802 #if HAVE_SOCKADDR_IN_SIN_LEN
803     a6.sin6_len = sizeof (a6);
804 #endif
805     a6.sin6_port = u6->u6_port;
806     memcpy (&a6.sin6_addr, &u6->ipv6_addr, sizeof (struct in6_addr));
807     port = ntohs (u6->u6_port);
808     options = ntohl (u6->options);
809     sb = &a6;
810     sbs = sizeof (a6);
811   }
812   else if (addrlen == sizeof (struct IPv4UdpAddress))
813   {
814     u4 = addr;
815     memset (&a4, 0, sizeof (a4));
816     a4.sin_family = AF_INET;
817 #if HAVE_SOCKADDR_IN_SIN_LEN
818     a4.sin_len = sizeof (a4);
819 #endif
820     a4.sin_port = u4->u4_port;
821     a4.sin_addr.s_addr = u4->ipv4_addr;
822     port = ntohs (u4->u4_port);
823     options = ntohl (u4->options);
824     sb = &a4;
825     sbs = sizeof (a4);
826   }
827   else if (0 == addrlen)
828   {
829     asc (asc_cls, TRANSPORT_SESSION_INBOUND_STRING);
830     asc (asc_cls, NULL);
831     return;
832   }
833   else
834   {
835     /* invalid address */
836     GNUNET_break_op (0);
837     asc (asc_cls, NULL);
838     return;
839   }
840   ppc = GNUNET_malloc (sizeof (struct PrettyPrinterContext));
841   ppc->asc = asc;
842   ppc->asc_cls = asc_cls;
843   ppc->port = port;
844   ppc->options = options;
845   if (addrlen == sizeof (struct IPv6UdpAddress))
846     ppc->ipv6 = GNUNET_YES;
847   else
848     ppc->ipv6 = GNUNET_NO;
849   ppc->timeout_task = GNUNET_SCHEDULER_add_delayed (GNUNET_TIME_relative_multiply(timeout, 2),
850                 &ppc_cancel_task, ppc);
851   GNUNET_CONTAINER_DLL_insert (ppc_dll_head, ppc_dll_tail, ppc);
852         /* GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "PPC %p was created!\n", ppc); */
853   ppc->resolver_handle = GNUNET_RESOLVER_hostname_get (sb, sbs, !numeric, timeout, &append_port, ppc);
854
855 }
856
857
858 static void
859 call_continuation (struct UDP_MessageWrapper *udpw, int result)
860 {
861   size_t overhead;
862
863   LOG (GNUNET_ERROR_TYPE_DEBUG,
864       "Calling continuation for %u byte message to `%s' with result %s\n",
865       udpw->payload_size, GNUNET_i2s (&udpw->session->target),
866       (GNUNET_OK == result) ? "OK" : "SYSERR");
867
868   if (udpw->msg_size >= udpw->payload_size)
869     overhead = udpw->msg_size - udpw->payload_size;
870   else
871     overhead = udpw->msg_size;
872
873   switch (result) {
874     case GNUNET_OK:
875       switch (udpw->msg_type) {
876         case MSG_UNFRAGMENTED:
877           if (NULL != udpw->cont)
878           {
879             /* Transport continuation */
880             udpw->cont (udpw->cont_cls, &udpw->session->target, result,
881                       udpw->payload_size, udpw->msg_size);
882           }
883           GNUNET_STATISTICS_update (plugin->env->stats,
884                                     "# UDP, unfragmented msgs, messages, sent, success",
885                                     1, GNUNET_NO);
886           GNUNET_STATISTICS_update (plugin->env->stats,
887                                     "# UDP, unfragmented msgs, bytes payload, sent, success",
888                                     udpw->payload_size, GNUNET_NO);
889           GNUNET_STATISTICS_update (plugin->env->stats,
890                                     "# UDP, unfragmented msgs, bytes overhead, sent, success",
891                                     overhead, GNUNET_NO);
892           GNUNET_STATISTICS_update (plugin->env->stats,
893                                     "# UDP, total, bytes overhead, sent",
894                                     overhead, GNUNET_NO);
895           GNUNET_STATISTICS_update (plugin->env->stats,
896                                     "# UDP, total, bytes payload, sent",
897                                     udpw->payload_size, GNUNET_NO);
898           break;
899         case MSG_FRAGMENTED_COMPLETE:
900           GNUNET_assert (NULL != udpw->frag_ctx);
901           if (udpw->frag_ctx->cont != NULL)
902             udpw->frag_ctx->cont (udpw->frag_ctx->cont_cls, &udpw->session->target, GNUNET_OK,
903                                udpw->frag_ctx->payload_size, udpw->frag_ctx->on_wire_size);
904           GNUNET_STATISTICS_update (plugin->env->stats,
905                                     "# UDP, fragmented msgs, messages, sent, success",
906                                     1, GNUNET_NO);
907           GNUNET_STATISTICS_update (plugin->env->stats,
908                                     "# UDP, fragmented msgs, bytes payload, sent, success",
909                                     udpw->payload_size, GNUNET_NO);
910           GNUNET_STATISTICS_update (plugin->env->stats,
911                                     "# UDP, fragmented msgs, bytes overhead, sent, success",
912                                     overhead, GNUNET_NO);
913           GNUNET_STATISTICS_update (plugin->env->stats,
914                                     "# UDP, total, bytes overhead, sent",
915                                     overhead, GNUNET_NO);
916           GNUNET_STATISTICS_update (plugin->env->stats,
917                                     "# UDP, total, bytes payload, sent",
918                                     udpw->payload_size, GNUNET_NO);
919           GNUNET_STATISTICS_update (plugin->env->stats,
920                                     "# UDP, fragmented msgs, messages, pending",
921                                     -1, GNUNET_NO);
922           break;
923         case MSG_FRAGMENTED:
924           /* Fragmented message: enqueue next fragment */
925           if (NULL != udpw->cont)
926             udpw->cont (udpw->cont_cls, &udpw->session->target, result,
927                       udpw->payload_size, udpw->msg_size);
928           GNUNET_STATISTICS_update (plugin->env->stats,
929                                     "# UDP, fragmented msgs, fragments, sent, success",
930                                     1, GNUNET_NO);
931           GNUNET_STATISTICS_update (plugin->env->stats,
932                                     "# UDP, fragmented msgs, fragments bytes, sent, success",
933                                     udpw->msg_size, GNUNET_NO);
934           break;
935         case MSG_ACK:
936           /* No continuation */
937           GNUNET_STATISTICS_update (plugin->env->stats,
938                                     "# UDP, ACK msgs, messages, sent, success",
939                                     1, GNUNET_NO);
940           GNUNET_STATISTICS_update (plugin->env->stats,
941                                     "# UDP, ACK msgs, bytes overhead, sent, success",
942                                     overhead, GNUNET_NO);
943           GNUNET_STATISTICS_update (plugin->env->stats,
944                                     "# UDP, total, bytes overhead, sent",
945                                     overhead, GNUNET_NO);
946           break;
947         case MSG_BEACON:
948           GNUNET_break (0);
949           break;
950         default:
951           LOG (GNUNET_ERROR_TYPE_ERROR,
952               "ERROR: %u\n", udpw->msg_type);
953           GNUNET_break (0);
954           break;
955       }
956       break;
957     case GNUNET_SYSERR:
958       switch (udpw->msg_type) {
959         case MSG_UNFRAGMENTED:
960           /* Unfragmented message: failed to send */
961           if (NULL != udpw->cont)
962             udpw->cont (udpw->cont_cls, &udpw->session->target, result,
963                       udpw->payload_size, overhead);
964           GNUNET_STATISTICS_update (plugin->env->stats,
965                                   "# UDP, unfragmented msgs, messages, sent, failure",
966                                   1, GNUNET_NO);
967           GNUNET_STATISTICS_update (plugin->env->stats,
968                                     "# UDP, unfragmented msgs, bytes payload, sent, failure",
969                                     udpw->payload_size, GNUNET_NO);
970           GNUNET_STATISTICS_update (plugin->env->stats,
971                                     "# UDP, unfragmented msgs, bytes overhead, sent, failure",
972                                     overhead, GNUNET_NO);
973           break;
974         case MSG_FRAGMENTED_COMPLETE:
975           GNUNET_assert (NULL != udpw->frag_ctx);
976           if (udpw->frag_ctx->cont != NULL)
977             udpw->frag_ctx->cont (udpw->frag_ctx->cont_cls, &udpw->session->target, GNUNET_SYSERR,
978                                udpw->frag_ctx->payload_size, udpw->frag_ctx->on_wire_size);
979           GNUNET_STATISTICS_update (plugin->env->stats,
980                                     "# UDP, fragmented msgs, messages, sent, failure",
981                                     1, GNUNET_NO);
982           GNUNET_STATISTICS_update (plugin->env->stats,
983                                     "# UDP, fragmented msgs, bytes payload, sent, failure",
984                                     udpw->payload_size, GNUNET_NO);
985           GNUNET_STATISTICS_update (plugin->env->stats,
986                                     "# UDP, fragmented msgs, bytes payload, sent, failure",
987                                     overhead, GNUNET_NO);
988           GNUNET_STATISTICS_update (plugin->env->stats,
989                                     "# UDP, fragmented msgs, bytes payload, sent, failure",
990                                     overhead, GNUNET_NO);
991           GNUNET_STATISTICS_update (plugin->env->stats,
992                                     "# UDP, fragmented msgs, messages, pending",
993                                     -1, GNUNET_NO);
994           break;
995         case MSG_FRAGMENTED:
996           GNUNET_assert (NULL != udpw->frag_ctx);
997           /* Fragmented message: failed to send */
998           GNUNET_STATISTICS_update (plugin->env->stats,
999                                     "# UDP, fragmented msgs, fragments, sent, failure",
1000                                     1, GNUNET_NO);
1001           GNUNET_STATISTICS_update (plugin->env->stats,
1002                                     "# UDP, fragmented msgs, fragments bytes, sent, failure",
1003                                     udpw->msg_size, GNUNET_NO);
1004           break;
1005         case MSG_ACK:
1006           /* ACK message: failed to send */
1007           GNUNET_STATISTICS_update (plugin->env->stats,
1008                                     "# UDP, ACK msgs, messages, sent, failure",
1009                                     1, GNUNET_NO);
1010           break;
1011         case MSG_BEACON:
1012           /* Beacon message: failed to send */
1013           GNUNET_break (0);
1014           break;
1015         default:
1016           GNUNET_break (0);
1017           break;
1018       }
1019       break;
1020     default:
1021       GNUNET_break (0);
1022       break;
1023   }
1024 }
1025
1026
1027 /**
1028  * Check if the given port is plausible (must be either our listen
1029  * port or our advertised port).  If it is neither, we return
1030  * GNUNET_SYSERR.
1031  *
1032  * @param plugin global variables
1033  * @param in_port port number to check
1034  * @return GNUNET_OK if port is either open_port or adv_port
1035  */
1036 static int
1037 check_port (struct Plugin *plugin, uint16_t in_port)
1038 {
1039   if ((in_port == plugin->port) || (in_port == plugin->aport))
1040     return GNUNET_OK;
1041   return GNUNET_SYSERR;
1042 }
1043
1044
1045 /**
1046  * Function that will be called to check if a binary address for this
1047  * plugin is well-formed and corresponds to an address for THIS peer
1048  * (as per our configuration).  Naturally, if absolutely necessary,
1049  * plugins can be a bit conservative in their answer, but in general
1050  * plugins should make sure that the address does not redirect
1051  * traffic to a 3rd party that might try to man-in-the-middle our
1052  * traffic.
1053  *
1054  * @param cls closure, should be our handle to the Plugin
1055  * @param addr pointer to the address
1056  * @param addrlen length of addr
1057  * @return GNUNET_OK if this is a plausible address for this peer
1058  *         and transport, GNUNET_SYSERR if not
1059  *
1060  */
1061 static int
1062 udp_plugin_check_address (void *cls, const void *addr, size_t addrlen)
1063 {
1064   struct Plugin *plugin = cls;
1065   struct IPv4UdpAddress *v4;
1066   struct IPv6UdpAddress *v6;
1067
1068   if ((addrlen != sizeof (struct IPv4UdpAddress)) &&
1069       (addrlen != sizeof (struct IPv6UdpAddress)))
1070   {
1071     return GNUNET_SYSERR;
1072   }
1073   if (addrlen == sizeof (struct IPv4UdpAddress))
1074   {
1075     v4 = (struct IPv4UdpAddress *) addr;
1076     if (GNUNET_OK != check_port (plugin, ntohs (v4->u4_port)))
1077       return GNUNET_SYSERR;
1078     if (GNUNET_OK !=
1079         GNUNET_NAT_test_address (plugin->nat, &v4->ipv4_addr,
1080                                  sizeof (struct in_addr)))
1081       return GNUNET_SYSERR;
1082   }
1083   else
1084   {
1085     v6 = (struct IPv6UdpAddress *) addr;
1086     if (IN6_IS_ADDR_LINKLOCAL (&v6->ipv6_addr))
1087     {
1088       GNUNET_break_op (0);
1089       return GNUNET_SYSERR;
1090     }
1091     if (GNUNET_OK != check_port (plugin, ntohs (v6->u6_port)))
1092       return GNUNET_SYSERR;
1093     if (GNUNET_OK !=
1094         GNUNET_NAT_test_address (plugin->nat, &v6->ipv6_addr,
1095                                  sizeof (struct in6_addr)))
1096       return GNUNET_SYSERR;
1097   }
1098   return GNUNET_OK;
1099 }
1100
1101
1102 /**
1103  * Task to free resources associated with a session.
1104  *
1105  * @param s session to free
1106  */
1107 static void
1108 free_session (struct Session *s)
1109 {
1110   if (NULL != s->frag_ctx)
1111   {
1112     GNUNET_FRAGMENT_context_destroy(s->frag_ctx->frag, NULL, NULL);
1113     GNUNET_free (s->frag_ctx);
1114     s->frag_ctx = NULL;
1115   }
1116   GNUNET_free (s);
1117 }
1118
1119
1120 static void
1121 dequeue (struct Plugin *plugin, struct UDP_MessageWrapper * udpw)
1122 {
1123   if (plugin->bytes_in_buffer < udpw->msg_size)
1124       GNUNET_break (0);
1125   else
1126   {
1127     GNUNET_STATISTICS_update (plugin->env->stats,
1128                               "# UDP, total, bytes in buffers",
1129                               - (long long) udpw->msg_size, GNUNET_NO);
1130     plugin->bytes_in_buffer -= udpw->msg_size;
1131   }
1132   GNUNET_STATISTICS_update (plugin->env->stats,
1133                             "# UDP, total, msgs in buffers",
1134                             -1, GNUNET_NO);
1135   if (udpw->session->addrlen == sizeof (struct sockaddr_in))
1136     GNUNET_CONTAINER_DLL_remove (plugin->ipv4_queue_head,
1137                                  plugin->ipv4_queue_tail, udpw);
1138   if (udpw->session->addrlen == sizeof (struct sockaddr_in6))
1139     GNUNET_CONTAINER_DLL_remove (plugin->ipv6_queue_head,
1140                                  plugin->ipv6_queue_tail, udpw);
1141 }
1142
1143
1144 static void
1145 fragmented_message_done (struct UDP_FragmentationContext *fc, int result)
1146 {
1147   struct UDP_MessageWrapper *udpw;
1148   struct UDP_MessageWrapper *tmp;
1149   struct UDP_MessageWrapper dummy;
1150   struct Session *s = fc->session;
1151
1152   LOG (GNUNET_ERROR_TYPE_DEBUG, 
1153        "%p : Fragmented message removed with result %s\n",
1154        fc,
1155        (result == GNUNET_SYSERR) ? "FAIL" : "SUCCESS");
1156   
1157   /* Call continuation for fragmented message */
1158   memset (&dummy, 0, sizeof (dummy));
1159   dummy.msg_type = MSG_FRAGMENTED_COMPLETE;
1160   dummy.msg_size = s->frag_ctx->on_wire_size;
1161   dummy.payload_size = s->frag_ctx->payload_size;
1162   dummy.frag_ctx = s->frag_ctx;
1163   dummy.cont = NULL;
1164   dummy.cont_cls = NULL;
1165   dummy.session = s;
1166
1167   call_continuation (&dummy, result);
1168
1169   /* Remove leftover fragments from queue */
1170   if (s->addrlen == sizeof (struct sockaddr_in6))
1171   {
1172     udpw = plugin->ipv6_queue_head;
1173     while (NULL != udpw)
1174     {
1175       tmp = udpw->next;
1176       if ((udpw->frag_ctx != NULL) && (udpw->frag_ctx == s->frag_ctx))
1177       {
1178         dequeue (plugin, udpw);
1179         call_continuation (udpw, GNUNET_SYSERR);
1180         GNUNET_free (udpw);
1181       }
1182       udpw = tmp;
1183     }
1184   }
1185   if (s->addrlen == sizeof (struct sockaddr_in))
1186   {
1187     udpw = plugin->ipv4_queue_head;
1188     while (udpw!= NULL)
1189     {
1190       tmp = udpw->next;
1191       if ((NULL != udpw->frag_ctx) && (udpw->frag_ctx == s->frag_ctx))
1192       {
1193         dequeue (plugin, udpw);
1194         call_continuation (udpw, GNUNET_SYSERR);
1195         GNUNET_free (udpw);
1196       }
1197       udpw = tmp;
1198     }
1199   }
1200
1201   /* Destroy fragmentation context */
1202   GNUNET_FRAGMENT_context_destroy (fc->frag,
1203                                      &s->last_expected_msg_delay,
1204                                      &s->last_expected_ack_delay);
1205   s->frag_ctx = NULL;
1206   GNUNET_free (fc );
1207 }
1208
1209 /**
1210  * Functions with this signature are called whenever we need
1211  * to close a session due to a disconnect or failure to
1212  * establish a connection.
1213  *
1214  * @param s session to close down
1215  */
1216 static void
1217 disconnect_session (struct Session *s)
1218 {
1219   struct UDP_MessageWrapper *udpw;
1220   struct UDP_MessageWrapper *next;
1221
1222   GNUNET_assert (GNUNET_YES != s->in_destroy);
1223   LOG (GNUNET_ERROR_TYPE_DEBUG,
1224        "Session %p to peer `%s' address ended \n",
1225          s,
1226          GNUNET_i2s (&s->target),
1227          GNUNET_a2s (s->sock_addr, s->addrlen));
1228   stop_session_timeout (s);
1229
1230   if (NULL != s->frag_ctx)
1231   {
1232     /* Remove fragmented message due to disconnect */
1233     fragmented_message_done (s->frag_ctx, GNUNET_SYSERR);
1234   }
1235
1236   next = plugin->ipv4_queue_head;
1237   while (NULL != (udpw = next))
1238   {
1239     next = udpw->next;
1240     if (udpw->session == s)
1241     {
1242       dequeue (plugin, udpw);
1243       call_continuation(udpw, GNUNET_SYSERR);
1244       GNUNET_free (udpw);
1245     }
1246   }
1247   next = plugin->ipv6_queue_head;
1248   while (NULL != (udpw = next))
1249   {
1250     next = udpw->next;
1251     if (udpw->session == s)
1252     {
1253       dequeue (plugin, udpw);
1254       call_continuation(udpw, GNUNET_SYSERR);
1255       GNUNET_free (udpw);
1256     }
1257   }
1258   plugin->env->session_end (plugin->env->cls, &s->target, s);
1259
1260   if (NULL != s->frag_ctx)
1261   {
1262     if (NULL != s->frag_ctx->cont)
1263     {
1264       s->frag_ctx->cont (s->frag_ctx->cont_cls, &s->target, GNUNET_SYSERR,
1265                          s->frag_ctx->payload_size, s->frag_ctx->on_wire_size);
1266       LOG (GNUNET_ERROR_TYPE_DEBUG,
1267           "Calling continuation for fragemented message to `%s' with result SYSERR\n",
1268           GNUNET_i2s (&s->target));
1269     }
1270   }
1271
1272   GNUNET_assert (GNUNET_YES ==
1273                  GNUNET_CONTAINER_multihashmap_remove (plugin->sessions,
1274                                                        &s->target.hashPubKey,
1275                                                        s));
1276   GNUNET_STATISTICS_set(plugin->env->stats,
1277                         "# UDP, sessions active",
1278                         GNUNET_CONTAINER_multihashmap_size(plugin->sessions),
1279                         GNUNET_NO);
1280   if (s->rc > 0)
1281     s->in_destroy = GNUNET_YES;
1282   else
1283     free_session (s);
1284 }
1285
1286 /**
1287  * Destroy a session, plugin is being unloaded.
1288  *
1289  * @param cls unused
1290  * @param key hash of public key of target peer
1291  * @param value a 'struct PeerSession*' to clean up
1292  * @return GNUNET_OK (continue to iterate)
1293  */
1294 static int
1295 disconnect_and_free_it (void *cls, const struct GNUNET_HashCode * key, void *value)
1296 {
1297   disconnect_session(value);
1298   return GNUNET_OK;
1299 }
1300
1301
1302 /**
1303  * Disconnect from a remote node.  Clean up session if we have one for this peer
1304  *
1305  * @param cls closure for this call (should be handle to Plugin)
1306  * @param target the peeridentity of the peer to disconnect
1307  * @return GNUNET_OK on success, GNUNET_SYSERR if the operation failed
1308  */
1309 static void
1310 udp_disconnect (void *cls, const struct GNUNET_PeerIdentity *target)
1311 {
1312   struct Plugin *plugin = cls;
1313   GNUNET_assert (plugin != NULL);
1314
1315   GNUNET_assert (target != NULL);
1316   LOG (GNUNET_ERROR_TYPE_DEBUG,
1317        "Disconnecting from peer `%s'\n", GNUNET_i2s (target));
1318   /* Clean up sessions */
1319   GNUNET_CONTAINER_multihashmap_get_multiple (plugin->sessions, &target->hashPubKey, &disconnect_and_free_it, plugin);
1320 }
1321
1322
1323 /**
1324  * Session was idle, so disconnect it
1325  */
1326 static void
1327 session_timeout (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
1328 {
1329   GNUNET_assert (NULL != cls);
1330   struct Session *s = cls;
1331
1332   s->timeout_task = GNUNET_SCHEDULER_NO_TASK;
1333   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1334               "Session %p was idle for %s, disconnecting\n",
1335               s,
1336               GNUNET_STRINGS_relative_time_to_string (GNUNET_CONSTANTS_IDLE_CONNECTION_TIMEOUT,
1337                                                       GNUNET_YES));
1338   /* call session destroy function */
1339   disconnect_session (s);
1340 }
1341
1342
1343 /**
1344  * Start session timeout
1345  */
1346 static void
1347 start_session_timeout (struct Session *s)
1348 {
1349   GNUNET_assert (NULL != s);
1350   GNUNET_assert (GNUNET_SCHEDULER_NO_TASK == s->timeout_task);
1351   s->timeout_task =  GNUNET_SCHEDULER_add_delayed (GNUNET_CONSTANTS_IDLE_CONNECTION_TIMEOUT,
1352                                                    &session_timeout,
1353                                                    s);
1354   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1355               "Timeout for session %p set to %s\n",
1356               s,
1357               GNUNET_STRINGS_relative_time_to_string (GNUNET_CONSTANTS_IDLE_CONNECTION_TIMEOUT,
1358                                                       GNUNET_YES));
1359 }
1360
1361
1362 /**
1363  * Increment session timeout due to activity
1364  */
1365 static void
1366 reschedule_session_timeout (struct Session *s)
1367 {
1368   GNUNET_assert (NULL != s);
1369   GNUNET_assert (GNUNET_SCHEDULER_NO_TASK != s->timeout_task);
1370
1371   GNUNET_SCHEDULER_cancel (s->timeout_task);
1372   s->timeout_task =  GNUNET_SCHEDULER_add_delayed (GNUNET_CONSTANTS_IDLE_CONNECTION_TIMEOUT,
1373                                                    &session_timeout,
1374                                                    s);
1375   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1376               "Timeout rescheduled for session %p set to %s\n",
1377               s, 
1378               GNUNET_STRINGS_relative_time_to_string (GNUNET_CONSTANTS_IDLE_CONNECTION_TIMEOUT,
1379                                                       GNUNET_YES));
1380 }
1381
1382
1383 static struct Session *
1384 create_session (struct Plugin *plugin, const struct GNUNET_PeerIdentity *target,
1385                 const void *addr, size_t addrlen,
1386                 GNUNET_TRANSPORT_TransmitContinuation cont, void *cont_cls)
1387 {
1388   struct Session *s;
1389   const struct IPv4UdpAddress *t4;
1390   const struct IPv6UdpAddress *t6;
1391   struct sockaddr_in *v4;
1392   struct sockaddr_in6 *v6;
1393   size_t len;
1394
1395   switch (addrlen)
1396   {
1397   case sizeof (struct IPv4UdpAddress):
1398     if (NULL == plugin->sockv4)
1399     {
1400       LOG (GNUNET_ERROR_TYPE_DEBUG,
1401            "Could not create session for peer `%s' address `%s': IPv4 is not enabled\n",
1402            GNUNET_i2s(target),
1403            udp_address_to_string(NULL, addr, addrlen));
1404       return NULL;
1405     }
1406     t4 = addr;
1407     s = GNUNET_malloc (sizeof (struct Session) + sizeof (struct sockaddr_in));
1408     len = sizeof (struct sockaddr_in);
1409     v4 = (struct sockaddr_in *) &s[1];
1410     v4->sin_family = AF_INET;
1411 #if HAVE_SOCKADDR_IN_SIN_LEN
1412     v4->sin_len = sizeof (struct sockaddr_in);
1413 #endif
1414     v4->sin_port = t4->u4_port;
1415     v4->sin_addr.s_addr = t4->ipv4_addr;
1416     s->ats = plugin->env->get_address_type (plugin->env->cls, (const struct sockaddr *) v4, sizeof (struct sockaddr_in));
1417     break;
1418   case sizeof (struct IPv6UdpAddress):
1419     if (NULL == plugin->sockv6)
1420     {
1421       LOG (GNUNET_ERROR_TYPE_INFO,
1422            "Could not create session for peer `%s' address `%s': IPv6 is not enabled\n",
1423            GNUNET_i2s(target),
1424            udp_address_to_string(NULL, addr, addrlen));
1425       return NULL;
1426     }
1427     t6 = addr;
1428     s = GNUNET_malloc (sizeof (struct Session) + sizeof (struct sockaddr_in6));
1429     len = sizeof (struct sockaddr_in6);
1430     v6 = (struct sockaddr_in6 *) &s[1];
1431     v6->sin6_family = AF_INET6;
1432 #if HAVE_SOCKADDR_IN_SIN_LEN
1433     v6->sin6_len = sizeof (struct sockaddr_in6);
1434 #endif
1435     v6->sin6_port = t6->u6_port;
1436     v6->sin6_addr = t6->ipv6_addr;
1437     s->ats = plugin->env->get_address_type (plugin->env->cls, (const struct sockaddr *) v6, sizeof (struct sockaddr_in6));
1438     break;
1439   default:
1440     /* Must have a valid address to send to */
1441     GNUNET_STATISTICS_update (plugin->env->stats,
1442                               gettext_noop
1443                               ("# requests to create session with invalid address"),
1444                               1, GNUNET_NO);
1445     return NULL;
1446   }
1447   s->addrlen = len;
1448   s->target = *target;
1449   s->sock_addr = (const struct sockaddr *) &s[1];
1450   s->last_expected_ack_delay = GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_MILLISECONDS, 250);
1451   s->last_expected_msg_delay = GNUNET_TIME_UNIT_MILLISECONDS;
1452   s->flow_delay_from_other_peer = GNUNET_TIME_UNIT_ZERO_ABS;
1453   s->flow_delay_for_other_peer = GNUNET_TIME_UNIT_ZERO;
1454   s->inbound = GNUNET_NO;
1455   start_session_timeout (s);
1456   return s;
1457 }
1458
1459
1460 static int
1461 session_cmp_it (void *cls,
1462                 const struct GNUNET_HashCode * key,
1463                 void *value)
1464 {
1465   struct SessionCompareContext * cctx = cls;
1466   const struct GNUNET_HELLO_Address *address = cctx->addr;
1467   struct Session *s = value;
1468
1469   socklen_t s_addrlen = s->addrlen;
1470
1471   LOG (GNUNET_ERROR_TYPE_DEBUG,
1472        "Comparing address %s <-> %s\n",
1473        udp_address_to_string (NULL, (void *) address->address, 
1474                               address->address_length),
1475        GNUNET_a2s (s->sock_addr, s->addrlen));
1476   if ((address->address_length == sizeof (struct IPv4UdpAddress)) &&
1477       (s_addrlen == sizeof (struct sockaddr_in)))
1478   {
1479     struct IPv4UdpAddress * u4 = NULL;
1480     u4 = (struct IPv4UdpAddress *) address->address;
1481     const struct sockaddr_in *s4 = (const struct sockaddr_in *) s->sock_addr;
1482     if ((0 == memcmp ((const void *) &u4->ipv4_addr,(const void *) &s4->sin_addr, sizeof (struct in_addr))) &&
1483         (u4->u4_port == s4->sin_port))
1484     {
1485       cctx->res = s;
1486       return GNUNET_NO;
1487     }
1488
1489   }
1490   if ((address->address_length == sizeof (struct IPv6UdpAddress)) &&
1491       (s_addrlen == sizeof (struct sockaddr_in6)))
1492   {
1493     struct IPv6UdpAddress * u6 = NULL;
1494     u6 = (struct IPv6UdpAddress *) address->address;
1495     const struct sockaddr_in6 *s6 = (const struct sockaddr_in6 *) s->sock_addr;
1496     if ((0 == memcmp (&u6->ipv6_addr, &s6->sin6_addr, sizeof (struct in6_addr))) &&
1497         (u6->u6_port == s6->sin6_port))
1498     {
1499       cctx->res = s;
1500       return GNUNET_NO;
1501     }
1502   }
1503   return GNUNET_YES;
1504 }
1505
1506
1507 /**
1508  * Function obtain the network type for a session
1509  *
1510  * @param cls closure ('struct Plugin*')
1511  * @param session the session
1512  * @return the network type in HBO or GNUNET_SYSERR
1513  */
1514 static enum GNUNET_ATS_Network_Type
1515 udp_get_network (void *cls, 
1516                  struct Session *session)
1517 {
1518   return ntohl (session->ats.value);
1519 }
1520
1521
1522 /**
1523  * Creates a new outbound session the transport service will use to send data to the
1524  * peer
1525  *
1526  * @param cls the plugin
1527  * @param address the address
1528  * @return the session or NULL of max connections exceeded
1529  */
1530 static struct Session *
1531 udp_plugin_lookup_session (void *cls,
1532                            const struct GNUNET_HELLO_Address *address)
1533 {
1534   struct Plugin * plugin = cls;
1535   struct IPv6UdpAddress * udp_a6;
1536   struct IPv4UdpAddress * udp_a4;
1537
1538   GNUNET_assert (plugin != NULL);
1539   GNUNET_assert (address != NULL);
1540
1541
1542   if ((address->address == NULL) ||
1543       ((address->address_length != sizeof (struct IPv4UdpAddress)) &&
1544       (address->address_length != sizeof (struct IPv6UdpAddress))))
1545   {
1546     LOG (GNUNET_ERROR_TYPE_WARNING,
1547         _("Trying to create session for address of unexpected length %u (should be %u or %u)\n"),
1548         address->address_length,
1549         sizeof (struct IPv4UdpAddress),
1550         sizeof (struct IPv6UdpAddress));
1551     return NULL;
1552   }
1553
1554   if (address->address_length == sizeof (struct IPv4UdpAddress))
1555   {
1556     if (plugin->sockv4 == NULL)
1557       return NULL;
1558     udp_a4 = (struct IPv4UdpAddress *) address->address;
1559     if (udp_a4->u4_port == 0)
1560       return NULL;
1561   }
1562
1563   if (address->address_length == sizeof (struct IPv6UdpAddress))
1564   {
1565     if (plugin->sockv6 == NULL)
1566       return NULL;
1567     udp_a6 = (struct IPv6UdpAddress *) address->address;
1568     if (udp_a6->u6_port == 0)
1569       return NULL;
1570   }
1571
1572   /* check if session already exists */
1573   struct SessionCompareContext cctx;
1574   cctx.addr = address;
1575   cctx.res = NULL;
1576   LOG (GNUNET_ERROR_TYPE_DEBUG,
1577        "Looking for existing session for peer `%s' `%s' \n", 
1578        GNUNET_i2s (&address->peer), 
1579        udp_address_to_string(NULL, address->address, address->address_length));
1580   GNUNET_CONTAINER_multihashmap_get_multiple(plugin->sessions, &address->peer.hashPubKey, session_cmp_it, &cctx);
1581   if (cctx.res != NULL)
1582   {
1583     LOG (GNUNET_ERROR_TYPE_DEBUG, "Found existing session %p\n", cctx.res);
1584     return cctx.res;
1585   }
1586   return NULL;
1587 }
1588
1589
1590 static struct Session *
1591 udp_plugin_create_session (void *cls,
1592                            const struct GNUNET_HELLO_Address *address)
1593 {
1594   struct Session *s;
1595
1596   s = create_session (plugin,
1597                       &address->peer,
1598                       address->address,
1599                       address->address_length,
1600                       NULL, NULL);
1601   if (NULL == s)
1602     return NULL; /* protocol not supported or address invalid */
1603   LOG (GNUNET_ERROR_TYPE_DEBUG,
1604        "Creating new session %p for peer `%s' address `%s'\n",
1605        s,
1606        GNUNET_i2s(&address->peer),
1607        udp_address_to_string(NULL,address->address,address->address_length));
1608   GNUNET_assert (GNUNET_OK ==
1609                  GNUNET_CONTAINER_multihashmap_put (plugin->sessions,
1610                                                     &s->target.hashPubKey,
1611                                                     s,
1612                                                     GNUNET_CONTAINER_MULTIHASHMAPOPTION_MULTIPLE));
1613   GNUNET_STATISTICS_set(plugin->env->stats,
1614                         "# UDP, sessions active",
1615                         GNUNET_CONTAINER_multihashmap_size(plugin->sessions),
1616                         GNUNET_NO);
1617   return s;
1618 }
1619
1620
1621 /**
1622  * Creates a new outbound session the transport service will use to send data to the
1623  * peer
1624  *
1625  * @param cls the plugin
1626  * @param address the address
1627  * @return the session or NULL of max connections exceeded
1628  */
1629 static struct Session *
1630 udp_plugin_get_session (void *cls,
1631                         const struct GNUNET_HELLO_Address *address)
1632 {
1633   struct Session *s;
1634
1635   if (NULL == address)
1636   {
1637     GNUNET_break (0);
1638     return NULL;
1639   }
1640   if ((address->address_length != sizeof (struct IPv4UdpAddress)) &&
1641       (address->address_length != sizeof (struct IPv6UdpAddress)))
1642     return NULL;
1643
1644   /* otherwise create new */
1645   if (NULL != (s = udp_plugin_lookup_session (cls, address)))
1646     return s;
1647   return udp_plugin_create_session (cls, address);
1648 }
1649
1650
1651 static void 
1652 enqueue (struct Plugin *plugin, struct UDP_MessageWrapper * udpw)
1653 {
1654   if (plugin->bytes_in_buffer + udpw->msg_size > INT64_MAX)
1655       GNUNET_break (0);
1656   else
1657   {
1658     GNUNET_STATISTICS_update (plugin->env->stats,
1659                               "# UDP, total, bytes in buffers",
1660                               udpw->msg_size, GNUNET_NO);
1661     plugin->bytes_in_buffer += udpw->msg_size;
1662   }
1663   GNUNET_STATISTICS_update (plugin->env->stats,
1664                             "# UDP, total, msgs in buffers",
1665                             1, GNUNET_NO);
1666   if (udpw->session->addrlen == sizeof (struct sockaddr_in))
1667     GNUNET_CONTAINER_DLL_insert (plugin->ipv4_queue_head,
1668                                  plugin->ipv4_queue_tail, udpw);
1669   if (udpw->session->addrlen == sizeof (struct sockaddr_in6))
1670     GNUNET_CONTAINER_DLL_insert (plugin->ipv6_queue_head,
1671                                  plugin->ipv6_queue_tail, udpw);
1672 }
1673
1674
1675
1676 /**
1677  * Fragment message was transmitted via UDP, let fragmentation know
1678  * to send the next fragment now.
1679  *
1680  * @param cls the 'struct UDPMessageWrapper' of the fragment
1681  * @param target destination peer (ignored)
1682  * @param result GNUNET_OK on success (ignored)
1683  * @param payload bytes payload sent
1684  * @param physical bytes physical sent
1685  */
1686 static void
1687 send_next_fragment (void *cls,
1688                     const struct GNUNET_PeerIdentity *target,
1689                     int result, size_t payload, size_t physical)
1690 {
1691   struct UDP_MessageWrapper *udpw = cls;
1692
1693   GNUNET_FRAGMENT_context_transmission_done (udpw->frag_ctx->frag);  
1694 }
1695
1696
1697 /**
1698  * Function that is called with messages created by the fragmentation
1699  * module.  In the case of the 'proc' callback of the
1700  * GNUNET_FRAGMENT_context_create function, this function must
1701  * eventually call 'GNUNET_FRAGMENT_context_transmission_done'.
1702  *
1703  * @param cls closure, the 'struct FragmentationContext'
1704  * @param msg the message that was created
1705  */
1706 static void
1707 enqueue_fragment (void *cls, const struct GNUNET_MessageHeader *msg)
1708 {
1709   struct UDP_FragmentationContext *frag_ctx = cls;
1710   struct Plugin *plugin = frag_ctx->plugin;
1711   struct UDP_MessageWrapper * udpw;
1712   size_t msg_len = ntohs (msg->size);
1713  
1714   LOG (GNUNET_ERROR_TYPE_DEBUG, 
1715        "Enqueuing fragment with %u bytes\n", msg_len);
1716   frag_ctx->fragments_used ++;
1717   udpw = GNUNET_malloc (sizeof (struct UDP_MessageWrapper) + msg_len);
1718   udpw->session = frag_ctx->session;
1719   udpw->msg_buf = (char *) &udpw[1];
1720   udpw->msg_size = msg_len;
1721   udpw->payload_size = msg_len; /*FIXME: minus fragment overhead */
1722   udpw->cont = &send_next_fragment;
1723   udpw->cont_cls = udpw;
1724   udpw->timeout = frag_ctx->timeout;
1725   udpw->frag_ctx = frag_ctx;
1726   udpw->msg_type = MSG_FRAGMENTED;
1727   memcpy (udpw->msg_buf, msg, msg_len);
1728   enqueue (plugin, udpw);
1729   schedule_select (plugin);
1730 }
1731
1732
1733 /**
1734  * Function that can be used by the transport service to transmit
1735  * a message using the plugin.   Note that in the case of a
1736  * peer disconnecting, the continuation MUST be called
1737  * prior to the disconnect notification itself.  This function
1738  * will be called with this peer's HELLO message to initiate
1739  * a fresh connection to another peer.
1740  *
1741  * @param cls closure
1742  * @param s which session must be used
1743  * @param msgbuf the message to transmit
1744  * @param msgbuf_size number of bytes in 'msgbuf'
1745  * @param priority how important is the message (most plugins will
1746  *                 ignore message priority and just FIFO)
1747  * @param to how long to wait at most for the transmission (does not
1748  *                require plugins to discard the message after the timeout,
1749  *                just advisory for the desired delay; most plugins will ignore
1750  *                this as well)
1751  * @param cont continuation to call once the message has
1752  *        been transmitted (or if the transport is ready
1753  *        for the next transmission call; or if the
1754  *        peer disconnected...); can be NULL
1755  * @param cont_cls closure for cont
1756  * @return number of bytes used (on the physical network, with overheads);
1757  *         -1 on hard errors (i.e. address invalid); 0 is a legal value
1758  *         and does NOT mean that the message was not transmitted (DV)
1759  */
1760 static ssize_t
1761 udp_plugin_send (void *cls,
1762                   struct Session *s,
1763                   const char *msgbuf, size_t msgbuf_size,
1764                   unsigned int priority,
1765                   struct GNUNET_TIME_Relative to,
1766                   GNUNET_TRANSPORT_TransmitContinuation cont, void *cont_cls)
1767 {
1768   struct Plugin *plugin = cls;
1769   size_t udpmlen = msgbuf_size + sizeof (struct UDPMessage);
1770   struct UDP_FragmentationContext * frag_ctx;
1771   struct UDP_MessageWrapper * udpw;
1772   struct UDPMessage *udp;
1773   char mbuf[udpmlen];
1774   GNUNET_assert (plugin != NULL);
1775   GNUNET_assert (s != NULL);
1776
1777   if ((s->addrlen == sizeof (struct sockaddr_in6)) && (plugin->sockv6 == NULL))
1778     return GNUNET_SYSERR;
1779   if ((s->addrlen == sizeof (struct sockaddr_in)) && (plugin->sockv4 == NULL))
1780     return GNUNET_SYSERR;
1781   if (udpmlen >= GNUNET_SERVER_MAX_MESSAGE_SIZE)
1782   {
1783     GNUNET_break (0);
1784     return GNUNET_SYSERR;
1785   }
1786   if (GNUNET_YES != GNUNET_CONTAINER_multihashmap_contains_value(plugin->sessions, &s->target.hashPubKey, s))
1787   {
1788     GNUNET_break (0);
1789     return GNUNET_SYSERR;
1790   }
1791   LOG (GNUNET_ERROR_TYPE_DEBUG,
1792        "UDP transmits %u-byte message to `%s' using address `%s'\n",
1793        udpmlen,
1794        GNUNET_i2s (&s->target),
1795        GNUNET_a2s(s->sock_addr, s->addrlen));
1796
1797
1798   /* Message */
1799   udp = (struct UDPMessage *) mbuf;
1800   udp->header.size = htons (udpmlen);
1801   udp->header.type = htons (GNUNET_MESSAGE_TYPE_TRANSPORT_UDP_MESSAGE);
1802   udp->reserved = htonl (0);
1803   udp->sender = *plugin->env->my_identity;
1804
1805   reschedule_session_timeout(s);
1806   if (udpmlen <= UDP_MTU)
1807   {
1808     /* unfragmented message */
1809     udpw = GNUNET_malloc (sizeof (struct UDP_MessageWrapper) + udpmlen);
1810     udpw->session = s;
1811     udpw->msg_buf = (char *) &udpw[1];
1812     udpw->msg_size = udpmlen; /* message size with UDP overhead */
1813     udpw->payload_size = msgbuf_size; /* message size without UDP overhead */
1814     udpw->timeout = GNUNET_TIME_absolute_add(GNUNET_TIME_absolute_get(), to);
1815     udpw->cont = cont;
1816     udpw->cont_cls = cont_cls;
1817     udpw->frag_ctx = NULL;
1818     udpw->msg_type = MSG_UNFRAGMENTED;
1819     memcpy (udpw->msg_buf, udp, sizeof (struct UDPMessage));
1820     memcpy (&udpw->msg_buf[sizeof (struct UDPMessage)], msgbuf, msgbuf_size);
1821     enqueue (plugin, udpw);
1822
1823     GNUNET_STATISTICS_update (plugin->env->stats,
1824                               "# UDP, unfragmented msgs, messages, attempt",
1825                               1, GNUNET_NO);
1826     GNUNET_STATISTICS_update (plugin->env->stats,
1827                               "# UDP, unfragmented msgs, bytes payload, attempt",
1828                               udpw->payload_size, GNUNET_NO);
1829   }
1830   else
1831   {
1832     /* fragmented message */
1833     if  (s->frag_ctx != NULL)
1834       return GNUNET_SYSERR;
1835     memcpy (&udp[1], msgbuf, msgbuf_size);
1836     frag_ctx = GNUNET_malloc (sizeof (struct UDP_FragmentationContext));
1837     frag_ctx->plugin = plugin;
1838     frag_ctx->session = s;
1839     frag_ctx->cont = cont;
1840     frag_ctx->cont_cls = cont_cls;
1841     frag_ctx->timeout = GNUNET_TIME_absolute_add(GNUNET_TIME_absolute_get(), to);
1842     frag_ctx->payload_size = msgbuf_size; /* unfragmented message size without UDP overhead */
1843     frag_ctx->on_wire_size = 0; /* bytes with UDP and fragmentation overhead */
1844     frag_ctx->frag = GNUNET_FRAGMENT_context_create (plugin->env->stats,
1845                                                      UDP_MTU,
1846                                                      &plugin->tracker,
1847                                                      s->last_expected_msg_delay, 
1848                                                      s->last_expected_ack_delay, 
1849                                                      &udp->header,
1850                                                      &enqueue_fragment,
1851                                                      frag_ctx);    
1852     s->frag_ctx = frag_ctx;
1853     GNUNET_STATISTICS_update (plugin->env->stats,
1854                               "# UDP, fragmented msgs, messages, pending",
1855                               1, GNUNET_NO);
1856     GNUNET_STATISTICS_update (plugin->env->stats,
1857                               "# UDP, fragmented msgs, messages, attempt",
1858                               1, GNUNET_NO);
1859     GNUNET_STATISTICS_update (plugin->env->stats,
1860                               "# UDP, fragmented msgs, bytes payload, attempt",
1861                               frag_ctx->payload_size, GNUNET_NO);
1862   }
1863   schedule_select (plugin);
1864   return udpmlen;
1865 }
1866
1867
1868 /**
1869  * Our external IP address/port mapping has changed.
1870  *
1871  * @param cls closure, the 'struct LocalAddrList'
1872  * @param add_remove GNUNET_YES to mean the new public IP address, GNUNET_NO to mean
1873  *     the previous (now invalid) one
1874  * @param addr either the previous or the new public IP address
1875  * @param addrlen actual lenght of the address
1876  */
1877 static void
1878 udp_nat_port_map_callback (void *cls, int add_remove,
1879                            const struct sockaddr *addr, socklen_t addrlen)
1880 {
1881   struct Plugin *plugin = cls;
1882   struct IPv4UdpAddress u4;
1883   struct IPv6UdpAddress u6;
1884   void *arg;
1885   size_t args;
1886
1887   LOG (GNUNET_ERROR_TYPE_INFO,
1888        "NAT notification to %s address `%s'\n",
1889        (GNUNET_YES == add_remove) ? "add" : "remove",
1890        GNUNET_a2s (addr, addrlen));
1891
1892   /* convert 'addr' to our internal format */
1893   switch (addr->sa_family)
1894   {
1895   case AF_INET:
1896     GNUNET_assert (addrlen == sizeof (struct sockaddr_in));
1897     memset (&u4, 0, sizeof (u4));
1898     u4.options = htonl(myoptions);
1899     u4.ipv4_addr = ((struct sockaddr_in *) addr)->sin_addr.s_addr;
1900     u4.u4_port = ((struct sockaddr_in *) addr)->sin_port;
1901     if (0 == ((struct sockaddr_in *) addr)->sin_port)
1902         return;
1903     arg = &u4;
1904     args = sizeof (struct IPv4UdpAddress);
1905     break;
1906   case AF_INET6:
1907     GNUNET_assert (addrlen == sizeof (struct sockaddr_in6));
1908     memset (&u4, 0, sizeof (u4));
1909     u6.options = htonl(myoptions);
1910     if (0 == ((struct sockaddr_in6 *) addr)->sin6_port)
1911         return;
1912     memcpy (&u6.ipv6_addr, &((struct sockaddr_in6 *) addr)->sin6_addr,
1913             sizeof (struct in6_addr));
1914     u6.u6_port = ((struct sockaddr_in6 *) addr)->sin6_port;
1915     arg = &u6;
1916     args = sizeof (struct IPv6UdpAddress);
1917     break;
1918   default:
1919     GNUNET_break (0);
1920     return;
1921   }
1922   /* modify our published address list */
1923   plugin->env->notify_address (plugin->env->cls, add_remove, arg, args, "udp");
1924 }
1925
1926
1927
1928 /**
1929  * Message tokenizer has broken up an incomming message. Pass it on
1930  * to the service.
1931  *
1932  * @param cls the 'struct Plugin'
1933  * @param client the 'struct SourceInformation'
1934  * @param hdr the actual message
1935  */
1936 static int
1937 process_inbound_tokenized_messages (void *cls, void *client,
1938                                     const struct GNUNET_MessageHeader *hdr)
1939 {
1940   struct Plugin *plugin = cls;
1941   struct SourceInformation *si = client;
1942   struct GNUNET_TIME_Relative delay;
1943
1944   GNUNET_assert (si->session != NULL);
1945   if (GNUNET_YES == si->session->in_destroy)
1946     return GNUNET_OK;
1947   /* setup ATS */
1948   GNUNET_break (ntohl(si->session->ats.value) != GNUNET_ATS_NET_UNSPECIFIED);
1949   delay = plugin->env->receive (plugin->env->cls,
1950                                 &si->sender,
1951                                 hdr,
1952                                 si->session,
1953                  (GNUNET_YES == si->session->inbound) ? NULL : si->arg,
1954                  (GNUNET_YES == si->session->inbound) ? 0 : si->args);
1955
1956   plugin->env->update_address_metrics (plugin->env->cls,
1957                                        &si->sender,
1958                                          (GNUNET_YES == si->session->inbound) ? NULL : si->arg,
1959                                          (GNUNET_YES == si->session->inbound) ? 0 : si->args,
1960                                        si->session,
1961                                        &si->session->ats, 1);
1962
1963   si->session->flow_delay_for_other_peer = delay;
1964   reschedule_session_timeout(si->session);
1965   return GNUNET_OK;
1966 }
1967
1968
1969 /**
1970  * We've received a UDP Message.  Process it (pass contents to main service).
1971  *
1972  * @param plugin plugin context
1973  * @param msg the message
1974  * @param sender_addr sender address
1975  * @param sender_addr_len number of bytes in sender_addr
1976  */
1977 static void
1978 process_udp_message (struct Plugin *plugin, const struct UDPMessage *msg,
1979                      const struct sockaddr *sender_addr,
1980                      socklen_t sender_addr_len)
1981 {
1982   struct SourceInformation si;
1983   struct Session * s;
1984   struct IPv4UdpAddress u4;
1985   struct IPv6UdpAddress u6;
1986   const void *arg;
1987   size_t args;
1988
1989   if (0 != ntohl (msg->reserved))
1990   {
1991     GNUNET_break_op (0);
1992     return;
1993   }
1994   if (ntohs (msg->header.size) <
1995       sizeof (struct GNUNET_MessageHeader) + sizeof (struct UDPMessage))
1996   {
1997     GNUNET_break_op (0);
1998     return;
1999   }
2000
2001   /* convert address */
2002   switch (sender_addr->sa_family)
2003   {
2004   case AF_INET:
2005     GNUNET_assert (sender_addr_len == sizeof (struct sockaddr_in));
2006     memset (&u4, 0, sizeof (u4));
2007     u6.options = htonl (0);
2008     u4.ipv4_addr = ((struct sockaddr_in *) sender_addr)->sin_addr.s_addr;
2009     u4.u4_port = ((struct sockaddr_in *) sender_addr)->sin_port;
2010     arg = &u4;
2011     args = sizeof (u4);
2012     break;
2013   case AF_INET6:
2014     GNUNET_assert (sender_addr_len == sizeof (struct sockaddr_in6));
2015     memset (&u6, 0, sizeof (u6));
2016     u6.options = htonl (0);
2017     u6.ipv6_addr = ((struct sockaddr_in6 *) sender_addr)->sin6_addr;
2018     u6.u6_port = ((struct sockaddr_in6 *) sender_addr)->sin6_port;
2019     arg = &u6;
2020     args = sizeof (u6);
2021     break;
2022   default:
2023     GNUNET_break (0);
2024     return;
2025   }
2026   LOG (GNUNET_ERROR_TYPE_DEBUG,
2027        "Received message with %u bytes from peer `%s' at `%s'\n",
2028        (unsigned int) ntohs (msg->header.size), GNUNET_i2s (&msg->sender),
2029        GNUNET_a2s (sender_addr, sender_addr_len));
2030
2031   struct GNUNET_HELLO_Address * address = GNUNET_HELLO_address_allocate(&msg->sender, "udp", arg, args);
2032   if (NULL == (s = udp_plugin_lookup_session (plugin, address)))
2033   {
2034                 s = udp_plugin_create_session(plugin, address);
2035                 s->inbound = GNUNET_YES;
2036           plugin->env->session_start (NULL, &address->peer, PLUGIN_NAME,
2037                         (GNUNET_YES == s->inbound) ? NULL : address->address,
2038                         (GNUNET_YES == s->inbound) ? 0 : address->address_length,
2039                   s, NULL, 0);
2040   }
2041   GNUNET_free (address);
2042
2043   /* iterate over all embedded messages */
2044   si.session = s;
2045   si.sender = msg->sender;
2046   si.arg = arg;
2047   si.args = args;
2048   s->rc++;
2049   GNUNET_SERVER_mst_receive (plugin->mst, &si, (const char *) &msg[1],
2050                              ntohs (msg->header.size) -
2051                              sizeof (struct UDPMessage), GNUNET_YES, GNUNET_NO);
2052   s->rc--;
2053   if ( (0 == s->rc) && (GNUNET_YES == s->in_destroy))
2054     free_session (s);
2055 }
2056
2057
2058 /**
2059  * Scan the heap for a receive context with the given address.
2060  *
2061  * @param cls the 'struct FindReceiveContext'
2062  * @param node internal node of the heap
2063  * @param element value stored at the node (a 'struct ReceiveContext')
2064  * @param cost cost associated with the node
2065  * @return GNUNET_YES if we should continue to iterate,
2066  *         GNUNET_NO if not.
2067  */
2068 static int
2069 find_receive_context (void *cls, struct GNUNET_CONTAINER_HeapNode *node,
2070                       void *element, GNUNET_CONTAINER_HeapCostType cost)
2071 {
2072   struct FindReceiveContext *frc = cls;
2073   struct DefragContext *e = element;
2074
2075   if ((frc->addr_len == e->addr_len) &&
2076       (0 == memcmp (frc->addr, e->src_addr, frc->addr_len)))
2077   {
2078     frc->rc = e;
2079     return GNUNET_NO;
2080   }
2081   return GNUNET_YES;
2082 }
2083
2084
2085 /**
2086  * Process a defragmented message.
2087  *
2088  * @param cls the 'struct ReceiveContext'
2089  * @param msg the message
2090  */
2091 static void
2092 fragment_msg_proc (void *cls, const struct GNUNET_MessageHeader *msg)
2093 {
2094   struct DefragContext *rc = cls;
2095
2096   if (ntohs (msg->type) != GNUNET_MESSAGE_TYPE_TRANSPORT_UDP_MESSAGE)
2097   {
2098     GNUNET_break (0);
2099     return;
2100   }
2101   if (ntohs (msg->size) < sizeof (struct UDPMessage))
2102   {
2103     GNUNET_break (0);
2104     return;
2105   }
2106   process_udp_message (rc->plugin, (const struct UDPMessage *) msg,
2107                        rc->src_addr, rc->addr_len);
2108 }
2109
2110
2111 struct LookupContext
2112 {
2113   const struct sockaddr * addr;
2114
2115   struct Session *res;
2116
2117   size_t addrlen;
2118 };
2119
2120
2121 static int
2122 lookup_session_by_addr_it (void *cls, const struct GNUNET_HashCode * key, void *value)
2123 {
2124   struct LookupContext *l_ctx = cls;
2125   struct Session * s = value;
2126
2127   if ((s->addrlen == l_ctx->addrlen) &&
2128       (0 == memcmp (s->sock_addr, l_ctx->addr, s->addrlen)))
2129   {
2130     l_ctx->res = s;
2131     return GNUNET_NO;
2132   }
2133   return GNUNET_YES;
2134 }
2135
2136
2137 /**
2138  * Transmit an acknowledgement.
2139  *
2140  * @param cls the 'struct ReceiveContext'
2141  * @param id message ID (unused)
2142  * @param msg ack to transmit
2143  */
2144 static void
2145 ack_proc (void *cls, uint32_t id, const struct GNUNET_MessageHeader *msg)
2146 {
2147   struct DefragContext *rc = cls;
2148   size_t msize = sizeof (struct UDP_ACK_Message) + ntohs (msg->size);
2149   struct UDP_ACK_Message *udp_ack;
2150   uint32_t delay = 0;
2151   struct UDP_MessageWrapper *udpw;
2152   struct Session *s;
2153   struct LookupContext l_ctx;
2154
2155   l_ctx.addr = rc->src_addr;
2156   l_ctx.addrlen = rc->addr_len;
2157   l_ctx.res = NULL;
2158   GNUNET_CONTAINER_multihashmap_iterate (rc->plugin->sessions,
2159       &lookup_session_by_addr_it,
2160       &l_ctx);
2161   s = l_ctx.res;
2162
2163   if (NULL == s)
2164     return;
2165
2166   if (s->flow_delay_for_other_peer.rel_value_us <= UINT32_MAX)
2167     delay = s->flow_delay_for_other_peer.rel_value_us;
2168
2169   LOG (GNUNET_ERROR_TYPE_DEBUG,
2170        "Sending ACK to `%s' including delay of %s\n",
2171        GNUNET_a2s (rc->src_addr,
2172                    (rc->src_addr->sa_family ==
2173                     AF_INET) ? sizeof (struct sockaddr_in) : sizeof (struct
2174                                                                      sockaddr_in6)),
2175        GNUNET_STRINGS_relative_time_to_string (s->flow_delay_for_other_peer,
2176                                                GNUNET_YES));
2177   udpw = GNUNET_malloc (sizeof (struct UDP_MessageWrapper) + msize);
2178   udpw->msg_size = msize;
2179   udpw->payload_size = 0;
2180   udpw->session = s;
2181   udpw->timeout = GNUNET_TIME_UNIT_FOREVER_ABS;
2182   udpw->msg_buf = (char *)&udpw[1];
2183   udpw->msg_type = MSG_ACK;
2184   udp_ack = (struct UDP_ACK_Message *) udpw->msg_buf;
2185   udp_ack->header.size = htons ((uint16_t) msize);
2186   udp_ack->header.type = htons (GNUNET_MESSAGE_TYPE_TRANSPORT_UDP_ACK);
2187   udp_ack->delay = htonl (delay);
2188   udp_ack->sender = *rc->plugin->env->my_identity;
2189   memcpy (&udp_ack[1], msg, ntohs (msg->size));
2190   enqueue (rc->plugin, udpw);
2191 }
2192
2193
2194 static void 
2195 read_process_msg (struct Plugin *plugin,
2196                   const struct GNUNET_MessageHeader *msg,
2197                   const char *addr,
2198                   socklen_t fromlen)
2199 {
2200   if (ntohs (msg->size) < sizeof (struct UDPMessage))
2201   {
2202     GNUNET_break_op (0);
2203     return;
2204   }
2205   process_udp_message (plugin, (const struct UDPMessage *) msg,
2206                        (const struct sockaddr *) addr, fromlen);
2207 }
2208
2209
2210 static void 
2211 read_process_ack (struct Plugin *plugin,
2212                   const struct GNUNET_MessageHeader *msg,
2213                   char *addr,
2214                   socklen_t fromlen)
2215 {
2216   const struct GNUNET_MessageHeader *ack;
2217   const struct UDP_ACK_Message *udp_ack;
2218   struct LookupContext l_ctx;
2219   struct Session *s;
2220   struct GNUNET_TIME_Relative flow_delay;
2221
2222   if (ntohs (msg->size) <
2223       sizeof (struct UDP_ACK_Message) + sizeof (struct GNUNET_MessageHeader))
2224   {
2225     GNUNET_break_op (0);
2226     return;
2227   }
2228   udp_ack = (const struct UDP_ACK_Message *) msg;
2229   l_ctx.addr = (const struct sockaddr *) addr;
2230   l_ctx.addrlen = fromlen;
2231   l_ctx.res = NULL;
2232   GNUNET_CONTAINER_multihashmap_iterate (plugin->sessions,
2233                                          &lookup_session_by_addr_it,
2234                                          &l_ctx);
2235   s = l_ctx.res;
2236
2237   if ((NULL == s) || (NULL == s->frag_ctx))
2238   {
2239     return;
2240   }
2241
2242   flow_delay.rel_value_us = (uint64_t) ntohl (udp_ack->delay);
2243   LOG (GNUNET_ERROR_TYPE_DEBUG, 
2244        "We received a sending delay of %s\n",
2245        GNUNET_STRINGS_relative_time_to_string (flow_delay,
2246                                                GNUNET_YES));
2247   s->flow_delay_from_other_peer =
2248       GNUNET_TIME_relative_to_absolute (flow_delay);
2249
2250   ack = (const struct GNUNET_MessageHeader *) &udp_ack[1];
2251   if (ntohs (ack->size) !=
2252       ntohs (msg->size) - sizeof (struct UDP_ACK_Message))
2253   {
2254     GNUNET_break_op (0);
2255     return;
2256   }
2257
2258   if (0 != memcmp (&l_ctx.res->target, &udp_ack->sender, sizeof (struct GNUNET_PeerIdentity)))
2259     GNUNET_break (0);
2260   if (GNUNET_OK != GNUNET_FRAGMENT_process_ack (s->frag_ctx->frag, ack))
2261   {
2262     LOG (GNUNET_ERROR_TYPE_DEBUG,
2263          "UDP processes %u-byte acknowledgement from `%s' at `%s'\n",
2264          (unsigned int) ntohs (msg->size), GNUNET_i2s (&udp_ack->sender),
2265          GNUNET_a2s ((const struct sockaddr *) addr, fromlen));
2266     /* Expect more ACKs to arrive */
2267     return;
2268   }
2269
2270   LOG (GNUNET_ERROR_TYPE_DEBUG,
2271        "Message full ACK'ed\n",
2272        (unsigned int) ntohs (msg->size), GNUNET_i2s (&udp_ack->sender),
2273        GNUNET_a2s ((const struct sockaddr *) addr, fromlen));
2274
2275   /* Remove fragmented message after successful sending */
2276   fragmented_message_done (s->frag_ctx, GNUNET_OK);
2277 }
2278
2279
2280 static void 
2281 read_process_fragment (struct Plugin *plugin,
2282                        const struct GNUNET_MessageHeader *msg,
2283                        char *addr,
2284                        socklen_t fromlen)
2285 {
2286   struct DefragContext *d_ctx;
2287   struct GNUNET_TIME_Absolute now;
2288   struct FindReceiveContext frc;
2289
2290   frc.rc = NULL;
2291   frc.addr = (const struct sockaddr *) addr;
2292   frc.addr_len = fromlen;
2293
2294   LOG (GNUNET_ERROR_TYPE_DEBUG, "UDP processes %u-byte fragment from `%s'\n",
2295        (unsigned int) ntohs (msg->size),
2296        GNUNET_a2s ((const struct sockaddr *) addr, fromlen));
2297   /* Lookup existing receive context for this address */
2298   GNUNET_CONTAINER_heap_iterate (plugin->defrag_ctxs,
2299                                  &find_receive_context,
2300                                  &frc);
2301   now = GNUNET_TIME_absolute_get ();
2302   d_ctx = frc.rc;
2303
2304   if (d_ctx == NULL)
2305   {
2306     /* Create a new defragmentation context */
2307     d_ctx = GNUNET_malloc (sizeof (struct DefragContext) + fromlen);
2308     memcpy (&d_ctx[1], addr, fromlen);
2309     d_ctx->src_addr = (const struct sockaddr *) &d_ctx[1];
2310     d_ctx->addr_len = fromlen;
2311     d_ctx->plugin = plugin;
2312     d_ctx->defrag =
2313         GNUNET_DEFRAGMENT_context_create (plugin->env->stats, UDP_MTU,
2314                                           UDP_MAX_MESSAGES_IN_DEFRAG, d_ctx,
2315                                           &fragment_msg_proc, &ack_proc);
2316     d_ctx->hnode =
2317         GNUNET_CONTAINER_heap_insert (plugin->defrag_ctxs, d_ctx,
2318                                       (GNUNET_CONTAINER_HeapCostType)
2319                                       now.abs_value_us);
2320     LOG (GNUNET_ERROR_TYPE_DEBUG, 
2321          "Created new defragmentation context for %u-byte fragment from `%s'\n",
2322          (unsigned int) ntohs (msg->size),
2323          GNUNET_a2s ((const struct sockaddr *) addr, fromlen));
2324   }
2325   else
2326   {
2327     LOG (GNUNET_ERROR_TYPE_DEBUG,
2328          "Found existing defragmentation context for %u-byte fragment from `%s'\n",
2329          (unsigned int) ntohs (msg->size),
2330          GNUNET_a2s ((const struct sockaddr *) addr, fromlen));
2331   }
2332
2333   if (GNUNET_OK == GNUNET_DEFRAGMENT_process_fragment (d_ctx->defrag, msg))
2334   {
2335     /* keep this 'rc' from expiring */
2336     GNUNET_CONTAINER_heap_update_cost (plugin->defrag_ctxs, d_ctx->hnode,
2337                                        (GNUNET_CONTAINER_HeapCostType)
2338                                        now.abs_value_us);
2339   }
2340   if (GNUNET_CONTAINER_heap_get_size (plugin->defrag_ctxs) >
2341       UDP_MAX_SENDER_ADDRESSES_WITH_DEFRAG)
2342   {
2343     /* remove 'rc' that was inactive the longest */
2344     d_ctx = GNUNET_CONTAINER_heap_remove_root (plugin->defrag_ctxs);
2345     GNUNET_assert (NULL != d_ctx);
2346     GNUNET_DEFRAGMENT_context_destroy (d_ctx->defrag);
2347     GNUNET_free (d_ctx);
2348   }
2349 }
2350
2351
2352 /**
2353  * Read and process a message from the given socket.
2354  *
2355  * @param plugin the overall plugin
2356  * @param rsock socket to read from
2357  */
2358 static void
2359 udp_select_read (struct Plugin *plugin, struct GNUNET_NETWORK_Handle *rsock)
2360 {
2361   socklen_t fromlen;
2362   char addr[32];
2363   char buf[65536] GNUNET_ALIGN;
2364   ssize_t size;
2365   const struct GNUNET_MessageHeader *msg;
2366
2367   fromlen = sizeof (addr);
2368   memset (&addr, 0, sizeof (addr));
2369   size = GNUNET_NETWORK_socket_recvfrom (rsock, buf, sizeof (buf),
2370                                       (struct sockaddr *) &addr, &fromlen);
2371 #if MINGW
2372   /* On SOCK_DGRAM UDP sockets recvfrom might fail with a
2373    * WSAECONNRESET error to indicate that previous sendto() (yes, sendto!)
2374    * on this socket has failed.
2375    * Quote from MSDN:
2376    *   WSAECONNRESET - The virtual circuit was reset by the remote side
2377    *   executing a hard or abortive close. The application should close
2378    *   the socket; it is no longer usable. On a UDP-datagram socket this
2379    *   error indicates a previous send operation resulted in an ICMP Port
2380    *   Unreachable message.
2381    */
2382   if ( (-1 == size) && (ECONNRESET == errno) )
2383     return;
2384 #endif
2385   if (-1 == size)
2386   {
2387     LOG (GNUNET_ERROR_TYPE_DEBUG,
2388         "UDP failed to receive data: %s\n", STRERROR (errno));
2389     /* Connection failure or something. Not a protocol violation. */
2390     return;
2391   }
2392   if (size < sizeof (struct GNUNET_MessageHeader))
2393   {
2394     LOG (GNUNET_ERROR_TYPE_WARNING,
2395         "UDP got %u bytes, which is not enough for a GNUnet message header\n",
2396         (unsigned int) size);
2397     /* _MAY_ be a connection failure (got partial message) */
2398     /* But it _MAY_ also be that the other side uses non-GNUnet protocol. */
2399     GNUNET_break_op (0);
2400     return;
2401   }
2402   msg = (const struct GNUNET_MessageHeader *) buf;
2403
2404   LOG (GNUNET_ERROR_TYPE_DEBUG,
2405        "UDP received %u-byte message from `%s' type %i\n", (unsigned int) size,
2406        GNUNET_a2s ((const struct sockaddr *) addr, fromlen), ntohs (msg->type));
2407
2408   if (size != ntohs (msg->size))
2409   {
2410     GNUNET_break_op (0);
2411     return;
2412   }
2413
2414   GNUNET_STATISTICS_update (plugin->env->stats,
2415                             "# UDP, total, bytes, received",
2416                             size, GNUNET_NO);
2417
2418   switch (ntohs (msg->type))
2419   {
2420   case GNUNET_MESSAGE_TYPE_TRANSPORT_BROADCAST_BEACON:
2421     udp_broadcast_receive (plugin, &buf, size, addr, fromlen);
2422     return;
2423
2424   case GNUNET_MESSAGE_TYPE_TRANSPORT_UDP_MESSAGE:
2425     read_process_msg (plugin, msg, addr, fromlen);
2426     return;
2427
2428   case GNUNET_MESSAGE_TYPE_TRANSPORT_UDP_ACK:
2429     read_process_ack (plugin, msg, addr, fromlen);
2430     return;
2431
2432   case GNUNET_MESSAGE_TYPE_FRAGMENT:
2433     read_process_fragment (plugin, msg, addr, fromlen);
2434     return;
2435
2436   default:
2437     GNUNET_break_op (0);
2438     return;
2439   }
2440 }
2441
2442
2443 static struct UDP_MessageWrapper *
2444 remove_timeout_messages_and_select (struct UDP_MessageWrapper *head,
2445                                     struct GNUNET_NETWORK_Handle *sock)
2446 {
2447   struct UDP_MessageWrapper *udpw = NULL;
2448   struct GNUNET_TIME_Relative remaining;
2449
2450   udpw = head;
2451   while (udpw != NULL)
2452   {
2453     /* Find messages with timeout */
2454     remaining = GNUNET_TIME_absolute_get_remaining (udpw->timeout);
2455     if (GNUNET_TIME_UNIT_ZERO.rel_value_us == remaining.rel_value_us)
2456     {
2457       /* Message timed out */
2458       switch (udpw->msg_type) {
2459         case MSG_UNFRAGMENTED:
2460           GNUNET_STATISTICS_update (plugin->env->stats,
2461                                     "# UDP, total, bytes, sent, timeout",
2462                                     udpw->msg_size, GNUNET_NO);
2463           GNUNET_STATISTICS_update (plugin->env->stats,
2464                                     "# UDP, total, messages, sent, timeout",
2465                                     1, GNUNET_NO);
2466           GNUNET_STATISTICS_update (plugin->env->stats,
2467                                     "# UDP, unfragmented msgs, messages, sent, timeout",
2468                                     1, GNUNET_NO);
2469           GNUNET_STATISTICS_update (plugin->env->stats,
2470                                     "# UDP, unfragmented msgs, bytes, sent, timeout",
2471                                     udpw->payload_size, GNUNET_NO);
2472           /* Not fragmented message */
2473           LOG (GNUNET_ERROR_TYPE_DEBUG,
2474                "Message for peer `%s' with size %u timed out\n",
2475                GNUNET_i2s(&udpw->session->target), udpw->payload_size);
2476           call_continuation (udpw, GNUNET_SYSERR);
2477           /* Remove message */
2478           dequeue (plugin, udpw);
2479           GNUNET_free (udpw);
2480           break;
2481         case MSG_FRAGMENTED:
2482           /* Fragmented message */
2483           GNUNET_STATISTICS_update (plugin->env->stats,
2484                                     "# UDP, total, bytes, sent, timeout",
2485                                     udpw->frag_ctx->on_wire_size, GNUNET_NO);
2486           GNUNET_STATISTICS_update (plugin->env->stats,
2487                                     "# UDP, total, messages, sent, timeout",
2488                                     1, GNUNET_NO);
2489           call_continuation (udpw, GNUNET_SYSERR);
2490           LOG (GNUNET_ERROR_TYPE_DEBUG,
2491                "Fragment for message for peer `%s' with size %u timed out\n",
2492                GNUNET_i2s(&udpw->session->target), udpw->frag_ctx->payload_size);
2493
2494
2495           GNUNET_STATISTICS_update (plugin->env->stats,
2496                                     "# UDP, fragmented msgs, messages, sent, timeout",
2497                                     1, GNUNET_NO);
2498           GNUNET_STATISTICS_update (plugin->env->stats,
2499                                     "# UDP, fragmented msgs, bytes, sent, timeout",
2500                                     udpw->frag_ctx->payload_size, GNUNET_NO);
2501           /* Remove fragmented message due to timeout */
2502           fragmented_message_done (udpw->frag_ctx, GNUNET_SYSERR);
2503           break;
2504         case MSG_ACK:
2505           GNUNET_STATISTICS_update (plugin->env->stats,
2506                                     "# UDP, total, bytes, sent, timeout",
2507                                     udpw->msg_size, GNUNET_NO);
2508           GNUNET_STATISTICS_update (plugin->env->stats,
2509                                     "# UDP, total, messages, sent, timeout",
2510                                     1, GNUNET_NO);
2511           LOG (GNUNET_ERROR_TYPE_DEBUG,
2512                "ACK Message for peer `%s' with size %u timed out\n",
2513                GNUNET_i2s(&udpw->session->target), udpw->payload_size);
2514           call_continuation (udpw, GNUNET_SYSERR);
2515           dequeue (plugin, udpw);
2516           GNUNET_free (udpw);
2517           break;
2518         default:
2519           break;
2520       }
2521       if (sock == plugin->sockv4)
2522         udpw = plugin->ipv4_queue_head;
2523       else if (sock == plugin->sockv6)
2524         udpw = plugin->ipv6_queue_head;
2525       else
2526       {
2527         GNUNET_break (0); /* should never happen */
2528         udpw = NULL;
2529       }
2530       GNUNET_STATISTICS_update (plugin->env->stats,
2531                                 "# messages dismissed due to timeout",
2532                                 1, GNUNET_NO);
2533     }
2534     else
2535     {
2536       /* Message did not time out, check flow delay */
2537       remaining = GNUNET_TIME_absolute_get_remaining (udpw->session->flow_delay_from_other_peer);
2538       if (GNUNET_TIME_UNIT_ZERO.rel_value_us == remaining.rel_value_us)
2539       {
2540         /* this message is not delayed */
2541         LOG (GNUNET_ERROR_TYPE_DEBUG, 
2542              "Message for peer `%s' (%u bytes) is not delayed \n",
2543              GNUNET_i2s(&udpw->session->target), udpw->payload_size);
2544         break; /* Found message to send, break */
2545       }
2546       else
2547       {
2548         /* Message is delayed, try next */
2549         LOG (GNUNET_ERROR_TYPE_DEBUG,
2550              "Message for peer `%s' (%u bytes) is delayed for %s\n",
2551              GNUNET_i2s(&udpw->session->target), udpw->payload_size, 
2552              GNUNET_STRINGS_relative_time_to_string (remaining,
2553                                                      GNUNET_YES));
2554         udpw = udpw->next;
2555       }
2556     }
2557   }
2558   return udpw;
2559 }
2560
2561
2562 static void
2563 analyze_send_error (struct Plugin *plugin,
2564                     const struct sockaddr * sa,
2565                     socklen_t slen,
2566                     int error)
2567 {
2568   static int network_down_error;
2569   struct GNUNET_ATS_Information type;
2570
2571  type = plugin->env->get_address_type (plugin->env->cls,sa, slen);
2572  if (((GNUNET_ATS_NET_LAN == ntohl(type.value)) || (GNUNET_ATS_NET_WAN == ntohl(type.value))) &&
2573      ((ENETUNREACH == errno) || (ENETDOWN == errno)))
2574  {
2575    if ((network_down_error == GNUNET_NO) && (slen == sizeof (struct sockaddr_in)))
2576    {
2577      /* IPv4: "Network unreachable" or "Network down"
2578       *
2579       * This indicates we do not have connectivity
2580       */
2581      LOG (GNUNET_ERROR_TYPE_WARNING | GNUNET_ERROR_TYPE_BULK,
2582          _("UDP could not transmit message to `%s': "
2583            "Network seems down, please check your network configuration\n"),
2584          GNUNET_a2s (sa, slen));
2585    }
2586    if ((network_down_error == GNUNET_NO) && (slen == sizeof (struct sockaddr_in6)))
2587    {
2588      /* IPv6: "Network unreachable" or "Network down"
2589       *
2590       * This indicates that this system is IPv6 enabled, but does not
2591       * have a valid global IPv6 address assigned or we do not have
2592       * connectivity
2593       */
2594
2595     LOG (GNUNET_ERROR_TYPE_WARNING | GNUNET_ERROR_TYPE_BULK,
2596         _("UDP could not transmit message to `%s': "
2597           "Please check your network configuration and disable IPv6 if your "
2598           "connection does not have a global IPv6 address\n"),
2599         GNUNET_a2s (sa, slen));
2600    }
2601  }
2602  else
2603  {
2604    LOG (GNUNET_ERROR_TYPE_WARNING,
2605       "UDP could not transmit message to `%s': `%s'\n",
2606       GNUNET_a2s (sa, slen), STRERROR (error));
2607  }
2608 }
2609
2610
2611 static size_t
2612 udp_select_send (struct Plugin *plugin, struct GNUNET_NETWORK_Handle *sock)
2613 {
2614   const struct sockaddr * sa;
2615   ssize_t sent;
2616   socklen_t slen;
2617
2618   struct UDP_MessageWrapper *udpw = NULL;
2619
2620   /* Find message to send */
2621   udpw = remove_timeout_messages_and_select ((sock == plugin->sockv4) ? plugin->ipv4_queue_head : plugin->ipv6_queue_head,
2622                                              sock);
2623   if (NULL == udpw)
2624     return 0; /* No message to send */
2625
2626   sa = udpw->session->sock_addr;
2627   slen = udpw->session->addrlen;
2628
2629   sent = GNUNET_NETWORK_socket_sendto (sock, udpw->msg_buf, udpw->msg_size, sa, slen);
2630
2631   if (GNUNET_SYSERR == sent)
2632   {
2633     /* Failure */
2634     analyze_send_error (plugin, sa, slen, errno);
2635     call_continuation(udpw, GNUNET_SYSERR);
2636     GNUNET_STATISTICS_update (plugin->env->stats,
2637                             "# UDP, total, bytes, sent, failure",
2638                             sent, GNUNET_NO);
2639     GNUNET_STATISTICS_update (plugin->env->stats,
2640                               "# UDP, total, messages, sent, failure",
2641                               1, GNUNET_NO);
2642   }
2643   else
2644   {
2645     /* Success */
2646     LOG (GNUNET_ERROR_TYPE_DEBUG,
2647          "UDP transmitted %u-byte message to  `%s' `%s' (%d: %s)\n",
2648          (unsigned int) (udpw->msg_size), GNUNET_i2s(&udpw->session->target) ,GNUNET_a2s (sa, slen), (int) sent,
2649          (sent < 0) ? STRERROR (errno) : "ok");
2650     GNUNET_STATISTICS_update (plugin->env->stats,
2651                               "# UDP, total, bytes, sent, success",
2652                               sent, GNUNET_NO);
2653     GNUNET_STATISTICS_update (plugin->env->stats,
2654                               "# UDP, total, messages, sent, success",
2655                               1, GNUNET_NO);
2656     if (NULL != udpw->frag_ctx)
2657         udpw->frag_ctx->on_wire_size += udpw->msg_size;
2658     call_continuation (udpw, GNUNET_OK);
2659   }
2660   dequeue (plugin, udpw);
2661   GNUNET_free (udpw);
2662   udpw = NULL;
2663
2664   return sent;
2665 }
2666
2667
2668 /**
2669  * We have been notified that our readset has something to read.  We don't
2670  * know which socket needs to be read, so we have to check each one
2671  * Then reschedule this function to be called again once more is available.
2672  *
2673  * @param cls the plugin handle
2674  * @param tc the scheduling context (for rescheduling this function again)
2675  */
2676 static void
2677 udp_plugin_select (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
2678 {
2679   struct Plugin *plugin = cls;
2680
2681   plugin->select_task = GNUNET_SCHEDULER_NO_TASK;
2682   if (0 != (tc->reason & GNUNET_SCHEDULER_REASON_SHUTDOWN))
2683     return;
2684   if ( (0 != (tc->reason & GNUNET_SCHEDULER_REASON_READ_READY)) &&
2685        (NULL != plugin->sockv4) &&
2686        (GNUNET_NETWORK_fdset_isset (tc->read_ready, plugin->sockv4)) )
2687     udp_select_read (plugin, plugin->sockv4);
2688   if ( (0 != (tc->reason & GNUNET_SCHEDULER_REASON_WRITE_READY)) &&
2689        (NULL != plugin->sockv4) && 
2690        (NULL != plugin->ipv4_queue_head) &&
2691        (GNUNET_NETWORK_fdset_isset (tc->write_ready, plugin->sockv4)) )
2692     udp_select_send (plugin, plugin->sockv4);   
2693   schedule_select (plugin);
2694 }
2695
2696
2697 /**
2698  * We have been notified that our readset has something to read.  We don't
2699  * know which socket needs to be read, so we have to check each one
2700  * Then reschedule this function to be called again once more is available.
2701  *
2702  * @param cls the plugin handle
2703  * @param tc the scheduling context (for rescheduling this function again)
2704  */
2705 static void
2706 udp_plugin_select_v6 (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
2707 {
2708   struct Plugin *plugin = cls;
2709
2710   plugin->select_task_v6 = GNUNET_SCHEDULER_NO_TASK;
2711   if (0 != (tc->reason & GNUNET_SCHEDULER_REASON_SHUTDOWN))
2712     return;
2713   if ( ((tc->reason & GNUNET_SCHEDULER_REASON_READ_READY) != 0) &&
2714        (NULL != plugin->sockv6) &&
2715        (GNUNET_NETWORK_fdset_isset (tc->read_ready, plugin->sockv6)) )
2716     udp_select_read (plugin, plugin->sockv6);
2717   if ( (0 != (tc->reason & GNUNET_SCHEDULER_REASON_WRITE_READY)) &&
2718        (NULL != plugin->sockv6) && (plugin->ipv6_queue_head != NULL) &&
2719        (GNUNET_NETWORK_fdset_isset (tc->write_ready, plugin->sockv6)) )    
2720     udp_select_send (plugin, plugin->sockv6);
2721   schedule_select (plugin);
2722 }
2723
2724
2725 /**
2726  *
2727  * @return number of sockets that were successfully bound
2728  */
2729 static int
2730 setup_sockets (struct Plugin *plugin, 
2731                const struct sockaddr_in6 *bind_v6,
2732                const struct sockaddr_in *bind_v4)
2733 {
2734   int tries;
2735   int sockets_created = 0;
2736   struct sockaddr_in6 serverAddrv6;
2737   struct sockaddr_in serverAddrv4;
2738   struct sockaddr *serverAddr;
2739   struct sockaddr *addrs[2];
2740   socklen_t addrlens[2];
2741   socklen_t addrlen;
2742   int eno;
2743
2744   /* Create IPv6 socket */
2745   eno = EINVAL;
2746   if (plugin->enable_ipv6 == GNUNET_YES)
2747   {
2748     plugin->sockv6 = GNUNET_NETWORK_socket_create (PF_INET6, SOCK_DGRAM, 0);
2749     if (NULL == plugin->sockv6)
2750     {
2751         GNUNET_log_strerror (GNUNET_ERROR_TYPE_WARNING, "socket");
2752       LOG (GNUNET_ERROR_TYPE_WARNING, "Disabling IPv6 since it is not supported on this system!\n");
2753       plugin->enable_ipv6 = GNUNET_NO;
2754     }
2755     else
2756     {
2757         memset (&serverAddrv6, '\0', sizeof (struct sockaddr_in6));
2758 #if HAVE_SOCKADDR_IN_SIN_LEN
2759       serverAddrv6.sin6_len = sizeof (struct sockaddr_in6);
2760 #endif
2761       serverAddrv6.sin6_family = AF_INET6;
2762       if (NULL != bind_v6)
2763         serverAddrv6.sin6_addr = bind_v6->sin6_addr;
2764       else
2765         serverAddrv6.sin6_addr = in6addr_any;
2766
2767       if (0 == plugin->port) /* autodetect */
2768                 serverAddrv6.sin6_port = htons (GNUNET_CRYPTO_random_u32 (GNUNET_CRYPTO_QUALITY_STRONG, 33537) + 32000);
2769       else
2770                 serverAddrv6.sin6_port = htons (plugin->port);
2771       addrlen = sizeof (struct sockaddr_in6);
2772       serverAddr = (struct sockaddr *) &serverAddrv6;
2773
2774       tries = 0;
2775       while (tries < 10)
2776       {
2777                 LOG (GNUNET_ERROR_TYPE_DEBUG, "Binding to IPv6 `%s'\n",
2778                                  GNUNET_a2s (serverAddr, addrlen));
2779                 /* binding */
2780                 if (GNUNET_OK == GNUNET_NETWORK_socket_bind (plugin->sockv6,
2781                                                              serverAddr, addrlen, 0))
2782                         break;
2783                 eno = errno;
2784                 if (0 != plugin->port)
2785                 {
2786                                 tries = 10; /* fail */
2787                                 break; /* bind failed on specific port */
2788                 }
2789                 /* autodetect */
2790                 serverAddrv6.sin6_port = htons (GNUNET_CRYPTO_random_u32 (GNUNET_CRYPTO_QUALITY_STRONG, 33537) + 32000);
2791                 tries ++;
2792       }
2793       if (tries >= 10)
2794       {
2795         GNUNET_NETWORK_socket_close (plugin->sockv6);
2796         plugin->enable_ipv6 = GNUNET_NO;
2797         plugin->sockv6 = NULL;
2798       }
2799
2800       if (plugin->sockv6 != NULL)
2801       {
2802         LOG (GNUNET_ERROR_TYPE_DEBUG,
2803              "IPv6 socket created on port %s\n",
2804              GNUNET_a2s (serverAddr, addrlen));
2805         addrs[sockets_created] = (struct sockaddr *) &serverAddrv6;
2806         addrlens[sockets_created] = sizeof (struct sockaddr_in6);
2807         sockets_created++;
2808       }
2809       else
2810       {
2811           LOG (GNUNET_ERROR_TYPE_ERROR,
2812                "Failed to bind UDP socket to %s: %s\n",
2813                GNUNET_a2s (serverAddr, addrlen),
2814                STRERROR (eno));
2815       }
2816     }
2817   }
2818
2819   /* Create IPv4 socket */
2820   eno = EINVAL;
2821   plugin->sockv4 = GNUNET_NETWORK_socket_create (PF_INET, SOCK_DGRAM, 0);
2822   if (NULL == plugin->sockv4)
2823   {
2824     GNUNET_log_strerror (GNUNET_ERROR_TYPE_WARNING, "socket");
2825     LOG (GNUNET_ERROR_TYPE_WARNING, "Disabling IPv4 since it is not supported on this system!\n");
2826     plugin->enable_ipv4 = GNUNET_NO;
2827   }
2828   else
2829   {
2830     memset (&serverAddrv4, '\0', sizeof (struct sockaddr_in));
2831 #if HAVE_SOCKADDR_IN_SIN_LEN
2832     serverAddrv4.sin_len = sizeof (struct sockaddr_in);
2833 #endif
2834     serverAddrv4.sin_family = AF_INET;
2835     if (NULL != bind_v4)
2836       serverAddrv4.sin_addr = bind_v4->sin_addr;
2837     else
2838       serverAddrv4.sin_addr.s_addr = INADDR_ANY;
2839     
2840     if (0 == plugin->port)
2841       /* autodetect */
2842       serverAddrv4.sin_port = htons (GNUNET_CRYPTO_random_u32 (GNUNET_CRYPTO_QUALITY_STRONG, 33537) + 32000);
2843     else
2844       serverAddrv4.sin_port = htons (plugin->port);
2845     
2846     
2847     addrlen = sizeof (struct sockaddr_in);
2848     serverAddr = (struct sockaddr *) &serverAddrv4;
2849     
2850     tries = 0;
2851     while (tries < 10)
2852     {
2853       LOG (GNUNET_ERROR_TYPE_DEBUG, "Binding to IPv4 `%s'\n",
2854                         GNUNET_a2s (serverAddr, addrlen));
2855       
2856       /* binding */
2857       if (GNUNET_OK == GNUNET_NETWORK_socket_bind (plugin->sockv4,
2858                                                    serverAddr, addrlen, 0))
2859                 break;
2860       eno = errno;
2861       if (0 != plugin->port)
2862       {
2863                 tries = 10; /* fail */
2864                 break; /* bind failed on specific port */
2865       }
2866       
2867       /* autodetect */
2868       serverAddrv4.sin_port = htons (GNUNET_CRYPTO_random_u32 (GNUNET_CRYPTO_QUALITY_STRONG, 33537) + 32000);
2869       tries ++;
2870     }
2871     
2872     if (tries >= 10)
2873     {
2874       GNUNET_NETWORK_socket_close (plugin->sockv4);
2875       plugin->enable_ipv4 = GNUNET_NO;
2876       plugin->sockv4 = NULL;
2877     }
2878     
2879     if (plugin->sockv4 != NULL)
2880     {
2881       LOG (GNUNET_ERROR_TYPE_DEBUG,
2882                 "IPv4 socket created on port %s\n", GNUNET_a2s (serverAddr, addrlen));
2883       addrs[sockets_created] = (struct sockaddr *) &serverAddrv4;
2884       addrlens[sockets_created] = sizeof (struct sockaddr_in);
2885       sockets_created++;
2886     }
2887     else
2888     {             
2889       LOG (GNUNET_ERROR_TYPE_ERROR,
2890                 "Failed to bind UDP socket to %s: %s\n",
2891                 GNUNET_a2s (serverAddr, addrlen), STRERROR (eno));
2892     }
2893   }
2894   
2895   if (0 == sockets_created)
2896   {
2897                 LOG (GNUNET_ERROR_TYPE_WARNING, _("Failed to open UDP sockets\n"));
2898                 return 0; /* No sockets created, return */
2899   }
2900
2901   /* Create file descriptors */
2902   if (plugin->enable_ipv4 == GNUNET_YES)
2903   {
2904                         plugin->rs_v4 = GNUNET_NETWORK_fdset_create ();
2905                         plugin->ws_v4 = GNUNET_NETWORK_fdset_create ();
2906                         GNUNET_NETWORK_fdset_zero (plugin->rs_v4);
2907                         GNUNET_NETWORK_fdset_zero (plugin->ws_v4);
2908                         if (NULL != plugin->sockv4)
2909                         {
2910                                 GNUNET_NETWORK_fdset_set (plugin->rs_v4, plugin->sockv4);
2911                                 GNUNET_NETWORK_fdset_set (plugin->ws_v4, plugin->sockv4);
2912                         }
2913   }
2914
2915   if (plugin->enable_ipv6 == GNUNET_YES)
2916   {
2917     plugin->rs_v6 = GNUNET_NETWORK_fdset_create ();
2918     plugin->ws_v6 = GNUNET_NETWORK_fdset_create ();
2919     GNUNET_NETWORK_fdset_zero (plugin->rs_v6);
2920     GNUNET_NETWORK_fdset_zero (plugin->ws_v6);
2921     if (NULL != plugin->sockv6)
2922     {
2923       GNUNET_NETWORK_fdset_set (plugin->rs_v6, plugin->sockv6);
2924       GNUNET_NETWORK_fdset_set (plugin->ws_v6, plugin->sockv6);
2925     }
2926   }
2927
2928   schedule_select (plugin);
2929   plugin->nat = GNUNET_NAT_register (plugin->env->cfg,
2930                            GNUNET_NO, plugin->port,
2931                            sockets_created,
2932                            (const struct sockaddr **) addrs, addrlens,
2933                            &udp_nat_port_map_callback, NULL, plugin);
2934
2935   return sockets_created;
2936 }
2937
2938
2939 /**
2940  * The exported method. Makes the core api available via a global and
2941  * returns the udp transport API.
2942  *
2943  * @param cls our 'struct GNUNET_TRANSPORT_PluginEnvironment'
2944  * @return our 'struct GNUNET_TRANSPORT_PluginFunctions'
2945  */
2946 void *
2947 libgnunet_plugin_transport_udp_init (void *cls)
2948 {
2949   struct GNUNET_TRANSPORT_PluginEnvironment *env = cls;
2950   struct GNUNET_TRANSPORT_PluginFunctions *api;
2951   struct Plugin *p;
2952   unsigned long long port;
2953   unsigned long long aport;
2954   unsigned long long broadcast;
2955   unsigned long long udp_max_bps;
2956   unsigned long long enable_v6;
2957   char * bind4_address;
2958   char * bind6_address;
2959   char * fancy_interval;
2960   struct GNUNET_TIME_Relative interval;
2961   struct sockaddr_in serverAddrv4;
2962   struct sockaddr_in6 serverAddrv6;
2963   int res;
2964   int have_bind4;
2965   int have_bind6;
2966
2967   if (NULL == env->receive)
2968   {
2969     /* run in 'stub' mode (i.e. as part of gnunet-peerinfo), don't fully
2970        initialze the plugin or the API */
2971     api = GNUNET_malloc (sizeof (struct GNUNET_TRANSPORT_PluginFunctions));
2972     api->cls = NULL;
2973     api->address_pretty_printer = &udp_plugin_address_pretty_printer;
2974     api->address_to_string = &udp_address_to_string;
2975     api->string_to_address = &udp_string_to_address;
2976     return api;
2977   }
2978
2979   GNUNET_assert (NULL != env->stats);
2980
2981   /* Get port number: port == 0 : autodetect a port,
2982    *                                                                                            > 0 : use this port,
2983    *                                                              not given : 2086 default */
2984   if (GNUNET_OK !=
2985       GNUNET_CONFIGURATION_get_value_number (env->cfg, "transport-udp", "PORT",
2986                                              &port))
2987     port = 2086;
2988   if (GNUNET_OK !=
2989       GNUNET_CONFIGURATION_get_value_number (env->cfg, "transport-udp",
2990                                              "ADVERTISED_PORT", &aport))
2991     aport = port;
2992   if (port > 65535)
2993   {
2994     LOG (GNUNET_ERROR_TYPE_WARNING,
2995          _("Given `%s' option is out of range: %llu > %u\n"), "PORT", port,
2996          65535);
2997     return NULL;
2998   }
2999
3000   /* Protocols */
3001   if ((GNUNET_YES ==
3002        GNUNET_CONFIGURATION_get_value_yesno (env->cfg, "nat",
3003                                              "DISABLEV6")))
3004     enable_v6 = GNUNET_NO;
3005   else
3006     enable_v6 = GNUNET_YES;
3007
3008   /* Addresses */
3009   have_bind4 = GNUNET_NO;
3010   memset (&serverAddrv4, 0, sizeof (serverAddrv4));
3011   if (GNUNET_YES ==
3012       GNUNET_CONFIGURATION_get_value_string (env->cfg, "transport-udp",
3013                                              "BINDTO", &bind4_address))
3014   {
3015     LOG (GNUNET_ERROR_TYPE_DEBUG,
3016          "Binding udp plugin to specific address: `%s'\n",
3017          bind4_address);
3018     if (1 != inet_pton (AF_INET, bind4_address, &serverAddrv4.sin_addr))
3019     {
3020       GNUNET_free (bind4_address);
3021       return NULL;
3022     }
3023     have_bind4 = GNUNET_YES;
3024   }
3025   GNUNET_free_non_null (bind4_address);
3026   have_bind6 = GNUNET_NO;
3027   memset (&serverAddrv6, 0, sizeof (serverAddrv6));
3028   if (GNUNET_YES ==
3029       GNUNET_CONFIGURATION_get_value_string (env->cfg, "transport-udp",
3030                                              "BINDTO6", &bind6_address))
3031   {
3032     LOG (GNUNET_ERROR_TYPE_DEBUG,
3033          "Binding udp plugin to specific address: `%s'\n",
3034          bind6_address);
3035     if (1 !=
3036         inet_pton (AF_INET6, bind6_address, &serverAddrv6.sin6_addr))
3037     {
3038       LOG (GNUNET_ERROR_TYPE_ERROR, _("Invalid IPv6 address: `%s'\n"),
3039            bind6_address);
3040       GNUNET_free (bind6_address);
3041       return NULL;
3042     }
3043     have_bind6 = GNUNET_YES;
3044   }
3045   GNUNET_free_non_null (bind6_address);
3046
3047   /* Initialize my flags */
3048   myoptions = 0;
3049
3050   /* Enable neighbour discovery */
3051   broadcast = GNUNET_CONFIGURATION_get_value_yesno (env->cfg, "transport-udp",
3052                                             "BROADCAST");
3053   if (broadcast == GNUNET_SYSERR)
3054     broadcast = GNUNET_NO;
3055
3056   if (GNUNET_SYSERR == GNUNET_CONFIGURATION_get_value_string (env->cfg, "transport-udp",
3057                                            "BROADCAST_INTERVAL", &fancy_interval))
3058   {
3059     interval = GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_SECONDS, 10);
3060   }
3061   else
3062   {
3063      if (GNUNET_SYSERR == GNUNET_STRINGS_fancy_time_to_relative(fancy_interval, &interval))
3064      {
3065        interval = GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_SECONDS, 30);
3066      }
3067      GNUNET_free (fancy_interval);
3068   }
3069
3070   /* Maximum datarate */
3071   if (GNUNET_OK != GNUNET_CONFIGURATION_get_value_number (env->cfg, "transport-udp",
3072                                              "MAX_BPS", &udp_max_bps))
3073   {
3074     udp_max_bps = 1024 * 1024 * 50;     /* 50 MB/s == infinity for practical purposes */
3075   }
3076
3077   p = GNUNET_malloc (sizeof (struct Plugin));
3078   p->port = port;
3079   p->aport = aport;
3080   p->broadcast_interval = interval;
3081   p->enable_ipv6 = enable_v6;
3082   p->enable_ipv4 = GNUNET_YES; /* default */
3083   p->env = env;
3084   p->sessions = GNUNET_CONTAINER_multihashmap_create (10, GNUNET_NO);
3085   p->defrag_ctxs = GNUNET_CONTAINER_heap_create (GNUNET_CONTAINER_HEAP_ORDER_MIN);
3086   p->mst = GNUNET_SERVER_mst_create (&process_inbound_tokenized_messages, p);
3087   GNUNET_BANDWIDTH_tracker_init (&p->tracker,
3088                                  GNUNET_BANDWIDTH_value_init ((uint32_t)udp_max_bps), 30);
3089   plugin = p;
3090
3091   LOG (GNUNET_ERROR_TYPE_DEBUG, "Setting up sockets\n");
3092   res = setup_sockets (p, (GNUNET_YES == have_bind6) ? &serverAddrv6 : NULL,
3093                                                                                 (GNUNET_YES == have_bind4) ? &serverAddrv4 : NULL);
3094   if ((res == 0) || ((p->sockv4 == NULL) && (p->sockv6 == NULL)))
3095   {
3096     LOG (GNUNET_ERROR_TYPE_ERROR,
3097          _("Failed to create network sockets, plugin failed\n"));
3098     GNUNET_CONTAINER_multihashmap_destroy (p->sessions);
3099     GNUNET_CONTAINER_heap_destroy (p->defrag_ctxs);
3100     GNUNET_SERVER_mst_destroy (p->mst);
3101     GNUNET_free (p);
3102     return NULL;
3103   }
3104   else if (broadcast == GNUNET_YES)
3105   {
3106     LOG (GNUNET_ERROR_TYPE_DEBUG, "Starting broadcasting\n");
3107     setup_broadcast (p, &serverAddrv6, &serverAddrv4);
3108   }
3109
3110   api = GNUNET_malloc (sizeof (struct GNUNET_TRANSPORT_PluginFunctions));
3111   api->cls = p;
3112   api->send = NULL;
3113   api->disconnect = &udp_disconnect;
3114   api->address_pretty_printer = &udp_plugin_address_pretty_printer;
3115   api->address_to_string = &udp_address_to_string;
3116   api->string_to_address = &udp_string_to_address;
3117   api->check_address = &udp_plugin_check_address;
3118   api->get_session = &udp_plugin_get_session;
3119   api->send = &udp_plugin_send;
3120   api->get_network = &udp_get_network;
3121
3122   return api;
3123 }
3124
3125
3126 static int
3127 heap_cleanup_iterator (void *cls,
3128                        struct GNUNET_CONTAINER_HeapNode *
3129                        node, void *element,
3130                        GNUNET_CONTAINER_HeapCostType
3131                        cost)
3132 {
3133   struct DefragContext * d_ctx = element;
3134
3135   GNUNET_CONTAINER_heap_remove_node (node);
3136   GNUNET_DEFRAGMENT_context_destroy(d_ctx->defrag);
3137   GNUNET_free (d_ctx);
3138
3139   return GNUNET_YES;
3140 }
3141
3142
3143 /**
3144  * The exported method. Makes the core api available via a global and
3145  * returns the udp transport API.
3146  *
3147  * @param cls our 'struct GNUNET_TRANSPORT_PluginEnvironment'
3148  * @return NULL
3149  */
3150 void *
3151 libgnunet_plugin_transport_udp_done (void *cls)
3152 {
3153   struct GNUNET_TRANSPORT_PluginFunctions *api = cls;
3154   struct Plugin *plugin = api->cls;
3155   struct PrettyPrinterContext *cur;
3156   struct PrettyPrinterContext *next;
3157
3158   if (NULL == plugin)
3159   {
3160     GNUNET_free (api);
3161     return NULL;
3162   }
3163
3164   stop_broadcast (plugin);
3165   if (plugin->select_task != GNUNET_SCHEDULER_NO_TASK)
3166   {
3167     GNUNET_SCHEDULER_cancel (plugin->select_task);
3168     plugin->select_task = GNUNET_SCHEDULER_NO_TASK;
3169   }
3170   if (plugin->select_task_v6 != GNUNET_SCHEDULER_NO_TASK)
3171   {
3172     GNUNET_SCHEDULER_cancel (plugin->select_task_v6);
3173     plugin->select_task_v6 = GNUNET_SCHEDULER_NO_TASK;
3174   }
3175
3176   /* Closing sockets */
3177   if (GNUNET_YES ==plugin->enable_ipv4)
3178   {
3179                 if (plugin->sockv4 != NULL)
3180                 {
3181                         GNUNET_break (GNUNET_OK == GNUNET_NETWORK_socket_close (plugin->sockv4));
3182                         plugin->sockv4 = NULL;
3183                 }
3184                 GNUNET_NETWORK_fdset_destroy (plugin->rs_v4);
3185                 GNUNET_NETWORK_fdset_destroy (plugin->ws_v4);
3186   }
3187   if (GNUNET_YES ==plugin->enable_ipv6)
3188   {
3189                 if (plugin->sockv6 != NULL)
3190                 {
3191                         GNUNET_break (GNUNET_OK == GNUNET_NETWORK_socket_close (plugin->sockv6));
3192                         plugin->sockv6 = NULL;
3193
3194                         GNUNET_NETWORK_fdset_destroy (plugin->rs_v6);
3195                         GNUNET_NETWORK_fdset_destroy (plugin->ws_v6);
3196                 }
3197   }
3198   if (NULL != plugin->nat)
3199         GNUNET_NAT_unregister (plugin->nat);
3200
3201   if (plugin->defrag_ctxs != NULL)
3202   {
3203     GNUNET_CONTAINER_heap_iterate(plugin->defrag_ctxs,
3204         heap_cleanup_iterator, NULL);
3205     GNUNET_CONTAINER_heap_destroy(plugin->defrag_ctxs);
3206     plugin->defrag_ctxs = NULL;
3207   }
3208   if (plugin->mst != NULL)
3209   {
3210     GNUNET_SERVER_mst_destroy(plugin->mst);
3211     plugin->mst = NULL;
3212   }
3213
3214   /* Clean up leftover messages */
3215   struct UDP_MessageWrapper * udpw;
3216   udpw = plugin->ipv4_queue_head;
3217   while (udpw != NULL)
3218   {
3219     struct UDP_MessageWrapper *tmp = udpw->next;
3220     dequeue (plugin, udpw);
3221     call_continuation(udpw, GNUNET_SYSERR);
3222     GNUNET_free (udpw);
3223
3224     udpw = tmp;
3225   }
3226   udpw = plugin->ipv6_queue_head;
3227   while (udpw != NULL)
3228   {
3229     struct UDP_MessageWrapper *tmp = udpw->next;
3230     dequeue (plugin, udpw);
3231     call_continuation(udpw, GNUNET_SYSERR);
3232     GNUNET_free (udpw);
3233
3234     udpw = tmp;
3235   }
3236
3237   /* Clean up sessions */
3238   LOG (GNUNET_ERROR_TYPE_DEBUG,
3239        "Cleaning up sessions\n");
3240   GNUNET_CONTAINER_multihashmap_iterate (plugin->sessions, &disconnect_and_free_it, plugin);
3241   GNUNET_CONTAINER_multihashmap_destroy (plugin->sessions);
3242
3243   next = ppc_dll_head;
3244   for (cur = next; NULL != cur; cur = next)
3245   {
3246         next = cur->next;
3247         GNUNET_CONTAINER_DLL_remove (ppc_dll_head, ppc_dll_tail, cur);
3248         GNUNET_RESOLVER_request_cancel (cur->resolver_handle);
3249         GNUNET_SCHEDULER_cancel (cur->timeout_task);
3250         GNUNET_free (cur);
3251         GNUNET_break (0);
3252   }
3253
3254   plugin->nat = NULL;
3255   GNUNET_free (plugin);
3256   GNUNET_free (api);
3257 #if DEBUG_MALLOC
3258   struct Allocation *allocation;
3259   while (NULL != ahead)
3260   {
3261       allocation = ahead;
3262       GNUNET_CONTAINER_DLL_remove (ahead, atail, allocation);
3263       GNUNET_free (allocation);
3264   }
3265   struct Allocator *allocator;
3266   while (NULL != aehead)
3267   {
3268       allocator = aehead;
3269       GNUNET_CONTAINER_DLL_remove (aehead, aetail, allocator);
3270       GNUNET_free (allocator);
3271   }
3272 #endif
3273   return NULL;
3274 }
3275
3276
3277 /* end of plugin_transport_udp.c */