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
|
|
|
|
2015-12-06 02:27:01 +01:00
|
|
|
#include "libtorrent/socket.hpp"
|
2016-09-22 08:04:05 +02:00
|
|
|
#include "libtorrent/span.hpp"
|
2007-05-23 10:45:12 +02:00
|
|
|
|
|
|
|
namespace libtorrent {
|
2015-05-17 23:00:47 +02:00
|
|
|
|
|
|
|
struct bdecode_node;
|
|
|
|
|
2007-05-23 10:45:12 +02:00
|
|
|
namespace dht {
|
|
|
|
|
2009-09-20 02:23:36 +02:00
|
|
|
struct msg
|
|
|
|
{
|
2015-03-12 06:20:12 +01:00
|
|
|
msg(bdecode_node const& m, udp::endpoint const& ep): message(m), addr(ep) {}
|
2016-09-16 14:21:07 +02:00
|
|
|
|
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
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2016-09-22 08:04:05 +02:00
|
|
|
// TODO: move this to its own .hpp/.cpp pair?
|
|
|
|
TORRENT_EXTRA_EXPORT bool verify_message_impl(bdecode_node const& msg, span<key_desc_t const> desc
|
|
|
|
, span<bdecode_node> ret, span<char> error);
|
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]
|
2016-09-22 08:04:05 +02:00
|
|
|
, bdecode_node (&ret)[Size], span<char> error)
|
2015-12-30 05:27:46 +01:00
|
|
|
{
|
2016-09-22 08:04:05 +02:00
|
|
|
return verify_message_impl(msg, desc, ret, error);
|
2015-12-30 05:27:46 +01:00
|
|
|
}
|
2015-12-06 02:27:01 +01:00
|
|
|
|
2007-05-23 10:45:12 +02:00
|
|
|
} }
|
|
|
|
|
|
|
|
#endif
|