forked from halfgaar/FlashMQ
-
Notifications
You must be signed in to change notification settings - Fork 0
/
bridgeconfig.cpp
204 lines (161 loc) · 6.26 KB
/
bridgeconfig.cpp
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
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
#include "bridgeconfig.h"
#include <sstream>
#include <openssl/ssl.h>
#include <openssl/err.h>
#include <cassert>
#include "utils.h"
#include "exceptions.h"
bool BridgeTopicPath::isValidQos() const
{
return qos < 3;
}
bool BridgeTopicPath::operator==(const BridgeTopicPath &other) const
{
return this->topic == other.topic && this->qos == other.qos;
}
BridgeState::BridgeState(const BridgeConfig &config) :
c(config)
{
}
FMQSockaddr_in6 BridgeState::popDnsResult()
{
if (dnsResults.empty())
throw std::runtime_error("Trying to get DNS results when there are none");
FMQSockaddr_in6 addr = dnsResults.front();
dnsResults.pop_front();
return addr;
}
void BridgeState::initSSL(bool reloadCertificates)
{
if (this->c.tlsMode == BridgeTLSMode::None)
return;
if (!sslctx)
{
sslctx = std::make_unique<SslCtxManager>(TLS_client_method());
SSL_CTX_set_options(sslctx->get(), SSL_OP_NO_SSLv3); // TODO: config option
SSL_CTX_set_options(sslctx->get(), SSL_OP_NO_TLSv1); // TODO: config option
SSL_CTX_set_mode(sslctx->get(), SSL_MODE_ACCEPT_MOVING_WRITE_BUFFER);
if (SSL_CTX_set_default_verify_paths(sslctx->get()) != 1)
{
ERR_print_errors_cb(logSslError, NULL);
throw std::runtime_error("Setting default SSL paths failed.");
}
}
if (!this->sslInitialized || reloadCertificates)
{
const char *ca_file = c.caFile.empty() ? nullptr : c.caFile.c_str();
const char *ca_dir = c.caDir.empty() ? nullptr : c.caDir.c_str();
if (ca_file || ca_dir)
{
if (SSL_CTX_load_verify_locations(sslctx->get(), ca_file, ca_dir) != 1)
{
ERR_print_errors_cb(logSslError, NULL);
throw std::runtime_error("Loading ca_dir/ca_file failed. This was after test loading the certificate, so is very unexpected.");
}
}
}
this->sslInitialized = true;
}
bool BridgeState::timeForNewReconnectAttempt()
{
int next = 1;
if (reconnectCounter > 0)
next = baseReconnectInterval;
if (reconnectCounter > 10)
next = baseReconnectInterval + 300;
if (next > 1 && intervalLogged != next)
{
intervalLogged = next;
Logger *logger = Logger::getInstance();
logger->log(LOG_NOTICE) << "Bridge '" << c.clientidPrefix << "' connection failure count: " << reconnectCounter
<< ". Increasing reconnect interval to " << next << " seconds.";
}
return lastReconnectAttempt + std::chrono::seconds(next) < std::chrono::steady_clock::now();
}
void BridgeState::registerReconnect()
{
lastReconnectAttempt = std::chrono::steady_clock::now();
reconnectCounter++;
}
void BridgeState::resetReconnectCounter()
{
lastReconnectAttempt = std::chrono::time_point<std::chrono::steady_clock>();
reconnectCounter = 0;
intervalLogged = 0;
}
/**
* @brief BridgeConfig::setClientId is for setting the client ID on start to the one from a saved state. That's why it only works when the prefix matches.
* @param prefix
* @param id
*/
void BridgeConfig::setClientId(const std::string &prefix, const std::string &id)
{
// This is protection against calling this method too early.
assert(!clientid.empty());
// Should never happen, but just in case; an empty client id can get confusing.
if (id.empty())
return;
if (prefix != this->clientidPrefix)
return;
this->clientid = id;
}
void BridgeConfig::setClientId()
{
if (!clientid.empty())
return;
if (clientidPrefix.length() > 10)
throw std::runtime_error("clientidPrefix can't be longer than 10");
std::ostringstream oss;
oss << clientidPrefix << "_" << getSecureRandomString(10);
clientid = oss.str();
}
const std::string &BridgeConfig::getClientid() const
{
return clientid;
}
void BridgeConfig::isValid()
{
if (tlsMode > BridgeTLSMode::None)
{
if (port == 0)
{
port = 8883;
}
testSslVerifyLocations(caFile, caDir, "Loading bridge ca_file/ca_dir failed.");
}
else
{
if (port == 0)
{
port = 1883;
}
}
if (address.empty())
throw ConfigFileException("No address specified in bridge");
if (publishes.empty() && subscribes.empty())
throw ConfigFileException("No subscribe or publish paths defined in bridge.");
if (!caDir.empty() && !caFile.empty())
throw ConfigFileException("Specify only one 'ca_file' or 'ca_dir'");
if (clientidPrefix.length() > 10)
throw ConfigFileException("clientidPrefix can't be longer than 10");
if (protocolVersion <= ProtocolVersion::Mqtt311 && remote_password.has_value() && !remote_username.has_value())
throw ConfigFileException("MQTT 3.1.1 and lower require a username when you set a password.");
setClientId();
}
bool BridgeConfig::operator ==(const BridgeConfig &other) const
{
return this->address == other.address && this->port == other.port && this->inet_protocol == other.inet_protocol && this->tlsMode == other.tlsMode
&& this->caFile == other.caFile && this->caDir == other.caDir && this->protocolVersion == other.protocolVersion
&& this->bridgeProtocolBit == other.bridgeProtocolBit && this->keepalive == other.keepalive && this->clientidPrefix == other.clientidPrefix
&& this->publishes == other.publishes && this->subscribes == other.subscribes && this->local_username == other.local_username
&& this->remote_username == other.remote_username && this->remote_password == other.remote_password && this->remoteCleanStart == other.remoteCleanStart
&& this->localCleanStart == other.localCleanStart && this->remoteSessionExpiryInterval == other.remoteSessionExpiryInterval
&& this->localSessionExpiryInterval == other.localSessionExpiryInterval && this->remoteRetainAvailable == other.remoteRetainAvailable
&& this->useSavedClientId == other.useSavedClientId && this->maxOutgoingTopicAliases == other.maxOutgoingTopicAliases
&& this->maxIncomingTopicAliases == other.maxIncomingTopicAliases && this->tcpNoDelay == other.tcpNoDelay;
}
bool BridgeConfig::operator !=(const BridgeConfig &other) const
{
bool r = *this == other;
return !r;
}