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
|
/***************************************************************************
* Copyright (C) 2005 by Joris Guisson *
* joris.guisson@gmail.com *
* *
* 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., *
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. *
***************************************************************************/
#include <stdlib.h>
#include <kresolver.h>
#include <util/functions.h>
#include <util/log.h>
#include <ksocketaddress.h>
#include "peermanager.h"
#include "udptracker.h"
#include "torrentcontrol.h"
#include "globals.h"
#include "server.h"
#include "udptrackersocket.h"
using namespace kt;
using namespace KNetwork;
namespace bt
{
UDPTrackerSocket* UDPTracker::socket = 0;
Uint32 UDPTracker::num_instances = 0;
UDPTracker::UDPTracker(const KURL & url,kt::TorrentInterface* tor,const PeerID & id,int tier)
: Tracker(url,tor,id,tier)
{
num_instances++;
if (!socket)
socket = new UDPTrackerSocket();
connection_id = 0;
transaction_id = 0;
interval = 0;
connect(&conn_timer,TQT_SIGNAL(timeout()),this,TQT_SLOT(onConnTimeout()));
connect(socket,TQT_SIGNAL(announceRecieved(Int32, const TQByteArray &)),
this,TQT_SLOT(announceRecieved(Int32, const TQByteArray& )));
connect(socket,TQT_SIGNAL(connectRecieved(Int32, Int64 )),
this,TQT_SLOT(connectRecieved(Int32, Int64 )));
connect(socket,TQT_SIGNAL(error(Int32, const TQString& )),
this,TQT_SLOT(onError(Int32, const TQString& )));
KResolver::resolveAsync(this,TQT_SLOT(onResolverResults(KResolverResults )),
url.host(),TQString::number(url.port()));
}
UDPTracker::~UDPTracker()
{
num_instances--;
if (num_instances == 0)
{
delete socket;
socket = 0;
}
}
void UDPTracker::start()
{
event = STARTED;
conn_timer.stop();
doRequest();
}
void UDPTracker::stop(WaitJob* )
{
if (!started)
return;
event = STOPPED;
conn_timer.stop();
doRequest();
started = false;
}
void UDPTracker::completed()
{
event = COMPLETED;
conn_timer.stop();
doRequest();
}
void UDPTracker::manualUpdate()
{
conn_timer.stop();
if (!started)
event = STARTED;
doRequest();
}
void UDPTracker::connectRecieved(Int32 tid,Int64 cid)
{
if (tid != transaction_id)
return;
connection_id = cid;
n = 0;
sendAnnounce();
}
void UDPTracker::announceRecieved(Int32 tid,const TQByteArray & data)
{
if (tid != transaction_id)
return;
const Uint8* buf = (const Uint8*)data.data();
/*
0 32-bit integer action 1
4 32-bit integer transaction_id
8 32-bit integer interval
12 32-bit integer leechers
16 32-bit integer seeders
20 + 6 * n 32-bit integer IP address
24 + 6 * n 16-bit integer TCP port
20 + 6 * N
*/
interval = ReadInt32(buf,8);
leechers = ReadInt32(buf,12);
seeders = ReadInt32(buf,16);
Uint32 nip = leechers + seeders;
Uint32 j = 0;
for (Uint32 i = 20;i < data.size() && j < nip;i+=6,j++)
{
Uint32 ip = ReadUint32(buf,i);
addPeer(TQString("%1.%2.%3.%4")
.tqarg((ip & (0xFF000000)) >> 24)
.tqarg((ip & (0x00FF0000)) >> 16)
.tqarg((ip & (0x0000FF00)) >> 8)
.tqarg(ip & 0x000000FF),
ReadUint16(buf,i+4));
}
peersReady(this);
connection_id = 0;
conn_timer.stop();
if (event != STOPPED)
{
if (event == STARTED)
started = true;
event = NONE;
requestOK();
}
else
{
stopDone();
requestOK();
}
}
void UDPTracker::onError(Int32 tid,const TQString & error_string)
{
if (tid != transaction_id)
return;
Out(SYS_TRK|LOG_IMPORTANT) << "UDPTracker::error : " << error_string << endl;
requestFailed(error_string);
}
bool UDPTracker::doRequest()
{
Out(SYS_TRK|LOG_NOTICE) << "Doing tracker request to url : " << url << endl;
if (connection_id == 0)
{
n = 0;
sendConnect();
}
else
sendAnnounce();
requestPending();
return true;
}
void UDPTracker::scrape()
{
}
void UDPTracker::sendConnect()
{
transaction_id = socket->newTransactionID();
socket->sendConnect(transaction_id,address);
int tn = 1;
for (int i = 0;i < n;i++)
tn *= 2;
conn_timer.start(60000 * tn,true);
}
void UDPTracker::sendAnnounce()
{
// Out(SYS_TRK|LOG_NOTICE) << "UDPTracker::sendAnnounce()" << endl;
transaction_id = socket->newTransactionID();
/*
0 64-bit integer connection_id
8 32-bit integer action 1
12 32-bit integer transaction_id
16 20-byte string info_hash
36 20-byte string peer_id
56 64-bit integer downloaded
64 64-bit integer left
72 64-bit integer uploaded
80 32-bit integer event
84 32-bit integer IP address 0
88 32-bit integer key
92 32-bit integer num_want -1
96 16-bit integer port
98
*/
Uint32 ev = event;
const TorrentStats & s = tor->getStats();
Uint16 port = Globals::instance().getServer().getPortInUse();
Uint8 buf[98];
WriteInt64(buf,0,connection_id);
WriteInt32(buf,8,ANNOUNCE);
WriteInt32(buf,12,transaction_id);
const SHA1Hash & info_hash = tor->getInfoHash();
memcpy(buf+16,info_hash.getData(),20);
memcpy(buf+36,peer_id.data(),20);
WriteInt64(buf,56,s.trk_bytes_downloaded);
if (ev == COMPLETED)
WriteInt64(buf,64,0);
else
WriteInt64(buf,64,s.bytes_left);
WriteInt64(buf,72,s.trk_bytes_uploaded);
WriteInt32(buf,80,ev);
TQString cip = Tracker::getCustomIP();
if (cip.isNull())
{
WriteUint32(buf,84,0);
}
else
{
KNetwork::KIpAddress addr(cip);
WriteUint32(buf,84,addr.IPv4Addr(true));
}
WriteUint32(buf,88,key);
if (ev != STOPPED)
WriteInt32(buf,92,100);
else
WriteInt32(buf,92,0);
WriteUint16(buf,96,port);
socket->sendAnnounce(transaction_id,buf,address);
}
void UDPTracker::onConnTimeout()
{
if (connection_id)
{
connection_id = 0;
n++;
if (event != STOPPED)
sendConnect();
else
stopDone();
}
else
{
doRequest();
}
}
void UDPTracker::onResolverResults(KResolverResults res)
{
address = res.front().address();
}
}
#include "udptracker.moc"
|