2006-03-21 14:12:51 +00:00
|
|
|
/* <!-- copyright */
|
|
|
|
/*
|
2006-09-21 15:31:24 +00:00
|
|
|
* aria2 - The high speed download utility
|
2006-03-21 14:12:51 +00:00
|
|
|
*
|
|
|
|
* 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
|
2006-09-21 15:31:24 +00:00
|
|
|
* 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.
|
2006-03-21 14:12:51 +00:00
|
|
|
*/
|
|
|
|
/* copyright --> */
|
|
|
|
#ifndef _D_PEER_MESSAGE_UTIL_H_
|
|
|
|
#define _D_PEER_MESSAGE_UTIL_H_
|
|
|
|
|
2006-05-26 15:28:19 +00:00
|
|
|
#include "common.h"
|
2008-02-08 15:53:45 +00:00
|
|
|
#include <string>
|
|
|
|
#include <utility>
|
|
|
|
|
|
|
|
namespace aria2 {
|
2006-03-21 14:12:51 +00:00
|
|
|
|
2006-03-31 16:15:23 +00:00
|
|
|
#define MAX_BLOCK_LENGTH (128*1024)
|
|
|
|
|
2006-03-21 14:12:51 +00:00
|
|
|
class PeerMessageUtil {
|
|
|
|
private:
|
|
|
|
PeerMessageUtil() {}
|
2006-05-18 17:08:29 +00:00
|
|
|
public:
|
2008-03-09 12:24:01 +00:00
|
|
|
static uint32_t getIntParam(const unsigned char* msg, size_t pos);
|
2006-05-10 12:30:26 +00:00
|
|
|
|
2008-03-09 12:24:01 +00:00
|
|
|
static uint16_t getShortIntParam(const unsigned char* msg, size_t pos);
|
2006-12-24 06:25:21 +00:00
|
|
|
|
2008-03-09 12:24:01 +00:00
|
|
|
static void setIntParam(unsigned char* dest, uint32_t param);
|
2006-12-24 06:25:21 +00:00
|
|
|
|
2008-03-09 12:24:01 +00:00
|
|
|
static void setShortIntParam(unsigned char* dest, uint16_t param);
|
2006-12-24 06:25:21 +00:00
|
|
|
|
2008-03-09 12:24:01 +00:00
|
|
|
static uint8_t getId(const unsigned char* msg);
|
2006-05-18 17:08:29 +00:00
|
|
|
|
2008-03-09 12:24:01 +00:00
|
|
|
static void checkIndex(size_t index, size_t pieces);
|
|
|
|
static void checkBegin(uint32_t begin, size_t pieceLength);
|
|
|
|
static void checkLength(size_t length);
|
|
|
|
static void checkRange(uint32_t begin, size_t length, size_t pieceLength);
|
2006-05-10 12:30:26 +00:00
|
|
|
static void checkBitfield(const unsigned char* bitfield,
|
2008-03-09 12:24:01 +00:00
|
|
|
size_t bitfieldLength,
|
|
|
|
size_t pieces);
|
2006-05-09 15:54:14 +00:00
|
|
|
|
2006-12-24 06:25:21 +00:00
|
|
|
static void createPeerMessageString(unsigned char* msg,
|
2008-03-09 12:24:01 +00:00
|
|
|
size_t msgLength,
|
|
|
|
size_t payloadLength,
|
|
|
|
uint8_t messageId);
|
2007-12-22 Tatsuhiro Tsujikawa <tujikawa at rednoah dot com>
Added uTorrent compatible Peer Exchange.
* src/BencodeVisitor.{h, cc}
* test/BencodeVisitorTest.cc
* src/BtConstants.h
* src/BtContext.h: Added 'private' flag.
* src/BtExtendedMessage.{h, cc}
* test/BtExtendedMessageTest.cc
* src/BtHandshakeMessage.{h, cc}: Set extended messaging bit in
reserved field.
* test/BtHandshakeMessageTest.cc
* src/BtMessageFactory.h
* src/BtRegistry.h
* src/BtRuntime.h: This class holds default extension message
IDs for
aria2. By default, aria2 uses ID 8 for ut_pex.
* src/DefaultBtContext.cc
* src/DefaultBtInteractive.{h, cc}: This class holds
_utPexEnabled.
When it is true, aria2 enables ut_pex. This value is set by
PeerInteractionCommand.
* src/DefaultBtMessageFactory.{h, cc}
* test/DefaultBtMessageFactoryTest.cc
* src/DefaultBtMessageReceiver.cc: Moved the code of fast
extension
handling to DefaultBtInteractive class.
* src/DefaultExtensionMessageFactory.{h, cc}
* test/DefaultExtensionMessageFactoryTest.cc
* src/DefaultPeerStorage.cc: Returns false if a peer is already
in
the container(peers and incomingPeers. The equality is
determined by
Peer::id).
* test/DefaultPeerStorageTest.cc
* src/ExtensionMessage.h
* test/MockExtensionMessage.h
* src/ExtensionMessageFactory.h
* test/MockExtensionMessageFactory.h
* src/HandshakeExtensionMessage.{h, cc}
* test/HandshakeExtensionMessageTest.cc
* src/MetaEntry.h
* src/Peer.{h, cc}
* src/PeerInteractionCommand.cc
* src/PeerReceiveHandshakeCommand.cc: Evaluate the return value
of
addIncomingPeer.
* src/PeerMessageUtil.{h, cc}
* src/PeerObject.h
* src/UTPexExtensionMessage.{h, cc}
* test/UTPexExtensionMessageTest.cc
* src/message.h
* src/prefs.h
Fixed the bug that returns incomplete data when it contains null
character. A convenient constructor was also added.
* src/Data.{h, cc}
Rewritten.
* src/CompactPeerListProcessor.cc
Fixed typos.
* src/message.h
* src/MetaFileUtil.cc
2007-12-22 03:57:55 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Creates compact tracker format(6bytes for ipv4 address and port)
|
|
|
|
* and stores the results in compact.
|
|
|
|
* compact must be at least 6 bytes and pre-allocated.
|
|
|
|
* Returns true if creation is successful, otherwise returns false.
|
|
|
|
* The example of failure reason is that addr is not numbers-and-dots
|
|
|
|
* notation.
|
|
|
|
*/
|
2008-03-07 12:05:50 +00:00
|
|
|
static bool createcompact(unsigned char* compact, const std::string& addr, uint16_t port);
|
2008-02-01 Tatsuhiro Tsujikawa <tujikawa at rednoah dot com>
Added DHT functionality, compatible with mainline.
DHT is disabled by default. To enable it, give --enable-dht to
aria2c.
You may need to specify entry point to DHT network using
--dht-entry-point. DHT uses UDP port to listen incoming message.
Use --dht-listen-port to specify port number. Make sure that
your
firewall configuration can pass through UDP traffic to the port.
The routing table is saved in $HOME/.aria2/dht.dat.
* src/DHT*
* src/BNode.{h, cc}
* src/PeerInteractionCommand.cc: enable DHT functionality for a
particular torrent.
* src/Data.cc: Rewritten ctor.
* src/OptionHandlerFactory.cc: Added --enable-dht,
--dht-listen-port,
--dht-entry-point.
* src/DefaultBtInteractive.cc: Send port message if dht is
enabled.
* src/RequestGroup.cc: Initialize DHT functionality. When
download
ends, remove BtContext from DHTPeerAnnounceStorage.
* src/BtPortMessage.{h, cc}: Rewritten.
* src/message.h
* src/OptionHandlerImpl.cc
* src/option_processing.cc: Added --enable-dht,
--dht-listen-port,
--dht-entry-point.
* src/Dictionary.{h, cc} (remove): New function.
* src/prefs.h
* src/DefaultBtMessageFactory.h
* src/BtHandshakeMessage.cc
* src/ActivePeerConnectionCommand.cc
* src/SocketCore.{h, cc}: Added datagram socket support.
* src/DefaultBtMessageFactory.cc
* src/BtSetup.cc: Add BtContext to DHTPeerAnnounceStorage here.
Create DHT commands.
* src/BtMessageFactory.h
* src/PeerMessageUtil.{h, cc}
2008-02-01 17:36:33 +00:00
|
|
|
|
2008-03-07 12:05:50 +00:00
|
|
|
static std::pair<std::string, uint16_t> unpackcompact(const unsigned char* compact);
|
2006-03-21 14:12:51 +00:00
|
|
|
};
|
|
|
|
|
2008-02-08 15:53:45 +00:00
|
|
|
} // namespace aria2
|
|
|
|
|
2006-03-21 14:12:51 +00:00
|
|
|
#endif // _D_PEER_MESSAGE_UTIL_H_
|