more logging, more FIXMEs
[oweals/gnunet.git] / src / topology / gnunet-daemon-topology.c
index e623ae46cc8b427db98811cdc5f17f279da3beaf..5a22ee0d22b4fdce1aca379456c40a57c4e5fb05 100644 (file)
@@ -1,21 +1,21 @@
 /*
      This file is part of GNUnet.
-     Copyright (C) 2007-2015 GNUnet e.V.
+     Copyright (C) 2007-2016 GNUnet e.V.
 
-     GNUnet is free software; you can redistribute it and/or modify
-     it under the terms of the GNU General Public License as published
-     by the Free Software Foundation; either version 3, or (at your
-     option) any later version.
+     GNUnet is free software: you can redistribute it and/or modify it
+     under the terms of the GNU Affero General Public License as published
+     by the Free Software Foundation, either version 3 of the License,
+     or (at your option) any later version.
 
      GNUnet is distributed in the hope that it will be useful, but
      WITHOUT ANY WARRANTY; without even the implied warranty of
      MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
-     General Public License for more details.
+     Affero General Public License for more details.
 
-     You should have received a copy of the GNU General Public License
-     along with GNUnet; see the file COPYING.  If not, write to the
-     Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
-     Boston, MA 02110-1301, USA.
+     You should have received a copy of the GNU Affero General Public License
+     along with this program.  If not, see <http://www.gnu.org/licenses/>.
+
+     SPDX-License-Identifier: AGPL3.0-or-later
 */
 
 /**
 /**
  * At what frequency do we sent HELLOs to a peer?
  */
-#define HELLO_ADVERTISEMENT_MIN_FREQUENCY GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_MINUTES, 5)
+#define HELLO_ADVERTISEMENT_MIN_FREQUENCY \
+  GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_MINUTES, 5)
 
 /**
  * After what time period do we expire the HELLO Bloom filter?
  */
-#define HELLO_ADVERTISEMENT_MIN_REPEAT_FREQUENCY GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_HOURS, 4)
+#define HELLO_ADVERTISEMENT_MIN_REPEAT_FREQUENCY \
+  GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_HOURS, 4)
 
 
 /**
@@ -70,10 +72,10 @@ struct Peer
   struct GNUNET_PeerIdentity pid;
 
   /**
-   * Our handle for the request to transmit HELLOs to this peer; NULL
-   * if no such request is pending.
+   * Our handle for transmitting to this peer; NULL
+   * if peer is not connected.
    */
-  struct GNUNET_CORE_TransmitHandle *hello_req;
+  struct GNUNET_MQ_Handle *mq;
 
   /**
    * Pointer to the HELLO message of this peer; can be NULL.
@@ -113,15 +115,9 @@ struct Peer
   uint32_t strength;
 
   /**
-   * Is this peer listed here because he is a friend?
+   * Is this peer listed here because it is a friend?
    */
   int is_friend;
-
-  /**
-   * Are we connected to this peer right now?
-   */
-  int is_connected;
-
 };
 
 
@@ -141,6 +137,11 @@ static const struct GNUNET_CONFIGURATION_Handle *cfg;
  */
 static struct GNUNET_CORE_Handle *handle;
 
+/**
+ * Handle to the PEERINFO service.
+ */
+static struct GNUNET_PEERINFO_Handle *pi;
+
 /**
  * Handle to the ATS service.
  */
@@ -216,15 +217,12 @@ static unsigned int friend_count;
  * @return #GNUNET_OK if the connection is allowed
  */
 static int
