1
0
mirror of git://erdgeist.org/opentracker synced 2025-01-27 15:16:31 +00:00

63 Commits

Author SHA1 Message Date
erdgeist
d42bf5a031 ** struct ot_workstruct gets ritcher (and will become even ritcher soon).
This is where we encapsulate all per-request data from peer to hash to peer_id, so that it is
available everywhere without passing hundreds of pointers down the stack. Most functions that
do work down the stack now accept an ot_workstruct and some flags. So it can end up in the
stats/event-handler where it will be the default parameter in the future.

** peer_id is now being copied by default and moved to ot_workstruct
So it is available in stats and subsequent functions.

** sync scrape madness is gone
SYNC_SCRAPE was intended to sync tracker state that would normally be lost on restarts i.e.
downloaded counts per torrent. The way was to push it in the tracker cloud after finding all
neighbouring trackers.
This is madness. It never was tested and can be done per tracker by fetching
stats/mode=statedump from time to time and starting opentracker with the -l option later.

** livesync thread has its own ot_workstruct now
So it can behave like ot_udp and ot_http against trackerlogic.c and get rid of the first half
of the embarrassing global variables. The sending half will be fixed soon [tm].

** stats can log completed events
The author recognizes the needs of original content distributors to keep track of the amount
of times a work has been downloaded. While not feasible and used on openbittorrent and other
open and anonymous tracker installations, a tracker user can now choose to send those events
to syslog.
2010-04-22 22:08:42 +00:00
erdgeist
3baa1abc56 Fix white spaces 2010-04-21 14:43:36 +00:00
erdgeist
66cda4bc75 Add our own time stamps to the completed logs. 2010-04-21 13:23:40 +00:00
erdgeist
fc48cbed01 Fix segfault in stats?mode=everything, an additional errorcode was not commited to ot_stats 2010-04-09 09:40:12 +00:00
erdgeist
f4409df68a Allow logging of completed events to syslog 2009-11-12 10:18:27 +00:00
erdgeist
26bf39da89 #define closed too early 2009-09-02 16:01:44 +00:00
erdgeist
0bf88427c6 Add spotting woodpeckers, thanks to Vasya P. again 2009-09-02 02:18:36 +00:00
erdgeist
6eeb16123c Cleanup s24s code, remove an ugly mem leak, thanks to Vasya P. for pointing at the bug and suggesting a fix 2009-09-01 23:45:37 +00:00
erdgeist
4c4303a156 Temporary feature: log amount of numwants. See if we can save traffic if we reduce max numwant to something less than 200 2009-08-30 17:57:54 +00:00
erdgeist
517adde681 Limit shifting in s24s cleanup code to a non-overflowing size 2009-08-30 12:54:52 +00:00
erdgeist
6073127ad0 Add some subnet debugging features 2009-08-26 21:23:26 +00:00
erdgeist
531ebd4949 Make opentracker return tracker id in stats=everything request 2009-07-15 16:14:38 +00:00
erdgeist
877e3cfbb0 Remove unnecessary =NULL initialization of static pointers. 2009-06-17 15:07:38 +00:00
erdgeist
2a94892890 Display v4 addresses in v4 mode nicer 2009-06-16 12:17:53 +00:00
erdgeist
6c19143bc1 Major rewrite of live bad network logging. You can now limit logging to any netmask. HTTP interface for that coming soon. 2009-06-15 14:41:47 +00:00
erdgeist
a713514a78 Make our stats xml validate again 2009-03-25 12:43:12 +00:00
erdgeist
91f5fa20a7 include overall completed count in stats 2009-03-24 16:55:28 +00:00
erdgeist
bd6695bded Fix XML syntax 2009-03-18 02:33:47 +00:00
erdgeist
c7ed890222 Fix white spaces
Introduce loading tracker states with -l
Alter tracker state to a human readable form
2009-03-17 23:57:20 +00:00
erdgeist
a58bce83ad Found some minor issues in busy network detection code. 2009-03-12 22:53:30 +00:00
erdgeist
eec51a872c Re-implement logging busy networks to handle v6 API.
Implement a state dump for later reparsing.
2009-03-12 18:47:02 +00:00
erdgeist
255ac58971 Add a everything stats page. So you won't have to remember what all those switches were.
Remove the prepared Add/Remove-Torrent count until we implement it.
Remove the start/stop count until we implement it.
2009-03-04 15:33:44 +00:00
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).
2009-03-04 14:35:21 +00:00
erdgeist
4c0d5c1c08 Formatting 2009-02-03 16:46:31 +00:00
erdgeist
f8185878fb Make snprintf write to the correct location 2009-01-26 11:30:10 +00:00
erdgeist
de5dbad258 This memmove was for real... 2009-01-21 00:11:57 +00:00
erdgeist
66c906d5d3 Add comments, rename our struct http_data h to cookie, all clientsockets to sock, all size_t from socket_recvs to byte_count. Make signal handler set default handler for the second SIGINT 2009-01-15 23:01:36 +00:00
erdgeist
131211b4da V6 2009-01-13 22:41:17 +00:00
erdgeist
8bdc0d73f6 Make opentracker ANSI C again. 2009-01-03 03:25:37 +00:00
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.
2009-01-02 08:57:53 +00:00
erdgeist
c6947b160f Handle program end more politely 2008-12-07 03:50:51 +00:00
erdgeist
76da780220 fix size of 0 issue 2008-12-03 20:49:25 +00:00
denis
bfbb5ecb44 stats fuer sync 2008-12-03 20:36:16 +00:00
erdgeist
334c6e4bbb The BIG refactoring [tm]. Too many changes to count them. If it doesn't suite you, revert to last version. 2008-11-28 22:21:10 +00:00
erdgeist
ff6c0339c1 Bugfix: Number of Pools << Number of Buckets 2008-11-03 10:34:54 +00:00
erdgeist
bb1c5d2805 Add stats about when peers renew their announces. 2008-11-03 01:26:38 +00:00
erdgeist
daaee855b2 Whitespace fixes 2008-10-28 01:27:22 +00:00
erdgeist
511a92e321 First vector has size 1, not 0 in debug vector 2008-10-28 00:23:32 +00:00
erdgeist
e89a8aaf58 Move more complicated stats code to its own thread 2008-10-24 00:01:42 +00:00
erdgeist
f4283be677 Fix debug output for addresses >127 2008-10-17 15:21:11 +00:00
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,
2008-10-04 05:40:51 +00:00
erdgeist
90184649d0 Embarrasing counter direction bug :) 2008-01-25 17:22:55 +00:00
erdgeist
572df73443 Forgot to #ifdef some code only interesting when doing live network logging. 2008-01-17 15:34:50 +00:00
erdgeist
408c5f98ed Introducing live busy network detection. 2008-01-17 10:46:25 +00:00
erdgeist
57387588ed Enable revision watching from the internet 2007-12-20 06:04:15 +00:00
erdgeist
c28cf398fd Introduce some kind of versioning 2007-12-20 05:59:34 +00:00
erdgeist
d9ed6c22bd Forgot to unlock bucket in case of malloc error, thanks to Astro for reporting. 2007-12-17 18:55:38 +00:00
denis
65c3b24045 add support for more stats:
1. stats for added and removed torrents
2. stats for start and stopped events from peers

this should help to detect DoS attacks and is useful for
profiling
2007-12-14 22:01:14 +00:00
denis
19cc9ba882 add mrtgstyle stats for number of torrents 2007-12-08 18:47:16 +00:00
erdgeist
bee364a6f3 / can now be redirected to any URL 2007-12-05 01:40:24 +00:00