6315 Commits

Author SHA1 Message Date
Patrick Lodder
178f25bce4 Backport protocol 70004 to 1.8.3 2015-09-09 13:36:35 +02:00
Ross Nicoll
bbdf5e93d7 Merge pull request #1191 from langerhans/1.8.3-releaseprep
Release prep for 1.8.3
2015-06-30 19:18:05 +01:00
langerhans
d911656e1a Add release notes for 1.8.3 2015-06-29 20:38:41 +02:00
langerhans
81e3357b0e Update the version numbers to 1.8.3 2015-06-29 20:26:15 +02:00
langerhans
fdd74c2069 Add a fresh set of fixed and DNS seeds. 2015-06-29 20:22:49 +02:00
Max K.
7f2e24a00b Merge pull request #1190 from rnicoll/1.8-1d21ba2f5ecbf03086d0b65c4c4c80a39a94c2ee
Backport Bitcoin Core 0.10.x P2P changes to Dogecoin 1.8.3
2015-06-29 19:53:22 +02:00
Pieter Wuille
cc0ac7a749 Scale up addrman
This change was suggested as Countermeasure 6 in
Eclipse Attacks on Bitcoin’s Peer-to-Peer Network, Ethan Heilman,
Alison Kendler, Aviv Zohar, Sharon Goldberg. ePrint Archive Report
2015/263. March 2015.

Rebased-From: 1d21ba2f5ecbf03086d0b65c4c4c80a39a94c2ee
Github-Pull: #5941

Conflicts:
	src/addrman.h
2015-06-27 14:15:32 +00:00
Pieter Wuille
9b95692530 Always use a 50% chance to choose between tried and new entries
This change was suggested as Countermeasure 2 in
Eclipse Attacks on Bitcoin’s Peer-to-Peer Network, Ethan Heilman,
Alison Kendler, Aviv Zohar, Sharon Goldberg. ePrint Archive Report
2015/263. March 2015.

Rebased-From: c6a63ceeb4956933588995bcf01dc3095aaeb1fc
Github-Pull: #5941
2015-06-27 14:15:32 +00:00
Pieter Wuille
7902f4cc01 Do not bias outgoing connections towards fresh addresses
This change was suggested as Countermeasure 2 in
Eclipse Attacks on Bitcoin’s Peer-to-Peer Network, Ethan Heilman,
Alison Kendler, Aviv Zohar, Sharon Goldberg. ePrint Archive Report
2015/263. March 2015.

Rebased-From: 68ba3f67bd500a64fb8932c6b41924ddc31d76f
Github-Pull: #5941
2015-06-27 14:15:32 +00:00
Pieter Wuille
a56e94f913 Simplify hashing code
Conflicts:
	src/addrman.cpp

Rebased-From: a8ff7c62edc63c7c94bc91c30b80995539ed7477
Github-Pull: #5941
2015-06-27 14:15:32 +00:00
Pieter Wuille
6ae9da28d4 Make addrman's bucket placement deterministic.
Give each address a single fixed location in the new and tried tables,
which become simple fixed-size arrays instead of sets and vectors.

This prevents attackers from having an advantages by inserting an
address multiple times.

This change was suggested as Countermeasure 1 in
Eclipse Attacks on Bitcoin’s Peer-to-Peer Network, Ethan Heilman,
Alison Kendler, Aviv Zohar, Sharon Goldberg. ePrint Archive Report
2015/263. March 2015.

It is also more efficient.

Rebased-From: e6b343d880f50d52390c5af8623afa15fcbc65a2
Github-Pull: #5941

Conflicts:
	src/addrman.cpp
	src/addrman.h
2015-06-27 14:15:32 +00:00
Pieter Wuille
bd36a593d6 Switch addrman key from vector to uint256
Conflicts:
	src/addrman.cpp

Rebased-From: b23add5521e4207085d41a0266617e94435fc22e
Github-Pull: #5941
2015-06-27 14:15:32 +00:00
Pieter Wuille
b8ad085955 Reduce fingerprinting through timestamps in 'addr' messages.
Suggested by Jonas Nick.

