-indentation
[oweals/gnunet.git] / src / transport / plugin_transport_unix.c
index 67c176633e25ace5f4c3e6bc1d217e311e1273c9..03c38f4e163a07676804c89f8187382734c53fa6 100644 (file)
 
 #define PLUGIN_NAME "unix"
 
+enum UNIX_ADDRESS_OPTIONS
+{
+  UNIX_OPTIONS_NONE = 0,
+  UNIX_OPTIONS_USE_ABSTRACT_SOCKETS = 1
+};
+
+
 /**
  * How long until we give up on transmitting the welcome message?
  */
 #define HOSTNAME_RESOLVE_TIMEOUT GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_SECONDS, 5)
 
-/**
- * Default "port" to use, if configuration does not specify.
- * Essentially just a number appended to the UNIX path.
- */
-#define UNIX_NAT_DEFAULT_PORT 22086
-
-
 #define LOG(kind,...) GNUNET_log_from (kind, "transport-unix",__VA_ARGS__)
 
 
@@ -64,9 +64,9 @@ GNUNET_NETWORK_STRUCT_BEGIN
 
 struct UnixAddress
 {
-       uint32_t options GNUNET_PACKED;
+  uint32_t options GNUNET_PACKED;
 
-       uint32_t addrlen GNUNET_PACKED;
+  uint32_t addrlen GNUNET_PACKED;
 };
 
 
@@ -88,12 +88,6 @@ struct UNIXMessage
 };
 
 GNUNET_NETWORK_STRUCT_END
-
-/**
- * Address options
- */
-static uint32_t myoptions;
-
 /**
  * Handle for a session.
  */
@@ -103,11 +97,7 @@ struct Session
 
   struct Plugin * plugin;
 
-  struct UnixAddress *addr;
-
-  size_t addrlen;
-
-  int inbound;
+  struct GNUNET_HELLO_Address *address;
 
   /**
    * Session timeout task
@@ -308,6 +298,12 @@ struct Plugin
    */
   struct UNIX_Sock_Info unix_sock;
 
+  /**
+   * Address options in HBO
+   */
+  uint32_t myoptions;
+
+
   /**
    * ATS network
    */
@@ -320,11 +316,7 @@ struct Plugin
    */
   int with_ws;
 
-  /**
-   * Integer to append to unix domain socket.
-   */
-  uint16_t port;
-
+  int abstract;
 };
 
 
@@ -349,6 +341,30 @@ static void
 unix_plugin_select (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc);
 
 
+static struct sockaddr_un *
+unix_address_to_sockaddr (const char *unixpath,
+                          socklen_t *sock_len)
+{
+  struct sockaddr_un *un;
+  size_t slen;
+
+  GNUNET_assert (0 < strlen (unixpath));        /* sanity check */
+  un = GNUNET_new (struct sockaddr_un);
+  un->sun_family = AF_UNIX;
+  slen = strlen (unixpath);
+  if (slen >= sizeof (un->sun_path))
+    slen = sizeof (un->sun_path) - 1;
+  memcpy (un->sun_path, unixpath, slen);
+  un->sun_path[slen] = '\0';
+  slen = sizeof (struct sockaddr_un);
+#if HAVE_SOCKADDR_IN_SIN_LEN
+  un->sun_len = (u_char) slen;
+#endif
+  (*sock_len) = slen;
+  return un;
+}
+
+
 /**
  * Function called for a quick conversion of the binary address to
  * a numeric address.  Note that the caller must not free the
@@ -357,21 +373,24 @@ unix_plugin_select (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc);
  *
  * @param cls closure
  * @param addr binary address
- * @param addrlen length of the address
+ * @param addrlen length of the @a addr
  * @return string representing the same address
  */
 static const char *
