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