-blacklist_check (void *cls,
-                 const struct GNUNET_PeerIdentity *pid)
+blacklist_check (void *cls, const struct GNUNET_PeerIdentity *pid)
 {
   struct Peer *pos;
 
-  pos = GNUNET_CONTAINER_multipeermap_get (peers,
-                                           pid);
-  if ( (NULL != pos) &&
-       (GNUNET_YES == pos->is_friend))
+  pos = GNUNET_CONTAINER_multipeermap_get (peers, pid);
+  if ((NULL != pos) && (GNUNET_YES == pos->is_friend))
     return GNUNET_OK;
   GNUNET_STATISTICS_update (stats,
                             gettext_noop ("# peers blacklisted"),
@@ -258,22 +256,13 @@ whitelist_peers ()
  * @return #GNUNET_YES (always: continue to iterate)
  */
 static int
-free_peer (void *cls,
-           const struct GNUNET_PeerIdentity * pid,
-           void *value)
+free_peer (void *cls, const struct GNUNET_PeerIdentity *pid, void *value)
 {
   struct Peer *pos = value;
 
-  GNUNET_break (GNUNET_NO == pos->is_connected);
+  GNUNET_break (NULL == pos->mq);
   GNUNET_break (GNUNET_OK ==
-                GNUNET_CONTAINER_multipeermap_remove (peers,
-                                                      pid,
-                                                      pos));
-  if (NULL != pos->hello_req)
-  {
-    GNUNET_CORE_notify_transmit_ready_cancel (pos->hello_req);
-    pos->hello_req = NULL;
-  }
+                GNUNET_CONTAINER_multipeermap_remove (peers, pid, pos));
   if (NULL != pos->hello_delay_task)
   {
     GNUNET_SCHEDULER_cancel (pos->hello_delay_task);
@@ -310,17 +299,13 @@ attempt_connect (struct Peer *pos)
 {
   uint32_t strength;
 
-  if (0 ==
-      memcmp (&my_identity,
-              &pos->pid,
-              sizeof (struct GNUNET_PeerIdentity)))
+  if (0 == GNUNET_memcmp (&my_identity, &pos->pid))
     return; /* This is myself, nothing to do. */
   if (connection_count < target_connection_count)
     strength = 1;
   else
     strength = 0;
-  if ( (friend_count < minimum_friend_count) ||
-       (GNUNET_YES == friends_only) )
+  if ((friend_count < minimum_friend_count) || (GNUNET_YES == friends_only))
   {
     if (pos->is_friend)
       strength += 10; /* urgently needed */
@@ -329,7 +314,7 @@ attempt_connect (struct Peer *pos)
   }
   if (pos->is_friend)
     strength *= 2; /* friends always count more */
-  if (pos->is_connected)
+  if (NULL != pos->mq)
     strength *= 2; /* existing connections preferred */
   if (strength == pos->strength)
     return; /* nothing to do */
@@ -349,9 +334,7 @@ attempt_connect (struct Peer *pos)
                               gettext_noop ("# connect requests issued to ATS"),
                               1,
                               GNUNET_NO);
-    pos->sh = GNUNET_ATS_connectivity_suggest (ats,
-                                               &pos->pid,
-                                               strength);
+    pos->sh = GNUNET_ATS_connectivity_suggest (ats, &pos->pid, strength);
   }
 }
 
@@ -377,15 +360,14 @@ make_peer (const struct GNUNET_PeerIdentity *peer,
   if (NULL != hello)
   {
     ret->hello = GNUNET_malloc (GNUNET_HELLO_size (hello));
-    GNUNET_memcpy (ret->hello,
-            hello,
-            GNUNET_HELLO_size (hello));
+    GNUNET_memcpy (ret->hello, hello, GNUNET_HELLO_size (hello));
   }
   GNUNET_break (GNUNET_OK ==
-                GNUNET_CONTAINER_multipeermap_put (peers,
-                                                   peer,
-                                                   ret,
-                                                   GNUNET_CONTAINER_MULTIHASHMAPOPTION_UNIQUE_ONLY));
+                GNUNET_CONTAINER_multipeermap_put (
+                  peers,
+                  peer,
+                  ret,
+                  GNUNET_CONTAINER_MULTIHASHMAPOPTION_UNIQUE_ONLY));
   return ret;
 }
 
@@ -409,30 +391,13 @@ setup_filter (struct Peer *peer)
    * any case; hence 64, 5 as bloomfilter parameters. */
   peer->filter = GNUNET_CONTAINER_bloomfilter_init (NULL, 64, 5);
   peer->filter_expiration =
-      GNUNET_TIME_relative_to_absolute
-      (HELLO_ADVERTISEMENT_MIN_REPEAT_FREQUENCY);
+    GNUNET_TIME_relative_to_absolute (HELLO_ADVERTISEMENT_MIN_REPEAT_FREQUENCY);
   /* never send a peer its own HELLO */
-  GNUNET_CRYPTO_hash (&peer->pid,
-                      sizeof (struct GNUNET_PeerIdentity),
-                      &hc);
+  GNUNET_CRYPTO_hash (&peer->pid, sizeof (struct GNUNET_PeerIdentity), &hc);
   GNUNET_CONTAINER_bloomfilter_add (peer->filter, &hc);
 }
 
 
-/**
- * Function to fill send buffer with HELLO.
- *
- * @param cls `struct Peer` of the target peer
- * @param size number of bytes available in @a buf
- * @param buf where the callee should write the message
- * @return number of bytes written to @a buf
- */
-static size_t
-hello_advertising_ready (void *cls,
-                         size_t size,
-                         void *buf);
-
-
 /**
  * Closure for #find_advertisable_hello().
  */
@@ -492,10 +457,10 @@ find_advertisable_hello (void *cls,
   hs = GNUNET_HELLO_size (pos->hello);
   if (hs > fah->max_size)
     return GNUNET_YES;
-  GNUNET_CRYPTO_hash (&fah->peer->pid, sizeof (struct GNUNET_PeerIdentity), &hc);
-  if (GNUNET_NO ==
-      GNUNET_CONTAINER_bloomfilter_test (pos->filter,
-                                         &hc))
+  GNUNET_CRYPTO_hash (&fah->peer->pid,
+                      sizeof (struct GNUNET_PeerIdentity),
+                      &hc);
+  if (GNUNET_NO == GNUNET_CONTAINER_bloomfilter_test (pos->filter, &hc))
     fah->result = pos;
   return GNUNET_YES;
 }
