summaryrefslogtreecommitdiff
path: root/trackerlogic.c
diff options
context:
space:
mode:
Diffstat (limited to 'trackerlogic.c')
-rw-r--r--trackerlogic.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/trackerlogic.c b/trackerlogic.c
index 21bd790..ea4b489 100644
--- a/trackerlogic.c
+++ b/trackerlogic.c
@@ -29,7 +29,7 @@
29#include "ot_livesync.h" 29#include "ot_livesync.h"
30 30
31/* Forward declaration */ 31/* Forward declaration */
32size_t return_peers_for_torrent( ot_torrent *torrent, size_t amount, char *reply, PROTO_FLAG proto ); 32size_t return_peers_for_torrent( struct ot_workstruct * ws, ot_torrent *torrent, size_t amount, char *reply, PROTO_FLAG proto );
33 33
34void free_peerlist( ot_peerlist *peer_list ) { 34void free_peerlist( ot_peerlist *peer_list ) {
35 if( peer_list->peers.data ) { 35 if( peer_list->peers.data ) {
@@ -178,7 +178,7 @@ size_t add_peer_to_torrent_and_return_peers( PROTO_FLAG proto, struct ot_workstr
178 } 178 }
179#endif 179#endif
180 180
181 ws->reply_size = return_peers_for_torrent( torrent, amount, ws->reply, proto ); 181 ws->reply_size = return_peers_for_torrent( ws, torrent, amount, ws->reply, proto );
182 mutex_bucket_unlock_by_hash( *ws->hash, delta_torrentcount ); 182 mutex_bucket_unlock_by_hash( *ws->hash, delta_torrentcount );
183 return ws->reply_size; 183 return ws->reply_size;
184} 184}
@@ -210,7 +210,7 @@ static size_t return_peers_all( ot_peerlist *peer_list, char *reply ) {
210 return result; 210 return result;
211} 211}
212 212
213static size_t return_peers_selection( ot_peerlist *peer_list, size_t amount, char *reply ) { 213static size_t return_peers_selection( struct ot_workstruct *ws, ot_peerlist *peer_list, size_t amount, char *reply ) {
214 unsigned int bucket_offset, bucket_index = 0, num_buckets = 1; 214 unsigned int bucket_offset, bucket_index = 0, num_buckets = 1;
215 ot_vector * bucket_list = &peer_list->peers; 215 ot_vector * bucket_list = &peer_list->peers;
216 unsigned int shifted_pc = peer_list->peer_count; 216 unsigned int shifted_pc = peer_list->peer_count;
@@ -232,7 +232,7 @@ static size_t return_peers_selection( ot_peerlist *peer_list, size_t amount, cha
232 232
233 /* Initialize somewhere in the middle of peers so that 233 /* Initialize somewhere in the middle of peers so that
234 fixpoint's aliasing doesn't alway miss the same peers */ 234 fixpoint's aliasing doesn't alway miss the same peers */
235 bucket_offset = random() % peer_list->peer_count; 235 bucket_offset = nrand48(ws->rand48_state) % peer_list->peer_count;
236 236
237 while( amount-- ) { 237 while( amount-- ) {
238 ot_peer * peer; 238 ot_peer * peer;
@@ -240,7 +240,7 @@ static size_t return_peers_selection( ot_peerlist *peer_list, size_t amount, cha
240 /* This is the aliased, non shifted range, next value may fall into */ 240 /* This is the aliased, non shifted range, next value may fall into */
241 unsigned int diff = ( ( ( amount + 1 ) * shifted_step ) >> shift ) - 241 unsigned int diff = ( ( ( amount + 1 ) * shifted_step ) >> shift ) -
242 ( ( amount * shifted_step ) >> shift ); 242 ( ( amount * shifted_step ) >> shift );
243 bucket_offset += 1 + random() % diff; 243 bucket_offset += 1 + nrand48(ws->rand48_state) % diff;
244 244
245 while( bucket_offset >= bucket_list[bucket_index].size ) { 245 while( bucket_offset >= bucket_list[bucket_index].size ) {
246 bucket_offset -= bucket_list[bucket_index].size; 246 bucket_offset -= bucket_list[bucket_index].size;
@@ -262,7 +262,7 @@ static size_t return_peers_selection( ot_peerlist *peer_list, size_t amount, cha
262 * reply must have enough space to hold 92+6*amount bytes 262 * reply must have enough space to hold 92+6*amount bytes
263 * does not yet check not to return self 263 * does not yet check not to return self
264*/ 264*/
265size_t return_peers_for_torrent( ot_torrent *torrent, size_t amount, char *reply, PROTO_FLAG proto ) { 265size_t return_peers_for_torrent( struct ot_workstruct * ws, ot_torrent *torrent, size_t amount, char *reply, PROTO_FLAG proto ) {
266 ot_peerlist *peer_list = torrent->peer_list; 266 ot_peerlist *peer_list = torrent->peer_list;
267 char *r = reply; 267 char *r = reply;
268 268
@@ -283,7 +283,7 @@ size_t return_peers_for_torrent( ot_torrent *torrent, size_t amount, char *reply
283 if( amount == peer_list->peer_count ) 283 if( amount == peer_list->peer_count )
284 r += return_peers_all( peer_list, r ); 284 r += return_peers_all( peer_list, r );
285 else 285 else
286 r += return_peers_selection( peer_list, amount, r ); 286 r += return_peers_selection( ws, peer_list, amount, r );
287 } 287 }
288 288
289 if( proto == FLAG_TCP ) 289 if( proto == FLAG_TCP )