oweals/gnunet.git
6 years agocode cleanup, fix strlen
Christian Grothoff [Tue, 5 Jun 2018 08:00:23 +0000 (10:00 +0200)]
code cleanup, fix strlen

6 years agoupdate gitignore
Christian Grothoff [Tue, 5 Jun 2018 07:45:43 +0000 (09:45 +0200)]
update gitignore

6 years agofix handling of chunked encoding by proxy, and handling of connection termination
Christian Grothoff [Tue, 5 Jun 2018 07:32:30 +0000 (09:32 +0200)]
fix handling of chunked encoding by proxy, and handling of connection termination

6 years agotypo
Christian Grothoff [Mon, 4 Jun 2018 21:26:12 +0000 (23:26 +0200)]
typo

6 years agouse real GNS record types in tests to avoid failures in new extra serialization/deser...
Christian Grothoff [Mon, 4 Jun 2018 22:37:06 +0000 (00:37 +0200)]
use real GNS record types in tests to avoid failures in new extra serialization/deserialization checking

6 years agotestcase cleanup
Christian Grothoff [Mon, 4 Jun 2018 21:32:09 +0000 (23:32 +0200)]
testcase cleanup

6 years agofix a few disting issues
Christian Grothoff [Mon, 4 Jun 2018 21:29:34 +0000 (23:29 +0200)]
fix a few disting issues

6 years agoscript was removed
Christian Grothoff [Mon, 4 Jun 2018 21:28:30 +0000 (23:28 +0200)]
script was removed

6 years agofix typo in Makefile.am
Christian Grothoff [Mon, 4 Jun 2018 21:27:52 +0000 (23:27 +0200)]
fix typo in Makefile.am

6 years agouse DEBUG_KX for new core log messages
Christian Grothoff [Mon, 4 Jun 2018 17:24:00 +0000 (19:24 +0200)]
use DEBUG_KX for new core log messages

6 years agomerge benchmark changes
Christian Grothoff [Mon, 4 Jun 2018 17:17:57 +0000 (19:17 +0200)]
merge benchmark changes

6 years agoadd function for getopt uint16_t arguments
Christian Grothoff [Mon, 4 Jun 2018 17:00:10 +0000 (19:00 +0200)]
add function for getopt uint16_t arguments

6 years agomore logging
Christian Grothoff [Sun, 3 Jun 2018 18:21:08 +0000 (20:21 +0200)]
more logging

6 years agomore crypto KX logging
Christian Grothoff [Sun, 3 Jun 2018 15:06:49 +0000 (17:06 +0200)]
more crypto KX logging

6 years agomore core KX logging
Christian Grothoff [Sun, 3 Jun 2018 14:44:07 +0000 (16:44 +0200)]
more core KX logging

6 years agofix logic
Christian Grothoff [Sun, 3 Jun 2018 14:30:40 +0000 (16:30 +0200)]
fix logic

6 years agoproper datacache expiration by proximity first
Christian Grothoff [Sun, 3 Jun 2018 13:07:09 +0000 (15:07 +0200)]
proper datacache expiration by proximity first

6 years agomore logging
Christian Grothoff [Sun, 3 Jun 2018 12:38:40 +0000 (14:38 +0200)]
more logging

6 years agoadd more logging for core KX to improve diagnostics
Christian Grothoff [Thu, 31 May 2018 10:43:11 +0000 (12:43 +0200)]
add more logging for core KX to improve diagnostics

6 years agoNiibe writes:
Christian Grothoff [Thu, 31 May 2018 06:16:17 +0000 (08:16 +0200)]
Niibe writes:

Sorry, I was not reading the code of GNUnet well.  I overlooked how the
eddsa_d_to_a function was written and its intention.  I read it again.

Indeed, the eddsa_d_to_a function tries to handle the case where
gcry_mpi_print returns rawmpilen < 32, putting "left pad" by DIGEST.

The problem is:

DIGEST is not cleared (although comment says so).

I think that the stack had zero-byte for some reason on your 32-bit
machine.

Here is the correction.  Clear DIGEST, as comment says.

diff --git a/src/util/crypto_ecc.c b/src/util/crypto_ecc.c
index 8d9091b23..280603234 100644
--- a/src/util/crypto_ecc.c
+++ b/src/util/crypto_ecc.c
@@ -1273,24 +1273,15 @@ eddsa_d_to_a (gcry_mpi_t d)

   b = 256 / 8; /* number of bytes in `d` */

+  memset (hvec, 0, sizeof hvec);
   /* Note that we clear DIGEST so we can use it as input to left pad
      the key with zeroes for hashing.  */