Rebased-From: 9c2737901b5203f267d21d728019d64b46f1d9f3
Github-Pull: #5860
2015-06-27 14:15:32 +00:00
Pieter Wuille
fe3a31384c Limit message sizes before transfer
This introduces a fixed limit for the size of p2p messages, and enforces it
before download.

Rebased-From: ba04c4a7801e7d68a5e84035b919e5c3626eb7a7
Github-Pull: #5843
2015-06-27 14:15:26 +00:00
Philip Kaufmann
c118e9d275 prevent SOCKET leak in BindListenPort()
- the call to CloseSocket() is placed after the WSAGetLastError(), because
  a CloseSocket() can trigger an error also, which we don't want for the
  logging in this two cases
2015-06-27 14:11:36 +00:00
Wladimir J. van der Laan
a15d1b4fc1 Convert closesocket 'compat wrapper' to function in netbase
Simpler alternative to #4348.

The current setup with closesocket() is strange. It poses
as a compatibility wrapper but adds functionality.

Rename it and make it a documented utility function in netbase.

Code movement only, zero effect on the functionality.
2015-06-27 14:11:36 +00:00
Pieter Wuille
19d00a2dff Break up CAddrMan's IMPLEMENT_SERIALIZE 2015-06-27 14:11:36 +00:00
Pieter Wuille
6f86ee9cae Introduce whitelisted peers.
This adds a -whitelist option to specify subnet ranges from which peers
that connect are whitelisted. In addition, there is a -whitebind option
which works like -bind, except peers connecting to it are also
whitelisted (allowing a separate listen port for trusted connections).

Being whitelisted has two effects (for now):
* They are immune to DoS disconnection/banning.
* Transactions they broadcast (which are valid) are always relayed,
  even if they were already in the mempool. This means that a node
  can function as a gateway for a local network, and that rebroadcasts
  from the local network will work as expected.

Whitelisting replaces the magic exemption localhost had for DoS
disconnection (local addresses are still never banned, though), which
implied hidden service connects (from a localhost Tor node) were
incorrectly immune to DoS disconnection as well. This old
behaviour is removed for that reason, but can be restored using
-whitelist=127.0.0.1 or -whitelist=::1 can be specified. -whitebind
is safer to use in case non-trusted localhost connections are expected
(like hidden services).
2015-06-27 14:11:36 +00:00
Philip Kaufmann
33333d2e88 error out, when we detect -socks argument 2015-06-27 13:45:18 +00:00
Philip Kaufmann
c5c5ddce02 remove SOCKS4 support from core and GUI
- now we support SOCKS5 only
2015-06-27 13:45:18 +00:00
Pieter Wuille
d0952adabd Use pong receive time rather than processing time 2015-06-27 13:45:18 +00:00
Philip Kaufmann
fbf7c3623d add missing BOOST_FOREACH indentation in ThreadSocketHandler() 2015-06-27 13:45:18 +00:00
Philip Kaufmann
a8fe7c245b small cleanup of #ifdefs in BindListenPort()
- SO_NOSIGPIPE isn't available on WIN32 so merge the 2 non-WIN32 blocks
- use predefined names from header for IPV6_PROTECTION_LEVEL and
  PROTECTION_LEVEL_UNRESTRICTED
2015-06-27 13:44:15 +00:00
Philip Kaufmann
845fc0eb13 add missing vhListenSocket.clear(); to CNetCleanup() 2015-06-27 13:44:15 +00:00
Philip Kaufmann
636716439a remove unused CNode::Cleanup() 2015-06-27 13:44:14 +00:00
Pieter Wuille
d617424616 Ping automatically every 2 minutes (unconditionally)
... instead of after 30 minutes of no sending, for latency measurement
and keep-alive. Also, disconnect if no reply arrives within 20 minutes,
instead of 90 of inactivity (for peers supporting the 'pong' message).
2015-06-27 13:44:14 +00:00
Philip Kaufmann
f347f7ebb3 rename fNoListen to fListen and move to net
- better code readability and it belongs to net
- this is a prerequisite for a pull to add -listen to the GUI
2015-06-27 13:44:14 +00:00
langerhans
6efee87849 Merge branch '1.8.2-dev' into 1.8-maint 2015-01-17 19:22:36 +01:00
langerhans
d9ff1efb5d Update release type and copyright year 2015-01-17 19:22:19 +01:00
langerhans
ad27d9ddf1 Merge branch '1.8.2-dev' into 1.8-maint 2015-01-17 19:16:33 +01:00
langerhans
3028db904f Add release notes for 1.8.2 2015-01-17 19:15:43 +01:00
langerhans
9d0b9a167e Merge pull request #786 from rnicoll/1.8.2-openssl-1.0.1l
Openssl 1.0.1l dependency update
2015-01-17 18:59:44 +01:00
Ross Nicoll
8f516c5fa4 Update OpenSSL version to 1.0.1l 2015-01-17 17:16:06 +00:00
Patrick Lodder
4310750880 Openssl 1.0.1k dependency update
Updates openssl to 1.0.1k for:
- build docs
- gitian linux build descriptors
- gitian windows build descriptors