@@ -512,39 +477,48 @@ schedule_next_hello (void *cls)
 {
   struct Peer *pl = cls;
   struct FindAdvHelloContext fah;
-  size_t next_want;
+  struct GNUNET_MQ_Envelope *env;
+  size_t want;
   struct GNUNET_TIME_Relative delay;
+  struct GNUNET_HashCode hc;
 
   pl->hello_delay_task = NULL;
-  GNUNET_assert (GNUNET_YES == pl->is_connected);
-  if (pl->hello_req != NULL)
-    return;                     /* did not finish sending the previous one */
+  GNUNET_assert (NULL != pl->mq);
   /* find applicable HELLOs */
   fah.peer = pl;
   fah.result = NULL;
-  fah.max_size = GNUNET_SERVER_MAX_MESSAGE_SIZE - 1;
+  fah.max_size = GNUNET_MAX_MESSAGE_SIZE - 1;
   fah.next_adv = GNUNET_TIME_UNIT_FOREVER_REL;
-  GNUNET_CONTAINER_multipeermap_iterate (peers,
-                                         &find_advertisable_hello,
-                                         &fah);
+  GNUNET_CONTAINER_multipeermap_iterate (peers, &find_advertisable_hello, &fah);
   pl->hello_delay_task =
-      GNUNET_SCHEDULER_add_delayed (fah.next_adv,
-                                    &schedule_next_hello,
-                                    pl);
+    GNUNET_SCHEDULER_add_delayed (fah.next_adv, &schedule_next_hello, pl);
   if (NULL == fah.result)
     return;
-  next_want = GNUNET_HELLO_size (fah.result->hello);
   delay = GNUNET_TIME_absolute_get_remaining (pl->next_hello_allowed);
-  if (0 == delay.rel_value_us)
-  {
-    /* now! */
-    pl->hello_req =
-        GNUNET_CORE_notify_transmit_ready (handle, GNUNET_YES,
-                                           GNUNET_CORE_PRIO_BEST_EFFORT,
-                                           GNUNET_CONSTANTS_SERVICE_TIMEOUT,
-                                           &pl->pid, next_want,
-                                           &hello_advertising_ready, pl);
-  }
+  if (0 != delay.rel_value_us)
+    return;
+
+  want = GNUNET_HELLO_size (fah.result->hello);
+  GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
+              "Sending HELLO with %u bytes",
+              (unsigned int) want);
+  env = GNUNET_MQ_msg_copy (&fah.result->hello->header);
+  GNUNET_MQ_send (pl->mq, env);
+
+  /* avoid sending this one again soon */
+  GNUNET_CRYPTO_hash (&pl->pid, sizeof (struct GNUNET_PeerIdentity), &hc);
+  GNUNET_CONTAINER_bloomfilter_add (fah.result->filter, &hc);
+
+  GNUNET_STATISTICS_update (stats,
+                            gettext_noop ("# HELLO messages gossipped"),
+                            1,
+                            GNUNET_NO);
+  /* prepare to send the next one */
+  pl->next_hello_allowed =
+    GNUNET_TIME_relative_to_absolute (HELLO_ADVERTISEMENT_MIN_FREQUENCY);
+  if (NULL != pl->hello_delay_task)
+    GNUNET_SCHEDULER_cancel (pl->hello_delay_task);
+  pl->hello_delay_task = GNUNET_SCHEDULER_add_now (&schedule_next_hello, pl);
 }
 
 
@@ -568,20 +542,15 @@ reschedule_hellos (void *cls,
 
   if (skip == peer)
     return GNUNET_YES;
-  if (!peer->is_connected)
+  if (NULL == peer->mq)
     return GNUNET_YES;
-  if (peer->hello_req != NULL)
-  {
-    GNUNET_CORE_notify_transmit_ready_cancel (peer->hello_req);
-    peer->hello_req = NULL;
-  }
-  if (peer->hello_delay_task != NULL)
+  if (NULL != peer->hello_delay_task)
   {
     GNUNET_SCHEDULER_cancel (peer->hello_delay_task);
     peer->hello_delay_task = NULL;
   }
   peer->hello_delay_task =
-      GNUNET_SCHEDULER_add_now (&schedule_next_hello, peer);
+    GNUNET_SCHEDULER_add_now (&schedule_next_hello, peer);
   return GNUNET_YES;
 }
 
@@ -591,53 +560,49 @@ reschedule_hellos (void *cls,
  *
  * @param cls closure
  * @param peer peer identity this notification is about
+ * @param mq message queue for communicating with @a peer
+ * @return our `struct Peer` for @a peer
  */
-static void
+static void *
 connect_notify (void *cls,
-                const struct GNUNET_PeerIdentity *peer)
+                const struct GNUNET_PeerIdentity *peer,
+                struct GNUNET_MQ_Handle *mq)
 {
   struct Peer *pos;
 
   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
               "Core told us that we are connecting to `%s'\n",
               GNUNET_i2s (peer));