-  memset (hvec, 0, sizeof hvec);
+  memset (digest, 0, sizeof digest);
   rawmpilen = sizeof (rawmpi);
   GNUNET_assert (0 ==
                  gcry_mpi_print (GCRYMPI_FMT_USG,
   rawmpi, rawmpilen, &rawmpilen,
                                  d));
-  if (rawmpilen < 32)
-  {
-    memmove (rawmpi + 32 - rawmpilen,
-             rawmpi,
-             rawmpilen);
-    memset (rawmpi,
-            0,
-            32 - rawmpilen);
-    rawmpilen = 32;
-  }
   hvec[0].data = digest;
   hvec[0].off = 0;
   hvec[0].len = b > rawmpilen ? (b - rawmpilen) : 0;
--

6 years agoadd -2 flag to gnunet-gns-benchmark
Christian Grothoff [Thu, 31 May 2018 06:15:50 +0000 (08:15 +0200)]
add -2 flag to gnunet-gns-benchmark

6 years agoadd proximity considerations to datacache
Christian Grothoff [Wed, 30 May 2018 16:47:17 +0000 (18:47 +0200)]
add proximity considerations to datacache

6 years agodisable xu transport, header missing
Christian Grothoff [Wed, 30 May 2018 16:46:55 +0000 (18:46 +0200)]
disable xu transport, header missing

6 years agoreduce loop counters to more practical levels
Christian Grothoff [Wed, 30 May 2018 08:58:28 +0000 (10:58 +0200)]
reduce loop counters to more practical levels

6 years agostyle fix
Christian Grothoff [Wed, 30 May 2018 08:29:24 +0000 (10:29 +0200)]
style fix

6 years agoMerge branch 'master' of ssh://gnunet.org/gnunet
Christian Grothoff [Wed, 30 May 2018 08:28:51 +0000 (10:28 +0200)]
Merge branch 'master' of ssh://gnunet.org/gnunet

6 years agoadding xu transport
Christian Grothoff [Mon, 28 May 2018 14:56:32 +0000 (16:56 +0200)]
adding xu transport

6 years agoadd patch from Niibe Yutaka for
Christian Grothoff [Mon, 28 May 2018 11:04:11 +0000 (13:04 +0200)]
add patch from Niibe Yutaka for
#5328

6 years agoskip validation logic
Christian Grothoff [Sun, 27 May 2018 23:51:01 +0000 (01:51 +0200)]
skip validation logic

6 years agoskip validation logic
Christian Grothoff [Sun, 27 May 2018 23:48:13 +0000 (01:48 +0200)]
skip validation logic

6 years agotrack hello passing
Christian Grothoff [Sun, 27 May 2018 23:39:40 +0000 (01:39 +0200)]
track hello passing

6 years agogitignore: Add pytest specific
Nils Gillmann [Sun, 27 May 2018 14:17:31 +0000 (14:17 +0000)]
gitignore: Add pytest specific

Signed-off-by: Nils Gillmann <ng0@n0.is>
6 years agoadd TODO notes in doc/documentation
Nils Gillmann [Sun, 27 May 2018 13:51:07 +0000 (13:51 +0000)]
add TODO notes in doc/documentation

Signed-off-by: Nils Gillmann <ng0@n0.is>
6 years agoMerge branch 'h2020' of git+ssh://gnunet.org/gnunet into h2020
Christian Grothoff [Sat, 26 May 2018 18:44:34 +0000 (20:44 +0200)]
Merge branch 'h2020' of git+ssh://gnunet.org/gnunet into h2020

6 years agodisable LAN/loopback for AC
Christian Grothoff [Sat, 26 May 2018 18:44:29 +0000 (20:44 +0200)]
disable LAN/loopback for AC

6 years agobuild xt
Christian Grothoff [Sat, 26 May 2018 18:18:59 +0000 (20:18 +0200)]
build xt

6 years agoexclude SOA-only zones
Christian Grothoff [Sat, 26 May 2018 16:11:21 +0000 (18:11 +0200)]
exclude SOA-only zones

6 years agoxt transport for experiments:
Christian Grothoff [Sat, 26 May 2018 14:06:07 +0000 (16:06 +0200)]
xt transport for experiments:

6 years agoAdd gnunetgnsrecord to Libs
Pascal Mainini [Fri, 25 May 2018 16:44:09 +0000 (18:44 +0200)]
Add gnunetgnsrecord to Libs

6 years agoMerge branch 'master' of gnunet.org:gnunet
Nils Gillmann [Wed, 23 May 2018 22:00:23 +0000 (22:00 +0000)]
Merge branch 'master' of gnunet.org:gnunet

