2014-09-26 05:08:52 +00:00
|
|
|
/*
|
2015-02-17 21:11:34 +00:00
|
|
|
* ZeroTier One - Network Virtualization Everywhere
|
2018-01-08 22:33:28 +00:00
|
|
|
* Copyright (C) 2011-2018 ZeroTier, Inc. https://www.zerotier.com/
|
2014-09-26 05:08:52 +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/>.
|
2017-04-28 03:47:25 +00:00
|
|
|
*
|
|
|
|
* --
|
|
|
|
*
|
|
|
|
* You can be released from the requirements of the license by purchasing
|
|
|
|
* a commercial license. Buying such a license is mandatory as soon as you
|
|
|
|
* develop commercial closed-source software that incorporates or links
|
|
|
|
* directly against ZeroTier software without disclosing the source code
|
|
|
|
* of your own application.
|
2014-09-26 05:08:52 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include "Constants.hpp"
|
2014-10-09 19:42:25 +00:00
|
|
|
#include "RuntimeEnvironment.hpp"
|
2014-09-26 05:08:52 +00:00
|
|
|
#include "OutboundMulticast.hpp"
|
|
|
|
#include "Switch.hpp"
|
2014-10-09 19:42:25 +00:00
|
|
|
#include "Network.hpp"
|
2015-04-08 22:42:23 +00:00
|
|
|
#include "Node.hpp"
|
2016-08-04 19:35:25 +00:00
|
|
|
#include "Peer.hpp"
|
|
|
|
#include "Topology.hpp"
|
2014-09-26 05:08:52 +00:00
|
|
|
|
|
|
|
namespace ZeroTier {
|
|
|
|
|
2014-10-01 21:05:25 +00:00
|
|
|
void OutboundMulticast::init(
|
2014-10-10 00:58:31 +00:00
|
|
|
const RuntimeEnvironment *RR,
|
2014-10-01 21:05:25 +00:00
|
|
|
uint64_t timestamp,
|
|
|
|
uint64_t nwid,
|
2016-09-27 19:22:25 +00:00
|
|
|
bool disableCompression,
|
2014-10-01 21:05:25 +00:00
|
|
|
unsigned int limit,
|
|
|
|
unsigned int gatherLimit,
|
|
|
|
const MAC &src,
|
|
|
|
const MulticastGroup &dest,
|
|
|
|
unsigned int etherType,
|
|
|
|
const void *payload,
|
|
|
|
unsigned int len)
|
2014-09-26 05:08:52 +00:00
|
|
|
{
|
2016-08-05 22:02:01 +00:00
|
|
|
uint8_t flags = 0;
|
|
|
|
|
2014-09-26 05:08:52 +00:00
|
|
|
_timestamp = timestamp;
|
|
|
|
_nwid = nwid;
|
2016-08-05 22:02:01 +00:00
|
|
|
if (src) {
|
2016-08-04 20:01:14 +00:00
|
|
|
_macSrc = src;
|
2016-08-05 22:02:01 +00:00
|
|
|
flags |= 0x04;
|
|
|
|
} else {
|
|
|
|
_macSrc.fromAddress(RR->identity.address(),nwid);
|
|
|
|
}
|
2016-08-04 20:01:14 +00:00
|
|
|
_macDest = dest.mac();
|
2014-10-01 21:05:25 +00:00
|
|
|
_limit = limit;
|
2016-08-04 20:01:14 +00:00
|
|
|
_frameLen = (len < ZT_MAX_MTU) ? len : ZT_MAX_MTU;
|
|
|
|
_etherType = etherType;
|
2014-09-30 15:38:03 +00:00
|
|
|
|
2014-10-09 19:42:25 +00:00
|
|
|
if (gatherLimit) flags |= 0x02;
|
2014-09-30 15:38:03 +00:00
|
|
|
|
2016-08-04 19:35:25 +00:00
|
|
|
_packet.setSource(RR->identity.address());
|
|
|
|
_packet.setVerb(Packet::VERB_MULTICAST_FRAME);
|
|
|
|
_packet.append((uint64_t)nwid);
|
|
|
|
_packet.append(flags);
|
|
|
|
if (gatherLimit) _packet.append((uint32_t)gatherLimit);
|
|
|
|
if (src) src.appendTo(_packet);
|
|
|
|
dest.mac().appendTo(_packet);
|
|
|
|
_packet.append((uint32_t)dest.adi());
|
|
|
|
_packet.append((uint16_t)etherType);
|
2016-08-04 20:01:14 +00:00
|
|
|
_packet.append(payload,_frameLen);
|
2016-09-27 19:22:25 +00:00
|
|
|
if (!disableCompression)
|
|
|
|
_packet.compress();
|
2016-08-04 20:01:14 +00:00
|
|
|
|
2017-12-15 19:03:20 +00:00
|
|
|
ZT_FAST_MEMCPY(_frameData,payload,_frameLen);
|
2014-09-26 05:08:52 +00:00
|
|
|
}
|
|
|
|
|
2017-03-28 00:03:17 +00:00
|
|
|
void OutboundMulticast::sendOnly(const RuntimeEnvironment *RR,void *tPtr,const Address &toAddr)
|
2014-09-26 05:08:52 +00:00
|
|
|
{
|
2016-08-04 20:01:14 +00:00
|
|
|
const SharedPtr<Network> nw(RR->node->network(_nwid));
|
2017-02-28 01:51:58 +00:00
|
|
|
const Address toAddr2(toAddr);
|
2018-07-10 23:50:12 +00:00
|
|
|
uint8_t QoSBucket = 255; // Dummy value
|
|
|
|
if ((nw)&&(nw->filterOutgoingPacket(tPtr,true,RR->identity.address(),toAddr2,_macSrc,_macDest,_frameData,_frameLen,_etherType,0,QoSBucket))) {
|
2016-08-04 20:01:14 +00:00
|
|
|
_packet.newInitializationVector();
|
2016-08-31 23:50:22 +00:00
|
|
|
_packet.setDestination(toAddr2);
|
2016-09-09 15:43:58 +00:00
|
|
|
RR->node->expectReplyTo(_packet.packetId());
|
2017-03-18 00:15:23 +00:00
|
|
|
|
|
|
|
Packet tmp(_packet); // make a copy of packet so as not to garble the original -- GitHub issue #461
|
2017-03-28 00:03:17 +00:00
|
|
|
RR->sw->send(tPtr,tmp,true);
|
2014-10-09 19:42:25 +00:00
|
|
|
}
|
2014-09-26 05:08:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace ZeroTier
|