-
Notifications
You must be signed in to change notification settings - Fork 502
/
authorisation.cpp
232 lines (195 loc) · 7.07 KB
/
authorisation.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
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
/*
* Copyright (c) 2013-2019 dresden elektronik ingenieurtechnik gmbh.
* All rights reserved.
*
* The software in this package is published under the terms of the BSD
* style license a copy of which has been included with this distribution in
* the LICENSE.txt file.
*
*/
#include <QCryptographicHash>
#include <QMessageAuthenticationCode>
#include "crypto/password.h"
#include "de_web_plugin_private.h"
#define AUTH_KEEP_ALIVE 240
ApiAuth::ApiAuth() :
needSaveDatabase(false),
state(StateNormal)
{
}
/*! Set and process device type.
*/
void ApiAuth::setDeviceType(const QString &devtype)
{
devicetype = devtype;
}
/*! Init authentication.
*/
void DeRestPluginPrivate::initAuthentication()
{
bool ok = false;
if (gwConfig.contains("gwusername") && gwConfig.contains("gwpassword"))
{
gwAdminUserName = gwConfig["gwusername"].toString();
gwAdminPasswordHash = gwConfig["gwpassword"].toString().toStdString();
if (!gwAdminUserName.isEmpty() && gwAdminPasswordHash.size() > 0)
{
ok = true;
}
}
if (!ok)
{
// generate default username and password
gwAdminUserName = "delight";
gwAdminPasswordHash = "delight";
DBG_Printf(DBG_INFO, "create default username and password\n");
// combine username:password
QString comb = QString("%1:%2").arg(gwAdminUserName).arg(gwAdminPasswordHash.c_str());
// create base64 encoded version as used in HTTP basic authentication
std::string hash = comb.toLocal8Bit().toBase64().toStdString();
gwAdminPasswordHash = CRYPTO_EncryptGatewayPassword(hash);
queSaveDb(DB_CONFIG, DB_SHORT_SAVE_DELAY);
}
}
/*! Use HTTP basic authentication or HMAC token to check if the request
has valid credentials to create API key.
*/
bool DeRestPluginPrivate::allowedToCreateApikey(const ApiRequest &req, ApiResponse &rsp, QVariantMap &map)
{
if (req.hdr.hasKey(QLatin1String("Authorization")))
{
const QString auth(req.hdr.value(QLatin1String("Authorization")));
const QStringList ls = auth.split(' ');
if ((ls.size() > 1) && ls[0] == "Basic")
{
std::string pwhash = ls[1].toStdString();
std::string enc = CRYPTO_EncryptGatewayPassword(pwhash);
if (enc == gwAdminPasswordHash)
{
return true;
}
else if (pwhash == gwAdminPasswordHash)
{
return true; // on Windows plain hash was stored
}
DBG_Printf(DBG_INFO, "Invalid admin password hash\n");
}
}
if (apsCtrl && map.contains(QLatin1String("hmac-sha256")))
{
QDateTime now = QDateTime::currentDateTime();
QByteArray remoteHmac = map["hmac-sha256"].toByteArray();
QByteArray sec0 = apsCtrl->getParameter(deCONZ::ParamSecurityMaterial0);
QByteArray installCode = sec0.mid(0, 16);
if (!gwLastChallenge.isValid() || gwLastChallenge.secsTo(now) > (60 * 10))
{
rsp.list.append(errorToMap(ERR_UNAUTHORIZED_USER, QString("/api/challenge"), QString("no active challange")));
rsp.httpStatus = HttpStatusForbidden;
return false;
}
QByteArray hmac = QMessageAuthenticationCode::hash(gwChallenge, installCode, QCryptographicHash::Sha256).toHex();
if (remoteHmac == hmac)
{
return true;
}
DBG_Printf(DBG_INFO, "expected challenge response: %s\n", qPrintable(hmac));
rsp.list.append(errorToMap(ERR_UNAUTHORIZED_USER, QString("/api/challenge"), QString("invalid challange response")));
rsp.httpStatus = HttpStatusForbidden;
return false;
}
rsp.httpStatus = HttpStatusForbidden;
rsp.list.append(errorToMap(ERR_LINK_BUTTON_NOT_PRESSED, "/", "link button not pressed"));
return false;
}
/*! Authorise API access for the request.
*/
void DeRestPluginPrivate::authorise(ApiRequest &req, ApiResponse &rsp)
{
Q_UNUSED(rsp);
QHostAddress localHost(QHostAddress::LocalHost);
if (req.sock->peerAddress() == localHost)
{
req.auth = ApiAuthLocal;
}
if (req.sock == nullptr) // allow internal requests, as they are issued by triggering rules
{
req.auth = ApiAuthInternal;
}
QString apikey = req.apikey();
apiAuthCurrent = apiAuths.size();
if (apikey.isEmpty())
{
return;
}
std::vector<ApiAuth>::iterator i = apiAuths.begin();
std::vector<ApiAuth>::iterator end = apiAuths.end();
for (size_t pos = 0; i != end; ++i, pos++)
{
if (apikey == i->apikey && i->state == ApiAuth::StateNormal)
{
apiAuthCurrent = pos;
i->lastUseDate = QDateTime::currentDateTimeUtc();
// fill in useragent string if not already exist
if (i->useragent.isEmpty())
{
if (req.hdr.hasKey(QLatin1String("User-Agent")))
{
i->useragent = req.hdr.value(QLatin1String("User-Agent"));
DBG_Printf(DBG_HTTP, "set useragent '%s' for apikey '%s'\n", qPrintable(i->useragent), qPrintable(i->apikey));
}
}
if (req.sock)
{
for (TcpClient &cl : openClients)
{
if (cl.sock == req.sock && cl.closeTimeout > 0)
{
cl.closeTimeout = AUTH_KEEP_ALIVE;
break;
}
}
}
if ((!(i->useragent.isEmpty()) && i->useragent.startsWith(QLatin1String("iConnect"))) || i->devicetype.startsWith(QLatin1String("iConnectHue")))
{
req.mode = ApiModeStrict;
}
else if (i->devicetype.startsWith(QLatin1String("Echo")))
{
req.mode = ApiModeEcho;
}
else if (i->devicetype.startsWith(QLatin1String("Hue Essentials")))
{
// supports deCONZ specifics
}
else if (i->devicetype.startsWith(QLatin1String("hue_")) ||
i->devicetype.startsWith(QLatin1String("Hue ")) ||
gwHueMode)
{
req.mode = ApiModeHue;
}
DBG_Printf(DBG_HTTP, "ApiMode: %d\n", req.mode);
i->needSaveDatabase = true;
if (!apiAuthSaveDatabaseTime.isValid() || apiAuthSaveDatabaseTime.elapsed() > (1000 * 60 * 30))
{
apiAuthSaveDatabaseTime.start();
queSaveDb(DB_AUTH, DB_HUGE_SAVE_DELAY);
}
req.auth = ApiAuthFull;
}
}
#if 0
// allow non registered devices to use the api if the link button is pressed
if (gwLinkButton)
{
ApiAuth auth;
auth.needSaveDatabase = true;
auth.apikey = apikey;
auth.devicetype = "unknown";
auth.createDate = QDateTime::currentDateTimeUtc();
auth.lastUseDate = QDateTime::currentDateTimeUtc();
apiAuths.push_back(auth);
queSaveDb(DB_AUTH, DB_SHORT_SAVE_DELAY);
return true;
}
#endif
}