6 years agoc-tutorial: grammar fixes and general improvements
Nils Gillmann [Wed, 23 May 2018 22:00:04 +0000 (22:00 +0000)]
c-tutorial: grammar fixes and general improvements

Signed-off-by: Nils Gillmann <ng0@n0.is>
6 years agostop DNS lookup immediately instead of async to avoid use-after free if we get BOTH...
Christian Grothoff [Wed, 23 May 2018 21:37:00 +0000 (23:37 +0200)]
stop DNS lookup immediately instead of async to avoid use-after free if we get BOTH an IPv4 and IPv6 response

6 years agofix bug where we might fail the resolution of the same DHT heap node twice due to...
Christian Grothoff [Wed, 23 May 2018 21:08:03 +0000 (23:08 +0200)]
fix bug where we might fail the resolution of the same DHT heap node twice due to async cleanup

6 years agomore flakes.
Nils Gillmann [Wed, 23 May 2018 17:31:01 +0000 (17:31 +0000)]
more flakes.

Signed-off-by: Nils Gillmann <ng0@n0.is>
6 years agotest_integration_boostrap_and_connect: flake8
Nils Gillmann [Wed, 23 May 2018 17:02:33 +0000 (17:02 +0000)]
test_integration_boostrap_and_connect: flake8

Signed-off-by: Nils Gillmann <ng0@n0.is>
6 years agointegration-tests: clique: flake8
Nils Gillmann [Wed, 23 May 2018 14:35:01 +0000 (14:35 +0000)]
integration-tests: clique: flake8

Signed-off-by: Nils Gillmann <ng0@n0.is>
6 years agointegration-tests: gnunet-testing: flake8
Nils Gillmann [Wed, 23 May 2018 09:55:22 +0000 (09:55 +0000)]
integration-tests: gnunet-testing: flake8

Signed-off-by: Nils Gillmann <ng0@n0.is>
6 years agointegration-tests reconnect_nat: flake8
Nils Gillmann [Wed, 23 May 2018 08:37:48 +0000 (08:37 +0000)]
integration-tests reconnect_nat: flake8

Signed-off-by: Nils Gillmann <ng0@n0.is>
6 years agoMerge branch 'master' of gnunet.org:gnunet
Nils Gillmann [Wed, 23 May 2018 08:12:08 +0000 (08:12 +0000)]
Merge branch 'master' of gnunet.org:gnunet

6 years agointegration-tests disconnect_nat flake8
Nils Gillmann [Wed, 23 May 2018 08:11:31 +0000 (08:11 +0000)]
integration-tests disconnect_nat flake8

Signed-off-by: Nils Gillmann <ng0@n0.is>
6 years agorevocation: test_local_revocation: Adjust to flake8
Nils Gillmann [Wed, 23 May 2018 07:29:10 +0000 (07:29 +0000)]
revocation: test_local_revocation: Adjust to flake8

Signed-off-by: Nils Gillmann <ng0@n0.is>
6 years agostarting with another CADET testcase (unfinished)
Christian Grothoff [Tue, 22 May 2018 22:00:58 +0000 (00:00 +0200)]
starting with another CADET testcase (unfinished)

6 years agono need to dup cfg
Christian Grothoff [Tue, 22 May 2018 21:37:15 +0000 (23:37 +0200)]
no need to dup cfg

6 years agofix indentation
Christian Grothoff [Tue, 22 May 2018 21:23:20 +0000 (23:23 +0200)]
fix indentation

6 years agolog on success, too
Christian Grothoff [Tue, 22 May 2018 21:23:05 +0000 (23:23 +0200)]
log on success, too

6 years ago+
Nils Gillmann [Tue, 22 May 2018 17:03:14 +0000 (17:03 +0000)]
+

Signed-off-by: Nils Gillmann <ng0@n0.is>
6 years agofix test locations
Nils Gillmann [Tue, 22 May 2018 17:02:29 +0000 (17:02 +0000)]
fix test locations

Signed-off-by: Nils Gillmann <ng0@n0.is>
6 years agotest_gnunet_statistics: flake8
Nils Gillmann [Tue, 22 May 2018 12:52:12 +0000 (12:52 +0000)]
test_gnunet_statistics: flake8

Signed-off-by: Nils Gillmann <ng0@n0.is>
6 years agotestbed/buildvars.py: flake8
Nils Gillmann [Tue, 22 May 2018 12:34:16 +0000 (12:34 +0000)]
testbed/buildvars.py: flake8

