gnunet-svn
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[GNUnet-SVN] r12585 - gnunet/src/transport


From: gnunet
Subject: [GNUnet-SVN] r12585 - gnunet/src/transport
Date: Tue, 17 Aug 2010 13:09:18 +0200

Author: nevans
Date: 2010-08-17 13:09:18 +0200 (Tue, 17 Aug 2010)
New Revision: 12585

Modified:
   gnunet/src/transport/plugin_transport_tcp.c
   gnunet/src/transport/plugin_transport_udp.c
Log:
some nat fixes

Modified: gnunet/src/transport/plugin_transport_tcp.c
===================================================================
--- gnunet/src/transport/plugin_transport_tcp.c 2010-08-17 09:41:43 UTC (rev 
12584)
+++ gnunet/src/transport/plugin_transport_tcp.c 2010-08-17 11:09:18 UTC (rev 
12585)
@@ -38,7 +38,7 @@
 #include "transport.h"
 
 #define DEBUG_TCP GNUNET_NO
-#define DEBUG_TCP_NAT GNUNET_NO
+#define DEBUG_TCP_NAT GNUNET_YES
 
 /**
  * How long until we give up on transmitting the welcome message?
@@ -322,12 +322,12 @@
    */
   struct GNUNET_CONNECTION_Handle *lsock;
 
-  /*
+  /**
    * stdout pipe handle for the gnunet-nat-server process
    */
   struct GNUNET_DISK_PipeHandle *server_stdout;
 
-  /*
+  /**
    * stdout file handle (for reading) for the gnunet-nat-server process
    */
   const struct GNUNET_DISK_FileHandle *server_stdout_handle;
@@ -517,10 +517,9 @@
     }
   else
     {
-      GNUNET_log_from (GNUNET_ERROR_TYPE_ERROR,
-                      "tcp",
-                      _("Unexpected address length: %u\n"),
-                      addrlen);
+      GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
+                 _("Unexpected address length: %u\n"),
+                 addrlen);
       GNUNET_break (0);
       return NULL;
     }
@@ -780,6 +779,7 @@
     return;
   if (NULL == (pm = session->pending_messages_head))
     return;
