ZeroTierOne/node/OutboundMulticast.hpp

159 lines
4.1 KiB
C++
Raw Normal View History

2014-09-22 20:18:24 +00:00
/*
2019-08-23 16:23:39 +00:00
* Copyright (c)2019 ZeroTier, Inc.
2014-09-22 20:18:24 +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.
2014-09-22 20:18:24 +00:00
*
2020-08-20 19:51:39 +00:00
* Change Date: 2025-01-01
2014-09-22 20:18:24 +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.
2014-09-22 20:18:24 +00:00
*/
2019-08-23 16:23:39 +00:00
/****/
2014-09-22 20:18:24 +00:00
#ifndef ZT_OUTBOUNDMULTICAST_HPP
#define ZT_OUTBOUNDMULTICAST_HPP
#include <stdint.h>
#include <vector>
#include <algorithm>
#include "Constants.hpp"
#include "MAC.hpp"
#include "MulticastGroup.hpp"
#include "Address.hpp"
#include "Packet.hpp"
namespace ZeroTier {
class CertificateOfMembership;
class RuntimeEnvironment;
2014-09-26 05:08:52 +00:00
2014-09-22 20:18:24 +00:00
/**
* An outbound multicast packet
*
* This object isn't guarded by a mutex; caller must synchronize access.
*/
class OutboundMulticast
{
public:
2014-09-24 20:45:58 +00:00
/**
* Create an uninitialized outbound multicast
*
* It must be initialized with init().
*/
OutboundMulticast() {}
2014-09-22 20:18:24 +00:00
/**
* Initialize outbound multicast
*
* @param RR Runtime environment
2014-09-22 20:18:24 +00:00
* @param timestamp Creation time
* @param nwid Network ID
* @param disableCompression Disable compression of frame payload
* @param limit Multicast limit for desired number of packets to send
2014-09-25 22:57:43 +00:00
* @param gatherLimit Number to lazily/implicitly gather with this frame or 0 for none
* @param src Source MAC address of frame or NULL to imply compute from sender ZT address
2014-09-22 20:18:24 +00:00
* @param dest Destination multicast group (MAC + ADI)
* @param etherType 16-bit Ethernet type ID
* @param payload Data
* @param len Length of data
* @throws std::out_of_range Data too large to fit in a MULTICAST_FRAME
*/
void init(
const RuntimeEnvironment *RR,
uint64_t timestamp,
uint64_t nwid,
bool disableCompression,
unsigned int limit,
unsigned int gatherLimit,
const MAC &src,
const MulticastGroup &dest,
unsigned int etherType,
const void *payload,
unsigned int len);
2014-09-22 20:18:24 +00:00
/**
* @return Multicast creation time
*/
2017-07-17 21:21:09 +00:00
inline uint64_t timestamp() const { return _timestamp; }
2014-09-22 20:18:24 +00:00
2014-09-22 22:03:16 +00:00
/**
* @param now Current time
* @return True if this multicast is expired (has exceeded transmit timeout)
*/
inline bool expired(int64_t now) const { return ((now - _timestamp) >= ZT_MULTICAST_TRANSMIT_TIMEOUT); }
2014-09-22 22:03:16 +00:00
2014-09-22 20:18:24 +00:00
/**
* @return True if this outbound multicast has been sent to enough peers
2014-09-22 20:18:24 +00:00
*/
2017-07-17 21:21:09 +00:00
inline bool atLimit() const { return (_alreadySentTo.size() >= _limit); }
2014-09-25 22:08:29 +00:00
/**
* Just send without checking log
*
* @param RR Runtime environment
* @param tPtr Thread pointer to be handed through to any callbacks called as a result of this call
2014-09-25 22:08:29 +00:00
* @param toAddr Destination address
*/
void sendOnly(const RuntimeEnvironment *RR,void *tPtr,const Address &toAddr);
2014-09-25 22:08:29 +00:00
/**
* Just send and log but do not check sent log
*
* @param RR Runtime environment
* @param tPtr Thread pointer to be handed through to any callbacks called as a result of this call
2014-09-25 22:08:29 +00:00
* @param toAddr Destination address
*/
inline void sendAndLog(const RuntimeEnvironment *RR,void *tPtr,const Address &toAddr)
2014-09-25 22:08:29 +00:00
{
_alreadySentTo.push_back(toAddr);
sendOnly(RR,tPtr,toAddr);
2014-09-25 22:08:29 +00:00
}
2014-09-22 20:18:24 +00:00
/**
* Log an address as having been used so we will not send there in the future
*
* @param toAddr Address to log as sent
*/
inline void logAsSent(const Address &toAddr)
{
_alreadySentTo.push_back(toAddr);
}
2014-09-22 20:18:24 +00:00
/**
* Try to send this to a given peer if it hasn't been sent to them already
*
* @param RR Runtime environment
* @param tPtr Thread pointer to be handed through to any callbacks called as a result of this call
2014-09-22 20:18:24 +00:00
* @param toAddr Destination address
* @return True if address is new and packet was sent to switch, false if duplicate
*/
inline bool sendIfNew(const RuntimeEnvironment *RR,void *tPtr,const Address &toAddr)
2014-09-22 20:18:24 +00:00
{
2014-11-26 21:14:18 +00:00
if (std::find(_alreadySentTo.begin(),_alreadySentTo.end(),toAddr) == _alreadySentTo.end()) {
sendAndLog(RR,tPtr,toAddr);
2014-11-26 21:14:18 +00:00
return true;
} else {
return false;
}
2014-09-22 20:18:24 +00:00
}
private:
uint64_t _timestamp;
uint64_t _nwid;
MAC _macSrc;
MAC _macDest;
unsigned int _limit;
unsigned int _frameLen;
unsigned int _etherType;
2019-06-17 22:50:05 +00:00
Packet _packet,_tmp;
2014-09-22 20:18:24 +00:00
std::vector<Address> _alreadySentTo;
uint8_t _frameData[ZT_MAX_MTU];
2014-09-22 20:18:24 +00:00
};
} // namespace ZeroTier
#endif