Signed-off-by: Nils Gillmann <ng0@n0.is>
6 years ago+
Nils Gillmann [Tue, 22 May 2018 12:30:13 +0000 (12:30 +0000)]
+

Signed-off-by: Nils Gillmann <ng0@n0.is>
6 years agojanitor: flake8ism
Nils Gillmann [Tue, 22 May 2018 12:28:33 +0000 (12:28 +0000)]
janitor: flake8ism

Signed-off-by: Nils Gillmann <ng0@n0.is>
6 years agopyexpect: flake8ism
Nils Gillmann [Tue, 22 May 2018 12:17:32 +0000 (12:17 +0000)]
pyexpect: flake8ism

Signed-off-by: Nils Gillmann <ng0@n0.is>
6 years ago+
Nils Gillmann [Tue, 22 May 2018 11:45:57 +0000 (11:45 +0000)]
+

Signed-off-by: Nils Gillmann <ng0@n0.is>
6 years agotext_gnunet_fs_psd.py.in: Fix loading pxpect + flake8'ism
Nils Gillmann [Tue, 22 May 2018 11:45:12 +0000 (11:45 +0000)]
text_gnunet_fs_psd.py.in: Fix loading pxpect + flake8'ism

Signed-off-by: Nils Gillmann <ng0@n0.is>
6 years agofind_typedefs.py: Comment about variable 'li'
Nils Gillmann [Tue, 22 May 2018 09:55:04 +0000 (09:55 +0000)]
find_typedefs.py: Comment about variable 'li'

Signed-off-by: Nils Gillmann <ng0@n0.is>
6 years agocontrib/scripts/terminate.py.in: bump the year
Nils Gillmann [Tue, 22 May 2018 09:52:40 +0000 (09:52 +0000)]
contrib/scripts/terminate.py.in: bump the year

Signed-off-by: Nils Gillmann <ng0@n0.is>
6 years agocontrib/scripts/terminate.py.in: indent fixes + comments
Nils Gillmann [Tue, 22 May 2018 09:51:42 +0000 (09:51 +0000)]
contrib/scripts/terminate.py.in: indent fixes + comments

Signed-off-by: Nils Gillmann <ng0@n0.is>
6 years ago++
Nils Gillmann [Tue, 22 May 2018 09:26:21 +0000 (09:26 +0000)]
++

Signed-off-by: Nils Gillmann <ng0@n0.is>
6 years agoMore flakes
Nils Gillmann [Tue, 22 May 2018 09:15:34 +0000 (09:15 +0000)]
More flakes

Signed-off-by: Nils Gillmann <ng0@n0.is>
6 years agogitignore flake8.log
Nils Gillmann [Tue, 22 May 2018 09:04:40 +0000 (09:04 +0000)]
gitignore flake8.log

Signed-off-by: Nils Gillmann <ng0@n0.is>
6 years agoMerge branch 'master' of gnunet.org:gnunet
Nils Gillmann [Tue, 22 May 2018 08:57:06 +0000 (08:57 +0000)]
Merge branch 'master' of gnunet.org:gnunet

6 years agopeerinfo-tool: flake8 adjustments
Nils Gillmann [Tue, 22 May 2018 08:56:50 +0000 (08:56 +0000)]
peerinfo-tool: flake8 adjustments

Signed-off-by: Nils Gillmann <ng0@n0.is>
6 years agosanitize log levels
Christian Grothoff [Mon, 21 May 2018 16:41:07 +0000 (18:41 +0200)]
sanitize log levels

6 years agofix crash on unexpected client disconnect on incoming message, remove bogus assertion
Christian Grothoff [Mon, 21 May 2018 16:10:38 +0000 (18:10 +0200)]
fix crash on unexpected client disconnect on incoming message, remove bogus assertion

6 years agodisable debug logic
Christian Grothoff [Sun, 20 May 2018 21:58:28 +0000 (23:58 +0200)]
disable debug logic

6 years agoupdate ignore
Christian Grothoff [Sun, 20 May 2018 21:57:06 +0000 (23:57 +0200)]
update ignore

6 years agoupdate ignore
Christian Grothoff [Sun, 20 May 2018 21:56:55 +0000 (23:56 +0200)]
update ignore

6 years agoupdate ignore
Christian Grothoff [Sun, 20 May 2018 21:56:07 +0000 (23:56 +0200)]
update ignore

6 years agofix serialization/deserialization error in namestore deferred monitor logic
Christian Grothoff [Sun, 20 May 2018 21:51:43 +0000 (23:51 +0200)]
fix serialization/deserialization error in namestore deferred monitor logic

