Primary developers (0.9.x series):
Christian Grothoff <christian@grothoff.org>
Heikki Lindholm <holin@iki.fi>
-Nils Durner <durner@gnunet.org>
+Matthias Wachs <wachs@net.in.tum.de>
Milan Bouchet-Valat <nalimilan@club.fr>
Nathan Evans <evans@net.in.tum.de>
+Nils Durner <durner@gnunet.org>
Code contributions also came from:
Adam Warrington [ UPnP ]
Maintainers:
FreeBSD : Kirill Ponomarew <ponomarew@oberon.net>
-Debian GNU/Linux: Daniel Baumann <daniel.baumann@panthera-systems.net> and
- Arnaud Kyheng <Arnaud.Kyheng@free.fr>
+Debian GNU/Linux: Daniel Baumann <daniel.baumann@panthera-systems.net>
OS X : Jussi Eloranta <eloranta@cc.jyu.fi>
0.9.0pre0 [April]:
* HOSTLIST: seems to have NO 'tcp' in it, so cannot have any addresses!? [CG]
+* FS-acceptance testing [CG]
+* Release checks:
+ - portability
+ - coverity
+ - clang
+ - cppcheck
+* ChangeLog update
* WWW:
- Get IPv6 hooked up [AK, after April 12th]
- change DNS [CG, need DNS]
- only connect() sockets that are ready (select()) [Nils]
[On W32, we need to select after calling socket before
doing connect etc.]
-* HELLO: [CG]
- - need function to test "equivalency" of HELLOs (or integrate with "merge"?); use in PEERINFO
* SETUP:
- design & implement new setup tool
* TBENCH: [MW]
return GNUNET_OK;
}
+
/**
* Get the header from a HELLO message, used so other code
* can correctly send HELLO messages.
return &hello->header;
}
+
+struct EqualsContext
+{
+ struct GNUNET_TIME_Absolute expiration_limit;
+
+ struct GNUNET_TIME_Absolute result;
+
+ const struct GNUNET_HELLO_Message *h2;
+
+ const char *tname;
+
+ const void *addr;
+
+ struct GNUNET_TIME_Absolute expiration;
+
+ size_t addrlen;
+
+ int found;
+};
+
+
+static int
+find_other_matching (void *cls,
+ const char *tname,
+ struct GNUNET_TIME_Absolute expiration,
+ const void *addr, size_t addrlen)
+{
+ struct EqualsContext *ec = cls;
+
+ if (expiration.value < ec->expiration_limit.value)
+ return GNUNET_YES;
+ if ( (addrlen == ec->addrlen) &&
+ (0 == strcmp (tname,
+ ec->tname)) &&
+ (0 == memcmp (addr,
+ ec->addr,
+ addrlen)) )
+ {
+ ec->found = GNUNET_YES;
+ if (expiration.value < ec->expiration.value)
+ {
+ ec->result = GNUNET_TIME_absolute_min (expiration,
+ ec->result);
+ }
+ return GNUNET_SYSERR;
+ }
+ return GNUNET_YES;
+}
+
+
+static int
+find_matching (void *cls,
+ const char *tname,
+ struct GNUNET_TIME_Absolute expiration,
+ const void *addr, size_t addrlen)
+{
+ struct EqualsContext *ec = cls;
+
+ if (expiration.value < ec->expiration_limit.value)
+ return GNUNET_YES;
+ ec->tname = tname;
+ ec->expiration = expiration;
+ ec->addr = addr;
+ ec->addrlen = addrlen;
+ ec->found = GNUNET_NO;
+ GNUNET_HELLO_iterate_addresses (ec->h2,
+ GNUNET_NO,
+ &find_other_matching,
+ ec);
+ if (ec->found == GNUNET_NO)
+ {
+ ec->result = GNUNET_TIME_UNIT_ZERO_ABS;
+ return GNUNET_SYSERR;
+ }
+ return GNUNET_OK;
+}
+
+/**
+ * Test if two HELLO messages contain the same addresses.
+ * If they only differ in expiration time, the lowest
+ * expiration time larger than 'now' where they differ
+ * is returned.
+ *
+ * @param h1 first HELLO message
+ * @param h2 the second HELLO message
+ * @param now time to use for deciding which addresses have
+ * expired and should not be considered at all
+ * @return absolute time zero if the two HELLOs are
+ * totally identical; smallest timestamp >= now if
+ * they only differ in timestamps;
+ * forever if the some addresses with expirations >= now
+ * do not match at all
+ */
+struct GNUNET_TIME_Absolute
+GNUNET_HELLO_equals (const struct
+ GNUNET_HELLO_Message *h1,
+ const struct
+ GNUNET_HELLO_Message *h2,
+ struct GNUNET_TIME_Absolute now)
+{
+ struct EqualsContext ec;
+
+ ec.expiration_limit = now;
+ ec.result = GNUNET_TIME_UNIT_FOREVER_ABS;
+ ec.h2 = h2;
+ GNUNET_HELLO_iterate_addresses (h1,
+ GNUNET_NO,
+ &find_matching,
+ &ec);
+ if (ec.result.value ==
+ GNUNET_TIME_UNIT_ZERO.value)
+ return ec.result;
+ ec.h2 = h1;
+ GNUNET_HELLO_iterate_addresses (h2,
+ GNUNET_NO,
+ &find_matching,
+ &ec);
+ return ec.result;
+}
+
+
/* end of hello.c */
GNUNET_HELLO_Message *h2);
+/**
+ * Test if two HELLO messages contain the same addresses.
+ * If they only differ in expiration time, the lowest
+ * expiration time larger than 'now' where they differ
+ * is returned.
+ *
+ * @param h1 first HELLO message
+ * @param h2 the second HELLO message
+ * @param now time to use for deciding which addresses have
+ * expired and should not be considered at all
+ * @return absolute time forever if the two HELLOs are
+ * totally identical; smallest timestamp >= now if
+ * they only differ in timestamps;
+ * zero if the some addresses with expirations >= now
+ * do not match at all
+ */
+struct GNUNET_TIME_Absolute
+GNUNET_HELLO_equals (const struct
+ GNUNET_HELLO_Message *h1,
+ const struct
+ GNUNET_HELLO_Message *h2,
+ struct GNUNET_TIME_Absolute now);
+
/**
* Iterator callback to go over all addresses.
char *fn;
struct HostEntry *host;
struct GNUNET_HELLO_Message *mrg;
+ struct GNUNET_TIME_Absolute delta;
add_host_to_known_hosts (peer);
host = lookup_host_entry (peer);
else
{
mrg = GNUNET_HELLO_merge (host->hello, hello);
- /* FIXME: check if old and merged hello are equal,
- and if so, bail out early... */
+ delta = GNUNET_HELLO_equals (mrg,
+ host->hello,
+ GNUNET_TIME_absolute_get ());
+ if (delta.value == GNUNET_TIME_UNIT_FOREVER_ABS.value)
+ {
+ GNUNET_free (mrg);
+ return;
+ }
GNUNET_free (host->hello);
host->hello = mrg;
}