first implementation of NAT punching for TCP transport plugin... doubt that it works...
[oweals/gnunet.git] / src / transport / plugin_transport_udp.c
1 /*
2      This file is part of GNUnet
3      (C) 2010 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 2, 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 NAT punching
24  *        transport service
25  * @author Christian Grothoff
26  * @author Nathan Evans
27  *
28  * The idea with this transport is to connect gnunet peers to each other
29  * when ONE is behind a NAT.  This is based on pwnat (http://samy.pl/pwnat)
30  * created by Samy Kamkar.  When configured with the PWNAT options, this
31  * transport will start a server daemon which sends dummy ICMP and UDP
32  * messages out to a predefined address (typically 1.2.3.4).
33  *
34  * When a non-NAT'd peer (the client) learns of the NAT'd peer (the server)
35  * address, it will send ICMP RESPONSES to the NAT'd peers external address.
36  * The NAT box should forward these faked responses to the server, which
37  * can then connect directly to the non-NAT'd peer.
38  */
39
40 #include "platform.h"
41 #include "gnunet_hello_lib.h"
42 #include "gnunet_connection_lib.h"
43 #include "gnunet_os_lib.h"
44 #include "gnunet_peerinfo_service.h"
45 #include "gnunet_protocols.h"
46 #include "gnunet_resolver_service.h"
47 #include "gnunet_server_lib.h"
48 #include "gnunet_service_lib.h"
49 #include "gnunet_signatures.h"
50 #include "gnunet_statistics_service.h"
51 #include "gnunet_transport_service.h"
52 #include "plugin_transport.h"
53 #include "transport.h"
54
55 #define DEBUG_UDP GNUNET_YES
56
57 #define MAX_PROBES 20
58
59 /*
60  * Transport cost to peer, always 1 for UDP (direct connection)
61  */
62 #define UDP_DIRECT_DISTANCE 1
63
64 /**
65  * Handle for request of hostname resolution, non-NULL if pending.
66  */
67 static struct GNUNET_RESOLVER_RequestHandle *hostname_dns;
68
69 /**
70  * How long until we give up on transmitting the welcome message?
71  */
72 #define HOSTNAME_RESOLVE_TIMEOUT GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_SECONDS, 5)
73
74 /**
75  * Starting port for listening and sending, eventually a config value
76  */
77 #define UDP_NAT_DEFAULT_PORT 22086
78
79 /**
80  * UDP Message-Packet header.
81  */
82 struct UDPMessage
83 {
84   /**
85    * Message header.
86    */
87   struct GNUNET_MessageHeader header;
88
89   /**
90    * What is the identity of the sender (GNUNET_hash of public key)
91    */
92   struct GNUNET_PeerIdentity sender;
93
94 };
95
96
97 /* Forward definition */
98 struct Plugin;
99
100 struct PrettyPrinterContext
101 {
102   GNUNET_TRANSPORT_AddressStringCallback asc;
103   void *asc_cls;
104   uint16_t port;
105 };
106
107 struct MessageQueue
108 {
109   /**
110    * Linked List
111    */
112   struct MessageQueue *next;
113
114   /**
115    * Session this message belongs to
116    */
117   struct PeerSession *session;
118
119   /**
120    * Actual message to be sent
121    */
122   char *msgbuf;
123
124   /**
125    * Size of message buffer to be sent
126    */
127   size_t msgbuf_size;
128
129   /**
130    * When to discard this message
131    */
132   struct GNUNET_TIME_Absolute timeout;
133
134   /**
135    * Continuation to call when this message goes out
136    */
137   GNUNET_TRANSPORT_TransmitContinuation cont;
138
139   /**
140    * closure for continuation
141    */
142   void *cont_cls;
143
144 };
145
146 /**
147  * UDP NAT Probe message definition
148  */
149 struct UDP_NAT_ProbeMessage
150 {
151   /**
152    * Message header
153    */
154   struct GNUNET_MessageHeader header;
155
156 };
157
158 /**
159  * UDP NAT Probe message reply definition
160  */
161 struct UDP_NAT_ProbeMessageReply
162 {
163   /**
164    * Message header
165    */
166   struct GNUNET_MessageHeader header;
167
168 };
169
170
171 /**
172  * UDP NAT Probe message confirm definition
173  */
174 struct UDP_NAT_ProbeMessageConfirmation
175 {
176   /**
177    * Message header
178    */
179   struct GNUNET_MessageHeader header;
180
181 };
182
183
184
185 /**
186  * UDP NAT "Session"
187  */
188 struct PeerSession
189 {
190
191   /**
192    * Stored in a linked list.
193    */
194   struct PeerSession *next;
195
196   /**
197    * Pointer to the global plugin struct.
198    */
199   struct Plugin *plugin;
200
201   /**
202    * To whom are we talking to (set to our identity
203    * if we are still waiting for the welcome message)
204    */
205   struct GNUNET_PeerIdentity target;
206
207   /**
208    * Address of the other peer (either based on our 'connect'
209    * call or on our 'accept' call).
210    */
211   void *connect_addr;
212
213   /**
214    * Length of connect_addr.
215    */
216   size_t connect_alen;
217
218   /**
219    * Are we still expecting the welcome message? (GNUNET_YES/GNUNET_NO)
220    */
221   int expecting_welcome;
222
223   /**
224    * From which socket do we need to send to this peer?
225    */
226   struct GNUNET_NETWORK_Handle *sock;
227
228   /*
229    * Queue of messages for this peer, in the case that
230    * we have to await a connection...
231    */
232   struct MessageQueue *messages;
233
234 };
235
236 struct UDP_NAT_Probes
237 {
238
239   /**
240    * Linked list
241    */
242   struct UDP_NAT_Probes *next;
243
244   /**
245    * Address string that the server process returned to us
246    */
247   char *address_string;
248
249   /**
250    * Timeout for this set of probes
251    */
252   struct GNUNET_TIME_Absolute timeout;
253
254   /**
255    * Count of how many probes we've attempted
256    */
257   int count;
258
259   /**
260    * The plugin this probe belongs to
261    */
262   struct Plugin *plugin;
263
264   /**
265    * The task used to send these probes
266    */
267   GNUNET_SCHEDULER_TaskIdentifier task;
268
269   /**
270    * Network address (always ipv4)
271    */
272   struct sockaddr_in sock_addr;
273
274   /**
275    * The port to send this probe to, 0 to choose randomly
276    */
277   int port;
278
279 };
280
281
282 /**
283  * Encapsulation of all of the state of the plugin.
284  */
285 struct Plugin
286 {
287   /**
288    * Our environment.
289    */
290   struct GNUNET_TRANSPORT_PluginEnvironment *env;
291
292   /**
293    * Handle to the network service.
294    */
295   struct GNUNET_SERVICE_Context *service;
296
297   /*
298    * Session of peers with whom we are currently connected
299    */
300   struct PeerSession *sessions;
301
302   /**
303    * Handle for request of hostname resolution, non-NULL if pending.
304    */
305   struct GNUNET_RESOLVER_RequestHandle *hostname_dns;
306
307   /**
308    * ID of task used to update our addresses when one expires.
309    */
310   GNUNET_SCHEDULER_TaskIdentifier address_update_task;
311
312   /**
313    * ID of select task
314    */
315   GNUNET_SCHEDULER_TaskIdentifier select_task;
316
317   /**
318    * Port to listen on.
319    */
320   uint16_t port;
321
322   /**
323    * The external address given to us by the user.  Must be actual
324    * outside visible address for NAT punching to work.
325    */
326   char *external_address;
327
328   /**
329    * The internal address given to us by the user (or discovered).
330    */
331   char *internal_address;
332
333   /*
334    * FD Read set
335    */
336   struct GNUNET_NETWORK_FDSet *rs;
337
338   /*
339    * stdout pipe handle for the gnunet-nat-server process
340    */
341   struct GNUNET_DISK_PipeHandle *server_stdout;
342
343   /*
344    * stdout file handle (for reading) for the gnunet-nat-server process
345    */
346   const struct GNUNET_DISK_FileHandle *server_stdout_handle;
347
348   /**
349    * ID of select gnunet-nat-server stdout read task
350    */
351   GNUNET_SCHEDULER_TaskIdentifier server_read_task;
352
353   /**
354    * Is this transport configured to be behind a NAT?
355    */
356   int behind_nat;
357
358   /**
359    * Is this transport configured to allow connections to NAT'd peers?
360    */
361   int allow_nat;
362
363   /**
364    * The process id of the server process (if behind NAT)
365    */
366   pid_t server_pid;
367
368   /**
369    * Probes in flight
370    */
371   struct UDP_NAT_Probes *probes;
372
373 };
374
375
376 struct UDP_Sock_Info
377 {
378   /* The network handle */
379   struct GNUNET_NETWORK_Handle *desc;
380
381   /* The port we bound to */
382   int port;
383 };
384
385 /* *********** globals ************* */
386
387 /**
388  * the socket that we transmit all data with
389  */
390 static struct UDP_Sock_Info udp_sock;
391
392
393 /**
394  * Forward declaration.
395  */
396 void
397 udp_probe_continuation (void *cls, const struct GNUNET_PeerIdentity *target, int result);
398
399
400 /**
401  * Disconnect from a remote node.  Clean up session if we have one for this peer
402  *
403  * @param cls closure for this call (should be handle to Plugin)
404  * @param target the peeridentity of the peer to disconnect
405  * @return GNUNET_OK on success, GNUNET_SYSERR if the operation failed
406  */
407 void
408 udp_disconnect (void *cls, const struct GNUNET_PeerIdentity *target)
409 {
410   /** TODO: Implement! */
411   return;
412 }
413
414 /**
415  * Shutdown the server process (stop receiving inbound traffic). Maybe
416  * restarted later!
417  *
418  * @param cls Handle to the plugin for this transport
419  *
420  * @return returns the number of sockets successfully closed,
421  *         should equal the number of sockets successfully opened
422  */
423 static int
424 udp_transport_server_stop (void *cls)
425 {
426   struct Plugin *plugin = cls;
427   int ret;
428   int ok;
429
430   ret = 0;
431   if (plugin->select_task != GNUNET_SCHEDULER_NO_TASK)
432     {
433       GNUNET_SCHEDULER_cancel (plugin->env->sched, plugin->select_task);
434       plugin->select_task = GNUNET_SCHEDULER_NO_TASK;
435     }
436
437   ok = GNUNET_NETWORK_socket_close (udp_sock.desc);
438   if (ok == GNUNET_OK)
439     udp_sock.desc = NULL;
440   ret += ok;
441
442   if (plugin->behind_nat == GNUNET_YES)
443     {
444       if (0 != PLIBC_KILL (plugin->server_pid, SIGTERM))
445         {
446           GNUNET_log_strerror (GNUNET_ERROR_TYPE_WARNING, "kill");
447         }
448       GNUNET_OS_process_wait (plugin->server_pid);
449     }
450
451   if (ret != GNUNET_OK)
452     return GNUNET_SYSERR;
453   return ret;
454 }
455
456
457 struct PeerSession *
458 find_session (struct Plugin *plugin, const struct GNUNET_PeerIdentity *peer)
459 {
460   struct PeerSession *pos;
461
462   pos = plugin->sessions;
463   while (pos != NULL)
464     {
465       if (memcmp(&pos->target, peer, sizeof(struct GNUNET_PeerIdentity)) == 0)
466         return pos;
467       pos = pos->next;
468     }
469
470   return pos;
471 }
472
473
474 /**
475  * Actually send out the message, assume we've got the address and
476  * send_handle squared away!
477  *
478  * @param cls closure
479  * @param send_handle which handle to send message on
480  * @param target who should receive this message (ignored by UDP)
481  * @param msgbuf one or more GNUNET_MessageHeader(s) strung together
482  * @param msgbuf_size the size of the msgbuf to send
483  * @param priority how important is the message (ignored by UDP)
484  * @param timeout when should we time out (give up) if we can not transmit?
485  * @param addr the addr to send the message to, needs to be a sockaddr for us
486  * @param addrlen the len of addr
487  * @param cont continuation to call once the message has
488  *        been transmitted (or if the transport is ready
489  *        for the next transmission call; or if the
490  *        peer disconnected...)
491  * @param cont_cls closure for cont
492  * @return the number of bytes written
493  */
494 static ssize_t
495 udp_real_send (void *cls,
496                    struct GNUNET_NETWORK_Handle *send_handle,
497                    const struct GNUNET_PeerIdentity *target,
498                    const char *msgbuf,
499                    size_t msgbuf_size,
500                    unsigned int priority,
501                    struct GNUNET_TIME_Relative timeout,
502                    const void *addr,
503                    size_t addrlen,
504                    GNUNET_TRANSPORT_TransmitContinuation cont,
505                    void *cont_cls)
506 {
507   struct Plugin *plugin = cls;
508   struct UDPMessage *message;
509   int ssize;
510   ssize_t sent;
511
512   if ((addr == NULL) || (addrlen == 0))
513     {
514 #if DEBUG_UDP_NAT
515   GNUNET_log_from (GNUNET_ERROR_TYPE_INFO, "udp", _
516                    ("udp_plugin_send called without address, returning!\n"));
517 #endif
518       cont (cont_cls, target, GNUNET_SYSERR);
519       return 0; /* Can never send if we don't have an address!! */
520     }
521
522   /* Build the message to be sent */
523   message = GNUNET_malloc (sizeof (struct UDPMessage) + msgbuf_size);
524   ssize = sizeof (struct UDPMessage) + msgbuf_size;
525
526   message->header.size = htons (ssize);
527   message->header.type = htons (0);
528   memcpy (&message->sender, plugin->env->my_identity,
529           sizeof (struct GNUNET_PeerIdentity));
530   memcpy (&message[1], msgbuf, msgbuf_size);
531
532   /* Actually send the message */
533   sent =
534     GNUNET_NETWORK_socket_sendto (send_handle, message, ssize,
535                                   addr,
536                                   addrlen);
537
538   if (cont != NULL)
539     {
540       if (sent == GNUNET_SYSERR)
541         cont (cont_cls, target, GNUNET_SYSERR);
542       else
543         {
544           cont (cont_cls, target, GNUNET_OK);
545         }
546     }
547
548   GNUNET_free (message);
549   return sent;
550 }
551
552 /**
553  * We learned about a peer (possibly behind NAT) so run the
554  * gnunet-nat-client to send dummy ICMP responses
555  *
556  * @param plugin the plugin for this transport
557  * @param addr the address of the peer
558  * @param addrlen the length of the address
559  */
560 void
561 run_gnunet_nat_client (struct Plugin *plugin, const char *addr, size_t addrlen)
562 {
563   char inet4[INET_ADDRSTRLEN];
564   char *address_as_string;
565   char *port_as_string;
566   pid_t pid;
567   const struct sockaddr *sa = (const struct sockaddr *)addr;
568
569   if (addrlen < sizeof (struct sockaddr))
570     return;
571   switch (sa->sa_family)
572     {
573     case AF_INET:
574       if (addrlen != sizeof (struct sockaddr_in))
575         return;
576       inet_ntop (AF_INET,
577                  &((struct sockaddr_in *) sa)->sin_addr,
578                  inet4, INET_ADDRSTRLEN);
579       address_as_string = GNUNET_strdup (inet4);
580       break;
581     case AF_INET6:
582     default:
583       return;
584     }
585
586   GNUNET_asprintf(&port_as_string, "%d", plugin->port);
587 #if DEBUG_UDP_NAT
588   GNUNET_log_from (GNUNET_ERROR_TYPE_DEBUG, "udp",
589                   _("Running gnunet-nat-client with arguments: %s %s %d\n"), plugin->external_address, address_as_string, plugin->port);
590 #endif
591
592   /* Start the server process */
593   pid = GNUNET_OS_start_process(NULL, NULL, "gnunet-nat-client", "gnunet-nat-client", plugin->external_address, address_as_string, port_as_string, NULL);
594   GNUNET_free(address_as_string);
595   GNUNET_free(port_as_string);
596   GNUNET_OS_process_wait (pid);
597 }
598
599 /**
600  * Function that can be used by the transport service to transmit
601  * a message using the plugin.
602  *
603  * @param cls closure
604  * @param target who should receive this message (ignored by UDP)
605  * @param msgbuf one or more GNUNET_MessageHeader(s) strung together
606  * @param msgbuf_size the size of the msgbuf to send
607  * @param priority how important is the message (ignored by UDP)
608  * @param timeout when should we time out (give up) if we can not transmit?
609  * @param session identifier used for this session (can be NULL)
610  * @param addr the addr to send the message to, needs to be a sockaddr for us
611  * @param addrlen the len of addr
612  * @param force_address not used, we had better have an address to send to
613  *        because we are stateless!!
614  * @param cont continuation to call once the message has
615  *        been transmitted (or if the transport is ready
616  *        for the next transmission call; or if the
617  *        peer disconnected...)
618  * @param cont_cls closure for cont
619  *
620  * @return the number of bytes written (may return 0 and the message can
621  *         still be transmitted later!)
622  */
623 static ssize_t
624 udp_plugin_send (void *cls,
625                      const struct GNUNET_PeerIdentity *target,
626                      const char *msgbuf,
627                      size_t msgbuf_size,
628                      unsigned int priority,
629                      struct GNUNET_TIME_Relative timeout,
630                      struct Session *session,
631                      const void *addr,
632                      size_t addrlen,
633                      int force_address,
634                      GNUNET_TRANSPORT_TransmitContinuation cont, void *cont_cls)
635 {
636   struct Plugin *plugin = cls;
637   ssize_t sent;
638   struct MessageQueue *temp_message;
639   struct PeerSession *peer_session;
640   struct sockaddr_in *sockaddr = (struct sockaddr_in *)addr;
641   int other_peer_natd;
642
643   GNUNET_assert (NULL == session);
644   other_peer_natd = GNUNET_NO;
645   if ((sockaddr->sin_family == AF_INET) && (ntohs(sockaddr->sin_port) == 0))
646     {
647       other_peer_natd = GNUNET_YES;
648     }
649
650   sent = 0;
651
652   if ((other_peer_natd == GNUNET_YES) && (plugin->allow_nat == GNUNET_YES))
653     {
654       peer_session = find_session(plugin, target);
655       if (peer_session == NULL) /* We have a new peer to add */
656         {
657           /*
658            * The first time, we can assume we have no knowledge of a
659            * working port for this peer, call the ICMP/UDP message sender
660            * and wait...
661            */
662           peer_session = GNUNET_malloc(sizeof(struct PeerSession));
663           peer_session->connect_addr = GNUNET_malloc(addrlen);
664           memcpy(peer_session->connect_addr, addr, addrlen);
665           peer_session->connect_alen = addrlen;
666           peer_session->plugin = plugin;
667           peer_session->sock = NULL;
668           memcpy(&peer_session->target, target, sizeof(struct GNUNET_PeerIdentity));
669           peer_session->expecting_welcome = GNUNET_YES;
670
671           peer_session->next = plugin->sessions;
672           plugin->sessions = peer_session;
673
674           peer_session->messages = GNUNET_malloc(sizeof(struct MessageQueue));
675           peer_session->messages->msgbuf = GNUNET_malloc(msgbuf_size);
676           memcpy(peer_session->messages->msgbuf, msgbuf, msgbuf_size);
677           peer_session->messages->msgbuf_size = msgbuf_size;
678           peer_session->messages->next = NULL;
679           peer_session->messages->timeout = GNUNET_TIME_relative_to_absolute(timeout);
680           peer_session->messages->cont = cont;
681           peer_session->messages->cont_cls = cont_cls;
682 #if DEBUG_UDP_NAT
683           GNUNET_log_from (GNUNET_ERROR_TYPE_DEBUG, "udp",
684                           _("Other peer is NAT'd, set up peer session for peer %s\n"), GNUNET_i2s(target));
685 #endif
686           run_gnunet_nat_client(plugin, addr, addrlen);
687         }
688       else
689         {
690           if (peer_session->expecting_welcome == GNUNET_NO) /* We are "connected" */
691             {
692               sent = udp_real_send(cls, peer_session->sock, target, msgbuf, msgbuf_size, priority, timeout, peer_session->connect_addr, peer_session->connect_alen, cont, cont_cls);
693             }
694           else /* Haven't gotten a response from this peer, queue message */
695             {
696               temp_message = GNUNET_malloc(sizeof(struct MessageQueue));
697               temp_message->msgbuf = GNUNET_malloc(msgbuf_size);
698               memcpy(temp_message->msgbuf, msgbuf, msgbuf_size);
699               temp_message->msgbuf_size = msgbuf_size;
700               temp_message->timeout = GNUNET_TIME_relative_to_absolute(timeout);
701               temp_message->cont = cont;
702               temp_message->cont_cls = cont_cls;
703               temp_message->next = peer_session->messages;
704               peer_session->messages = temp_message;
705             }
706         }
707     }
708   else if (other_peer_natd == GNUNET_NO) /* Other peer not behind a NAT, so we can just send the message as is */
709     {
710       sent = udp_real_send(cls, udp_sock.desc, target, msgbuf, msgbuf_size, priority, timeout, addr, addrlen, cont, cont_cls);
711     }
712   else /* Other peer is NAT'd, but we don't want to play with them (or can't!) */
713     return GNUNET_SYSERR;
714
715   /* When GNUNET_SYSERR is returned from udp_real_send, we will still call
716    * the callback so must not return GNUNET_SYSERR!
717    * If we do, then transport context get freed twice. */
718   if (sent == GNUNET_SYSERR)
719     return 0;
720
721   return sent;
722 }
723
724
725 /**
726  * Add the IP of our network interface to the list of
727  * our external IP addresses.
728  */
729 static int
730 process_interfaces (void *cls,
731                     const char *name,
732                     int isDefault,
733                     const struct sockaddr *addr, socklen_t addrlen)
734 {
735   struct Plugin *plugin = cls;
736   int af;
737   struct sockaddr_in *v4;
738   struct sockaddr_in6 *v6;
739
740   af = addr->sa_family;
741   if (af == AF_INET)
742     {
743       v4 = (struct sockaddr_in *) addr;
744       if (plugin->behind_nat == GNUNET_YES)
745         {
746           GNUNET_assert(inet_pton(AF_INET, plugin->external_address, &v4->sin_addr) == GNUNET_OK);
747           v4->sin_port = htons (0); /* Indicates to receiver we are behind NAT */
748         }
749       else
750         v4->sin_port = htons (plugin->port);
751     }
752   else
753     {
754       GNUNET_assert (af == AF_INET6);
755       v6 = (struct sockaddr_in6 *) addr;
756       if (plugin->behind_nat == GNUNET_YES)
757         v6->sin6_port = htons (0);
758       else
759         v6->sin6_port = htons (plugin->port);
760     }
761
762     GNUNET_log_from (GNUNET_ERROR_TYPE_INFO |
763                       GNUNET_ERROR_TYPE_BULK,
764                       "udp", _("Found address `%s' (%s)\n"),
765                       GNUNET_a2s (addr, addrlen), name);
766     plugin->env->notify_address (plugin->env->cls,
767                                 "udp",
768                                 addr, addrlen, GNUNET_TIME_UNIT_FOREVER_REL);
769
770   return GNUNET_OK;
771 }
772
773
774 /**
775  * Function called by the resolver for each address obtained from DNS
776  * for our own hostname.  Add the addresses to the list of our
777  * external IP addresses.
778  *
779  * @param cls closure
780  * @param addr one of the addresses of the host, NULL for the last address
781  * @param addrlen length of the address
782  */
783 static void
784 process_hostname_ips (void *cls,
785                       const struct sockaddr *addr, socklen_t addrlen)
786 {
787   struct Plugin *plugin = cls;
788
789   if (addr == NULL)
790     {
791       plugin->hostname_dns = NULL;
792       return;
793     }
794   process_interfaces (plugin, "<hostname>", GNUNET_YES, addr, addrlen);
795 }
796
797
798 /**
799  * Send UDP probe messages or UDP keepalive messages, depending on the
800  * state of the connection.
801  *
802  * @param cls closure for this call (should be the main Plugin)
803  * @param tc task context for running this
804  */
805 static void
806 send_udp_probe_message (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
807 {
808   struct UDP_NAT_Probes *probe = cls;
809   struct UDP_NAT_ProbeMessage *message;
810   struct Plugin *plugin = probe->plugin;
811
812   message = GNUNET_malloc(sizeof(struct UDP_NAT_ProbeMessage));
813   message->header.size = htons(sizeof(struct UDP_NAT_ProbeMessage));
814   message->header.type = htons(GNUNET_MESSAGE_TYPE_TRANSPORT_UDP_NAT_PROBE);
815   /* If they gave us a port, use that.  If not, try our port. */
816   if (probe->port != 0)
817     probe->sock_addr.sin_port = htons(probe->port);
818   else
819     probe->sock_addr.sin_port = htons(plugin->port);
820
821 #if DEBUG_UDP_NAT
822       GNUNET_log_from (GNUNET_ERROR_TYPE_DEBUG, "udp",
823                       _("Sending a probe to port %d\n"), ntohs(probe->sock_addr.sin_port));
824 #endif
825
826   probe->count++;
827
828   udp_real_send(plugin, udp_sock.desc, NULL,
829                     (char *)message, ntohs(message->header.size), 0, 
830                     GNUNET_TIME_relative_get_unit(), 
831                     &probe->sock_addr, sizeof(probe->sock_addr),
832                     &udp_probe_continuation, probe);
833
834   GNUNET_free(message);
835 }
836
837
838 /**
839  * Continuation for probe sends.  If the last probe was sent
840  * "successfully", schedule sending of another one.  If not,
841  *
842  */
843 void
844 udp_probe_continuation (void *cls, const struct GNUNET_PeerIdentity *target, int result)
845 {
846   struct UDP_NAT_Probes *probe = cls;
847   struct Plugin *plugin = probe->plugin;
848
849   if ((result == GNUNET_OK) && (probe->count < MAX_PROBES))
850     {
851 #if DEBUG_UDP_NAT
852       GNUNET_log_from (GNUNET_ERROR_TYPE_DEBUG, "udp",
853                        _("Scheduling next probe for 10000 milliseconds\n"));
854 #endif
855       probe->task = GNUNET_SCHEDULER_add_delayed(plugin->env->sched, GNUNET_TIME_relative_multiply(GNUNET_TIME_UNIT_MILLISECONDS, 10000), &send_udp_probe_message, probe);
856     }
857   else /* Destroy the probe context. */
858     {
859 #if DEBUG_UDP_NAT
860       GNUNET_log_from (GNUNET_ERROR_TYPE_DEBUG, "udp",
861                       _("Sending probe didn't go well...\n"));
862 #endif
863     }
864 }
865
866 /**
867  * Find probe message by address
868  *
869  * @param plugin the plugin for this transport
870  * @param address_string the ip address as a string
871  */
872 struct UDP_NAT_Probes *
873 find_probe(struct Plugin *plugin, char * address_string)
874 {
875   struct UDP_NAT_Probes *pos;
876
877   pos = plugin->probes;
878   while (pos != NULL)
879     if (strcmp(pos->address_string, address_string) == 0)
880       return pos;
881
882   return pos;
883 }
884
885
886 /*
887  * @param cls the plugin handle
888  * @param tc the scheduling context (for rescheduling this function again)
889  *
890  * We have been notified that gnunet-nat-server has written something to stdout.
891  * Handle the output, then reschedule this function to be called again once
892  * more is available.
893  *
894  */
895 static void
896 udp_plugin_server_read (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
897 {
898   struct Plugin *plugin = cls;
899   char mybuf[40];
900   ssize_t bytes;
901   memset(&mybuf, 0, sizeof(mybuf));
902   int i;
903   struct UDP_NAT_Probes *temp_probe;
904   int port;
905   char *port_start;
906   struct sockaddr_in in_addr;
907
908   if (tc->reason == GNUNET_SCHEDULER_REASON_SHUTDOWN)
909     return;
910
911   bytes = GNUNET_DISK_file_read(plugin->server_stdout_handle, &mybuf, sizeof(mybuf));
912
913   if (bytes < 1)
914     {
915 #if DEBUG_UDP_NAT
916       GNUNET_log_from (GNUNET_ERROR_TYPE_DEBUG, "udp",
917                       _("Finished reading from server stdout with code: %d\n"), bytes);
918 #endif
919       return;
920     }
921
922   port = 0;
923   port_start = NULL;
924   for (i = 0; i < sizeof(mybuf); i++)
925     {
926       if (mybuf[i] == '\n')
927         mybuf[i] = '\0';
928
929       if ((mybuf[i] == ':') && (i + 1 < sizeof(mybuf)))
930         {
931           mybuf[i] = '\0';
932           port_start = &mybuf[i + 1];
933         }
934     }
935
936   if (port_start != NULL)
937     port = atoi(port_start);
938   else
939     {
940       plugin->server_read_task =
941            GNUNET_SCHEDULER_add_read_file (plugin->env->sched,
942                                            GNUNET_TIME_UNIT_FOREVER_REL,
943                                            plugin->server_stdout_handle, &udp_plugin_server_read, plugin);
944       return;
945     }
946
947 #if DEBUG_UDP_NAT
948   GNUNET_log_from (GNUNET_ERROR_TYPE_DEBUG, "udp",
949                   _("nat-server-read read: %s port %d\n"), &mybuf, port);
950 #endif
951
952   /**
953    * We have received an ICMP response, ostensibly from a non-NAT'd peer
954    *  that wants to connect to us! Send a message to establish a connection.
955    */
956   if (inet_pton(AF_INET, &mybuf[0], &in_addr.sin_addr) != 1)
957     {
958
959       GNUNET_log_from (GNUNET_ERROR_TYPE_WARNING, "udp",
960                   _("nat-server-read malformed address\n"), &mybuf, port);
961
962       plugin->server_read_task =
963           GNUNET_SCHEDULER_add_read_file (plugin->env->sched,
964                                           GNUNET_TIME_UNIT_FOREVER_REL,
965                                           plugin->server_stdout_handle, &udp_plugin_server_read, plugin);
966       return;
967     }
968
969   temp_probe = find_probe(plugin, &mybuf[0]);
970
971   if (temp_probe == NULL)
972     {
973       temp_probe = GNUNET_malloc(sizeof(struct UDP_NAT_Probes));
974       temp_probe->address_string = strdup(&mybuf[0]);
975       temp_probe->sock_addr.sin_family = AF_INET;
976       GNUNET_assert(inet_pton(AF_INET, &mybuf[0], &temp_probe->sock_addr.sin_addr) == 1);
977       temp_probe->port = port;
978       temp_probe->next = plugin->probes;
979       temp_probe->plugin = plugin;
980       temp_probe->task = GNUNET_SCHEDULER_add_delayed(plugin->env->sched, GNUNET_TIME_relative_multiply(GNUNET_TIME_UNIT_MILLISECONDS, 500), &send_udp_probe_message, temp_probe);
981       plugin->probes = temp_probe;
982     }
983
984   plugin->server_read_task =
985        GNUNET_SCHEDULER_add_read_file (plugin->env->sched,
986                                        GNUNET_TIME_UNIT_FOREVER_REL,
987                                        plugin->server_stdout_handle, &udp_plugin_server_read, plugin);
988
989 }
990
991
992 /**
993  * Demultiplexer for UDP NAT messages
994  *
995  * @param plugin the main plugin for this transport
996  * @param sender from which peer the message was received
997  * @param currhdr pointer to the header of the message
998  * @param sender_addr the address from which the message was received
999  * @param fromlen the length of the address
1000  * @param sockinfo which socket did we receive the message on
1001  */
1002 static void
1003 udp_demultiplexer(struct Plugin *plugin, struct GNUNET_PeerIdentity *sender, const struct GNUNET_MessageHeader *currhdr, struct sockaddr_storage *sender_addr, socklen_t fromlen, struct UDP_Sock_Info *sockinfo)
1004 {
1005   struct UDP_NAT_ProbeMessageReply *outgoing_probe_reply;
1006   struct UDP_NAT_ProbeMessageConfirmation *outgoing_probe_confirmation;
1007
1008   char addr_buf[INET_ADDRSTRLEN];
1009   struct UDP_NAT_Probes *outgoing_probe;
1010   struct PeerSession *peer_session;
1011   struct MessageQueue *pending_message;
1012   struct MessageQueue *pending_message_temp;
1013
1014   if (memcmp(sender, plugin->env->my_identity, sizeof(struct GNUNET_PeerIdentity)) == 0)
1015     {
1016 #if DEBUG_UDP_NAT
1017       GNUNET_log_from (GNUNET_ERROR_TYPE_DEBUG, "udp",
1018                       _("Received a message from myself, dropping!!!\n"));
1019 #endif
1020       return;
1021     }
1022
1023   switch (ntohs(currhdr->type))
1024   {
1025     case GNUNET_MESSAGE_TYPE_TRANSPORT_UDP_NAT_PROBE:
1026       /* Send probe reply */
1027       outgoing_probe_reply = GNUNET_malloc(sizeof(struct UDP_NAT_ProbeMessageReply));
1028       outgoing_probe_reply->header.size = htons(sizeof(struct UDP_NAT_ProbeMessageReply));
1029       outgoing_probe_reply->header.type = htons(GNUNET_MESSAGE_TYPE_TRANSPORT_UDP_NAT_PROBE_REPLY);
1030
1031 #if DEBUG_UDP_NAT
1032       GNUNET_log_from (GNUNET_ERROR_TYPE_DEBUG, "udp",
1033                       _("Received a probe on listen port %d, sent_from port %d\n"), sockinfo->port, ntohs(((struct sockaddr_in *)sender_addr)->sin_port));
1034 #endif
1035
1036       udp_real_send(plugin, sockinfo->desc, NULL,
1037                         (char *)outgoing_probe_reply,
1038                         ntohs(outgoing_probe_reply->header.size), 0, 
1039                         GNUNET_TIME_relative_get_unit(), 
1040                         sender_addr, fromlen, 
1041                         NULL, NULL);
1042
1043 #if DEBUG_UDP_NAT
1044       GNUNET_log_from (GNUNET_ERROR_TYPE_DEBUG, "udp",
1045                       _("Sent PROBE REPLY to port %d on outgoing port %d\n"), ntohs(((struct sockaddr_in *)sender_addr)->sin_port), sockinfo->port);
1046 #endif
1047       GNUNET_free(outgoing_probe_reply);
1048       break;
1049     case GNUNET_MESSAGE_TYPE_TRANSPORT_UDP_NAT_PROBE_REPLY:
1050       /* Check for existing probe, check ports returned, send confirmation if all is well */
1051 #if DEBUG_UDP_NAT
1052       GNUNET_log_from (GNUNET_ERROR_TYPE_DEBUG, "udp",
1053                       _("Received PROBE REPLY from port %d on incoming port %d\n"), ntohs(((struct sockaddr_in *)sender_addr)->sin_port), sockinfo->port);
1054 #endif
1055       if (sender_addr->ss_family == AF_INET)
1056         {
1057           memset(&addr_buf, 0, sizeof(addr_buf));
1058           inet_ntop(AF_INET, &((struct sockaddr_in *) sender_addr)->sin_addr, addr_buf, INET_ADDRSTRLEN);
1059           outgoing_probe = find_probe(plugin, &addr_buf[0]);
1060           if (outgoing_probe != NULL)
1061             {
1062 #if DEBUG_UDP_NAT
1063               GNUNET_log_from (GNUNET_ERROR_TYPE_DEBUG, "udp",
1064                               _("Sending confirmation that we were reached!\n"));
1065 #endif
1066               outgoing_probe_confirmation = GNUNET_malloc(sizeof(struct UDP_NAT_ProbeMessageConfirmation));
1067               outgoing_probe_confirmation->header.size = htons(sizeof(struct UDP_NAT_ProbeMessageConfirmation));
1068               outgoing_probe_confirmation->header.type = htons(GNUNET_MESSAGE_TYPE_TRANSPORT_UDP_NAT_PROBE_CONFIRM);
1069
1070               udp_real_send(plugin, sockinfo->desc, NULL, (char *)outgoing_probe_confirmation, ntohs(outgoing_probe_confirmation->header.size), 0, GNUNET_TIME_relative_get_unit(), sender_addr, fromlen, NULL, NULL);
1071
1072               if (outgoing_probe->task != GNUNET_SCHEDULER_NO_TASK)
1073                 {
1074                   GNUNET_SCHEDULER_cancel(plugin->env->sched, outgoing_probe->task);
1075                   outgoing_probe->task = GNUNET_SCHEDULER_NO_TASK;
1076                   /* Schedule task to timeout and remove probe if confirmation not received */
1077                 }
1078               GNUNET_free(outgoing_probe_confirmation);
1079             }
1080           else
1081             {
1082 #if DEBUG_UDP_NAT
1083               GNUNET_log_from (GNUNET_ERROR_TYPE_INFO, "udp",
1084                               _("Received a probe reply, but have no record of a sent probe!\n"));
1085 #endif
1086             }
1087         }
1088       break;
1089     case GNUNET_MESSAGE_TYPE_TRANSPORT_UDP_NAT_PROBE_CONFIRM:
1090       peer_session = find_session(plugin, sender);
1091 #if DEBUG_UDP_NAT
1092           GNUNET_log_from (GNUNET_ERROR_TYPE_DEBUG, "udp",
1093                           _("Looking up peer session for peer %s\n"), GNUNET_i2s(sender));
1094 #endif
1095       if (peer_session == NULL) /* Shouldn't this NOT happen? */
1096         {
1097 #if DEBUG_UDP_NAT
1098           GNUNET_log_from (GNUNET_ERROR_TYPE_DEBUG, "udp",
1099                           _("Peer not in list, adding (THIS MAY BE A MISTAKE) %s\n"), GNUNET_i2s(sender));
1100 #endif
1101           peer_session = GNUNET_malloc(sizeof(struct PeerSession));
1102           peer_session->connect_addr = GNUNET_malloc(fromlen);
1103           memcpy(peer_session->connect_addr, sender_addr, fromlen);
1104           peer_session->connect_alen = fromlen;
1105           peer_session->plugin = plugin;
1106           peer_session->sock = sockinfo->desc;
1107           memcpy(&peer_session->target, sender, sizeof(struct GNUNET_PeerIdentity));
1108           peer_session->expecting_welcome = GNUNET_NO;
1109
1110           peer_session->next = plugin->sessions;
1111           plugin->sessions = peer_session;
1112
1113           peer_session->messages = NULL;
1114         }
1115       else if (peer_session->expecting_welcome == GNUNET_YES)
1116         {
1117           peer_session->expecting_welcome = GNUNET_NO;
1118           peer_session->sock = sockinfo->desc;
1119           ((struct sockaddr_in *)peer_session->connect_addr)->sin_port = ((struct sockaddr_in *) sender_addr)->sin_port;
1120 #if DEBUG_UDP_NAT
1121               GNUNET_log_from (GNUNET_ERROR_TYPE_INFO, "udp",
1122                               _("Received a probe confirmation, will send to peer on port %d\n"), ntohs(((struct sockaddr_in *)peer_session->connect_addr)->sin_port));
1123 #endif
1124           if (peer_session->messages != NULL)
1125             {
1126 #if DEBUG_UDP_NAT
1127               GNUNET_log_from (GNUNET_ERROR_TYPE_INFO, "udp",
1128                               _("Received a probe confirmation, sending queued messages.\n"));
1129 #endif
1130               pending_message = peer_session->messages;
1131               int count = 0;
1132               while (pending_message != NULL)
1133                 {
1134 #if DEBUG_UDP_NAT
1135                   GNUNET_log_from (GNUNET_ERROR_TYPE_INFO, "udp",
1136                                   _("sending queued message %d\n"), count);
1137 #endif
1138                   udp_real_send(plugin, peer_session->sock, &peer_session->target, pending_message->msgbuf, pending_message->msgbuf_size, 0, GNUNET_TIME_relative_get_unit(), peer_session->connect_addr, peer_session->connect_alen, pending_message->cont, pending_message->cont_cls);
1139                   pending_message_temp = pending_message;
1140                   pending_message = pending_message->next;
1141                   GNUNET_free(pending_message_temp->msgbuf);
1142                   GNUNET_free(pending_message_temp);
1143 #if DEBUG_UDP_NAT
1144                   GNUNET_log_from (GNUNET_ERROR_TYPE_INFO, "udp",
1145                                   _("finished sending queued message %d\n"), count);
1146 #endif
1147                   count++;
1148                 }
1149             }
1150
1151         }
1152       else
1153         {
1154 #if DEBUG_UDP_NAT
1155           GNUNET_log_from (GNUNET_ERROR_TYPE_INFO, "udp",
1156                           _("Received probe confirmation for already confirmed peer!\n"));
1157 #endif
1158         }
1159       /* Received confirmation, add peer with address/port specified */
1160       break;
1161     case GNUNET_MESSAGE_TYPE_TRANSPORT_UDP_NAT_PROBE_KEEPALIVE:
1162       /* Once we've sent NAT_PROBE_CONFIRM change to sending keepalives */
1163       /* If we receive these just ignore! */
1164       break;
1165     default:
1166       plugin->env->receive (plugin->env->cls, sender, currhdr, UDP_DIRECT_DISTANCE, 
1167                             NULL, (char *)sender_addr, fromlen);
1168   }
1169
1170 }
1171
1172
1173 /*
1174  * @param cls the plugin handle
1175  * @param tc the scheduling context (for rescheduling this function again)
1176  *
1177  * We have been notified that our writeset has something to read.  We don't
1178  * know which socket needs to be read, so we have to check each one
1179  * Then reschedule this function to be called again once more is available.
1180  *
1181  */
1182 static void
1183 udp_plugin_select (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
1184 {
1185   struct Plugin *plugin = cls;
1186   char *buf;
1187   struct UDPMessage *msg;
1188   struct GNUNET_PeerIdentity *sender;
1189   unsigned int buflen;
1190   socklen_t fromlen;
1191   struct sockaddr_storage addr;
1192   ssize_t ret;
1193   int offset;
1194   int count;
1195   int tsize;
1196   char *msgbuf;
1197   const struct GNUNET_MessageHeader *currhdr;
1198
1199   plugin->select_task = GNUNET_SCHEDULER_NO_TASK;
1200
1201   if (tc->reason == GNUNET_SCHEDULER_REASON_SHUTDOWN)
1202     return;
1203
1204   buf = NULL;
1205   sender = NULL;
1206
1207   buflen = GNUNET_NETWORK_socket_recvfrom_amount (udp_sock.desc);
1208
1209   if (buflen == GNUNET_NO)
1210     return;
1211
1212   buf = GNUNET_malloc (buflen);
1213   fromlen = sizeof (addr);
1214   memset (&addr, 0, fromlen);
1215   ret =
1216     GNUNET_NETWORK_socket_recvfrom (udp_sock.desc, buf, buflen,
1217                                     (struct sockaddr *) &addr, &fromlen);
1218
1219 #if DEBUG_UDP_NAT
1220   GNUNET_log_from (GNUNET_ERROR_TYPE_INFO, "udp", _
1221                    ("socket_recv returned %u, src_addr_len is %u\n"), ret,
1222                    fromlen);
1223 #endif
1224
1225   if (ret <= 0)
1226     {
1227       GNUNET_free (buf);
1228       return;
1229     }
1230   msg = (struct UDPMessage *) buf;
1231
1232 #if DEBUG_UDP_NAT
1233   GNUNET_log_from (GNUNET_ERROR_TYPE_INFO, "udp", _
1234                   ("header reports message size of %d, type %d\n"),
1235                   ntohs (msg->header.size), ntohs (msg->header.type));
1236 #endif
1237   if (ntohs (msg->header.size) < sizeof (struct UDPMessage))
1238     {
1239       GNUNET_free (buf);
1240       return;
1241     }
1242
1243   msgbuf = (char *)&msg[1];
1244   sender = GNUNET_malloc (sizeof (struct GNUNET_PeerIdentity));
1245   memcpy (sender, &msg->sender, sizeof (struct GNUNET_PeerIdentity));
1246
1247   offset = 0;
1248   count = 0;
1249   tsize = ntohs (msg->header.size) - sizeof(struct UDPMessage);
1250
1251   while (offset < tsize)
1252     {
1253       currhdr = (struct GNUNET_MessageHeader *)&msgbuf[offset];
1254 #if DEBUG_UDP_NAT
1255       GNUNET_log_from (GNUNET_ERROR_TYPE_INFO, "udp", _
1256                        ("processing msg %d: type %d, size %d at offset %d\n"),
1257                        count, ntohs(currhdr->type), ntohs(currhdr->size), offset);
1258 #endif
1259       udp_demultiplexer(plugin, sender, currhdr, &addr, fromlen, &udp_sock);
1260 #if DEBUG_UDP_NAT
1261       GNUNET_log_from (GNUNET_ERROR_TYPE_INFO, "udp", _
1262                        ("processing done msg %d: type %d, size %d at offset %d\n"),
1263                        count, ntohs(currhdr->type), ntohs(currhdr->size), offset);
1264 #endif
1265       offset += ntohs(currhdr->size);
1266       count++;
1267     }
1268   GNUNET_free_non_null (buf);
1269   GNUNET_free_non_null (sender);
1270
1271
1272   plugin->select_task =
1273     GNUNET_SCHEDULER_add_select (plugin->env->sched,
1274                                  GNUNET_SCHEDULER_PRIORITY_DEFAULT,
1275                                  GNUNET_SCHEDULER_NO_TASK,
1276                                  GNUNET_TIME_UNIT_FOREVER_REL, plugin->rs,
1277                                  NULL, &udp_plugin_select, plugin);
1278
1279 }
1280
1281 /**
1282  * Create a slew of UDP sockets.  If possible, use IPv6, otherwise
1283  * try IPv4.
1284  *
1285  * @param cls closure for server start, should be a struct Plugin *
1286  *
1287  * @return number of sockets created or GNUNET_SYSERR on error
1288  */
1289 static int
1290 udp_transport_server_start (void *cls)
1291 {
1292   struct Plugin *plugin = cls;
1293   struct sockaddr_in serverAddrv4;
1294   struct sockaddr_in6 serverAddrv6;
1295   struct sockaddr *serverAddr;
1296   socklen_t addrlen;
1297   int sockets_created;
1298
1299   sockets_created = 0;
1300
1301   if (plugin->behind_nat == GNUNET_YES)
1302     {
1303       /* Pipe to read from started processes stdout (on read end) */
1304       plugin->server_stdout = GNUNET_DISK_pipe(GNUNET_YES);
1305       if (plugin->server_stdout == NULL)
1306         return sockets_created;
1307 #if DEBUG_UDP_NAT
1308   GNUNET_log_from (GNUNET_ERROR_TYPE_DEBUG,
1309                    "udp",
1310                    "Starting gnunet-nat-server process cmd: %s %s\n", "gnunet-nat-server", plugin->internal_address);
1311 #endif
1312       /* Start the server process */
1313       plugin->server_pid = GNUNET_OS_start_process(NULL, plugin->server_stdout, "gnunet-nat-server", "gnunet-nat-server", plugin->internal_address, NULL);
1314       if (plugin->server_pid == GNUNET_SYSERR)
1315         {
1316 #if DEBUG_UDP_NAT
1317           GNUNET_log_from (GNUNET_ERROR_TYPE_DEBUG,
1318                            "udp",
1319                            "Failed to start gnunet-nat-server process\n");
1320 #endif
1321           return GNUNET_SYSERR;
1322         }
1323       /* Close the write end of the read pipe */
1324       GNUNET_DISK_pipe_close_end(plugin->server_stdout, GNUNET_DISK_PIPE_END_WRITE);
1325
1326       plugin->server_stdout_handle = GNUNET_DISK_pipe_handle(plugin->server_stdout, GNUNET_DISK_PIPE_END_READ);
1327       plugin->server_read_task =
1328           GNUNET_SCHEDULER_add_read_file (plugin->env->sched,
1329                                           GNUNET_TIME_UNIT_FOREVER_REL,
1330                                           plugin->server_stdout_handle, &udp_plugin_server_read, plugin);
1331     }
1332
1333     udp_sock.desc = NULL;
1334
1335
1336     udp_sock.desc = GNUNET_NETWORK_socket_create (PF_INET, SOCK_DGRAM, 17);
1337     if (NULL == udp_sock.desc)
1338       {
1339         GNUNET_log_from (GNUNET_ERROR_TYPE_DEBUG, "udp", "socket");
1340         return sockets_created;
1341       }
1342     else
1343       {
1344         memset (&serverAddrv4, 0, sizeof (serverAddrv4));
1345 #if HAVE_SOCKADDR_IN_SIN_LEN
1346         serverAddrv4.sin_len = sizeof (serverAddrv4);
1347 #endif
1348         serverAddrv4.sin_family = AF_INET;
1349         serverAddrv4.sin_addr.s_addr = INADDR_ANY;
1350         serverAddrv4.sin_port = htons (plugin->port);
1351         addrlen = sizeof (serverAddrv4);
1352         serverAddr = (struct sockaddr *) &serverAddrv4;
1353 #if DEBUG_UDP_NAT
1354         GNUNET_log_from (GNUNET_ERROR_TYPE_DEBUG,
1355                          "udp",
1356                          "Binding to port %d\n", ntohs(serverAddrv4.sin_port));
1357 #endif
1358         while (GNUNET_NETWORK_socket_bind (udp_sock.desc, serverAddr, addrlen) !=
1359                        GNUNET_OK)
1360           {
1361             serverAddrv4.sin_port = htons (GNUNET_CRYPTO_random_u32(GNUNET_CRYPTO_QUALITY_STRONG, 33537) + 32000); /* Find a good, non-root port */
1362 #if DEBUG_UDP_NAT
1363         GNUNET_log_from (GNUNET_ERROR_TYPE_DEBUG,
1364                         "udp",
1365                         "Binding failed, trying new port %d\n", ntohs(serverAddrv4.sin_port));
1366 #endif
1367           }
1368         udp_sock.port = ntohs(serverAddrv4.sin_port);
1369         sockets_created++;
1370       }
1371
1372
1373   if ((udp_sock.desc == NULL) && (GNUNET_YES !=
1374       GNUNET_CONFIGURATION_get_value_yesno (plugin->env->cfg, "GNUNETD",
1375                                             "DISABLE-IPV6")))
1376     {
1377       udp_sock.desc = GNUNET_NETWORK_socket_create (PF_INET6, SOCK_DGRAM, 17);
1378       if (udp_sock.desc != NULL)
1379         {
1380           memset (&serverAddrv6, 0, sizeof (serverAddrv6));
1381 #if HAVE_SOCKADDR_IN_SIN_LEN
1382           serverAddrv6.sin6_len = sizeof (serverAddrv6);
1383 #endif
1384           serverAddrv6.sin6_family = AF_INET6;
1385           serverAddrv6.sin6_addr = in6addr_any;
1386           serverAddrv6.sin6_port = htons (plugin->port);
1387           addrlen = sizeof (serverAddrv6);
1388           serverAddr = (struct sockaddr *) &serverAddrv6;
1389           sockets_created++;
1390         }
1391     }
1392
1393   plugin->rs = GNUNET_NETWORK_fdset_create ();
1394
1395   GNUNET_NETWORK_fdset_zero (plugin->rs);
1396
1397
1398   GNUNET_NETWORK_fdset_set (plugin->rs, udp_sock.desc);
1399
1400   plugin->select_task =
1401     GNUNET_SCHEDULER_add_select (plugin->env->sched,
1402                                  GNUNET_SCHEDULER_PRIORITY_DEFAULT,
1403                                  GNUNET_SCHEDULER_NO_TASK,
1404                                  GNUNET_TIME_UNIT_FOREVER_REL, plugin->rs,
1405                                  NULL, &udp_plugin_select, plugin);
1406
1407   return sockets_created;
1408 }
1409
1410
1411 /**
1412  * Another peer has suggested an address for this peer and transport
1413  * plugin.  Check that this could be a valid address.  This function
1414  * is not expected to 'validate' the address in the sense of trying to
1415  * connect to it but simply to see if the binary format is technically
1416  * legal for establishing a connection.
1417  *
1418  * @param cls closure, should be our handle to the Plugin
1419  * @param addr pointer to the address, may be modified (slightly)
1420  * @param addrlen length of addr
1421  * @return GNUNET_OK if this is a plausible address for this peer
1422  *         and transport, GNUNET_SYSERR if not
1423  *
1424  */
1425 static int
1426 udp_check_address (void *cls, void *addr, size_t addrlen)
1427 {
1428   struct Plugin *plugin = cls;
1429   char buf[sizeof (struct sockaddr_in6)];
1430
1431   struct sockaddr_in *v4;
1432   struct sockaddr_in6 *v6;
1433
1434   if ((addrlen != sizeof (struct sockaddr_in)) &&
1435       (addrlen != sizeof (struct sockaddr_in6)))
1436     {
1437       GNUNET_break_op (0);
1438       return GNUNET_SYSERR;
1439     }
1440   memcpy (buf, addr, sizeof (struct sockaddr_in6));
1441   if (addrlen == sizeof (struct sockaddr_in))
1442     {
1443       v4 = (struct sockaddr_in *) buf;
1444       v4->sin_port = htons (plugin->port);
1445     }
1446   else
1447     {
1448       v6 = (struct sockaddr_in6 *) buf;
1449       v6->sin6_port = htons (plugin->port);
1450     }
1451
1452 #if DEBUG_UDP_NAT
1453   GNUNET_log_from (GNUNET_ERROR_TYPE_DEBUG,
1454                    "udp",
1455                    "Informing transport service about my address `%s'.\n",
1456                    GNUNET_a2s (addr, addrlen));
1457 #endif
1458   return GNUNET_OK;
1459 }
1460
1461
1462 /**
1463  * Append our port and forward the result.
1464  */
1465 static void
1466 append_port (void *cls, const char *hostname)
1467 {
1468   struct PrettyPrinterContext *ppc = cls;
1469   char *ret;
1470
1471   if (hostname == NULL)
1472     {
1473       ppc->asc (ppc->asc_cls, NULL);
1474       GNUNET_free (ppc);
1475       return;
1476     }
1477   GNUNET_asprintf (&ret, "%s:%d", hostname, ppc->port);
1478   ppc->asc (ppc->asc_cls, ret);
1479   GNUNET_free (ret);
1480 }
1481
1482
1483 /**
1484  * Convert the transports address to a nice, human-readable
1485  * format.
1486  *
1487  * @param cls closure
1488  * @param type name of the transport that generated the address
1489  * @param addr one of the addresses of the host, NULL for the last address
1490  *        the specific address format depends on the transport
1491  * @param addrlen length of the address
1492  * @param numeric should (IP) addresses be displayed in numeric form?
1493  * @param timeout after how long should we give up?
1494  * @param asc function to call on each string
1495  * @param asc_cls closure for asc
1496  */
1497 static void
1498 udp_plugin_address_pretty_printer (void *cls,
1499                                    const char *type,
1500                                    const void *addr,
1501                                    size_t addrlen,
1502                                    int numeric,
1503                                    struct GNUNET_TIME_Relative timeout,
1504                                    GNUNET_TRANSPORT_AddressStringCallback asc,
1505                                    void *asc_cls)
1506 {
1507   struct Plugin *plugin = cls;
1508   const struct sockaddr_in *v4;
1509   const struct sockaddr_in6 *v6;
1510   struct PrettyPrinterContext *ppc;
1511
1512   if ((addrlen != sizeof (struct sockaddr_in)) &&
1513       (addrlen != sizeof (struct sockaddr_in6)))
1514     {
1515       /* invalid address */
1516       GNUNET_break_op (0);
1517       asc (asc_cls, NULL);
1518       return;
1519     }
1520   ppc = GNUNET_malloc (sizeof (struct PrettyPrinterContext));
1521   ppc->asc = asc;
1522   ppc->asc_cls = asc_cls;
1523   if (addrlen == sizeof (struct sockaddr_in))
1524     {
1525       v4 = (const struct sockaddr_in *) addr;
1526       ppc->port = ntohs (v4->sin_port);
1527     }
1528   else
1529     {
1530       v6 = (const struct sockaddr_in6 *) addr;
1531       ppc->port = ntohs (v6->sin6_port);
1532
1533     }
1534   GNUNET_RESOLVER_hostname_get (plugin->env->sched,
1535                                 plugin->env->cfg,
1536                                 addr,
1537                                 addrlen,
1538                                 !numeric, timeout, &append_port, ppc);
1539 }
1540
1541 /**
1542  * Return the actual path to a file found in the current
1543  * PATH environment variable.
1544  *
1545  * @param binary the name of the file to find
1546  */
1547 static char *
1548 get_path_from_PATH (char *binary)
1549 {
1550   char *path;
1551   char *pos;
1552   char *end;
1553   char *buf;
1554   const char *p;
1555
1556   p = getenv ("PATH");
1557   if (p == NULL)
1558     return NULL;
1559   path = GNUNET_strdup (p);     /* because we write on it */
1560   buf = GNUNET_malloc (strlen (path) + 20);
1561   pos = path;
1562
1563   while (NULL != (end = strchr (pos, ':')))
1564     {
1565       *end = '\0';
1566       sprintf (buf, "%s/%s", pos, binary);
1567       if (GNUNET_DISK_file_test (buf) == GNUNET_YES)
1568         {
1569           GNUNET_free (path);
1570           return buf;
1571         }
1572       pos = end + 1;
1573     }
1574   sprintf (buf, "%s/%s", pos, binary);
1575   if (GNUNET_DISK_file_test (buf) == GNUNET_YES)
1576     {
1577       GNUNET_free (path);
1578       return buf;
1579     }
1580   GNUNET_free (buf);
1581   GNUNET_free (path);
1582   return NULL;
1583 }
1584
1585 /**
1586  * Check whether the suid bit is set on a file.
1587  * Attempts to find the file using the current
1588  * PATH environment variable as a search path.
1589  *
1590  * @param binary the name of the file to check
1591  */
1592 static int
1593 check_gnunet_nat_binary(char *binary)
1594 {
1595   struct stat statbuf;
1596   char *p;
1597
1598   p = get_path_from_PATH (binary);
1599   if (p == NULL)
1600     return GNUNET_NO;
1601   if (0 != STAT (p, &statbuf))
1602     {
1603       GNUNET_free (p);
1604       return GNUNET_SYSERR;
1605     }
1606   GNUNET_free (p);
1607   if ( (0 != (statbuf.st_mode & S_ISUID)) &&
1608        (statbuf.st_uid == 0) )
1609     return GNUNET_YES;
1610   return GNUNET_NO;
1611 }
1612
1613 /**
1614  * The exported method. Makes the core api available via a global and
1615  * returns the udp transport API.
1616  */
1617 void *
1618 libgnunet_plugin_transport_udp_init (void *cls)
1619 {
1620   struct GNUNET_TRANSPORT_PluginEnvironment *env = cls;
1621   unsigned long long mtu;
1622   unsigned long long port;
1623   struct GNUNET_TRANSPORT_PluginFunctions *api;
1624   struct Plugin *plugin;
1625   struct GNUNET_SERVICE_Context *service;
1626   int sockets_created;
1627   int behind_nat;
1628   int allow_nat;
1629   char *internal_address;
1630   char *external_address;
1631
1632   service = GNUNET_SERVICE_start ("transport-udp", env->sched, env->cfg);
1633   if (service == NULL)
1634     {
1635       GNUNET_log_from (GNUNET_ERROR_TYPE_WARNING, "udp", _
1636                        ("Failed to start service for `%s' transport plugin.\n"),
1637                        "udp");
1638       return NULL;
1639     }
1640
1641   if (GNUNET_YES == GNUNET_CONFIGURATION_get_value_yesno (env->cfg,
1642                                                          "transport-udp",
1643                                                          "BEHIND_NAT"))
1644     {
1645       /* We are behind nat (according to the user) */
1646       if (check_gnunet_nat_binary("gnunet-nat-server") == GNUNET_YES)
1647         behind_nat = GNUNET_YES;
1648       else
1649         {
1650           behind_nat = GNUNET_NO;
1651           GNUNET_log_from (GNUNET_ERROR_TYPE_WARNING, "udp", "Configuration specified you are behind a NAT, but gnunet-nat-server is not installed properly (suid bit not set)!\n");
1652         }
1653     }
1654   else
1655     behind_nat = GNUNET_NO; /* We are not behind nat! */
1656
1657   if (GNUNET_YES == GNUNET_CONFIGURATION_get_value_yesno (env->cfg,
1658                                                          "transport-udp",
1659                                                          "ALLOW_NAT"))
1660     {
1661       if (check_gnunet_nat_binary("gnunet-nat-client") == GNUNET_YES)
1662         allow_nat = GNUNET_YES; /* We will try to connect to NAT'd peers */
1663       else
1664       {
1665         allow_nat = GNUNET_NO;
1666         GNUNET_log_from (GNUNET_ERROR_TYPE_WARNING, "udp", "Configuration specified you want to connect to NAT'd peers, but gnunet-nat-client is not installed properly (suid bit not set)!\n");
1667       }
1668
1669     }
1670   else
1671     allow_nat = GNUNET_NO; /* We don't want to try to help NAT'd peers */
1672
1673   external_address = NULL;
1674   if (((GNUNET_YES == behind_nat) || (GNUNET_YES == allow_nat)) && (GNUNET_OK !=
1675          GNUNET_CONFIGURATION_get_value_string (env->cfg,
1676                                                 "transport-udp",
1677                                                 "EXTERNAL_ADDRESS",
1678                                                 &external_address)))
1679     {
1680       GNUNET_log_from (GNUNET_ERROR_TYPE_ERROR,
1681                        "udp",
1682                        _
1683                        ("Require EXTERNAL_ADDRESS for service `%s' in configuration (either BEHIND_NAT or ALLOW_NAT set to YES)!\n"),
1684                        "transport-udp");
1685       GNUNET_SERVICE_stop (service);
1686       return NULL;
1687     }
1688
1689   internal_address = NULL;
1690   if ((GNUNET_YES == behind_nat) && (GNUNET_OK !=
1691          GNUNET_CONFIGURATION_get_value_string (env->cfg,
1692                                                 "transport-udp",
1693                                                 "INTERNAL_ADDRESS",
1694                                                 &internal_address)))
1695     {
1696       GNUNET_log_from (GNUNET_ERROR_TYPE_ERROR,
1697                        "udp",
1698                        _
1699                        ("Require INTERNAL_ADDRESS for service `%s' in configuration!\n"),
1700                        "transport-udp");
1701       GNUNET_SERVICE_stop (service);
1702       GNUNET_free_non_null(external_address);
1703       return NULL;
1704     }
1705
1706   if (GNUNET_OK !=
1707       GNUNET_CONFIGURATION_get_value_number (env->cfg,
1708                                              "transport-udp",
1709                                              "PORT",
1710                                              &port))
1711     port = UDP_NAT_DEFAULT_PORT;
1712   else if (port > 65535)
1713     {
1714       GNUNET_log_from (GNUNET_ERROR_TYPE_WARNING,
1715                        "udp",
1716                        _("Given `%s' option is out of range: %llu > %u\n"),
1717                        "PORT",
1718                        port,
1719                        65535);
1720       GNUNET_SERVICE_stop (service);
1721       GNUNET_free_non_null(external_address);
1722       GNUNET_free_non_null(internal_address);
1723       return NULL;      
1724     }
1725
1726   mtu = 1240;
1727   if (mtu < 1200)
1728     GNUNET_log_from (GNUNET_ERROR_TYPE_INFO,
1729                      "udp",
1730                      _("MTU %llu for `%s' is probably too low!\n"), mtu,
1731                      "UDP");
1732
1733   plugin = GNUNET_malloc (sizeof (struct Plugin));
1734   plugin->external_address = external_address;
1735   plugin->internal_address = internal_address;
1736   plugin->port = port;
1737   plugin->behind_nat = behind_nat;
1738   plugin->allow_nat = allow_nat;
1739   plugin->env = env;
1740
1741   api = GNUNET_malloc (sizeof (struct GNUNET_TRANSPORT_PluginFunctions));
1742   api->cls = plugin;
1743
1744   api->send = &udp_plugin_send;
1745   api->disconnect = &udp_disconnect;
1746   api->address_pretty_printer = &udp_plugin_address_pretty_printer;
1747   api->check_address = &udp_check_address;
1748
1749   plugin->service = service;
1750
1751   GNUNET_OS_network_interfaces_list (&process_interfaces, plugin);
1752   plugin->hostname_dns = GNUNET_RESOLVER_hostname_resolve (env->sched,
1753                                                            env->cfg,
1754                                                            AF_UNSPEC,
1755                                                            HOSTNAME_RESOLVE_TIMEOUT,
1756                                                            &process_hostname_ips,
1757                                                            plugin);
1758
1759   sockets_created = udp_transport_server_start (plugin);
1760
1761   GNUNET_assert (sockets_created == 1);
1762
1763   return api;
1764 }
1765
1766
1767 void *
1768 libgnunet_plugin_transport_udp_done (void *cls)
1769 {
1770   struct GNUNET_TRANSPORT_PluginFunctions *api = cls;
1771   struct Plugin *plugin = api->cls;
1772
1773   udp_transport_server_stop (plugin);
1774   if (NULL != hostname_dns)
1775     {
1776       GNUNET_RESOLVER_request_cancel (hostname_dns);
1777       hostname_dns = NULL;
1778     }
1779
1780   GNUNET_SERVICE_stop (plugin->service);
1781
1782   GNUNET_NETWORK_fdset_destroy (plugin->rs);
1783   GNUNET_free (plugin);
1784   GNUNET_free (api);
1785   return NULL;
1786 }
1787
1788 /* end of plugin_transport_udp.c */