-unix_address_to_string (void *cls, const void *addr, size_t addrlen)
+unix_address_to_string (void *cls,
+                        const void *addr,
+                        size_t addrlen)
 {
   static char rbuf[1024];
   struct UnixAddress *ua = (struct UnixAddress *) addr;
   char *addrstr;
   size_t addr_str_len;
+  unsigned int off;
 
   if ((NULL == addr) || (sizeof (struct UnixAddress) > addrlen))
   {
     GNUNET_break(0);
-    return NULL ;
+    return NULL;
   }
   addrstr = (char *) &ua[1];
   addr_str_len = ntohl (ua->addrlen);
@@ -379,50 +398,36 @@ unix_address_to_string (void *cls, const void *addr, size_t addrlen)
   if (addr_str_len != addrlen - sizeof(struct UnixAddress))
   {
     GNUNET_break(0);
-    return NULL ;
+    return NULL;
   }
 
   if ('\0' != addrstr[addr_str_len - 1])
   {
     GNUNET_break(0);
-    return NULL ;
+    return NULL;
   }
   if (strlen (addrstr) + 1 != addr_str_len)
   {
     GNUNET_break(0);
-    return NULL ;
+    return NULL;
   }
 
-  GNUNET_snprintf (rbuf, sizeof(rbuf), "%s.%u.%s", PLUGIN_NAME,
-      ntohl (ua->options), addrstr);
+  off = 0;
+  if ('\0' == addrstr[0])
+    off++;
+  memset (rbuf, 0, sizeof (rbuf));
+  GNUNET_snprintf (rbuf,
+                   sizeof (rbuf) - 1,
+                   "%s.%u.%s%.*s",
+                   PLUGIN_NAME,
+                   ntohl (ua->options),
+                   (off == 1) ? "@" : "",
+                   (int) (addr_str_len - off),
+                   &addrstr[off]);
   return rbuf;
 }
 
 
-static struct sockaddr_un *
-unix_address_to_sockaddr (const char *unixpath,
-                          socklen_t *sock_len)
-{
-  struct sockaddr_un *un;
-  size_t slen;
-
-  GNUNET_assert (0 < strlen (unixpath));        /* sanity check */
-  un = GNUNET_new (struct sockaddr_un);
-  un->sun_family = AF_UNIX;
-  slen = strlen (unixpath);
-  if (slen >= sizeof (un->sun_path))
-    slen = sizeof (un->sun_path) - 1;
-  memcpy (un->sun_path, unixpath, slen);
-  un->sun_path[slen] = '\0';
-  slen = sizeof (struct sockaddr_un);
-#if HAVE_SOCKADDR_IN_SIN_LEN
-  un->sun_len = (u_char) slen;
-#endif
-  (*sock_len) = slen;
-  return un;
-}
-
-
 /**
  * Re-schedule the main 'select' callback (unix_plugin_select)
  * for this plugin.
@@ -468,17 +473,9 @@ struct LookupCtx
   /**
    * Location to store the session, if found.
    */
-  struct Session *s;
-
-  /**
-   * Address we are looking for.
-   */
-  const struct UnixAddress *ua;
+  struct Session *res;
 
-  /**
-   * Number of bytes in @e ua
-   */
-  size_t ua_len;
+  struct GNUNET_HELLO_Address *address;
 };
 
 
@@ -496,20 +493,13 @@ lookup_session_it (void *cls,
                   void *value)
 {
   struct LookupCtx *lctx = cls;
-  struct Session *t = value;
-
-  if (t->addrlen != lctx->ua_len)
-  {
-    GNUNET_break (0);
-    return GNUNET_YES;
-  }
+  struct Session *s = value;
 
-  if (0 == memcmp (t->addr, lctx->ua, lctx->ua_len))
+  if (0 == GNUNET_HELLO_address_cmp (lctx->address, s->address))
   {
-    lctx->s = t;
+    lctx->res = s;
     return GNUNET_NO;
   }
-  GNUNET_break (0);
   return GNUNET_YES;
 }
 
