2008-02-16 Tatsuhiro Tsujikawa <tujikawa at rednoah dot com>
Added Message Stream Encryption(MSE) support.
Currently, aria2 accepts incoming connections with Obfuscation Header
and legacy BitTorrent Header and establishes connections with
Obfuscation Header first and if failed then retry with legacy
BitTorrent header. If plain text and ARC4 is provided, aria2 always
choose ARC4. The new option to change the default behavior is planned.
For tracker extension, "supportcrypto=1" is added statically.
* src/PeerInitiateConnectionCommand.{h, cc}
* src/PeerConnection.{h, cc}
* src/HandleRegistry.h
* src/SocketCore.h
* src/PeerReceiveHandshakeCommand.{h, cc}
* src/BtRegistry.{h, cc}
* src/PeerListenCommand.cc
* src/InitiatorMSEHandshakeCommand.{h, cc}
* src/ReceiverMSEHandshakeCommand.{h, cc}
* src/MSEHandshake.{h, cc}
* src/ARC4Encryptor.h
* src/ARC4Decryptor.h
* src/LibgcryptARC4Encryptor.h
* src/LibgcryptARC4Decryptor.h
* src/LibgcryptARC4Context.h
* src/LibsslARC4Encryptor.h
* src/LibsslARC4Decryptor.h
* src/LibsslARC4Context.h
* src/DHKeyExchange.h
* src/LibgcryptDHKeyExchange.h
* src/LibsslDHKeyExchange.h
* src/DefaultBtAnnounce.cc: Just added "supportcrypto=1" parameter.
* test/DefaultBtAnnounceTest.cc
* test/ARC4Test.cc
* test/DHKeyExchangeTest.cc
Removed prepareForRetry() because it is not used.
* src/PeerAbstractCommand.{h, cc}
* src/PeerInteractionCommand.{h, cc}
* src/PeerInitiateConnectionCommand.{h, cc}
2008-02-17 15:56:47 +00:00
|
|
|
/* <!-- copyright */
|
|
|
|
/*
|
|
|
|
* aria2 - The high speed download utility
|
|
|
|
*
|
|
|
|
* Copyright (C) 2006 Tatsuhiro Tsujikawa
|
|
|
|
*
|
|
|
|
* This program 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 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program 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.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
|
|
|
*
|
|
|
|
* In addition, as a special exception, the copyright holders give
|
|
|
|
* permission to link the code of portions of this program with the
|
|
|
|
* OpenSSL library under certain conditions as described in each
|
|
|
|
* individual source file, and distribute linked combinations
|
|
|
|
* including the two.
|
|
|
|
* You must obey the GNU General Public License in all respects
|
|
|
|
* for all of the code used other than OpenSSL. If you modify
|
|
|
|
* file(s) with this exception, you may extend this exception to your
|
|
|
|
* version of the file(s), but you are not obligated to do so. If you
|
|
|
|
* do not wish to do so, delete this exception statement from your
|
|
|
|
* version. If you delete this exception statement from all source
|
|
|
|
* files in the program, then also delete it here.
|
|
|
|
*/
|
|
|
|
/* copyright --> */
|
|
|
|
#include "ReceiverMSEHandshakeCommand.h"
|
|
|
|
#include "PeerReceiveHandshakeCommand.h"
|
|
|
|
#include "PeerConnection.h"
|
|
|
|
#include "DownloadEngine.h"
|
|
|
|
#include "BtHandshakeMessage.h"
|
|
|
|
#include "DlAbortEx.h"
|
|
|
|
#include "Peer.h"
|
|
|
|
#include "message.h"
|
|
|
|
#include "Socket.h"
|
|
|
|
#include "Logger.h"
|
|
|
|
#include "prefs.h"
|
|
|
|
#include "Option.h"
|
|
|
|
#include "MSEHandshake.h"
|
|
|
|
#include "ARC4Encryptor.h"
|
|
|
|
#include "ARC4Decryptor.h"
|
2008-02-23 15:37:47 +00:00
|
|
|
#include "RequestGroupMan.h"
|
2008-02-16 Tatsuhiro Tsujikawa <tujikawa at rednoah dot com>
Added Message Stream Encryption(MSE) support.
Currently, aria2 accepts incoming connections with Obfuscation Header
and legacy BitTorrent Header and establishes connections with
Obfuscation Header first and if failed then retry with legacy
BitTorrent header. If plain text and ARC4 is provided, aria2 always
choose ARC4. The new option to change the default behavior is planned.
For tracker extension, "supportcrypto=1" is added statically.
* src/PeerInitiateConnectionCommand.{h, cc}
* src/PeerConnection.{h, cc}
* src/HandleRegistry.h
* src/SocketCore.h
* src/PeerReceiveHandshakeCommand.{h, cc}
* src/BtRegistry.{h, cc}
* src/PeerListenCommand.cc
* src/InitiatorMSEHandshakeCommand.{h, cc}
* src/ReceiverMSEHandshakeCommand.{h, cc}
* src/MSEHandshake.{h, cc}
* src/ARC4Encryptor.h
* src/ARC4Decryptor.h
* src/LibgcryptARC4Encryptor.h
* src/LibgcryptARC4Decryptor.h
* src/LibgcryptARC4Context.h
* src/LibsslARC4Encryptor.h
* src/LibsslARC4Decryptor.h
* src/LibsslARC4Context.h
* src/DHKeyExchange.h
* src/LibgcryptDHKeyExchange.h
* src/LibsslDHKeyExchange.h
* src/DefaultBtAnnounce.cc: Just added "supportcrypto=1" parameter.
* test/DefaultBtAnnounceTest.cc
* test/ARC4Test.cc
* test/DHKeyExchangeTest.cc
Removed prepareForRetry() because it is not used.
* src/PeerAbstractCommand.{h, cc}
* src/PeerInteractionCommand.{h, cc}
* src/PeerInitiateConnectionCommand.{h, cc}
2008-02-17 15:56:47 +00:00
|
|
|
|
|
|
|
namespace aria2 {
|
|
|
|
|
|
|
|
ReceiverMSEHandshakeCommand::ReceiverMSEHandshakeCommand
|
|
|
|
(int32_t cuid,
|
|
|
|
const SharedHandle<Peer>& peer,
|
|
|
|
DownloadEngine* e,
|
|
|
|
const SharedHandle<SocketCore>& s):
|
|
|
|
|
|
|
|
PeerAbstractCommand(cuid, peer, e, s),
|
|
|
|
_sequence(RECEIVER_IDENTIFY_HANDSHAKE),
|
|
|
|
_mseHandshake(new MSEHandshake(cuid, s, e->option))
|
|
|
|
{
|
|
|
|
setTimeout(e->option->getAsInt(PREF_PEER_CONNECTION_TIMEOUT));
|
|
|
|
}
|
|
|
|
|
|
|
|
ReceiverMSEHandshakeCommand::~ReceiverMSEHandshakeCommand()
|
|
|
|
{
|
|
|
|
delete _mseHandshake;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool ReceiverMSEHandshakeCommand::exitBeforeExecute()
|
|
|
|
{
|
2008-02-23 15:37:47 +00:00
|
|
|
return e->isHaltRequested() || e->_requestGroupMan->downloadFinished();
|
2008-02-16 Tatsuhiro Tsujikawa <tujikawa at rednoah dot com>
Added Message Stream Encryption(MSE) support.
Currently, aria2 accepts incoming connections with Obfuscation Header
and legacy BitTorrent Header and establishes connections with
Obfuscation Header first and if failed then retry with legacy
BitTorrent header. If plain text and ARC4 is provided, aria2 always
choose ARC4. The new option to change the default behavior is planned.
For tracker extension, "supportcrypto=1" is added statically.
* src/PeerInitiateConnectionCommand.{h, cc}
* src/PeerConnection.{h, cc}
* src/HandleRegistry.h
* src/SocketCore.h
* src/PeerReceiveHandshakeCommand.{h, cc}
* src/BtRegistry.{h, cc}
* src/PeerListenCommand.cc
* src/InitiatorMSEHandshakeCommand.{h, cc}
* src/ReceiverMSEHandshakeCommand.{h, cc}
* src/MSEHandshake.{h, cc}
* src/ARC4Encryptor.h
* src/ARC4Decryptor.h
* src/LibgcryptARC4Encryptor.h
* src/LibgcryptARC4Decryptor.h
* src/LibgcryptARC4Context.h
* src/LibsslARC4Encryptor.h
* src/LibsslARC4Decryptor.h
* src/LibsslARC4Context.h
* src/DHKeyExchange.h
* src/LibgcryptDHKeyExchange.h
* src/LibsslDHKeyExchange.h
* src/DefaultBtAnnounce.cc: Just added "supportcrypto=1" parameter.
* test/DefaultBtAnnounceTest.cc
* test/ARC4Test.cc
* test/DHKeyExchangeTest.cc
Removed prepareForRetry() because it is not used.
* src/PeerAbstractCommand.{h, cc}
* src/PeerInteractionCommand.{h, cc}
* src/PeerInitiateConnectionCommand.{h, cc}
2008-02-17 15:56:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bool ReceiverMSEHandshakeCommand::executeInternal()
|
|
|
|
{
|
|
|
|
switch(_sequence) {
|
|
|
|
case RECEIVER_IDENTIFY_HANDSHAKE: {
|
|
|
|
MSEHandshake::HANDSHAKE_TYPE type = _mseHandshake->identifyHandshakeType();
|
|
|
|
switch(type) {
|
|
|
|
case MSEHandshake::HANDSHAKE_NOT_YET:
|
|
|
|
break;
|
|
|
|
case MSEHandshake::HANDSHAKE_ENCRYPTED:
|
|
|
|
_mseHandshake->initEncryptionFacility(false);
|
|
|
|
_sequence = RECEIVER_WAIT_KEY;
|
|
|
|
break;
|
|
|
|
case MSEHandshake::HANDSHAKE_LEGACY: {
|
2008-02-18 13:41:58 +00:00
|
|
|
if(e->option->getAsBool(PREF_BT_REQUIRE_CRYPTO)) {
|
|
|
|
throw new DlAbortEx("The legacy BitTorrent handshake is not acceptable by the preference.");
|
|
|
|
}
|
2008-02-27 16:43:52 +00:00
|
|
|
SharedHandle<PeerConnection> peerConnection =
|
|
|
|
new PeerConnection(cuid, socket, e->option);
|
|
|
|
peerConnection->presetBuffer(_mseHandshake->getBuffer(),
|
|
|
|
_mseHandshake->getBufferLength());
|
|
|
|
Command* c = new PeerReceiveHandshakeCommand(cuid, peer, e, socket,
|
|
|
|
peerConnection);
|
2008-02-16 Tatsuhiro Tsujikawa <tujikawa at rednoah dot com>
Added Message Stream Encryption(MSE) support.
Currently, aria2 accepts incoming connections with Obfuscation Header
and legacy BitTorrent Header and establishes connections with
Obfuscation Header first and if failed then retry with legacy
BitTorrent header. If plain text and ARC4 is provided, aria2 always
choose ARC4. The new option to change the default behavior is planned.
For tracker extension, "supportcrypto=1" is added statically.
* src/PeerInitiateConnectionCommand.{h, cc}
* src/PeerConnection.{h, cc}
* src/HandleRegistry.h
* src/SocketCore.h
* src/PeerReceiveHandshakeCommand.{h, cc}
* src/BtRegistry.{h, cc}
* src/PeerListenCommand.cc
* src/InitiatorMSEHandshakeCommand.{h, cc}
* src/ReceiverMSEHandshakeCommand.{h, cc}
* src/MSEHandshake.{h, cc}
* src/ARC4Encryptor.h
* src/ARC4Decryptor.h
* src/LibgcryptARC4Encryptor.h
* src/LibgcryptARC4Decryptor.h
* src/LibgcryptARC4Context.h
* src/LibsslARC4Encryptor.h
* src/LibsslARC4Decryptor.h
* src/LibsslARC4Context.h
* src/DHKeyExchange.h
* src/LibgcryptDHKeyExchange.h
* src/LibsslDHKeyExchange.h
* src/DefaultBtAnnounce.cc: Just added "supportcrypto=1" parameter.
* test/DefaultBtAnnounceTest.cc
* test/ARC4Test.cc
* test/DHKeyExchangeTest.cc
Removed prepareForRetry() because it is not used.
* src/PeerAbstractCommand.{h, cc}
* src/PeerInteractionCommand.{h, cc}
* src/PeerInitiateConnectionCommand.{h, cc}
2008-02-17 15:56:47 +00:00
|
|
|
e->commands.push_back(c);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
default:
|
|
|
|
throw new DlAbortEx("Not supported handshake type.");
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case RECEIVER_WAIT_KEY: {
|
|
|
|
if(_mseHandshake->receivePublicKey()) {
|
|
|
|
_mseHandshake->sendPublicKey();
|
|
|
|
_sequence = RECEIVER_FIND_HASH_MARKER;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case RECEIVER_FIND_HASH_MARKER: {
|
|
|
|
if(_mseHandshake->findReceiverHashMarker()) {
|
|
|
|
_sequence = RECEIVER_RECEIVE_PAD_C_LENGTH;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case RECEIVER_RECEIVE_PAD_C_LENGTH: {
|
|
|
|
if(_mseHandshake->receiveReceiverHashAndPadCLength()) {
|
|
|
|
_sequence = RECEIVER_RECEIVE_PAD_C;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case RECEIVER_RECEIVE_PAD_C: {
|
|
|
|
if(_mseHandshake->receivePad()) {
|
|
|
|
_sequence = RECEIVER_RECEIVE_IA_LENGTH;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case RECEIVER_RECEIVE_IA_LENGTH: {
|
|
|
|
if(_mseHandshake->receiveReceiverIALength()) {
|
|
|
|
_sequence = RECEIVER_RECEIVE_IA;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case RECEIVER_RECEIVE_IA: {
|
|
|
|
if(_mseHandshake->receiveReceiverIA()) {
|
|
|
|
_mseHandshake->sendReceiverStep2();
|
|
|
|
SharedHandle<PeerConnection> peerConnection =
|
|
|
|
new PeerConnection(cuid, socket, e->option);
|
|
|
|
if(_mseHandshake->getNegotiatedCryptoType() == MSEHandshake::CRYPTO_ARC4) {
|
|
|
|
peerConnection->enableEncryption(_mseHandshake->getEncryptor(),
|
|
|
|
_mseHandshake->getDecryptor());
|
|
|
|
}
|
|
|
|
if(_mseHandshake->getIALength() > 0) {
|
|
|
|
peerConnection->presetBuffer(_mseHandshake->getIA(),
|
|
|
|
_mseHandshake->getIALength());
|
|
|
|
}
|
|
|
|
// TODO add _mseHandshake->getInfoHash() to PeerReceiveHandshakeCommand
|
|
|
|
// as a hint. If this info hash and one in BitTorrent Handshake does not
|
|
|
|
// match, then drop connection.
|
|
|
|
Command* c =
|
|
|
|
new PeerReceiveHandshakeCommand(cuid, peer, e, socket, peerConnection);
|
|
|
|
e->commands.push_back(c);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
e->commands.push_back(this);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace aria2
|