-  if (0 == memcmp (&my_identity,
-                   peer,
-                   sizeof (struct GNUNET_PeerIdentity)))
-    return;
-
+  if (0 == GNUNET_memcmp (&my_identity, peer))
+    return NULL;
+  GNUNET_MQ_set_options (mq, GNUNET_MQ_PRIO_BEST_EFFORT);
   connection_count++;
   GNUNET_STATISTICS_set (stats,
                          gettext_noop ("# peers connected"),
                          connection_count,
                          GNUNET_NO);
-  pos = GNUNET_CONTAINER_multipeermap_get (peers,
-                                           peer);
+  pos = GNUNET_CONTAINER_multipeermap_get (peers, peer);
   if (NULL == pos)
   {
-    pos = make_peer (peer,
-                     NULL,
-                     GNUNET_NO);
+    pos = make_peer (peer, NULL, GNUNET_NO);
   }
   else
   {
-    GNUNET_assert (GNUNET_NO == pos->is_connected);
+    GNUNET_assert (NULL == pos->mq);
   }
-  pos->is_connected = GNUNET_YES;
+  pos->mq = mq;
   if (pos->is_friend)
   {
     friend_count++;
-    if ( (friend_count == minimum_friend_count) &&
-         (GNUNET_YES != friends_only) )
+    if ((friend_count == minimum_friend_count) && (GNUNET_YES != friends_only))
       whitelist_peers ();
     GNUNET_STATISTICS_set (stats,
                            gettext_noop ("# friends connected"),
                            friend_count,
                            GNUNET_NO);
   }
-  reschedule_hellos (NULL,
-                     peer,
-                     pos);
+  reschedule_hellos (NULL, peer, pos);
+  return pos;
 }
 
 
@@ -650,9 +615,7 @@ connect_notify (void *cls,
  * @return #GNUNET_YES (continue to iterate)
  */
 static int
-try_add_peers (void *cls,
-               const struct GNUNET_PeerIdentity *pid,
-               void *value)
+try_add_peers (void *cls, const struct GNUNET_PeerIdentity *pid, void *value)
 {
   struct Peer *pos = value;
 
@@ -671,9 +634,7 @@ add_peer_task (void *cls)
 {
   add_task = NULL;
 
-  GNUNET_CONTAINER_multipeermap_iterate (peers,
-                                         &try_add_peers,
-                                         NULL);
+  GNUNET_CONTAINER_multipeermap_iterate (peers, &try_add_peers, NULL);
 }
 
 
@@ -682,38 +643,27 @@ add_peer_task (void *cls)
  *
  * @param cls closure
  * @param peer peer identity this notification is about
+ * @param internal_cls the `struct Peer` for this peer
  */
 static void
 disconnect_notify (void *cls,
-                   const struct GNUNET_PeerIdentity *peer)
+                   const struct GNUNET_PeerIdentity *peer,
+                   void *internal_cls)
 {
-  struct Peer *pos;
+  struct Peer *pos = internal_cls;
 
-  if (0 == memcmp (&my_identity,
-                   peer,
-                   sizeof (struct GNUNET_PeerIdentity)))
-    return;
+  if (NULL == pos)
+    return; /* myself, we're shutting down */
   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
               "Core told us that we disconnected from `%s'\n",
               GNUNET_i2s (peer));
-  pos = GNUNET_CONTAINER_multipeermap_get (peers, peer);
-  if (NULL == pos)
-  {
-    GNUNET_break (0);
-    return;
-  }
-  if (GNUNET_YES != pos->is_connected)
+  if (NULL == pos->mq)
   {
     GNUNET_break (0);
     return;
   }
-  pos->is_connected = GNUNET_NO;
+  pos->mq = NULL;
   connection_count--;
-  if (NULL != pos->hello_req)
-  {
-    GNUNET_CORE_notify_transmit_ready_cancel (pos->hello_req);
-    pos->hello_req = NULL;
-  }
   if (NULL != pos->hello_delay_task)
   {
     GNUNET_SCHEDULER_cancel (pos->hello_delay_task);
@@ -731,16 +681,12 @@ disconnect_notify (void *cls,
                            friend_count,
                            GNUNET_NO);
   }
-  if ( ( (connection_count < target_connection_count) ||
-         (friend_count < minimum_friend_count)) &&
-       (NULL == add_task) )
-    add_task = GNUNET_SCHEDULER_add_now (&add_peer_task,
-                                         NULL);
-  if ( (friend_count < minimum_friend_count) &&
-       (NULL == blacklist))
-    blacklist = GNUNET_TRANSPORT_blacklist (cfg,
-                                            &blacklist_check,
-                                            NULL);
+  if (((connection_count < target_connection_count) ||
+       (friend_count < minimum_friend_count)) &&
+      (NULL == add_task))
+    add_task = GNUNET_SCHEDULER_add_now (&add_peer_task, NULL);
+  if ((friend_count < minimum_friend_count) && (NULL == blacklist))
+    blacklist = GNUNET_TRANSPORT_blacklist (cfg, &blacklist_check, NULL);
 }
 
 
@@ -785,39 +731,32 @@ consider_for_advertising (const struct GNUNET_HELLO_Message *hello)
     GNUNET_break (0);
     return;
   }