+  GNUNET_log(GNUNET_ERROR_TYPE_DEBUG, "processing a pending message\n");
   session->transmit_handle
     = GNUNET_SERVER_notify_transmit_ready (session->client,
                                            pm->message_size,
@@ -935,7 +935,7 @@
   pid_t pid;
   const struct sockaddr *sa = (const struct sockaddr *)addr;
 #if DEBUG_TCP_NAT
-  GNUNET_log_from (GNUNET_ERROR_TYPE_DEBUG, "tcp",
+  GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
                   _("called run_gnunet_nat_client addrlen %d others are %d and 
%d\n"), addrlen, sizeof (struct sockaddr), sizeof (struct sockaddr_in));
 #endif
 
@@ -963,7 +963,7 @@
 
   GNUNET_asprintf(&port_as_string, "%d", plugin->adv_port);
 #if DEBUG_TCP_NAT
-  GNUNET_log_from (GNUNET_ERROR_TYPE_DEBUG, "tcp",
+  GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
                   _("Running gnunet-nat-client with arguments: %s %s %d\n"), 
plugin->external_address, address_as_string, plugin->adv_port);
 #endif
 
@@ -1140,8 +1140,7 @@
        }
       else
        {
-         GNUNET_log_from (GNUNET_ERROR_TYPE_ERROR,
-                          "tcp",
+         GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
                           _("Address of unexpected length: %u\n"),
                           addrlen);
          GNUNET_break (0);
@@ -1156,8 +1155,7 @@
            (GNUNET_NO == 
GNUNET_CONTAINER_multihashmap_contains(plugin->nat_wait_conns, 
&target->hashPubKey)))
         {
 #if DEBUG_TCP_NAT
-          GNUNET_log_from (GNUNET_ERROR_TYPE_DEBUG,
-                           "tcp",
+          GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
                            _("Found valid IPv4 NAT address!\n"));
 #endif
           session = create_session (plugin,
@@ -1184,8 +1182,7 @@
 
           
GNUNET_assert(GNUNET_CONTAINER_multihashmap_put(plugin->nat_wait_conns, 
&target->hashPubKey, session, GNUNET_CONTAINER_MULTIHASHMAPOPTION_UNIQUE_ONLY) 
== GNUNET_OK);
 #if DEBUG_TCP_NAT
-          GNUNET_log_from (GNUNET_ERROR_TYPE_DEBUG,
-                           "tcp",
+          GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
                            "Created NAT WAIT connection to `%4s' at `%s'\n",
                            GNUNET_i2s (target),
                            GNUNET_a2s (sb, sbs));
@@ -1550,7 +1547,7 @@
   const struct sockaddr_in6 *s6;
 
 #if DEBUG_TCP_NAT
-  GNUNET_log_from(GNUNET_ERROR_TYPE_DEBUG, "tcp", "received tcp NAT probe\n");
+  GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "received tcp NAT probe\n");
 #endif
   /* We have received a TCP NAT probe, meaning we (hopefully) initiated
    * a connection to this peer by running gnunet-nat-client.  This peer
@@ -1561,7 +1558,7 @@
   if (ntohs(message->size) != sizeof(struct TCP_NAT_ProbeMessage))
     {
 #if DEBUG_TCP_NAT
-      GNUNET_log_from(GNUNET_ERROR_TYPE_DEBUG, "tcp", "Bad size fo tcp NAT 
probe, expected %d got %d.\n", sizeof(struct TCP_NAT_ProbeMessage), 
ntohs(message->size));
+      GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Bad size for tcp NAT probe, 
expected %d got %d.\n", sizeof(struct TCP_NAT_ProbeMessage), 
ntohs(message->size));
 #endif
       GNUNET_break_op(0);
       return;
@@ -1571,7 +1568,7 @@
   if (GNUNET_CONTAINER_multihashmap_contains(plugin->nat_wait_conns, 
&tcp_nat_probe->clientIdentity.hashPubKey) == GNUNET_YES)
     {
 #if DEBUG_TCP_NAT
-      GNUNET_log_from(GNUNET_ERROR_TYPE_DEBUG, "tcp", "Found session for NAT 
probe!\n");
+      GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Found session for NAT probe!\n");
 #endif
       session = GNUNET_CONTAINER_multihashmap_get(plugin->nat_wait_conns, 
&tcp_nat_probe->clientIdentity.hashPubKey);
       GNUNET_assert(session != NULL);
@@ -1584,8 +1581,7 @@
           GNUNET_SERVER_client_get_address (client, &vaddr, &alen))
         {
 #if DEBUG_TCP_NAT
-          GNUNET_log_from (GNUNET_ERROR_TYPE_DEBUG,
-                           "tcp",
+          GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
                            "Found address `%s' for incoming connection %p\n",
                            GNUNET_a2s (vaddr, alen),
                            client);
@@ -1630,7 +1626,7 @@
   else
     {
 #if DEBUG_TCP_NAT
-      GNUNET_log_from(GNUNET_ERROR_TYPE_DEBUG, "tcp", "Did NOT find session 
for NAT probe!\n");
+      GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Did NOT find session for NAT 
probe!\n");
 #endif
     }
 }
@@ -2069,8 +2065,8 @@
       return;
     }
 
-#if DEBUG_UDP_NAT
-  GNUNET_log_from (GNUNET_ERROR_TYPE_DEBUG, "tcp",
+#if DEBUG_TCP_NAT
+  GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
                   _("nat-server-read read: %s port %d\n"), &mybuf, port);
 #endif
 
@@ -2078,7 +2074,7 @@
   if (inet_pton(AF_INET, &mybuf[0], &in_addr.sin_addr) != 1)
     {
 
-      GNUNET_log_from (GNUNET_ERROR_TYPE_WARNING, "tcp",
+      GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
                   _("nat-server-read malformed address\n"), &mybuf, port);
 
       plugin->server_read_task =
@@ -2106,6 +2102,8 @@
     }
   else
     {
+      GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
+                _("Sending TCP probe message!\n"), &mybuf, port);
       tcp_probe_ctx = GNUNET_malloc(sizeof(struct TCPProbeContext));
 
       tcp_probe_ctx->message.header.size = htons(sizeof(struct 
TCP_NAT_ProbeMessage));
@@ -2142,8 +2140,7 @@
     return GNUNET_SYSERR;
 
 #if DEBUG_TCP_NAT
-  GNUNET_log_from (GNUNET_ERROR_TYPE_DEBUG,
-                   "tcp",
+  GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
                    "Starting gnunet-nat-server process cmd: %s %s\n", 
"gnunet-nat-server", plugin->internal_address);
 #endif
   /* Start the server process */
@@ -2151,8 +2148,7 @@
   if (plugin->server_pid == GNUNET_SYSERR)
     {
 #if DEBUG_TCP_NAT
-    GNUNET_log_from (GNUNET_ERROR_TYPE_DEBUG,
-                     "tcp",
+    GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
                      "Failed to start gnunet-nat-server process\n");
 #endif
       return GNUNET_SYSERR;
@@ -2512,6 +2508,14 @@
                                   lal);
       GNUNET_free (lal);
     }
+
+  if (plugin->behind_nat == GNUNET_YES)
+    {
+      if (0 != PLIBC_KILL (plugin->server_pid, SIGTERM))
+        GNUNET_log_strerror (GNUNET_ERROR_TYPE_WARNING, "kill");
+      GNUNET_OS_process_wait (plugin->server_pid);
+    }
+
   GNUNET_free (plugin);
   GNUNET_free (api);
   return NULL;

Modified: gnunet/src/transport/plugin_transport_udp.c
===================================================================
--- gnunet/src/transport/plugin_transport_udp.c 2010-08-17 09:41:43 UTC (rev 
12584)
+++ gnunet/src/transport/plugin_transport_udp.c 2010-08-17 11:09:18 UTC (rev 
12585)
@@ -53,7 +53,7 @@
 #include "plugin_transport.h"
 #include "transport.h"
 
-#define DEBUG_UDP GNUNET_NO
+#define DEBUG_UDP GNUNET_YES
 
 #define MAX_PROBES 20
 
@@ -397,6 +397,16 @@
   char *internal_address;
 
   /**
+   * Address we were told to bind to exclusively (IPv4).
+   */
+  char *bind_address;
+
+  /**
+   * Address we were told to bind to exclusively (IPv6).
+   */
+  char *bind6_address;
+
+  /**
    * List of our IP addresses.
    */
   struct LocalAddrList *lal_head;
@@ -598,8 +608,7 @@
   if ((addr == NULL) || (addrlen == 0))
     {
 #if DEBUG_UDP
-      GNUNET_log_from (GNUNET_ERROR_TYPE_DEBUG, 
-                      "udp", 
+      GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
                       "udp_real_send called without address, returning!\n");
 #endif
       if (cont != NULL)
@@ -698,7 +707,7 @@
   t4 = (struct IPv4UdpAddress *)addr;
 
   if (NULL == inet_ntop (AF_INET,
-                         &t4->u_port,
+                         &t4->ipv4_addr,
                          addr_buf, INET_ADDRSTRLEN))
     {
       GNUNET_log_strerror (GNUNET_ERROR_TYPE_WARNING, "inet_ntop");
@@ -707,7 +716,7 @@
   address_as_string = GNUNET_strdup (addr_buf);
   GNUNET_asprintf(&port_as_string, "%d", plugin->port);
 #if DEBUG_UDP
-  GNUNET_log_from (GNUNET_ERROR_TYPE_DEBUG, "udp",
+  GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
                   _("Running gnunet-nat-client with arguments: %s %s %d\n"), 
plugin->external_address, address_as_string, plugin->port);
 #endif
 
@@ -810,7 +819,7 @@
           peer_session->messages->cont = cont;
           peer_session->messages->cont_cls = cont_cls;
 #if DEBUG_UDP
-          GNUNET_log_from (GNUNET_ERROR_TYPE_DEBUG, "udp",
+          GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
                           _("Other peer is NAT'd, set up peer session for peer 
%s\n"), GNUNET_i2s(target));
 #endif
           run_gnunet_nat_client(plugin, addr, addrlen);
@@ -924,12 +933,21 @@
   void *arg;
   uint16_t args;
   void *addr_nat;
+  char buf[INET6_ADDRSTRLEN];
 
   addr_nat = NULL;
   af = addr->sa_family;
+
+  memset(buf, 0, INET6_ADDRSTRLEN);
   if (af == AF_INET)
     {
       t4.ipv4_addr = ((struct sockaddr_in *) addr)->sin_addr.s_addr;
+      GNUNET_assert(NULL != inet_ntop(AF_INET, &t4.ipv4_addr, &buf[0], 
INET_ADDRSTRLEN));
+      if ((plugin->bind6_address != NULL) || ((plugin->bind_address != NULL) 
&& (0 != strcmp(buf, plugin->bind_address))))
+        {
+          GNUNET_log(GNUNET_ERROR_TYPE_DEBUG, "%s: Not notifying transport of 
address %s\n", "UDP", GNUNET_a2s (addr, addrlen));
+          return GNUNET_OK;
+        }
       add_to_address_list (plugin, &t4.ipv4_addr, sizeof (uint32_t));
       if ((plugin->behind_nat == GNUNET_YES) && (plugin->only_nat_addresses == 
GNUNET_YES))
         {
@@ -959,6 +977,12 @@
       memcpy (&t6.ipv6_addr,
               &((struct sockaddr_in6 *) addr)->sin6_addr,
               sizeof (struct in6_addr));
+      GNUNET_assert(NULL != inet_ntop(AF_INET6, &t6.ipv6_addr, &buf[0], 
INET6_ADDRSTRLEN));
+      if ((plugin->bind_address != NULL) || ((plugin->bind6_address != NULL) 
&& (0 != strcmp(buf, plugin->bind_address))))
+        {
+          GNUNET_log(GNUNET_ERROR_TYPE_DEBUG, "%s: Not notifying transport of 
address %s\n", "UDP", GNUNET_a2s (addr, addrlen));
+          return GNUNET_OK;
+        }
       add_to_address_list (plugin, &t6.ipv6_addr, sizeof (struct in6_addr));
       if ((plugin->behind_nat == GNUNET_YES) && (plugin->only_nat_addresses == 
GNUNET_YES))
         {
@@ -1001,7 +1025,7 @@
                  GNUNET_a2s (addr_nat, args), name);
       GNUNET_free(addr_nat);
     }
-  
+
   plugin->env->notify_address (plugin->env->cls,
                               "udp",
                               arg, args, GNUNET_TIME_UNIT_FOREVER_REL);
@@ -1055,7 +1079,7 @@
     probe->addr.u_port = htons(plugin->port);
 
 #if DEBUG_UDP
-      GNUNET_log_from (GNUNET_ERROR_TYPE_DEBUG, "udp",
+      GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
                       _("Sending a probe to port %d\n"), 
ntohs(probe->addr.u_port));
 #endif
   probe->count++;
@@ -1083,7 +1107,7 @@
   if ((result == GNUNET_OK) && (probe->count < MAX_PROBES))
     {
 #if DEBUG_UDP
-      GNUNET_log_from (GNUNET_ERROR_TYPE_DEBUG, "udp",
+      GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
                        _("Scheduling next probe for 10000 milliseconds\n"));
 #endif
       probe->task = GNUNET_SCHEDULER_add_delayed(plugin->env->sched, 
GNUNET_TIME_relative_multiply(GNUNET_TIME_UNIT_MILLISECONDS, 10000), 
&send_udp_probe_message, probe);
@@ -1091,7 +1115,7 @@
   else /* Destroy the probe context. */
     {
 #if DEBUG_UDP
-      GNUNET_log_from (GNUNET_ERROR_TYPE_DEBUG, "udp",
+      GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
                       _("Sending probe didn't go well...\n"));
 #endif
     }
@@ -1147,7 +1171,7 @@
   if (bytes < 1)
     {
 #if DEBUG_UDP
-      GNUNET_log_from (GNUNET_ERROR_TYPE_DEBUG, "udp",
+      GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
                       _("Finished reading from server stdout with code: 
%d\n"), bytes);
 #endif
       return;
@@ -1179,7 +1203,7 @@
     }
 
 #if DEBUG_UDP
-  GNUNET_log_from (GNUNET_ERROR_TYPE_DEBUG, "udp",
+  GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
                   _("nat-server-read read: %s port %d\n"), &mybuf, port);
 #endif
 
@@ -1190,7 +1214,7 @@
   if (inet_pton(AF_INET, &mybuf[0], &a4.ipv4_addr) != 1)
     {
 
-      GNUNET_log_from (GNUNET_ERROR_TYPE_WARNING, "udp",
+      GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
                   _("nat-server-read malformed address\n"), &mybuf, port);
 
       plugin->server_read_task =
@@ -1277,9 +1301,9 @@
       outgoing_probe_reply->header.type = 
htons(GNUNET_MESSAGE_TYPE_TRANSPORT_UDP_NAT_PROBE_REPLY);
 
 #if DEBUG_UDP
-      GNUNET_log_from (GNUNET_ERROR_TYPE_DEBUG, "udp",
-                      _("Received a probe on listen port %d, sent_from port 
%d\n"), 
-                      sockinfo->port, incoming_port);
+      GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
+                  _("Received a probe on listen port %d, sent_from port %d\n"),
+                   sockinfo->port, incoming_port);
 #endif
 
       udp_real_send(plugin, sockinfo->desc, NULL,
@@ -1290,19 +1314,19 @@
                     NULL, NULL);
 
 #if DEBUG_UDP
-      GNUNET_log_from (GNUNET_ERROR_TYPE_DEBUG, "udp",
-                      _("Sent PROBE REPLY to port %d on outgoing port %d\n"), 
-                      incoming_port, sockinfo->port);
+      GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
+                  _("Sent PROBE REPLY to port %d on outgoing port %d\n"),
+                   incoming_port, sockinfo->port);
 #endif
       GNUNET_free(outgoing_probe_reply);
       break;
     case GNUNET_MESSAGE_TYPE_TRANSPORT_UDP_NAT_PROBE_REPLY:
       /* Check for existing probe, check ports returned, send confirmation if 
all is well */
 #if DEBUG_UDP
-      GNUNET_log_from (GNUNET_ERROR_TYPE_DEBUG, "udp",
-                      _("Received PROBE REPLY from port %d on incoming port 
%d\n"), incoming_port, sockinfo->port);
+      GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
+                  _("Received PROBE REPLY from port %d on incoming port 
%d\n"), incoming_port, sockinfo->port);
 #endif
-      if (sizeof(sender_addr) == sizeof(struct IPv4UdpAddress))
+      if (fromlen == sizeof(struct IPv4UdpAddress))
         {
           memset(&addr_buf, 0, sizeof(addr_buf));
           if (NULL == inet_ntop (AF_INET, 
@@ -1316,8 +1340,8 @@
           if (outgoing_probe != NULL)
             {
 #if DEBUG_UDP
-              GNUNET_log_from (GNUNET_ERROR_TYPE_DEBUG, "udp",
-                              _("Sending confirmation that we were 
reached!\n"));
+              GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
+                          _("Sending confirmation that we were reached!\n"));
 #endif
               outgoing_probe_confirmation = GNUNET_malloc(sizeof(struct 
UDP_NAT_ProbeMessageConfirmation));
               outgoing_probe_confirmation->header.size = htons(sizeof(struct 
UDP_NAT_ProbeMessageConfirmation));
@@ -1339,23 +1363,30 @@
           else
             {
 #if DEBUG_UDP
-              GNUNET_log_from (GNUNET_ERROR_TYPE_INFO, "udp",
-                              _("Received a probe reply, but have no record of 
a sent probe!\n"));
+              GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
+                          _("Received a probe reply, but have no record of a 
sent probe!\n"));
 #endif
             }
         }
+      else
+        {
+#if DEBUG_UDP
+          GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
+                      _("Received a probe reply, but sender address size is 
WRONG (should be %d, is %d)!\n"), sizeof(struct IPv4UdpAddress), fromlen);
+#endif
+        }
       break;
     case GNUNET_MESSAGE_TYPE_TRANSPORT_UDP_NAT_PROBE_CONFIRM:
       peer_session = find_session(plugin, sender);
 #if DEBUG_UDP
-          GNUNET_log_from (GNUNET_ERROR_TYPE_DEBUG, "udp",
-                          _("Looking up peer session for peer %s\n"), 
GNUNET_i2s(sender));
+          GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
+                      _("Looking up peer session for peer %s\n"), 
GNUNET_i2s(sender));
 #endif
       if (peer_session == NULL) /* Shouldn't this NOT happen? */
         {
 #if DEBUG_UDP
-          GNUNET_log_from (GNUNET_ERROR_TYPE_DEBUG, "udp",
-                          _("Peer not in list, adding (THIS MAY BE A MISTAKE) 
%s\n"), GNUNET_i2s(sender));
+          GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
+                      _("Peer not in list, adding (THIS MAY BE A MISTAKE) 
%s\n"), GNUNET_i2s(sender));
 #endif
           peer_session = GNUNET_malloc(sizeof(struct PeerSession));
           peer_session->connect_addr = GNUNET_malloc(fromlen);
@@ -1385,22 +1416,22 @@
             }
 
 #if DEBUG_UDP
-              GNUNET_log_from (GNUNET_ERROR_TYPE_INFO, "udp",
-                              _("Received a probe confirmation, will send to 
peer on port %d\n"), incoming_port);
+              GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
+                          _("Received a probe confirmation, will send to peer 
on port %d\n"), incoming_port);
 #endif
           if (peer_session->messages != NULL)
             {
 #if DEBUG_UDP
-              GNUNET_log_from (GNUNET_ERROR_TYPE_INFO, "udp",
-                              _("Received a probe confirmation, sending queued 
messages.\n"));
+              GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
+                          _("Received a probe confirmation, sending queued 
messages.\n"));
 #endif
               pending_message = peer_session->messages;
               int count = 0;
               while (pending_message != NULL)
                 {
 #if DEBUG_UDP
-                  GNUNET_log_from (GNUNET_ERROR_TYPE_INFO, "udp",
-                                  _("sending queued message %d\n"), count);
+                  GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
+                              _("sending queued message %d\n"), count);
 #endif
                   udp_real_send(plugin,
                                 peer_session->sock,
@@ -1418,8 +1449,8 @@
                   GNUNET_free(pending_message_temp->msgbuf);
                   GNUNET_free(pending_message_temp);
 #if DEBUG_UDP
-                  GNUNET_log_from (GNUNET_ERROR_TYPE_INFO, "udp",
-                                  _("finished sending queued message %d\n"), 
count);
+                  GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
+                              _("finished sending queued message %d\n"), 
count);
 #endif
                   count++;
                 }
@@ -1429,8 +1460,8 @@
       else
         {
 #if DEBUG_UDP
-          GNUNET_log_from (GNUNET_ERROR_TYPE_INFO, "udp",
-                          _("Received probe confirmation for already confirmed 
peer!\n"));
+          GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
+                      _("Received probe confirmation for already confirmed 
peer!\n"));
 #endif
         }
       /* Received confirmation, add peer with address/port specified */
@@ -1441,10 +1472,9 @@
       break;
     default:
 #if DEBUG_UDP
-      GNUNET_log_from (GNUNET_ERROR_TYPE_DEBUG,
-                      "udp",
-                       "Sending message type %d to transport!\n", 
-                      ntohs(currhdr->type));
+      GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
+                  "Sending message type %d to transport!\n",
+                  ntohs(currhdr->type));
 #endif
       plugin->env->receive (plugin->env->cls, sender, currhdr, 
UDP_DIRECT_DISTANCE, 
                            NULL, sender_addr, fromlen);
@@ -1592,6 +1622,7 @@
   int sockets_created;
   int tries;
 
+
   sockets_created = 0;
   if (plugin->behind_nat == GNUNET_YES)
     {
@@ -1600,11 +1631,10 @@
       if (plugin->server_stdout == NULL)
         return sockets_created;
 #if DEBUG_UDP
-      GNUNET_log_from (GNUNET_ERROR_TYPE_DEBUG,
-                      "udp",
-                      "Starting gnunet-nat-server process cmd: %s %s\n", 
-                      "gnunet-nat-server", 
-                      plugin->internal_address);
+      GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
+                  "Starting gnunet-nat-server process cmd: %s %s\n",
+                  "gnunet-nat-server",
+                  plugin->internal_address);
 #endif
       /* Start the server process */
       plugin->server_pid = GNUNET_OS_start_process(NULL, 
@@ -1615,9 +1645,8 @@
       if (plugin->server_pid == GNUNET_SYSERR)
         {
 #if DEBUG_UDP
-          GNUNET_log_from (GNUNET_ERROR_TYPE_DEBUG,
-                           "udp",
-                           "Failed to start gnunet-nat-server process\n");
+          GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
+                      "Failed to start gnunet-nat-server process\n");
 #endif
           return GNUNET_SYSERR;
         }
@@ -1632,10 +1661,10 @@
     }
 
   if ( (GNUNET_YES !=
-       GNUNET_CONFIGURATION_get_value_yesno (plugin->env->cfg, "GNUNETD",
-                                             "DISABLE-IPV6")))
+       GNUNET_CONFIGURATION_get_value_yesno (plugin->env->cfg, "transport-udp",
+                                             "DISABLEV6")))
     {
-      plugin->udp_sockv6.desc = GNUNET_NETWORK_socket_create (PF_INET6, 
SOCK_DGRAM, 17);
+      plugin->udp_sockv6.desc = GNUNET_NETWORK_socket_create (PF_INET6, 
SOCK_DGRAM, 0);
       if (NULL == plugin->udp_sockv6.desc)
        {
          GNUNET_log_from (GNUNET_ERROR_TYPE_DEBUG, "udp", "socket");
@@ -1646,14 +1675,20 @@
 #if HAVE_SOCKADDR_IN_SIN_LEN
           serverAddrv6.sin6_len = sizeof (serverAddrv6);
 #endif
+
           serverAddrv6.sin6_family = AF_INET6;
           serverAddrv6.sin6_addr = in6addr_any;
+          if (plugin->bind6_address != NULL)
+            {
+              if (1 != inet_pton(AF_INET6, plugin->bind6_address, 
&serverAddrv6.sin6_addr))
+                return 0;
+            }
+
           serverAddrv6.sin6_port = htons (plugin->port);
           addrlen = sizeof (serverAddrv6);
           serverAddr = (struct sockaddr *) &serverAddrv6;
 #if DEBUG_UDP
-         GNUNET_log_from (GNUNET_ERROR_TYPE_DEBUG,
-                          "udp",
+         GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
                           "Binding to IPv6 port %d\n", 
                           ntohs(serverAddrv6.sin6_port));
 #endif
@@ -1663,8 +1698,7 @@
            {
              serverAddrv6.sin6_port = htons 
(GNUNET_CRYPTO_random_u32(GNUNET_CRYPTO_QUALITY_STRONG, 33537) + 32000); /* 
Find a good, non-root port */
 #if DEBUG_UDP
-             GNUNET_log_from (GNUNET_ERROR_TYPE_DEBUG,
-                              "udp",
+             GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
                               "IPv6 Binding failed, trying new port %d\n", 
                               ntohs(serverAddrv6.sin6_port));
 #endif
@@ -1683,11 +1717,11 @@
            }
        }
     }
-  
-  plugin->udp_sockv4.desc = GNUNET_NETWORK_socket_create (PF_INET, SOCK_DGRAM, 
17);
+
+  plugin->udp_sockv4.desc = GNUNET_NETWORK_socket_create (PF_INET, SOCK_DGRAM, 
0);
   if (NULL == plugin->udp_sockv4.desc)
     {
-      GNUNET_log_from (GNUNET_ERROR_TYPE_DEBUG, "udp", "socket");
+      GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "socket");
     }
   else
     {
@@ -1697,12 +1731,16 @@
 #endif
       serverAddrv4.sin_family = AF_INET;
       serverAddrv4.sin_addr.s_addr = INADDR_ANY;
+      if (plugin->bind_address != NULL)
+        {
+          if (1 != inet_pton(AF_INET, plugin->bind_address, 
&serverAddrv4.sin_addr))
+            return 0;
+        }
       serverAddrv4.sin_port = htons (plugin->port);
       addrlen = sizeof (serverAddrv4);
       serverAddr = (struct sockaddr *) &serverAddrv4;
 #if DEBUG_UDP
-      GNUNET_log_from (GNUNET_ERROR_TYPE_DEBUG,
-                      "udp",
+      GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
                       "Binding to IPv4 port %d\n", 
                       ntohs(serverAddrv4.sin_port));
 #endif
@@ -1712,8 +1750,7 @@
        {
          serverAddrv4.sin_port = htons 
(GNUNET_CRYPTO_random_u32(GNUNET_CRYPTO_QUALITY_STRONG, 33537) + 32000); /* 
Find a good, non-root port */
 #if DEBUG_UDP
-         GNUNET_log_from (GNUNET_ERROR_TYPE_DEBUG,
-                          "udp",
+         GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
                           "IPv4 Binding failed, trying new port %d\n", 
                           ntohs(serverAddrv4.sin_port));
 #endif
@@ -1740,6 +1777,7 @@
   if (NULL != plugin->udp_sockv6.desc)
     GNUNET_NETWORK_fdset_set (plugin->rs, 
                              plugin->udp_sockv6.desc);
+
   plugin->select_task =
     GNUNET_SCHEDULER_add_select (plugin->env->sched,
                                  GNUNET_SCHEDULER_PRIORITY_DEFAULT,
@@ -1851,8 +1889,7 @@
   inet_ntop (af, sb, buf, INET6_ADDRSTRLEN);
 
 #if DEBUG_UDP
-  GNUNET_log_from (GNUNET_ERROR_TYPE_DEBUG,
-                   "udp",
+  GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
                    "Informing transport service about my address `%s:%u'\n",
                    buf,
                    port);
@@ -2089,7 +2126,7 @@
   service = GNUNET_SERVICE_start ("transport-udp", env->sched, env->cfg);
   if (service == NULL)
     {
-      GNUNET_log_from (GNUNET_ERROR_TYPE_WARNING, "udp", _
+      GNUNET_log (GNUNET_ERROR_TYPE_WARNING, _
                        ("Failed to start service for `%s' transport 
plugin.\n"),
                        "udp");
       return NULL;
@@ -2105,7 +2142,7 @@
       else
         {
           behind_nat = GNUNET_NO;
-          GNUNET_log_from (GNUNET_ERROR_TYPE_WARNING, "udp", "Configuration 
specified you are behind a NAT, but gnunet-nat-server is not installed properly 
(suid bit not set)!\n");
+          GNUNET_log (GNUNET_ERROR_TYPE_WARNING, "Configuration specified you 
are behind a NAT, but gnunet-nat-server is not installed properly (suid bit not 
set)!\n");
         }
     }
   else
@@ -2120,7 +2157,7 @@
       else
       {
         allow_nat = GNUNET_NO;
-        GNUNET_log_from (GNUNET_ERROR_TYPE_WARNING, "udp", "Configuration 
specified you want to connect to NAT'd peers, but gnunet-nat-client is not 
installed properly (suid bit not set)!\n");
+        GNUNET_log (GNUNET_ERROR_TYPE_WARNING, "Configuration specified you 
want to connect to NAT'd peers, but gnunet-nat-client is not installed properly 
(suid bit not set)!\n");
       }
 
     }
@@ -2141,18 +2178,16 @@
                                                 "EXTERNAL_ADDRESS",
                                                 &external_address)))
     {
-      GNUNET_log_from (GNUNET_ERROR_TYPE_ERROR,
-                       "udp",
-                       _
-                       ("Require EXTERNAL_ADDRESS for service `%s' in 
configuration (either BEHIND_NAT or ALLOW_NAT set to YES)!\n"),
-                       "transport-udp");
+      GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
+                  _("Require EXTERNAL_ADDRESS for service `%s' in 
configuration (either BEHIND_NAT or ALLOW_NAT set to YES)!\n"),
+                  "transport-udp");
       GNUNET_SERVICE_stop (service);
       return NULL;
     }
 
   if ((external_address != NULL) && (inet_pton(AF_INET, external_address, 
&v4_address.ipv4_addr) != 1))
     {
-      GNUNET_log_from(GNUNET_ERROR_TYPE_WARNING, "udp", "Malformed 
EXTERNAL_ADDRESS %s given in configuration!\n", external_address);
+      GNUNET_log (GNUNET_ERROR_TYPE_WARNING, "Malformed EXTERNAL_ADDRESS %s 
given in configuration!\n", external_address);
     }
 
   internal_address = NULL;
@@ -2162,10 +2197,8 @@
                                                 "INTERNAL_ADDRESS",
                                                 &internal_address)))
     {
-      GNUNET_log_from (GNUNET_ERROR_TYPE_ERROR,
-                       "udp",
-                       _
-                       ("Require INTERNAL_ADDRESS for service `%s' in 
configuration!\n"),
+      GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
+                       _("Require INTERNAL_ADDRESS for service `%s' in 
configuration!\n"),
                        "transport-udp");
       GNUNET_SERVICE_stop (service);
       GNUNET_free_non_null(external_address);
@@ -2174,7 +2207,7 @@
 
   if ((internal_address != NULL) && (inet_pton(AF_INET, internal_address, 
&v4_address.ipv4_addr) != 1))
     {
-      GNUNET_log_from(GNUNET_ERROR_TYPE_WARNING, "udp", "Malformed 
INTERNAL_ADDRESS %s given in configuration!\n", internal_address);
+      GNUNET_log (GNUNET_ERROR_TYPE_WARNING, "Malformed INTERNAL_ADDRESS %s 
given in configuration!\n", internal_address);
     }
 
   if (GNUNET_OK !=
@@ -2185,12 +2218,11 @@
     port = UDP_NAT_DEFAULT_PORT;
   else if (port > 65535)
     {
-      GNUNET_log_from (GNUNET_ERROR_TYPE_WARNING,
-                      "udp",
-                      _("Given `%s' option is out of range: %llu > %u\n"),
-                      "PORT",
-                      port,
-                      65535);
+      GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
+                  _("Given `%s' option is out of range: %llu > %u\n"),
+                  "PORT",
+                  port,
+                  65535);
       GNUNET_SERVICE_stop (service);
       GNUNET_free_non_null(external_address);
       GNUNET_free_non_null(internal_address);
@@ -2199,10 +2231,9 @@
 
   mtu = 1240;
   if (mtu < 1200)
-    GNUNET_log_from (GNUNET_ERROR_TYPE_INFO,
-                     "udp",
-                     _("MTU %llu for `%s' is probably too low!\n"), mtu,
-                     "UDP");
+    GNUNET_log (GNUNET_ERROR_TYPE_INFO,
+                _("MTU %llu for `%s' is probably too low!\n"), mtu,
+                "UDP");
 
   plugin = GNUNET_malloc (sizeof (struct Plugin));
   plugin->external_address = external_address;
@@ -2224,6 +2255,10 @@
 
   plugin->service = service;
 
+  GNUNET_CONFIGURATION_get_value_string(env->cfg, "transport-udp", "BINDTO", 
&plugin->bind_address);
+
+  GNUNET_CONFIGURATION_get_value_string(env->cfg, "transport-udp", "BINDTO6", 
&plugin->bind6_address);
+
   if (plugin->behind_nat == GNUNET_NO)
     {
       GNUNET_OS_network_interfaces_list (&process_interfaces, plugin);
@@ -2253,9 +2288,8 @@
 
   sockets_created = udp_transport_server_start (plugin);
   if (sockets_created == 0)
-    GNUNET_log_from (GNUNET_ERROR_TYPE_WARNING,
-                    "udp",
-                    _("Failed to open UDP sockets\n"));
+    GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
+               _("Failed to open UDP sockets\n"));
   return api;
 }
 




reply via email to

[Prev in Thread] Current Thread [Next in Thread]