summaryrefslogtreecommitdiff
path: root/osdep/TestEthernetTap.hpp
blob: 6ccf92f39afc14cee06bfd57ea1d3f6b831e3bbb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
/*
 * ZeroTier One - Network Virtualization Everywhere
 * Copyright (C) 2011-2018  ZeroTier, Inc.  https://www.zerotier.com/
 *
 * 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/>.
 *
 * --
 *
 * 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.
 */

#ifndef ZT_TESTETHERNETTAP_HPP
#define ZT_TESTETHERNETTAP_HPP

#include <stdio.h>
#include <stdlib.h>
#include <stdint.h>
#include <sys/types.h>
#include <sys/socket.h>

#include <string>
#include <vector>
#include <stdexcept>
#include <set>

#include "../node/Constants.hpp"
#include "../node/InetAddress.hpp"
#include "../node/MulticastGroup.hpp"
#include "../node/Mutex.hpp"
#include "../node/Utils.hpp"
#include "../osdep/OSUtils.hpp"

namespace ZeroTier {

/**
 * Dummy test Ethernet tap that does not actually open a device on the system
 */
class TestEthernetTap
{
public:
	TestEthernetTap(
		const char *homePath,
		const MAC &mac,
		unsigned int mtu,
		unsigned int metric,
		uint64_t nwid,
		const char *friendlyName,
		void (*handler)(void *,void *,uint64_t,const MAC &,const MAC &,unsigned int,unsigned int,const void *,unsigned int),
		void *arg) :
		_nwid(nwid),
		_dev("zt_test_"),
		_enabled(true)
	{
		char tmp[32];
		OSUtils::ztsnprintf(tmp,sizeof(tmp),"%.16llx",(unsigned long long)_nwid);
		_dev.append(tmp);
#ifdef ZT_TEST_TAP_REPORT_TO
		_reportTo.fromString(ZT_TEST_TAP_REPORT_TO);
		if (_reportTo.ss_family == AF_INET)
			_reportsock = socket(AF_INET,SOCK_DGRAM,0);
		else if (_reportTo.ss_family == AF_INET6)
			_reportsock = socket(AF_INET6,SOCK_DGRAM,0);
		else _reportsock = -1;
#endif
	}

	~TestEthernetTap()
	{
#ifdef ZT_TEST_TAP_REPORT_TO
		if (_reportsock >= 0)
			close(_reportsock);
#endif
	}

	inline void setEnabled(bool en) { _enabled = en; }
	inline bool enabled() const { return _enabled; }

	inline bool addIp(const InetAddress &ip)
	{
		Mutex::Lock _l(_lock);
		_ips.insert(ip);
		return true;
	}

	inline bool removeIp(const InetAddress &ip)
	{
		Mutex::Lock _l(_lock);
		_ips.erase(ip);
		return true;
	}

	inline std::vector<InetAddress> ips() const
	{
		Mutex::Lock _l(_lock);
		return std::vector<InetAddress>(_ips.begin(),_ips.end());
	}

	inline void put(const MAC &from,const MAC &to,unsigned int etherType,const void *data,unsigned int len)
	{
#ifdef ZT_TEST_TAP_REPORT_TO
		char tmp[10000];
		if ((_reportsock >= 0)&&(len < (sizeof(tmp) - 22))) {
			const uint64_t nwid2 = Utils::hton(_nwid);
			memcpy(tmp,&nwid2,8);
			from.copyTo(tmp + 8,6);
			to.copyTo(tmp + 14,6);
			const uint16_t etherType2 = Utils::hton((uint16_t)etherType);
			memcpy(tmp + 20,&etherType2,2);
			memcpy(tmp + 22,data,len);
			sendto(_reportsock,tmp,len + 22,0,reinterpret_cast<const struct sockaddr *>(&_reportTo),(_reportTo.ss_family == AF_INET) ? sizeof(struct sockaddr_in) : sizeof(struct sockaddr_in6));
		}
#endif
	}

	inline std::string deviceName() const
	{
		return _dev;
	}

	inline void setFriendlyName(const char *friendlyName)
	{
	}

	inline void scanMulticastGroups(std::vector<MulticastGroup> &added,std::vector<MulticastGroup> &removed)
	{
	}

	inline void setMtu(unsigned int mtu)
	{
	}

private:
	uint64_t _nwid;
	std::string _dev;
	std::set<InetAddress> _ips;
	InetAddress _reportTo;
#ifdef ZT_TEST_TAP_REPORT_TO
	int _reportsock;
#endif
	bool _enabled;
	Mutex _lock;
};

} // namespace ZeroTier

#endif