-  if (0 == memcmp (&pid,
-                   &my_identity,
-                   sizeof (struct GNUNET_PeerIdentity)))
-    return;                     /* that's me! */
+  if (0 == GNUNET_memcmp (&pid, &my_identity))
+    return; /* that's me! */
   have_address = GNUNET_NO;
   GNUNET_HELLO_iterate_addresses (hello,
                                   GNUNET_NO,
                                   &address_iterator,
                                   &have_address);
   if (GNUNET_NO == have_address)
-    return;                     /* no point in advertising this one... */
+    return; /* no point in advertising this one... */
   peer = GNUNET_CONTAINER_multipeermap_get (peers, &pid);
   if (NULL == peer)
   {
-    peer = make_peer (&pid,
-                      hello,
-                      GNUNET_NO);
+    peer = make_peer (&pid, hello, GNUNET_NO);
   }
   else if (NULL != peer->hello)
   {
-    dt = GNUNET_HELLO_equals (peer->hello,
-                              hello,
-                              GNUNET_TIME_absolute_get ());
+    dt = GNUNET_HELLO_equals (peer->hello, hello, GNUNET_TIME_absolute_get ());
     if (dt.abs_value_us == GNUNET_TIME_UNIT_FOREVER_ABS.abs_value_us)
-      return;                   /* nothing new here */
+      return; /* nothing new here */
   }
   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
               "Found HELLO from peer `%s' for advertising\n",
               GNUNET_i2s (&pid));
   if (NULL != peer->hello)
   {
-    nh = GNUNET_HELLO_merge (peer->hello,
-                             hello);
+    nh = GNUNET_HELLO_merge (peer->hello, hello);
     GNUNET_free (peer->hello);
     peer->hello = nh;
   }
@@ -825,9 +764,7 @@ consider_for_advertising (const struct GNUNET_HELLO_Message *hello)
   {
     size = GNUNET_HELLO_size (hello);
     peer->hello = GNUNET_malloc (size);
-    GNUNET_memcpy (peer->hello,
-            hello,
-            size);
+    GNUNET_memcpy (peer->hello, hello, size);
   }
   if (NULL != peer->filter)
   {
@@ -837,9 +774,7 @@ consider_for_advertising (const struct GNUNET_HELLO_Message *hello)
   setup_filter (peer);
   /* since we have a new HELLO to pick from, re-schedule all
    * HELLO requests that are not bound by the HELLO send rate! */
-  GNUNET_CONTAINER_multipeermap_iterate (peers,
-                                         &reschedule_hellos,
-                                         peer);
+  GNUNET_CONTAINER_multipeermap_iterate (peers, &reschedule_hellos, peer);
 }
 
 
@@ -863,25 +798,20 @@ process_peer (void *cls,
   if (NULL != err_msg)
   {
     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
-                _("Error in communication with PEERINFO service: %s\n"),
+                _ ("Error in communication with PEERINFO service: %s\n"),
                 err_msg);
     GNUNET_PEERINFO_notify_cancel (peerinfo_notify);
-    peerinfo_notify = GNUNET_PEERINFO_notify (cfg,
-                                              GNUNET_NO,
-                                              &process_peer,
-                                              NULL);
+    peerinfo_notify =
+      GNUNET_PEERINFO_notify (cfg, GNUNET_NO, &process_peer, NULL);
     return;
   }
   GNUNET_assert (NULL != peer);
-  if (0 == memcmp (&my_identity,
-                   peer,
-                   sizeof (struct GNUNET_PeerIdentity)))
-    return;                     /* that's me! */
+  if (0 == GNUNET_memcmp (&my_identity, peer))
+    return; /* that's me! */
   if (NULL == hello)
   {
     /* free existing HELLO, if any */
-    pos = GNUNET_CONTAINER_multipeermap_get (peers,
-                                             peer);
+    pos = GNUNET_CONTAINER_multipeermap_get (peers, peer);
     if (NULL != pos)
     {
       GNUNET_free_non_null (pos->hello);
@@ -891,21 +821,15 @@ process_peer (void *cls,
         GNUNET_CONTAINER_bloomfilter_free (pos->filter);
         pos->filter = NULL;
       }
-      if ( (GNUNET_NO == pos->is_connected) &&
-           (GNUNET_NO == pos->is_friend) )
-        free_peer (NULL,
-                   &pos->pid,
-                   pos);
+      if ((NULL == pos->mq) && (GNUNET_NO == pos->is_friend))
+        free_peer (NULL, &pos->pid, pos);
     }
     return;
   }
   consider_for_advertising (hello);
-  pos = GNUNET_CONTAINER_multipeermap_get (peers,
-                                           peer);
+  pos = GNUNET_CONTAINER_multipeermap_get (peers, peer);
   if (NULL == pos)
-    pos = make_peer (peer,
-                     hello,
-                     GNUNET_NO);
+    pos = make_peer (peer, hello, GNUNET_NO);
   attempt_connect (pos);
 }
 
