forked from dresden-elektronik/deconz-rest-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
authentification.cpp
244 lines (205 loc) · 7.1 KB
/
authentification.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
233
234
235
236
237
238
239
240
241
242
243
244
/*
* Copyright (c) 2013-2017 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 "de_web_plugin_private.h"
#ifdef Q_OS_UNIX
#include <unistd.h>
#endif
#ifdef Q_OS_UNIX
static const char *pwsalt = "$1$8282jdkmskwiu29291"; // $1$ for MD5
#endif
#define AUTH_KEEP_ALIVE 60
ApiAuth::ApiAuth() :
strict(false),
needSaveDatabase(false),
state(StateNormal)
{
}
/*! Set and process device type.
*/
void ApiAuth::setDeviceType(const QString &devtype)
{
if (devtype.startsWith(QLatin1String("Echo")) ||
devtype.startsWith(QLatin1String("iConnectHue")))
{
strict = true;
}
devicetype = devtype;
}
/*! Init authentification and security.
*/
void DeRestPluginPrivate::initAuthentification()
{
bool ok = false;
if (gwConfig.contains("gwusername") && gwConfig.contains("gwpassword"))
{
gwAdminUserName = gwConfig["gwusername"].toString();
gwAdminPasswordHash = gwConfig["gwpassword"].toString();
if (!gwAdminUserName.isEmpty() && !gwAdminPasswordHash.isEmpty())
{
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);
// create base64 encoded version as used in HTTP basic authentification
QString hash = comb.toLocal8Bit().toBase64();
gwAdminPasswordHash = encryptString(hash);
queSaveDb(DB_CONFIG, DB_SHORT_SAVE_DELAY);
}
}
/*! Use HTTP basic authentification 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("Authorization"))
{
QStringList ls = req.hdr.value("Authorization").split(' ');
if ((ls.size() > 1) && ls[0] == "Basic")
{
QString enc = encryptString(ls[1]);
if (enc == gwAdminPasswordHash)
{
return true;
}
DBG_Printf(DBG_INFO, "Invalid admin password hash: %s\n", qPrintable(enc));
}
}
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;
}
/*! Checks if the request is authenticated to access the API.
\retval true if authenticated
\retval false if not authenticated and the rsp http status is set to 403 Forbidden and JSON error is appended
*/
bool DeRestPluginPrivate::checkApikeyAuthentification(const ApiRequest &req, ApiResponse &rsp)
{
QString apikey = req.apikey();
apiAuthCurrent = apiAuths.size();
if (apikey.isEmpty())
{
return false;
}
if (req.sock == 0) // allow internal requests, as they are issued by triggering rules
{
return true;
}
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("User-Agent"))
{
i->useragent = req.hdr.value("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 = AUTH_KEEP_ALIVE;
break;
}
}
}
i->needSaveDatabase = true;
if (!apiAuthSaveDatabaseTime.isValid() || apiAuthSaveDatabaseTime.elapsed() > (1000 * 60 * 30))
{
apiAuthSaveDatabaseTime.start();
queSaveDb(DB_AUTH, DB_HUGE_SAVE_DELAY);
}
return true;
}
}
#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
rsp.httpStatus = HttpStatusForbidden;
rsp.list.append(errorToMap(ERR_UNAUTHORIZED_USER, req.path.join("/"), "unauthorized user"));
if (req.sock)
{
DBG_Printf(DBG_HTTP, "\thost: %s\n", qPrintable(req.sock->peerAddress().toString()));
}
return false;
}
/*! Encrypts a string with using crypt() MD5 + salt. (unix only)
\param str the input string
\return the encrypted string on success or the unchanged input string on fail
*/
QString DeRestPluginPrivate::encryptString(const QString &str)
{
#ifdef Q_OS_UNIX
// further encrypt and salt the hash
const char *enc = crypt(str.toLocal8Bit().constData(), pwsalt);
if (enc)
{
return QString(enc);
}
else
{
DBG_Printf(DBG_ERROR, "crypt(): %s failed\n", qPrintable(str));
// fall through and return str
}
#endif // Q_OS_UNIX
return str;
}