@@ -518,25 +508,21 @@ lookup_session_it (void *cls,
  * Find an existing session by address.
  *
  * @param plugin the plugin
- * @param sender for which peer should the session be?
- * @param ua address to look for
- * @param ua_len length of the address
+ * @param address the address to find
  * @return NULL if session was not found
  */
 static struct Session *
 lookup_session (struct Plugin *plugin,
-               const struct GNUNET_PeerIdentity *sender,
-               const struct UnixAddress *ua, size_t ua_len)
+                struct GNUNET_HELLO_Address *address)
 {
   struct LookupCtx lctx;
 
-  lctx.s = NULL;
-  lctx.ua = ua;
-  lctx.ua_len = ua_len;
+  lctx.address = address;
+  lctx.res = NULL;
   GNUNET_CONTAINER_multipeermap_get_multiple (plugin->session_map,
-                                             sender,
+                                             &address->peer,
                                              &lookup_session_it, &lctx);
-  return lctx.s;
+  return lctx.res;
 }
 
 
@@ -561,8 +547,10 @@ unix_session_disconnect (void *cls,
   LOG (GNUNET_ERROR_TYPE_DEBUG,
        "Disconnecting session for peer `%s' `%s'\n",
        GNUNET_i2s (&s->target),
-       s->addr);
-  plugin->env->session_end (plugin->env->cls, &s->target, s);
+       unix_address_to_string (NULL,
+                               s->address->address,
+                               s->address->address_length));
+  plugin->env->session_end (plugin->env->cls, s->address, s);
   removed = GNUNET_NO;
   next = plugin->msg_head;
   while (NULL != next)
@@ -594,6 +582,7 @@ unix_session_disconnect (void *cls,
     GNUNET_SCHEDULER_cancel (s->timeout_task);
     s->timeout_task = GNUNET_SCHEDULER_NO_TASK;
   }
+  GNUNET_HELLO_address_free (s->address);
   GNUNET_free (s);
   return GNUNET_OK;
 }
