1 | /* |
---|
2 | * This file Copyright (C) 2009-2010 Mnemosyne LLC |
---|
3 | * |
---|
4 | * This file is licensed by the GPL version 2. Works owned by the |
---|
5 | * Transmission project are granted a special exemption to clause 2(b) |
---|
6 | * so that the bulk of its code can remain under the MIT license. |
---|
7 | * This exemption does not extend to derived works not owned by |
---|
8 | * the Transmission project. |
---|
9 | * |
---|
10 | * $Id: torrent.h 10937 2010-07-04 06:07:21Z charles $ |
---|
11 | */ |
---|
12 | |
---|
13 | #ifndef __TRANSMISSION__ |
---|
14 | #error only libtransmission should #include this header. |
---|
15 | #endif |
---|
16 | |
---|
17 | #ifndef TR_TORRENT_H |
---|
18 | #define TR_TORRENT_H 1 |
---|
19 | |
---|
20 | #include "completion.h" /* tr_completion */ |
---|
21 | #include "session.h" /* tr_sessionLock(), tr_sessionUnlock() */ |
---|
22 | #include "utils.h" /* TR_GNUC_PRINTF */ |
---|
23 | |
---|
24 | struct tr_bandwidth; |
---|
25 | struct tr_torrent_tiers; |
---|
26 | struct tr_magnet_info; |
---|
27 | |
---|
28 | /** |
---|
29 | *** Package-visible ctor API |
---|
30 | **/ |
---|
31 | |
---|
32 | void tr_ctorSetSave( tr_ctor * ctor, |
---|
33 | tr_bool saveMetadataInOurTorrentsDir ); |
---|
34 | |
---|
35 | int tr_ctorGetSave( const tr_ctor * ctor ); |
---|
36 | |
---|
37 | void tr_ctorInitTorrentPriorities( const tr_ctor * ctor, tr_torrent * tor ); |
---|
38 | |
---|
39 | void tr_ctorInitTorrentWanted( const tr_ctor * ctor, tr_torrent * tor ); |
---|
40 | |
---|
41 | /** |
---|
42 | *** |
---|
43 | **/ |
---|
44 | |
---|
45 | /* just like tr_torrentSetFileDLs but doesn't trigger a fastresume save */ |
---|
46 | void tr_torrentInitFileDLs( tr_torrent * tor, |
---|
47 | const tr_file_index_t * files, |
---|
48 | tr_file_index_t fileCount, |
---|
49 | tr_bool do_download ); |
---|
50 | |
---|
51 | void tr_torrentRecheckCompleteness( tr_torrent * ); |
---|
52 | |
---|
53 | void tr_torrentSetHasPiece( tr_torrent * tor, |
---|
54 | tr_piece_index_t pieceIndex, |
---|
55 | tr_bool has ); |
---|
56 | |
---|
57 | void tr_torrentChangeMyPort( tr_torrent * session ); |
---|
58 | |
---|
59 | tr_torrent* tr_torrentFindFromHashString( tr_session * session, |
---|
60 | const char * hashString ); |
---|
61 | |
---|
62 | tr_torrent* tr_torrentFindFromObfuscatedHash( tr_session * session, |
---|
63 | const uint8_t * hash ); |
---|
64 | |
---|
65 | tr_bool tr_torrentIsPieceTransferAllowed( const tr_torrent * torrent, |
---|
66 | tr_direction direction ); |
---|
67 | |
---|
68 | |
---|
69 | |
---|
70 | #define tr_block( a, b ) _tr_block( tor, a, b ) |
---|
71 | tr_block_index_t _tr_block( const tr_torrent * tor, |
---|
72 | tr_piece_index_t index, |
---|
73 | uint32_t offset ); |
---|
74 | |
---|
75 | tr_bool tr_torrentReqIsValid( const tr_torrent * tor, |
---|
76 | tr_piece_index_t index, |
---|
77 | uint32_t offset, |
---|
78 | uint32_t length ); |
---|
79 | |
---|
80 | uint64_t tr_pieceOffset( const tr_torrent * tor, |
---|
81 | tr_piece_index_t index, |
---|
82 | uint32_t offset, |
---|
83 | uint32_t length ); |
---|
84 | |
---|
85 | void tr_torrentInitFilePriority( tr_torrent * tor, |
---|
86 | tr_file_index_t fileIndex, |
---|
87 | tr_priority_t priority ); |
---|
88 | |
---|
89 | int tr_torrentCountUncheckedPieces( const tr_torrent * ); |
---|
90 | |
---|
91 | tr_bool tr_torrentIsFileChecked( const tr_torrent * tor, |
---|
92 | tr_file_index_t file ); |
---|
93 | |
---|
94 | void tr_torrentSetPieceChecked( tr_torrent * tor, |
---|
95 | tr_piece_index_t piece, |
---|
96 | tr_bool isChecked ); |
---|
97 | |
---|
98 | void tr_torrentSetFileChecked( tr_torrent * tor, |
---|
99 | tr_file_index_t file, |
---|
100 | tr_bool isChecked ); |
---|
101 | |
---|
102 | void tr_torrentUncheck( tr_torrent * tor ); |
---|
103 | |
---|
104 | time_t* tr_torrentGetMTimes( const tr_torrent * tor, |
---|
105 | size_t * setmeCount ); |
---|
106 | |
---|
107 | tr_torrent* tr_torrentNext( tr_session * session, |
---|
108 | tr_torrent * current ); |
---|
109 | |
---|
110 | void tr_torrentCheckSeedRatio( tr_torrent * tor ); |
---|
111 | |
---|
112 | /** save a torrent's .resume file if it's changed since the last time it was saved */ |
---|
113 | void tr_torrentSave( tr_torrent * tor ); |
---|
114 | |
---|
115 | void tr_torrentSetLocalError( tr_torrent * tor, const char * fmt, ... ) TR_GNUC_PRINTF( 2, 3 ); |
---|
116 | |
---|
117 | |
---|
118 | |
---|
119 | typedef enum |
---|
120 | { |
---|
121 | TR_VERIFY_NONE, |
---|
122 | TR_VERIFY_WAIT, |
---|
123 | TR_VERIFY_NOW |
---|
124 | } |
---|
125 | tr_verify_state; |
---|
126 | |
---|
127 | void tr_torrentSetVerifyState( tr_torrent * tor, |
---|
128 | tr_verify_state state ); |
---|
129 | |
---|
130 | tr_torrent_activity tr_torrentGetActivity( tr_torrent * tor ); |
---|
131 | |
---|
132 | struct tr_incomplete_metadata; |
---|
133 | |
---|
134 | /** @brief Torrent object */ |
---|
135 | struct tr_torrent |
---|
136 | { |
---|
137 | tr_session * session; |
---|
138 | tr_info info; |
---|
139 | |
---|
140 | int magicNumber; |
---|
141 | |
---|
142 | tr_stat_errtype error; |
---|
143 | char errorString[128]; |
---|
144 | char errorTracker[128]; |
---|
145 | |
---|
146 | uint8_t obfuscatedHash[SHA_DIGEST_LENGTH]; |
---|
147 | |
---|
148 | /* Used when the torrent has been created with a magnet link |
---|
149 | * and we're in the process of downloading the metainfo from |
---|
150 | * other peers */ |
---|
151 | struct tr_incomplete_metadata * incompleteMetadata; |
---|
152 | |
---|
153 | /* If the initiator of the connection receives a handshake in which the |
---|
154 | * peer_id does not match the expected peerid, then the initiator is |
---|
155 | * expected to drop the connection. Note that the initiator presumably |
---|
156 | * received the peer information from the tracker, which includes the |
---|
157 | * peer_id that was registered by the peer. The peer_id from the tracker |
---|
158 | * and in the handshake are expected to match. |
---|
159 | */ |
---|
160 | uint8_t * peer_id; |
---|
161 | |
---|
162 | /* Where the files will be when it's complete */ |
---|
163 | char * downloadDir; |
---|
164 | |
---|
165 | /* Where the files are when the torrent is incomplete */ |
---|
166 | char * incompleteDir; |
---|
167 | |
---|
168 | /* Length, in bytes, of the "info" dict in the .torrent file. */ |
---|
169 | int infoDictLength; |
---|
170 | |
---|
171 | /* Offset, in bytes, of the beginning of the "info" dict in the .torrent file. |
---|
172 | * |
---|
173 | * Used by the torrent-magnet code for serving metainfo to peers. |
---|
174 | * This field is lazy-generated and might not be initialized yet. */ |
---|
175 | int infoDictOffset; |
---|
176 | |
---|
177 | /* Where the files are now. |
---|
178 | * This pointer will be equal to downloadDir or incompleteDir */ |
---|
179 | const char * currentDir; |
---|
180 | |
---|
181 | /* How many bytes we ask for per request */ |
---|
182 | uint32_t blockSize; |
---|
183 | tr_block_index_t blockCount; |
---|
184 | |
---|
185 | uint32_t lastBlockSize; |
---|
186 | uint32_t lastPieceSize; |
---|
187 | |
---|
188 | uint16_t blockCountInPiece; |
---|
189 | uint16_t blockCountInLastPiece; |
---|
190 | |
---|
191 | struct tr_completion completion; |
---|
192 | |
---|
193 | struct tr_bitfield checkedPieces; |
---|
194 | tr_completeness completeness; |
---|
195 | |
---|
196 | struct tr_torrent_tiers * tiers; |
---|
197 | |
---|
198 | time_t dhtAnnounceAt; |
---|
199 | time_t dhtAnnounce6At; |
---|
200 | tr_bool dhtAnnounceInProgress; |
---|
201 | tr_bool dhtAnnounce6InProgress; |
---|
202 | |
---|
203 | time_t lpdAnnounceAt; |
---|
204 | |
---|
205 | uint64_t downloadedCur; |
---|
206 | uint64_t downloadedPrev; |
---|
207 | uint64_t uploadedCur; |
---|
208 | uint64_t uploadedPrev; |
---|
209 | uint64_t corruptCur; |
---|
210 | uint64_t corruptPrev; |
---|
211 | |
---|
212 | uint64_t etaDLSpeedCalculatedAt; |
---|
213 | double etaDLSpeed_KBps; |
---|
214 | uint64_t etaULSpeedCalculatedAt; |
---|
215 | double etaULSpeed_KBps; |
---|
216 | |
---|
217 | time_t addedDate; |
---|
218 | time_t activityDate; |
---|
219 | time_t doneDate; |
---|
220 | time_t startDate; |
---|
221 | time_t anyDate; |
---|
222 | |
---|
223 | tr_torrent_metadata_func * metadata_func; |
---|
224 | void * metadata_func_user_data; |
---|
225 | |
---|
226 | tr_torrent_completeness_func * completeness_func; |
---|
227 | void * completeness_func_user_data; |
---|
228 | |
---|
229 | tr_torrent_ratio_limit_hit_func * ratio_limit_hit_func; |
---|
230 | void * ratio_limit_hit_func_user_data; |
---|
231 | |
---|
232 | tr_bool isRunning; |
---|
233 | tr_bool isStopping; |
---|
234 | tr_bool isDeleting; |
---|
235 | tr_bool startAfterVerify; |
---|
236 | tr_bool isDirty; |
---|
237 | |
---|
238 | tr_bool infoDictOffsetIsCached; |
---|
239 | |
---|
240 | uint16_t maxConnectedPeers; |
---|
241 | |
---|
242 | tr_verify_state verifyState; |
---|
243 | |
---|
244 | time_t lastStatTime; |
---|
245 | tr_stat stats; |
---|
246 | |
---|
247 | tr_torrent * next; |
---|
248 | |
---|
249 | int uniqueId; |
---|
250 | |
---|
251 | struct tr_bandwidth * bandwidth; |
---|
252 | |
---|
253 | struct tr_torrent_peers * torrentPeers; |
---|
254 | |
---|
255 | double desiredRatio; |
---|
256 | tr_ratiolimit ratioLimitMode; |
---|
257 | |
---|
258 | uint64_t preVerifyTotal; |
---|
259 | }; |
---|
260 | |
---|
261 | /* get the index of this piece's first block */ |
---|
262 | static inline tr_block_index_t |
---|
263 | tr_torPieceFirstBlock( const tr_torrent * tor, const tr_piece_index_t piece ) |
---|
264 | { |
---|
265 | return piece * tor->blockCountInPiece; |
---|
266 | } |
---|
267 | |
---|
268 | /* what piece index is this block in? */ |
---|
269 | static inline tr_piece_index_t |
---|
270 | tr_torBlockPiece( const tr_torrent * tor, const tr_block_index_t block ) |
---|
271 | { |
---|
272 | return block / tor->blockCountInPiece; |
---|
273 | } |
---|
274 | |
---|
275 | /* how many blocks are in this piece? */ |
---|
276 | static inline uint16_t |
---|
277 | tr_torPieceCountBlocks( const tr_torrent * tor, const tr_piece_index_t piece ) |
---|
278 | { |
---|
279 | if( piece + 1 == tor->info.pieceCount ) |
---|
280 | return tor->blockCountInLastPiece; |
---|
281 | else |
---|
282 | return tor->blockCountInPiece; |
---|
283 | } |
---|
284 | |
---|
285 | /* how many bytes are in this piece? */ |
---|
286 | static inline uint32_t |
---|
287 | tr_torPieceCountBytes( const tr_torrent * tor, const tr_piece_index_t piece ) |
---|
288 | { |
---|
289 | return piece == tor->info.pieceCount - 1 ? tor->lastPieceSize |
---|
290 | : tor->info.pieceSize; |
---|
291 | } |
---|
292 | |
---|
293 | /* how many bytes are in this block? */ |
---|
294 | static inline uint32_t |
---|
295 | tr_torBlockCountBytes( const tr_torrent * tor, const tr_block_index_t block ) |
---|
296 | { |
---|
297 | return block == tor->blockCount - 1 ? tor->lastBlockSize |
---|
298 | : tor->blockSize; |
---|
299 | } |
---|
300 | |
---|
301 | static inline void tr_torrentLock( const tr_torrent * tor ) |
---|
302 | { |
---|
303 | tr_sessionLock( tor->session ); |
---|
304 | } |
---|
305 | |
---|
306 | static inline void tr_torrentUnlock( const tr_torrent * tor ) |
---|
307 | { |
---|
308 | tr_sessionUnlock( tor->session ); |
---|
309 | } |
---|
310 | |
---|
311 | static inline tr_bool |
---|
312 | tr_torrentExists( const tr_session * session, const uint8_t * torrentHash ) |
---|
313 | { |
---|
314 | return tr_torrentFindFromHash( (tr_session*)session, torrentHash ) != NULL; |
---|
315 | } |
---|
316 | |
---|
317 | static inline tr_bool |
---|
318 | tr_torrentIsSeed( const tr_torrent * tor ) |
---|
319 | { |
---|
320 | return tor->completeness != TR_LEECH; |
---|
321 | } |
---|
322 | |
---|
323 | static inline tr_bool tr_torrentIsPrivate( const tr_torrent * tor ) |
---|
324 | { |
---|
325 | return ( tor != NULL ) && tor->info.isPrivate; |
---|
326 | } |
---|
327 | |
---|
328 | static inline tr_bool tr_torrentAllowsPex( const tr_torrent * tor ) |
---|
329 | { |
---|
330 | return ( tor != NULL ) |
---|
331 | && ( tor->session->isPexEnabled ) |
---|
332 | && ( !tr_torrentIsPrivate( tor ) ); |
---|
333 | } |
---|
334 | |
---|
335 | static inline tr_bool tr_torrentAllowsDHT( const tr_torrent * tor ) |
---|
336 | { |
---|
337 | return ( tor != NULL ) |
---|
338 | && ( tr_sessionAllowsDHT( tor->session ) ) |
---|
339 | && ( !tr_torrentIsPrivate( tor ) ); |
---|
340 | } |
---|
341 | |
---|
342 | static inline tr_bool tr_torrentAllowsLPD( const tr_torrent * tor ) |
---|
343 | { |
---|
344 | return ( tor != NULL ) |
---|
345 | && ( tr_sessionAllowsLPD( tor->session ) ) |
---|
346 | && ( !tr_torrentIsPrivate( tor ) ); |
---|
347 | } |
---|
348 | |
---|
349 | static inline tr_bool tr_torrentIsPieceChecked( const tr_torrent * tor, |
---|
350 | tr_piece_index_t i ) |
---|
351 | { |
---|
352 | return tr_bitfieldHasFast( &tor->checkedPieces, i ); |
---|
353 | } |
---|
354 | |
---|
355 | /*** |
---|
356 | **** |
---|
357 | ***/ |
---|
358 | |
---|
359 | enum |
---|
360 | { |
---|
361 | TORRENT_MAGIC_NUMBER = 95549 |
---|
362 | }; |
---|
363 | |
---|
364 | static inline tr_bool tr_isTorrent( const tr_torrent * tor ) |
---|
365 | { |
---|
366 | return ( tor != NULL ) |
---|
367 | && ( tor->magicNumber == TORRENT_MAGIC_NUMBER ) |
---|
368 | && ( tr_isSession( tor->session ) ); |
---|
369 | } |
---|
370 | |
---|
371 | /* set a flag indicating that the torrent's .resume file |
---|
372 | * needs to be saved when the torrent is closed */ |
---|
373 | static inline |
---|
374 | void tr_torrentSetDirty( tr_torrent * tor ) |
---|
375 | { |
---|
376 | assert( tr_isTorrent( tor ) ); |
---|
377 | |
---|
378 | tor->isDirty = TRUE; |
---|
379 | } |
---|
380 | |
---|
381 | static inline |
---|
382 | const char * tr_torrentName( const tr_torrent * tor ) |
---|
383 | { |
---|
384 | assert( tr_isTorrent( tor ) ); |
---|
385 | |
---|
386 | return tor->info.name; |
---|
387 | } |
---|
388 | |
---|
389 | uint32_t tr_getBlockSize( uint32_t pieceSize ); |
---|
390 | |
---|
391 | /** |
---|
392 | * Tell the tr_torrent that one of its files has become complete |
---|
393 | */ |
---|
394 | void tr_torrentFileCompleted( tr_torrent * tor, tr_file_index_t fileNo ); |
---|
395 | |
---|
396 | |
---|
397 | /** |
---|
398 | * @brief Like tr_torrentFindFile(), but splits the filename into base and subpath; |
---|
399 | * |
---|
400 | * If the file is found, "tr_buildPath( base, subpath, NULL )" |
---|
401 | * will generate the complete filename. |
---|
402 | * |
---|
403 | * @return true if the file is found, false otherwise. |
---|
404 | * |
---|
405 | * @param base if the torrent is found, this will be either |
---|
406 | * tor->downloadDir or tor->incompleteDir |
---|
407 | * @param subpath on success, this pointer is assigned a newly-allocated |
---|
408 | * string holding the second half of the filename. |
---|
409 | */ |
---|
410 | tr_bool tr_torrentFindFile2( const tr_torrent *, tr_file_index_t fileNo, |
---|
411 | const char ** base, char ** subpath ); |
---|
412 | |
---|
413 | |
---|
414 | /* Returns a newly-allocated version of the tr_file.name string |
---|
415 | * that's been modified to denote that it's not a complete file yet. |
---|
416 | * In the current implementation this is done by appending ".part" |
---|
417 | * a la Firefox. */ |
---|
418 | char* tr_torrentBuildPartial( const tr_torrent *, tr_file_index_t fileNo ); |
---|
419 | |
---|
420 | /* for when the info dict has been fundamentally changed wrt files, |
---|
421 | * piece size, etc. such as in BEP 9 where peers exchange metadata */ |
---|
422 | void tr_torrentGotNewInfoDict( tr_torrent * tor ); |
---|
423 | |
---|
424 | void tr_torrentSetSpeedLimit_Bps ( tr_torrent *, tr_direction, int Bps ); |
---|
425 | int tr_torrentGetSpeedLimit_Bps ( const tr_torrent *, tr_direction ); |
---|
426 | |
---|
427 | |
---|
428 | #endif |
---|