2007-05-23 10:45:12 +02:00
|
|
|
/*
|
|
|
|
|
2016-01-18 00:57:46 +01:00
|
|
|
Copyright (c) 2007-2016, Arvid Norberg
|
2007-05-23 10:45:12 +02:00
|
|
|
All rights reserved.
|
|
|
|
|
|
|
|
Redistribution and use in source and binary forms, with or without
|
|
|
|
modification, are permitted provided that the following conditions
|
|
|
|
are met:
|
|
|
|
|
|
|
|
* Redistributions of source code must retain the above copyright
|
|
|
|
notice, this list of conditions and the following disclaimer.
|
|
|
|
* Redistributions in binary form must reproduce the above copyright
|
|
|
|
notice, this list of conditions and the following disclaimer in
|
|
|
|
the documentation and/or other materials provided with the distribution.
|
|
|
|
* Neither the name of the author nor the names of its
|
|
|
|
contributors may be used to endorse or promote products derived
|
|
|
|
from this software without specific prior written permission.
|
|
|
|
|
|
|
|
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
|
|
|
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
|
|
|
|
LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
|
|
|
CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
|
|
|
SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
|
|
|
INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
|
|
|
CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
|
|
|
ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
|
|
POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
2015-12-06 02:27:01 +01:00
|
|
|
#ifndef TORRENT_KADEMLIA_MSG_HPP
|
|
|
|
#define TORRENT_KADEMLIA_MSG_HPP
|
2007-05-23 10:45:12 +02:00
|
|
|
|
|
|
|
#include <string>
|
2015-12-06 02:27:01 +01:00
|
|
|
#include "libtorrent/socket.hpp"
|
|
|
|
#include "libtorrent/kademlia/node_id.hpp"
|
2007-05-23 10:45:12 +02:00
|
|
|
|
|
|
|
namespace libtorrent {
|
2015-05-17 23:00:47 +02:00
|
|
|
|
|
|
|
struct bdecode_node;
|
2015-12-31 02:25:00 +01:00
|
|
|
class entry;
|
2015-05-17 23:00:47 +02:00
|
|
|
|
2007-05-23 10:45:12 +02:00
|
|
|
namespace dht {
|
|
|
|
|
|
|
|
typedef std::vector<char> packet_t;
|
2009-09-20 02:23:36 +02:00
|
|
|
typedef std::vector<node_entry> nodes_t;
|
|
|
|
typedef std::vector<tcp::endpoint> peers_t;
|
|
|
|
|
|
|
|
struct msg
|
|
|
|
{
|
2015-03-12 06:20:12 +01:00
|
|
|
msg(bdecode_node const& m, udp::endpoint const& ep): message(m), addr(ep) {}
|
2009-09-20 02:23:36 +02:00
|
|
|
// the message
|
2015-03-12 06:20:12 +01:00
|
|
|
bdecode_node const& message;
|
2009-09-20 02:23:36 +02:00
|
|
|
|
|
|
|
// the address of the process sending or receiving
|
|
|
|
// the message.
|
|
|
|
udp::endpoint addr;
|
2015-04-27 04:21:12 +02:00
|
|
|
private:
|
|
|
|
// explicitly disallow assignment, to silence msvc warning
|
|
|
|
msg& operator=(msg const&);
|
2009-09-20 02:23:36 +02:00
|
|
|
};
|
2007-05-23 10:45:12 +02:00
|
|
|
|
2015-12-06 02:27:01 +01:00
|
|
|
struct key_desc_t
|
|
|
|
{
|
|
|
|
char const* name;
|
|
|
|
int type;
|
|
|
|
int size;
|
|
|
|
int flags;
|
|
|
|
|
|
|
|
enum {
|
|
|
|
// this argument is optional, parsing will not
|
|
|
|
// fail if it's not present
|
|
|
|
optional = 1,
|
|
|
|
// for dictionaries, the following entries refer
|
|
|
|
// to child nodes to this node, up until and including
|
|
|
|
// the next item that has the last_child flag set.
|
|
|
|
// these flags are nestable
|
|
|
|
parse_children = 2,
|
|
|
|
// this is the last item in a child dictionary
|
|
|
|
last_child = 4,
|
|
|
|
// the size argument refers to that the size
|
|
|
|
// has to be divisible by the number, instead
|
|
|
|
// of having that exact size
|
|
|
|
size_divisible = 8
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2015-12-30 05:27:46 +01:00
|
|
|
// generate an error response message
|
|
|
|
void TORRENT_EXPORT incoming_error(entry& e, char const* msg, int error_code = 203);
|
|
|
|
|
|
|
|
// given a redundent name to avoid clashing with libtorrent::detail
|
|
|
|
namespace dht_detail {
|
|
|
|
|
2015-12-06 02:27:01 +01:00
|
|
|
bool TORRENT_EXPORT verify_message(bdecode_node const& msg, key_desc_t const desc[]
|
|
|
|
, bdecode_node ret[], int size, char* error, int error_size);
|
|
|
|
|
2015-12-30 05:27:46 +01:00
|
|
|
}
|
2015-12-06 02:27:01 +01:00
|
|
|
|
2015-12-30 05:27:46 +01:00
|
|
|
// verifies that a message has all the required
|
|
|
|
// entries and returns them in ret
|
|
|
|
template <int Size>
|
|
|
|
bool verify_message(bdecode_node const& msg, key_desc_t const (&desc)[Size]
|
|
|
|
, bdecode_node (&ret)[Size], char* error, int error_size)
|
|
|
|
{
|
|
|
|
return dht_detail::verify_message(msg, desc, ret, Size, error, error_size);
|
|
|
|
}
|
2015-12-06 02:27:01 +01:00
|
|
|
|
2007-05-23 10:45:12 +02:00
|
|
|
} }
|
|
|
|
|
|
|
|
#endif
|