@@ -918,24 +842,20 @@ process_peer (void *cls,
  * @param my_id ID of this peer, NULL if we failed
  */
 static void
-core_init (void *cls,
-           const struct GNUNET_PeerIdentity *my_id)
+core_init (void *cls, const struct GNUNET_PeerIdentity *my_id)
 {
   if (NULL == my_id)
   {
-    GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
-                _("Failed to connect to core service, can not manage topology!\n"));
+    GNUNET_log (
+      GNUNET_ERROR_TYPE_ERROR,
+      _ ("Failed to connect to core service, can not manage topology!\n"));
     GNUNET_SCHEDULER_shutdown ();
     return;
   }
   my_identity = *my_id;
-  GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
-             "I am peer `%s'\n",
-             GNUNET_i2s (my_id));
-  peerinfo_notify = GNUNET_PEERINFO_notify (cfg,
-                                            GNUNET_NO,
-                                           &process_peer,
-                                            NULL);
+  GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "I am peer `%s'\n", GNUNET_i2s (my_id));
+  peerinfo_notify =
+    GNUNET_PEERINFO_notify (cfg, GNUNET_NO, &process_peer, NULL);
 }
 
 
@@ -946,25 +866,22 @@ core_init (void *cls,
  * @param pid identity of the friend
  */
 static void
-handle_friend (void *cls,
-               const struct GNUNET_PeerIdentity *pid)
+handle_friend (void *cls, const struct GNUNET_PeerIdentity *pid)
 {
   unsigned int *entries_found = cls;
   struct Peer *fl;
 
-  if (0 == memcmp (pid,
-                   &my_identity,
-                   sizeof (struct GNUNET_PeerIdentity)))
+  if (0 == GNUNET_memcmp (pid, &my_identity))
   {
     GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
-                _("Found myself `%s' in friend list (useless, ignored)\n"),
+                _ ("Found myself `%s' in friend list (useless, ignored)\n"),
                 GNUNET_i2s (pid));
     return;
   }
   (*entries_found)++;
   fl = make_peer (pid, NULL, GNUNET_YES);
   GNUNET_log (GNUNET_ERROR_TYPE_INFO,
-              _("Found friend `%s' in configuration\n"),
+              _ ("Found friend `%s' in configuration\n"),
               GNUNET_i2s (&fl->pid));
 }
 
@@ -978,42 +895,54 @@ read_friends_file (const struct GNUNET_CONFIGURATION_Handle *cfg)
   unsigned int entries_found;
 
   entries_found = 0;
-  if (GNUNET_OK !=
-      GNUNET_FRIENDS_parse (cfg,
-                            &handle_friend,
-                            &entries_found))
+  if (GNUNET_OK != GNUNET_FRIENDS_parse (cfg, &handle_friend, &entries_found))
   {
-    if ( (GNUNET_YES == friends_only) ||
-         (minimum_friend_count > 0))
+    if ((GNUNET_YES == friends_only) || (minimum_friend_count > 0))
       GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
-                  _("Encountered errors parsing friends list!\n"));
+                  _ ("Encountered errors parsing friends list!\n"));
   }
   GNUNET_STATISTICS_update (stats,
                             gettext_noop ("# friends in configuration"),
                             entries_found,
                             GNUNET_NO);
-  if ( (minimum_friend_count > entries_found) &&
-       (GNUNET_NO == friends_only) )
+  if ((minimum_friend_count > entries_found) && (GNUNET_NO == friends_only))
   {
-    GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
-                _("Fewer friends specified than required by minimum friend count. Will only connect to friends.\n"));
+    GNUNET_log (
+      GNUNET_ERROR_TYPE_WARNING,
+      _ (
+        "Fewer friends specified than required by minimum friend count. Will only connect to friends.\n"));
   }
-  if ( (minimum_friend_count > target_connection_count) &&
-       (GNUNET_NO == friends_only))
+  if ((minimum_friend_count > target_connection_count) &&
+      (GNUNET_NO == friends_only))
   {
-    GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
-                _("More friendly connections required than target total number of connections.\n"));
+    GNUNET_log (
+      GNUNET_ERROR_TYPE_WARNING,
+      _ (
+        "More friendly connections required than target total number of connections.\n"));
   }
 }
 
 
 /**
- * Hello offer complete. Clean up.
+ * This function is called whenever an encrypted HELLO message is
+ * received.
+ *
+ * @param cls closure with the peer identity of the sender
+ * @param message the actual HELLO message
+ * @return #GNUNET_OK if @a message is well-formed
+ *         #GNUNET_SYSERR if @a message is invalid
  */
-static void
-done_offer_hello (void *cls)
+static int
+check_hello (void *cls, const struct GNUNET_HELLO_Message *message)
 {
-  oh = NULL;
+  struct GNUNET_PeerIdentity pid;
+
+  if (GNUNET_OK != GNUNET_HELLO_get_id (message, &pid))
+  {
+    GNUNET_break_op (0);
+    return GNUNET_SYSERR;
+  }
+  return GNUNET_OK;
 }
 
 
@@ -1021,30 +950,20 @@ done_offer_hello (void *cls)
  * This function is called whenever an encrypted HELLO message is
  * received.
  *
