From: Christian Grothoff Date: Sun, 29 Jan 2017 18:31:12 +0000 (+0100) Subject: sanitize paths to eliminate loops before using them; fix off-by-one causing a peer... X-Git-Tag: taler-0.2.1~253 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=e1635836e1d844c25c701937e0be08f272fb84f6;p=oweals%2Fgnunet.git sanitize paths to eliminate loops before using them; fix off-by-one causing a peer to be listed twice --- diff --git a/src/cadet/gnunet-service-cadet-new_paths.c b/src/cadet/gnunet-service-cadet-new_paths.c index 685656ec3..28df5e159 100644 --- a/src/cadet/gnunet-service-cadet-new_paths.c +++ b/src/cadet/gnunet-service-cadet-new_paths.c @@ -454,25 +454,39 @@ GCPP_try_path_from_dht (const struct GNUNET_PeerIdentity *get_path, struct CadetPeerPath *path; struct GNUNET_CONTAINER_HeapNode *hn; int i; + unsigned int skip; + unsigned int total_len; /* precompute 'cpath' so we can avoid doing the lookups lots of times */ - for (unsigned int off=0;off=0;i--) + for (i=total_len-1;i>=0;i--) { GCP_iterate_paths_at (cpath[i], (unsigned int) i, @@ -480,7 +494,7 @@ GCPP_try_path_from_dht (const struct GNUNET_PeerIdentity *get_path, &cm_ctx); if (NULL != cm_ctx.match) { - if (i == get_path_length + put_path_length - 1) + if (i == total_len - 1) { /* Existing path includes this one, nothing to do! */ LOG (GNUNET_ERROR_TYPE_DEBUG, @@ -494,8 +508,8 @@ GCPP_try_path_from_dht (const struct GNUNET_PeerIdentity *get_path, "Trying to extend existing path %s by additional links discovered from DHT\n", GCPP_2s (cm_ctx.match)); extend_path (cm_ctx.match, - &cpath[i], - get_path_length + put_path_length - i, + &cpath[i + 1], + total_len - i - 1, GNUNET_NO); return; } @@ -504,7 +518,7 @@ GCPP_try_path_from_dht (const struct GNUNET_PeerIdentity *get_path, /* No match at all, create completely new path */ path = GNUNET_new (struct CadetPeerPath); - path->entries_length = get_path_length + put_path_length; + path->entries_length = total_len; path->entries = GNUNET_new_array (path->entries_length, struct CadetPeerPathEntry *); for (i=path->entries_length-1;i>=0;i--) @@ -526,7 +540,7 @@ GCPP_try_path_from_dht (const struct GNUNET_PeerIdentity *get_path, /* Finally, try to attach it */ hn = NULL; - for (i=get_path_length + put_path_length-1;i>=0;i--) + for (i=total_len-1;i>=0;i--) { struct CadetPeerPathEntry *entry = path->entries[i]; @@ -613,8 +627,8 @@ GCPP_get_path_from_route (unsigned int path_length, "Extending existing path %s to create inverse for incoming connection\n", GCPP_2s (cm_ctx.match)); extend_path (cm_ctx.match, - &cpath[i], - path_length - i, + &cpath[i + 1], + path_length - i - 1, GNUNET_YES); /* Check that extension was successful */ GNUNET_assert (cm_ctx.match->entries_length == path_length); diff --git a/src/cadet/gnunet-service-cadet-new_peer.c b/src/cadet/gnunet-service-cadet-new_peer.c index bcc69be53..9e84550ec 100644 --- a/src/cadet/gnunet-service-cadet-new_peer.c +++ b/src/cadet/gnunet-service-cadet-new_peer.c @@ -114,9 +114,9 @@ struct CadetPeer struct GNUNET_PeerIdentity pid; /** - * Last time we heard from this peer + * Last time we heard from this peer (currently not used!) */ - struct GNUNET_TIME_Absolute last_contact; + struct GNUNET_TIME_Absolute last_contactXXX; /** * Array of DLLs of paths traversing the peer, organized by the