6 years agocheck return values from GNSRECORD_record_serialize/size always
Christian Grothoff [Sun, 20 May 2018 21:40:20 +0000 (23:40 +0200)]
check return values from GNSRECORD_record_serialize/size always

6 years agooff by 0 in log msg
Christian Grothoff [Sun, 20 May 2018 19:49:49 +0000 (21:49 +0200)]
off by 0 in log msg

6 years agofix crash on namestore disconnect
Christian Grothoff [Sun, 20 May 2018 19:05:18 +0000 (21:05 +0200)]
fix crash on namestore disconnect

6 years agoguard more carefully against integer overflows
Christian Grothoff [Sun, 20 May 2018 17:06:46 +0000 (19:06 +0200)]
guard more carefully against integer overflows

6 years agoadd test for gns2dns records pointing to DNS name
Christian Grothoff [Sun, 20 May 2018 16:55:54 +0000 (18:55 +0200)]
add test for gns2dns records pointing to DNS name

6 years agofix warning
Christian Grothoff [Sun, 20 May 2018 16:55:39 +0000 (18:55 +0200)]
fix warning

6 years agoadd logic to count concurrently active GNS requests
Christian Grothoff [Sun, 20 May 2018 16:54:47 +0000 (18:54 +0200)]
add logic to count concurrently active GNS requests

6 years agoallow multiple GNS2DNS records to co-exist
Christian Grothoff [Sun, 20 May 2018 16:42:01 +0000 (18:42 +0200)]
allow multiple GNS2DNS records to co-exist

6 years agoremove dead shorten logic
Christian Grothoff [Sun, 20 May 2018 16:41:48 +0000 (18:41 +0200)]
remove dead shorten logic

6 years agofix partitioning
Christian Grothoff [Sun, 20 May 2018 12:43:30 +0000 (14:43 +0200)]
fix partitioning

6 years agodo not crash on multiple CNAMEs
Christian Grothoff [Sun, 20 May 2018 10:51:41 +0000 (12:51 +0200)]
do not crash on multiple CNAMEs

6 years agofix another off by one
Christian Grothoff [Sat, 19 May 2018 22:45:04 +0000 (00:45 +0200)]
fix another off by one

6 years agofix off-by-one error in cadet connection construction, also enforce better timeouts...
Christian Grothoff [Sat, 19 May 2018 22:35:13 +0000 (00:35 +0200)]
fix off-by-one error in cadet connection construction, also enforce better timeouts for retransmissions of handshake

6 years agoflake8: add .py.in to tox.ini and realize the process is far from finished.
Nils Gillmann [Sat, 19 May 2018 19:44:46 +0000 (19:44 +0000)]
flake8: add .py.in to tox.ini and realize the process is far from finished.

Signed-off-by: Nils Gillmann <ng0@n0.is>
6 years agoFix failing peerinfo test
Nils Gillmann [Sat, 19 May 2018 19:29:42 +0000 (19:29 +0000)]
Fix failing peerinfo test

Signed-off-by: Nils Gillmann <ng0@n0.is>
6 years agodisable crypto bug workaround
Christian Grothoff [Sat, 19 May 2018 18:31:10 +0000 (20:31 +0200)]
disable crypto bug workaround

6 years agoundo hostkey patch
Christian Grothoff [Sat, 19 May 2018 18:30:03 +0000 (20:30 +0200)]
undo hostkey patch

6 years agosrc/consensus/consensus-simulation: Use past.builtins for xrange
Nils Gillmann [Sat, 19 May 2018 17:21:42 +0000 (17:21 +0000)]
src/consensus/consensus-simulation: Use past.builtins for xrange

Signed-off-by: Nils Gillmann <ng0@n0.is>
6 years agopython2+3 compat.: contrib/scripts/find_typedefs, gdb-iterate-dll: unicode-literals
Nils Gillmann [Sat, 19 May 2018 17:02:58 +0000 (17:02 +0000)]
python2+3 compat.: contrib/scripts/find_typedefs, gdb-iterate-dll: unicode-literals

Signed-off-by: Nils Gillmann <ng0@n0.is>
6 years agogitignore: Add .bak
Nils Gillmann [Sat, 19 May 2018 17:01:57 +0000 (17:01 +0000)]
gitignore: Add .bak

Signed-off-by: Nils Gillmann <ng0@n0.is>
6 years agopython2+3 compat.: contrib/scripts/gdb-iterate-dll.py: use futures.
Nils Gillmann [Sat, 19 May 2018 16:59:29 +0000 (16:59 +0000)]
python2+3 compat.: contrib/scripts/gdb-iterate-dll.py: use futures.

Signed-off-by: Nils Gillmann <ng0@n0.is>