- * @param cls closure
- * @param other the other peer involved (sender or receiver, NULL
- *        for loopback messages where we are both sender and receiver)
+ * @param cls closure with the peer identity of the sender
  * @param message the actual HELLO message
- * @return #GNUNET_OK to keep the connection open,
- *         #GNUNET_SYSERR to close it (signal serious error)
  */
-static int
-handle_encrypted_hello (void *cls,
-                        const struct GNUNET_PeerIdentity *other,
-                        const struct GNUNET_MessageHeader *message)
+static void
+handle_hello (void *cls, const struct GNUNET_HELLO_Message *message)
 {
+  const struct GNUNET_PeerIdentity *other = cls;
   struct Peer *peer;
   struct GNUNET_PeerIdentity pid;
 
   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
               "Received encrypted HELLO from peer `%s'",
               GNUNET_i2s (other));
-  if (GNUNET_OK !=
-      GNUNET_HELLO_get_id ((const struct GNUNET_HELLO_Message *) message, &pid))
-  {
-    GNUNET_break_op (0);
-    return GNUNET_SYSERR;
-  }
+  GNUNET_assert (GNUNET_OK == GNUNET_HELLO_get_id (message, &pid));
   GNUNET_STATISTICS_update (stats,
                             gettext_noop ("# HELLO messages received"),
                             1,
@@ -1052,84 +971,18 @@ handle_encrypted_hello (void *cls,
   peer = GNUNET_CONTAINER_multipeermap_get (peers, &pid);
   if (NULL == peer)
   {
-    if ( (GNUNET_YES == friends_only) ||
-         (friend_count < minimum_friend_count) )
-      return GNUNET_OK;
+    if ((GNUNET_YES == friends_only) || (friend_count < minimum_friend_count))
+      return;
   }
   else
   {
-    if ( (GNUNET_YES != peer->is_friend) &&
-         (GNUNET_YES == friends_only) )
-      return GNUNET_OK;
+    if ((GNUNET_YES != peer->is_friend) && (GNUNET_YES == friends_only))
+      return;
     if ((GNUNET_YES != peer->is_friend) &&
         (friend_count < minimum_friend_count))
-      return GNUNET_OK;
-  }
-  if (NULL != oh)
-    GNUNET_TRANSPORT_offer_hello_cancel (oh);
-  oh = GNUNET_TRANSPORT_offer_hello (cfg,
-                                     message,
-                                     &done_offer_hello,
-                                     NULL);
-  return GNUNET_OK;
-}
-
-
-/**
- * Function to fill send buffer with HELLO.
- *
- * @param cls `struct Peer` of the target peer
- * @param size number of bytes available in buf
- * @param buf where the callee should write the message
- * @return number of bytes written to buf
- */
-static size_t
-hello_advertising_ready (void *cls,
-                         size_t size,
-                         void *buf)
-{
-  struct Peer *pl = cls;
-  struct FindAdvHelloContext fah;
-  size_t want;
-  struct GNUNET_HashCode hc;
-
-  pl->hello_req = NULL;
-  GNUNET_assert (GNUNET_YES == pl->is_connected);
-  /* find applicable HELLOs */
-  fah.peer = pl;
-  fah.result = NULL;
-  fah.max_size = size;
-  fah.next_adv = GNUNET_TIME_UNIT_FOREVER_REL;
-  GNUNET_CONTAINER_multipeermap_iterate (peers,
-                                         &find_advertisable_hello,
-                                         &fah);
-  want = 0;
-  if (NULL != fah.result)
-  {
-    want = GNUNET_HELLO_size (fah.result->hello);
-    GNUNET_assert (want <= size);
-    GNUNET_memcpy (buf,
-            fah.result->hello,
-            want);
-    GNUNET_CRYPTO_hash (&pl->pid,
-                        sizeof (struct GNUNET_PeerIdentity),
-                        &hc);
-    GNUNET_CONTAINER_bloomfilter_add (fah.result->filter,
-                                      &hc);
-    GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
-                "Sending HELLO with %u bytes",
-                (unsigned int) want);
-    GNUNET_STATISTICS_update (stats,
-                              gettext_noop ("# HELLO messages gossipped"), 1,
-                              GNUNET_NO);
+      return;
   }
-
-  if (pl->hello_delay_task != NULL)
-    GNUNET_SCHEDULER_cancel (pl->hello_delay_task);
-  pl->next_hello_allowed =
-      GNUNET_TIME_relative_to_absolute (HELLO_ADVERTISEMENT_MIN_FREQUENCY);
-  pl->hello_delay_task = GNUNET_SCHEDULER_add_now (&schedule_next_hello, pl);
-  return want;
+  (void) GNUNET_PEERINFO_add_peer (pi, message, NULL, NULL);
 }
 
 
@@ -1163,9 +1016,7 @@ cleaning_task (void *cls)
     GNUNET_TRANSPORT_offer_hello_cancel (oh);
     oh = NULL;
   }