@@ -667,12 +656,18 @@ unix_real_send (void *cls,
 
   /* Prepare address */
   unixpath = (const char *)  &addr[1];
-  if (NULL == (un = unix_address_to_sockaddr (unixpath, &un_len)))
+  if (NULL == (un = unix_address_to_sockaddr (unixpath,
+                                              &un_len)))
   {
     GNUNET_break (0);
     return -1;
   }
 
+  if ((GNUNET_YES == plugin->abstract) &&
+      (0 != (UNIX_OPTIONS_USE_ABSTRACT_SOCKETS & ntohl(addr->options) )) )
+  {
+    un->sun_path[0] = '\0';
+  }
 resend:
   /* Send the data */
   sent = GNUNET_NETWORK_socket_sendto (send_handle, msgbuf, msgbuf_size,
@@ -746,12 +741,7 @@ struct GetSessionIteratorContext
   /**
    * Address information.
    */
-  const char *address;
-
-  /**
-   * Number of bytes in @e address
-   */
-  size_t addrlen;
+  const struct GNUNET_HELLO_Address *address;
 };
 
 
@@ -771,8 +761,7 @@ get_session_it (void *cls,
   struct GetSessionIteratorContext *gsi = cls;
   struct Session *s = value;
 
-  if ((GNUNET_NO == s->inbound) && (gsi->addrlen == s->addrlen) &&
-       (0 == memcmp (gsi->address, s->addr, s->addrlen)) )
+  if (0 == GNUNET_HELLO_address_cmp(s->address, gsi->address))
   {
     gsi->res = s;
     return GNUNET_NO;
@@ -837,6 +826,7 @@ unix_plugin_get_session (void *cls,
   struct UnixAddress *ua;
   char * addrstr;
   uint32_t addr_str_len;
+  uint32_t addr_option;
 
   GNUNET_assert (NULL != plugin);
   GNUNET_assert (NULL != address);
@@ -848,14 +838,21 @@ unix_plugin_get_session (void *cls,
     GNUNET_break (0);
     return NULL;
   }
-       addrstr = (char *) &ua[1];
-       addr_str_len = ntohl (ua->addrlen);
-       if (addr_str_len != address->address_length - sizeof (struct UnixAddress))
+  addrstr = (char *) &ua[1];
+  addr_str_len = ntohl (ua->addrlen);
+  addr_option = ntohl (ua->options);
+
+  if ( (0 != (UNIX_OPTIONS_USE_ABSTRACT_SOCKETS & addr_option)) &&
+    (GNUNET_NO == plugin->abstract))
   {
-               /* This can be a legacy address */
     return NULL;
   }
 
+  if (addr_str_len != address->address_length - sizeof (struct UnixAddress))
+  {
+    return NULL; /* This can be a legacy address */
+  }
+
   if ('\0' != addrstr[addr_str_len - 1])
   {
     GNUNET_break (0);
@@ -868,8 +865,7 @@ unix_plugin_get_session (void *cls,
   }
 
   /* Check if already existing */
-  gsi.address = (const char *) address->address;
-  gsi.addrlen = address->address_length;
+  gsi.address = address;
   gsi.res = NULL;
   GNUNET_CONTAINER_multipeermap_get_multiple (plugin->session_map,
                                              &address->peer,
@@ -877,25 +873,27 @@ unix_plugin_get_session (void *cls,
   if (NULL != gsi.res)
   {
     LOG (GNUNET_ERROR_TYPE_DEBUG,
-        "Found existing session\n");
+         "Found existing session %p for address `%s'\n",
+        gsi.res,
+        unix_address_to_string (NULL, address->address, address->address_length));
     return gsi.res;
   }
 
   /* create a new session */
-  s = GNUNET_malloc (sizeof (struct Session) + address->address_length);
-  s->addr = (struct UnixAddress *) &s[1];
-  s->addrlen = address->address_length;
+  s = GNUNET_new (struct Session);
+  s->target = address->peer;
+  s->address = GNUNET_HELLO_address_copy (address);
   s->plugin = plugin;
-  s->inbound = GNUNET_NO;
-  memcpy (s->addr, address->address, address->address_length);
-  memcpy (&s->target, &address->peer, sizeof (struct GNUNET_PeerIdentity));
   GNUNET_assert (GNUNET_SCHEDULER_NO_TASK == s->timeout_task);
   s->timeout_task = GNUNET_SCHEDULER_add_delayed (GNUNET_CONSTANTS_IDLE_CONNECTION_TIMEOUT,
                                                  &session_timeout,
                                                  s);
   LOG (GNUNET_ERROR_TYPE_DEBUG,
        "Creating a new session %p for address `%s'\n",
-       s,  unix_address_to_string (NULL, address->address, address->address_length));
+       s,
+       unix_address_to_string (NULL,
+                               address->address,
+                               address->address_length));
   (void) GNUNET_CONTAINER_multipeermap_put (plugin->session_map,
                                            &address->peer, s,
                                            GNUNET_CONTAINER_MULTIHASHMAPOPTION_MULTIPLE);
@@ -911,7 +909,14 @@ unix_plugin_update_session_timeout (void *cls,
                                   const struct GNUNET_PeerIdentity *peer,
                                   struct Session *session)
 {
+  struct Plugin *plugin = cls;
 
+  if (GNUNET_OK !=
+      GNUNET_CONTAINER_multipeermap_contains_value (plugin->session_map,
+                                                    &session->target,
+                                                    session))
+    return;
+  reschedule_session_timeout (session);
 }
 
 /**
@@ -962,7 +967,9 @@ unix_plugin_send (void *cls,
     LOG (GNUNET_ERROR_TYPE_ERROR,
         "Invalid session for peer `%s' `%s'\n",
         GNUNET_i2s (&session->target),
-        (const char *) session->addr);
+        unix_address_to_string(NULL,
+                                session->address->address,
+                                session->address->address_length));
     GNUNET_break (0);
     return GNUNET_SYSERR;
   }
@@ -970,7 +977,9 @@ unix_plugin_send (void *cls,
        "Sending %u bytes with session for peer `%s' `%s'\n",
        msgbuf_size,
        GNUNET_i2s (&session->target),
-       (const char *) session->addr);
+       unix_address_to_string (NULL,
+                               session->address->address,
+                               session->address->address_length));
   ssize = sizeof (struct UNIXMessage) + msgbuf_size;
   message = GNUNET_malloc (sizeof (struct UNIXMessage) + msgbuf_size);
   message->header.size = htons (ssize);
@@ -978,7 +987,7 @@ unix_plugin_send (void *cls,
   memcpy (&message->sender, plugin->env->my_identity,
           sizeof (struct GNUNET_PeerIdentity));
   memcpy (&message[1], msgbuf, msgbuf_size);
-  reschedule_session_timeout (session);
+
   wrapper = GNUNET_new (struct UNIXMessageWrapper);
   wrapper->msg = message;
   wrapper->msgsize = ssize;
@@ -1017,43 +1026,35 @@ unix_demultiplexer (struct Plugin *plugin, struct GNUNET_PeerIdentity *sender,
                     const struct UnixAddress *ua, size_t ua_len)
 {
   struct Session *s = NULL;
-  struct GNUNET_HELLO_Address * addr;
+  struct GNUNET_HELLO_Address *address;
 
   GNUNET_break (ntohl(plugin->ats_network.value) != GNUNET_ATS_NET_UNSPECIFIED);
   GNUNET_assert (ua_len >= sizeof (struct UnixAddress));
   LOG (GNUNET_ERROR_TYPE_DEBUG,
        "Received message from %s\n",
-       unix_address_to_string(NULL, ua, ua_len));
+       unix_address_to_string (NULL, ua, ua_len));
   GNUNET_STATISTICS_update (plugin->env->stats,
                            "# bytes received via UNIX",
                            ntohs (currhdr->size),
                            GNUNET_NO);
 
-  addr = GNUNET_HELLO_address_allocate (sender,
-                                       "unix",
-                                       ua,
-                                       ua_len);
-  s = lookup_session (plugin, sender, ua, ua_len);
+  /* Look for existing session */
+  address = GNUNET_HELLO_address_allocate (sender, PLUGIN_NAME, ua, ua_len,
+      GNUNET_HELLO_ADDRESS_INFO_NONE); /* UNIX does not have "inbound" sessions */
+  s = lookup_session (plugin, address);
+
   if (NULL == s)
   {
-    s = unix_plugin_get_session (plugin, addr);
-    s->inbound = GNUNET_YES;
+    s = unix_plugin_get_session (plugin, address);
     /* Notify transport and ATS about new inbound session */
-    plugin->env->session_start (NULL, sender,
-               PLUGIN_NAME, ua, ua_len, s, &plugin->ats_network, 1);
+    plugin->env->session_start (NULL, s->address, s, &plugin->ats_network, 1);
   }
+  GNUNET_HELLO_address_free (address);
   reschedule_session_timeout (s);
 
-  plugin->env->receive (plugin->env->cls, sender, currhdr, s,
-                        (GNUNET_YES == s->inbound) ? NULL : (const char *) ua,
-                                           (GNUNET_YES == s->inbound) ? 0 : ua_len);
-
-  plugin->env->update_address_metrics (plugin->env->cls, sender,
-                                      (GNUNET_YES == s->inbound) ? NULL : (const char *) ua,
-                                      (GNUNET_YES == s->inbound) ? 0 : ua_len,
-                                      s, &plugin->ats_network, 1);
-
-  GNUNET_free (addr);
+  plugin->env->receive (plugin->env->cls, s->address, s, currhdr);
+  plugin->env->update_address_metrics (plugin->env->cls, s->address, s,
+                                      &plugin->ats_network, 1);
 }
 
 
@@ -1074,6 +1075,7 @@ unix_plugin_select_read (struct Plugin *plugin)
   ssize_t ret;
   int offset;
   int tsize;
+  int is_abstract;
   char *msgbuf;
   const struct GNUNET_MessageHeader *currhdr;
   uint16_t csize;
@@ -1103,11 +1105,21 @@ unix_plugin_select_read (struct Plugin *plugin)
   }
 
   GNUNET_assert (AF_UNIX == (un.sun_family));
+  is_abstract = GNUNET_NO;
+  if ('\0' == un.sun_path[0])
+  {
+    un.sun_path[0] = '@';
+    is_abstract = GNUNET_YES;
+  }
+
   ua_len = sizeof (struct UnixAddress) + strlen (un.sun_path) + 1;
   ua = GNUNET_malloc (ua_len);
   ua->addrlen = htonl (strlen (&un.sun_path[0]) +1);
-  ua->options = htonl (0);
   memcpy (&ua[1], &un.sun_path[0], strlen (un.sun_path) + 1);
+  if (is_abstract)
+    ua->options = htonl(UNIX_OPTIONS_USE_ABSTRACT_SOCKETS);
+  else
+    ua->options = htonl(UNIX_OPTIONS_NONE);
 
   msg = (struct UNIXMessage *) buf;
   csize = ntohs (msg->header.size);
@@ -1185,8 +1197,8 @@ unix_plugin_select_write (struct Plugin *plugin)
                          msgw->msgsize,
                          msgw->priority,
                          msgw->timeout,
-                         msgw->session->addr,
-                         msgw->session->addrlen,
+                         msgw->session->address->address,
+                         msgw->session->address->address_length,
                          msgw->payload,
                          msgw->cont, msgw->cont_cls);
 
@@ -1295,7 +1307,13 @@ unix_transport_server_start (void *cls)
   struct sockaddr_un *un;
   socklen_t un_len;
 
-  un = unix_address_to_sockaddr (plugin->unix_socket_path, &un_len);
+  un = unix_address_to_sockaddr (plugin->unix_socket_path,
+                                 &un_len);
+  if (GNUNET_YES == plugin->abstract)
+  {
+    plugin->unix_socket_path[0] = '@';
+    un->sun_path[0] = '\0';
+  }
   plugin->ats_network = plugin->env->get_address_type (plugin->env->cls, (const struct sockaddr *) un, un_len);
   plugin->unix_sock.desc =
       GNUNET_NETWORK_socket_create (AF_UNIX, SOCK_DGRAM, 0);
@@ -1304,6 +1322,18 @@ unix_transport_server_start (void *cls)
     GNUNET_log_strerror (GNUNET_ERROR_TYPE_ERROR, "socket");
     return GNUNET_SYSERR;
   }
+  if ('\0' != un->sun_path[0])
+  {
+    if (GNUNET_OK != GNUNET_DISK_directory_create_for_file (un->sun_path))
+    {
+      LOG (GNUNET_ERROR_TYPE_ERROR, _("Cannot create path to `%s'\n"),
+          un->sun_path);
+      GNUNET_NETWORK_socket_close (plugin->unix_sock.desc);
+      plugin->unix_sock.desc = NULL;
+      GNUNET_free (un);
+      return GNUNET_SYSERR;
+    }
+  }
   if (GNUNET_OK !=
       GNUNET_NETWORK_socket_bind (plugin->unix_sock.desc, (const struct sockaddr *)  un, un_len))
   {
@@ -1397,20 +1427,18 @@ unix_plugin_address_pretty_printer (void *cls, const char *type,
                                     GNUNET_TRANSPORT_AddressStringCallback asc,
                                     void *asc_cls)
 {
-  if ((NULL != addr) && (addrlen > 0))
-  {
-    asc (asc_cls, unix_address_to_string (NULL, addr, addrlen));
-  }
-  else if (0 == addrlen)
-  {
-    asc (asc_cls, TRANSPORT_SESSION_INBOUND_STRING);
-  }
+  const char *ret;
+
+  if ( (NULL != addr) && (addrlen > 0))
+    ret = unix_address_to_string (NULL,
+                                  addr,
+                                  addrlen);
   else
-  {
-    GNUNET_break (0);
-    asc (asc_cls, "<invalid UNIX address>");
-  }
-  asc (asc_cls, NULL);
+    ret = NULL;
+  asc (asc_cls,
+       ret,
+       (NULL == ret) ? GNUNET_SYSERR : GNUNET_OK);
+  asc (asc_cls, NULL, GNUNET_OK);
 }
 
 
@@ -1418,7 +1446,7 @@ unix_plugin_address_pretty_printer (void *cls, const char *type,
  * Function called to convert a string address to
  * a binary address.
  *
- * @param cls closure ('struct Plugin*')
+ * @param cls closure (`struct Plugin *`)
  * @param addr string address
  * @param addrlen length of the @a addr (strlen(addr) + '\0')
  * @param buf location to store the buffer
@@ -1509,26 +1537,32 @@ address_notification (void *cls,
                      const struct GNUNET_SCHEDULER_TaskContext *tc)
 {
   struct Plugin *plugin = cls;
+  struct GNUNET_HELLO_Address *address;
   size_t len;
   struct UnixAddress *ua;
+  char *unix_path;
 
   len = sizeof (struct UnixAddress) + strlen (plugin->unix_socket_path) + 1;
   ua = GNUNET_malloc (len);
-  ua->options = htonl (myoptions);
+  ua->options = htonl (plugin->myoptions);
   ua->addrlen = htonl(strlen (plugin->unix_socket_path) + 1);
-  memcpy (&ua[1], plugin->unix_socket_path, strlen (plugin->unix_socket_path) + 1);
+  unix_path = (char *) &ua[1];
+  memcpy (unix_path, plugin->unix_socket_path, strlen (plugin->unix_socket_path) + 1);
 
   plugin->address_update_task = GNUNET_SCHEDULER_NO_TASK;
-  plugin->env->notify_address (plugin->env->cls, GNUNET_YES,
-                               ua, len, "unix");
+  address = GNUNET_HELLO_address_allocate (plugin->env->my_identity,
+      PLUGIN_NAME, ua, len, GNUNET_HELLO_ADDRESS_INFO_NONE);
+
+  plugin->env->notify_address (plugin->env->cls, GNUNET_YES, address);
   GNUNET_free (ua);
+  GNUNET_free (address);
 }
 
 
 /**
  * Increment session timeout due to activity
  *
- * @param s session for which the timeout should be moved
+ * @param s session for which the timeout should be rescheduled
  */
 static void
 reschedule_session_timeout (struct Session *s)
@@ -1552,7 +1586,7 @@ reschedule_session_timeout (struct Session *s)
  *
  * @param cls the plugin
  * @param key peer identity (unused)
- * @param value the 'struct Session' to disconnect
+ * @param value the `struct Session *` to disconnect
  * @return #GNUNET_YES (always, continue to iterate)
  */
 static int
@@ -1599,7 +1633,6 @@ void *
 libgnunet_plugin_transport_unix_init (void *cls)
 {
   struct GNUNET_TRANSPORT_PluginEnvironment *env = cls;
-  unsigned long long port;
   struct GNUNET_TRANSPORT_PluginFunctions *api;
   struct Plugin *plugin;
   int sockets_created;
@@ -1615,19 +1648,30 @@ libgnunet_plugin_transport_unix_init (void *cls)
     api->string_to_address = &unix_string_to_address;
     return api;
   }
-  if (GNUNET_OK !=
-      GNUNET_CONFIGURATION_get_value_number (env->cfg, "transport-unix", "PORT",
-                                             &port))
-    port = UNIX_NAT_DEFAULT_PORT;
+
   plugin = GNUNET_new (struct Plugin);
-  plugin->port = port;
+  if (GNUNET_OK !=
+      GNUNET_CONFIGURATION_get_value_filename(env->cfg, "transport-unix", "UNIXPATH",
+                                             &plugin->unix_socket_path))
+  {
+    LOG (GNUNET_ERROR_TYPE_ERROR,
+         _("No UNIXPATH given in configuration!\n"));
+    GNUNET_free (plugin);
+    return NULL;
+  }
+
   plugin->env = env;
-  GNUNET_asprintf (&plugin->unix_socket_path,
-                  "/tmp/unix-plugin-sock.%d",
-                   plugin->port);
 
   /* Initialize my flags */
-  myoptions = 0;
+#ifdef LINUX
+    plugin->abstract = GNUNET_CONFIGURATION_get_value_yesno (plugin->env->cfg,
+        "testing", "USE_ABSTRACT_SOCKETS");
+#endif
+  plugin->myoptions = UNIX_OPTIONS_NONE;
+  if (GNUNET_YES == plugin->abstract)
+  {
+    plugin->myoptions = UNIX_OPTIONS_USE_ABSTRACT_SOCKETS;
+  }
 
   api = GNUNET_new (struct GNUNET_TRANSPORT_PluginFunctions);
   api->cls = plugin;
@@ -1644,9 +1688,15 @@ libgnunet_plugin_transport_unix_init (void *cls)
   api->get_network = &unix_get_network;
   api->update_session_timeout = &unix_plugin_update_session_timeout;
   sockets_created = unix_transport_server_start (plugin);
-  if (0 == sockets_created)
+  if ((0 == sockets_created) || (GNUNET_SYSERR == sockets_created))
+  {
     LOG (GNUNET_ERROR_TYPE_WARNING,
         _("Failed to open UNIX listen socket\n"));
+    GNUNET_free (api);
+    GNUNET_free (plugin->unix_socket_path);
+    GNUNET_free (plugin);
+    return NULL;
+  }
   plugin->session_map = GNUNET_CONTAINER_multipeermap_create (10, GNUNET_NO);
   plugin->address_update_task = GNUNET_SCHEDULER_add_now (&address_notification, plugin);
   return api;
@@ -1664,6 +1714,7 @@ libgnunet_plugin_transport_unix_done (void *cls)
 {
   struct GNUNET_TRANSPORT_PluginFunctions *api = cls;
   struct Plugin *plugin = api->cls;
+  struct GNUNET_HELLO_Address *address;
   struct UNIXMessageWrapper * msgw;
   struct UnixAddress *ua;
   size_t len;
@@ -1676,13 +1727,16 @@ libgnunet_plugin_transport_unix_done (void *cls)
 
   len = sizeof (struct UnixAddress) + strlen (plugin->unix_socket_path) + 1;
   ua = GNUNET_malloc (len);
-  ua->options = htonl (myoptions);
+  ua->options = htonl (plugin->myoptions);
   ua->addrlen = htonl(strlen (plugin->unix_socket_path) + 1);
   memcpy (&ua[1], plugin->unix_socket_path, strlen (plugin->unix_socket_path) + 1);
+  address = GNUNET_HELLO_address_allocate (plugin->env->my_identity,
+      PLUGIN_NAME, ua, len, GNUNET_HELLO_ADDRESS_INFO_NONE);
+  plugin->env->notify_address (plugin->env->cls, GNUNET_NO, address);
 
-  plugin->env->notify_address (plugin->env->cls, GNUNET_NO,
-                                                                                                                ua, len, "unix");
+  GNUNET_free (address);
   GNUNET_free (ua);
+
   while (NULL != (msgw = plugin->msg_head))
   {
     GNUNET_CONTAINER_DLL_remove (plugin->msg_head, plugin->msg_tail, msgw);