2 // This file is part of the aMule Project.
4 // Copyright (c) 2003-2011 aMule Team ( admin@amule.org / http://www.amule.org )
5 // Copyright (c) 2002-2011 Merkur ( devs@emule-project.net / http://www.emule-project.net )
7 // Any parts of this program derived from the xMule, lMule or eMule project,
8 // or contributed by third-party developers are copyrighted by their
11 // This program is free software; you can redistribute it and/or modify
12 // it under the terms of the GNU General Public License as published by
13 // the Free Software Foundation; either version 2 of the License, or
14 // (at your option) any later version.
16 // This program is distributed in the hope that it will be useful,
17 // but WITHOUT ANY WARRANTY; without even the implied warranty of
18 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 // GNU General Public License for more details.
21 // You should have received a copy of the GNU General Public License
22 // along with this program; if not, write to the Free Software
23 // Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
26 #include "updownclient.h" // Needed for CUpDownClient
28 #include <protocol/Protocols.h>
29 #include <protocol/ed2k/Client2Client/TCP.h>
33 #include "ClientCredits.h" // Needed for CClientCredits
34 #include "Packet.h" // Needed for CPacket
35 #include "MemFile.h" // Needed for CMemFile
36 #include "UploadQueue.h" // Needed for CUploadQueue
37 #include "DownloadQueue.h" // Needed for CDownloadQueue
38 #include "PartFile.h" // Needed for PR_POWERSHARE
39 #include "ClientTCPSocket.h" // Needed for CClientTCPSocket
40 #include "SharedFileList.h" // Needed for CSharedFileList
41 #include "amule.h" // Needed for theApp
42 #include "ClientList.h"
43 #include "Statistics.h" // Needed for theStats
45 #include "ScopedPtr.h" // Needed for CScopedArray
46 #include "GuiEvents.h" // Needed for Notify_*
47 #include "FileArea.h" // Needed for CFileArea
50 // members of CUpDownClient
51 // which are mainly used for uploading functions
53 void CUpDownClient::SetUploadState(uint8 eNewState
)
55 if (eNewState
!= m_nUploadState
) {
56 if (m_nUploadState
== US_UPLOADING
) {
57 // Reset upload data rate computation
59 m_nSumForAvgUpDataRate
= 0;
60 m_AvarageUDR_list
.clear();
62 if (eNewState
== US_UPLOADING
) {
63 m_fSentOutOfPartReqs
= 0;
66 // don't add any final cleanups for US_NONE here
67 m_nUploadState
= eNewState
;
68 UpdateDisplayedInfo(true);
72 uint32
CUpDownClient::CalculateScoreInternal()
74 //TODO: complete this (friends, uploadspeed, amuleuser etc etc)
75 if (m_Username
.IsEmpty()) {
83 const CKnownFile
* pFile
= GetUploadFile();
88 // bad clients (see note in function)
94 if (IsFriend() && GetFriendSlot() && !HasLowID()) {
101 // score applies only to waiting clients, not to downloading clients
102 if (IsDownloading()) {
106 // calculate score, based on waitingtime and other factors
107 float fBaseValue
= (float)(::GetTickCount()-GetWaitStartTime())/1000;
109 fBaseValue
*= GetScoreRatio(); // credits
111 // Take file upload priority into account
113 // One yet unsolved problem here:
114 // sometimes a client asks for 2 files and there is no way to decide, which file the
115 // client finally gets. so it could happen that he is queued first because of a
116 // high prio file, but then asks for something completely different.
118 switch (pFile
->GetUpPriority()) {
120 filepriority
= 250.0f
;
139 fBaseValue
*= filepriority
;
141 if ( (IsEmuleClient() || GetClientSoft() < 10) && m_byEmuleVersion
<= 0x19) {
144 return (uint32
)fBaseValue
;
148 // Checks if it is next requested block from another chunk of the actual file or from another file
151 // true : Next requested block is from another different chunk or file than last downloaded block
152 // false: Next requested block is from same chunk that last downloaded block
153 bool CUpDownClient::IsDifferentPartBlock() const // [Tarod 12/22/2002]
155 bool different_part
= false;
157 // Check if we have good lists and proceed to check for different chunks
158 if ((!m_BlockRequests_queue
.empty()) && !m_DoneBlocks_list
.empty())
160 Requested_Block_Struct
* last_done_block
= NULL
;
161 Requested_Block_Struct
* next_requested_block
= NULL
;
162 uint64 last_done_part
= 0xffffffff;
163 uint64 next_requested_part
= 0xffffffff;
166 // Get last block and next pending
167 last_done_block
= m_DoneBlocks_list
.front();
168 next_requested_block
= m_BlockRequests_queue
.front();
170 // Calculate corresponding parts to blocks
171 last_done_part
= last_done_block
->StartOffset
/ PARTSIZE
;
172 next_requested_part
= next_requested_block
->StartOffset
/ PARTSIZE
;
174 // Test is we are asking same file and same part
175 if ( last_done_part
!= next_requested_part
) {
176 different_part
= true;
177 AddDebugLogLineN(logClient
, wxT("Session ended due to new chunk."));
180 if (md4cmp(last_done_block
->FileID
, next_requested_block
->FileID
) != 0) {
181 different_part
= true;
182 AddDebugLogLineN(logClient
, wxT("Session ended due to different file."));
186 return different_part
;
190 void CUpDownClient::CreateNextBlockPackage()
193 // Buffer new data if current buffer is less than 100 KBytes
194 while (!m_BlockRequests_queue
.empty()
195 && m_addedPayloadQueueSession
- m_nCurQueueSessionPayloadUp
< 100*1024) {
197 Requested_Block_Struct
* currentblock
= m_BlockRequests_queue
.front();
198 CKnownFile
* srcfile
= theApp
->sharedfiles
->GetFileByID(CMD4Hash(currentblock
->FileID
));
201 throw wxString(wxT("requested file not found"));
204 // Check if this know file is a CPartFile.
205 // For completed part files IsPartFile() returns false, so they are
206 // correctly treated as plain CKnownFile.
207 CPartFile
* srcPartFile
= srcfile
->IsPartFile() ? static_cast<CPartFile
*>(srcfile
) : NULL
;
209 // THIS EndOffset points BEHIND the last byte requested
210 // (other than the offsets used in the PartFile code)
211 if (currentblock
->EndOffset
> srcfile
->GetFileSize()) {
212 throw wxString(CFormat(wxT("Asked for data up to %d beyond end of file (%d)"))
213 % currentblock
->EndOffset
% srcfile
->GetFileSize());
214 } else if (currentblock
->StartOffset
> currentblock
->EndOffset
) {
215 throw wxString(CFormat(wxT("Asked for invalid block (start %d > end %d)"))
216 % currentblock
->StartOffset
% currentblock
->EndOffset
);
219 uint64 togo
= currentblock
->EndOffset
- currentblock
->StartOffset
;
221 if (togo
> EMBLOCKSIZE
* 3) {
222 throw wxString(CFormat(wxT("Client requested too large block (%d > %d)"))
223 % togo
% (EMBLOCKSIZE
* 3));
228 if (!srcPartFile
->IsComplete(currentblock
->StartOffset
,currentblock
->EndOffset
-1)) {
229 throw wxString(CFormat(wxT("Asked for incomplete block (%d - %d)"))
230 % currentblock
->StartOffset
% (currentblock
->EndOffset
-1));
232 if (!srcPartFile
->ReadData(area
, currentblock
->StartOffset
, togo
)) {
233 throw wxString(wxT("Failed to read from requested partfile"));
237 CPath fullname
= srcfile
->GetFilePath().JoinPaths(srcfile
->GetFileName());
238 if ( !file
.Open(fullname
, CFile::read
) ) {
239 // The file was most likely moved/deleted. So remove it from the list of shared files.
240 AddLogLineN(CFormat( _("Failed to open file (%s), removing from list of shared files.") ) % srcfile
->GetFileName() );
241 theApp
->sharedfiles
->RemoveFile(srcfile
);
243 throw wxString(wxT("Failed to open requested file: Removing from list of shared files!"));
245 area
.ReadAt(file
, currentblock
->StartOffset
, togo
);
249 SetUploadFileID(srcfile
);
251 // check extention to decide whether to compress or not
252 if (m_byDataCompVer
== 1 && GetFiletype(srcfile
->GetFileName()) != ftArchive
) {
253 CreatePackedPackets(area
.GetBuffer(), togo
, currentblock
);
255 CreateStandardPackets(area
.GetBuffer(), togo
, currentblock
);
259 srcfile
->statistic
.AddTransferred(togo
);
261 m_addedPayloadQueueSession
+= togo
;
263 Requested_Block_Struct
* block
= m_BlockRequests_queue
.front();
265 m_BlockRequests_queue
.pop_front();
266 m_DoneBlocks_list
.push_front(block
);
270 } catch (const wxString
& DEBUG_ONLY(error
)) {
271 AddDebugLogLineN(logClient
,
272 CFormat(wxT("Client '%s' (%s) caused error while creating packet (%s) - disconnecting client"))
273 % GetUserName() % GetFullIP() % error
);
274 } catch (const CIOFailureException
& error
) {
275 AddDebugLogLineC(logClient
, wxT("IO failure while reading requested file: ") + error
.what());
276 } catch (const CEOFException
& WXUNUSED(error
)) {
277 AddDebugLogLineN(logClient
, GetClientFullInfo() + wxT(" requested file-data at an invalid position - disconnecting"));
281 theApp
->uploadqueue
->RemoveFromUploadQueue(this);
285 void CUpDownClient::CreateStandardPackets(const uint8_t* buffer
, uint32 togo
, Requested_Block_Struct
* currentblock
)
289 CMemFile
memfile(buffer
, togo
);
291 nPacketSize
= togo
/(uint32
)(togo
/10240);
297 if (togo
< nPacketSize
*2) {
301 wxASSERT(nPacketSize
);
304 uint64 endpos
= (currentblock
->EndOffset
- togo
);
305 uint64 startpos
= endpos
- nPacketSize
;
307 bool bLargeBlocks
= (startpos
> 0xFFFFFFFF) || (endpos
> 0xFFFFFFFF);
309 CMemFile
data(nPacketSize
+ 16 + 2 * (bLargeBlocks
? 8 :4));
310 data
.WriteHash(GetUploadFileID());
312 data
.WriteUInt64(startpos
);
313 data
.WriteUInt64(endpos
);
315 data
.WriteUInt32(startpos
);
316 data
.WriteUInt32(endpos
);
318 char *tempbuf
= new char[nPacketSize
];
319 memfile
.Read(tempbuf
, nPacketSize
);
320 data
.Write(tempbuf
, nPacketSize
);
322 CPacket
* packet
= new CPacket(data
, (bLargeBlocks
? OP_EMULEPROT
: OP_EDONKEYPROT
), (bLargeBlocks
? (uint8
)OP_SENDINGPART_I64
: (uint8
)OP_SENDINGPART
));
323 theStats::AddUpOverheadFileRequest(16 + 2 * (bLargeBlocks
? 8 :4));
324 theStats::AddUploadToSoft(GetClientSoft(), nPacketSize
);
325 AddDebugLogLineN(logLocalClient
,
326 CFormat(wxT("Local Client: %s to %s"))
327 % (bLargeBlocks
? wxT("OP_SENDINGPART_I64") : wxT("OP_SENDINGPART")) % GetFullIP() );
328 m_socket
->SendPacket(packet
,true,false, nPacketSize
);
333 void CUpDownClient::CreatePackedPackets(const uint8_t* buffer
, uint32 togo
, Requested_Block_Struct
* currentblock
)
335 uLongf newsize
= togo
+300;
336 CScopedArray
<uint8_t> output(newsize
);
337 uint16 result
= compress2(output
.get(), &newsize
, buffer
, togo
, 9);
338 if (result
!= Z_OK
|| togo
<= newsize
){
339 CreateStandardPackets(buffer
, togo
, currentblock
);
343 CMemFile
memfile(output
.get(), newsize
);
345 uint32 totalPayloadSize
= 0;
346 uint32 oldSize
= togo
;
350 nPacketSize
= togo
/(uint32
)(togo
/10240);
356 if (togo
< nPacketSize
*2) {
361 bool isLargeBlock
= (currentblock
->StartOffset
> 0xFFFFFFFF) || (currentblock
->EndOffset
> 0xFFFFFFFF);
363 CMemFile
data(nPacketSize
+ 16 + (isLargeBlock
? 12 : 8));
364 data
.WriteHash(GetUploadFileID());
366 data
.WriteUInt64(currentblock
->StartOffset
);
368 data
.WriteUInt32(currentblock
->StartOffset
);
370 data
.WriteUInt32(newsize
);
371 char *tempbuf
= new char[nPacketSize
];
372 memfile
.Read(tempbuf
, nPacketSize
);
373 data
.Write(tempbuf
,nPacketSize
);
375 CPacket
* packet
= new CPacket(data
, OP_EMULEPROT
, (isLargeBlock
? OP_COMPRESSEDPART_I64
: OP_COMPRESSEDPART
));
377 // approximate payload size
378 uint32 payloadSize
= nPacketSize
*oldSize
/newsize
;
380 if (togo
== 0 && totalPayloadSize
+payloadSize
< oldSize
) {
381 payloadSize
= oldSize
-totalPayloadSize
;
384 totalPayloadSize
+= payloadSize
;
386 // put packet directly on socket
387 theStats::AddUpOverheadFileRequest(24);
388 theStats::AddUploadToSoft(GetClientSoft(), nPacketSize
);
389 AddDebugLogLineN(logLocalClient
,
390 CFormat(wxT("Local Client: %s to %s"))
391 % (isLargeBlock
? wxT("OP_COMPRESSEDPART_I64") : wxT("OP_COMPRESSEDPART")) % GetFullIP() );
392 m_socket
->SendPacket(packet
,true,false, payloadSize
);
397 void CUpDownClient::ProcessExtendedInfo(const CMemFile
*data
, CKnownFile
*tempreqfile
)
399 m_uploadingfile
->UpdateUpPartsFrequency( this, false ); // Decrement
400 m_upPartStatus
.clear();
401 m_nUpCompleteSourcesCount
= 0;
403 if( GetExtendedRequestsVersion() == 0 ) {
404 // Something is coded wrong on this client if he's sending something it doesn't advertise.
408 if (data
->GetLength() == 16) {
409 // Wrong again. Advertised >0 but send a 0-type packet.
410 // But this time we'll disconnect it.
411 throw CInvalidPacket(wxT("Wrong size on extended info packet"));
414 uint16 nED2KUpPartCount
= data
->ReadUInt16();
415 if (!nED2KUpPartCount
) {
416 m_upPartStatus
.setsize( tempreqfile
->GetPartCount(), 0 );
418 if (tempreqfile
->GetED2KPartCount() != nED2KUpPartCount
) {
419 // We already checked if we are talking about the same file.. So if we get here, something really strange happened!
420 m_upPartStatus
.clear();
424 m_upPartStatus
.setsize( tempreqfile
->GetPartCount(), 0 );
428 while (done
!= m_upPartStatus
.size()) {
429 uint8 toread
= data
->ReadUInt8();
430 for (sint32 i
= 0;i
!= 8;i
++){
431 m_upPartStatus
.set(done
, (toread
>>i
)&1);
432 // We may want to use this for another feature..
433 // if (m_upPartStatus[done] && !tempreqfile->IsComplete(done*PARTSIZE,((done+1)*PARTSIZE)-1))
434 // bPartsNeeded = true;
436 if (done
== m_upPartStatus
.size()) {
442 // We want the increment the frequency even if we didn't read everything
443 m_uploadingfile
->UpdateUpPartsFrequency( this, true ); // Increment
448 if (GetExtendedRequestsVersion() > 1) {
449 uint16 nCompleteCountLast
= GetUpCompleteSourcesCount();
450 uint16 nCompleteCountNew
= data
->ReadUInt16();
451 SetUpCompleteSourcesCount(nCompleteCountNew
);
452 if (nCompleteCountLast
!= nCompleteCountNew
) {
453 tempreqfile
->UpdatePartsInfo();
458 m_uploadingfile
->UpdateUpPartsFrequency( this, true ); // Increment
460 Notify_SharedCtrlRefreshClient(ECID(), AVAILABLE_SOURCE
);
464 void CUpDownClient::SetUploadFileID(CKnownFile
* newreqfile
)
466 if (m_uploadingfile
== newreqfile
) {
468 } else if (m_uploadingfile
) {
469 m_uploadingfile
->RemoveUploadingClient(this);
470 m_uploadingfile
->UpdateUpPartsFrequency(this, false); // Decrement
474 // This is a new file! update info
475 newreqfile
->AddUploadingClient(this);
477 if (m_requpfileid
!= newreqfile
->GetFileHash()) {
478 m_requpfileid
= newreqfile
->GetFileHash();
479 m_upPartStatus
.setsize( newreqfile
->GetPartCount(), 0 );
481 // this is the same file we already had assigned. Only update data.
482 newreqfile
->UpdateUpPartsFrequency(this, true); // Increment
485 m_uploadingfile
= newreqfile
;
487 m_upPartStatus
.clear();
488 m_nUpCompleteSourcesCount
= 0;
489 // This clears m_uploadingfile and m_requpfileid
495 void CUpDownClient::AddReqBlock(Requested_Block_Struct
* reqblock
)
497 if (GetUploadState() != US_UPLOADING
) {
498 AddDebugLogLineN(logRemoteClient
, wxT("UploadClient: Client tried to add requested block when not in upload slot! Prevented requested blocks from being added."));
504 std::list
<Requested_Block_Struct
*>::iterator it
= m_DoneBlocks_list
.begin();
505 for (; it
!= m_DoneBlocks_list
.end(); ++it
) {
506 if (reqblock
->StartOffset
== (*it
)->StartOffset
&& reqblock
->EndOffset
== (*it
)->EndOffset
) {
514 std::list
<Requested_Block_Struct
*>::iterator it
= m_BlockRequests_queue
.begin();
515 for (; it
!= m_BlockRequests_queue
.end(); ++it
) {
516 if (reqblock
->StartOffset
== (*it
)->StartOffset
&& reqblock
->EndOffset
== (*it
)->EndOffset
) {
523 m_BlockRequests_queue
.push_back(reqblock
);
527 uint32
CUpDownClient::GetWaitStartTime() const
532 dwResult
= credits
->GetSecureWaitStartTime(GetIP());
534 if (dwResult
> m_dwUploadTime
&& IsDownloading()) {
535 // This happens only if two clients with invalid securehash are in the queue - if at all
536 dwResult
= m_dwUploadTime
- 1;
544 void CUpDownClient::SetWaitStartTime()
547 credits
->SetSecWaitStartTime(GetIP());
552 void CUpDownClient::ClearWaitStartTime()
555 credits
->ClearWaitStartTime();
560 void CUpDownClient::ResetSessionUp()
562 m_nCurSessionUp
= m_nTransferredUp
;
563 m_addedPayloadQueueSession
= 0;
564 m_nCurQueueSessionPayloadUp
= 0;
565 // If upload was resumed there can be a remaining payload in the socket
566 // causing (prepared - sent) getting negative. So reset the counter here.
568 CEMSocket
* s
= m_socket
;
569 s
->GetSentPayloadSinceLastCallAndReset();
574 uint32
CUpDownClient::SendBlockData()
576 uint32 curTick
= ::GetTickCount();
577 uint64 sentBytesCompleteFile
= 0;
578 uint64 sentBytesPartFile
= 0;
579 uint64 sentBytesPayload
= 0;
582 CEMSocket
* s
= m_socket
;
583 // uint32 uUpStatsPort = GetUserPort();
585 // Extended statistics information based on which client software and which port we sent this data to...
586 // This also updates the grand total for sent bytes, etc. And where this data came from.
587 sentBytesCompleteFile
= s
->GetSentBytesCompleteFileSinceLastCallAndReset();
588 sentBytesPartFile
= s
->GetSentBytesPartFileSinceLastCallAndReset();
589 // thePrefs.Add2SessionTransferData(GetClientSoft(), uUpStatsPort, false, true, sentBytesCompleteFile, (IsFriend() && GetFriendSlot()));
590 // thePrefs.Add2SessionTransferData(GetClientSoft(), uUpStatsPort, true, true, sentBytesPartFile, (IsFriend() && GetFriendSlot()));
592 m_nTransferredUp
+= sentBytesCompleteFile
+ sentBytesPartFile
;
593 credits
->AddUploaded(sentBytesCompleteFile
+ sentBytesPartFile
, GetIP(), theApp
->CryptoAvailable());
595 sentBytesPayload
= s
->GetSentPayloadSinceLastCallAndReset();
596 m_nCurQueueSessionPayloadUp
+= sentBytesPayload
;
598 if (theApp
->uploadqueue
->CheckForTimeOver(this)) {
599 theApp
->uploadqueue
->RemoveFromUploadQueue(this);
600 SendOutOfPartReqsAndAddToWaitingQueue();
602 // read blocks from file and put on socket
603 CreateNextBlockPackage();
607 if(sentBytesCompleteFile
+ sentBytesPartFile
> 0 ||
608 m_AvarageUDR_list
.empty() || (curTick
- m_AvarageUDR_list
.back().timestamp
) > 1*1000) {
609 // Store how much data we've transferred this round,
610 // to be able to calculate average speed later
611 // keep sum of all values in list up to date
612 TransferredData newitem
= {(uint32
) (sentBytesCompleteFile
+ sentBytesPartFile
), curTick
};
613 m_AvarageUDR_list
.push_back(newitem
);
614 m_nSumForAvgUpDataRate
+= sentBytesCompleteFile
+ sentBytesPartFile
;
617 // remove to old values in list
618 while ((!m_AvarageUDR_list
.empty()) && (curTick
- m_AvarageUDR_list
.front().timestamp
) > 10*1000) {
619 // keep sum of all values in list up to date
620 m_nSumForAvgUpDataRate
-= m_AvarageUDR_list
.front().datalen
;
621 m_AvarageUDR_list
.pop_front();
624 // Calculate average speed for this slot
625 if ((!m_AvarageUDR_list
.empty()) && (curTick
- m_AvarageUDR_list
.front().timestamp
) > 0 && GetUpStartTimeDelay() > 2*1000) {
626 m_nUpDatarate
= ((uint64
)m_nSumForAvgUpDataRate
*1000) / (curTick
-m_AvarageUDR_list
.front().timestamp
);
628 // not enough values to calculate trustworthy speed. Use -1 to tell this
629 m_nUpDatarate
= 0; //-1;
632 // Check if it's time to update the display.
634 if (m_cSendblock
== 30){
636 Notify_SharedCtrlRefreshClient(ECID(), AVAILABLE_SOURCE
);
639 return sentBytesCompleteFile
+ sentBytesPartFile
;
643 void CUpDownClient::SendOutOfPartReqsAndAddToWaitingQueue()
645 // Kry - this is actually taken from eMule, but makes a lot of sense ;)
647 //OP_OUTOFPARTREQS will tell the downloading client to go back to OnQueue..
648 //The main reason for this is that if we put the client back on queue and it goes
649 //back to the upload before the socket times out... We get a situation where the
650 //downloader thinks it already sent the requested blocks and the uploader thinks
651 //the downloader didn't send any request blocks. Then the connection times out..
652 //I did some tests with eDonkey also and it seems to work well with them also..
654 // Send this inmediately, don't queue.
655 CPacket
* pPacket
= new CPacket(OP_OUTOFPARTREQS
, 0, OP_EDONKEYPROT
);
656 theStats::AddUpOverheadFileRequest(pPacket
->GetPacketSize());
657 AddDebugLogLineN( logLocalClient
, wxT("Local Client: OP_OUTOFPARTREQS to ") + GetFullIP() );
658 SendPacket(pPacket
, true, true);
660 theApp
->uploadqueue
->AddClientToQueue(this);
665 * See description for CEMSocket::TruncateQueues().
667 void CUpDownClient::FlushSendBlocks()
669 // Call this when you stop upload, or the socket might be not able to send
670 if (m_socket
) { //socket may be NULL...
671 m_socket
->TruncateQueues();
676 void CUpDownClient::SendHashsetPacket(const CMD4Hash
& forfileid
)
678 CKnownFile
* file
= theApp
->sharedfiles
->GetFileByID( forfileid
);
679 bool from_dq
= false;
682 if ((file
= theApp
->downloadqueue
->GetFileByID(forfileid
)) == NULL
) {
683 AddLogLineN(CFormat( _("Hashset requested for unknown file: %s") ) % forfileid
.Encode() );
689 if ( !file
->GetHashCount() ) {
691 AddDebugLogLineN(logRemoteClient
, wxT("Requested hashset could not be found"));
694 file
= theApp
->downloadqueue
->GetFileByID(forfileid
);
695 if (!(file
&& file
->GetHashCount())) {
696 AddDebugLogLineN(logRemoteClient
, wxT("Requested hashset could not be found"));
703 data
.WriteHash(file
->GetFileHash());
704 uint16 parts
= file
->GetHashCount();
705 data
.WriteUInt16(parts
);
706 for (int i
= 0; i
!= parts
; i
++) {
707 data
.WriteHash(file
->GetPartHash(i
));
709 CPacket
* packet
= new CPacket(data
, OP_EDONKEYPROT
, OP_HASHSETANSWER
);
710 theStats::AddUpOverheadFileRequest(packet
->GetPacketSize());
711 AddDebugLogLineN(logLocalClient
, wxT("Local Client: OP_HASHSETANSWER to ") + GetFullIP());
712 SendPacket(packet
,true,true);
716 void CUpDownClient::ClearUploadBlockRequests()
719 DeleteContents(m_BlockRequests_queue
);
720 DeleteContents(m_DoneBlocks_list
);
723 void CUpDownClient::SendRankingInfo(){
724 if (!ExtProtocolAvailable()) {
728 uint16 nRank
= GetUploadQueueWaitingPosition();
734 data
.WriteUInt16(nRank
);
735 // Kry: what are these zero bytes for. are they really correct?
736 // Kry - Well, eMule does like that. I guess they're ok.
737 data
.WriteUInt32(0); data
.WriteUInt32(0); data
.WriteUInt16(0);
738 CPacket
* packet
= new CPacket(data
, OP_EMULEPROT
, OP_QUEUERANKING
);
739 theStats::AddUpOverheadOther(packet
->GetPacketSize());
740 AddDebugLogLineN(logLocalClient
, wxT("Local Client: OP_QUEUERANKING to ") + GetFullIP());
741 SendPacket(packet
,true,true);
745 void CUpDownClient::SendCommentInfo(CKnownFile
* file
)
747 if (!m_bCommentDirty
|| file
== NULL
|| !ExtProtocolAvailable() || m_byAcceptCommentVer
< 1) {
750 m_bCommentDirty
= false;
752 // Truncate to max len.
753 wxString desc
= file
->GetFileComment().Left(MAXFILECOMMENTLEN
);
754 uint8 rating
= file
->GetFileRating();
756 if ( file
->GetFileRating() == 0 && desc
.IsEmpty() ) {
761 data
.WriteUInt8(rating
);
762 data
.WriteString(desc
, GetUnicodeSupport(), 4 /* size it's uint32 */);
764 CPacket
* packet
= new CPacket(data
, OP_EMULEPROT
, OP_FILEDESC
);
765 theStats::AddUpOverheadOther(packet
->GetPacketSize());
766 AddDebugLogLineN(logLocalClient
, wxT("Local Client: OP_FILEDESC to ") + GetFullIP());
767 SendPacket(packet
,true);
770 void CUpDownClient::UnBan(){
771 m_Aggressiveness
= 0;
773 theApp
->clientlist
->AddTrackClient(this);
774 theApp
->clientlist
->RemoveBannedClient( GetIP() );
775 SetUploadState(US_NONE
);
776 ClearWaitStartTime();
779 void CUpDownClient::Ban(){
780 theApp
->clientlist
->AddTrackClient(this);
781 theApp
->clientlist
->AddBannedClient( GetIP() );
783 AddDebugLogLineN(logClient
, wxT("Client '") + GetUserName() + wxT("' seems to be an aggressive client and is banned from the uploadqueue"));
785 SetUploadState(US_BANNED
);
787 Notify_SharedCtrlRefreshClient(ECID(), UNAVAILABLE_SOURCE
);
790 bool CUpDownClient::IsBanned() const
792 return ( (theApp
->clientlist
->IsBannedClient(GetIP()) ) && m_nDownloadState
!= DS_DOWNLOADING
);
795 void CUpDownClient::CheckForAggressive()
797 uint32 cur_time
= ::GetTickCount();
799 // First call, initalize
800 if ( !m_LastFileRequest
) {
801 m_LastFileRequest
= cur_time
;
805 // Is this an aggressive request?
806 if ( ( cur_time
- m_LastFileRequest
) < MIN_REQUESTTIME
) {
807 m_Aggressiveness
+= 3;
809 // Is the client EVIL?
810 if ( m_Aggressiveness
>= 10 && (!IsBanned() && m_nDownloadState
!= DS_DOWNLOADING
)) {
811 AddDebugLogLineN(logClient
, CFormat( wxT("Aggressive client banned (score: %d): %s -- %s -- %s") )
815 % m_fullClientVerString
);
819 // Polite request, reward client
820 if ( m_Aggressiveness
)
824 m_LastFileRequest
= cur_time
;
828 void CUpDownClient::SetUploadFileID(const CMD4Hash
& new_id
)
830 // Update the uploading file found
831 CKnownFile
* uploadingfile
= theApp
->sharedfiles
->GetFileByID(new_id
);
832 if ( !uploadingfile
) {
833 // Can this really happen?
834 uploadingfile
= theApp
->downloadqueue
->GetFileByID(new_id
);
836 SetUploadFileID(uploadingfile
); // This will update queue count on old and new file.
839 void CUpDownClient::ProcessRequestPartsPacket(const uint8_t* pachPacket
, uint32 nSize
, bool largeblocks
) {
841 CMemFile
data(pachPacket
, nSize
);
843 CMD4Hash reqfilehash
= data
.ReadHash();
845 uint64 auStartOffsets
[3];
846 uint64 auEndOffsets
[3];
849 auStartOffsets
[0] = data
.ReadUInt64();
850 auStartOffsets
[1] = data
.ReadUInt64();
851 auStartOffsets
[2] = data
.ReadUInt64();
853 auEndOffsets
[0] = data
.ReadUInt64();
854 auEndOffsets
[1] = data
.ReadUInt64();
855 auEndOffsets
[2] = data
.ReadUInt64();
857 auStartOffsets
[0] = data
.ReadUInt32();
858 auStartOffsets
[1] = data
.ReadUInt32();
859 auStartOffsets
[2] = data
.ReadUInt32();
861 auEndOffsets
[0] = data
.ReadUInt32();
862 auEndOffsets
[1] = data
.ReadUInt32();
863 auEndOffsets
[2] = data
.ReadUInt32();
866 for (unsigned int i
= 0; i
< itemsof(auStartOffsets
); i
++) {
867 AddDebugLogLineN(logClient
,
868 CFormat(wxT("Client %s requests %d File block %d-%d (%d bytes):"))
869 % GetFullIP() % i
% auStartOffsets
[i
] % auEndOffsets
[i
]
870 % (auEndOffsets
[i
] - auStartOffsets
[i
]));
871 if (auEndOffsets
[i
] > auStartOffsets
[i
]) {
872 Requested_Block_Struct
* reqblock
= new Requested_Block_Struct
;
873 reqblock
->StartOffset
= auStartOffsets
[i
];
874 reqblock
->EndOffset
= auEndOffsets
[i
];
875 md4cpy(reqblock
->FileID
, reqfilehash
.GetHash());
876 reqblock
->transferred
= 0;
877 AddReqBlock(reqblock
);
879 if (auEndOffsets
[i
] != 0 || auStartOffsets
[i
] != 0) {
880 AddDebugLogLineN(logClient
, wxT("Client request is invalid!"));
886 void CUpDownClient::ProcessRequestPartsPacketv2(const CMemFile
& data
) {
888 CMD4Hash reqfilehash
= data
.ReadHash();
890 uint8 numblocks
= data
.ReadUInt8();
892 for (int i
= 0; i
< numblocks
; i
++) {
893 Requested_Block_Struct
* reqblock
= new Requested_Block_Struct
;
895 reqblock
->StartOffset
= data
.GetIntTagValue();
896 // We have to do +1, because the block matching uses that.
897 reqblock
->EndOffset
= data
.GetIntTagValue() + 1;
898 if ((reqblock
->StartOffset
|| reqblock
->EndOffset
) && (reqblock
->StartOffset
> reqblock
->EndOffset
)) {
899 AddDebugLogLineN(logClient
, CFormat(wxT("Client %s request is invalid! %d / %d"))
900 % GetFullIP() % reqblock
->StartOffset
% reqblock
->EndOffset
);
901 throw wxString(wxT("Client request is invalid!"));
904 AddDebugLogLineN(logClient
,
905 CFormat(wxT("Client %s requests %d File block %d-%d (%d bytes):"))
906 % GetFullIP() % i
% reqblock
->StartOffset
% reqblock
->EndOffset
907 % (reqblock
->EndOffset
- reqblock
->StartOffset
));
909 md4cpy(reqblock
->FileID
, reqfilehash
.GetHash());
910 reqblock
->transferred
= 0;
911 AddReqBlock(reqblock
);
918 // File_checked_for_headers