fixing bugs found by clang
[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 ((NULL != addr) && (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 ((NULL != addr) && (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   if (NULL == addr)
1396   {
1397         GNUNET_break (0);
1398         return NULL;
1399   }
1400
1401   switch (addrlen)
1402   {
1403   case sizeof (struct IPv4UdpAddress):
1404     if (NULL == plugin->sockv4)
1405     {
1406       LOG (GNUNET_ERROR_TYPE_DEBUG,
1407            "Could not create session for peer `%s' address `%s': IPv4 is not enabled\n",
1408            GNUNET_i2s(target),
1409            udp_address_to_string(NULL, addr, addrlen));
1410       return NULL;
1411     }
1412     t4 = addr;
1413     s = GNUNET_malloc (sizeof (struct Session) + sizeof (struct sockaddr_in));
1414     len = sizeof (struct sockaddr_in);
1415     v4 = (struct sockaddr_in *) &s[1];
1416     v4->sin_family = AF_INET;
1417 #if HAVE_SOCKADDR_IN_SIN_LEN
1418     v4->sin_len = sizeof (struct sockaddr_in);
1419 #endif
1420     v4->sin_port = t4->u4_port;
1421     v4->sin_addr.s_addr = t4->ipv4_addr;
1422     s->ats = plugin->env->get_address_type (plugin->env->cls, (const struct sockaddr *) v4, sizeof (struct sockaddr_in));
1423     break;
1424   case sizeof (struct IPv6UdpAddress):
1425     if (NULL == plugin->sockv6)
1426     {
1427       LOG (GNUNET_ERROR_TYPE_INFO,
1428            "Could not create session for peer `%s' address `%s': IPv6 is not enabled\n",
1429            GNUNET_i2s(target),
1430            udp_address_to_string(NULL, addr, addrlen));
1431       return NULL;
1432     }
1433     t6 = addr;
1434     s = GNUNET_malloc (sizeof (struct Session) + sizeof (struct sockaddr_in6));
1435     len = sizeof (struct sockaddr_in6);
1436     v6 = (struct sockaddr_in6 *) &s[1];
1437     v6->sin6_family = AF_INET6;
1438 #if HAVE_SOCKADDR_IN_SIN_LEN
1439     v6->sin6_len = sizeof (struct sockaddr_in6);
1440 #endif
1441     v6->sin6_port = t6->u6_port;
1442     v6->sin6_addr = t6->ipv6_addr;
1443     s->ats = plugin->env->get_address_type (plugin->env->cls, (const struct sockaddr *) v6, sizeof (struct sockaddr_in6));
1444     break;
1445   default:
1446     /* Must have a valid address to send to */
1447     GNUNET_STATISTICS_update (plugin->env->stats,
1448                               gettext_noop
1449                               ("# requests to create session with invalid address"),
1450                               1, GNUNET_NO);
1451     return NULL;
1452   }
1453   s->addrlen = len;
1454   s->target = *target;
1455   s->sock_addr = (const struct sockaddr *) &s[1];
1456   s->last_expected_ack_delay = GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_MILLISECONDS, 250);
1457   s->last_expected_msg_delay = GNUNET_TIME_UNIT_MILLISECONDS;
1458   s->flow_delay_from_other_peer = GNUNET_TIME_UNIT_ZERO_ABS;
1459   s->flow_delay_for_other_peer = GNUNET_TIME_UNIT_ZERO;
1460   s->inbound = GNUNET_NO;
1461   start_session_timeout (s);
1462   return s;
1463 }
1464
1465
1466 static int
1467 session_cmp_it (void *cls,
1468                 const struct GNUNET_HashCode * key,
1469                 void *value)
1470 {
1471   struct SessionCompareContext * cctx = cls;
1472   const struct GNUNET_HELLO_Address *address = cctx->addr;
1473   struct Session *s = value;
1474
1475   socklen_t s_addrlen = s->addrlen;
1476
1477   LOG (GNUNET_ERROR_TYPE_DEBUG,
1478        "Comparing address %s <-> %s\n",
1479        udp_address_to_string (NULL, (void *) address->address, 
1480                               address->address_length),
1481        GNUNET_a2s (s->sock_addr, s->addrlen));
1482   if ((address->address_length == sizeof (struct IPv4UdpAddress)) &&
1483       (s_addrlen == sizeof (struct sockaddr_in)))
1484   {
1485     struct IPv4UdpAddress * u4 = NULL;
1486     u4 = (struct IPv4UdpAddress *) address->address;
1487     const struct sockaddr_in *s4 = (const struct sockaddr_in *) s->sock_addr;
1488     if ((0 == memcmp ((const void *) &u4->ipv4_addr,(const void *) &s4->sin_addr, sizeof (struct in_addr))) &&
1489         (u4->u4_port == s4->sin_port))
1490     {
1491       cctx->res = s;
1492       return GNUNET_NO;
1493     }
1494
1495   }
1496   if ((address->address_length == sizeof (struct IPv6UdpAddress)) &&
1497       (s_addrlen == sizeof (struct sockaddr_in6)))
1498   {
1499     struct IPv6UdpAddress * u6 = NULL;
1500     u6 = (struct IPv6UdpAddress *) address->address;
1501     const struct sockaddr_in6 *s6 = (const struct sockaddr_in6 *) s->sock_addr;
1502     if ((0 == memcmp (&u6->ipv6_addr, &s6->sin6_addr, sizeof (struct in6_addr))) &&
1503         (u6->u6_port == s6->sin6_port))
1504     {
1505       cctx->res = s;
1506       return GNUNET_NO;
1507     }
1508   }
1509   return GNUNET_YES;
1510 }
1511
1512
1513 /**
1514  * Function obtain the network type for a session
1515  *
1516  * @param cls closure ('struct Plugin*')
1517  * @param session the session
1518  * @return the network type in HBO or GNUNET_SYSERR
1519  */
1520 static enum GNUNET_ATS_Network_Type
1521 udp_get_network (void *cls, 
1522                  struct Session *session)
1523 {
1524   return ntohl (session->ats.value);
1525 }
1526
1527
1528 /**
1529  * Creates a new outbound session the transport service will use to send data to the
1530  * peer
1531  *
1532  * @param cls the plugin
1533  * @param address the address
1534  * @return the session or NULL of max connections exceeded
1535  */
1536 static struct Session *
1537 udp_plugin_lookup_session (void *cls,
1538                            const struct GNUNET_HELLO_Address *address)
1539 {
1540   struct Plugin * plugin = cls;
1541   struct IPv6UdpAddress * udp_a6;
1542   struct IPv4UdpAddress * udp_a4;
1543
1544   GNUNET_assert (plugin != NULL);
1545   GNUNET_assert (address != NULL);
1546
1547
1548   if ((address->address == NULL) ||
1549       ((address->address_length != sizeof (struct IPv4UdpAddress)) &&
1550       (address->address_length != sizeof (struct IPv6UdpAddress))))
1551   {
1552     LOG (GNUNET_ERROR_TYPE_WARNING,
1553         _("Trying to create session for address of unexpected length %u (should be %u or %u)\n"),
1554         address->address_length,
1555         sizeof (struct IPv4UdpAddress),
1556         sizeof (struct IPv6UdpAddress));
1557     return NULL;
1558   }
1559
1560   if (address->address_length == sizeof (struct IPv4UdpAddress))
1561   {
1562     if (plugin->sockv4 == NULL)
1563       return NULL;
1564     udp_a4 = (struct IPv4UdpAddress *) address->address;
1565     if (udp_a4->u4_port == 0)
1566       return NULL;
1567   }
1568
1569   if (address->address_length == sizeof (struct IPv6UdpAddress))
1570   {
1571     if (plugin->sockv6 == NULL)
1572       return NULL;
1573     udp_a6 = (struct IPv6UdpAddress *) address->address;
1574     if (udp_a6->u6_port == 0)
1575       return NULL;
1576   }
1577
1578   /* check if session already exists */
1579   struct SessionCompareContext cctx;
1580   cctx.addr = address;
1581   cctx.res = NULL;
1582   LOG (GNUNET_ERROR_TYPE_DEBUG,
1583        "Looking for existing session for peer `%s' `%s' \n", 
1584        GNUNET_i2s (&address->peer), 
1585        udp_address_to_string(NULL, address->address, address->address_length));
1586   GNUNET_CONTAINER_multihashmap_get_multiple(plugin->sessions, &address->peer.hashPubKey, session_cmp_it, &cctx);
1587   if (cctx.res != NULL)
1588   {
1589     LOG (GNUNET_ERROR_TYPE_DEBUG, "Found existing session %p\n", cctx.res);
1590     return cctx.res;
1591   }
1592   return NULL;
1593 }
1594
1595
1596 static struct Session *
1597 udp_plugin_create_session (void *cls,
1598                            const struct GNUNET_HELLO_Address *address)
1599 {
1600   struct Session *s;
1601
1602   s = create_session (plugin,
1603                       &address->peer,
1604                       address->address,
1605                       address->address_length,
1606                       NULL, NULL);
1607   if (NULL == s)
1608     return NULL; /* protocol not supported or address invalid */
1609   LOG (GNUNET_ERROR_TYPE_DEBUG,
1610        "Creating new session %p for peer `%s' address `%s'\n",
1611        s,
1612        GNUNET_i2s(&address->peer),
1613        udp_address_to_string(NULL,address->address,address->address_length));
1614   GNUNET_assert (GNUNET_OK ==
1615                  GNUNET_CONTAINER_multihashmap_put (plugin->sessions,
1616                                                     &s->target.hashPubKey,
1617                                                     s,
1618                                                     GNUNET_CONTAINER_MULTIHASHMAPOPTION_MULTIPLE));
1619   GNUNET_STATISTICS_set(plugin->env->stats,
1620                         "# UDP, sessions active",
1621                         GNUNET_CONTAINER_multihashmap_size(plugin->sessions),
1622                         GNUNET_NO);
1623   return s;
1624 }
1625
1626
1627 /**
1628  * Creates a new outbound session the transport service will use to send data to the
1629  * peer
1630  *
1631  * @param cls the plugin
1632  * @param address the address
1633  * @return the session or NULL of max connections exceeded
1634  */
1635 static struct Session *
1636 udp_plugin_get_session (void *cls,
1637                         const struct GNUNET_HELLO_Address *address)
1638 {
1639   struct Session *s;
1640
1641   if (NULL == address)
1642   {
1643     GNUNET_break (0);
1644     return NULL;
1645   }
1646   if ((address->address_length != sizeof (struct IPv4UdpAddress)) &&
1647       (address->address_length != sizeof (struct IPv6UdpAddress)))
1648     return NULL;
1649
1650   /* otherwise create new */
1651   if (NULL != (s = udp_plugin_lookup_session (cls, address)))
1652     return s;
1653   return udp_plugin_create_session (cls, address);
1654 }
1655
1656
1657 static void 
1658 enqueue (struct Plugin *plugin, struct UDP_MessageWrapper * udpw)
1659 {
1660   if (plugin->bytes_in_buffer + udpw->msg_size > INT64_MAX)
1661       GNUNET_break (0);
1662   else
1663   {
1664     GNUNET_STATISTICS_update (plugin->env->stats,
1665                               "# UDP, total, bytes in buffers",
1666                               udpw->msg_size, GNUNET_NO);
1667     plugin->bytes_in_buffer += udpw->msg_size;
1668   }
1669   GNUNET_STATISTICS_update (plugin->env->stats,
1670                             "# UDP, total, msgs in buffers",
1671                             1, GNUNET_NO);
1672   if (udpw->session->addrlen == sizeof (struct sockaddr_in))
1673     GNUNET_CONTAINER_DLL_insert (plugin->ipv4_queue_head,
1674                                  plugin->ipv4_queue_tail, udpw);
1675   if (udpw->session->addrlen == sizeof (struct sockaddr_in6))
1676     GNUNET_CONTAINER_DLL_insert (plugin->ipv6_queue_head,
1677                                  plugin->ipv6_queue_tail, udpw);
1678 }
1679
1680
1681
1682 /**
1683  * Fragment message was transmitted via UDP, let fragmentation know
1684  * to send the next fragment now.
1685  *
1686  * @param cls the 'struct UDPMessageWrapper' of the fragment
1687  * @param target destination peer (ignored)
1688  * @param result GNUNET_OK on success (ignored)
1689  * @param payload bytes payload sent
1690  * @param physical bytes physical sent
1691  */
1692 static void
1693 send_next_fragment (void *cls,
1694                     const struct GNUNET_PeerIdentity *target,
1695                     int result, size_t payload, size_t physical)
1696 {
1697   struct UDP_MessageWrapper *udpw = cls;
1698
1699   GNUNET_FRAGMENT_context_transmission_done (udpw->frag_ctx->frag);  
1700 }
1701
1702
1703 /**
1704  * Function that is called with messages created by the fragmentation
1705  * module.  In the case of the 'proc' callback of the
1706  * GNUNET_FRAGMENT_context_create function, this function must
1707  * eventually call 'GNUNET_FRAGMENT_context_transmission_done'.
1708  *
1709  * @param cls closure, the 'struct FragmentationContext'
1710  * @param msg the message that was created
1711  */
1712 static void
1713 enqueue_fragment (void *cls, const struct GNUNET_MessageHeader *msg)
1714 {
1715   struct UDP_FragmentationContext *frag_ctx = cls;
1716   struct Plugin *plugin = frag_ctx->plugin;
1717   struct UDP_MessageWrapper * udpw;
1718   size_t msg_len = ntohs (msg->size);
1719  
1720   LOG (GNUNET_ERROR_TYPE_DEBUG, 
1721        "Enqueuing fragment with %u bytes\n", msg_len);
1722   frag_ctx->fragments_used ++;
1723   udpw = GNUNET_malloc (sizeof (struct UDP_MessageWrapper) + msg_len);
1724   udpw->session = frag_ctx->session;
1725   udpw->msg_buf = (char *) &udpw[1];
1726   udpw->msg_size = msg_len;
1727   udpw->payload_size = msg_len; /*FIXME: minus fragment overhead */
1728   udpw->cont = &send_next_fragment;
1729   udpw->cont_cls = udpw;
1730   udpw->timeout = frag_ctx->timeout;
1731   udpw->frag_ctx = frag_ctx;
1732   udpw->msg_type = MSG_FRAGMENTED;
1733   memcpy (udpw->msg_buf, msg, msg_len);
1734   enqueue (plugin, udpw);
1735   schedule_select (plugin);
1736 }
1737
1738
1739 /**
1740  * Function that can be used by the transport service to transmit
1741  * a message using the plugin.   Note that in the case of a
1742  * peer disconnecting, the continuation MUST be called
1743  * prior to the disconnect notification itself.  This function
1744  * will be called with this peer's HELLO message to initiate
1745  * a fresh connection to another peer.
1746  *
1747  * @param cls closure
1748  * @param s which session must be used
1749  * @param msgbuf the message to transmit
1750  * @param msgbuf_size number of bytes in 'msgbuf'
1751  * @param priority how important is the message (most plugins will
1752  *                 ignore message priority and just FIFO)
1753  * @param to how long to wait at most for the transmission (does not
1754  *                require plugins to discard the message after the timeout,
1755  *                just advisory for the desired delay; most plugins will ignore
1756  *                this as well)
1757  * @param cont continuation to call once the message has
1758  *        been transmitted (or if the transport is ready
1759  *        for the next transmission call; or if the
1760  *        peer disconnected...); can be NULL
1761  * @param cont_cls closure for cont
1762  * @return number of bytes used (on the physical network, with overheads);
1763  *         -1 on hard errors (i.e. address invalid); 0 is a legal value
1764  *         and does NOT mean that the message was not transmitted (DV)
1765  */
1766 static ssize_t
1767 udp_plugin_send (void *cls,
1768                   struct Session *s,
1769                   const char *msgbuf, size_t msgbuf_size,
1770                   unsigned int priority,
1771                   struct GNUNET_TIME_Relative to,
1772                   GNUNET_TRANSPORT_TransmitContinuation cont, void *cont_cls)
1773 {
1774   struct Plugin *plugin = cls;
1775   size_t udpmlen = msgbuf_size + sizeof (struct UDPMessage);
1776   struct UDP_FragmentationContext * frag_ctx;
1777   struct UDP_MessageWrapper * udpw;
1778   struct UDPMessage *udp;
1779   char mbuf[udpmlen];
1780   GNUNET_assert (plugin != NULL);
1781   GNUNET_assert (s != NULL);
1782
1783   if ((s->addrlen == sizeof (struct sockaddr_in6)) && (plugin->sockv6 == NULL))
1784     return GNUNET_SYSERR;
1785   if ((s->addrlen == sizeof (struct sockaddr_in)) && (plugin->sockv4 == NULL))
1786     return GNUNET_SYSERR;
1787   if (udpmlen >= GNUNET_SERVER_MAX_MESSAGE_SIZE)
1788   {
1789     GNUNET_break (0);
1790     return GNUNET_SYSERR;
1791   }
1792   if (GNUNET_YES != GNUNET_CONTAINER_multihashmap_contains_value(plugin->sessions, &s->target.hashPubKey, s))
1793   {
1794     GNUNET_break (0);
1795     return GNUNET_SYSERR;
1796   }
1797   LOG (GNUNET_ERROR_TYPE_DEBUG,
1798        "UDP transmits %u-byte message to `%s' using address `%s'\n",
1799        udpmlen,
1800        GNUNET_i2s (&s->target),
1801        GNUNET_a2s(s->sock_addr, s->addrlen));
1802
1803
1804   /* Message */
1805   udp = (struct UDPMessage *) mbuf;
1806   udp->header.size = htons (udpmlen);
1807   udp->header.type = htons (GNUNET_MESSAGE_TYPE_TRANSPORT_UDP_MESSAGE);
1808   udp->reserved = htonl (0);
1809   udp->sender = *plugin->env->my_identity;
1810
1811   reschedule_session_timeout(s);
1812   if (udpmlen <= UDP_MTU)
1813   {
1814     /* unfragmented message */
1815     udpw = GNUNET_malloc (sizeof (struct UDP_MessageWrapper) + udpmlen);
1816     udpw->session = s;
1817     udpw->msg_buf = (char *) &udpw[1];
1818     udpw->msg_size = udpmlen; /* message size with UDP overhead */
1819     udpw->payload_size = msgbuf_size; /* message size without UDP overhead */
1820     udpw->timeout = GNUNET_TIME_absolute_add(GNUNET_TIME_absolute_get(), to);
1821     udpw->cont = cont;
1822     udpw->cont_cls = cont_cls;
1823     udpw->frag_ctx = NULL;
1824     udpw->msg_type = MSG_UNFRAGMENTED;
1825     memcpy (udpw->msg_buf, udp, sizeof (struct UDPMessage));
1826     memcpy (&udpw->msg_buf[sizeof (struct UDPMessage)], msgbuf, msgbuf_size);
1827     enqueue (plugin, udpw);
1828
1829     GNUNET_STATISTICS_update (plugin->env->stats,
1830                               "# UDP, unfragmented msgs, messages, attempt",
1831                               1, GNUNET_NO);
1832     GNUNET_STATISTICS_update (plugin->env->stats,
1833                               "# UDP, unfragmented msgs, bytes payload, attempt",
1834                               udpw->payload_size, GNUNET_NO);
1835   }
1836   else
1837   {
1838     /* fragmented message */
1839     if  (s->frag_ctx != NULL)
1840       return GNUNET_SYSERR;
1841     memcpy (&udp[1], msgbuf, msgbuf_size);
1842     frag_ctx = GNUNET_malloc (sizeof (struct UDP_FragmentationContext));
1843     frag_ctx->plugin = plugin;
1844     frag_ctx->session = s;
1845     frag_ctx->cont = cont;
1846     frag_ctx->cont_cls = cont_cls;
1847     frag_ctx->timeout = GNUNET_TIME_absolute_add(GNUNET_TIME_absolute_get(), to);
1848     frag_ctx->payload_size = msgbuf_size; /* unfragmented message size without UDP overhead */
1849     frag_ctx->on_wire_size = 0; /* bytes with UDP and fragmentation overhead */
1850     frag_ctx->frag = GNUNET_FRAGMENT_context_create (plugin->env->stats,
1851                                                      UDP_MTU,
1852                                                      &plugin->tracker,
1853                                                      s->last_expected_msg_delay, 
1854                                                      s->last_expected_ack_delay, 
1855                                                      &udp->header,
1856                                                      &enqueue_fragment,
1857                                                      frag_ctx);    
1858     s->frag_ctx = frag_ctx;
1859     GNUNET_STATISTICS_update (plugin->env->stats,
1860                               "# UDP, fragmented msgs, messages, pending",
1861                               1, GNUNET_NO);
1862     GNUNET_STATISTICS_update (plugin->env->stats,
1863                               "# UDP, fragmented msgs, messages, attempt",
1864                               1, GNUNET_NO);
1865     GNUNET_STATISTICS_update (plugin->env->stats,
1866                               "# UDP, fragmented msgs, bytes payload, attempt",
1867                               frag_ctx->payload_size, GNUNET_NO);
1868   }
1869   schedule_select (plugin);
1870   return udpmlen;
1871 }
1872
1873
1874 /**
1875  * Our external IP address/port mapping has changed.
1876  *
1877  * @param cls closure, the 'struct LocalAddrList'
1878  * @param add_remove GNUNET_YES to mean the new public IP address, GNUNET_NO to mean
1879  *     the previous (now invalid) one
1880  * @param addr either the previous or the new public IP address
1881  * @param addrlen actual lenght of the address
1882  */
1883 static void
1884 udp_nat_port_map_callback (void *cls, int add_remove,
1885                            const struct sockaddr *addr, socklen_t addrlen)
1886 {
1887   struct Plugin *plugin = cls;
1888   struct IPv4UdpAddress u4;
1889   struct IPv6UdpAddress u6;
1890   void *arg;
1891   size_t args;
1892
1893   LOG (GNUNET_ERROR_TYPE_INFO,
1894        "NAT notification to %s address `%s'\n",
1895        (GNUNET_YES == add_remove) ? "add" : "remove",
1896        GNUNET_a2s (addr, addrlen));
1897
1898   /* convert 'addr' to our internal format */
1899   switch (addr->sa_family)
1900   {
1901   case AF_INET:
1902     GNUNET_assert (addrlen == sizeof (struct sockaddr_in));
1903     memset (&u4, 0, sizeof (u4));
1904     u4.options = htonl(myoptions);
1905     u4.ipv4_addr = ((struct sockaddr_in *) addr)->sin_addr.s_addr;
1906     u4.u4_port = ((struct sockaddr_in *) addr)->sin_port;
1907     if (0 == ((struct sockaddr_in *) addr)->sin_port)
1908         return;
1909     arg = &u4;
1910     args = sizeof (struct IPv4UdpAddress);
1911     break;
1912   case AF_INET6:
1913     GNUNET_assert (addrlen == sizeof (struct sockaddr_in6));
1914     memset (&u4, 0, sizeof (u4));
1915     u6.options = htonl(myoptions);
1916     if (0 == ((struct sockaddr_in6 *) addr)->sin6_port)
1917         return;
1918     memcpy (&u6.ipv6_addr, &((struct sockaddr_in6 *) addr)->sin6_addr,
1919             sizeof (struct in6_addr));
1920     u6.u6_port = ((struct sockaddr_in6 *) addr)->sin6_port;
1921     arg = &u6;
1922     args = sizeof (struct IPv6UdpAddress);
1923     break;
1924   default:
1925     GNUNET_break (0);
1926     return;
1927   }
1928   /* modify our published address list */
1929   plugin->env->notify_address (plugin->env->cls, add_remove, arg, args, "udp");
1930 }
1931
1932
1933
1934 /**
1935  * Message tokenizer has broken up an incomming message. Pass it on
1936  * to the service.
1937  *
1938  * @param cls the 'struct Plugin'
1939  * @param client the 'struct SourceInformation'
1940  * @param hdr the actual message
1941  */
1942 static int
1943 process_inbound_tokenized_messages (void *cls, void *client,
1944                                     const struct GNUNET_MessageHeader *hdr)
1945 {
1946   struct Plugin *plugin = cls;
1947   struct SourceInformation *si = client;
1948   struct GNUNET_TIME_Relative delay;
1949
1950   GNUNET_assert (si->session != NULL);
1951   if (GNUNET_YES == si->session->in_destroy)
1952     return GNUNET_OK;
1953   /* setup ATS */
1954   GNUNET_break (ntohl(si->session->ats.value) != GNUNET_ATS_NET_UNSPECIFIED);
1955   delay = plugin->env->receive (plugin->env->cls,
1956                                 &si->sender,
1957                                 hdr,
1958                                 si->session,
1959                  (GNUNET_YES == si->session->inbound) ? NULL : si->arg,
1960                  (GNUNET_YES == si->session->inbound) ? 0 : si->args);
1961
1962   plugin->env->update_address_metrics (plugin->env->cls,
1963                                        &si->sender,
1964                                          (GNUNET_YES == si->session->inbound) ? NULL : si->arg,
1965                                          (GNUNET_YES == si->session->inbound) ? 0 : si->args,
1966                                        si->session,
1967                                        &si->session->ats, 1);
1968
1969   si->session->flow_delay_for_other_peer = delay;
1970   reschedule_session_timeout(si->session);
1971   return GNUNET_OK;
1972 }
1973
1974
1975 /**
1976  * We've received a UDP Message.  Process it (pass contents to main service).
1977  *
1978  * @param plugin plugin context
1979  * @param msg the message
1980  * @param sender_addr sender address
1981  * @param sender_addr_len number of bytes in sender_addr
1982  */
1983 static void
1984 process_udp_message (struct Plugin *plugin, const struct UDPMessage *msg,
1985                      const struct sockaddr *sender_addr,
1986                      socklen_t sender_addr_len)
1987 {
1988   struct SourceInformation si;
1989   struct Session * s;
1990   struct IPv4UdpAddress u4;
1991   struct IPv6UdpAddress u6;
1992   const void *arg;
1993   size_t args;
1994
1995   if (0 != ntohl (msg->reserved))
1996   {
1997     GNUNET_break_op (0);
1998     return;
1999   }
2000   if (ntohs (msg->header.size) <
2001       sizeof (struct GNUNET_MessageHeader) + sizeof (struct UDPMessage))
2002   {
2003     GNUNET_break_op (0);
2004     return;
2005   }
2006
2007   /* convert address */
2008   switch (sender_addr->sa_family)
2009   {
2010   case AF_INET:
2011     GNUNET_assert (sender_addr_len == sizeof (struct sockaddr_in));
2012     memset (&u4, 0, sizeof (u4));
2013     u6.options = htonl (0);
2014     u4.ipv4_addr = ((struct sockaddr_in *) sender_addr)->sin_addr.s_addr;
2015     u4.u4_port = ((struct sockaddr_in *) sender_addr)->sin_port;
2016     arg = &u4;
2017     args = sizeof (u4);
2018     break;
2019   case AF_INET6:
2020     GNUNET_assert (sender_addr_len == sizeof (struct sockaddr_in6));
2021     memset (&u6, 0, sizeof (u6));
2022     u6.options = htonl (0);
2023     u6.ipv6_addr = ((struct sockaddr_in6 *) sender_addr)->sin6_addr;
2024     u6.u6_port = ((struct sockaddr_in6 *) sender_addr)->sin6_port;
2025     arg = &u6;
2026     args = sizeof (u6);
2027     break;
2028   default:
2029     GNUNET_break (0);
2030     return;
2031   }
2032   LOG (GNUNET_ERROR_TYPE_DEBUG,
2033        "Received message with %u bytes from peer `%s' at `%s'\n",
2034        (unsigned int) ntohs (msg->header.size), GNUNET_i2s (&msg->sender),
2035        GNUNET_a2s (sender_addr, sender_addr_len));
2036
2037   struct GNUNET_HELLO_Address * address = GNUNET_HELLO_address_allocate(&msg->sender, "udp", arg, args);
2038   if (NULL == (s = udp_plugin_lookup_session (plugin, address)))
2039   {
2040                 s = udp_plugin_create_session(plugin, address);
2041                 s->inbound = GNUNET_YES;
2042           plugin->env->session_start (NULL, &address->peer, PLUGIN_NAME,
2043                         (GNUNET_YES == s->inbound) ? NULL : address->address,
2044                         (GNUNET_YES == s->inbound) ? 0 : address->address_length,
2045                   s, NULL, 0);
2046   }
2047   GNUNET_free (address);
2048
2049   /* iterate over all embedded messages */
2050   si.session = s;
2051   si.sender = msg->sender;
2052   si.arg = arg;
2053   si.args = args;
2054   s->rc++;
2055   GNUNET_SERVER_mst_receive (plugin->mst, &si, (const char *) &msg[1],
2056                              ntohs (msg->header.size) -
2057                              sizeof (struct UDPMessage), GNUNET_YES, GNUNET_NO);
2058   s->rc--;
2059   if ( (0 == s->rc) && (GNUNET_YES == s->in_destroy))
2060     free_session (s);
2061 }
2062
2063
2064 /**
2065  * Scan the heap for a receive context with the given address.
2066  *
2067  * @param cls the 'struct FindReceiveContext'
2068  * @param node internal node of the heap
2069  * @param element value stored at the node (a 'struct ReceiveContext')
2070  * @param cost cost associated with the node
2071  * @return GNUNET_YES if we should continue to iterate,
2072  *         GNUNET_NO if not.
2073  */
2074 static int
2075 find_receive_context (void *cls, struct GNUNET_CONTAINER_HeapNode *node,
2076                       void *element, GNUNET_CONTAINER_HeapCostType cost)
2077 {
2078   struct FindReceiveContext *frc = cls;
2079   struct DefragContext *e = element;
2080
2081   if ((frc->addr_len == e->addr_len) &&
2082       (0 == memcmp (frc->addr, e->src_addr, frc->addr_len)))
2083   {
2084     frc->rc = e;
2085     return GNUNET_NO;
2086   }
2087   return GNUNET_YES;
2088 }
2089
2090
2091 /**
2092  * Process a defragmented message.
2093  *
2094  * @param cls the 'struct ReceiveContext'
2095  * @param msg the message
2096  */
2097 static void
2098 fragment_msg_proc (void *cls, const struct GNUNET_MessageHeader *msg)
2099 {
2100   struct DefragContext *rc = cls;
2101
2102   if (ntohs (msg->type) != GNUNET_MESSAGE_TYPE_TRANSPORT_UDP_MESSAGE)
2103   {
2104     GNUNET_break (0);
2105     return;
2106   }
2107   if (ntohs (msg->size) < sizeof (struct UDPMessage))
2108   {
2109     GNUNET_break (0);
2110     return;
2111   }
2112   process_udp_message (rc->plugin, (const struct UDPMessage *) msg,
2113                        rc->src_addr, rc->addr_len);
2114 }
2115
2116
2117 struct LookupContext
2118 {
2119   const struct sockaddr * addr;
2120
2121   struct Session *res;
2122
2123   size_t addrlen;
2124 };
2125
2126
2127 static int
2128 lookup_session_by_addr_it (void *cls, const struct GNUNET_HashCode * key, void *value)
2129 {
2130   struct LookupContext *l_ctx = cls;
2131   struct Session * s = value;
2132
2133   if ((s->addrlen == l_ctx->addrlen) &&
2134       (0 == memcmp (s->sock_addr, l_ctx->addr, s->addrlen)))
2135   {
2136     l_ctx->res = s;
2137     return GNUNET_NO;
2138   }
2139   return GNUNET_YES;
2140 }
2141
2142
2143 /**
2144  * Transmit an acknowledgement.
2145  *
2146  * @param cls the 'struct ReceiveContext'
2147  * @param id message ID (unused)
2148  * @param msg ack to transmit
2149  */
2150 static void
2151 ack_proc (void *cls, uint32_t id, const struct GNUNET_MessageHeader *msg)
2152 {
2153   struct DefragContext *rc = cls;
2154   size_t msize = sizeof (struct UDP_ACK_Message) + ntohs (msg->size);
2155   struct UDP_ACK_Message *udp_ack;
2156   uint32_t delay = 0;
2157   struct UDP_MessageWrapper *udpw;
2158   struct Session *s;
2159   struct LookupContext l_ctx;
2160
2161   l_ctx.addr = rc->src_addr;
2162   l_ctx.addrlen = rc->addr_len;
2163   l_ctx.res = NULL;
2164   GNUNET_CONTAINER_multihashmap_iterate (rc->plugin->sessions,
2165       &lookup_session_by_addr_it,
2166       &l_ctx);
2167   s = l_ctx.res;
2168
2169   if (NULL == s)
2170     return;
2171
2172   if (s->flow_delay_for_other_peer.rel_value_us <= UINT32_MAX)
2173     delay = s->flow_delay_for_other_peer.rel_value_us;
2174
2175   LOG (GNUNET_ERROR_TYPE_DEBUG,
2176        "Sending ACK to `%s' including delay of %s\n",
2177        GNUNET_a2s (rc->src_addr,
2178                    (rc->src_addr->sa_family ==
2179                     AF_INET) ? sizeof (struct sockaddr_in) : sizeof (struct
2180                                                                      sockaddr_in6)),
2181        GNUNET_STRINGS_relative_time_to_string (s->flow_delay_for_other_peer,
2182                                                GNUNET_YES));
2183   udpw = GNUNET_malloc (sizeof (struct UDP_MessageWrapper) + msize);
2184   udpw->msg_size = msize;
2185   udpw->payload_size = 0;
2186   udpw->session = s;
2187   udpw->timeout = GNUNET_TIME_UNIT_FOREVER_ABS;
2188   udpw->msg_buf = (char *)&udpw[1];
2189   udpw->msg_type = MSG_ACK;
2190   udp_ack = (struct UDP_ACK_Message *) udpw->msg_buf;
2191   udp_ack->header.size = htons ((uint16_t) msize);
2192   udp_ack->header.type = htons (GNUNET_MESSAGE_TYPE_TRANSPORT_UDP_ACK);
2193   udp_ack->delay = htonl (delay);
2194   udp_ack->sender = *rc->plugin->env->my_identity;
2195   memcpy (&udp_ack[1], msg, ntohs (msg->size));
2196   enqueue (rc->plugin, udpw);
2197 }
2198
2199
2200 static void 
2201 read_process_msg (struct Plugin *plugin,
2202                   const struct GNUNET_MessageHeader *msg,
2203                   const char *addr,
2204                   socklen_t fromlen)
2205 {
2206   if (ntohs (msg->size) < sizeof (struct UDPMessage))
2207   {
2208     GNUNET_break_op (0);
2209     return;
2210   }
2211   process_udp_message (plugin, (const struct UDPMessage *) msg,
2212                        (const struct sockaddr *) addr, fromlen);
2213 }
2214
2215
2216 static void 
2217 read_process_ack (struct Plugin *plugin,
2218                   const struct GNUNET_MessageHeader *msg,
2219                   char *addr,
2220                   socklen_t fromlen)
2221 {
2222   const struct GNUNET_MessageHeader *ack;
2223   const struct UDP_ACK_Message *udp_ack;
2224   struct LookupContext l_ctx;
2225   struct Session *s;
2226   struct GNUNET_TIME_Relative flow_delay;
2227
2228   if (ntohs (msg->size) <
2229       sizeof (struct UDP_ACK_Message) + sizeof (struct GNUNET_MessageHeader))
2230   {
2231     GNUNET_break_op (0);
2232     return;
2233   }
2234   udp_ack = (const struct UDP_ACK_Message *) msg;
2235   l_ctx.addr = (const struct sockaddr *) addr;
2236   l_ctx.addrlen = fromlen;
2237   l_ctx.res = NULL;
2238   GNUNET_CONTAINER_multihashmap_iterate (plugin->sessions,
2239                                          &lookup_session_by_addr_it,
2240                                          &l_ctx);
2241   s = l_ctx.res;
2242
2243   if ((NULL == s) || (NULL == s->frag_ctx))
2244   {
2245     return;
2246   }
2247
2248   flow_delay.rel_value_us = (uint64_t) ntohl (udp_ack->delay);
2249   LOG (GNUNET_ERROR_TYPE_DEBUG, 
2250        "We received a sending delay of %s\n",
2251        GNUNET_STRINGS_relative_time_to_string (flow_delay,
2252                                                GNUNET_YES));
2253   s->flow_delay_from_other_peer =
2254       GNUNET_TIME_relative_to_absolute (flow_delay);
2255
2256   ack = (const struct GNUNET_MessageHeader *) &udp_ack[1];
2257   if (ntohs (ack->size) !=
2258       ntohs (msg->size) - sizeof (struct UDP_ACK_Message))
2259   {
2260     GNUNET_break_op (0);
2261     return;
2262   }
2263
2264   if (0 != memcmp (&l_ctx.res->target, &udp_ack->sender, sizeof (struct GNUNET_PeerIdentity)))
2265     GNUNET_break (0);
2266   if (GNUNET_OK != GNUNET_FRAGMENT_process_ack (s->frag_ctx->frag, ack))
2267   {
2268     LOG (GNUNET_ERROR_TYPE_DEBUG,
2269          "UDP processes %u-byte acknowledgement from `%s' at `%s'\n",
2270          (unsigned int) ntohs (msg->size), GNUNET_i2s (&udp_ack->sender),
2271          GNUNET_a2s ((const struct sockaddr *) addr, fromlen));
2272     /* Expect more ACKs to arrive */
2273     return;
2274   }
2275
2276   LOG (GNUNET_ERROR_TYPE_DEBUG,
2277        "Message full ACK'ed\n",
2278        (unsigned int) ntohs (msg->size), GNUNET_i2s (&udp_ack->sender),
2279        GNUNET_a2s ((const struct sockaddr *) addr, fromlen));
2280
2281   /* Remove fragmented message after successful sending */
2282   fragmented_message_done (s->frag_ctx, GNUNET_OK);
2283 }
2284
2285
2286 static void 
2287 read_process_fragment (struct Plugin *plugin,
2288                        const struct GNUNET_MessageHeader *msg,
2289                        char *addr,
2290                        socklen_t fromlen)
2291 {
2292   struct DefragContext *d_ctx;
2293   struct GNUNET_TIME_Absolute now;
2294   struct FindReceiveContext frc;
2295
2296   frc.rc = NULL;
2297   frc.addr = (const struct sockaddr *) addr;
2298   frc.addr_len = fromlen;
2299
2300   LOG (GNUNET_ERROR_TYPE_DEBUG, "UDP processes %u-byte fragment from `%s'\n",
2301        (unsigned int) ntohs (msg->size),
2302        GNUNET_a2s ((const struct sockaddr *) addr, fromlen));
2303   /* Lookup existing receive context for this address */
2304   GNUNET_CONTAINER_heap_iterate (plugin->defrag_ctxs,
2305                                  &find_receive_context,
2306                                  &frc);
2307   now = GNUNET_TIME_absolute_get ();
2308   d_ctx = frc.rc;
2309
2310   if (d_ctx == NULL)
2311   {
2312     /* Create a new defragmentation context */
2313     d_ctx = GNUNET_malloc (sizeof (struct DefragContext) + fromlen);
2314     memcpy (&d_ctx[1], addr, fromlen);
2315     d_ctx->src_addr = (const struct sockaddr *) &d_ctx[1];
2316     d_ctx->addr_len = fromlen;
2317     d_ctx->plugin = plugin;
2318     d_ctx->defrag =
2319         GNUNET_DEFRAGMENT_context_create (plugin->env->stats, UDP_MTU,
2320                                           UDP_MAX_MESSAGES_IN_DEFRAG, d_ctx,
2321                                           &fragment_msg_proc, &ack_proc);
2322     d_ctx->hnode =
2323         GNUNET_CONTAINER_heap_insert (plugin->defrag_ctxs, d_ctx,
2324                                       (GNUNET_CONTAINER_HeapCostType)
2325                                       now.abs_value_us);
2326     LOG (GNUNET_ERROR_TYPE_DEBUG, 
2327          "Created new defragmentation context for %u-byte fragment from `%s'\n",
2328          (unsigned int) ntohs (msg->size),
2329          GNUNET_a2s ((const struct sockaddr *) addr, fromlen));
2330   }
2331   else
2332   {
2333     LOG (GNUNET_ERROR_TYPE_DEBUG,
2334          "Found existing defragmentation context for %u-byte fragment from `%s'\n",
2335          (unsigned int) ntohs (msg->size),
2336          GNUNET_a2s ((const struct sockaddr *) addr, fromlen));
2337   }
2338
2339   if (GNUNET_OK == GNUNET_DEFRAGMENT_process_fragment (d_ctx->defrag, msg))
2340   {
2341     /* keep this 'rc' from expiring */
2342     GNUNET_CONTAINER_heap_update_cost (plugin->defrag_ctxs, d_ctx->hnode,
2343                                        (GNUNET_CONTAINER_HeapCostType)
2344                                        now.abs_value_us);
2345   }
2346   if (GNUNET_CONTAINER_heap_get_size (plugin->defrag_ctxs) >
2347       UDP_MAX_SENDER_ADDRESSES_WITH_DEFRAG)
2348   {
2349     /* remove 'rc' that was inactive the longest */
2350     d_ctx = GNUNET_CONTAINER_heap_remove_root (plugin->defrag_ctxs);
2351     GNUNET_assert (NULL != d_ctx);
2352     GNUNET_DEFRAGMENT_context_destroy (d_ctx->defrag);
2353     GNUNET_free (d_ctx);
2354   }
2355 }
2356
2357
2358 /**
2359  * Read and process a message from the given socket.
2360  *
2361  * @param plugin the overall plugin
2362  * @param rsock socket to read from
2363  */
2364 static void
2365 udp_select_read (struct Plugin *plugin, struct GNUNET_NETWORK_Handle *rsock)
2366 {
2367   socklen_t fromlen;
2368   char addr[32];
2369   char buf[65536] GNUNET_ALIGN;
2370   ssize_t size;
2371   const struct GNUNET_MessageHeader *msg;
2372
2373   fromlen = sizeof (addr);
2374   memset (&addr, 0, sizeof (addr));
2375   size = GNUNET_NETWORK_socket_recvfrom (rsock, buf, sizeof (buf),
2376                                       (struct sockaddr *) &addr, &fromlen);
2377 #if MINGW
2378   /* On SOCK_DGRAM UDP sockets recvfrom might fail with a
2379    * WSAECONNRESET error to indicate that previous sendto() (yes, sendto!)
2380    * on this socket has failed.
2381    * Quote from MSDN:
2382    *   WSAECONNRESET - The virtual circuit was reset by the remote side
2383    *   executing a hard or abortive close. The application should close
2384    *   the socket; it is no longer usable. On a UDP-datagram socket this
2385    *   error indicates a previous send operation resulted in an ICMP Port
2386    *   Unreachable message.
2387    */
2388   if ( (-1 == size) && (ECONNRESET == errno) )
2389     return;
2390 #endif
2391   if (-1 == size)
2392   {
2393     LOG (GNUNET_ERROR_TYPE_DEBUG,
2394         "UDP failed to receive data: %s\n", STRERROR (errno));
2395     /* Connection failure or something. Not a protocol violation. */
2396     return;
2397   }
2398   if (size < sizeof (struct GNUNET_MessageHeader))
2399   {
2400     LOG (GNUNET_ERROR_TYPE_WARNING,
2401         "UDP got %u bytes, which is not enough for a GNUnet message header\n",
2402         (unsigned int) size);
2403     /* _MAY_ be a connection failure (got partial message) */
2404     /* But it _MAY_ also be that the other side uses non-GNUnet protocol. */
2405     GNUNET_break_op (0);
2406     return;
2407   }
2408   msg = (const struct GNUNET_MessageHeader *) buf;
2409
2410   LOG (GNUNET_ERROR_TYPE_DEBUG,
2411        "UDP received %u-byte message from `%s' type %i\n", (unsigned int) size,
2412        GNUNET_a2s ((const struct sockaddr *) addr, fromlen), ntohs (msg->type));
2413
2414   if (size != ntohs (msg->size))
2415   {
2416     GNUNET_break_op (0);
2417     return;
2418   }
2419
2420   GNUNET_STATISTICS_update (plugin->env->stats,
2421                             "# UDP, total, bytes, received",
2422                             size, GNUNET_NO);
2423
2424   switch (ntohs (msg->type))
2425   {
2426   case GNUNET_MESSAGE_TYPE_TRANSPORT_BROADCAST_BEACON:
2427     udp_broadcast_receive (plugin, &buf, size, addr, fromlen);
2428     return;
2429
2430   case GNUNET_MESSAGE_TYPE_TRANSPORT_UDP_MESSAGE:
2431     read_process_msg (plugin, msg, addr, fromlen);
2432     return;
2433
2434   case GNUNET_MESSAGE_TYPE_TRANSPORT_UDP_ACK:
2435     read_process_ack (plugin, msg, addr, fromlen);
2436     return;
2437
2438   case GNUNET_MESSAGE_TYPE_FRAGMENT:
2439     read_process_fragment (plugin, msg, addr, fromlen);
2440     return;
2441
2442   default:
2443     GNUNET_break_op (0);
2444     return;
2445   }
2446 }
2447
2448
2449 static struct UDP_MessageWrapper *
2450 remove_timeout_messages_and_select (struct UDP_MessageWrapper *head,
2451                                     struct GNUNET_NETWORK_Handle *sock)
2452 {
2453   struct UDP_MessageWrapper *udpw = NULL;
2454   struct GNUNET_TIME_Relative remaining;
2455
2456   udpw = head;
2457   while (udpw != NULL)
2458   {
2459     /* Find messages with timeout */
2460     remaining = GNUNET_TIME_absolute_get_remaining (udpw->timeout);
2461     if (GNUNET_TIME_UNIT_ZERO.rel_value_us == remaining.rel_value_us)
2462     {
2463       /* Message timed out */
2464       switch (udpw->msg_type) {
2465         case MSG_UNFRAGMENTED:
2466           GNUNET_STATISTICS_update (plugin->env->stats,
2467                                     "# UDP, total, bytes, sent, timeout",
2468                                     udpw->msg_size, GNUNET_NO);
2469           GNUNET_STATISTICS_update (plugin->env->stats,
2470                                     "# UDP, total, messages, sent, timeout",
2471                                     1, GNUNET_NO);
2472           GNUNET_STATISTICS_update (plugin->env->stats,
2473                                     "# UDP, unfragmented msgs, messages, sent, timeout",
2474                                     1, GNUNET_NO);
2475           GNUNET_STATISTICS_update (plugin->env->stats,
2476                                     "# UDP, unfragmented msgs, bytes, sent, timeout",
2477                                     udpw->payload_size, GNUNET_NO);
2478           /* Not fragmented message */
2479           LOG (GNUNET_ERROR_TYPE_DEBUG,
2480                "Message for peer `%s' with size %u timed out\n",
2481                GNUNET_i2s(&udpw->session->target), udpw->payload_size);
2482           call_continuation (udpw, GNUNET_SYSERR);
2483           /* Remove message */
2484           dequeue (plugin, udpw);
2485           GNUNET_free (udpw);
2486           break;
2487         case MSG_FRAGMENTED:
2488           /* Fragmented message */
2489           GNUNET_STATISTICS_update (plugin->env->stats,
2490                                     "# UDP, total, bytes, sent, timeout",
2491                                     udpw->frag_ctx->on_wire_size, GNUNET_NO);
2492           GNUNET_STATISTICS_update (plugin->env->stats,
2493                                     "# UDP, total, messages, sent, timeout",
2494                                     1, GNUNET_NO);
2495           call_continuation (udpw, GNUNET_SYSERR);
2496           LOG (GNUNET_ERROR_TYPE_DEBUG,
2497                "Fragment for message for peer `%s' with size %u timed out\n",
2498                GNUNET_i2s(&udpw->session->target), udpw->frag_ctx->payload_size);
2499
2500
2501           GNUNET_STATISTICS_update (plugin->env->stats,
2502                                     "# UDP, fragmented msgs, messages, sent, timeout",
2503                                     1, GNUNET_NO);
2504           GNUNET_STATISTICS_update (plugin->env->stats,
2505                                     "# UDP, fragmented msgs, bytes, sent, timeout",
2506                                     udpw->frag_ctx->payload_size, GNUNET_NO);
2507           /* Remove fragmented message due to timeout */
2508           fragmented_message_done (udpw->frag_ctx, GNUNET_SYSERR);
2509           break;
2510         case MSG_ACK:
2511           GNUNET_STATISTICS_update (plugin->env->stats,
2512                                     "# UDP, total, bytes, sent, timeout",
2513                                     udpw->msg_size, GNUNET_NO);
2514           GNUNET_STATISTICS_update (plugin->env->stats,
2515                                     "# UDP, total, messages, sent, timeout",
2516                                     1, GNUNET_NO);
2517           LOG (GNUNET_ERROR_TYPE_DEBUG,
2518                "ACK Message for peer `%s' with size %u timed out\n",
2519                GNUNET_i2s(&udpw->session->target), udpw->payload_size);
2520           call_continuation (udpw, GNUNET_SYSERR);
2521           dequeue (plugin, udpw);
2522           GNUNET_free (udpw);
2523           break;
2524         default:
2525           break;
2526       }
2527       if (sock == plugin->sockv4)
2528         udpw = plugin->ipv4_queue_head;
2529       else if (sock == plugin->sockv6)
2530         udpw = plugin->ipv6_queue_head;
2531       else
2532       {
2533         GNUNET_break (0); /* should never happen */
2534         udpw = NULL;
2535       }
2536       GNUNET_STATISTICS_update (plugin->env->stats,
2537                                 "# messages dismissed due to timeout",
2538                                 1, GNUNET_NO);
2539     }
2540     else
2541     {
2542       /* Message did not time out, check flow delay */
2543       remaining = GNUNET_TIME_absolute_get_remaining (udpw->session->flow_delay_from_other_peer);
2544       if (GNUNET_TIME_UNIT_ZERO.rel_value_us == remaining.rel_value_us)
2545       {
2546         /* this message is not delayed */
2547         LOG (GNUNET_ERROR_TYPE_DEBUG, 
2548              "Message for peer `%s' (%u bytes) is not delayed \n",
2549              GNUNET_i2s(&udpw->session->target), udpw->payload_size);
2550         break; /* Found message to send, break */
2551       }
2552       else
2553       {
2554         /* Message is delayed, try next */
2555         LOG (GNUNET_ERROR_TYPE_DEBUG,
2556              "Message for peer `%s' (%u bytes) is delayed for %s\n",
2557              GNUNET_i2s(&udpw->session->target), udpw->payload_size, 
2558              GNUNET_STRINGS_relative_time_to_string (remaining,
2559                                                      GNUNET_YES));
2560         udpw = udpw->next;
2561       }
2562     }
2563   }
2564   return udpw;
2565 }
2566
2567
2568 static void
2569 analyze_send_error (struct Plugin *plugin,
2570                     const struct sockaddr * sa,
2571                     socklen_t slen,
2572                     int error)
2573 {
2574   static int network_down_error;
2575   struct GNUNET_ATS_Information type;
2576
2577  type = plugin->env->get_address_type (plugin->env->cls,sa, slen);
2578  if (((GNUNET_ATS_NET_LAN == ntohl(type.value)) || (GNUNET_ATS_NET_WAN == ntohl(type.value))) &&
2579      ((ENETUNREACH == errno) || (ENETDOWN == errno)))
2580  {
2581    if ((network_down_error == GNUNET_NO) && (slen == sizeof (struct sockaddr_in)))
2582    {
2583      /* IPv4: "Network unreachable" or "Network down"
2584       *
2585       * This indicates we do not have connectivity
2586       */
2587      LOG (GNUNET_ERROR_TYPE_WARNING | GNUNET_ERROR_TYPE_BULK,
2588          _("UDP could not transmit message to `%s': "
2589            "Network seems down, please check your network configuration\n"),
2590          GNUNET_a2s (sa, slen));
2591    }
2592    if ((network_down_error == GNUNET_NO) && (slen == sizeof (struct sockaddr_in6)))
2593    {
2594      /* IPv6: "Network unreachable" or "Network down"
2595       *
2596       * This indicates that this system is IPv6 enabled, but does not
2597       * have a valid global IPv6 address assigned or we do not have
2598       * connectivity
2599       */
2600
2601     LOG (GNUNET_ERROR_TYPE_WARNING | GNUNET_ERROR_TYPE_BULK,
2602         _("UDP could not transmit message to `%s': "
2603           "Please check your network configuration and disable IPv6 if your "
2604           "connection does not have a global IPv6 address\n"),
2605         GNUNET_a2s (sa, slen));
2606    }
2607  }
2608  else
2609  {
2610    LOG (GNUNET_ERROR_TYPE_WARNING,
2611       "UDP could not transmit message to `%s': `%s'\n",
2612       GNUNET_a2s (sa, slen), STRERROR (error));
2613  }
2614 }
2615
2616
2617 static size_t
2618 udp_select_send (struct Plugin *plugin, struct GNUNET_NETWORK_Handle *sock)
2619 {
2620   const struct sockaddr * sa;
2621   ssize_t sent;
2622   socklen_t slen;
2623
2624   struct UDP_MessageWrapper *udpw = NULL;
2625
2626   /* Find message to send */
2627   udpw = remove_timeout_messages_and_select ((sock == plugin->sockv4) ? plugin->ipv4_queue_head : plugin->ipv6_queue_head,
2628                                              sock);
2629   if (NULL == udpw)
2630     return 0; /* No message to send */
2631
2632   sa = udpw->session->sock_addr;
2633   slen = udpw->session->addrlen;
2634
2635   sent = GNUNET_NETWORK_socket_sendto (sock, udpw->msg_buf, udpw->msg_size, sa, slen);
2636
2637   if (GNUNET_SYSERR == sent)
2638   {
2639     /* Failure */
2640     analyze_send_error (plugin, sa, slen, errno);
2641     call_continuation(udpw, GNUNET_SYSERR);
2642     GNUNET_STATISTICS_update (plugin->env->stats,
2643                             "# UDP, total, bytes, sent, failure",
2644                             sent, GNUNET_NO);
2645     GNUNET_STATISTICS_update (plugin->env->stats,
2646                               "# UDP, total, messages, sent, failure",
2647                               1, GNUNET_NO);
2648   }
2649   else
2650   {
2651     /* Success */
2652     LOG (GNUNET_ERROR_TYPE_DEBUG,
2653          "UDP transmitted %u-byte message to  `%s' `%s' (%d: %s)\n",
2654          (unsigned int) (udpw->msg_size), GNUNET_i2s(&udpw->session->target) ,GNUNET_a2s (sa, slen), (int) sent,
2655          (sent < 0) ? STRERROR (errno) : "ok");
2656     GNUNET_STATISTICS_update (plugin->env->stats,
2657                               "# UDP, total, bytes, sent, success",
2658                               sent, GNUNET_NO);
2659     GNUNET_STATISTICS_update (plugin->env->stats,
2660                               "# UDP, total, messages, sent, success",
2661                               1, GNUNET_NO);
2662     if (NULL != udpw->frag_ctx)
2663         udpw->frag_ctx->on_wire_size += udpw->msg_size;
2664     call_continuation (udpw, GNUNET_OK);
2665   }
2666   dequeue (plugin, udpw);
2667   GNUNET_free (udpw);
2668   udpw = NULL;
2669
2670   return sent;
2671 }
2672
2673
2674 /**
2675  * We have been notified that our readset has something to read.  We don't
2676  * know which socket needs to be read, so we have to check each one
2677  * Then reschedule this function to be called again once more is available.
2678  *
2679  * @param cls the plugin handle
2680  * @param tc the scheduling context (for rescheduling this function again)
2681  */
2682 static void
2683 udp_plugin_select (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
2684 {
2685   struct Plugin *plugin = cls;
2686
2687   plugin->select_task = GNUNET_SCHEDULER_NO_TASK;
2688   if (0 != (tc->reason & GNUNET_SCHEDULER_REASON_SHUTDOWN))
2689     return;
2690   if ( (0 != (tc->reason & GNUNET_SCHEDULER_REASON_READ_READY)) &&
2691        (NULL != plugin->sockv4) &&
2692        (GNUNET_NETWORK_fdset_isset (tc->read_ready, plugin->sockv4)) )
2693     udp_select_read (plugin, plugin->sockv4);
2694   if ( (0 != (tc->reason & GNUNET_SCHEDULER_REASON_WRITE_READY)) &&
2695        (NULL != plugin->sockv4) && 
2696        (NULL != plugin->ipv4_queue_head) &&
2697        (GNUNET_NETWORK_fdset_isset (tc->write_ready, plugin->sockv4)) )
2698     udp_select_send (plugin, plugin->sockv4);   
2699   schedule_select (plugin);
2700 }
2701
2702
2703 /**
2704  * We have been notified that our readset has something to read.  We don't
2705  * know which socket needs to be read, so we have to check each one
2706  * Then reschedule this function to be called again once more is available.
2707  *
2708  * @param cls the plugin handle
2709  * @param tc the scheduling context (for rescheduling this function again)
2710  */
2711 static void
2712 udp_plugin_select_v6 (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
2713 {
2714   struct Plugin *plugin = cls;
2715
2716   plugin->select_task_v6 = GNUNET_SCHEDULER_NO_TASK;
2717   if (0 != (tc->reason & GNUNET_SCHEDULER_REASON_SHUTDOWN))
2718     return;
2719   if ( ((tc->reason & GNUNET_SCHEDULER_REASON_READ_READY) != 0) &&
2720        (NULL != plugin->sockv6) &&
2721        (GNUNET_NETWORK_fdset_isset (tc->read_ready, plugin->sockv6)) )
2722     udp_select_read (plugin, plugin->sockv6);
2723   if ( (0 != (tc->reason & GNUNET_SCHEDULER_REASON_WRITE_READY)) &&
2724        (NULL != plugin->sockv6) && (plugin->ipv6_queue_head != NULL) &&
2725        (GNUNET_NETWORK_fdset_isset (tc->write_ready, plugin->sockv6)) )    
2726     udp_select_send (plugin, plugin->sockv6);
2727   schedule_select (plugin);
2728 }
2729
2730
2731 /**
2732  *
2733  * @return number of sockets that were successfully bound
2734  */
2735 static int
2736 setup_sockets (struct Plugin *plugin, 
2737                const struct sockaddr_in6 *bind_v6,
2738                const struct sockaddr_in *bind_v4)
2739 {
2740   int tries;
2741   int sockets_created = 0;
2742   struct sockaddr_in6 serverAddrv6;
2743   struct sockaddr_in serverAddrv4;
2744   struct sockaddr *serverAddr;
2745   struct sockaddr *addrs[2];
2746   socklen_t addrlens[2];
2747   socklen_t addrlen;
2748   int eno;
2749
2750   /* Create IPv6 socket */
2751   eno = EINVAL;
2752   if (plugin->enable_ipv6 == GNUNET_YES)
2753   {
2754     plugin->sockv6 = GNUNET_NETWORK_socket_create (PF_INET6, SOCK_DGRAM, 0);
2755     if (NULL == plugin->sockv6)
2756     {
2757         GNUNET_log_strerror (GNUNET_ERROR_TYPE_WARNING, "socket");
2758       LOG (GNUNET_ERROR_TYPE_WARNING, "Disabling IPv6 since it is not supported on this system!\n");
2759       plugin->enable_ipv6 = GNUNET_NO;
2760     }
2761     else
2762     {
2763         memset (&serverAddrv6, '\0', sizeof (struct sockaddr_in6));
2764 #if HAVE_SOCKADDR_IN_SIN_LEN
2765       serverAddrv6.sin6_len = sizeof (struct sockaddr_in6);
2766 #endif
2767       serverAddrv6.sin6_family = AF_INET6;
2768       if (NULL != bind_v6)
2769         serverAddrv6.sin6_addr = bind_v6->sin6_addr;
2770       else
2771         serverAddrv6.sin6_addr = in6addr_any;
2772
2773       if (0 == plugin->port) /* autodetect */
2774                 serverAddrv6.sin6_port = htons (GNUNET_CRYPTO_random_u32 (GNUNET_CRYPTO_QUALITY_STRONG, 33537) + 32000);
2775       else
2776                 serverAddrv6.sin6_port = htons (plugin->port);
2777       addrlen = sizeof (struct sockaddr_in6);
2778       serverAddr = (struct sockaddr *) &serverAddrv6;
2779
2780       tries = 0;
2781       while (tries < 10)
2782       {
2783                 LOG (GNUNET_ERROR_TYPE_DEBUG, "Binding to IPv6 `%s'\n",
2784                                  GNUNET_a2s (serverAddr, addrlen));
2785                 /* binding */
2786                 if (GNUNET_OK == GNUNET_NETWORK_socket_bind (plugin->sockv6,
2787                                                              serverAddr, addrlen, 0))
2788                         break;
2789                 eno = errno;
2790                 if (0 != plugin->port)
2791                 {
2792                                 tries = 10; /* fail */
2793                                 break; /* bind failed on specific port */
2794                 }
2795                 /* autodetect */
2796                 serverAddrv6.sin6_port = htons (GNUNET_CRYPTO_random_u32 (GNUNET_CRYPTO_QUALITY_STRONG, 33537) + 32000);
2797                 tries ++;
2798       }
2799       if (tries >= 10)
2800       {
2801         GNUNET_NETWORK_socket_close (plugin->sockv6);
2802         plugin->enable_ipv6 = GNUNET_NO;
2803         plugin->sockv6 = NULL;
2804       }
2805
2806       if (plugin->sockv6 != NULL)
2807       {
2808         LOG (GNUNET_ERROR_TYPE_DEBUG,
2809              "IPv6 socket created on port %s\n",
2810              GNUNET_a2s (serverAddr, addrlen));
2811         addrs[sockets_created] = (struct sockaddr *) &serverAddrv6;
2812         addrlens[sockets_created] = sizeof (struct sockaddr_in6);
2813         sockets_created++;
2814       }
2815       else
2816       {
2817           LOG (GNUNET_ERROR_TYPE_ERROR,
2818                "Failed to bind UDP socket to %s: %s\n",
2819                GNUNET_a2s (serverAddr, addrlen),
2820                STRERROR (eno));
2821       }
2822     }
2823   }
2824
2825   /* Create IPv4 socket */
2826   eno = EINVAL;
2827   plugin->sockv4 = GNUNET_NETWORK_socket_create (PF_INET, SOCK_DGRAM, 0);
2828   if (NULL == plugin->sockv4)
2829   {
2830     GNUNET_log_strerror (GNUNET_ERROR_TYPE_WARNING, "socket");
2831     LOG (GNUNET_ERROR_TYPE_WARNING, "Disabling IPv4 since it is not supported on this system!\n");
2832     plugin->enable_ipv4 = GNUNET_NO;
2833   }
2834   else
2835   {
2836     memset (&serverAddrv4, '\0', sizeof (struct sockaddr_in));
2837 #if HAVE_SOCKADDR_IN_SIN_LEN
2838     serverAddrv4.sin_len = sizeof (struct sockaddr_in);
2839 #endif
2840     serverAddrv4.sin_family = AF_INET;
2841     if (NULL != bind_v4)
2842       serverAddrv4.sin_addr = bind_v4->sin_addr;
2843     else
2844       serverAddrv4.sin_addr.s_addr = INADDR_ANY;
2845     
2846     if (0 == plugin->port)
2847       /* autodetect */
2848       serverAddrv4.sin_port = htons (GNUNET_CRYPTO_random_u32 (GNUNET_CRYPTO_QUALITY_STRONG, 33537) + 32000);
2849     else
2850       serverAddrv4.sin_port = htons (plugin->port);
2851     
2852     
2853     addrlen = sizeof (struct sockaddr_in);
2854     serverAddr = (struct sockaddr *) &serverAddrv4;
2855     
2856     tries = 0;
2857     while (tries < 10)
2858     {
2859       LOG (GNUNET_ERROR_TYPE_DEBUG, "Binding to IPv4 `%s'\n",
2860                         GNUNET_a2s (serverAddr, addrlen));
2861       
2862       /* binding */
2863       if (GNUNET_OK == GNUNET_NETWORK_socket_bind (plugin->sockv4,
2864                                                    serverAddr, addrlen, 0))
2865                 break;
2866       eno = errno;
2867       if (0 != plugin->port)
2868       {
2869                 tries = 10; /* fail */
2870                 break; /* bind failed on specific port */
2871       }
2872       
2873       /* autodetect */
2874       serverAddrv4.sin_port = htons (GNUNET_CRYPTO_random_u32 (GNUNET_CRYPTO_QUALITY_STRONG, 33537) + 32000);
2875       tries ++;
2876     }
2877     
2878     if (tries >= 10)
2879     {
2880       GNUNET_NETWORK_socket_close (plugin->sockv4);
2881       plugin->enable_ipv4 = GNUNET_NO;
2882       plugin->sockv4 = NULL;
2883     }
2884     
2885     if (plugin->sockv4 != NULL)
2886     {
2887       LOG (GNUNET_ERROR_TYPE_DEBUG,
2888                 "IPv4 socket created on port %s\n", GNUNET_a2s (serverAddr, addrlen));
2889       addrs[sockets_created] = (struct sockaddr *) &serverAddrv4;
2890       addrlens[sockets_created] = sizeof (struct sockaddr_in);
2891       sockets_created++;
2892     }
2893     else
2894     {             
2895       LOG (GNUNET_ERROR_TYPE_ERROR,
2896                 "Failed to bind UDP socket to %s: %s\n",
2897                 GNUNET_a2s (serverAddr, addrlen), STRERROR (eno));
2898     }
2899   }
2900   
2901   if (0 == sockets_created)
2902   {
2903                 LOG (GNUNET_ERROR_TYPE_WARNING, _("Failed to open UDP sockets\n"));
2904                 return 0; /* No sockets created, return */
2905   }
2906
2907   /* Create file descriptors */
2908   if (plugin->enable_ipv4 == GNUNET_YES)
2909   {
2910                         plugin->rs_v4 = GNUNET_NETWORK_fdset_create ();
2911                         plugin->ws_v4 = GNUNET_NETWORK_fdset_create ();
2912                         GNUNET_NETWORK_fdset_zero (plugin->rs_v4);
2913                         GNUNET_NETWORK_fdset_zero (plugin->ws_v4);
2914                         if (NULL != plugin->sockv4)
2915                         {
2916                                 GNUNET_NETWORK_fdset_set (plugin->rs_v4, plugin->sockv4);
2917                                 GNUNET_NETWORK_fdset_set (plugin->ws_v4, plugin->sockv4);
2918                         }
2919   }
2920
2921   if (plugin->enable_ipv6 == GNUNET_YES)
2922   {
2923     plugin->rs_v6 = GNUNET_NETWORK_fdset_create ();
2924     plugin->ws_v6 = GNUNET_NETWORK_fdset_create ();
2925     GNUNET_NETWORK_fdset_zero (plugin->rs_v6);
2926     GNUNET_NETWORK_fdset_zero (plugin->ws_v6);
2927     if (NULL != plugin->sockv6)
2928     {
2929       GNUNET_NETWORK_fdset_set (plugin->rs_v6, plugin->sockv6);
2930       GNUNET_NETWORK_fdset_set (plugin->ws_v6, plugin->sockv6);
2931     }
2932   }
2933
2934   schedule_select (plugin);
2935   plugin->nat = GNUNET_NAT_register (plugin->env->cfg,
2936                            GNUNET_NO, plugin->port,
2937                            sockets_created,
2938                            (const struct sockaddr **) addrs, addrlens,
2939                            &udp_nat_port_map_callback, NULL, plugin);
2940
2941   return sockets_created;
2942 }
2943
2944
2945 /**
2946  * The exported method. Makes the core api available via a global and
2947  * returns the udp transport API.
2948  *
2949  * @param cls our 'struct GNUNET_TRANSPORT_PluginEnvironment'
2950  * @return our 'struct GNUNET_TRANSPORT_PluginFunctions'
2951  */
2952 void *
2953 libgnunet_plugin_transport_udp_init (void *cls)
2954 {
2955   struct GNUNET_TRANSPORT_PluginEnvironment *env = cls;
2956   struct GNUNET_TRANSPORT_PluginFunctions *api;
2957   struct Plugin *p;
2958   unsigned long long port;
2959   unsigned long long aport;
2960   unsigned long long broadcast;
2961   unsigned long long udp_max_bps;
2962   unsigned long long enable_v6;
2963   char * bind4_address;
2964   char * bind6_address;
2965   char * fancy_interval;
2966   struct GNUNET_TIME_Relative interval;
2967   struct sockaddr_in serverAddrv4;
2968   struct sockaddr_in6 serverAddrv6;
2969   int res;
2970   int have_bind4;
2971   int have_bind6;
2972
2973   if (NULL == env->receive)
2974   {
2975     /* run in 'stub' mode (i.e. as part of gnunet-peerinfo), don't fully
2976        initialze the plugin or the API */
2977     api = GNUNET_malloc (sizeof (struct GNUNET_TRANSPORT_PluginFunctions));
2978     api->cls = NULL;
2979     api->address_pretty_printer = &udp_plugin_address_pretty_printer;
2980     api->address_to_string = &udp_address_to_string;
2981     api->string_to_address = &udp_string_to_address;
2982     return api;
2983   }
2984
2985   GNUNET_assert (NULL != env->stats);
2986
2987   /* Get port number: port == 0 : autodetect a port,
2988    *                                                                                            > 0 : use this port,
2989    *                                                              not given : 2086 default */
2990   if (GNUNET_OK !=
2991       GNUNET_CONFIGURATION_get_value_number (env->cfg, "transport-udp", "PORT",
2992                                              &port))
2993     port = 2086;
2994   if (GNUNET_OK !=
2995       GNUNET_CONFIGURATION_get_value_number (env->cfg, "transport-udp",
2996                                              "ADVERTISED_PORT", &aport))
2997     aport = port;
2998   if (port > 65535)
2999   {
3000     LOG (GNUNET_ERROR_TYPE_WARNING,
3001          _("Given `%s' option is out of range: %llu > %u\n"), "PORT", port,
3002          65535);
3003     return NULL;
3004   }
3005
3006   /* Protocols */
3007   if ((GNUNET_YES ==
3008        GNUNET_CONFIGURATION_get_value_yesno (env->cfg, "nat",
3009                                              "DISABLEV6")))
3010     enable_v6 = GNUNET_NO;
3011   else
3012     enable_v6 = GNUNET_YES;
3013
3014   /* Addresses */
3015   have_bind4 = GNUNET_NO;
3016   memset (&serverAddrv4, 0, sizeof (serverAddrv4));
3017   if (GNUNET_YES ==
3018       GNUNET_CONFIGURATION_get_value_string (env->cfg, "transport-udp",
3019                                              "BINDTO", &bind4_address))
3020   {
3021     LOG (GNUNET_ERROR_TYPE_DEBUG,
3022          "Binding udp plugin to specific address: `%s'\n",
3023          bind4_address);
3024     if (1 != inet_pton (AF_INET, bind4_address, &serverAddrv4.sin_addr))
3025     {
3026       GNUNET_free (bind4_address);
3027       return NULL;
3028     }
3029     have_bind4 = GNUNET_YES;
3030   }
3031   GNUNET_free_non_null (bind4_address);
3032   have_bind6 = GNUNET_NO;
3033   memset (&serverAddrv6, 0, sizeof (serverAddrv6));
3034   if (GNUNET_YES ==
3035       GNUNET_CONFIGURATION_get_value_string (env->cfg, "transport-udp",
3036                                              "BINDTO6", &bind6_address))
3037   {
3038     LOG (GNUNET_ERROR_TYPE_DEBUG,
3039          "Binding udp plugin to specific address: `%s'\n",
3040          bind6_address);
3041     if (1 !=
3042         inet_pton (AF_INET6, bind6_address, &serverAddrv6.sin6_addr))
3043     {
3044       LOG (GNUNET_ERROR_TYPE_ERROR, _("Invalid IPv6 address: `%s'\n"),
3045            bind6_address);
3046       GNUNET_free (bind6_address);
3047       return NULL;
3048     }
3049     have_bind6 = GNUNET_YES;
3050   }
3051   GNUNET_free_non_null (bind6_address);
3052
3053   /* Initialize my flags */
3054   myoptions = 0;
3055
3056   /* Enable neighbour discovery */
3057   broadcast = GNUNET_CONFIGURATION_get_value_yesno (env->cfg, "transport-udp",
3058                                             "BROADCAST");
3059   if (broadcast == GNUNET_SYSERR)
3060     broadcast = GNUNET_NO;
3061
3062   if (GNUNET_SYSERR == GNUNET_CONFIGURATION_get_value_string (env->cfg, "transport-udp",
3063                                            "BROADCAST_INTERVAL", &fancy_interval))
3064   {
3065     interval = GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_SECONDS, 10);
3066   }
3067   else
3068   {
3069      if (GNUNET_SYSERR == GNUNET_STRINGS_fancy_time_to_relative(fancy_interval, &interval))
3070      {
3071        interval = GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_SECONDS, 30);
3072      }
3073      GNUNET_free (fancy_interval);
3074   }
3075
3076   /* Maximum datarate */
3077   if (GNUNET_OK != GNUNET_CONFIGURATION_get_value_number (env->cfg, "transport-udp",
3078                                              "MAX_BPS", &udp_max_bps))
3079   {
3080     udp_max_bps = 1024 * 1024 * 50;     /* 50 MB/s == infinity for practical purposes */
3081   }
3082
3083   p = GNUNET_malloc (sizeof (struct Plugin));
3084   p->port = port;
3085   p->aport = aport;
3086   p->broadcast_interval = interval;
3087   p->enable_ipv6 = enable_v6;
3088   p->enable_ipv4 = GNUNET_YES; /* default */
3089   p->env = env;
3090   p->sessions = GNUNET_CONTAINER_multihashmap_create (10, GNUNET_NO);
3091   p->defrag_ctxs = GNUNET_CONTAINER_heap_create (GNUNET_CONTAINER_HEAP_ORDER_MIN);
3092   p->mst = GNUNET_SERVER_mst_create (&process_inbound_tokenized_messages, p);
3093   GNUNET_BANDWIDTH_tracker_init (&p->tracker,
3094                                  GNUNET_BANDWIDTH_value_init ((uint32_t)udp_max_bps), 30);
3095   plugin = p;
3096
3097   LOG (GNUNET_ERROR_TYPE_DEBUG, "Setting up sockets\n");
3098   res = setup_sockets (p, (GNUNET_YES == have_bind6) ? &serverAddrv6 : NULL,
3099                                                                                 (GNUNET_YES == have_bind4) ? &serverAddrv4 : NULL);
3100   if ((res == 0) || ((p->sockv4 == NULL) && (p->sockv6 == NULL)))
3101   {
3102     LOG (GNUNET_ERROR_TYPE_ERROR,
3103          _("Failed to create network sockets, plugin failed\n"));
3104     GNUNET_CONTAINER_multihashmap_destroy (p->sessions);
3105     GNUNET_CONTAINER_heap_destroy (p->defrag_ctxs);
3106     GNUNET_SERVER_mst_destroy (p->mst);
3107     GNUNET_free (p);
3108     return NULL;
3109   }
3110   else if (broadcast == GNUNET_YES)
3111   {
3112     LOG (GNUNET_ERROR_TYPE_DEBUG, "Starting broadcasting\n");
3113     setup_broadcast (p, &serverAddrv6, &serverAddrv4);
3114   }
3115
3116   api = GNUNET_malloc (sizeof (struct GNUNET_TRANSPORT_PluginFunctions));
3117   api->cls = p;
3118   api->send = NULL;
3119   api->disconnect = &udp_disconnect;
3120   api->address_pretty_printer = &udp_plugin_address_pretty_printer;
3121   api->address_to_string = &udp_address_to_string;
3122   api->string_to_address = &udp_string_to_address;
3123   api->check_address = &udp_plugin_check_address;
3124   api->get_session = &udp_plugin_get_session;
3125   api->send = &udp_plugin_send;
3126   api->get_network = &udp_get_network;
3127
3128   return api;
3129 }
3130
3131
3132 static int
3133 heap_cleanup_iterator (void *cls,
3134                        struct GNUNET_CONTAINER_HeapNode *
3135                        node, void *element,
3136                        GNUNET_CONTAINER_HeapCostType
3137                        cost)
3138 {
3139   struct DefragContext * d_ctx = element;
3140
3141   GNUNET_CONTAINER_heap_remove_node (node);
3142   GNUNET_DEFRAGMENT_context_destroy(d_ctx->defrag);
3143   GNUNET_free (d_ctx);
3144
3145   return GNUNET_YES;
3146 }
3147
3148
3149 /**
3150  * The exported method. Makes the core api available via a global and
3151  * returns the udp transport API.
3152  *
3153  * @param cls our 'struct GNUNET_TRANSPORT_PluginEnvironment'
3154  * @return NULL
3155  */
3156 void *
3157 libgnunet_plugin_transport_udp_done (void *cls)
3158 {
3159   struct GNUNET_TRANSPORT_PluginFunctions *api = cls;
3160   struct Plugin *plugin = api->cls;
3161   struct PrettyPrinterContext *cur;
3162   struct PrettyPrinterContext *next;
3163
3164   if (NULL == plugin)
3165   {
3166     GNUNET_free (api);
3167     return NULL;
3168   }
3169
3170   stop_broadcast (plugin);
3171   if (plugin->select_task != GNUNET_SCHEDULER_NO_TASK)
3172   {
3173     GNUNET_SCHEDULER_cancel (plugin->select_task);
3174     plugin->select_task = GNUNET_SCHEDULER_NO_TASK;
3175   }
3176   if (plugin->select_task_v6 != GNUNET_SCHEDULER_NO_TASK)
3177   {
3178     GNUNET_SCHEDULER_cancel (plugin->select_task_v6);
3179     plugin->select_task_v6 = GNUNET_SCHEDULER_NO_TASK;
3180   }
3181
3182   /* Closing sockets */
3183   if (GNUNET_YES ==plugin->enable_ipv4)
3184   {
3185                 if (plugin->sockv4 != NULL)
3186                 {
3187                         GNUNET_break (GNUNET_OK == GNUNET_NETWORK_socket_close (plugin->sockv4));
3188                         plugin->sockv4 = NULL;
3189                 }
3190                 GNUNET_NETWORK_fdset_destroy (plugin->rs_v4);
3191                 GNUNET_NETWORK_fdset_destroy (plugin->ws_v4);
3192   }
3193   if (GNUNET_YES ==plugin->enable_ipv6)
3194   {
3195                 if (plugin->sockv6 != NULL)
3196                 {
3197                         GNUNET_break (GNUNET_OK == GNUNET_NETWORK_socket_close (plugin->sockv6));
3198                         plugin->sockv6 = NULL;
3199
3200                         GNUNET_NETWORK_fdset_destroy (plugin->rs_v6);
3201                         GNUNET_NETWORK_fdset_destroy (plugin->ws_v6);
3202                 }
3203   }
3204   if (NULL != plugin->nat)
3205         GNUNET_NAT_unregister (plugin->nat);
3206
3207   if (plugin->defrag_ctxs != NULL)
3208   {
3209     GNUNET_CONTAINER_heap_iterate(plugin->defrag_ctxs,
3210         heap_cleanup_iterator, NULL);
3211     GNUNET_CONTAINER_heap_destroy(plugin->defrag_ctxs);
3212     plugin->defrag_ctxs = NULL;
3213   }
3214   if (plugin->mst != NULL)
3215   {
3216     GNUNET_SERVER_mst_destroy(plugin->mst);
3217     plugin->mst = NULL;
3218   }
3219
3220   /* Clean up leftover messages */
3221   struct UDP_MessageWrapper * udpw;
3222   udpw = plugin->ipv4_queue_head;
3223   while (udpw != NULL)
3224   {
3225     struct UDP_MessageWrapper *tmp = udpw->next;
3226     dequeue (plugin, udpw);
3227     call_continuation(udpw, GNUNET_SYSERR);
3228     GNUNET_free (udpw);
3229
3230     udpw = tmp;
3231   }
3232   udpw = plugin->ipv6_queue_head;
3233   while (udpw != NULL)
3234   {
3235     struct UDP_MessageWrapper *tmp = udpw->next;
3236     dequeue (plugin, udpw);
3237     call_continuation(udpw, GNUNET_SYSERR);
3238     GNUNET_free (udpw);
3239
3240     udpw = tmp;
3241   }
3242
3243   /* Clean up sessions */
3244   LOG (GNUNET_ERROR_TYPE_DEBUG,
3245        "Cleaning up sessions\n");
3246   GNUNET_CONTAINER_multihashmap_iterate (plugin->sessions, &disconnect_and_free_it, plugin);
3247   GNUNET_CONTAINER_multihashmap_destroy (plugin->sessions);
3248
3249   next = ppc_dll_head;
3250   for (cur = next; NULL != cur; cur = next)
3251   {
3252         next = cur->next;
3253         GNUNET_CONTAINER_DLL_remove (ppc_dll_head, ppc_dll_tail, cur);
3254         GNUNET_RESOLVER_request_cancel (cur->resolver_handle);
3255         GNUNET_SCHEDULER_cancel (cur->timeout_task);
3256         GNUNET_free (cur);
3257         GNUNET_break (0);
3258   }
3259
3260   plugin->nat = NULL;
3261   GNUNET_free (plugin);
3262   GNUNET_free (api);
3263 #if DEBUG_MALLOC
3264   struct Allocation *allocation;
3265   while (NULL != ahead)
3266   {
3267       allocation = ahead;
3268       GNUNET_CONTAINER_DLL_remove (ahead, atail, allocation);
3269       GNUNET_free (allocation);
3270   }
3271   struct Allocator *allocator;
3272   while (NULL != aehead)
3273   {
3274       allocator = aehead;
3275       GNUNET_CONTAINER_DLL_remove (aehead, aetail, allocator);
3276       GNUNET_free (allocator);
3277   }
3278 #endif
3279   return NULL;
3280 }
3281
3282
3283 /* end of plugin_transport_udp.c */