-  GNUNET_CONTAINER_multipeermap_iterate (peers,
-                                         &free_peer,
-                                         NULL);
+  GNUNET_CONTAINER_multipeermap_iterate (peers, &free_peer, NULL);
   GNUNET_CONTAINER_multipeermap_destroy (peers);
   peers = NULL;
   if (NULL != ats)
@@ -1173,6 +1024,11 @@ cleaning_task (void *cls)
     GNUNET_ATS_connectivity_done (ats);
     ats = NULL;
   }
+  if (NULL != pi)
+  {
+    GNUNET_PEERINFO_disconnect (pi);
+    pi = NULL;
+  }
   if (NULL != stats)
   {
     GNUNET_STATISTICS_destroy (stats, GNUNET_NO);
@@ -1195,23 +1051,22 @@ run (void *cls,
      const char *cfgfile,
      const struct GNUNET_CONFIGURATION_Handle *c)
 {
-  static struct GNUNET_CORE_MessageHandler handlers[] = {
-    {&handle_encrypted_hello, GNUNET_MESSAGE_TYPE_HELLO, 0},
-    {NULL, 0, 0}
-  };
+  struct GNUNET_MQ_MessageHandler handlers[] =
+    {GNUNET_MQ_hd_var_size (hello,
+                            GNUNET_MESSAGE_TYPE_HELLO,
+                            struct GNUNET_HELLO_Message,
+                            NULL),
+     GNUNET_MQ_handler_end ()};
   unsigned long long opt;
 
   cfg = c;
   stats = GNUNET_STATISTICS_create ("topology", cfg);
   friends_only =
-      GNUNET_CONFIGURATION_get_value_yesno (cfg,
-                                            "TOPOLOGY",
-                                            "FRIENDS-ONLY");
-  if (GNUNET_OK !=
-      GNUNET_CONFIGURATION_get_value_number (cfg,
-                                             "TOPOLOGY",
-                                             "MINIMUM-FRIENDS",
-                                             &opt))
+    GNUNET_CONFIGURATION_get_value_yesno (cfg, "TOPOLOGY", "FRIENDS-ONLY");
+  if (GNUNET_OK != GNUNET_CONFIGURATION_get_value_number (cfg,
+                                                          "TOPOLOGY",
+                                                          "MINIMUM-FRIENDS",
+                                                          &opt))
     opt = 0;
   minimum_friend_count = (unsigned int) opt;
   if (GNUNET_OK !=
@@ -1228,26 +1083,21 @@ run (void *cls,
               "Topology would like %u connections with at least %u friends\n",
               target_connection_count,
               minimum_friend_count);
-  if ( (friend_count < minimum_friend_count) &&
-       (NULL == blacklist))
-    blacklist = GNUNET_TRANSPORT_blacklist (cfg,
-                                            &blacklist_check,
-                                            NULL);
+  if ((GNUNET_YES == friends_only) || (minimum_friend_count > 0))
+    blacklist = GNUNET_TRANSPORT_blacklist (cfg, &blacklist_check, NULL);
   ats = GNUNET_ATS_connectivity_init (cfg);
-  handle =
-      GNUNET_CORE_connect (cfg, NULL,
-                           &core_init,
-                           &connect_notify,
-                           &disconnect_notify,
-                           NULL, GNUNET_NO,
-                           NULL, GNUNET_NO,
-                           handlers);
-  GNUNET_SCHEDULER_add_shutdown (&cleaning_task,
-                                NULL);
+  pi = GNUNET_PEERINFO_connect (cfg);
+  handle = GNUNET_CORE_connect (cfg,
+                                NULL,
+                                &core_init,
+                                &connect_notify,
+                                &disconnect_notify,
+                                handlers);
+  GNUNET_SCHEDULER_add_shutdown (&cleaning_task, NULL);
   if (NULL == handle)
   {
     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
-                _("Failed to connect to `%s' service.\n"),
+                _ ("Failed to connect to `%s' service.\n"),
                 "core");
     GNUNET_SCHEDULER_shutdown ();
     return;
@@ -1266,20 +1116,22 @@ int
 main (int argc, char *const *argv)
 {
   static const struct GNUNET_GETOPT_CommandLineOption options[] = {
-    GNUNET_GETOPT_OPTION_END
-  };
+    GNUNET_GETOPT_OPTION_END};
   int ret;
 
   if (GNUNET_OK != GNUNET_STRINGS_get_utf8_args (argc, argv, &argc, &argv))
     return 2;
 
-  ret =
-      (GNUNET_OK ==
-       GNUNET_PROGRAM_run (argc, argv,
-                           "gnunet-daemon-topology",
-                           _("GNUnet topology control"),
-                           options, &run, NULL)) ? 0 : 1;
-  GNUNET_free ((void*) argv);
+  ret = (GNUNET_OK == GNUNET_PROGRAM_run (argc,
+                                          argv,
+                                          "gnunet-daemon-topology",
+                                          _ ("GNUnet topology control"),
+                                          options,
+                                          &run,
+                                          NULL))
+          ? 0
+          : 1;
+  GNUNET_free ((void *) argv);
   return ret;
 }