forked from irwir/eMule
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathClientCredits.cpp
701 lines (626 loc) · 21.4 KB
/
ClientCredits.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
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
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
//this file is part of eMule
//Copyright (C)2002-2008 Merkur ( strEmail.Format("%s@%s", "devteam", "emule-project.net") / http://www.emule-project.net )
//
//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., 675 Mass Ave, Cambridge, MA 02139, USA.
#include "stdafx.h"
#include <math.h>
#include "emule.h"
#include "ClientCredits.h"
#include "OtherFunctions.h"
#include "Preferences.h"
#include "SafeFile.h"
#include "Opcodes.h"
#include "Sockets.h"
#pragma warning(disable:4516) // access-declarations are deprecated; member using-declarations provide a better alternative
#pragma warning(disable:4244) // conversion from 'type1' to 'type2', possible loss of data
#pragma warning(disable:4100) // unreferenced formal parameter
#pragma warning(disable:4702) // unreachable code
#include <crypto51/base64.h>
#include <crypto51/osrng.h>
#include <crypto51/files.h>
#include <crypto51/sha.h>
#pragma warning(default:4702) // unreachable code
#pragma warning(default:4100) // unreferenced formal parameter
#pragma warning(default:4244) // conversion from 'type1' to 'type2', possible loss of data
#pragma warning(default:4516) // access-declarations are deprecated; member using-declarations provide a better alternative
#include "emuledlg.h"
#include "Log.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
#define CLIENTS_MET_FILENAME _T("clients.met")
CClientCredits::CClientCredits(CreditStruct* in_credits)
{
m_pCredits = in_credits;
InitalizeIdent();
m_dwUnSecureWaitTime = 0;
m_dwSecureWaitTime = 0;
m_dwWaitTimeIP = 0;
}
CClientCredits::CClientCredits(const uchar* key)
{
m_pCredits = new CreditStruct;
memset(m_pCredits, 0, sizeof(CreditStruct));
md4cpy(m_pCredits->abyKey, key);
InitalizeIdent();
m_dwUnSecureWaitTime = ::GetTickCount();
m_dwSecureWaitTime = ::GetTickCount();
m_dwWaitTimeIP = 0;
}
CClientCredits::~CClientCredits()
{
delete m_pCredits;
}
void CClientCredits::AddDownloaded(uint32 bytes, uint32 dwForIP) {
if ((GetCurrentIdentState(dwForIP) == IS_IDFAILED || GetCurrentIdentState(dwForIP) == IS_IDBADGUY || GetCurrentIdentState(dwForIP) == IS_IDNEEDED) && theApp.clientcredits->CryptoAvailable()) {
return;
}
//encode
uint64 current = (((uint64)m_pCredits->nDownloadedHi << 32) | m_pCredits->nDownloadedLo) + bytes;
//recode
m_pCredits->nDownloadedLo = (uint32)current;
m_pCredits->nDownloadedHi = (uint32)(current >> 32);
}
void CClientCredits::AddUploaded(uint32 bytes, uint32 dwForIP) {
if ((GetCurrentIdentState(dwForIP) == IS_IDFAILED || GetCurrentIdentState(dwForIP) == IS_IDBADGUY || GetCurrentIdentState(dwForIP) == IS_IDNEEDED) && theApp.clientcredits->CryptoAvailable()) {
return;
}
//encode
uint64 current = (((uint64)m_pCredits->nUploadedHi << 32) | m_pCredits->nUploadedLo) + bytes;
//recode
m_pCredits->nUploadedLo = (uint32)current;
m_pCredits->nUploadedHi = (uint32)(current >> 32);
}
uint64 CClientCredits::GetUploadedTotal() const {
return ((uint64)m_pCredits->nUploadedHi << 32) | m_pCredits->nUploadedLo;
}
uint64 CClientCredits::GetDownloadedTotal() const {
return ((uint64)m_pCredits->nDownloadedHi << 32) | m_pCredits->nDownloadedLo;
}
float CClientCredits::GetScoreRatio(uint32 dwForIP) const
{
// check the client ident status
if ( ( GetCurrentIdentState(dwForIP) == IS_IDFAILED || GetCurrentIdentState(dwForIP) == IS_IDBADGUY || GetCurrentIdentState(dwForIP) == IS_IDNEEDED) && theApp.clientcredits->CryptoAvailable() ){
// bad guy - no credits for you
return 1.0F;
}
if (GetDownloadedTotal() < 1048576)
return 1.0F;
float result = 0.0F;
if (!GetUploadedTotal())
result = 10.0F;
else
result = (float)(((double)GetDownloadedTotal()*2.0)/(double)GetUploadedTotal());
// exponential calcualtion of the max multiplicator based on uploaded data (9.2MB = 3.34, 100MB = 10.0)
float result2 = 0.0F;
result2 = (float)(GetDownloadedTotal()/1048576.0);
result2 += 2.0F;
result2 = (float)sqrt(result2);
// linear calcualtion of the max multiplicator based on uploaded data for the first chunk (1MB = 1.01, 9.2MB = 3.34)
float result3 = 10.0F;
if (GetDownloadedTotal() < 9646899){
result3 = (((float)(GetDownloadedTotal() - 1048576) / 8598323.0F) * 2.34F) + 1.0F;
}
// take the smallest result
result = min(result, min(result2, result3));
if (result < 1.0F)
return 1.0F;
else if (result > 10.0F)
return 10.0F;
return result;
}
CClientCreditsList::CClientCreditsList()
{
m_nLastSaved = ::GetTickCount();
LoadList();
InitalizeCrypting();
}
CClientCreditsList::~CClientCreditsList()
{
SaveList();
CClientCredits* cur_credit;
CCKey tmpkey(0);
POSITION pos = m_mapClients.GetStartPosition();
while (pos){
m_mapClients.GetNextAssoc(pos, tmpkey, cur_credit);
delete cur_credit;
}
delete m_pSignkey;
}
void CClientCreditsList::LoadList()
{
CString strFileName = thePrefs.GetMuleDirectory(EMULE_CONFIGDIR) + CLIENTS_MET_FILENAME;
const int iOpenFlags = CFile::modeRead|CFile::osSequentialScan|CFile::typeBinary|CFile::shareDenyWrite;
CSafeBufferedFile file;
CFileException fexp;
if (!file.Open(strFileName, iOpenFlags, &fexp)){
if (fexp.m_cause != CFileException::fileNotFound){
CString strError(GetResString(IDS_ERR_LOADCREDITFILE));
TCHAR szError[MAX_CFEXP_ERRORMSG];
if (fexp.GetErrorMessage(szError, ARRSIZE(szError))){
strError += _T(" - ");
strError += szError;
}
LogError(LOG_STATUSBAR, _T("%s"), strError);
}
return;
}
setvbuf(file.m_pStream, NULL, _IOFBF, 16384);
try{
uint8 version = file.ReadUInt8();
if (version != CREDITFILE_VERSION && version != CREDITFILE_VERSION_29){
LogWarning(GetResString(IDS_ERR_CREDITFILEOLD));
file.Close();
return;
}
// everything is ok, lets see if the backup exist...
CString strBakFileName;
strBakFileName.Format(_T("%s") CLIENTS_MET_FILENAME _T(".bak"), thePrefs.GetMuleDirectory(EMULE_CONFIGDIR));
DWORD dwBakFileSize = 0;
BOOL bCreateBackup = TRUE;
HANDLE hBakFile = ::CreateFile(strBakFileName, GENERIC_READ, FILE_SHARE_READ, NULL,
OPEN_EXISTING, FILE_ATTRIBUTE_NORMAL, NULL);
if (hBakFile != INVALID_HANDLE_VALUE)
{
// Ok, the backup exist, get the size
dwBakFileSize = ::GetFileSize(hBakFile, NULL); //debug
if (dwBakFileSize > (DWORD)file.GetLength())
{
// the size of the backup was larger then the org. file, something is wrong here, don't overwrite old backup..
bCreateBackup = FALSE;
}
//else: backup is smaller or the same size as org. file, proceed with copying of file
::CloseHandle(hBakFile);
}
//else: the backup doesn't exist, create it
if (bCreateBackup)
{
file.Close(); // close the file before copying
if (!::CopyFile(strFileName, strBakFileName, FALSE))
LogError(GetResString(IDS_ERR_MAKEBAKCREDITFILE));
// reopen file
CFileException fexp;
if (!file.Open(strFileName, iOpenFlags, &fexp)){
CString strError(GetResString(IDS_ERR_LOADCREDITFILE));
TCHAR szError[MAX_CFEXP_ERRORMSG];
if (fexp.GetErrorMessage(szError, ARRSIZE(szError))){
strError += _T(" - ");
strError += szError;
}
LogError(LOG_STATUSBAR, _T("%s"), strError);
return;
}
setvbuf(file.m_pStream, NULL, _IOFBF, 16384);
file.Seek(1, CFile::begin); //set filepointer behind file version byte
}
UINT count = file.ReadUInt32();
m_mapClients.InitHashTable(count+5000); // TODO: should be prime number... and 20% larger
const uint32 dwExpired = time(NULL) - 12960000; // today - 150 day
uint32 cDeleted = 0;
for (UINT i = 0; i < count; i++){
CreditStruct* newcstruct = new CreditStruct;
memset(newcstruct, 0, sizeof(CreditStruct));
if (version == CREDITFILE_VERSION_29)
file.Read(newcstruct, sizeof(CreditStruct_29a));
else
file.Read(newcstruct, sizeof(CreditStruct));
if (newcstruct->nLastSeen < dwExpired){
cDeleted++;
delete newcstruct;
continue;
}
CClientCredits* newcredits = new CClientCredits(newcstruct);
m_mapClients.SetAt(CCKey(newcredits->GetKey()), newcredits);
}
file.Close();
if (cDeleted>0)
AddLogLine(false, GetResString(IDS_CREDITFILELOADED) + GetResString(IDS_CREDITSEXPIRED), count-cDeleted,cDeleted);
else
AddLogLine(false, GetResString(IDS_CREDITFILELOADED), count);
}
catch(CFileException* error){
if (error->m_cause == CFileException::endOfFile)
LogError(LOG_STATUSBAR, GetResString(IDS_CREDITFILECORRUPT));
else{
TCHAR buffer[MAX_CFEXP_ERRORMSG];
error->GetErrorMessage(buffer, ARRSIZE(buffer));
LogError(LOG_STATUSBAR, GetResString(IDS_ERR_CREDITFILEREAD), buffer);
}
error->Delete();
}
}
void CClientCreditsList::SaveList()
{
if (thePrefs.GetLogFileSaving())
AddDebugLogLine(false, _T("Saving clients credit list file \"%s\""), CLIENTS_MET_FILENAME);
m_nLastSaved = ::GetTickCount();
CString name = thePrefs.GetMuleDirectory(EMULE_CONFIGDIR) + CLIENTS_MET_FILENAME;
CFile file;// no buffering needed here since we swap out the entire array
CFileException fexp;
if (!file.Open(name, CFile::modeWrite|CFile::modeCreate|CFile::typeBinary|CFile::shareDenyWrite, &fexp)){
CString strError(GetResString(IDS_ERR_FAILED_CREDITSAVE));
TCHAR szError[MAX_CFEXP_ERRORMSG];
if (fexp.GetErrorMessage(szError, ARRSIZE(szError))){
strError += _T(" - ");
strError += szError;
}
LogError(LOG_STATUSBAR, _T("%s"), strError);
return;
}
uint32 count = m_mapClients.GetCount();
BYTE* pBuffer = new BYTE[count*sizeof(CreditStruct)];
CClientCredits* cur_credit;
CCKey tempkey(0);
POSITION pos = m_mapClients.GetStartPosition();
count = 0;
while (pos)
{
m_mapClients.GetNextAssoc(pos, tempkey, cur_credit);
if (cur_credit->GetUploadedTotal() || cur_credit->GetDownloadedTotal())
{
memcpy(pBuffer+(count*sizeof(CreditStruct)), cur_credit->GetDataStruct(), sizeof(CreditStruct));
count++;
}
}
try{
uint8 version = CREDITFILE_VERSION;
file.Write(&version, 1);
file.Write(&count, 4);
file.Write(pBuffer, count*sizeof(CreditStruct));
if (thePrefs.GetCommitFiles() >= 2 || (thePrefs.GetCommitFiles() >= 1 && !theApp.emuledlg->IsRunning()))
file.Flush();
file.Close();
}
catch(CFileException* error){
CString strError(GetResString(IDS_ERR_FAILED_CREDITSAVE));
TCHAR szError[MAX_CFEXP_ERRORMSG];
if (error->GetErrorMessage(szError, ARRSIZE(szError))){
strError += _T(" - ");
strError += szError;
}
LogError(LOG_STATUSBAR, _T("%s"), strError);
error->Delete();
}
delete[] pBuffer;
}
CClientCredits* CClientCreditsList::GetCredit(const uchar* key)
{
CClientCredits* result;
CCKey tkey(key);
if (!m_mapClients.Lookup(tkey, result)){
result = new CClientCredits(key);
m_mapClients.SetAt(CCKey(result->GetKey()), result);
}
result->SetLastSeen();
return result;
}
void CClientCreditsList::Process()
{
if (::GetTickCount() - m_nLastSaved > MIN2MS(13))
SaveList();
}
void CClientCredits::InitalizeIdent()
{
if (m_pCredits->nKeySize == 0 ){
memset(m_abyPublicKey,0,80); // for debugging
m_nPublicKeyLen = 0;
IdentState = IS_NOTAVAILABLE;
}
else{
m_nPublicKeyLen = m_pCredits->nKeySize;
memcpy(m_abyPublicKey, m_pCredits->abySecureIdent, m_nPublicKeyLen);
IdentState = IS_IDNEEDED;
}
m_dwCryptRndChallengeFor = 0;
m_dwCryptRndChallengeFrom = 0;
m_dwIdentIP = 0;
}
void CClientCredits::Verified(uint32 dwForIP)
{
m_dwIdentIP = dwForIP;
// client was verified, copy the keyto store him if not done already
if (m_pCredits->nKeySize == 0){
m_pCredits->nKeySize = m_nPublicKeyLen;
memcpy(m_pCredits->abySecureIdent, m_abyPublicKey, m_nPublicKeyLen);
if (GetDownloadedTotal() > 0){
// for security reason, we have to delete all prior credits here
m_pCredits->nDownloadedHi = 0;
m_pCredits->nDownloadedLo = 1;
m_pCredits->nUploadedHi = 0;
m_pCredits->nUploadedLo = 1; // in order to safe this client, set 1 byte
if (thePrefs.GetVerbose())
DEBUG_ONLY(AddDebugLogLine(false, _T("Credits deleted due to new SecureIdent")));
}
}
IdentState = IS_IDENTIFIED;
}
bool CClientCredits::SetSecureIdent(const uchar* pachIdent, uint8 nIdentLen) // verified Public key cannot change, use only if there is not public key yet
{
if (MAXPUBKEYSIZE < nIdentLen || m_pCredits->nKeySize != 0 )
return false;
memcpy(m_abyPublicKey,pachIdent, nIdentLen);
m_nPublicKeyLen = nIdentLen;
IdentState = IS_IDNEEDED;
return true;
}
EIdentState CClientCredits::GetCurrentIdentState(uint32 dwForIP) const
{
if (IdentState != IS_IDENTIFIED)
return IdentState;
else{
if (dwForIP == m_dwIdentIP)
return IS_IDENTIFIED;
else
return IS_IDBADGUY;
// mod note: clients which just reconnected after an IP change and have to ident yet will also have this state for 1-2 seconds
// so don't try to spam such clients with "bad guy" messages (besides: spam messages are always bad)
}
}
using namespace CryptoPP;
void CClientCreditsList::InitalizeCrypting()
{
m_nMyPublicKeyLen = 0;
memset(m_abyMyPublicKey,0,80); // not really needed; better for debugging tho
m_pSignkey = NULL;
if (!thePrefs.IsSecureIdentEnabled())
return;
// check if keyfile is there
bool bCreateNewKey = false;
HANDLE hKeyFile = ::CreateFile(thePrefs.GetMuleDirectory(EMULE_CONFIGDIR) + _T("cryptkey.dat"), GENERIC_READ, FILE_SHARE_READ, NULL,
OPEN_EXISTING, FILE_ATTRIBUTE_NORMAL, NULL);
if (hKeyFile != INVALID_HANDLE_VALUE)
{
if (::GetFileSize(hKeyFile, NULL) == 0)
bCreateNewKey = true;
::CloseHandle(hKeyFile);
}
else
bCreateNewKey = true;
if (bCreateNewKey)
CreateKeyPair();
// load key
try{
// load private key
FileSource filesource(CStringA(thePrefs.GetMuleDirectory(EMULE_CONFIGDIR) + _T("cryptkey.dat")), true,new Base64Decoder);
m_pSignkey = new RSASSA_PKCS1v15_SHA_Signer(filesource);
// calculate and store public key
RSASSA_PKCS1v15_SHA_Verifier pubkey(*m_pSignkey);
ArraySink asink(m_abyMyPublicKey, 80);
pubkey.DEREncode(asink);
m_nMyPublicKeyLen = (uint8)asink.TotalPutLength();
asink.MessageEnd();
}
catch(...)
{
delete m_pSignkey;
m_pSignkey = NULL;
LogError(LOG_STATUSBAR, GetResString(IDS_CRYPT_INITFAILED));
ASSERT(0);
}
ASSERT( Debug_CheckCrypting() );
}
bool CClientCreditsList::CreateKeyPair()
{
try{
AutoSeededRandomPool rng;
InvertibleRSAFunction privkey;
privkey.Initialize(rng,RSAKEYSIZE);
Base64Encoder privkeysink(new FileSink(CStringA(thePrefs.GetMuleDirectory(EMULE_CONFIGDIR) + _T("cryptkey.dat"))));
privkey.DEREncode(privkeysink);
privkeysink.MessageEnd();
if (thePrefs.GetLogSecureIdent())
AddDebugLogLine(false, _T("Created new RSA keypair"));
}
catch(...)
{
if (thePrefs.GetVerbose())
AddDebugLogLine(false, _T("Failed to create new RSA keypair"));
ASSERT ( false );
return false;
}
return true;
}
uint8 CClientCreditsList::CreateSignature(CClientCredits* pTarget, uchar* pachOutput, uint8 nMaxSize,
uint32 ChallengeIP, uint8 byChaIPKind,
CryptoPP::RSASSA_PKCS1v15_SHA_Signer* sigkey)
{
// sigkey param is used for debug only
if (sigkey == NULL)
sigkey = m_pSignkey;
// create a signature of the public key from pTarget
ASSERT( pTarget );
ASSERT( pachOutput );
uint8 nResult;
if ( !CryptoAvailable() )
return 0;
try{
SecByteBlock sbbSignature(sigkey->SignatureLength());
AutoSeededRandomPool rng;
byte abyBuffer[MAXPUBKEYSIZE+9];
uint32 keylen = pTarget->GetSecIDKeyLen();
memcpy(abyBuffer,pTarget->GetSecureIdent(),keylen);
// 4 additional bytes random data send from this client
uint32 challenge = pTarget->m_dwCryptRndChallengeFrom;
ASSERT ( challenge != 0 );
PokeUInt32(abyBuffer+keylen, challenge);
uint16 ChIpLen = 0;
if ( byChaIPKind != 0){
ChIpLen = 5;
PokeUInt32(abyBuffer+keylen+4, ChallengeIP);
PokeUInt8(abyBuffer+keylen+4+4, byChaIPKind);
}
sigkey->SignMessage(rng, abyBuffer ,keylen+4+ChIpLen , sbbSignature.begin());
ArraySink asink(pachOutput, nMaxSize);
asink.Put(sbbSignature.begin(), sbbSignature.size());
nResult = (uint8)asink.TotalPutLength();
}
catch(...)
{
ASSERT ( false );
nResult = 0;
}
return nResult;
}
bool CClientCreditsList::VerifyIdent(CClientCredits* pTarget, const uchar* pachSignature, uint8 nInputSize,
uint32 dwForIP, uint8 byChaIPKind)
{
ASSERT( pTarget );
ASSERT( pachSignature );
if ( !CryptoAvailable() ){
pTarget->IdentState = IS_NOTAVAILABLE;
return false;
}
bool bResult;
try{
StringSource ss_Pubkey((byte*)pTarget->GetSecureIdent(),pTarget->GetSecIDKeyLen(),true,0);
RSASSA_PKCS1v15_SHA_Verifier pubkey(ss_Pubkey);
// 4 additional bytes random data send from this client +5 bytes v2
byte abyBuffer[MAXPUBKEYSIZE+9];
memcpy(abyBuffer,m_abyMyPublicKey,m_nMyPublicKeyLen);
uint32 challenge = pTarget->m_dwCryptRndChallengeFor;
ASSERT ( challenge != 0 );
PokeUInt32(abyBuffer+m_nMyPublicKeyLen, challenge);
// v2 security improvments (not supported by 29b, not used as default by 29c)
uint8 nChIpSize = 0;
if (byChaIPKind != 0){
nChIpSize = 5;
uint32 ChallengeIP = 0;
switch (byChaIPKind){
case CRYPT_CIP_LOCALCLIENT:
ChallengeIP = dwForIP;
break;
case CRYPT_CIP_REMOTECLIENT:
if (theApp.serverconnect->GetClientID() == 0 || theApp.serverconnect->IsLowID()){
if (thePrefs.GetLogSecureIdent())
AddDebugLogLine(false, _T("Warning: Maybe SecureHash Ident fails because LocalIP is unknown"));
ChallengeIP = theApp.serverconnect->GetLocalIP();
}
else
ChallengeIP = theApp.serverconnect->GetClientID();
break;
case CRYPT_CIP_NONECLIENT: // maybe not supported in future versions
ChallengeIP = 0;
break;
}
PokeUInt32(abyBuffer+m_nMyPublicKeyLen+4, ChallengeIP);
PokeUInt8(abyBuffer+m_nMyPublicKeyLen+4+4, byChaIPKind);
}
//v2 end
bResult = pubkey.VerifyMessage(abyBuffer, m_nMyPublicKeyLen+4+nChIpSize, pachSignature, nInputSize);
}
catch(...)
{
if (thePrefs.GetVerbose())
AddDebugLogLine(false, _T("Error: Unknown exception in %hs"), __FUNCTION__);
//ASSERT(0);
bResult = false;
}
if (!bResult){
if (pTarget->IdentState == IS_IDNEEDED)
pTarget->IdentState = IS_IDFAILED;
}
else{
pTarget->Verified(dwForIP);
}
return bResult;
}
bool CClientCreditsList::CryptoAvailable()
{
return (m_nMyPublicKeyLen > 0 && m_pSignkey != 0 && thePrefs.IsSecureIdentEnabled() );
}
#ifdef _DEBUG
bool CClientCreditsList::Debug_CheckCrypting()
{
// create random key
AutoSeededRandomPool rng;
RSASSA_PKCS1v15_SHA_Signer priv(rng, 384);
RSASSA_PKCS1v15_SHA_Verifier pub(priv);
byte abyPublicKey[80];
ArraySink asink(abyPublicKey, 80);
pub.DEREncode(asink);
uint8 PublicKeyLen = (uint8)asink.TotalPutLength();
asink.MessageEnd();
uint32 challenge = rand();
// create fake client which pretends to be this emule
CreditStruct* newcstruct = new CreditStruct;
memset(newcstruct, 0, sizeof(CreditStruct));
CClientCredits* newcredits = new CClientCredits(newcstruct);
newcredits->SetSecureIdent(m_abyMyPublicKey,m_nMyPublicKeyLen);
newcredits->m_dwCryptRndChallengeFrom = challenge;
// create signature with fake priv key
uchar pachSignature[200];
memset(pachSignature,0,200);
uint8 sigsize = CreateSignature(newcredits,pachSignature,200,0,false, &priv);
// next fake client uses the random created public key
CreditStruct* newcstruct2 = new CreditStruct;
memset(newcstruct2, 0, sizeof(CreditStruct));
CClientCredits* newcredits2 = new CClientCredits(newcstruct2);
newcredits2->m_dwCryptRndChallengeFor = challenge;
// if you uncomment one of the following lines the check has to fail
//abyPublicKey[5] = 34;
//m_abyMyPublicKey[5] = 22;
//pachSignature[5] = 232;
newcredits2->SetSecureIdent(abyPublicKey,PublicKeyLen);
//now verify this signature - if it's true everything is fine
bool bResult = VerifyIdent(newcredits2,pachSignature,sigsize,0,0);
delete newcredits;
delete newcredits2;
return bResult;
}
#endif
uint32 CClientCredits::GetSecureWaitStartTime(uint32 dwForIP)
{
if (m_dwUnSecureWaitTime == 0 || m_dwSecureWaitTime == 0)
SetSecWaitStartTime(dwForIP);
if (m_pCredits->nKeySize != 0){ // this client is a SecureHash Client
if (GetCurrentIdentState(dwForIP) == IS_IDENTIFIED){ // good boy
return m_dwSecureWaitTime;
}
else{ // not so good boy
if (dwForIP == m_dwWaitTimeIP){
return m_dwUnSecureWaitTime;
}
else{ // bad boy
// this can also happen if the client has not identified himself yet, but will do later - so maybe he is not a bad boy :) .
CString buffer2, buffer;
/*for (uint16 i = 0;i != 16;i++){
buffer2.Format("%02X",this->m_pCredits->abyKey[i]);
buffer+=buffer2;
}
if (thePrefs.GetLogSecureIdent())
AddDebugLogLine(false,"Warning: WaitTime resetted due to Invalid Ident for Userhash %s", buffer);*/
m_dwUnSecureWaitTime = ::GetTickCount();
m_dwWaitTimeIP = dwForIP;
return m_dwUnSecureWaitTime;
}
}
}
else{ // not a SecureHash Client - handle it like before for now (no security checks)
return m_dwUnSecureWaitTime;
}
}
void CClientCredits::SetSecWaitStartTime(uint32 dwForIP)
{
m_dwUnSecureWaitTime = ::GetTickCount()-1;
m_dwSecureWaitTime = ::GetTickCount()-1;
m_dwWaitTimeIP = dwForIP;
}
void CClientCredits::ClearWaitStartTime()
{
m_dwUnSecureWaitTime = 0;
m_dwSecureWaitTime = 0;
}