Commit Graph

127 Commits (a58bce83ad91fa264a79c9a9acc9358bb2aa5661)

Author SHA1 Message Date
erdgeist 9297967f85 Add a stat option the count bucket stalls
Add an iterator for all torrents. It's slower but for stats it's okay.
Move some stats collection stuff to the new iterator. More to come.
Start a "report all stats" page.
Start fixing the code to identify "busy" networks.
Add the concept of hosts allowed to proxy.
Add a parser for the X-Forwarded-For: HTTP header.
Clean up HTTP Header handling code. (Remove some left overs of now vanished sync code).
16 years ago
erdgeist 02078aba27 Reset delta_torrentcount to zero on each pass 16 years ago
erdgeist f8af5c4b09 Forgot to notify central counter about torrent removal 16 years ago
erdgeist 01408992b7 Reverse logic... do only sync those NOT coming from multi cast 16 years ago
erdgeist 2d3718151d Fix a pointer arithmetic issue leading to incorrect peer data being copied. Allocate correct size for debugbuffer. Expect exact values on find keywords, not only prefix match. 16 years ago
erdgeist 930495a0db We sent an incorrect reply dictionary vor v6 announces 16 years ago
erdgeist 131211b4da V6 16 years ago
erdgeist 2df09905f5 * opentracker now drops permissions in correct order and really chroots() if ran as root
* lock passing between add_peer_to_torrent and return_peers_for_torrent is now avoided by providing a more general add_peer_to_torrent_and_return_peers function that can be used with NULL parameters to not return any peers (in sync case)
* in order to keep a fast overview how many torrents opentracker maintains, every mutex_bucket_unlock operation expects an additional integer parameter that tells ot_mutex.c how many torrents have been added or removed. A function mutex_get_torrent_count has been introduced.
16 years ago
erdgeist 3ee8991200 Fix badly formed bencoded answer to stopped events 16 years ago
erdgeist 3df5e476d0 Fix: Did not time stamp a torrent correctly, that once timed out and came back to life 16 years ago
erdgeist bca8bee623 Fix: auto increment in += is not a post increment... 16 years ago
erdgeist 5a0146f810 Used wrong variable as offset into hash to copy 16 years ago
erdgeist c6947b160f Handle program end more politely 16 years ago
erdgeist 08c7162783 Renamed OT_FLAG to OT_PEERFLAG to make code easier to read
Introduced READ16/32 and WRITE16/32 makros to abstract loading/storing from unaligned addresses away on cpu's that can actually load/store everywhere
Removed all unnecessary memmoves, especially where it only moved 6 bytes in inner loop. I replaced them with WRITE16/32(READ16/32()) makros
16 years ago
erdgeist 7120799379 Now enforce that peers do not come back before our interval by giving out a 'min interval' in responses. 16 years ago
erdgeist 405ef01dd3 printf is buffered, write not. Use printf for all. 16 years ago
erdgeist eda3ae7f91 Add debug code to spot peers that come back too early 16 years ago
erdgeist 566e8267e1 Live Sync for peers that do not come back too early. 16 years ago
erdgeist 334c6e4bbb The BIG refactoring [tm]. Too many changes to count them. If it doesn't suite you, revert to last version. 16 years ago
erdgeist bb1c5d2805 Add stats about when peers renew their announces. 16 years ago
erdgeist daaee855b2 Whitespace fixes 16 years ago
erdgeist 4b31dce3b3 release pools only after all other services have been stopped. 16 years ago
denis 1c3c5d57da only sync when the peer is actually added to the first pool. this saves ca. 40% syncdata 16 years ago
erdgeist 0dafc2ab26 Bugfix: overwrote bencoded data with udp reply data when sending an event=stopped 16 years ago
erdgeist e534db03c6 added live sync code
added a config file parser
added tracker id
changed WANT_CLOSED_TRACKER and WANT_BLACKLIST into WANT_ACCESS_WHITE and WANT_ACCESS_BLACK
changed WANT_TRACKER_SYNC to WANT_SYNC_BATCH and added WANT_SYNC_LIVE
added an option to switch off fullscrapes

cleaned up many internal hardcoded values, like PROTO_FLAG,
16 years ago
denis c71505fd9a send out the total downloaders for a announce response 16 years ago
erdgeist cadf1803e1 Fix endianess issues, also obey number of peers requested in udp announces 17 years ago
erdgeist c28cf398fd Introduce some kind of versioning 17 years ago
erdgeist d3b8375080 Fix include for iovecs 17 years ago
erdgeist 848a06a706 Drop ot_{byte,word,dword} and use uint{8,16,32}_t, also simplify includes 17 years ago
erdgeist f697fa3dda Fixed a bug where we forgot to stamp torrents that are not new. 17 years ago
erdgeist acaf7ae2b3 Fixing mmap allocation went to ot_mutex.c. Also startup new sync thread. 17 years ago
erdgeist 49ba269b9d Cleanup now moved to its own thread, too 17 years ago
erdgeist 697e239027 Moving accesslist stuff to its own object 17 years ago
erdgeist a0d12f9ab5 Full scrape moves to its own object 17 years ago
erdgeist 4ccbc9bd0e Fixed a forgotten unlock and a messed up string pointer 17 years ago
erdgeist bbbaa0e09d Fixed warnings about newlines at end of file 17 years ago
erdgeist 8900cc0dd9 No one can get access to buckets now without locking them. Also split up the trackerlogic.c-monster in functional sub-units. HEADS UP: this code is untested and not considered stable. 17 years ago
erdgeist 785a9f13bd Make to_hex thread safe. Get rid off old /24 counting code. Protect more bucket accesses by locks. 17 years ago
erdgeist 4a68f8692b We do now use the tools for locking buckets in order to prepare MT code 17 years ago
erdgeist 8acc0ff48f Introduce configuration dependent number of parameters in a nicer way 17 years ago
erdgeist 31eada6168 Reenabled syncing 17 years ago
erdgeist b19bbd6a85 Number of buckets is 1024 now
Clean all torrents now only cleans one bucket at a time
All torrents that are being worked upon in an announce are being cleaned on demoand
torrent's peer lists now keep extra counts for seeds and peers to speed up scrape and announce
Sync has gone for now. I will think up a new way to implement. The old one was way to slow.
17 years ago
erdgeist 68a104ad2a Now measure the time a clean_all_torrents takes 17 years ago
erdgeist 41019c79d8 Introducing multiscrape 17 years ago
erdgeist 870c995fbb Remove an unused variable 17 years ago
erdgeist cab763d4ee Release exactly all unused bytes in mmap allocation. 17 years ago
erdgeist 8e78ac7012 HEADS UP: you need to check out the latest libowfat! Huge allocations are now taken from mmap()ed regions, not from heap anymore 17 years ago
erdgeist c730a24d0a Fixed 24h clean bug. Allocate less memory for full scrape. Free torrents without any downloaders immediately. 17 years ago
erdgeist 28d88e3380 Exclude empty torrents from full scrape, also try to shrink full scrape buffer after it is full 17 years ago