2013-07-11 20:19:06 +00:00
|
|
|
/*
|
2020-05-12 08:35:48 +00:00
|
|
|
* Copyright (c)2013-2020 ZeroTier, Inc.
|
2013-07-11 20:19:06 +00:00
|
|
|
*
|
2019-08-23 16:23:39 +00:00
|
|
|
* Use of this software is governed by the Business Source License included
|
|
|
|
* in the LICENSE.TXT file in the project's root directory.
|
2013-07-11 20:19:06 +00:00
|
|
|
*
|
2020-08-20 19:51:39 +00:00
|
|
|
* Change Date: 2025-01-01
|
2013-07-11 20:19:06 +00:00
|
|
|
*
|
2019-08-23 16:23:39 +00:00
|
|
|
* On the date above, in accordance with the Business Source License, use
|
|
|
|
* of this software will be governed by version 2.0 of the Apache License.
|
2013-07-11 20:19:06 +00:00
|
|
|
*/
|
2019-08-23 16:23:39 +00:00
|
|
|
/****/
|
2013-07-11 20:19:06 +00:00
|
|
|
|
2014-09-24 16:04:09 +00:00
|
|
|
#ifndef ZT_INCOMINGPACKET_HPP
|
|
|
|
#define ZT_INCOMINGPACKET_HPP
|
2013-07-11 20:19:06 +00:00
|
|
|
|
|
|
|
#include <stdexcept>
|
|
|
|
|
|
|
|
#include "Packet.hpp"
|
2016-09-01 22:43:07 +00:00
|
|
|
#include "Path.hpp"
|
2013-07-11 20:19:06 +00:00
|
|
|
#include "Utils.hpp"
|
2014-10-02 20:50:37 +00:00
|
|
|
#include "MulticastGroup.hpp"
|
2013-07-12 02:06:25 +00:00
|
|
|
#include "Peer.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
|
|
|
|
*/
|
2014-09-24 16:04:09 +00:00
|
|
|
class IncomingPacket : public Packet
|
2013-07-11 20:19:06 +00:00
|
|
|
{
|
|
|
|
public:
|
2016-03-18 21:16:07 +00:00
|
|
|
IncomingPacket() :
|
|
|
|
Packet(),
|
2016-09-01 22:43:07 +00:00
|
|
|
_receiveTime(0)
|
2016-03-18 21:16:07 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2013-07-12 14:13:24 +00:00
|
|
|
/**
|
|
|
|
* Create a new packet-in-decode
|
|
|
|
*
|
2015-04-08 02:31:11 +00:00
|
|
|
* @param data Packet data
|
|
|
|
* @param len Packet length
|
2016-09-01 22:43:07 +00:00
|
|
|
* @param path Path over which packet arrived
|
2015-04-08 22:26:45 +00:00
|
|
|
* @param now Current time
|
2013-07-12 14:13:24 +00:00
|
|
|
* @throws std::out_of_range Range error processing packet
|
|
|
|
*/
|
2017-10-02 22:52:57 +00:00
|
|
|
IncomingPacket(const void *data,unsigned int len,const SharedPtr<Path> &path,int64_t now) :
|
2016-06-28 00:09:04 +00:00
|
|
|
Packet(data,len),
|
|
|
|
_receiveTime(now),
|
2016-09-01 22:43:07 +00:00
|
|
|
_path(path)
|
2016-03-18 21:16:07 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Init packet-in-decode in place
|
|
|
|
*
|
|
|
|
* @param data Packet data
|
|
|
|
* @param len Packet length
|
2016-09-01 22:43:07 +00:00
|
|
|
* @param path Path over which packet arrived
|
2016-03-18 21:16:07 +00:00
|
|
|
* @param now Current time
|
|
|
|
* @throws std::out_of_range Range error processing packet
|
|
|
|
*/
|
2017-10-02 22:52:57 +00:00
|
|
|
inline void init(const void *data,unsigned int len,const SharedPtr<Path> &path,int64_t now)
|
2013-07-11 20:19:06 +00:00
|
|
|
{
|
2016-03-18 21:16:07 +00:00
|
|
|
copyFrom(data,len);
|
|
|
|
_receiveTime = now;
|
2016-09-01 22:43:07 +00:00
|
|
|
_path = path;
|
2013-07-11 20:19:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 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
|
2016-08-04 18:40:38 +00:00
|
|
|
* may no longer be valid.
|
2013-07-12 14:13:24 +00:00
|
|
|
*
|
2014-09-25 22:08:29 +00:00
|
|
|
* @param RR Runtime environment
|
2017-03-28 00:03:17 +00:00
|
|
|
* @param tPtr Thread pointer to be handed through to any callbacks called as a result of this call
|
2013-07-12 14:13:24 +00:00
|
|
|
* @return True if decoding and processing is complete, false if caller should try again
|
2013-07-11 20:19:06 +00:00
|
|
|
*/
|
2020-05-12 08:35:48 +00:00
|
|
|
bool tryDecode(const RuntimeEnvironment *RR,void *tPtr,int32_t flowId);
|
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
|
|
|
*/
|
2017-07-17 21:21:09 +00:00
|
|
|
inline uint64_t receiveTime() const { return _receiveTime; }
|
2013-07-11 20:19:06 +00:00
|
|
|
|
|
|
|
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.
|
2017-03-28 00:03:17 +00:00
|
|
|
bool _doERROR(const RuntimeEnvironment *RR,void *tPtr,const SharedPtr<Peer> &peer);
|
|
|
|
bool _doHELLO(const RuntimeEnvironment *RR,void *tPtr,const bool alreadyAuthenticated);
|
2018-05-31 00:45:29 +00:00
|
|
|
bool _doQOS_MEASUREMENT(const RuntimeEnvironment *RR,void *tPtr,const SharedPtr<Peer> &peer);
|
2017-03-28 00:03:17 +00:00
|
|
|
bool _doOK(const RuntimeEnvironment *RR,void *tPtr,const SharedPtr<Peer> &peer);
|
|
|
|
bool _doWHOIS(const RuntimeEnvironment *RR,void *tPtr,const SharedPtr<Peer> &peer);
|
|
|
|
bool _doRENDEZVOUS(const RuntimeEnvironment *RR,void *tPtr,const SharedPtr<Peer> &peer);
|
2020-05-12 08:35:48 +00:00
|
|
|
bool _doFRAME(const RuntimeEnvironment *RR,void *tPtr,const SharedPtr<Peer> &peer,int32_t flowId);
|
|
|
|
bool _doEXT_FRAME(const RuntimeEnvironment *RR,void *tPtr,const SharedPtr<Peer> &peer,int32_t flowId);
|
2017-03-28 00:03:17 +00:00
|
|
|
bool _doECHO(const RuntimeEnvironment *RR,void *tPtr,const SharedPtr<Peer> &peer);
|
|
|
|
bool _doMULTICAST_LIKE(const RuntimeEnvironment *RR,void *tPtr,const SharedPtr<Peer> &peer);
|
|
|
|
bool _doNETWORK_CREDENTIALS(const RuntimeEnvironment *RR,void *tPtr,const SharedPtr<Peer> &peer);
|
|
|
|
bool _doNETWORK_CONFIG_REQUEST(const RuntimeEnvironment *RR,void *tPtr,const SharedPtr<Peer> &peer);
|
|
|
|
bool _doNETWORK_CONFIG(const RuntimeEnvironment *RR,void *tPtr,const SharedPtr<Peer> &peer);
|
|
|
|
bool _doMULTICAST_GATHER(const RuntimeEnvironment *RR,void *tPtr,const SharedPtr<Peer> &peer);
|
|
|
|
bool _doMULTICAST_FRAME(const RuntimeEnvironment *RR,void *tPtr,const SharedPtr<Peer> &peer);
|
|
|
|
bool _doPUSH_DIRECT_PATHS(const RuntimeEnvironment *RR,void *tPtr,const SharedPtr<Peer> &peer);
|
|
|
|
bool _doUSER_MESSAGE(const RuntimeEnvironment *RR,void *tPtr,const SharedPtr<Peer> &peer);
|
2017-07-14 20:03:16 +00:00
|
|
|
bool _doREMOTE_TRACE(const RuntimeEnvironment *RR,void *tPtr,const SharedPtr<Peer> &peer);
|
2020-05-12 08:35:48 +00:00
|
|
|
bool _doPATH_NEGOTIATION_REQUEST(const RuntimeEnvironment *RR,void *tPtr,const SharedPtr<Peer> &peer);
|
2017-03-28 00:03:17 +00:00
|
|
|
|
|
|
|
void _sendErrorNeedCredentials(const RuntimeEnvironment *RR,void *tPtr,const SharedPtr<Peer> &peer,const uint64_t nwid);
|
2016-09-27 20:49:43 +00:00
|
|
|
|
2013-07-11 20:19:06 +00:00
|
|
|
uint64_t _receiveTime;
|
2016-09-01 22:43:07 +00:00
|
|
|
SharedPtr<Path> _path;
|
2013-07-11 20:19:06 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace ZeroTier
|
|
|
|
|
|
|
|
#endif
|