see: https://www.openssl.org/news/secadv_20150108.txt

Note: This patch was not applied to the OSX gitian process because
that is (still) broken for dogecoin at this time.
2015-01-15 13:42:16 +01:00
langerhans
62e8666ad7 Merge pull request #784 from rnicoll/1.8.2-openssl-robustness
Improve robustness of DER recoding code
2015-01-13 10:26:29 +01:00
Wladimir J. van der Laan
35fc9351d0 Improve robustness of DER recoding code
Add some defensive programming on top of #5634.

This copies the respective OpenSSL code in ECDSA_verify in
OpenSSL pre-1.0.1k (e.g. https://github.com/openssl/openssl/blob/OpenSSL_1_0_1j/crypto/ecdsa/ecs_vrf.c#L89)
more closely.

As reported by @sergiodemianlerner.

Github-Pull: #5640
Rebased-From: c6b7b29f232c651f898eeffb93f36c8f537c56d2
2015-01-12 20:20:01 +00:00
Ross Nicoll
cd35272722 Merge pull request #781 from langerhans/1.8.2-dev-openssl-fix
Fix for OpenSSL 1.0.1k+
2015-01-12 01:22:13 +00:00
Wladimir J. van der Laan
3835f3d091 fail immediately on an empty signature
Github-Pull: #5634
Rebased-From: 8dccba6a45db0466370726ed462b9da2eae43bce
2015-01-11 20:54:55 +01:00
Cory Fields
6fa9a5e31a consensus: guard against openssl's new strict DER checks
New versions of OpenSSL will reject non-canonical DER signatures. However,
it'll happily decode them. Decode then re-encode before verification in order
to ensure that it is properly consumed.

Github-Pull: #5634
Rebased-From: 488ed32f2ada1d1dd108fc245d025c4d5f252783
2015-01-11 20:54:47 +01:00
Ross Nicoll
44e1fa8d65 Merge pull request #757 from langerhans/1.8.2-dev
1.8.2 dev merge
2014-12-25 10:08:03 +00:00
langerhans
e5f85a3b99 Adjust version for 1.8.2 2014-12-24 23:11:46 +01:00
langerhans
c4aac56d58 Merge branch 'master' into 1.8.2-dev 2014-12-21 19:00:53 +01:00
langerhans
266c22dffb Merge branch '1.8-maint' v1.8.1 2014-12-20 20:22:13 +01:00
langerhans
432ce93412 Bump to release version 2014-12-20 20:21:50 +01:00
langerhans
2f75712f1e Merge branch '1.8-maint' 2014-12-20 19:13:59 +01:00
langerhans
0032d3ca68 Merge branch '1.8.1-dev' into 1.8-maint 2014-12-20 19:11:58 +01:00
langerhans
556d5343b3 edit release notes for late changes 2014-12-20 19:09:18 +01:00
Patrick Lodder
32fb2759e4 Merge pull request #755 from langerhans/1.8.1-dev-maxconn2
Make max_outbound_connections configurable
2014-12-20 19:04:02 +01:00
langerhans
8949d123bc Merge pull request #756 from rnicoll/1.8.1-dev-releasenotes
Update Dogecoin Core 1.8.1 release notes
2014-12-20 18:59:48 +01:00
Ross Nicoll
f01c4426f3 Updated Dogecoin Core 1.8.1 release notes. 2014-12-20 17:47:46 +00:00