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