configfileparser.cpp
7.31 KB
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
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
#include "configfileparser.h"
#include <fcntl.h>
#include <unistd.h>
#include <sstream>
#include "fstream"
#include "openssl/ssl.h"
#include "openssl/err.h"
#include "exceptions.h"
#include "utils.h"
#include <regex>
#include "logger.h"
mosquitto_auth_opt::mosquitto_auth_opt(const std::string &key, const std::string &value)
{
this->key = strdup(key.c_str());
this->value = strdup(value.c_str());
}
mosquitto_auth_opt::mosquitto_auth_opt(mosquitto_auth_opt &&other)
{
this->key = other.key;
this->value = other.value;
other.key = nullptr;
other.value = nullptr;
}
mosquitto_auth_opt::~mosquitto_auth_opt()
{
if (key)
delete key;
if (value)
delete value;
}
AuthOptCompatWrap::AuthOptCompatWrap(const std::unordered_map<std::string, std::string> &authOpts)
{
for(auto &pair : authOpts)
{
mosquitto_auth_opt opt(pair.first, pair.second);
optArray.push_back(std::move(opt));
}
}
void ConfigFileParser::checkFileAccess(const std::string &key, const std::string &pathToCheck) const
{
if (access(pathToCheck.c_str(), R_OK) != 0)
{
std::ostringstream oss;
oss << "Error for '" << key << "': " << pathToCheck << " is not there or not readable";
throw ConfigFileException(oss.str());
}
}
// Using a separate ssl context to test, because it's the easiest way to load certs and key atomitcally.
void ConfigFileParser::testSsl(const std::string &fullchain, const std::string &privkey, uint portNr) const
{
if (portNr == 0)
return;
if (fullchain.empty() && privkey.empty())
throw ConfigFileException("No privkey and fullchain specified.");
if (fullchain.empty())
throw ConfigFileException("No private key specified for fullchain");
if (privkey.empty())
throw ConfigFileException("No fullchain specified for private key");
SslCtxManager sslCtx;
if (SSL_CTX_use_certificate_file(sslCtx.get(), fullchain.c_str(), SSL_FILETYPE_PEM) != 1)
{
ERR_print_errors_cb(logSslError, NULL);
throw ConfigFileException("Error loading full chain " + fullchain);
}
if (SSL_CTX_use_PrivateKey_file(sslCtx.get(), privkey.c_str(), SSL_FILETYPE_PEM) != 1)
{
ERR_print_errors_cb(logSslError, NULL);
throw ConfigFileException("Error loading private key " + privkey);
}
if (SSL_CTX_check_private_key(sslCtx.get()) != 1)
{
ERR_print_errors_cb(logSslError, NULL);
throw ConfigFileException("Private key and certificate don't match.");
}
}
ConfigFileParser::ConfigFileParser(const std::string &path) :
path(path)
{
validKeys.insert("auth_plugin");
validKeys.insert("log_file");
validKeys.insert("listen_port");
validKeys.insert("ssl_listen_port");
validKeys.insert("fullchain");
validKeys.insert("privkey");
validKeys.insert("allow_unsafe_clientid_chars");
}
void ConfigFileParser::loadFile(bool test)
{
if (path.empty())
return;
checkFileAccess("application config file", path);
std::ifstream infile(path, std::ios::in);
if (!infile.is_open())
{
std::ostringstream oss;
oss << "Error loading " << path;
throw ConfigFileException(oss.str());
}
std::list<std::string> lines;
const std::regex r("^([a-zA-Z0-9_\\-]+) +([a-zA-Z0-9_\\-/\\.]+)$");
// First parse the file and keep the valid lines.
for(std::string line; getline(infile, line ); )
{
trim(line);
if (startsWith(line, "#"))
continue;
if (line.empty())
continue;
std::smatch matches;
if (!std::regex_search(line, matches, r) || matches.size() != 3)
{
std::ostringstream oss;
oss << "Line '" << line << "' not in 'key value' format";
throw ConfigFileException(oss.str());
}
lines.push_back(line);
}
authOpts.clear();
authOptCompatWrap.reset();
std::string sslFullChainTmp;
std::string sslPrivkeyTmp;
// Then once we know the config file is valid, process it.
for (std::string &line : lines)
{
std::smatch matches;
if (!std::regex_search(line, matches, r) || matches.size() != 3)
{
throw ConfigFileException("Config parse error at a point that should not be possible.");
}
std::string key = matches[1].str();
const std::string value = matches[2].str();
const std::string auth_opt_ = "auth_opt_";
if (startsWith(key, auth_opt_))
{
key.replace(0, auth_opt_.length(), "");
authOpts[key] = value;
}
else
{
auto valid_key_it = validKeys.find(key);
if (valid_key_it == validKeys.end())
{
std::ostringstream oss;
oss << "Config key '" << key << "' is not valid. This error should have been cought before. Bug?";
throw ConfigFileException(oss.str());
}
if (key == "auth_plugin")
{
checkFileAccess(key, value);
if (!test)
this->authPluginPath = value;
}
if (key == "log_file")
{
checkFileAccess(key, value);
if (!test)
this->logPath = value;
}
if (key == "allow_unsafe_clientid_chars")
{
bool tmp = stringTruthiness(value);
if (!test)
this->allowUnsafeClientidChars = tmp;
}
if (key == "fullchain")
{
checkFileAccess(key, value);
sslFullChainTmp = value;
}
if (key == "privkey")
{
checkFileAccess(key, value);
sslPrivkeyTmp = value;
}
try
{
// TODO: make this possible. There are many error cases to deal with, like bind failures, etc. You don't want to end up without listeners.
if (key == "listen_port")
{
uint listenportNew = std::stoi(value);
if (listenPort > 0 && listenPort != listenportNew)
throw ConfigFileException("Changing (ssl_)listen_port is not supported at this time.");
listenPort = listenportNew;
}
// TODO: make this possible. There are many error cases to deal with, like bind failures, etc. You don't want to end up without listeners.
if (key == "ssl_listen_port")
{
uint sslListenPortNew = std::stoi(value);
if (sslListenPort > 0 && sslListenPort != sslListenPortNew)
throw ConfigFileException("Changing (ssl_)listen_port is not supported at this time.");
sslListenPort = sslListenPortNew;
}
}
catch (std::invalid_argument &ex)
{
throw ConfigFileException(ex.what());
}
}
}
testSsl(sslFullChainTmp, sslPrivkeyTmp, sslListenPort);
this->sslFullchain = sslFullChainTmp;
this->sslPrivkey = sslPrivkeyTmp;
authOptCompatWrap.reset(new AuthOptCompatWrap(authOpts));
}
AuthOptCompatWrap &ConfigFileParser::getAuthOptsCompat()
{
return *authOptCompatWrap.get();
}