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
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
|
////////////////////////////////////////////////////////////////////////////////
// Gadu-Gadu Plugin for Miranda IM
//
// Copyright (c) 2010 Bartosz Bia³ek
//
// 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 2
// 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, write to the Free Software
// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
////////////////////////////////////////////////////////////////////////////////
#include "gg.h"
#include <io.h>
#include <fcntl.h>
#include "protocol.h"
//////////////////////////////////////////////////////////
// OAuth 1.0 implementation
// Service Provider must accept the HTTP Authorization header
// RSA-SHA1 signature method (see RFC 3447 section 8.2
// and RSASSA-PKCS1-v1_5 algorithm) is unimplemented
typedef struct
{
char *name;
char *value;
} OAUTHPARAMETER;
typedef enum
{
HMACSHA1,
RSASHA1,
PLAINTEXT
} OAUTHSIGNMETHOD;
static int paramsortFunc(const OAUTHPARAMETER *p1, const OAUTHPARAMETER *p2)
{
int res = strcmp(p1->name, p2->name);
return res != 0 ? res : strcmp(p1->value, p2->value);
}
// HMAC-SHA1 (see RFC 2104 for details)
void hmacsha1_hash(mir_sha1_byte_t *text, int text_len, mir_sha1_byte_t *key, int key_len,
mir_sha1_byte_t digest[MIR_SHA1_HASH_SIZE])
{
mir_sha1_ctx context;
mir_sha1_byte_t k_ipad[64];
mir_sha1_byte_t k_opad[64];
int i;
if (key_len > 64) {
mir_sha1_ctx tctx;
mir_sha1_byte_t tk[MIR_SHA1_HASH_SIZE];
mir_sha1_init(&tctx);
mir_sha1_append(&tctx, key, key_len);
mir_sha1_finish(&tctx, tk);
key = tk;
key_len = MIR_SHA1_HASH_SIZE;
}
memset(k_ipad, 0x36, 64);
memset(k_opad, 0x5c, 64);
for (i = 0; i < key_len; i++) {
k_ipad[i] ^= key[i];
k_opad[i] ^= key[i];
}
mir_sha1_init(&context);
mir_sha1_append(&context, k_ipad, 64);
mir_sha1_append(&context, text, text_len);
mir_sha1_finish(&context, digest);
mir_sha1_init(&context);
mir_sha1_append(&context, k_opad, 64);
mir_sha1_append(&context, digest, MIR_SHA1_HASH_SIZE);
mir_sha1_finish(&context, digest);
}
// see RFC 3986 for details
#define isunreserved(c) ( isalnum((unsigned char)c) || c == '-' || c == '.' || c == '_' || c == '~')
char *oauth_uri_escape(const char *str)
{
char *res;
int size, ix = 0;
if (str == NULL) return mir_strdup("");
size = (int)strlen(str) + 1;
res = (char *)mir_alloc(size);
while (*str) {
if (!isunreserved(*str)) {
size += 2;
res = (char *)mir_realloc(res, size);
mir_snprintf(&res[ix], 4, "%%%X%X", (*str >> 4) & 15, *str & 15);
ix += 3;
}
else
res[ix++] = *str;
str++;
}
res[ix] = 0;
return res;
}
// generates Signature Base String
char *oauth_generate_signature(LIST<OAUTHPARAMETER> ¶ms, const char *httpmethod, const char *url)
{
char *res, *urlenc, *urlnorm;
OAUTHPARAMETER *p;
int i, ix = 0, size;
if (httpmethod == NULL || url == NULL || !params.getCount()) return mir_strdup("");
urlnorm = (char *)mir_alloc(strlen(url) + 1);
while (*url) {
if (*url == '?' || *url == '#') break; // see RFC 3986 section 3
urlnorm[ix++] = tolower(*url);
url++;
}
urlnorm[ix] = 0;
if ((res = strstr(urlnorm, ":80")) != NULL)
memmove(res, res + 3, strlen(res) - 2);
else if ((res = strstr(urlnorm, ":443")) != NULL)
memmove(res, res + 4, strlen(res) - 3);
urlenc = oauth_uri_escape(urlnorm);
mir_free(urlnorm);
size = (int)strlen(httpmethod) + (int)strlen(urlenc) + 1 + 2;
for (i = 0; i < params.getCount(); i++) {
p = params[i];
if (!strcmp(p->name, "oauth_signature")) continue;
if (i > 0) size += 3;
size += (int)strlen(p->name) + (int)strlen(p->value) + 3;
}
res = (char *)mir_alloc(size);
strcpy(res, httpmethod);
strcat(res, "&");
strcat(res, urlenc);
mir_free(urlenc);
strcat(res, "&");
for (i = 0; i < params.getCount(); i++) {
p = params[i];
if (!strcmp(p->name, "oauth_signature")) continue;
if (i > 0) strcat(res, "%26");
strcat(res, p->name);
strcat(res, "%3D");
strcat(res, p->value);
}
return res;
}
char *oauth_getparam(LIST<OAUTHPARAMETER> ¶ms, const char *name)
{
OAUTHPARAMETER *p;
int i;
if (name == NULL) return NULL;
for (i = 0; i < params.getCount(); i++) {
p = params[i];
if (!strcmp(p->name, name))
return p->value;
}
return NULL;
}
void oauth_setparam(LIST<OAUTHPARAMETER> ¶ms, const char *name, const char *value)
{
OAUTHPARAMETER *p;
int i;
if (name == NULL) return;
for (i = 0; i < params.getCount(); i++) {
p = params[i];
if (!strcmp(p->name, name)) {
mir_free(p->value);
p->value = oauth_uri_escape(value);
return;
}
}
p = (OAUTHPARAMETER*)mir_alloc(sizeof(OAUTHPARAMETER));
p->name = oauth_uri_escape(name);
p->value = oauth_uri_escape(value);
params.insert(p);
}
void oauth_freeparams(LIST<OAUTHPARAMETER> ¶ms)
{
OAUTHPARAMETER *p;
int i;
for (i = 0; i < params.getCount(); i++) {
p = params[i];
mir_free(p->name);
mir_free(p->value);
}
}
int oauth_sign_request(LIST<OAUTHPARAMETER> ¶ms, const char *httpmethod, const char *url,
const char *consumer_secret, const char *token_secret)
{
char *sign = NULL, *signmethod;
if (!params.getCount()) return -1;
signmethod = oauth_getparam(params, "oauth_signature_method");
if (signmethod == NULL) return -1;
if (!strcmp(signmethod, "HMAC-SHA1")) {
ptrA text( oauth_generate_signature(params, httpmethod, url));
ptrA csenc( oauth_uri_escape(consumer_secret));
ptrA tsenc( oauth_uri_escape(token_secret));
ptrA key((char *)mir_alloc(strlen(csenc) + strlen(tsenc) + 2));
strcpy(key, csenc);
strcat(key, "&");
strcat(key, tsenc);
mir_sha1_byte_t digest[MIR_SHA1_HASH_SIZE];
hmacsha1_hash((BYTE*)(char*)text, (int)strlen(text), (BYTE*)(char*)key, (int)strlen(key), digest);
sign = mir_base64_encode(digest, MIR_SHA1_HASH_SIZE);
}
// else if (!strcmp(signmethod, "RSA-SHA1")) { // unimplemented
// }
else { // PLAINTEXT
ptrA csenc( oauth_uri_escape(consumer_secret));
ptrA tsenc( oauth_uri_escape(token_secret));
sign = (char *)mir_alloc(strlen(csenc) + strlen(tsenc) + 2);
strcpy(sign, csenc);
strcat(sign, "&");
strcat(sign, tsenc);
}
oauth_setparam(params, "oauth_signature", sign);
mir_free(sign);
return 0;
}
char *oauth_generate_nonce()
{
char timestamp[22], randnum[16];
mir_snprintf(timestamp, sizeof(timestamp), "%ld", time(NULL));
CallService(MS_UTILS_GETRANDOM, (WPARAM)sizeof(randnum), (LPARAM)randnum);
ptrA str((char *)mir_alloc(strlen(timestamp) + strlen(randnum) + 1));
strcpy(str, timestamp);
strcat(str, randnum);
mir_md5_byte_t digest[16];
mir_md5_hash((BYTE*)(char*)str, (int)strlen(str), digest);
char *result = (char *)mir_alloc(32 + 1);
for (int i = 0; i < 16; i++)
mir_snprintf(result + (i<<1), 2, "%02x", digest[i]);
return result;
}
char *oauth_auth_header(const char *httpmethod, const char *url, OAUTHSIGNMETHOD signmethod,
const char *consumer_key, const char *consumer_secret,
const char *token, const char *token_secret)
{
int i, size;
char *res, timestamp[22], *nonce;
if (httpmethod == NULL || url == NULL) return NULL;
LIST<OAUTHPARAMETER> oauth_parameters(1, paramsortFunc);
oauth_setparam(oauth_parameters, "oauth_consumer_key", consumer_key);
oauth_setparam(oauth_parameters, "oauth_version", "1.0");
switch (signmethod) {
case HMACSHA1: oauth_setparam(oauth_parameters, "oauth_signature_method", "HMAC-SHA1"); break;
case RSASHA1: oauth_setparam(oauth_parameters, "oauth_signature_method", "RSA-SHA1"); break;
default: oauth_setparam(oauth_parameters, "oauth_signature_method", "PLAINTEXT"); break;
};
mir_snprintf(timestamp, sizeof(timestamp), "%ld", time(NULL));
oauth_setparam(oauth_parameters, "oauth_timestamp", timestamp);
nonce = oauth_generate_nonce();
oauth_setparam(oauth_parameters, "oauth_nonce", nonce);
mir_free(nonce);
if (token != NULL && *token)
oauth_setparam(oauth_parameters, "oauth_token", token);
if (oauth_sign_request(oauth_parameters, httpmethod, url, consumer_secret, token_secret)) {
oauth_freeparams(oauth_parameters);
oauth_parameters.destroy();
return NULL;
}
size = 7;
for (i = 0; i < oauth_parameters.getCount(); i++) {
OAUTHPARAMETER *p = oauth_parameters[i];
if (i > 0) size++;
size += (int)strlen(p->name) + (int)strlen(p->value) + 3;
}
res = (char *)mir_alloc(size);
strcpy(res, "OAuth ");
for (i = 0; i < oauth_parameters.getCount(); i++) {
OAUTHPARAMETER *p = oauth_parameters[i];
if (i > 0) strcat(res, ",");
strcat(res, p->name);
strcat(res, "=\"");
strcat(res, p->value);
strcat(res, "\"");
}
oauth_freeparams(oauth_parameters);
oauth_parameters.destroy();
return res;
}
char* GGPROTO::oauth_header(const char *httpmethod, const char *url)
{
char uin[32];
UIN2IDA( getDword(GG_KEY_UIN, 0), uin);
ptrA token( getStringA(GG_KEY_TOKEN));
ptrA password( getStringA(GG_KEY_PASSWORD));
if (password != NULL)
CallService(MS_DB_CRYPT_DECODESTRING, (WPARAM)strlen(password) + 1, (LPARAM)password);
ptrA token_secret( getStringA(GG_KEY_TOKENSECRET));
if (token_secret != NULL)
CallService(MS_DB_CRYPT_DECODESTRING, (WPARAM)strlen(token_secret) + 1, (LPARAM)token_secret);
return oauth_auth_header(httpmethod, url, HMACSHA1, uin, password, token, token_secret);
}
int GGPROTO::oauth_receivetoken()
{
char szUrl[256], uin[32], *password = NULL, *str, *token = NULL, *token_secret = NULL;
DBVARIANT dbv;
int res = 0;
HANDLE nlc = NULL;
UIN2IDA( getDword(GG_KEY_UIN, 0), uin);
if (!getString(GG_KEY_PASSWORD, &dbv)) {
CallService(MS_DB_CRYPT_DECODESTRING, strlen(dbv.pszVal) + 1, (LPARAM)dbv.pszVal);
password = mir_strdup(dbv.pszVal);
db_free(&dbv);
}
// 1. Obtaining an Unauthorized Request Token
netlog("oauth_receivetoken(): Obtaining an Unauthorized Request Token...");
strcpy(szUrl, "http://api.gadu-gadu.pl/request_token");
str = oauth_auth_header("POST", szUrl, HMACSHA1, uin, password, NULL, NULL);
NETLIBHTTPHEADER httpHeaders[3];
httpHeaders[0].szName = "User-Agent";
httpHeaders[0].szValue = GG8_VERSION;
httpHeaders[1].szName = "Authorization";
httpHeaders[1].szValue = str;
httpHeaders[2].szName = "Accept";
httpHeaders[2].szValue = "*/*";
NETLIBHTTPREQUEST req = { sizeof(req) };
req.requestType = REQUEST_POST;
req.szUrl = szUrl;
req.flags = NLHRF_NODUMP | NLHRF_HTTP11 | NLHRF_PERSISTENT;
req.headersCount = 3;
req.headers = httpHeaders;
NETLIBHTTPREQUEST *resp = (NETLIBHTTPREQUEST *)CallService(MS_NETLIB_HTTPTRANSACTION, (WPARAM)netlib, (LPARAM)&req);
if (resp) {
nlc = resp->nlc;
if (resp->resultCode == 200 && resp->dataLength > 0 && resp->pData) {
TCHAR *xmlAction = mir_a2t(resp->pData);
HXML hXml = xi.parseString(xmlAction, 0, _T("result"));
if (hXml != NULL) {
HXML node = xi.getChildByPath(hXml, _T("oauth_token"), 0);
token = node != NULL ? mir_t2a(xi.getText(node)) : NULL;
node = xi.getChildByPath(hXml, _T("oauth_token_secret"), 0);
token_secret = node != NULL ? mir_t2a(xi.getText(node)) : NULL;
xi.destroyNode(hXml);
}
mir_free(xmlAction);
}
else netlog("oauth_receivetoken(): Invalid response code from HTTP request");
CallService(MS_NETLIB_FREEHTTPREQUESTSTRUCT, 0, (LPARAM)resp);
}
else netlog("oauth_receivetoken(): No response from HTTP request");
// 2. Obtaining User Authorization
netlog("oauth_receivetoken(): Obtaining User Authorization...");
mir_free(str);
str = oauth_uri_escape("http://www.mojageneracja.pl");
mir_snprintf(szUrl, 256, "callback_url=%s&request_token=%s&uin=%s&password=%s",
str, token, uin, password);
mir_free(str);
str = mir_strdup(szUrl);
ZeroMemory(&req, sizeof(req));
req.cbSize = sizeof(req);
req.requestType = REQUEST_POST;
req.szUrl = szUrl;
req.flags = NLHRF_NODUMP | NLHRF_HTTP11;
req.headersCount = 3;
req.headers = httpHeaders;
strcpy(szUrl, "https://login.gadu-gadu.pl/authorize");
httpHeaders[1].szName = "Content-Type";
httpHeaders[1].szValue = "application/x-www-form-urlencoded";
req.pData = str;
req.dataLength = (int)strlen(str);
resp = (NETLIBHTTPREQUEST *)CallService(MS_NETLIB_HTTPTRANSACTION, (WPARAM)netlib, (LPARAM)&req);
if (resp) CallService(MS_NETLIB_FREEHTTPREQUESTSTRUCT, 0, (LPARAM)resp);
else netlog("oauth_receivetoken(): No response from HTTP request");
// 3. Obtaining an Access Token
netlog("oauth_receivetoken(): Obtaining an Access Token...");
strcpy(szUrl, "http://api.gadu-gadu.pl/access_token");
mir_free(str);
str = oauth_auth_header("POST", szUrl, HMACSHA1, uin, password, token, token_secret);
mir_free(token);
mir_free(token_secret);
token = NULL;
token_secret = NULL;
ZeroMemory(&req, sizeof(req));
req.cbSize = sizeof(req);
req.requestType = REQUEST_POST;
req.szUrl = szUrl;
req.flags = NLHRF_NODUMP | NLHRF_HTTP11 | NLHRF_PERSISTENT;
req.nlc = nlc;
req.headersCount = 3;
req.headers = httpHeaders;
httpHeaders[1].szName = "Authorization";
httpHeaders[1].szValue = str;
resp = (NETLIBHTTPREQUEST *)CallService(MS_NETLIB_HTTPTRANSACTION, (WPARAM)netlib, (LPARAM)&req);
if (resp) {
if (resp->resultCode == 200 && resp->dataLength > 0 && resp->pData) {
TCHAR *xmlAction = mir_a2t(resp->pData);
HXML hXml = xi.parseString(xmlAction, 0, _T("result"));
if (hXml != NULL) {
HXML node = xi.getChildByPath(hXml, _T("oauth_token"), 0);
token = mir_t2a(xi.getText(node));
node = xi.getChildByPath(hXml, _T("oauth_token_secret"), 0);
token_secret = mir_t2a(xi.getText(node));
xi.destroyNode(hXml);
}
mir_free(xmlAction);
}
else netlog("oauth_receivetoken(): Invalid response code from HTTP request");
Netlib_CloseHandle(resp->nlc);
CallService(MS_NETLIB_FREEHTTPREQUESTSTRUCT, 0, (LPARAM)resp);
}
else netlog("oauth_receivetoken(): No response from HTTP request");
mir_free(password);
mir_free(str);
if (token != NULL && token_secret != NULL) {
setString(GG_KEY_TOKEN, token);
CallService(MS_DB_CRYPT_ENCODESTRING, (WPARAM)(int)strlen(token_secret) + 1, (LPARAM) token_secret);
setString(GG_KEY_TOKENSECRET, token_secret);
netlog("oauth_receivetoken(): Access Token obtained successfully.");
res = 1;
}
else {
delSetting(GG_KEY_TOKEN);
delSetting(GG_KEY_TOKENSECRET);
netlog("oauth_receivetoken(): Failed to obtain Access Token.");
}
mir_free(token);
mir_free(token_secret);
return res;
}
int GGPROTO::oauth_checktoken(int force)
{
if (force)
return oauth_receivetoken();
ptrA token( getStringA(GG_KEY_TOKEN));
ptrA token_secret( getStringA(GG_KEY_TOKENSECRET));
if (token == NULL || token_secret == NULL)
return oauth_receivetoken();
return 1;
}
|