2013-07-11 20:19:06 +00:00
|
|
|
/*
|
|
|
|
* ZeroTier One - Global Peer to Peer Ethernet
|
2014-02-16 20:40:22 +00:00
|
|
|
* Copyright (C) 2011-2014 ZeroTier Networks LLC
|
2013-07-11 20:19:06 +00:00
|
|
|
*
|
|
|
|
* 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 3 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, see <http://www.gnu.org/licenses/>.
|
|
|
|
*
|
|
|
|
* --
|
|
|
|
*
|
|
|
|
* ZeroTier may be used and distributed under the terms of the GPLv3, which
|
|
|
|
* are available at: http://www.gnu.org/licenses/gpl-3.0.html
|
|
|
|
*
|
|
|
|
* If you would like to embed ZeroTier into a commercial application or
|
|
|
|
* redistribute it in a modified binary form, please contact ZeroTier Networks
|
|
|
|
* LLC. Start here: http://www.zerotier.com/
|
|
|
|
*/
|
|
|
|
|
2013-12-07 00:49:20 +00:00
|
|
|
#ifndef ZT_PACKETDECODER_HPP
|
|
|
|
#define ZT_PACKETDECODER_HPP
|
2013-07-11 20:19:06 +00:00
|
|
|
|
|
|
|
#include <stdexcept>
|
|
|
|
|
|
|
|
#include "Packet.hpp"
|
2014-03-18 21:33:57 +00:00
|
|
|
#include "SocketManager.hpp"
|
2013-07-11 20:19:06 +00:00
|
|
|
#include "InetAddress.hpp"
|
|
|
|
#include "Utils.hpp"
|
|
|
|
#include "SharedPtr.hpp"
|
|
|
|
#include "AtomicCounter.hpp"
|
2013-07-12 02:06:25 +00:00
|
|
|
#include "Peer.hpp"
|
2014-03-19 20:56:48 +00:00
|
|
|
#include "Socket.hpp"
|
2013-07-11 20:19:06 +00:00
|
|
|
|
2013-09-25 14:55:27 +00:00
|
|
|
/*
|
|
|
|
* The big picture:
|
|
|
|
*
|
|
|
|
* tryDecode gets called for a given fully-assembled packet until it returns
|
|
|
|
* true or the packet's time to live has been exceeded, in which case it is
|
|
|
|
* discarded as failed decode. Any exception thrown by tryDecode also causes
|
|
|
|
* the packet to be discarded.
|
|
|
|
*
|
|
|
|
* Thus a return of false from tryDecode() indicates that it should be called
|
|
|
|
* again. Logic is very simple as to when, and it's in doAnythingWaitingForPeer
|
|
|
|
* in Switch. This might be expanded to be more fine grained in the future.
|
|
|
|
*
|
|
|
|
* A return value of true indicates that the packet is done. tryDecode must
|
|
|
|
* never be called again after that.
|
|
|
|
*/
|
|
|
|
|
2013-07-11 20:19:06 +00:00
|
|
|
namespace ZeroTier {
|
|
|
|
|
|
|
|
class RuntimeEnvironment;
|
2014-06-11 04:41:34 +00:00
|
|
|
class Network;
|
2013-07-11 20:19:06 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Subclass of packet that handles the decoding of it
|
|
|
|
*/
|
|
|
|
class PacketDecoder : public Packet
|
|
|
|
{
|
|
|
|
friend class SharedPtr<PacketDecoder>;
|
|
|
|
|
|
|
|
public:
|
2013-07-12 14:13:24 +00:00
|
|
|
/**
|
|
|
|
* Create a new packet-in-decode
|
|
|
|
*
|
|
|
|
* @param b Source buffer with raw packet data
|
2014-03-19 20:56:48 +00:00
|
|
|
* @param fromSock Socket on which packet was received
|
2013-07-12 14:13:24 +00:00
|
|
|
* @param remoteAddress Address from which packet came
|
|
|
|
* @throws std::out_of_range Range error processing packet
|
|
|
|
*/
|
2013-07-11 20:19:06 +00:00
|
|
|
template<unsigned int C2>
|
2014-03-19 20:56:48 +00:00
|
|
|
PacketDecoder(const Buffer<C2> &b,const SharedPtr<Socket> &fromSock,const InetAddress &remoteAddress)
|
2013-07-11 20:19:06 +00:00
|
|
|
throw(std::out_of_range) :
|
2013-07-11 21:52:04 +00:00
|
|
|
Packet(b),
|
2013-07-11 20:19:06 +00:00
|
|
|
_receiveTime(Utils::now()),
|
2014-03-19 20:56:48 +00:00
|
|
|
_fromSock(fromSock),
|
2013-07-11 20:19:06 +00:00
|
|
|
_remoteAddress(remoteAddress),
|
2013-08-05 16:16:25 +00:00
|
|
|
_step(DECODE_WAITING_FOR_SENDER_LOOKUP),
|
2013-07-11 20:19:06 +00:00
|
|
|
__refCount()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Attempt to decode this packet
|
|
|
|
*
|
2013-07-12 14:13:24 +00:00
|
|
|
* Note that this returns 'true' if processing is complete. This says nothing
|
|
|
|
* about whether the packet was valid. A rejection is 'complete.'
|
|
|
|
*
|
2013-09-25 14:55:27 +00:00
|
|
|
* Once true is returned, this must not be called again. The packet's state
|
|
|
|
* may no longer be valid.
|
2013-07-12 14:13:24 +00:00
|
|
|
*
|
2013-07-11 20:19:06 +00:00
|
|
|
* @param _r Runtime environment
|
2013-07-12 14:13:24 +00:00
|
|
|
* @return True if decoding and processing is complete, false if caller should try again
|
|
|
|
* @throws std::out_of_range Range error processing packet (should be discarded)
|
|
|
|
* @throws std::runtime_error Other error processing packet (should be discarded)
|
2013-07-11 20:19:06 +00:00
|
|
|
*/
|
2013-10-18 18:16:53 +00:00
|
|
|
bool tryDecode(const RuntimeEnvironment *_r);
|
2013-07-11 20:19:06 +00:00
|
|
|
|
|
|
|
/**
|
2013-09-25 14:55:27 +00:00
|
|
|
* @return Time of packet receipt / start of decode
|
2013-07-11 20:19:06 +00:00
|
|
|
*/
|
|
|
|
inline uint64_t receiveTime() const throw() { return _receiveTime; }
|
|
|
|
|
|
|
|
private:
|
2013-07-12 14:13:24 +00:00
|
|
|
// These are called internally to handle packet contents once it has
|
|
|
|
// been authenticated, decrypted, decompressed, and classified.
|
2013-07-12 02:06:25 +00:00
|
|
|
bool _doERROR(const RuntimeEnvironment *_r,const SharedPtr<Peer> &peer);
|
2013-07-11 22:15:51 +00:00
|
|
|
bool _doHELLO(const RuntimeEnvironment *_r);
|
2013-07-12 02:06:25 +00:00
|
|
|
bool _doOK(const RuntimeEnvironment *_r,const SharedPtr<Peer> &peer);
|
|
|
|
bool _doWHOIS(const RuntimeEnvironment *_r,const SharedPtr<Peer> &peer);
|
|
|
|
bool _doRENDEZVOUS(const RuntimeEnvironment *_r,const SharedPtr<Peer> &peer);
|
|
|
|
bool _doFRAME(const RuntimeEnvironment *_r,const SharedPtr<Peer> &peer);
|
2014-06-10 22:25:15 +00:00
|
|
|
bool _doEXT_FRAME(const RuntimeEnvironment *_r,const SharedPtr<Peer> &peer);
|
2014-09-22 20:18:24 +00:00
|
|
|
bool _doP5_MULTICAST_FRAME(const RuntimeEnvironment *_r,const SharedPtr<Peer> &peer);
|
2013-09-27 20:03:13 +00:00
|
|
|
bool _doMULTICAST_LIKE(const RuntimeEnvironment *_r,const SharedPtr<Peer> &peer);
|
2013-07-29 20:18:29 +00:00
|
|
|
bool _doNETWORK_MEMBERSHIP_CERTIFICATE(const RuntimeEnvironment *_r,const SharedPtr<Peer> &peer);
|
2013-07-29 17:56:20 +00:00
|
|
|
bool _doNETWORK_CONFIG_REQUEST(const RuntimeEnvironment *_r,const SharedPtr<Peer> &peer);
|
|
|
|
bool _doNETWORK_CONFIG_REFRESH(const RuntimeEnvironment *_r,const SharedPtr<Peer> &peer);
|
2013-07-11 21:52:04 +00:00
|
|
|
|
2014-06-18 16:00:53 +00:00
|
|
|
void _sendErrorNeedCertificate(const RuntimeEnvironment *_r,const SharedPtr<Peer> &peer,uint64_t nwid);
|
|
|
|
|
2013-07-11 20:19:06 +00:00
|
|
|
uint64_t _receiveTime;
|
2014-03-19 20:56:48 +00:00
|
|
|
SharedPtr<Socket> _fromSock;
|
2013-07-11 20:19:06 +00:00
|
|
|
InetAddress _remoteAddress;
|
|
|
|
|
|
|
|
enum {
|
2013-08-05 16:16:25 +00:00
|
|
|
DECODE_WAITING_FOR_SENDER_LOOKUP, // on initial receipt, we need peer's identity
|
|
|
|
DECODE_WAITING_FOR_MULTICAST_FRAME_ORIGINAL_SENDER_LOOKUP,
|
2013-10-16 21:47:26 +00:00
|
|
|
DECODE_WAITING_FOR_NETWORK_MEMBERSHIP_CERTIFICATE_SIGNER_LOOKUP
|
2013-07-11 20:19:06 +00:00
|
|
|
} _step;
|
|
|
|
|
|
|
|
AtomicCounter __refCount;
|
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace ZeroTier
|
|
|
|
|
|
|
|
#endif
|