doxygen
[oweals/gnunet.git] / src / transport / plugin_transport_tcp.c
1 /*
2      This file is part of GNUnet
3      (C) 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 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 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  * @file transport/plugin_transport_tcp.c
22  * @brief Implementation of the TCP transport service
23  * @author Christian Grothoff
24  */
25 #include "platform.h"
26 #include "gnunet_hello_lib.h"
27 #include "gnunet_connection_lib.h"
28 #include "gnunet_container_lib.h"
29 #include "gnunet_nat_lib.h"
30 #include "gnunet_os_lib.h"
31 #include "gnunet_protocols.h"
32 #include "gnunet_resolver_service.h"
33 #include "gnunet_server_lib.h"
34 #include "gnunet_service_lib.h"
35 #include "gnunet_signatures.h"
36 #include "gnunet_statistics_service.h"
37 #include "gnunet_transport_service.h"
38 #include "gnunet_transport_plugin.h"
39 #include "transport.h"
40
41 #define DEBUG_TCP GNUNET_NO
42
43 #define DEBUG_TCP_NAT GNUNET_NO
44
45 /**
46  * How long until we give up on transmitting the welcome message?
47  */
48 #define HOSTNAME_RESOLVE_TIMEOUT GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_SECONDS, 5)
49
50
51 /**
52  * Initial handshake message for a session.
53  */
54 struct WelcomeMessage
55 {
56   /**
57    * Type is GNUNET_MESSAGE_TYPE_TRANSPORT_TCP_WELCOME.
58    */
59   struct GNUNET_MessageHeader header;
60
61   /**
62    * Identity of the node connecting (TCP client)
63    */
64   struct GNUNET_PeerIdentity clientIdentity;
65
66 };
67
68
69 /**
70  * Basically a WELCOME message, but with the purpose
71  * of giving the waiting peer a client handle to use
72  */
73 struct TCP_NAT_ProbeMessage
74 {
75   /**
76    * Type is GNUNET_MESSAGE_TYPE_TRANSPORT_TCP_NAT_PROBE.
77    */
78   struct GNUNET_MessageHeader header;
79
80   /**
81    * Identity of the sender of the message.
82    */
83   struct GNUNET_PeerIdentity clientIdentity;
84
85 };
86
87
88 /**
89  * Context for sending a NAT probe via TCP.
90  */
91 struct TCPProbeContext
92 {
93
94   /**
95    * Active probes are kept in a DLL.
96    */
97   struct TCPProbeContext *next;
98
99   /**
100    * Active probes are kept in a DLL.
101    */
102   struct TCPProbeContext *prev;
103
104   /**
105    * Probe connection.
106    */
107   struct GNUNET_CONNECTION_Handle *sock;
108
109   /**
110    * Message to be sent.
111    */
112   struct TCP_NAT_ProbeMessage message;
113
114   /**
115    * Handle to the transmission.
116    */
117   struct GNUNET_CONNECTION_TransmitHandle *transmit_handle;
118
119   /**
120    * Transport plugin handle.
121    */
122   struct Plugin *plugin;
123 };
124
125
126 /**
127  * Network format for IPv4 addresses.
128  */
129 struct IPv4TcpAddress
130 {
131   /**
132    * IPv4 address, in network byte order.
133    */
134   uint32_t ipv4_addr GNUNET_PACKED;
135
136   /**
137    * Port number, in network byte order.
138    */
139   uint16_t t_port GNUNET_PACKED;
140
141 };
142
143
144 /**
145  * Network format for IPv6 addresses.
146  */
147 struct IPv6TcpAddress
148 {
149   /**
150    * IPv6 address.
151    */
152   struct in6_addr ipv6_addr GNUNET_PACKED;
153
154   /**
155    * Port number, in network byte order.
156    */
157   uint16_t t6_port GNUNET_PACKED;
158
159 };
160
161
162 /**
163  * Encapsulation of all of the state of the plugin.
164  */
165 struct Plugin;
166
167
168 /**
169  * Local network addresses (actual IP address follows this struct).
170  * PORT is NOT included!
171  */
172 struct LocalAddrList
173 {
174
175   /**
176    * This is a doubly linked list.
177    */
178   struct LocalAddrList *next;
179
180   /**
181    * This is a doubly linked list.
182    */
183   struct LocalAddrList *prev;
184
185   /**
186    * Link to plugin.
187    */
188   struct Plugin *plugin;
189
190   /**
191    * Handle to NAT holes we've tried to punch for this address.
192    */
193   struct GNUNET_NAT_Handle *nat;
194
195   /**
196    * Pointer to a 'struct IPv4/V6TcpAddress' describing our external IP and port
197    * as obtained from the NAT by automatic port mapping.
198    */
199   void *external_nat_address;
200
201   /**
202    * Number of bytes in 'external_nat_address'
203    */
204   size_t ena_size;
205
206   /**
207    * Number of bytes of the address that follow
208    */
209   size_t size;
210
211 };
212
213
214 /**
215  * Information kept for each message that is yet to
216  * be transmitted.
217  */
218 struct PendingMessage
219 {
220
221   /**
222    * This is a doubly-linked list.
223    */
224   struct PendingMessage *next;
225
226   /**
227    * This is a doubly-linked list.
228    */
229   struct PendingMessage *prev;
230
231   /**
232    * The pending message
233    */
234   const char *msg;
235
236   /**
237    * Continuation function to call once the message
238    * has been sent.  Can be NULL if there is no
239    * continuation to call.
240    */
241   GNUNET_TRANSPORT_TransmitContinuation transmit_cont;
242
243   /**
244    * Closure for transmit_cont.
245    */
246   void *transmit_cont_cls;
247
248   /**
249    * Timeout value for the pending message.
250    */
251   struct GNUNET_TIME_Absolute timeout;
252
253   /**
254    * So that the gnunet-service-transport can group messages together,
255    * these pending messages need to accept a message buffer and size
256    * instead of just a GNUNET_MessageHeader.
257    */
258   size_t message_size;
259
260 };
261
262
263 /**
264  * Session handle for TCP connections.
265  */
266 struct Session
267 {
268
269   /**
270    * API requirement.
271    */
272   struct SessionHeader header;
273
274   /**
275    * Stored in a linked list.
276    */
277   struct Session *next;
278
279   /**
280    * Pointer to the global plugin struct.
281    */
282   struct Plugin *plugin;
283
284   /**
285    * The client (used to identify this connection)
286    */
287   struct GNUNET_SERVER_Client *client;
288
289   /**
290    * Messages currently pending for transmission
291    * to this peer, if any.
292    */
293   struct PendingMessage *pending_messages_head;
294
295   /**
296    * Messages currently pending for transmission
297    * to this peer, if any.
298    */
299   struct PendingMessage *pending_messages_tail;
300
301   /**
302    * Handle for pending transmission request.
303    */
304   struct GNUNET_CONNECTION_TransmitHandle *transmit_handle;
305
306   /**
307    * To whom are we talking to (set to our identity
308    * if we are still waiting for the welcome message)
309    */
310   struct GNUNET_PeerIdentity target;
311
312   /**
313    * ID of task used to delay receiving more to throttle sender.
314    */
315   GNUNET_SCHEDULER_TaskIdentifier receive_delay_task;
316
317   /**
318    * Address of the other peer (either based on our 'connect'
319    * call or on our 'accept' call).
320    */
321   void *connect_addr;
322
323   /**
324    * Last activity on this connection.  Used to select preferred
325    * connection.
326    */
327   struct GNUNET_TIME_Absolute last_activity;
328
329   /**
330    * Length of connect_addr.
331    */
332   size_t connect_alen;
333
334   /**
335    * Are we still expecting the welcome message? (GNUNET_YES/GNUNET_NO)
336    */
337   int expecting_welcome;
338
339   /**
340    * Was this a connection that was inbound (we accepted)? (GNUNET_YES/GNUNET_NO)
341    */
342   int inbound;
343
344   /**
345    * Was this session created using NAT traversal?
346    */
347   int is_nat;
348
349 };
350
351
352 /**
353  * Encapsulation of all of the state of the plugin.
354  */
355 struct Plugin
356 {
357   /**
358    * Our environment.
359    */
360   struct GNUNET_TRANSPORT_PluginEnvironment *env;
361
362   /**
363    * The listen socket.
364    */
365   struct GNUNET_CONNECTION_Handle *lsock;
366
367   /**
368    * stdout pipe handle for the gnunet-nat-server process
369    */
370   struct GNUNET_DISK_PipeHandle *server_stdout;
371
372   /**
373    * stdout file handle (for reading) for the gnunet-nat-server process
374    */
375   const struct GNUNET_DISK_FileHandle *server_stdout_handle;
376
377   /**
378    * ID of select gnunet-nat-server stdout read task
379    */
380   GNUNET_SCHEDULER_TaskIdentifier server_read_task;
381
382   /**
383    * The process id of the server process (if behind NAT)
384    */
385   struct GNUNET_OS_Process *server_proc;
386
387   /**
388    * List of open TCP sessions.
389    */
390   struct Session *sessions;
391
392   /**
393    * Handle to the network service.
394    */
395   struct GNUNET_SERVICE_Context *service;
396
397   /**
398    * Handle to the server for this service.
399    */
400   struct GNUNET_SERVER_Handle *server;
401
402   /**
403    * Copy of the handler array where the closures are
404    * set to this struct's instance.
405    */
406   struct GNUNET_SERVER_MessageHandler *handlers;
407
408   /**
409    * Handle for request of hostname resolution, non-NULL if pending.
410    */
411   struct GNUNET_RESOLVER_RequestHandle *hostname_dns;
412
413   /**
414    * Map of peers we have tried to contact behind a NAT
415    */
416   struct GNUNET_CONTAINER_MultiHashMap *nat_wait_conns;
417
418   /**
419    * The external address given to us by the user.  Used for HELLOs
420    * and address validation.
421    */
422   char *external_address;
423
424   /**
425    * The internal address given to us by the user (or discovered).
426    * Used for NAT traversal (ICMP method), but not as a 'validateable'
427    * address in HELLOs.
428    */
429   char *internal_address;
430
431   /**
432    * Address given for us to bind to (ONLY).
433    */
434   char *bind_address;
435
436   /**
437    * List of our IP addresses.
438    */
439   struct LocalAddrList *lal_head;
440
441   /**
442    * Tail of our IP address list.
443    */
444   struct LocalAddrList *lal_tail;
445
446   /**
447    * List of active TCP probes.
448    */
449   struct TCPProbeContext *probe_head;
450
451   /**
452    * List of active TCP probes.
453    */
454   struct TCPProbeContext *probe_tail;
455
456   /**
457    * Handle for (DYN)DNS lookup of our external IP.
458    */
459   struct GNUNET_RESOLVER_RequestHandle *ext_dns;
460
461   /**
462    * ID of task used to update our addresses when one expires.
463    */
464   GNUNET_SCHEDULER_TaskIdentifier address_update_task;
465
466   /**
467    * Port that we are actually listening on.
468    */
469   uint16_t open_port;
470
471   /**
472    * Port that the user said we would have visible to the
473    * rest of the world.
474    */
475   uint16_t adv_port;
476
477   /**
478    * Is this transport configured to be behind a NAT?
479    */
480   int behind_nat;
481
482   /**
483    * Has the NAT been punched?
484    */
485   int nat_punched;
486
487   /**
488    * Is this transport configured to allow connections to NAT'd peers?
489    */
490   int enable_nat_client;
491
492   /**
493    * Should we run the gnunet-nat-server?
494    */
495   int enable_nat_server;
496
497   /**
498    * Are we allowed to try UPnP/PMP for NAT traversal?
499    */
500   int enable_upnp;
501
502 };
503
504
505 /**
506  * Our external IP address/port mapping has changed.
507  *
508  * @param cls closure, the 'struct LocalAddrList'
509  * @param add_remove GNUNET_YES to mean the new public IP address, GNUNET_NO to mean
510  *     the previous (now invalid) one
511  * @param addr either the previous or the new public IP address
512  * @param addrlen actual lenght of the address
513  */
514 static void
515 nat_port_map_callback (void *cls,
516                        int add_remove,
517                        const struct sockaddr *addr,
518                        socklen_t addrlen)
519 {
520   struct LocalAddrList *lal = cls;
521   struct Plugin *plugin = lal->plugin;
522   int af;
523   struct IPv4TcpAddress t4;
524   struct IPv6TcpAddress t6;
525   void *arg;
526   uint16_t args;
527
528   /* convert 'addr' to our internal format */
529   af = addr->sa_family;
530   switch (af)
531     {
532     case AF_INET:
533       t4.ipv4_addr = ((struct sockaddr_in *) addr)->sin_addr.s_addr;
534       t6.t6_port = ((struct sockaddr_in *) addr)->sin_port;
535       arg = &t4;
536       args = sizeof (t4);
537       break;
538     case AF_INET6:
539       memcpy (&t6.ipv6_addr,
540               &((struct sockaddr_in6 *) addr)->sin6_addr,
541               sizeof (struct in6_addr));
542       t6.t6_port = ((struct sockaddr_in6 *) addr)->sin6_port;
543       arg = &t6;
544       args = sizeof (t6);    
545       break;
546     default:
547       GNUNET_break (0);
548       return;
549     } 
550
551   /* modify our published address list */
552   if (GNUNET_YES == add_remove)
553     {
554       plugin->env->notify_address (plugin->env->cls,
555                                    "tcp",
556                                    arg, args, GNUNET_TIME_UNIT_FOREVER_REL);
557       GNUNET_free_non_null (lal->external_nat_address);
558       lal->external_nat_address = GNUNET_memdup (arg, args);
559       lal->ena_size = args;
560     }
561   else
562     {
563       plugin->env->notify_address (plugin->env->cls,
564                                    "tcp",
565                                    arg, args, GNUNET_TIME_UNIT_ZERO);
566       GNUNET_free_non_null (lal->external_nat_address);
567       lal->ena_size = 0;
568     }
569 }
570
571
572 /**
573  * Add the given address to the list of 'local' addresses, thereby
574  * making it a 'legal' address for this peer to have.  
575  * 
576  * @param plugin the plugin
577  * @param arg the address, either an IPv4 or an IPv6 IP address
578  * @param arg_size number of bytes in arg
579  */
580 static void
581 add_to_address_list (struct Plugin *plugin,
582                      const void *arg,
583                      size_t arg_size)
584 {
585   struct LocalAddrList *lal;
586   struct sockaddr_in v4;
587   struct sockaddr_in6 v6;
588   const struct sockaddr *sa;
589   socklen_t salen;
590
591   lal = plugin->lal_head;
592   while (NULL != lal)
593     {
594       if ( (lal->size == arg_size) &&
595            (0 == memcmp (&lal[1], arg, arg_size)) )
596         return;
597       lal = lal->next;
598     }
599   lal = GNUNET_malloc (sizeof (struct LocalAddrList) + arg_size);
600   lal->plugin = plugin;
601   lal->size = arg_size;
602   memcpy (&lal[1], arg, arg_size);
603   GNUNET_CONTAINER_DLL_insert (plugin->lal_head,
604                                plugin->lal_tail,
605                                lal);
606   if (plugin->open_port == 0)
607     return; /* we're not listening at all... */
608   if (arg_size == sizeof (struct in_addr))
609     {
610       memset (&v4, 0, sizeof (v4));
611       v4.sin_family = AF_INET;
612       v4.sin_port = htons (plugin->open_port);
613       memcpy (&v4.sin_addr, arg, arg_size);
614 #if HAVE_SOCKADDR_IN_SIN_LEN
615       v4.sin_len = sizeof (struct sockaddr_in);
616 #endif
617       sa = (const struct sockaddr*) &v4;
618       salen = sizeof (v4);
619     }
620   else if (arg_size == sizeof (struct in6_addr))
621     {     
622       memset (&v6, 0, sizeof (v6));
623       v6.sin6_family = AF_INET6;
624       v6.sin6_port = htons (plugin->open_port);
625       memcpy (&v6.sin6_addr, arg, arg_size);
626 #if HAVE_SOCKADDR_IN_SIN_LEN
627       v6.sin6_len = sizeof (struct sockaddr_in6);
628 #endif
629       sa = (const struct sockaddr*) &v6;
630       salen = sizeof (v6);
631     }
632   else
633     {
634       GNUNET_break (0);
635       return;
636     }
637   if ( (plugin->behind_nat == GNUNET_YES) &&
638        (plugin->enable_upnp == GNUNET_YES) )
639     lal->nat = GNUNET_NAT_register (sa, salen,
640                                     &nat_port_map_callback,
641                                     lal);
642 }
643
644
645 /**
646  * Check if the given address is in the list of 'local' addresses.
647  * 
648  * @param plugin the plugin
649  * @param arg the address, either an IPv4 or an IPv6 IP address
650  * @param arg_size number of bytes in arg
651  * @return GNUNET_OK if this is one of our IPs, GNUNET_SYSERR if not
652  */
653 static int
654 check_local_addr (struct Plugin *plugin,
655                   const void *arg,
656                   size_t arg_size)
657 {
658   struct LocalAddrList *lal;
659
660   lal = plugin->lal_head;
661   while (NULL != lal)
662     {
663       if ( (lal->size == arg_size) &&
664            (0 == memcmp (&lal[1], arg, arg_size)) )
665         return GNUNET_OK;
666       lal = lal->next;
667     }
668   return GNUNET_SYSERR;
669 }
670
671
672 /**
673  * Check if the given address is in the list of 'mapped' addresses.
674  * 
675  * @param plugin the plugin
676  * @param arg the address, either a 'struct IPv4TcpAddress' or a 'struct IPv6TcpAddress'
677  * @param arg_size number of bytes in arg
678  * @return GNUNET_OK if this is one of our IPs, GNUNET_SYSERR if not
679  */
680 static int
681 check_mapped_addr (struct Plugin *plugin,
682                    const void *arg,
683                    size_t arg_size)
684 {
685   struct LocalAddrList *lal;
686
687   lal = plugin->lal_head;
688   while (NULL != lal)
689     {
690       if ( (lal->ena_size == arg_size) &&
691            (0 == memcmp (lal->external_nat_address, arg, arg_size)) )
692         return GNUNET_OK;
693       lal = lal->next;
694     }
695   return GNUNET_SYSERR;
696 }
697
698
699 /**
700  * Function called for a quick conversion of the binary address to
701  * a numeric address.  Note that the caller must not free the
702  * address and that the next call to this function is allowed
703  * to override the address again.
704  *
705  * @param cls closure ('struct Plugin*')
706  * @param addr binary address
707  * @param addrlen length of the address
708  * @return string representing the same address
709  */
710 static const char*
711 tcp_address_to_string (void *cls,
712                        const void *addr,
713                        size_t addrlen)
714 {
715   static char rbuf[INET6_ADDRSTRLEN + 12];
716   char buf[INET6_ADDRSTRLEN];
717   const void *sb;
718   struct in_addr a4;
719   struct in6_addr a6;
720   const struct IPv4TcpAddress *t4;
721   const struct IPv6TcpAddress *t6;
722   int af;
723   uint16_t port;
724
725   if (addrlen == sizeof (struct IPv6TcpAddress))
726     {
727       t6 = addr;
728       af = AF_INET6;
729       port = ntohs (t6->t6_port);
730       memcpy (&a6, &t6->ipv6_addr, sizeof (a6));
731       sb = &a6;
732     }
733   else if (addrlen == sizeof (struct IPv4TcpAddress))
734     {
735       t4 = addr;
736       af = AF_INET;
737       port = ntohs (t4->t_port);
738       memcpy (&a4, &t4->ipv4_addr, sizeof (a4));
739       sb = &a4;
740     }
741   else
742     {
743       GNUNET_log_from (GNUNET_ERROR_TYPE_ERROR,
744                        "tcp",
745                        _("Unexpected address length: %u\n"),
746                        addrlen);
747       GNUNET_break (0);
748       return NULL;
749     }
750   if (NULL == inet_ntop (af, sb, buf, INET6_ADDRSTRLEN))
751     {
752       GNUNET_log_strerror (GNUNET_ERROR_TYPE_WARNING, "inet_ntop");
753       return NULL;
754     }
755   GNUNET_snprintf (rbuf,
756                    sizeof (rbuf),
757                    (af == AF_INET6) ? "[%s]:%u" : "%s:%u",
758                    buf,
759                    port);
760   return rbuf;
761 }
762
763
764 /**
765  * Find the session handle for the given client.
766  *
767  * @param plugin the plugin
768  * @param client which client to find the session handle for
769  * @return NULL if no matching session exists
770  */
771 static struct Session *
772 find_session_by_client (struct Plugin *plugin,
773                         const struct GNUNET_SERVER_Client *client)
774 {
775   struct Session *ret;
776
777   ret = plugin->sessions;
778   while ((ret != NULL) && (client != ret->client))
779     ret = ret->next;
780   return ret;
781 }
782
783
784 /**
785  * Create a new session.  Also queues a welcome message.
786  *
787  * @param plugin the plugin
788  * @param target peer to connect to
789  * @param client client to use
790  * @param is_nat this a NAT session, we should wait for a client to
791  *               connect to us from an address, then assign that to
792  *               the session
793  * @return new session object
794  */
795 static struct Session *
796 create_session (struct Plugin *plugin,
797                 const struct GNUNET_PeerIdentity *target,
798                 struct GNUNET_SERVER_Client *client, 
799                 int is_nat)
800 {
801   struct Session *ret;
802   struct PendingMessage *pm;
803   struct WelcomeMessage welcome;
804
805   if (is_nat != GNUNET_YES)
806     GNUNET_assert (client != NULL);
807   else
808     GNUNET_assert (client == NULL);
809 #if DEBUG_TCP
810   GNUNET_log_from (GNUNET_ERROR_TYPE_DEBUG,
811                    "tcp",
812                    "Creating new session for peer `%4s'\n",
813                    GNUNET_i2s (target));
814 #endif
815   ret = GNUNET_malloc (sizeof (struct Session));
816   ret->last_activity = GNUNET_TIME_absolute_get ();
817   ret->plugin = plugin;
818   ret->is_nat = is_nat;
819   if (is_nat != GNUNET_YES) /* If not a NAT WAIT conn, add it to global list */
820     {
821       ret->next = plugin->sessions;
822       plugin->sessions = ret;
823     }
824   ret->client = client;
825   ret->target = *target;
826   ret->expecting_welcome = GNUNET_YES;
827   pm = GNUNET_malloc (sizeof (struct PendingMessage) + sizeof (struct WelcomeMessage));
828   pm->msg = (const char*) &pm[1];
829   pm->message_size = sizeof (struct WelcomeMessage);
830   welcome.header.size = htons (sizeof (struct WelcomeMessage));
831   welcome.header.type = htons (GNUNET_MESSAGE_TYPE_TRANSPORT_TCP_WELCOME);
832   welcome.clientIdentity = *plugin->env->my_identity;
833   memcpy (&pm[1], &welcome, sizeof (welcome));
834   pm->timeout = GNUNET_TIME_UNIT_FOREVER_ABS;
835   GNUNET_STATISTICS_update (plugin->env->stats,
836                             gettext_noop ("# bytes currently in TCP buffers"),
837                             pm->message_size,
838                             GNUNET_NO);
839   GNUNET_CONTAINER_DLL_insert (ret->pending_messages_head,
840                                ret->pending_messages_tail,
841                                pm);
842   if (is_nat != GNUNET_YES)
843     GNUNET_STATISTICS_update (plugin->env->stats,
844                               gettext_noop ("# TCP sessions active"),
845                               1,
846                               GNUNET_NO);
847   return ret;
848 }
849
850
851 /**
852  * If we have pending messages, ask the server to
853  * transmit them (schedule the respective tasks, etc.)
854  *
855  * @param session for which session should we do this
856  */
857 static void process_pending_messages (struct Session *session);
858
859
860 /**
861  * Function called to notify a client about the socket
862  * being ready to queue more data.  "buf" will be
863  * NULL and "size" zero if the socket was closed for
864  * writing in the meantime.
865  *
866  * @param cls closure
867  * @param size number of bytes available in buf
868  * @param buf where the callee should write the message
869  * @return number of bytes written to buf
870  */
871 static size_t
872 do_transmit (void *cls, size_t size, void *buf)
873 {
874   struct Session *session = cls;
875   struct GNUNET_PeerIdentity pid;
876   struct Plugin *plugin;
877   struct PendingMessage *pos;
878   struct PendingMessage *hd;
879   struct PendingMessage *tl;
880   struct GNUNET_TIME_Absolute now;
881   char *cbuf;
882   size_t ret;
883
884   session->transmit_handle = NULL;
885   plugin = session->plugin;
886   if (buf == NULL)
887     {
888 #if DEBUG_TCP
889       GNUNET_log_from (GNUNET_ERROR_TYPE_DEBUG,
890                        "tcp",
891                        "Timeout trying to transmit to peer `%4s', discarding message queue.\n",
892                        GNUNET_i2s (&session->target));
893 #endif
894       /* timeout; cancel all messages that have already expired */
895       hd = NULL;
896       tl = NULL;
897       ret = 0;
898       now = GNUNET_TIME_absolute_get ();
899       while ( (NULL != (pos = session->pending_messages_head)) &&
900               (pos->timeout.abs_value <= now.abs_value) )
901         {
902           GNUNET_CONTAINER_DLL_remove (session->pending_messages_head,
903                                        session->pending_messages_tail,
904                                        pos);
905 #if DEBUG_TCP
906           GNUNET_log_from (GNUNET_ERROR_TYPE_DEBUG,
907                            "tcp",
908                            "Failed to transmit %u byte message to `%4s'.\n",
909                            pos->message_size,
910                            GNUNET_i2s (&session->target));
911 #endif
912           ret += pos->message_size;
913           GNUNET_CONTAINER_DLL_insert_after (hd, tl, tl, pos);
914         }
915       /* do this call before callbacks (so that if callbacks destroy
916          session, they have a chance to cancel actions done by this
917          call) */
918       process_pending_messages (session);
919       pid = session->target;
920       /* no do callbacks and do not use session again since
921          the callbacks may abort the session */
922       while (NULL != (pos = hd))
923         {
924           GNUNET_CONTAINER_DLL_remove (hd, tl, pos);
925           if (pos->transmit_cont != NULL)
926             pos->transmit_cont (pos->transmit_cont_cls,
927                                 &pid, GNUNET_SYSERR);
928           GNUNET_free (pos);
929         }
930       GNUNET_STATISTICS_update (plugin->env->stats,
931                                 gettext_noop ("# bytes currently in TCP buffers"),
932                                 - (int64_t) ret,
933                                 GNUNET_NO);
934       GNUNET_STATISTICS_update (plugin->env->stats,
935                                 gettext_noop ("# bytes discarded by TCP (timeout)"),
936                                 ret,
937                                 GNUNET_NO);
938       return 0;
939     }
940   /* copy all pending messages that would fit */
941   ret = 0;
942   cbuf = buf;
943   hd = NULL;
944   tl = NULL;
945   while (NULL != (pos = session->pending_messages_head))
946     {
947       if (ret + pos->message_size > size)
948         break;
949       GNUNET_CONTAINER_DLL_remove (session->pending_messages_head,
950                                    session->pending_messages_tail,
951                                    pos);
952       GNUNET_assert (size >= pos->message_size);
953       /* FIXME: this memcpy can be up to 7% of our total runtime */
954       memcpy (cbuf, pos->msg, pos->message_size);
955       cbuf += pos->message_size;
956       ret += pos->message_size;
957       size -= pos->message_size;
958       GNUNET_CONTAINER_DLL_insert_after (hd, tl, tl, pos);
959     }
960   /* schedule 'continuation' before callbacks so that callbacks that
961      cancel everything don't cause us to use a session that no longer
962      exists... */
963   process_pending_messages (session);
964   session->last_activity = GNUNET_TIME_absolute_get ();
965   pid = session->target;
966   /* we'll now call callbacks that may cancel the session; hence
967      we should not use 'session' after this point */
968   while (NULL != (pos = hd))
969     {
970       GNUNET_CONTAINER_DLL_remove (hd, tl, pos);
971       if (pos->transmit_cont != NULL)
972         pos->transmit_cont (pos->transmit_cont_cls,
973                             &pid, GNUNET_OK);
974       GNUNET_free (pos);
975     }
976   GNUNET_assert (hd == NULL);
977   GNUNET_assert (tl == NULL);
978 #if DEBUG_TCP > 1
979   GNUNET_log_from (GNUNET_ERROR_TYPE_DEBUG,
980                    "tcp",
981                    "Transmitting %u bytes\n", 
982                    ret);
983 #endif
984   GNUNET_STATISTICS_update (plugin->env->stats,
985                             gettext_noop ("# bytes currently in TCP buffers"),
986                             - (int64_t) ret,
987                             GNUNET_NO);
988   GNUNET_STATISTICS_update (plugin->env->stats,
989                             gettext_noop ("# bytes transmitted via TCP"),
990                             ret,
991                             GNUNET_NO);
992   return ret;
993 }
994
995
996 /**
997  * If we have pending messages, ask the server to
998  * transmit them (schedule the respective tasks, etc.)
999  *
1000  * @param session for which session should we do this
1001  */
1002 static void
1003 process_pending_messages (struct Session *session)
1004 {
1005   struct PendingMessage *pm;
1006
1007   GNUNET_assert (session->client != NULL);
1008   if (session->transmit_handle != NULL)
1009     return;
1010   if (NULL == (pm = session->pending_messages_head))
1011     return;
1012
1013   session->transmit_handle
1014     = GNUNET_SERVER_notify_transmit_ready (session->client,
1015                                            pm->message_size,
1016                                            GNUNET_TIME_absolute_get_remaining
1017                                            (pm->timeout),
1018                                            &do_transmit, session);
1019 }
1020
1021
1022 /**
1023  * Functions with this signature are called whenever we need
1024  * to close a session due to a disconnect or failure to
1025  * establish a connection.
1026  *
1027  * @param session session to close down
1028  */
1029 static void
1030 disconnect_session (struct Session *session)
1031 {
1032   struct Session *prev;
1033   struct Session *pos;
1034   struct PendingMessage *pm;
1035
1036 #if DEBUG_TCP
1037   GNUNET_log_from (GNUNET_ERROR_TYPE_DEBUG,
1038                    "tcp",
1039                    "Disconnecting from `%4s' at %s.\n",
1040                    GNUNET_i2s (&session->target),
1041                    (session->connect_addr != NULL) ?
1042                    tcp_address_to_string (session->plugin,
1043                                           session->connect_addr,
1044                                           session->connect_alen) : "*");
1045 #endif
1046   /* remove from session list */
1047   prev = NULL;
1048   pos = session->plugin->sessions;
1049   while (pos != session)
1050     {
1051       prev = pos;
1052       pos = pos->next;
1053     }
1054   if (prev == NULL)
1055     session->plugin->sessions = session->next;
1056   else
1057     prev->next = session->next;
1058   session->plugin->env->session_end (session->plugin->env->cls,
1059                                      &session->target,
1060                                      session);
1061   /* clean up state */
1062   if (session->transmit_handle != NULL)
1063     {
1064       GNUNET_CONNECTION_notify_transmit_ready_cancel
1065         (session->transmit_handle);
1066       session->transmit_handle = NULL;
1067     }
1068   while (NULL != (pm = session->pending_messages_head))
1069     {
1070 #if DEBUG_TCP
1071       GNUNET_log_from (GNUNET_ERROR_TYPE_DEBUG,
1072                        "tcp",
1073                        pm->transmit_cont != NULL
1074                        ? "Could not deliver message to `%4s'.\n"
1075                        : "Could not deliver message to `%4s', notifying.\n",
1076                        GNUNET_i2s (&session->target));
1077 #endif
1078       GNUNET_STATISTICS_update (session->plugin->env->stats,
1079                                 gettext_noop ("# bytes currently in TCP buffers"),
1080                                 - (int64_t) pm->message_size,
1081                                 GNUNET_NO);
1082       GNUNET_STATISTICS_update (session->plugin->env->stats,
1083                                 gettext_noop ("# bytes discarded by TCP (disconnect)"),
1084                                 pm->message_size,
1085                                 GNUNET_NO);
1086       GNUNET_CONTAINER_DLL_remove (session->pending_messages_head,
1087                                    session->pending_messages_tail,
1088                                    pm);
1089       if (NULL != pm->transmit_cont)
1090         pm->transmit_cont (pm->transmit_cont_cls,
1091                            &session->target, GNUNET_SYSERR);
1092       GNUNET_free (pm);
1093     }
1094   GNUNET_break (session->client != NULL);
1095   if (session->receive_delay_task != GNUNET_SCHEDULER_NO_TASK)
1096     {
1097       GNUNET_SCHEDULER_cancel (session->receive_delay_task);
1098       if (session->client != NULL)
1099         GNUNET_SERVER_receive_done (session->client,
1100                                     GNUNET_SYSERR);     
1101     }
1102   else if (session->client != NULL)
1103     GNUNET_SERVER_client_drop (session->client);
1104   GNUNET_STATISTICS_update (session->plugin->env->stats,
1105                             gettext_noop ("# TCP sessions active"),
1106                             -1,
1107                             GNUNET_NO);
1108   GNUNET_free_non_null (session->connect_addr);
1109   GNUNET_free (session);
1110 }
1111
1112
1113 /**
1114  * Given two otherwise equivalent sessions, pick the better one.
1115  *
1116  * @param s1 one session (also default)
1117  * @param s2 other session
1118  * @return "better" session (more active)
1119  */
1120 static struct Session *
1121 select_better_session (struct Session *s1,
1122                        struct Session *s2)
1123 {
1124   if (s1 == NULL)
1125     return s2;
1126   if (s2 == NULL)
1127     return s1;
1128   if ( (s1->expecting_welcome == GNUNET_NO) &&
1129        (s2->expecting_welcome == GNUNET_YES) )
1130     return s1;
1131   if ( (s1->expecting_welcome == GNUNET_YES) &&
1132        (s2->expecting_welcome == GNUNET_NO) )
1133     return s2;
1134   if (s1->last_activity.abs_value < s2->last_activity.abs_value)
1135     return s2;
1136   if (s1->last_activity.abs_value > s2->last_activity.abs_value)
1137     return s1;
1138   if ( (GNUNET_YES == s1->inbound) &&
1139        (GNUNET_NO  == s2->inbound) )
1140     return s1;
1141   if ( (GNUNET_NO  == s1->inbound) &&
1142        (GNUNET_YES == s2->inbound) )
1143     return s2;
1144   return s1;
1145 }
1146
1147
1148 /**
1149  * We learned about a peer (possibly behind NAT) so run the
1150  * gnunet-nat-client to send dummy ICMP responses.
1151  *
1152  * @param plugin the plugin for this transport
1153  * @param sa the address of the peer (IPv4-only)
1154  */
1155 static void
1156 run_gnunet_nat_client (struct Plugin *plugin, 
1157                        const struct sockaddr_in *sa)
1158 {
1159   char inet4[INET_ADDRSTRLEN];
1160   char port_as_string[6];
1161   struct GNUNET_OS_Process *proc;
1162
1163   if (plugin->internal_address == NULL)
1164     {
1165       GNUNET_log_from (GNUNET_ERROR_TYPE_WARNING,
1166                        "tcp",
1167                        _("Internal IP address not known, cannot use ICMP NAT traversal method\n"));
1168       return;
1169     }
1170   GNUNET_assert (sa->sin_family == AF_INET);
1171   if (NULL == inet_ntop (AF_INET,
1172                          &sa->sin_addr,
1173                          inet4, INET_ADDRSTRLEN))
1174     {
1175       GNUNET_log_strerror (GNUNET_ERROR_TYPE_WARNING, "inet_ntop");
1176       return;
1177     }
1178   GNUNET_snprintf(port_as_string, 
1179                   sizeof (port_as_string),
1180                   "%d", 
1181                   plugin->adv_port);
1182 #if DEBUG_TCP_NAT
1183   GNUNET_log_from (GNUNET_ERROR_TYPE_DEBUG,
1184                    "tcp",
1185                    _("Running gnunet-nat-client %s %s %u\n"), 
1186                    plugin->internal_address,
1187                    inet4,
1188                    (unsigned int) plugin->adv_port);
1189 #endif
1190   proc = GNUNET_OS_start_process (NULL, 
1191                                   NULL, 
1192                                   "gnunet-nat-client",
1193                                   "gnunet-nat-client",
1194                                   plugin->internal_address, 
1195                                   inet4,
1196                                   port_as_string, 
1197                                   NULL);
1198   if (NULL == proc)
1199     return;
1200   /* we know that the gnunet-nat-client will terminate virtually
1201      instantly */
1202   GNUNET_OS_process_wait (proc);
1203   GNUNET_OS_process_close (proc);
1204 }
1205
1206
1207 /**
1208  * Function that can be used by the transport service to transmit
1209  * a message using the plugin.   Note that in the case of a
1210  * peer disconnecting, the continuation MUST be called
1211  * prior to the disconnect notification itself.  This function
1212  * will be called with this peer's HELLO message to initiate
1213  * a fresh connection to another peer.
1214  *
1215  * @param cls closure
1216  * @param target who should receive this message
1217  * @param msg the message to transmit
1218  * @param msgbuf_size number of bytes in 'msg'
1219  * @param priority how important is the message (most plugins will
1220  *                 ignore message priority and just FIFO)
1221  * @param timeout how long to wait at most for the transmission (does not
1222  *                require plugins to discard the message after the timeout,
1223  *                just advisory for the desired delay; most plugins will ignore
1224  *                this as well)
1225  * @param session which session must be used (or NULL for "any")
1226  * @param addr the address to use (can be NULL if the plugin
1227  *                is "on its own" (i.e. re-use existing TCP connection))
1228  * @param addrlen length of the address in bytes
1229  * @param force_address GNUNET_YES if the plugin MUST use the given address,
1230  *                GNUNET_NO means the plugin may use any other address and
1231  *                GNUNET_SYSERR means that only reliable existing
1232  *                bi-directional connections should be used (regardless
1233  *                of address)
1234  * @param cont continuation to call once the message has
1235  *        been transmitted (or if the transport is ready
1236  *        for the next transmission call; or if the
1237  *        peer disconnected...); can be NULL
1238  * @param cont_cls closure for cont
1239  * @return number of bytes used (on the physical network, with overheads);
1240  *         -1 on hard errors (i.e. address invalid); 0 is a legal value
1241  *         and does NOT mean that the message was not transmitted (DV and NAT)
1242  */
1243 static ssize_t
1244 tcp_plugin_send (void *cls,
1245                  const struct GNUNET_PeerIdentity *target,
1246                  const char *msg,
1247                  size_t msgbuf_size,
1248                  uint32_t priority,
1249                  struct GNUNET_TIME_Relative timeout,
1250                  struct Session *session,
1251                  const void *addr,
1252                  size_t addrlen,
1253                  int force_address,
1254                  GNUNET_TRANSPORT_TransmitContinuation cont, void *cont_cls)
1255 {
1256   struct Plugin *plugin = cls;
1257   struct Session *cand_session;
1258   struct Session *next;
1259   struct PendingMessage *pm;
1260   struct GNUNET_CONNECTION_Handle *sa;
1261   int af;
1262   const void *sb;
1263   size_t sbs;
1264   struct sockaddr_in a4;
1265   struct sockaddr_in6 a6;
1266   const struct IPv4TcpAddress *t4;
1267   const struct IPv6TcpAddress *t6;
1268   unsigned int is_natd;
1269
1270   GNUNET_STATISTICS_update (plugin->env->stats,
1271                             gettext_noop ("# bytes TCP was asked to transmit"),
1272                             msgbuf_size,
1273                             GNUNET_NO);
1274   /* FIXME: we could do this cheaper with a hash table
1275      where we could restrict the iteration to entries that match
1276      the target peer... */
1277   is_natd = GNUNET_NO;
1278   if (session == NULL)
1279     {
1280       cand_session = NULL;
1281       next = plugin->sessions;
1282       while (NULL != (session = next))
1283         {
1284           next = session->next;
1285           GNUNET_assert (session->client != NULL);
1286           if (0 != memcmp (target,
1287                            &session->target,
1288                            sizeof (struct GNUNET_PeerIdentity)))
1289             continue;
1290           if ( ( (GNUNET_SYSERR == force_address) &&
1291                  (session->expecting_welcome == GNUNET_NO) ) ||
1292                (GNUNET_NO == force_address) )
1293             {
1294               cand_session = select_better_session (cand_session,
1295                                                     session);
1296               continue;
1297             }
1298           if (GNUNET_SYSERR == force_address)
1299             continue;
1300           GNUNET_break (GNUNET_YES == force_address);
1301           if (addr == NULL)
1302             {
1303               GNUNET_break (0);
1304               break;
1305             }
1306           if ( (addrlen != session->connect_alen) && 
1307                (session->is_nat == GNUNET_NO) )
1308             continue;
1309           if ((0 != memcmp (session->connect_addr,
1310                            addr,
1311                            addrlen)) && (session->is_nat == GNUNET_NO))
1312             continue;
1313           cand_session = select_better_session (cand_session,
1314                                                 session);       
1315         }
1316       session = cand_session;
1317     }
1318   if ( (session == NULL) &&
1319        (addr == NULL) )
1320     {
1321 #if DEBUG_TCP
1322       GNUNET_log_from (GNUNET_ERROR_TYPE_DEBUG,
1323                        "tcp",
1324                        "Asked to transmit to `%4s' without address and I have no existing connection (failing).\n",
1325                        GNUNET_i2s (target));
1326 #endif
1327       GNUNET_STATISTICS_update (plugin->env->stats,
1328                                 gettext_noop ("# bytes discarded by TCP (no address and no connection)"),
1329                                 msgbuf_size,
1330                                 GNUNET_NO);
1331       return -1;
1332     }
1333   if (session == NULL)
1334     {
1335       if (addrlen == sizeof (struct IPv6TcpAddress))
1336         {
1337           t6 = addr;
1338           af = AF_INET6;
1339           memset (&a6, 0, sizeof (a6));
1340 #if HAVE_SOCKADDR_IN_SIN_LEN
1341           a6.sin6_len = sizeof (a6);
1342 #endif
1343           a6.sin6_family = AF_INET6;
1344           a6.sin6_port = t6->t6_port;
1345           if (t6->t6_port == 0)
1346             is_natd = GNUNET_YES;
1347           memcpy (&a6.sin6_addr,
1348                   &t6->ipv6_addr,
1349                   sizeof (struct in6_addr));
1350           sb = &a6;
1351           sbs = sizeof (a6);
1352         }
1353       else if (addrlen == sizeof (struct IPv4TcpAddress))
1354         {
1355           t4 = addr;
1356           af = AF_INET;
1357           memset (&a4, 0, sizeof (a4));
1358 #if HAVE_SOCKADDR_IN_SIN_LEN
1359           a4.sin_len = sizeof (a4);
1360 #endif
1361           a4.sin_family = AF_INET;
1362           a4.sin_port = t4->t_port;
1363           if (t4->t_port == 0)
1364             is_natd = GNUNET_YES;
1365           a4.sin_addr.s_addr = t4->ipv4_addr;
1366           sb = &a4;
1367           sbs = sizeof (a4);
1368         }
1369       else
1370         {
1371           GNUNET_log_from (GNUNET_ERROR_TYPE_ERROR,
1372                            "tcp",
1373                            _("Address of unexpected length: %u\n"),
1374                            addrlen);
1375           GNUNET_break (0);
1376           return -1;
1377         }
1378
1379       if ((is_natd == GNUNET_YES) && (addrlen == sizeof (struct IPv6TcpAddress)))
1380         return -1; /* NAT client only works with IPv4 addresses */
1381
1382
1383       if ( (plugin->enable_nat_client == GNUNET_YES) && 
1384            (is_natd == GNUNET_YES) &&
1385            (GNUNET_NO == GNUNET_CONTAINER_multihashmap_contains(plugin->nat_wait_conns,
1386                                                                 &target->hashPubKey)) )
1387         {
1388 #if DEBUG_TCP_NAT
1389           GNUNET_log_from (GNUNET_ERROR_TYPE_DEBUG,
1390                            "tcp",
1391                            _("Found valid IPv4 NAT address (creating session)!\n"));
1392 #endif
1393           session = create_session (plugin,
1394                                     target,
1395                                     NULL, 
1396                                     GNUNET_YES);
1397
1398           /* create new message entry */
1399           pm = GNUNET_malloc (sizeof (struct PendingMessage) + msgbuf_size);
1400           /* FIXME: the memset of this malloc can be up to 2% of our total runtime */
1401           pm->msg = (const char*) &pm[1];
1402           memcpy (&pm[1], msg, msgbuf_size);
1403           /* FIXME: this memcpy can be up to 7% of our total run-time
1404              (for transport service) */
1405           pm->message_size = msgbuf_size;
1406           pm->timeout = GNUNET_TIME_relative_to_absolute (timeout);
1407           pm->transmit_cont = cont;
1408           pm->transmit_cont_cls = cont_cls;
1409
1410           /* append pm to pending_messages list */
1411           GNUNET_CONTAINER_DLL_insert_after (session->pending_messages_head,
1412                                              session->pending_messages_tail,
1413                                              session->pending_messages_tail,
1414                                              pm);
1415
1416           GNUNET_assert(GNUNET_CONTAINER_multihashmap_put(plugin->nat_wait_conns,
1417                                                           &target->hashPubKey,
1418                                                           session, 
1419                                                           GNUNET_CONTAINER_MULTIHASHMAPOPTION_UNIQUE_ONLY) == GNUNET_OK);
1420 #if DEBUG_TCP_NAT
1421           GNUNET_log_from (GNUNET_ERROR_TYPE_DEBUG,
1422                            "tcp",
1423                            "Created NAT WAIT connection to `%4s' at `%s'\n",
1424                            GNUNET_i2s (target),
1425                            GNUNET_a2s (sb, sbs));
1426 #endif
1427           run_gnunet_nat_client (plugin, &a4);
1428           return 0;
1429         }
1430       if ( (plugin->enable_nat_client == GNUNET_YES) && 
1431            (is_natd == GNUNET_YES) && 
1432            (GNUNET_YES == GNUNET_CONTAINER_multihashmap_contains(plugin->nat_wait_conns, 
1433                                                                  &target->hashPubKey)) )
1434         {
1435           /* Only do one NAT punch attempt per peer identity */
1436           return -1;
1437         }
1438       sa = GNUNET_CONNECTION_create_from_sockaddr (af, sb, sbs);
1439       if (sa == NULL)
1440         {
1441 #if DEBUG_TCP
1442           GNUNET_log_from (GNUNET_ERROR_TYPE_DEBUG,
1443                            "tcp",
1444                            "Failed to create connection to `%4s' at `%s'\n",
1445                            GNUNET_i2s (target),
1446                            GNUNET_a2s (sb, sbs));
1447 #endif
1448           GNUNET_STATISTICS_update (plugin->env->stats,
1449                                     gettext_noop ("# bytes discarded by TCP (failed to connect)"),
1450                                     msgbuf_size,
1451                                     GNUNET_NO);
1452           return -1;
1453         }
1454 #if DEBUG_TCP_NAT
1455       GNUNET_log_from (GNUNET_ERROR_TYPE_DEBUG,
1456                        "tcp",
1457                        "Asked to transmit to `%4s', creating fresh session using address `%s'.\n",
1458                        GNUNET_i2s (target),
1459                        GNUNET_a2s (sb, sbs));
1460 #endif
1461       session = create_session (plugin,
1462                                 target,
1463                                 GNUNET_SERVER_connect_socket (plugin->server,
1464                                                               sa), 
1465                                 GNUNET_NO);
1466       session->connect_addr = GNUNET_malloc (addrlen);
1467       memcpy (session->connect_addr,
1468               addr,
1469               addrlen);
1470       session->connect_alen = addrlen;
1471     }
1472   GNUNET_assert (session != NULL);
1473   GNUNET_assert (session->client != NULL);
1474   GNUNET_STATISTICS_update (plugin->env->stats,
1475                             gettext_noop ("# bytes currently in TCP buffers"),
1476                             msgbuf_size,
1477                             GNUNET_NO);
1478   /* create new message entry */
1479   pm = GNUNET_malloc (sizeof (struct PendingMessage) + msgbuf_size);
1480   pm->msg = (const char*) &pm[1];
1481   memcpy (&pm[1], msg, msgbuf_size);
1482   pm->message_size = msgbuf_size;
1483   pm->timeout = GNUNET_TIME_relative_to_absolute (timeout);
1484   pm->transmit_cont = cont;
1485   pm->transmit_cont_cls = cont_cls;
1486
1487   /* append pm to pending_messages list */
1488   GNUNET_CONTAINER_DLL_insert_after (session->pending_messages_head,
1489                                      session->pending_messages_tail,
1490                                      session->pending_messages_tail,
1491                                      pm);
1492 #if DEBUG_TCP
1493   GNUNET_log_from (GNUNET_ERROR_TYPE_DEBUG,
1494                    "tcp",
1495                    "Asked to transmit %u bytes to `%s', added message to list.\n",
1496                    msgbuf_size,
1497                    GNUNET_i2s (target));
1498 #endif
1499   process_pending_messages (session);
1500   return msgbuf_size;
1501 }
1502
1503
1504 /**
1505  * Function that can be called to force a disconnect from the
1506  * specified neighbour.  This should also cancel all previously
1507  * scheduled transmissions.  Obviously the transmission may have been
1508  * partially completed already, which is OK.  The plugin is supposed
1509  * to close the connection (if applicable) and no longer call the
1510  * transmit continuation(s).
1511  *
1512  * Finally, plugin MUST NOT call the services's receive function to
1513  * notify the service that the connection to the specified target was
1514  * closed after a getting this call.
1515  *
1516  * @param cls closure
1517  * @param target peer for which the last transmission is
1518  *        to be cancelled
1519  */
1520 static void
1521 tcp_plugin_disconnect (void *cls,
1522                        const struct GNUNET_PeerIdentity *target)
1523 {
1524   struct Plugin *plugin = cls;
1525   struct Session *session;
1526   struct Session *next;
1527   struct PendingMessage *pm;
1528
1529 #if DEBUG_TCP
1530   GNUNET_log_from (GNUNET_ERROR_TYPE_DEBUG,
1531                    "tcp",
1532                    "Asked to cancel session with `%4s'\n",
1533                    GNUNET_i2s (target));
1534 #endif
1535   next = plugin->sessions;
1536   while (NULL != (session = next))
1537     {
1538       next = session->next;
1539       if (0 != memcmp (target,
1540                        &session->target,
1541                        sizeof (struct GNUNET_PeerIdentity)))
1542         continue;
1543       pm = session->pending_messages_head;
1544       while (pm != NULL)
1545         {
1546           pm->transmit_cont = NULL;
1547           pm->transmit_cont_cls = NULL;
1548           pm = pm->next;
1549         }
1550       disconnect_session (session);
1551     }
1552 }
1553
1554
1555 /**
1556  * Context for address to string conversion.
1557  */
1558 struct PrettyPrinterContext
1559 {
1560   /**
1561    * Function to call with the result.
1562    */
1563   GNUNET_TRANSPORT_AddressStringCallback asc;
1564
1565   /**
1566    * Clsoure for 'asc'.
1567    */
1568   void *asc_cls;
1569
1570   /**
1571    * Port to add after the IP address.
1572    */
1573   uint16_t port;
1574 };
1575
1576
1577 /**
1578  * Append our port and forward the result.
1579  *
1580  * @param cls the 'struct PrettyPrinterContext*'
1581  * @param hostname hostname part of the address
1582  */
1583 static void
1584 append_port (void *cls, const char *hostname)
1585 {
1586   struct PrettyPrinterContext *ppc = cls;
1587   char *ret;
1588
1589   if (hostname == NULL)
1590     {
1591       ppc->asc (ppc->asc_cls, NULL);
1592       GNUNET_free (ppc);
1593       return;
1594     }
1595   GNUNET_asprintf (&ret, "%s:%d", hostname, ppc->port);
1596   ppc->asc (ppc->asc_cls, ret);
1597   GNUNET_free (ret);
1598 }
1599
1600
1601 /**
1602  * Convert the transports address to a nice, human-readable
1603  * format.
1604  *
1605  * @param cls closure
1606  * @param type name of the transport that generated the address
1607  * @param addr one of the addresses of the host, NULL for the last address
1608  *        the specific address format depends on the transport
1609  * @param addrlen length of the address
1610  * @param numeric should (IP) addresses be displayed in numeric form?
1611  * @param timeout after how long should we give up?
1612  * @param asc function to call on each string
1613  * @param asc_cls closure for asc
1614  */
1615 static void
1616 tcp_plugin_address_pretty_printer (void *cls,
1617                                    const char *type,
1618                                    const void *addr,
1619                                    size_t addrlen,
1620                                    int numeric,
1621                                    struct GNUNET_TIME_Relative timeout,
1622                                    GNUNET_TRANSPORT_AddressStringCallback asc,
1623                                    void *asc_cls)
1624 {
1625   struct Plugin *plugin = cls;
1626   struct PrettyPrinterContext *ppc;
1627   const void *sb;
1628   size_t sbs;
1629   struct sockaddr_in a4;
1630   struct sockaddr_in6 a6;
1631   const struct IPv4TcpAddress *t4;
1632   const struct IPv6TcpAddress *t6;
1633   uint16_t port;
1634
1635   if (addrlen == sizeof (struct IPv6TcpAddress))
1636     {
1637       t6 = addr;
1638       memset (&a6, 0, sizeof (a6));
1639       a6.sin6_family = AF_INET6;
1640       a6.sin6_port = t6->t6_port;
1641       memcpy (&a6.sin6_addr,
1642               &t6->ipv6_addr,
1643               sizeof (struct in6_addr));
1644       port = ntohs (t6->t6_port);
1645       sb = &a6;
1646       sbs = sizeof (a6);
1647     }
1648   else if (addrlen == sizeof (struct IPv4TcpAddress))
1649     {
1650       t4 = addr;
1651       memset (&a4, 0, sizeof (a4));
1652       a4.sin_family = AF_INET;
1653       a4.sin_port = t4->t_port;
1654       a4.sin_addr.s_addr = t4->ipv4_addr;
1655       port = ntohs (t4->t_port);
1656       sb = &a4;
1657       sbs = sizeof (a4);
1658     }
1659   else
1660     {
1661       /* invalid address */
1662       GNUNET_break_op (0);
1663       asc (asc_cls, NULL);
1664       return;
1665     }
1666   ppc = GNUNET_malloc (sizeof (struct PrettyPrinterContext));
1667   ppc->asc = asc;
1668   ppc->asc_cls = asc_cls;
1669   ppc->port = port;
1670   GNUNET_RESOLVER_hostname_get (plugin->env->cfg,
1671                                 sb,
1672                                 sbs,
1673                                 !numeric, timeout, &append_port, ppc);
1674 }
1675
1676
1677 /**
1678  * Check if the given port is plausible (must be either our listen
1679  * port or our advertised port), or any port if we are behind NAT
1680  * and do not have a port open.  If it is neither, we return
1681  * GNUNET_SYSERR.
1682  *
1683  * @param plugin global variables
1684  * @param in_port port number to check
1685  * @return GNUNET_OK if port is either open_port or adv_port
1686  */
1687 static int
1688 check_port (struct Plugin *plugin, 
1689             uint16_t in_port)
1690 {
1691   if ((in_port == plugin->adv_port) || (in_port == plugin->open_port))
1692     return GNUNET_OK;
1693   return GNUNET_SYSERR;
1694 }
1695
1696
1697 /**
1698  * Function that will be called to check if a binary address for this
1699  * plugin is well-formed and corresponds to an address for THIS peer
1700  * (as per our configuration).  Naturally, if absolutely necessary,
1701  * plugins can be a bit conservative in their answer, but in general
1702  * plugins should make sure that the address does not redirect
1703  * traffic to a 3rd party that might try to man-in-the-middle our
1704  * traffic.
1705  *
1706  * @param cls closure, our 'struct Plugin*'
1707  * @param addr pointer to the address
1708  * @param addrlen length of addr
1709  * @return GNUNET_OK if this is a plausible address for this peer
1710  *         and transport, GNUNET_SYSERR if not
1711  */
1712 static int
1713 tcp_plugin_check_address (void *cls,
1714                           const void *addr,
1715                           size_t addrlen)
1716 {
1717   struct Plugin *plugin = cls;
1718   struct IPv4TcpAddress *v4;
1719   struct IPv6TcpAddress *v6;
1720
1721   if ((addrlen != sizeof (struct IPv4TcpAddress)) &&
1722       (addrlen != sizeof (struct IPv6TcpAddress)))
1723     {
1724       GNUNET_break_op (0);
1725       return GNUNET_SYSERR;
1726     }
1727   if (addrlen == sizeof (struct IPv4TcpAddress))
1728     {
1729       v4 = (struct IPv4TcpAddress *) addr;
1730       if (GNUNET_OK ==
1731           check_mapped_addr (plugin, v4, sizeof (struct IPv4TcpAddress)))
1732         return GNUNET_OK;
1733       if (GNUNET_OK !=
1734           check_port (plugin, ntohs (v4->t_port)))
1735         return GNUNET_SYSERR;
1736       if (GNUNET_OK !=
1737           check_local_addr (plugin, &v4->ipv4_addr, sizeof (struct in_addr)))
1738         return GNUNET_SYSERR;   
1739     }
1740   else
1741     {
1742       v6 = (struct IPv6TcpAddress *) addr;
1743       if (IN6_IS_ADDR_LINKLOCAL (&v6->ipv6_addr))
1744         {
1745           GNUNET_break_op (0);
1746           return GNUNET_SYSERR;
1747         }
1748       if (GNUNET_OK ==
1749           check_mapped_addr (plugin, v6, sizeof (struct IPv6TcpAddress)))
1750         return GNUNET_OK;
1751       if (GNUNET_OK !=
1752           check_port (plugin, ntohs (v6->t6_port)))
1753         return GNUNET_SYSERR;
1754       if (GNUNET_OK !=
1755           check_local_addr (plugin, &v6->ipv6_addr, sizeof (struct in6_addr)))
1756         return GNUNET_SYSERR;
1757     }
1758   return GNUNET_OK;
1759 }
1760
1761
1762 /**
1763  * We've received a nat probe from this peer via TCP.  Finish
1764  * creating the client session and resume sending of queued
1765  * messages.
1766  *
1767  * @param cls closure
1768  * @param client identification of the client
1769  * @param message the actual message
1770  */
1771 static void
1772 handle_tcp_nat_probe (void *cls,
1773                       struct GNUNET_SERVER_Client *client,
1774                       const struct GNUNET_MessageHeader *message)
1775 {
1776   struct Plugin *plugin = cls;
1777   struct Session *session;
1778   const struct TCP_NAT_ProbeMessage *tcp_nat_probe;
1779   size_t alen;
1780   void *vaddr;
1781   struct IPv4TcpAddress *t4;
1782   struct IPv6TcpAddress *t6;
1783   const struct sockaddr_in *s4;
1784   const struct sockaddr_in6 *s6;
1785
1786 #if DEBUG_TCP_NAT
1787   GNUNET_log_from (GNUNET_ERROR_TYPE_DEBUG, 
1788                    "tcp",
1789                    "received tcp NAT probe\n");
1790 #endif
1791   /* We have received a TCP NAT probe, meaning we (hopefully) initiated
1792    * a connection to this peer by running gnunet-nat-client.  This peer
1793    * received the punch message and now wants us to use the new connection
1794    * as the default for that peer.  Do so and then send a WELCOME message
1795    * so we can really be connected!
1796    */
1797   if (ntohs(message->size) != sizeof(struct TCP_NAT_ProbeMessage))
1798     {
1799       GNUNET_break_op(0);
1800       return;
1801     }
1802   tcp_nat_probe = (const struct TCP_NAT_ProbeMessage *)message;
1803   session = GNUNET_CONTAINER_multihashmap_get(plugin->nat_wait_conns, 
1804                                               &tcp_nat_probe->clientIdentity.hashPubKey);
1805   if (session == NULL)
1806     {
1807 #if DEBUG_TCP_NAT
1808       GNUNET_log_from (GNUNET_ERROR_TYPE_DEBUG,
1809                        "tcp",
1810                        "Did NOT find session for NAT probe!\n");
1811 #endif
1812       GNUNET_SERVER_receive_done (client, GNUNET_OK);
1813       return;
1814     }
1815 #if DEBUG_TCP_NAT
1816   GNUNET_log_from (GNUNET_ERROR_TYPE_DEBUG, 
1817                    "tcp",
1818                    "Found session for NAT probe!\n");
1819 #endif
1820   GNUNET_assert(GNUNET_CONTAINER_multihashmap_remove(plugin->nat_wait_conns, 
1821                                                      &tcp_nat_probe->clientIdentity.hashPubKey,
1822                                                      session) == GNUNET_YES);
1823   if (GNUNET_OK !=
1824       GNUNET_SERVER_client_get_address (client, &vaddr, &alen))
1825     {
1826       GNUNET_break (0);
1827       GNUNET_free (session);
1828       GNUNET_SERVER_receive_done (client, GNUNET_OK);
1829       return;
1830     }
1831
1832   GNUNET_SERVER_client_keep (client);
1833   session->client = client;
1834   session->last_activity = GNUNET_TIME_absolute_get ();
1835   session->inbound = GNUNET_NO;
1836
1837 #if DEBUG_TCP_NAT
1838   GNUNET_log_from (GNUNET_ERROR_TYPE_DEBUG,
1839                    "tcp",
1840                    "Found address `%s' for incoming connection\n",
1841                    GNUNET_a2s (vaddr, alen));
1842 #endif
1843   switch (((const struct sockaddr *)vaddr)->sa_family)
1844     {
1845     case AF_INET:
1846       s4 = vaddr;
1847       t4 = GNUNET_malloc (sizeof (struct IPv4TcpAddress));
1848       t4->t_port = s4->sin_port;
1849       t4->ipv4_addr = s4->sin_addr.s_addr;
1850       session->connect_addr = t4;
1851       session->connect_alen = sizeof (struct IPv4TcpAddress);
1852       break;
1853     case AF_INET6:    
1854       s6 = vaddr;
1855       t6 = GNUNET_malloc (sizeof (struct IPv6TcpAddress));
1856       t6->t6_port = s6->sin6_port;
1857       memcpy (&t6->ipv6_addr,
1858               &s6->sin6_addr,
1859               sizeof (struct in6_addr));
1860       session->connect_addr = t6;
1861       session->connect_alen = sizeof (struct IPv6TcpAddress);
1862       break;
1863     default:
1864       GNUNET_break_op (0);
1865 #if DEBUG_TCP_NAT
1866       GNUNET_log_from (GNUNET_ERROR_TYPE_DEBUG,
1867                        "tcp",
1868                        "Bad address for incoming connection!\n");
1869 #endif
1870       GNUNET_free (vaddr);
1871       GNUNET_SERVER_client_drop (client);
1872       GNUNET_free (session);
1873       GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
1874       return;
1875     }
1876   GNUNET_free (vaddr);
1877   
1878   session->next = plugin->sessions;
1879   plugin->sessions = session;
1880   GNUNET_STATISTICS_update (plugin->env->stats,
1881                             gettext_noop ("# TCP sessions active"),
1882                             1,
1883                             GNUNET_NO);
1884   process_pending_messages (session);
1885   GNUNET_SERVER_receive_done (client, GNUNET_OK);
1886 }
1887
1888
1889 /**
1890  * We've received a welcome from this peer via TCP.  Possibly create a
1891  * fresh client record and send back our welcome.
1892  *
1893  * @param cls closure
1894  * @param client identification of the client
1895  * @param message the actual message
1896  */
1897 static void
1898 handle_tcp_welcome (void *cls,
1899                     struct GNUNET_SERVER_Client *client,
1900                     const struct GNUNET_MessageHeader *message)
1901 {
1902   struct Plugin *plugin = cls;
1903   const struct WelcomeMessage *wm = (const struct WelcomeMessage *) message;
1904   struct Session *session;
1905   size_t alen;
1906   void *vaddr;
1907   struct IPv4TcpAddress *t4;
1908   struct IPv6TcpAddress *t6;
1909   const struct sockaddr_in *s4;
1910   const struct sockaddr_in6 *s6;
1911
1912 #if DEBUG_TCP
1913   GNUNET_log_from (GNUNET_ERROR_TYPE_DEBUG,
1914                    "tcp",
1915                    "Received %s message from `%4s'.\n",
1916                    "WELCOME",
1917                    GNUNET_i2s (&wm->clientIdentity));
1918 #endif
1919   GNUNET_STATISTICS_update (plugin->env->stats,
1920                             gettext_noop ("# TCP WELCOME messages received"),
1921                             1,
1922                             GNUNET_NO);
1923   session = find_session_by_client (plugin, client);
1924
1925   if (session == NULL)
1926     {
1927 #if DEBUG_TCP_NAT
1928       GNUNET_log_from (GNUNET_ERROR_TYPE_DEBUG,
1929                        "tcp",
1930                        "Received %s message from a `%4s', creating new session\n",
1931                        "WELCOME",
1932                        GNUNET_i2s (&wm->clientIdentity));
1933 #endif
1934       GNUNET_SERVER_client_keep (client);
1935       session = create_session (plugin,
1936                                 &wm->clientIdentity,
1937                                 client,
1938                                 GNUNET_NO);
1939       session->inbound = GNUNET_YES;
1940       if (GNUNET_OK ==
1941           GNUNET_SERVER_client_get_address (client, &vaddr, &alen))
1942         {
1943 #if DEBUG_TCP_NAT
1944           GNUNET_log_from (GNUNET_ERROR_TYPE_DEBUG,
1945                            "tcp",
1946                            "Found address `%s' for incoming connection\n",
1947                            GNUNET_a2s (vaddr, alen));
1948 #endif
1949           if (alen == sizeof (struct sockaddr_in))
1950             {
1951               s4 = vaddr;
1952               t4 = GNUNET_malloc (sizeof (struct IPv4TcpAddress));
1953               t4->t_port = s4->sin_port;
1954               t4->ipv4_addr = s4->sin_addr.s_addr;
1955               session->connect_addr = t4;
1956               session->connect_alen = sizeof (struct IPv4TcpAddress);
1957             }
1958           else if (alen == sizeof (struct sockaddr_in6))
1959             {
1960               s6 = vaddr;
1961               t6 = GNUNET_malloc (sizeof (struct IPv6TcpAddress));
1962               t6->t6_port = s6->sin6_port;
1963               memcpy (&t6->ipv6_addr,
1964                       &s6->sin6_addr,
1965                       sizeof (struct in6_addr));
1966               session->connect_addr = t6;
1967               session->connect_alen = sizeof (struct IPv6TcpAddress);
1968             }
1969
1970           GNUNET_free (vaddr);
1971         }
1972       else
1973         {
1974 #if DEBUG_TCP
1975           GNUNET_log_from (GNUNET_ERROR_TYPE_DEBUG,
1976                            "tcp",
1977                            "Did not obtain TCP socket address for incoming connection\n");
1978 #endif
1979         }
1980       process_pending_messages (session);
1981     }
1982   else
1983     {
1984 #if DEBUG_TCP_NAT
1985     if (GNUNET_OK ==
1986         GNUNET_SERVER_client_get_address (client, &vaddr, &alen))
1987       {
1988         GNUNET_log_from (GNUNET_ERROR_TYPE_DEBUG,
1989                          "tcp",
1990                          "Found address `%s' (already have session)\n",
1991                          GNUNET_a2s (vaddr, alen));
1992       }
1993 #endif
1994     }
1995
1996   if (session->expecting_welcome != GNUNET_YES)
1997     {
1998       GNUNET_break_op (0);
1999       GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
2000       return;
2001     }
2002   session->last_activity = GNUNET_TIME_absolute_get ();
2003   session->expecting_welcome = GNUNET_NO;
2004   GNUNET_SERVER_receive_done (client, GNUNET_OK);
2005 }
2006
2007
2008 /**
2009  * Task to signal the server that we can continue
2010  * receiving from the TCP client now.
2011  *
2012  * @param cls the 'struct Session*'
2013  * @param tc task context (unused)
2014  */
2015 static void
2016 delayed_done (void *cls, 
2017               const struct GNUNET_SCHEDULER_TaskContext *tc)
2018 {
2019   struct Session *session = cls;
2020   struct GNUNET_TIME_Relative delay;
2021
2022   session->receive_delay_task = GNUNET_SCHEDULER_NO_TASK;
2023   delay = session->plugin->env->receive (session->plugin->env->cls,
2024                                          &session->target,
2025                                          NULL,
2026                                          NULL, 0,
2027                                          session,
2028                                          NULL, 0);
2029   if (delay.rel_value == 0)
2030     GNUNET_SERVER_receive_done (session->client, GNUNET_OK);
2031   else
2032     session->receive_delay_task =
2033       GNUNET_SCHEDULER_add_delayed (delay, &delayed_done, session);
2034 }
2035
2036
2037 /**
2038  * We've received data for this peer via TCP.  Unbox,
2039  * compute latency and forward.
2040  *
2041  * @param cls closure
2042  * @param client identification of the client
2043  * @param message the actual message
2044  */
2045 static void
2046 handle_tcp_data (void *cls,
2047                  struct GNUNET_SERVER_Client *client,
2048                  const struct GNUNET_MessageHeader *message)
2049 {
2050   struct Plugin *plugin = cls;
2051   struct Session *session;
2052   struct GNUNET_TIME_Relative delay;
2053   uint16_t type;
2054
2055   type = ntohs (message->type);
2056   if ( (GNUNET_MESSAGE_TYPE_TRANSPORT_TCP_WELCOME == type) || 
2057        (GNUNET_MESSAGE_TYPE_TRANSPORT_TCP_NAT_PROBE == type) )
2058     {
2059       /* We don't want to propagate WELCOME and NAT Probe messages up! */
2060       GNUNET_SERVER_receive_done (client, GNUNET_OK);
2061       return;
2062     }
2063   session = find_session_by_client (plugin, client);
2064   if ( (NULL == session) || (GNUNET_YES == session->expecting_welcome) )
2065     {
2066       GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
2067       return;
2068     }
2069   session->last_activity = GNUNET_TIME_absolute_get ();
2070 #if DEBUG_TCP > 1
2071   GNUNET_log_from (GNUNET_ERROR_TYPE_DEBUG,
2072                    "tcp",
2073                    "Passing %u bytes of type %u from `%4s' to transport service.\n",
2074                    (unsigned int) ntohs (message->size),
2075                    (unsigned int) ntohs (message->type),
2076                    GNUNET_i2s (&session->target));
2077 #endif
2078   GNUNET_STATISTICS_update (plugin->env->stats,
2079                             gettext_noop ("# bytes received via TCP"),
2080                             ntohs (message->size),
2081                             GNUNET_NO);
2082   struct GNUNET_TRANSPORT_ATS_Information distance[2];
2083   distance[0].type = htonl (GNUNET_TRANSPORT_ATS_QUALITY_NET_DISTANCE);
2084   distance[0].value = htonl (1);
2085   distance[1].type = htonl (GNUNET_TRANSPORT_ATS_ARRAY_TERMINATOR);
2086   distance[1].value = htonl (0);
2087   delay = plugin->env->receive (plugin->env->cls, &session->target, message,
2088                                 (const struct GNUNET_TRANSPORT_ATS_Information *) &distance,
2089                                 2,
2090                                 session,
2091                                 (GNUNET_YES == session->inbound) ? NULL : session->connect_addr,
2092                                 (GNUNET_YES == session->inbound) ? 0 : session->connect_alen);
2093   if (delay.rel_value == 0)
2094     GNUNET_SERVER_receive_done (client, GNUNET_OK);
2095   else
2096     session->receive_delay_task =
2097       GNUNET_SCHEDULER_add_delayed (delay, &delayed_done, session);
2098 }
2099
2100
2101 /**
2102  * Functions with this signature are called whenever a peer
2103  * is disconnected on the network level.
2104  *
2105  * @param cls closure
2106  * @param client identification of the client
2107  */
2108 static void
2109 disconnect_notify (void *cls,
2110                    struct GNUNET_SERVER_Client *client)
2111 {
2112   struct Plugin *plugin = cls;
2113   struct Session *session;
2114
2115   if (client == NULL)
2116     return;
2117   session = find_session_by_client (plugin, client);
2118   if (session == NULL)
2119     return;                     /* unknown, nothing to do */
2120 #if DEBUG_TCP
2121   GNUNET_log_from (GNUNET_ERROR_TYPE_DEBUG,
2122                    "tcp",
2123                    "Destroying session of `%4s' with %s due to network-level disconnect.\n",
2124                    GNUNET_i2s (&session->target),
2125                    (session->connect_addr != NULL) ?
2126                    tcp_address_to_string (session->plugin,
2127                                           session->connect_addr,
2128                                           session->connect_alen) : "*");
2129 #endif
2130   disconnect_session (session);
2131 }
2132
2133
2134 /**
2135  * Add the IP of our network interface to the list of
2136  * our internal IP addresses.
2137  *
2138  * @param cls the 'struct Plugin*'
2139  * @param name name of the interface
2140  * @param isDefault do we think this may be our default interface
2141  * @param addr address of the interface
2142  * @param addrlen number of bytes in addr
2143  * @return GNUNET_OK to continue iterating
2144  */
2145 static int
2146 process_interfaces (void *cls,
2147                     const char *name,
2148                     int isDefault,
2149                     const struct sockaddr *addr, socklen_t addrlen)
2150 {
2151   struct Plugin *plugin = cls;
2152   int af;
2153   struct IPv4TcpAddress t4;
2154   struct IPv6TcpAddress t6;
2155   struct IPv4TcpAddress t4_nat;
2156   struct IPv6TcpAddress t6_nat;
2157   void *arg;
2158   uint16_t args;
2159   void *arg_nat;
2160   char buf[INET_ADDRSTRLEN];
2161
2162   af = addr->sa_family;
2163   arg_nat = NULL;
2164   switch (af)
2165     {
2166     case AF_INET:
2167       t4.ipv4_addr = ((struct sockaddr_in *) addr)->sin_addr.s_addr;
2168       GNUNET_assert (NULL != inet_ntop(AF_INET, 
2169                                        &t4.ipv4_addr, 
2170                                        buf, 
2171                                        sizeof (buf)));
2172       if ( (plugin->bind_address != NULL) && 
2173            (0 != strcmp(buf, plugin->bind_address)) )
2174         {
2175 #if DEBUG_TCP
2176           GNUNET_log_from (GNUNET_ERROR_TYPE_DEBUG, 
2177                            "tcp",
2178                            "Not notifying transport of address `%s' (redundant)\n",
2179                            GNUNET_a2s (addr, addrlen));
2180 #endif
2181           return GNUNET_OK;
2182         }
2183       if ( (plugin->internal_address == NULL) &&
2184            (isDefault) )        
2185         plugin->internal_address = GNUNET_strdup (buf); 
2186       add_to_address_list (plugin, &t4.ipv4_addr, sizeof (struct in_addr));
2187       if (plugin->behind_nat == GNUNET_YES) 
2188         {
2189           /* Also advertise as NAT (with port 0) */
2190           t4_nat.ipv4_addr = ((struct sockaddr_in *) addr)->sin_addr.s_addr;
2191           t4_nat.t_port = htons(0);
2192           arg_nat = &t4_nat;
2193         }       
2194       t4.t_port = htons (plugin->adv_port);     
2195       arg = &t4;
2196       args = sizeof (t4);
2197       break;
2198     case AF_INET6:      
2199       if ( (IN6_IS_ADDR_LINKLOCAL (&((struct sockaddr_in6 *) addr)->sin6_addr)) || 
2200            (GNUNET_YES == GNUNET_CONFIGURATION_get_value_yesno(plugin->env->cfg, 
2201                                                                "transport-tcp", 
2202                                                                "DISABLEV6")) )
2203         {
2204           /* skip link local addresses */
2205           return GNUNET_OK;
2206         }
2207       memcpy (&t6.ipv6_addr,
2208               &((struct sockaddr_in6 *) addr)->sin6_addr,
2209               sizeof (struct in6_addr));
2210       add_to_address_list (plugin, 
2211                            &t6.ipv6_addr, 
2212                            sizeof (struct in6_addr));
2213       if (plugin->behind_nat == GNUNET_YES)
2214         {
2215           /* Also advertise as NAT (with port 0) */
2216           memcpy (&t6_nat.ipv6_addr,
2217                   &((struct sockaddr_in6 *) addr)->sin6_addr,
2218                   sizeof (struct in6_addr));
2219           t6_nat.t6_port = htons(0);
2220           arg_nat = &t6;
2221         }
2222       t6.t6_port = htons (plugin->adv_port);
2223       arg = &t6;
2224       args = sizeof (t6);
2225       break;
2226     default:
2227       GNUNET_break (0);
2228       return GNUNET_OK;
2229     }
2230 #if DEBUG_TCP
2231   GNUNET_log_from (GNUNET_ERROR_TYPE_DEBUG,
2232                    "tcp",
2233                    "Found address `%s' (%s) len %d\n",
2234                    GNUNET_a2s (addr, addrlen), name, args);
2235 #endif
2236   plugin->env->notify_address (plugin->env->cls,
2237                                "tcp",
2238                                arg, args, GNUNET_TIME_UNIT_FOREVER_REL);
2239
2240   if (arg_nat != NULL)
2241     {
2242       GNUNET_log_from (GNUNET_ERROR_TYPE_DEBUG,
2243                        "tcp",
2244                        _("Found address `%s' (%s) len %d\n"),
2245                        GNUNET_a2s (addr, addrlen), name, args);
2246       plugin->env->notify_address (plugin->env->cls,
2247                                    "tcp",
2248                                    arg_nat, args, GNUNET_TIME_UNIT_FOREVER_REL);
2249     }
2250
2251   return GNUNET_OK;
2252 }
2253
2254
2255 /**
2256  * Function called by the resolver for each address obtained from DNS
2257  * for our own hostname.  Add the addresses to the list of our
2258  * external IP addresses.
2259  *
2260  * @param cls closure
2261  * @param addr one of the addresses of the host, NULL for the last address
2262  * @param addrlen length of the address
2263  */
2264 static void
2265 process_hostname_ips (void *cls,
2266                       const struct sockaddr *addr, socklen_t addrlen)
2267 {
2268   struct Plugin *plugin = cls;
2269
2270   if (addr == NULL)
2271     {
2272       plugin->hostname_dns = NULL;
2273       return;
2274     }
2275   /* FIXME: Can we figure out our external address here so it doesn't need to be user specified? */
2276   process_interfaces (plugin, "<hostname>", GNUNET_YES, addr, addrlen);
2277 }
2278
2279
2280 /**
2281  * We can now send a probe message, copy into buffer to really send.
2282  *
2283  * @param cls closure, a struct TCPProbeContext
2284  * @param size max size to copy
2285  * @param buf buffer to copy message to
2286  * @return number of bytes copied into buf
2287  */
2288 static size_t
2289 notify_send_probe (void *cls,
2290                    size_t size,
2291                    void *buf)
2292 {
2293   struct TCPProbeContext *tcp_probe_ctx = cls;
2294   struct Plugin *plugin = tcp_probe_ctx->plugin;
2295   size_t ret;
2296
2297   tcp_probe_ctx->transmit_handle = NULL;
2298   GNUNET_CONTAINER_DLL_remove (plugin->probe_head,
2299                                plugin->probe_tail,
2300                                tcp_probe_ctx);
2301   if (buf == NULL)
2302     {
2303       GNUNET_CONNECTION_destroy (tcp_probe_ctx->sock, GNUNET_NO);
2304       GNUNET_free(tcp_probe_ctx);
2305       return 0;    
2306     }
2307   GNUNET_assert(size >= sizeof(tcp_probe_ctx->message));
2308   memcpy(buf, &tcp_probe_ctx->message, sizeof(tcp_probe_ctx->message));
2309   GNUNET_SERVER_connect_socket (tcp_probe_ctx->plugin->server,
2310                                 tcp_probe_ctx->sock);
2311   ret = sizeof(tcp_probe_ctx->message);
2312   GNUNET_free(tcp_probe_ctx);
2313   return ret;
2314 }
2315
2316
2317 /**
2318  * We have been notified that gnunet-nat-server has written something to stdout.
2319  * Handle the output, then reschedule this function to be called again once
2320  * more is available.
2321  *
2322  * @param cls the plugin handle
2323  * @param tc the scheduling context
2324  */
2325 static void
2326 tcp_plugin_server_read (void *cls, 
2327                         const struct GNUNET_SCHEDULER_TaskContext *tc)
2328 {
2329   struct Plugin *plugin = cls;
2330   char mybuf[40];
2331   ssize_t bytes;
2332   size_t i;
2333   int port;
2334   const char *port_start;
2335   struct sockaddr_in sin_addr;
2336   struct TCPProbeContext *tcp_probe_ctx;
2337   struct GNUNET_CONNECTION_Handle *sock;
2338
2339   if (tc->reason == GNUNET_SCHEDULER_REASON_SHUTDOWN)
2340     return;
2341   memset (mybuf, 0, sizeof(mybuf));
2342   bytes = GNUNET_DISK_file_read(plugin->server_stdout_handle, 
2343                                 mybuf,
2344                                 sizeof(mybuf));
2345   if (bytes < 1)
2346     {
2347 #if DEBUG_TCP_NAT
2348       GNUNET_log_from (GNUNET_ERROR_TYPE_DEBUG,
2349                        "tcp",
2350                        "Finished reading from server stdout with code: %d\n", 
2351                        bytes);
2352 #endif
2353       return;
2354     }
2355
2356   port_start = NULL;
2357   for (i = 0; i < sizeof(mybuf); i++)
2358     {
2359       if (mybuf[i] == '\n')
2360         {
2361           mybuf[i] = '\0';
2362           break;
2363         }
2364       if ( (mybuf[i] == ':') && (i + 1 < sizeof(mybuf)) )
2365         {
2366           mybuf[i] = '\0';
2367           port_start = &mybuf[i + 1];
2368         }
2369     }
2370
2371   /* construct socket address of sender */
2372   memset (&sin_addr, 0, sizeof (sin_addr));
2373   sin_addr.sin_family = AF_INET;
2374 #if HAVE_SOCKADDR_IN_SIN_LEN
2375   sin_addr.sin_len = sizeof (sin_addr);
2376 #endif
2377   if ( (NULL == port_start) ||
2378        (1 != sscanf (port_start, "%d", &port)) ||
2379        (-1 == inet_pton(AF_INET, mybuf, &sin_addr.sin_addr)) )
2380     {
2381       /* should we restart gnunet-nat-server? */
2382       GNUNET_log_from (GNUNET_ERROR_TYPE_WARNING,
2383                        "tcp",
2384                        _("gnunet-nat-server generated malformed address `%s'\n"),
2385                        mybuf);
2386       plugin->server_read_task 
2387         = GNUNET_SCHEDULER_add_read_file (GNUNET_TIME_UNIT_FOREVER_REL,
2388                                           plugin->server_stdout_handle,
2389                                           &tcp_plugin_server_read, 
2390                                           plugin);
2391       return;
2392     }
2393   sin_addr.sin_port = htons((uint16_t) port);
2394 #if DEBUG_TCP_NAT
2395   GNUNET_log_from (GNUNET_ERROR_TYPE_DEBUG,
2396                    "tcp",
2397                    "gnunet-nat-server read: %s:%d\n", 
2398                    mybuf, port);
2399 #endif
2400
2401   /**
2402    * We have received an ICMP response, ostensibly from a peer
2403    * that wants to connect to us! Send a message to establish a connection.
2404    */
2405   sock = GNUNET_CONNECTION_create_from_sockaddr (AF_INET, 
2406                                                  (const struct sockaddr *)&sin_addr,
2407                                                  sizeof (sin_addr));
2408   if (sock == NULL)
2409     {
2410       /* failed for some odd reason (out of sockets?); ignore attempt */
2411       plugin->server_read_task =
2412           GNUNET_SCHEDULER_add_read_file (GNUNET_TIME_UNIT_FOREVER_REL,
2413                                           plugin->server_stdout_handle, 
2414                                           &tcp_plugin_server_read, 
2415                                           plugin);
2416       return;
2417     }
2418
2419   GNUNET_log_from (GNUNET_ERROR_TYPE_DEBUG,
2420                    "Sending TCP probe message to `%s:%u'!\n", 
2421                    mybuf,
2422                    (unsigned int) port);  
2423   /* FIXME: do we need to track these probe context objects so that
2424      we can clean them up on plugin unload? */
2425   tcp_probe_ctx
2426     = GNUNET_malloc(sizeof(struct TCPProbeContext));
2427   tcp_probe_ctx->message.header.size
2428     = htons(sizeof(struct TCP_NAT_ProbeMessage));
2429   tcp_probe_ctx->message.header.type
2430     = htons(GNUNET_MESSAGE_TYPE_TRANSPORT_TCP_NAT_PROBE);
2431   memcpy (&tcp_probe_ctx->message.clientIdentity,
2432           plugin->env->my_identity,
2433           sizeof(struct GNUNET_PeerIdentity));
2434   tcp_probe_ctx->plugin = plugin;
2435   tcp_probe_ctx->sock = sock;
2436   GNUNET_CONTAINER_DLL_insert (plugin->probe_head,
2437                                plugin->probe_tail,
2438                                tcp_probe_ctx);
2439   tcp_probe_ctx->transmit_handle 
2440     = GNUNET_CONNECTION_notify_transmit_ready (sock,
2441                                                ntohs (tcp_probe_ctx->message.header.size),
2442                                                GNUNET_TIME_UNIT_FOREVER_REL,
2443                                                &notify_send_probe, tcp_probe_ctx);
2444   
2445   plugin->server_read_task =
2446       GNUNET_SCHEDULER_add_read_file (GNUNET_TIME_UNIT_FOREVER_REL,
2447                                       plugin->server_stdout_handle,
2448                                       &tcp_plugin_server_read,
2449                                       plugin);
2450 }
2451
2452
2453 /**
2454  * Start the gnunet-nat-server process for users behind NAT.
2455  *
2456  * @param plugin the transport plugin
2457  * @return GNUNET_YES if process was started, GNUNET_SYSERR on error
2458  */
2459 static int
2460 tcp_transport_start_nat_server (struct Plugin *plugin)
2461 {
2462   if (plugin->internal_address == NULL)
2463     return GNUNET_SYSERR;
2464   plugin->server_stdout = GNUNET_DISK_pipe (GNUNET_YES,
2465                                             GNUNET_NO,
2466                                             GNUNET_YES);
2467   if (plugin->server_stdout == NULL)
2468     return GNUNET_SYSERR;
2469 #if DEBUG_TCP_NAT
2470   GNUNET_log_from (GNUNET_ERROR_TYPE_DEBUG,
2471                    "tcp"
2472                    "Starting %s %s\n", 
2473                    "gnunet-nat-server", 
2474                    plugin->internal_address);
2475 #endif
2476   /* Start the server process */
2477   plugin->server_proc = GNUNET_OS_start_process (NULL,
2478                                                  plugin->server_stdout,
2479                                                  "gnunet-nat-server", 
2480                                                  "gnunet-nat-server", 
2481                                                  plugin->internal_address, 
2482                                                  NULL);
2483   if (plugin->server_proc == NULL)
2484     {
2485       GNUNET_log_from (GNUNET_ERROR_TYPE_WARNING,
2486                        "tcp",
2487                        _("Failed to start %s\n"),
2488                        "gnunet-nat-server");
2489       GNUNET_DISK_pipe_close (plugin->server_stdout);
2490       plugin->server_stdout = NULL;    
2491       return GNUNET_SYSERR;
2492     }
2493   /* Close the write end of the read pipe */
2494   GNUNET_DISK_pipe_close_end(plugin->server_stdout, 
2495                              GNUNET_DISK_PIPE_END_WRITE);
2496   plugin->server_stdout_handle 
2497     = GNUNET_DISK_pipe_handle (plugin->server_stdout, 
2498                                GNUNET_DISK_PIPE_END_READ);
2499   plugin->server_read_task 
2500     = GNUNET_SCHEDULER_add_read_file (GNUNET_TIME_UNIT_FOREVER_REL,
2501                                       plugin->server_stdout_handle,
2502                                       &tcp_plugin_server_read, 
2503                                       plugin);
2504   return GNUNET_YES;
2505 }
2506
2507
2508 /**
2509  * Return the actual path to a file found in the current
2510  * PATH environment variable.
2511  *
2512  * @param binary the name of the file to find
2513  * @return path to binary, NULL if not found
2514  */
2515 static char *
2516 get_path_from_PATH (const char *binary)
2517 {
2518   char *path;
2519   char *pos;
2520   char *end;
2521   char *buf;
2522   const char *p;
2523
2524   p = getenv ("PATH");
2525   if (p == NULL)
2526     {
2527       GNUNET_log_from (GNUNET_ERROR_TYPE_ERROR,
2528                        "tcp",
2529                        _("PATH environment variable is unset.\n"));
2530       return NULL;
2531     }
2532   path = GNUNET_strdup (p);     /* because we write on it */
2533   buf = GNUNET_malloc (strlen (path) + 20);
2534   pos = path;
2535
2536   while (NULL != (end = strchr (pos, PATH_SEPARATOR)))
2537     {
2538       *end = '\0';
2539       sprintf (buf, "%s/%s", pos, binary);
2540       if (GNUNET_DISK_file_test (buf) == GNUNET_YES)
2541         {
2542           GNUNET_free (path);
2543           return buf;
2544         }
2545       pos = end + 1;
2546     }
2547   sprintf (buf, "%s/%s", pos, binary);
2548   if (GNUNET_DISK_file_test (buf) == GNUNET_YES)
2549     {
2550       GNUNET_free (path);
2551       return buf;
2552     }
2553   GNUNET_free (buf);
2554   GNUNET_free (path);
2555   return NULL;
2556 }
2557
2558
2559 /**
2560  * Check whether the suid bit is set on a file.
2561  * Attempts to find the file using the current
2562  * PATH environment variable as a search path.
2563  *
2564  * @param binary the name of the file to check
2565  * @return GNUNET_YES if the file is SUID, 
2566  *         GNUNET_NO if not, 
2567  *         GNUNET_SYSERR on error
2568  */
2569 static int
2570 check_gnunet_nat_binary (const char *binary)
2571 {
2572   struct stat statbuf;
2573   char *p;
2574 #ifdef MINGW
2575   SOCKET rawsock;
2576   char *binaryexe;
2577
2578   GNUNET_asprintf (&binaryexe, "%s.exe", binary);
2579   p = get_path_from_PATH (binaryexe);
2580   free (binaryexe);
2581 #else
2582   p = get_path_from_PATH (binary);
2583 #endif
2584   if (p == NULL)
2585     {
2586       GNUNET_log_from (GNUNET_ERROR_TYPE_ERROR,
2587                        "tcp",
2588                        _("Could not find binary `%s' in PATH!\n"),
2589                        binary);
2590       return GNUNET_NO;
2591     }
2592   if (0 != STAT (p, &statbuf))
2593     {
2594       GNUNET_log (GNUNET_ERROR_TYPE_WARNING, 
2595                   _("stat (%s) failed: %s\n"), 
2596                   p,
2597                   STRERROR (errno));
2598       GNUNET_free (p);
2599       return GNUNET_SYSERR;
2600     }
2601   GNUNET_free (p);
2602 #ifndef MINGW
2603   if ( (0 != (statbuf.st_mode & S_ISUID)) &&
2604        (statbuf.st_uid == 0) )
2605     return GNUNET_YES;
2606   return GNUNET_NO;
2607 #else
2608   rawsock = socket (AF_INET, SOCK_RAW, IPPROTO_ICMP);
2609   if (INVALID_SOCKET == rawsock)
2610     {
2611       DWORD err = GetLastError ();
2612       GNUNET_log_from (GNUNET_ERROR_TYPE_WARNING, 
2613                        "tcp",
2614                        "socket (AF_INET, SOCK_RAW, IPPROTO_ICMP) failed! GLE = %d\n", err);
2615       return GNUNET_NO; /* not running as administrator */
2616     }
2617   closesocket (rawsock);
2618   return GNUNET_YES;
2619 #endif
2620 }
2621
2622
2623 /**
2624  * Our (external) hostname was resolved.
2625  *
2626  * @param cls the 'struct Plugin'
2627  * @param addr NULL on error, otherwise result of DNS lookup
2628  * @param addrlen number of bytes in addr
2629  */
2630 static void
2631 process_external_ip (void *cls,
2632                      const struct sockaddr *addr,
2633                      socklen_t addrlen)
2634 {
2635   struct Plugin *plugin = cls;
2636   const struct sockaddr_in *s;
2637   struct IPv4TcpAddress t4;
2638
2639
2640   plugin->ext_dns = NULL;
2641   if (addr == NULL)
2642     return;
2643   GNUNET_assert (addrlen == sizeof (struct sockaddr_in));
2644   s = (const struct sockaddr_in *) addr;
2645   t4.ipv4_addr = s->sin_addr.s_addr;
2646   if ( (plugin->behind_nat == GNUNET_YES) &&
2647        (plugin->enable_nat_server == GNUNET_YES) )
2648     {
2649       t4.t_port = htons(0);
2650       GNUNET_log_from (GNUNET_ERROR_TYPE_DEBUG, 
2651                        "tcp",
2652                        "Notifying transport of address %s:%d\n", 
2653                        plugin->external_address,
2654                        0);
2655     }
2656   else
2657     {
2658       t4.t_port = htons(plugin->adv_port);
2659       GNUNET_log_from (GNUNET_ERROR_TYPE_DEBUG, 
2660                        "tcp",
2661                        "Notifying transport of address %s:%d\n",
2662                        plugin->external_address, 
2663                        (int) plugin->adv_port);
2664     }
2665   add_to_address_list (plugin, 
2666                        &t4.ipv4_addr, 
2667                        sizeof (struct in_addr));
2668   plugin->env->notify_address (plugin->env->cls,
2669                                "tcp",
2670                                &t4, sizeof(t4),
2671                                GNUNET_TIME_UNIT_FOREVER_REL);
2672 }
2673
2674
2675 /**
2676  * Entry point for the plugin.
2677  *
2678  * @param cls closure, the 'struct GNUNET_TRANSPORT_PluginEnvironment*'
2679  * @return the 'struct GNUNET_TRANSPORT_PluginFunctions*' or NULL on error
2680  */
2681 void *
2682 libgnunet_plugin_transport_tcp_init (void *cls)
2683 {
2684   static const struct GNUNET_SERVER_MessageHandler my_handlers[] = {
2685     {&handle_tcp_welcome, NULL, GNUNET_MESSAGE_TYPE_TRANSPORT_TCP_WELCOME,
2686      sizeof (struct WelcomeMessage)},
2687     {&handle_tcp_nat_probe, NULL, GNUNET_MESSAGE_TYPE_TRANSPORT_TCP_NAT_PROBE, sizeof (struct TCP_NAT_ProbeMessage)},
2688     {&handle_tcp_data, NULL, GNUNET_MESSAGE_TYPE_ALL, 0},
2689     {NULL, NULL, 0, 0}
2690   };
2691   struct GNUNET_TRANSPORT_PluginEnvironment *env = cls;
2692   struct GNUNET_TRANSPORT_PluginFunctions *api;
2693   struct Plugin *plugin;
2694   struct GNUNET_SERVICE_Context *service;
2695   unsigned long long aport;
2696   unsigned long long bport;
2697   unsigned int i;
2698   int behind_nat;
2699   int nat_punched;
2700   int enable_nat_client;
2701   int enable_nat_server;
2702   int enable_upnp;
2703   char *internal_address;
2704   char *external_address;
2705   struct sockaddr_in in_addr;
2706   struct GNUNET_TIME_Relative idle_timeout;
2707
2708   behind_nat = GNUNET_CONFIGURATION_get_value_yesno (env->cfg,
2709                                                      "transport-tcp",
2710                                                      "BEHIND_NAT");
2711   nat_punched = GNUNET_CONFIGURATION_get_value_yesno (env->cfg,
2712                                                       "transport-tcp",
2713                                                       "NAT_PUNCHED");
2714   enable_nat_client = GNUNET_CONFIGURATION_get_value_yesno (env->cfg,
2715                                                             "transport-tcp",
2716                                                             "ENABLE_NAT_CLIENT");
2717   enable_nat_server = GNUNET_CONFIGURATION_get_value_yesno (env->cfg,
2718                                                             "transport-tcp",
2719                                                             "ENABLE_NAT_SERVER");
2720   enable_upnp = GNUNET_CONFIGURATION_get_value_yesno (env->cfg,
2721                                                       "transport-tcp",
2722                                                       "ENABLE_UPNP");
2723   
2724   if ( (GNUNET_YES == enable_nat_server) &&
2725        (GNUNET_YES != check_gnunet_nat_binary("gnunet-nat-server")) )
2726     {
2727       enable_nat_server = GNUNET_NO;
2728       GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
2729                   _("Configuration requires `%s', but binary is not installed properly (SUID bit not set).  Option disabled.\n"),
2730                   "gnunet-nat-server");        
2731     }
2732
2733   if ( (GNUNET_YES == enable_nat_client) &&
2734        (GNUNET_YES != check_gnunet_nat_binary("gnunet-nat-client")) )
2735     {
2736       enable_nat_client = GNUNET_NO;
2737       GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
2738                   _("Configuration requires `%s', but binary is not installed properly (SUID bit not set).  Option disabled.\n"),
2739                   "gnunet-nat-client"); 
2740     }
2741   
2742   external_address = NULL;
2743   if (GNUNET_OK ==
2744       GNUNET_CONFIGURATION_have_value (env->cfg,
2745                                        "transport-tcp",
2746                                        "EXTERNAL_ADDRESS"))
2747     {
2748       (void) GNUNET_CONFIGURATION_get_value_string (env->cfg,
2749                                                     "transport-tcp",
2750                                                     "EXTERNAL_ADDRESS",
2751                                                     &external_address);
2752     }
2753
2754   if ( (external_address != NULL) && 
2755        (inet_pton(AF_INET, external_address, &in_addr.sin_addr) != 1) ) 
2756     {
2757       
2758       GNUNET_log_from (GNUNET_ERROR_TYPE_WARNING,
2759                        "tcp",
2760                        _("Malformed %s `%s' given in configuration!\n"), 
2761                        "EXTERNAL_ADDRESS",
2762                        external_address);
2763       return NULL;   
2764     }
2765   if ( (external_address == NULL) &&
2766        (nat_punched == GNUNET_YES) )
2767     {
2768       nat_punched = GNUNET_NO;
2769       GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
2770                   _("Configuration says NAT was punched, but `%s' is not given.  Option ignored.\n"),
2771                   "EXTERNAL_ADDRESS");  
2772     }
2773
2774   if (GNUNET_YES == nat_punched)
2775     {
2776       enable_nat_server = GNUNET_NO;
2777       enable_upnp = GNUNET_NO;
2778     }
2779
2780   internal_address = NULL;
2781   if (GNUNET_OK ==
2782       GNUNET_CONFIGURATION_have_value (env->cfg,
2783                                        "transport-tcp",
2784                                        "INTERNAL_ADDRESS"))
2785     {
2786       (void) GNUNET_CONFIGURATION_get_value_string (env->cfg,
2787                                                     "transport-tcp",
2788                                                     "INTERNAL_ADDRESS",
2789                                                     &internal_address);
2790     }
2791
2792   if ( (internal_address != NULL) && 
2793        (inet_pton(AF_INET, internal_address, &in_addr.sin_addr) != 1) )
2794     {
2795       GNUNET_log_from (GNUNET_ERROR_TYPE_WARNING,
2796                        "tcp",
2797                        _("Malformed %s `%s' given in configuration!\n"), 
2798                        "INTERNAL_ADDRESS",
2799                        internal_address);      
2800       GNUNET_free_non_null(internal_address);
2801       GNUNET_free_non_null(external_address);
2802       return NULL;
2803     }
2804
2805   aport = 0;
2806   if ( (GNUNET_OK !=
2807         GNUNET_CONFIGURATION_get_value_number (env->cfg,
2808                                                "transport-tcp",
2809                                                "PORT",
2810                                                &bport)) ||
2811        (bport > 65535) ||
2812        ((GNUNET_OK ==
2813          GNUNET_CONFIGURATION_get_value_number (env->cfg,
2814                                                 "transport-tcp",
2815                                                 "ADVERTISED-PORT",
2816                                                 &aport)) && 
2817         (aport > 65535)) )
2818     {
2819       GNUNET_log_from (GNUNET_ERROR_TYPE_ERROR,
2820                        "tcp",
2821                        _("Require valid port number for service `%s' in configuration!\n"),
2822                        "transport-tcp");
2823       GNUNET_free_non_null(external_address);
2824       GNUNET_free_non_null(internal_address);
2825       return NULL;
2826     }
2827
2828   if (aport == 0)
2829     aport = bport;
2830   if (bport == 0)
2831     aport = 0;
2832
2833   if (bport != 0)
2834     {
2835       service = GNUNET_SERVICE_start ("transport-tcp", env->cfg);
2836       if (service == NULL)
2837         {
2838           GNUNET_log_from (GNUNET_ERROR_TYPE_WARNING,
2839                            "tcp",
2840                            _("Failed to start service.\n"));
2841           return NULL;
2842         }
2843     }
2844   else
2845     service = NULL;
2846
2847   plugin = GNUNET_malloc (sizeof (struct Plugin));
2848   plugin->open_port = bport;
2849   plugin->adv_port = aport;
2850   plugin->external_address = external_address;
2851   plugin->internal_address = internal_address;
2852   plugin->behind_nat = behind_nat;
2853   plugin->nat_punched = nat_punched;
2854   plugin->enable_nat_client = enable_nat_client;
2855   plugin->enable_nat_server = enable_nat_server;
2856   plugin->enable_upnp = enable_upnp;
2857   plugin->env = env;
2858   plugin->lsock = NULL;
2859   api = GNUNET_malloc (sizeof (struct GNUNET_TRANSPORT_PluginFunctions));
2860   api->cls = plugin;
2861   api->send = &tcp_plugin_send;
2862   api->disconnect = &tcp_plugin_disconnect;
2863   api->address_pretty_printer = &tcp_plugin_address_pretty_printer;
2864   api->check_address = &tcp_plugin_check_address;
2865   api->address_to_string = &tcp_address_to_string;
2866   plugin->service = service;
2867   if (service != NULL)   
2868     {
2869       plugin->server = GNUNET_SERVICE_get_server (service);
2870     }
2871   else
2872     {
2873       if (GNUNET_OK !=
2874           GNUNET_CONFIGURATION_get_value_time (env->cfg,
2875                                                "transport-tcp",
2876                                                "TIMEOUT",
2877                                                &idle_timeout))
2878         {
2879           GNUNET_log_from (GNUNET_ERROR_TYPE_ERROR,
2880                            "tcp",
2881                            _("Failed to find option %s in section %s!\n"),
2882                            "TIMEOUT",
2883                            "transport-tcp");
2884           GNUNET_free_non_null(external_address);
2885           GNUNET_free_non_null(internal_address);
2886           GNUNET_free (api);
2887           return NULL;
2888         }
2889       plugin->server = GNUNET_SERVER_create_with_sockets (NULL, NULL, NULL,
2890                                                           idle_timeout, GNUNET_YES);
2891     }
2892   plugin->handlers = GNUNET_malloc (sizeof (my_handlers));
2893   memcpy (plugin->handlers, my_handlers, sizeof (my_handlers));
2894   for (i = 0;
2895        i < sizeof (my_handlers) / sizeof (struct GNUNET_SERVER_MessageHandler);
2896        i++)
2897     plugin->handlers[i].callback_cls = plugin;
2898   GNUNET_SERVER_add_handlers (plugin->server, plugin->handlers);
2899   GNUNET_SERVER_disconnect_notify (plugin->server,
2900                                    &disconnect_notify,
2901                                    plugin);    
2902   GNUNET_OS_network_interfaces_list (&process_interfaces, plugin);
2903
2904   if ( (plugin->behind_nat == GNUNET_YES) &&
2905        (plugin->enable_nat_server == GNUNET_YES) &&
2906        (GNUNET_YES != tcp_transport_start_nat_server(plugin)) )
2907     {
2908       GNUNET_log_from (GNUNET_ERROR_TYPE_ERROR,
2909                        "tcp",
2910                        _("Failed to start %s required for NAT in %s!\n"),
2911                        "gnunet-nat-server"
2912                        "transport-tcp");
2913       GNUNET_free_non_null(external_address);
2914       GNUNET_free_non_null(internal_address);
2915       if (service != NULL)
2916         GNUNET_SERVICE_stop (service);
2917       else
2918         GNUNET_SERVER_destroy (plugin->server);
2919       GNUNET_free (api);
2920       return NULL;
2921     }
2922
2923   if (enable_nat_client == GNUNET_YES)
2924     {
2925       plugin->nat_wait_conns = GNUNET_CONTAINER_multihashmap_create(16);
2926       GNUNET_assert (plugin->nat_wait_conns != NULL);
2927     }
2928
2929   if (bport != 0)
2930     GNUNET_log_from (GNUNET_ERROR_TYPE_INFO, 
2931                      "tcp",
2932                      _("TCP transport listening on port %llu\n"), 
2933                      bport);
2934   else
2935     GNUNET_log_from (GNUNET_ERROR_TYPE_INFO, 
2936                      "tcp",
2937                      _("TCP transport not listening on any port (client only)\n"));
2938   if (aport != bport)
2939     GNUNET_log_from (GNUNET_ERROR_TYPE_INFO,
2940                      "tcp",
2941                      _("TCP transport advertises itself as being on port %llu\n"),
2942                      aport);
2943
2944   if (GNUNET_YES == GNUNET_CONFIGURATION_get_value_string (env->cfg,
2945                                                            "transport-tcp", 
2946                                                            "BINDTO", 
2947                                                            &plugin->bind_address))
2948     {
2949       GNUNET_log_from (GNUNET_ERROR_TYPE_INFO, 
2950                        "tcp",
2951                        _("Binding TCP plugin to specific address: `%s'\n"), 
2952                        plugin->bind_address);
2953     }
2954
2955   plugin->hostname_dns = GNUNET_RESOLVER_hostname_resolve (env->cfg,
2956                                                            AF_UNSPEC,
2957                                                            HOSTNAME_RESOLVE_TIMEOUT,
2958                                                            &process_hostname_ips,
2959                                                            plugin);
2960
2961   if (plugin->external_address != NULL) 
2962     {
2963       plugin->ext_dns = GNUNET_RESOLVER_ip_get (env->cfg,
2964                                                 plugin->external_address,
2965                                                 AF_INET,
2966                                                 GNUNET_TIME_UNIT_MINUTES,
2967                                                 &process_external_ip,
2968                                                 plugin);
2969     }
2970   return api;
2971 }
2972
2973
2974 /**
2975  * Exit point from the plugin.
2976  */
2977 void *
2978 libgnunet_plugin_transport_tcp_done (void *cls)
2979 {
2980   struct GNUNET_TRANSPORT_PluginFunctions *api = cls;
2981   struct Plugin *plugin = api->cls;
2982   struct Session *session;
2983   struct LocalAddrList *lal;
2984   struct TCPProbeContext *tcp_probe;
2985
2986   if (plugin->ext_dns != NULL)
2987     {
2988       GNUNET_RESOLVER_request_cancel (plugin->ext_dns);
2989       plugin->ext_dns = NULL;
2990     }
2991   while (NULL != (session = plugin->sessions))
2992     disconnect_session (session);
2993   if (NULL != plugin->hostname_dns)
2994     {
2995       GNUNET_RESOLVER_request_cancel (plugin->hostname_dns);
2996       plugin->hostname_dns = NULL;
2997     }
2998   if (plugin->service != NULL)
2999     GNUNET_SERVICE_stop (plugin->service);
3000   else
3001     GNUNET_SERVER_destroy (plugin->server);
3002   GNUNET_free (plugin->handlers);
3003   while (NULL != (lal = plugin->lal_head))
3004     {
3005       GNUNET_CONTAINER_DLL_remove (plugin->lal_head,
3006                                    plugin->lal_tail,
3007                                    lal);
3008       if (lal->nat != NULL)
3009         GNUNET_NAT_unregister (lal->nat);
3010       GNUNET_free_non_null (lal->external_nat_address);
3011       GNUNET_free (lal);
3012     }
3013   while (NULL != (tcp_probe = plugin->probe_head))
3014     {
3015       GNUNET_CONTAINER_DLL_remove (plugin->probe_head,
3016                                    plugin->probe_tail,
3017                                    tcp_probe);
3018       GNUNET_CONNECTION_destroy (tcp_probe->sock, GNUNET_NO);
3019       GNUNET_free (tcp_probe);
3020     }
3021
3022   if ((plugin->behind_nat == GNUNET_YES) &&
3023       (plugin->enable_nat_server == GNUNET_YES))
3024     {
3025       if (0 != GNUNET_OS_process_kill (plugin->server_proc, SIGTERM))
3026         GNUNET_log_strerror (GNUNET_ERROR_TYPE_WARNING, "kill");
3027       GNUNET_OS_process_wait (plugin->server_proc);
3028       GNUNET_OS_process_close (plugin->server_proc);
3029       plugin->server_proc = NULL;
3030     }
3031   GNUNET_free_non_null(plugin->bind_address);
3032   GNUNET_free (plugin);
3033   GNUNET_free (api);
3034   return NULL;
3035 }
3036
3037 /* end of plugin_transport_tcp.c */