2011-03-13 00:18:11 +00:00
|
|
|
/*
|
2014-01-18 20:56:57 +00:00
|
|
|
* This file Copyright (C) 2010-2014 Mnemosyne LLC
|
2011-03-13 00:18:11 +00:00
|
|
|
*
|
2014-01-21 03:10:30 +00:00
|
|
|
* It may be used under the GNU GPL versions 2 or 3
|
2014-01-19 01:09:44 +00:00
|
|
|
* or any future license endorsed by Mnemosyne LLC.
|
2011-03-13 00:18:11 +00:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2013-02-04 20:46:16 +00:00
|
|
|
#include <errno.h> /* errno, EAFNOSUPPORT */
|
2017-04-21 07:40:57 +00:00
|
|
|
#include <string.h> /* memcpy(), memset() */
|
2011-03-16 18:04:23 +00:00
|
|
|
|
2011-03-13 00:18:11 +00:00
|
|
|
#include <event2/buffer.h>
|
|
|
|
#include <event2/dns.h>
|
|
|
|
#include <event2/util.h>
|
|
|
|
|
2020-08-11 18:11:55 +00:00
|
|
|
#define LIBTRANSMISSION_ANNOUNCER_MODULE
|
2017-11-14 20:21:28 +00:00
|
|
|
|
2011-03-13 00:18:11 +00:00
|
|
|
#include "transmission.h"
|
2011-03-17 18:51:31 +00:00
|
|
|
#include "announcer.h"
|
2011-03-13 00:18:11 +00:00
|
|
|
#include "announcer-common.h"
|
2017-04-21 07:40:57 +00:00
|
|
|
#include "crypto-utils.h" /* tr_rand_buffer() */
|
2013-01-25 23:34:20 +00:00
|
|
|
#include "log.h"
|
2011-03-13 00:18:11 +00:00
|
|
|
#include "peer-io.h"
|
2017-04-21 07:40:57 +00:00
|
|
|
#include "peer-mgr.h" /* tr_peerMgrCompactToPex() */
|
2011-03-13 00:18:11 +00:00
|
|
|
#include "ptrarray.h"
|
2017-06-08 07:24:12 +00:00
|
|
|
#include "tr-assert.h"
|
2011-03-13 00:18:11 +00:00
|
|
|
#include "tr-udp.h"
|
|
|
|
#include "utils.h"
|
|
|
|
|
2017-05-22 20:12:57 +00:00
|
|
|
#define dbgmsg(name, ...) tr_logAddDeepNamed(name, __VA_ARGS__)
|
2011-03-13 00:18:11 +00:00
|
|
|
|
|
|
|
/****
|
|
|
|
*****
|
|
|
|
****/
|
|
|
|
|
2017-04-19 12:04:45 +00:00
|
|
|
static void tau_sockaddr_setport(struct sockaddr* sa, tr_port port)
|
2011-03-13 00:18:11 +00:00
|
|
|
{
|
2012-12-05 17:29:46 +00:00
|
|
|
if (sa->sa_family == AF_INET)
|
2017-04-19 12:04:45 +00:00
|
|
|
{
|
fix: gcc warnings in libtransmission/ and utils/ (#843)
* fix: __attribute__(__printf__) warnings
* fix: implicit fallthrough warning
* fixup! fix: implicit fallthrough warning
* fix: disable warnings for 3rd party code
Since we want to leave upstream code as-is
* fixup! fix: disable warnings for 3rd party code
* fixup! fix: disable warnings for 3rd party code
* silence spurious alignment warning
Xrefs
Discussion: https://stackoverflow.com/a/35554349
Macro inspiration: https://pagure.io/SSSD/sssd/blob/90ac46f71068d131391492360a8553bdd005b5a7/f/src/util/util_safealign.h#_35
* fixup! fix: disable warnings for 3rd party code
* fixup! fix: implicit fallthrough warning
* make uncrustify happy
* remove uncrustify-test.sh
that's probably off-topic for this PR
* fixup! fix: __attribute__(__printf__) warnings
* Update libtransmission/CMakeLists.txt
Co-Authored-By: ckerr <ckerr@github.com>
* fixup! silence spurious alignment warning
* use -w for DISABLE_WARNINGS in Clang
* refactor: fix libtransmission deprecation warnings
* fix: pthread_create's start_routine's return value
This was defined as `void` on non-Windows but should have been `void*`
* chore: uncrustify
* fix: add DISABLE_WARNINGS option for SunPro Studio
* fix "unused in lambda capture" warnings by clang++
* fix 'increases required alignment' warning
Caused from storing int16_t's in a char array.
* fix net.c 'increases required alignment' warning
The code passes in a `struct sockaddr_storage*` which is a padded struct
large enough for the necessary alignment. Unfortunately it was recast as
a `struct sockaddr*` which has less padding and a smaller alignment. The
warning occrred because of these differing alignments.
* make building quieter so warnings are more visible
* fixup! fix 'increases required alignment' warning
* Fix -Wcast-function-type warnings in GTK+ app code
https://gitlab.gnome.org/GNOME/gnome-terminal/issues/96 talks about both
the issue and its solution.
GCC 8's -Wcast-function-type, enabled by -Wextra, is problematic in glib
applications because it's idiomatic there to recast function signatures,
e.g. `g_slist_free(list, (GFunc)g_free, NULL);`.
Disabling the warning with pragmas causes "unrecognized pragma" warnings
on clang and older versions of gcc, and disabling the warning could miss
actual bugs. GCC defines `void (*)(void)` as a special case that matches
anything so we can silence warnings by double-casting through GCallback.
In the previous example, the warning is silenced by changing the code to
read `g_slist_free(list, (GFunc)(GCallback)g_free, NULL);`).
* fixup! fix "unused in lambda capture" warnings by clang++
* fixup! fix "unused in lambda capture" warnings by clang++
* fix two more libtransmission compiler warnings
* fix: in watchdir, use TR_ENABLE_ASSERTS not NDEBUG
2019-11-06 17:27:03 +00:00
|
|
|
TR_DISCARD_ALIGN(sa, struct sockaddr_in*)->sin_port = htons(port);
|
2017-04-19 12:04:45 +00:00
|
|
|
}
|
2011-03-13 00:18:11 +00:00
|
|
|
else if (sa->sa_family == AF_INET6)
|
2017-04-19 12:04:45 +00:00
|
|
|
{
|
fix: gcc warnings in libtransmission/ and utils/ (#843)
* fix: __attribute__(__printf__) warnings
* fix: implicit fallthrough warning
* fixup! fix: implicit fallthrough warning
* fix: disable warnings for 3rd party code
Since we want to leave upstream code as-is
* fixup! fix: disable warnings for 3rd party code
* fixup! fix: disable warnings for 3rd party code
* silence spurious alignment warning
Xrefs
Discussion: https://stackoverflow.com/a/35554349
Macro inspiration: https://pagure.io/SSSD/sssd/blob/90ac46f71068d131391492360a8553bdd005b5a7/f/src/util/util_safealign.h#_35
* fixup! fix: disable warnings for 3rd party code
* fixup! fix: implicit fallthrough warning
* make uncrustify happy
* remove uncrustify-test.sh
that's probably off-topic for this PR
* fixup! fix: __attribute__(__printf__) warnings
* Update libtransmission/CMakeLists.txt
Co-Authored-By: ckerr <ckerr@github.com>
* fixup! silence spurious alignment warning
* use -w for DISABLE_WARNINGS in Clang
* refactor: fix libtransmission deprecation warnings
* fix: pthread_create's start_routine's return value
This was defined as `void` on non-Windows but should have been `void*`
* chore: uncrustify
* fix: add DISABLE_WARNINGS option for SunPro Studio
* fix "unused in lambda capture" warnings by clang++
* fix 'increases required alignment' warning
Caused from storing int16_t's in a char array.
* fix net.c 'increases required alignment' warning
The code passes in a `struct sockaddr_storage*` which is a padded struct
large enough for the necessary alignment. Unfortunately it was recast as
a `struct sockaddr*` which has less padding and a smaller alignment. The
warning occrred because of these differing alignments.
* make building quieter so warnings are more visible
* fixup! fix 'increases required alignment' warning
* Fix -Wcast-function-type warnings in GTK+ app code
https://gitlab.gnome.org/GNOME/gnome-terminal/issues/96 talks about both
the issue and its solution.
GCC 8's -Wcast-function-type, enabled by -Wextra, is problematic in glib
applications because it's idiomatic there to recast function signatures,
e.g. `g_slist_free(list, (GFunc)g_free, NULL);`.
Disabling the warning with pragmas causes "unrecognized pragma" warnings
on clang and older versions of gcc, and disabling the warning could miss
actual bugs. GCC defines `void (*)(void)` as a special case that matches
anything so we can silence warnings by double-casting through GCallback.
In the previous example, the warning is silenced by changing the code to
read `g_slist_free(list, (GFunc)(GCallback)g_free, NULL);`).
* fixup! fix "unused in lambda capture" warnings by clang++
* fixup! fix "unused in lambda capture" warnings by clang++
* fix two more libtransmission compiler warnings
* fix: in watchdir, use TR_ENABLE_ASSERTS not NDEBUG
2019-11-06 17:27:03 +00:00
|
|
|
TR_DISCARD_ALIGN(sa, struct sockaddr_in6*)->sin6_port = htons(port);
|
2017-04-19 12:04:45 +00:00
|
|
|
}
|
2011-03-13 00:18:11 +00:00
|
|
|
}
|
|
|
|
|
2020-11-05 22:46:21 +00:00
|
|
|
static int tau_sendto(tr_session const* session, struct evutil_addrinfo* ai, tr_port port, void const* buf, size_t buflen)
|
2011-03-13 00:18:11 +00:00
|
|
|
{
|
2015-03-18 07:34:26 +00:00
|
|
|
tr_socket_t sockfd;
|
2011-03-28 13:37:46 +00:00
|
|
|
|
2012-12-05 17:29:46 +00:00
|
|
|
if (ai->ai_addr->sa_family == AF_INET)
|
2017-04-19 12:04:45 +00:00
|
|
|
{
|
2011-03-13 00:18:11 +00:00
|
|
|
sockfd = session->udp_socket;
|
2017-04-19 12:04:45 +00:00
|
|
|
}
|
2012-12-05 17:29:46 +00:00
|
|
|
else if (ai->ai_addr->sa_family == AF_INET6)
|
2017-04-19 12:04:45 +00:00
|
|
|
{
|
2011-03-13 00:18:11 +00:00
|
|
|
sockfd = session->udp6_socket;
|
2017-04-19 12:04:45 +00:00
|
|
|
}
|
2011-03-13 00:18:11 +00:00
|
|
|
else
|
2017-04-19 12:04:45 +00:00
|
|
|
{
|
2015-03-18 07:34:26 +00:00
|
|
|
sockfd = TR_BAD_SOCKET;
|
2017-04-19 12:04:45 +00:00
|
|
|
}
|
2011-03-13 00:18:11 +00:00
|
|
|
|
2017-04-19 12:04:45 +00:00
|
|
|
if (sockfd == TR_BAD_SOCKET)
|
|
|
|
{
|
2011-03-13 00:18:11 +00:00
|
|
|
errno = EAFNOSUPPORT;
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2017-04-19 12:04:45 +00:00
|
|
|
tau_sockaddr_setport(ai->ai_addr, port);
|
2021-09-12 17:41:49 +00:00
|
|
|
return sendto(sockfd, static_cast<char const*>(buf), buflen, 0, ai->ai_addr, ai->ai_addrlen);
|
2011-03-13 00:18:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/****
|
|
|
|
*****
|
|
|
|
****/
|
|
|
|
|
2017-04-19 12:04:45 +00:00
|
|
|
static uint32_t evbuffer_read_ntoh_32(struct evbuffer* buf)
|
2011-03-13 00:18:11 +00:00
|
|
|
{
|
|
|
|
uint32_t val;
|
2017-04-19 12:04:45 +00:00
|
|
|
evbuffer_remove(buf, &val, sizeof(uint32_t));
|
|
|
|
return ntohl(val);
|
2011-03-13 00:18:11 +00:00
|
|
|
}
|
|
|
|
|
2017-04-19 12:04:45 +00:00
|
|
|
static uint64_t evbuffer_read_ntoh_64(struct evbuffer* buf)
|
2011-03-13 00:18:11 +00:00
|
|
|
{
|
|
|
|
uint64_t val;
|
2017-04-19 12:04:45 +00:00
|
|
|
evbuffer_remove(buf, &val, sizeof(uint64_t));
|
|
|
|
return tr_ntohll(val);
|
2011-03-13 00:18:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/****
|
|
|
|
*****
|
|
|
|
****/
|
|
|
|
|
|
|
|
typedef uint64_t tau_connection_t;
|
|
|
|
|
|
|
|
enum
|
|
|
|
{
|
|
|
|
TAU_CONNECTION_TTL_SECS = 60
|
|
|
|
};
|
|
|
|
|
|
|
|
typedef uint32_t tau_transaction_t;
|
|
|
|
|
2017-04-19 12:04:45 +00:00
|
|
|
static tau_transaction_t tau_transaction_new(void)
|
2011-03-13 00:18:11 +00:00
|
|
|
{
|
|
|
|
tau_transaction_t tmp;
|
2017-04-19 12:04:45 +00:00
|
|
|
tr_rand_buffer(&tmp, sizeof(tau_transaction_t));
|
2011-03-13 00:18:11 +00:00
|
|
|
return tmp;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* used in the "action" field of a request */
|
|
|
|
typedef enum
|
|
|
|
{
|
2017-04-19 12:04:45 +00:00
|
|
|
TAU_ACTION_CONNECT = 0,
|
2011-03-13 00:18:11 +00:00
|
|
|
TAU_ACTION_ANNOUNCE = 1,
|
2017-04-19 12:04:45 +00:00
|
|
|
TAU_ACTION_SCRAPE = 2,
|
|
|
|
TAU_ACTION_ERROR = 3
|
2021-08-15 09:41:48 +00:00
|
|
|
} tau_action_t;
|
2011-03-13 00:18:11 +00:00
|
|
|
|
2017-04-19 12:04:45 +00:00
|
|
|
static bool is_tau_response_message(tau_action_t action, size_t msglen)
|
2011-03-14 14:15:58 +00:00
|
|
|
{
|
2017-04-19 12:04:45 +00:00
|
|
|
if (action == TAU_ACTION_CONNECT)
|
|
|
|
{
|
|
|
|
return msglen == 16;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (action == TAU_ACTION_ANNOUNCE)
|
|
|
|
{
|
|
|
|
return msglen >= 20;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (action == TAU_ACTION_SCRAPE)
|
|
|
|
{
|
|
|
|
return msglen >= 20;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (action == TAU_ACTION_ERROR)
|
|
|
|
{
|
|
|
|
return msglen >= 8;
|
|
|
|
}
|
|
|
|
|
2011-03-22 15:19:54 +00:00
|
|
|
return false;
|
2011-03-14 14:15:58 +00:00
|
|
|
}
|
|
|
|
|
2011-03-13 06:38:54 +00:00
|
|
|
enum
|
|
|
|
{
|
2011-03-14 14:15:58 +00:00
|
|
|
TAU_REQUEST_TTL = 60
|
2011-03-13 06:38:54 +00:00
|
|
|
};
|
|
|
|
|
2011-03-13 00:18:11 +00:00
|
|
|
/****
|
|
|
|
*****
|
|
|
|
***** SCRAPE
|
|
|
|
*****
|
|
|
|
****/
|
|
|
|
|
|
|
|
struct tau_scrape_request
|
|
|
|
{
|
2017-04-19 12:04:45 +00:00
|
|
|
void* payload;
|
2011-03-13 00:18:11 +00:00
|
|
|
size_t payload_len;
|
|
|
|
|
|
|
|
time_t sent_at;
|
2011-03-14 14:15:58 +00:00
|
|
|
time_t created_at;
|
2011-03-13 00:18:11 +00:00
|
|
|
tau_transaction_t transaction_id;
|
|
|
|
|
|
|
|
tr_scrape_response response;
|
2013-09-08 17:08:18 +00:00
|
|
|
tr_scrape_response_func callback;
|
2017-04-19 12:04:45 +00:00
|
|
|
void* user_data;
|
2011-03-13 00:18:11 +00:00
|
|
|
};
|
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
static struct tau_scrape_request* tau_scrape_request_new(
|
|
|
|
tr_scrape_request const* in,
|
|
|
|
tr_scrape_response_func callback,
|
2017-04-19 12:04:45 +00:00
|
|
|
void* user_data)
|
2011-03-13 00:18:11 +00:00
|
|
|
{
|
2017-04-19 12:04:45 +00:00
|
|
|
struct evbuffer* buf;
|
|
|
|
struct tau_scrape_request* req;
|
2017-04-20 16:02:19 +00:00
|
|
|
tau_transaction_t const transaction_id = tau_transaction_new();
|
2011-03-14 14:15:58 +00:00
|
|
|
|
|
|
|
/* build the payload */
|
2017-04-19 12:04:45 +00:00
|
|
|
buf = evbuffer_new();
|
|
|
|
evbuffer_add_hton_32(buf, TAU_ACTION_SCRAPE);
|
|
|
|
evbuffer_add_hton_32(buf, transaction_id);
|
|
|
|
|
2017-05-13 22:38:31 +00:00
|
|
|
for (int i = 0; i < in->info_hash_count; ++i)
|
2017-04-19 12:04:45 +00:00
|
|
|
{
|
|
|
|
evbuffer_add(buf, in->info_hash[i], SHA_DIGEST_LENGTH);
|
|
|
|
}
|
2011-03-13 00:18:11 +00:00
|
|
|
|
2011-03-14 14:15:58 +00:00
|
|
|
/* build the tau_scrape_request */
|
2017-04-19 12:04:45 +00:00
|
|
|
req = tr_new0(struct tau_scrape_request, 1);
|
|
|
|
req->created_at = tr_time();
|
2011-03-14 14:15:58 +00:00
|
|
|
req->transaction_id = transaction_id;
|
2011-03-13 00:18:11 +00:00
|
|
|
req->callback = callback;
|
|
|
|
req->user_data = user_data;
|
2017-04-19 12:04:45 +00:00
|
|
|
req->response.url = tr_strdup(in->url);
|
2011-03-13 00:18:11 +00:00
|
|
|
req->response.row_count = in->info_hash_count;
|
2017-04-19 12:04:45 +00:00
|
|
|
req->payload_len = evbuffer_get_length(buf);
|
|
|
|
req->payload = tr_memdup(evbuffer_pullup(buf, -1), req->payload_len);
|
|
|
|
|
2017-05-13 22:38:31 +00:00
|
|
|
for (int i = 0; i < req->response.row_count; ++i)
|
2011-10-14 00:27:14 +00:00
|
|
|
{
|
|
|
|
req->response.rows[i].seeders = -1;
|
|
|
|
req->response.rows[i].leechers = -1;
|
|
|
|
req->response.rows[i].downloads = -1;
|
2017-04-19 12:04:45 +00:00
|
|
|
memcpy(req->response.rows[i].info_hash, in->info_hash[i], SHA_DIGEST_LENGTH);
|
2011-10-14 00:27:14 +00:00
|
|
|
}
|
2011-03-13 00:18:11 +00:00
|
|
|
|
2011-03-14 14:15:58 +00:00
|
|
|
/* cleanup */
|
2017-04-19 12:04:45 +00:00
|
|
|
evbuffer_free(buf);
|
2011-03-13 00:18:11 +00:00
|
|
|
return req;
|
|
|
|
}
|
|
|
|
|
2017-04-19 12:04:45 +00:00
|
|
|
static void tau_scrape_request_free(struct tau_scrape_request* req)
|
2011-03-13 00:18:11 +00:00
|
|
|
{
|
2017-04-19 12:04:45 +00:00
|
|
|
tr_free(req->response.errmsg);
|
|
|
|
tr_free(req->response.url);
|
|
|
|
tr_free(req->payload);
|
|
|
|
tr_free(req);
|
2011-03-13 00:18:11 +00:00
|
|
|
}
|
|
|
|
|
2017-04-20 16:02:19 +00:00
|
|
|
static void tau_scrape_request_finished(struct tau_scrape_request const* request)
|
2011-03-13 00:18:11 +00:00
|
|
|
{
|
2012-12-05 17:29:46 +00:00
|
|
|
if (request->callback != NULL)
|
2017-04-19 12:04:45 +00:00
|
|
|
{
|
|
|
|
request->callback(&request->response, request->user_data);
|
|
|
|
}
|
2011-03-13 00:18:11 +00:00
|
|
|
}
|
|
|
|
|
2017-04-20 16:02:19 +00:00
|
|
|
static void tau_scrape_request_fail(struct tau_scrape_request* request, bool did_connect, bool did_timeout, char const* errmsg)
|
2011-03-13 00:18:11 +00:00
|
|
|
{
|
|
|
|
request->response.did_connect = did_connect;
|
|
|
|
request->response.did_timeout = did_timeout;
|
2017-04-19 12:04:45 +00:00
|
|
|
request->response.errmsg = tr_strdup(errmsg);
|
|
|
|
tau_scrape_request_finished(request);
|
2011-03-13 00:18:11 +00:00
|
|
|
}
|
|
|
|
|
2017-04-19 12:04:45 +00:00
|
|
|
static void on_scrape_response(struct tau_scrape_request* request, tau_action_t action, struct evbuffer* buf)
|
2011-03-13 00:18:11 +00:00
|
|
|
{
|
2011-03-22 15:19:54 +00:00
|
|
|
request->response.did_connect = true;
|
|
|
|
request->response.did_timeout = false;
|
2011-03-13 00:18:11 +00:00
|
|
|
|
2012-12-05 17:29:46 +00:00
|
|
|
if (action == TAU_ACTION_SCRAPE)
|
2011-03-13 00:18:11 +00:00
|
|
|
{
|
2017-05-13 22:38:31 +00:00
|
|
|
for (int i = 0; i < request->response.row_count; ++i)
|
2011-03-13 00:18:11 +00:00
|
|
|
{
|
2017-04-19 12:04:45 +00:00
|
|
|
struct tr_scrape_response_row* row;
|
2011-03-13 00:18:11 +00:00
|
|
|
|
2017-04-30 16:25:26 +00:00
|
|
|
if (evbuffer_get_length(buf) < sizeof(uint32_t) * 3)
|
2017-04-19 12:04:45 +00:00
|
|
|
{
|
2011-03-13 00:18:11 +00:00
|
|
|
break;
|
2017-04-19 12:04:45 +00:00
|
|
|
}
|
2011-03-13 00:18:11 +00:00
|
|
|
|
|
|
|
row = &request->response.rows[i];
|
2017-04-19 12:04:45 +00:00
|
|
|
row->seeders = evbuffer_read_ntoh_32(buf);
|
|
|
|
row->downloads = evbuffer_read_ntoh_32(buf);
|
|
|
|
row->leechers = evbuffer_read_ntoh_32(buf);
|
2011-03-13 00:18:11 +00:00
|
|
|
}
|
|
|
|
|
2017-04-19 12:04:45 +00:00
|
|
|
tau_scrape_request_finished(request);
|
2011-03-13 00:18:11 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2017-04-19 12:04:45 +00:00
|
|
|
char* errmsg;
|
2017-04-20 16:02:19 +00:00
|
|
|
size_t const buflen = evbuffer_get_length(buf);
|
2011-03-14 14:15:58 +00:00
|
|
|
|
2017-04-30 16:25:26 +00:00
|
|
|
if (action == TAU_ACTION_ERROR && buflen > 0)
|
2017-04-19 12:04:45 +00:00
|
|
|
{
|
|
|
|
errmsg = tr_strndup(evbuffer_pullup(buf, -1), buflen);
|
|
|
|
}
|
2011-03-14 14:15:58 +00:00
|
|
|
else
|
2017-04-19 12:04:45 +00:00
|
|
|
{
|
|
|
|
errmsg = tr_strdup(_("Unknown error"));
|
|
|
|
}
|
2011-03-13 00:18:11 +00:00
|
|
|
|
2017-04-19 12:04:45 +00:00
|
|
|
tau_scrape_request_fail(request, true, false, errmsg);
|
|
|
|
tr_free(errmsg);
|
2011-03-13 00:18:11 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/****
|
|
|
|
*****
|
|
|
|
***** ANNOUNCE
|
|
|
|
*****
|
|
|
|
****/
|
|
|
|
|
|
|
|
struct tau_announce_request
|
|
|
|
{
|
2017-04-19 12:04:45 +00:00
|
|
|
void* payload;
|
2011-03-13 00:18:11 +00:00
|
|
|
size_t payload_len;
|
|
|
|
|
2011-03-14 14:15:58 +00:00
|
|
|
time_t created_at;
|
2011-03-13 00:18:11 +00:00
|
|
|
time_t sent_at;
|
|
|
|
tau_transaction_t transaction_id;
|
|
|
|
|
|
|
|
tr_announce_response response;
|
2013-09-08 17:08:18 +00:00
|
|
|
tr_announce_response_func callback;
|
2017-04-19 12:04:45 +00:00
|
|
|
void* user_data;
|
2011-03-13 00:18:11 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
typedef enum
|
|
|
|
{
|
|
|
|
/* used in the "event" field of an announce request */
|
2017-04-19 12:04:45 +00:00
|
|
|
TAU_ANNOUNCE_EVENT_NONE = 0,
|
2011-03-13 06:38:54 +00:00
|
|
|
TAU_ANNOUNCE_EVENT_COMPLETED = 1,
|
2017-04-19 12:04:45 +00:00
|
|
|
TAU_ANNOUNCE_EVENT_STARTED = 2,
|
|
|
|
TAU_ANNOUNCE_EVENT_STOPPED = 3
|
2021-08-15 09:41:48 +00:00
|
|
|
} tau_announce_event;
|
2011-03-13 00:18:11 +00:00
|
|
|
|
2017-04-19 12:04:45 +00:00
|
|
|
static tau_announce_event get_tau_announce_event(tr_announce_event e)
|
2011-03-13 00:18:11 +00:00
|
|
|
{
|
2012-12-05 17:29:46 +00:00
|
|
|
switch (e)
|
2011-03-13 00:18:11 +00:00
|
|
|
{
|
2017-04-19 12:04:45 +00:00
|
|
|
case TR_ANNOUNCE_EVENT_COMPLETED:
|
|
|
|
return TAU_ANNOUNCE_EVENT_COMPLETED;
|
|
|
|
|
|
|
|
case TR_ANNOUNCE_EVENT_STARTED:
|
|
|
|
return TAU_ANNOUNCE_EVENT_STARTED;
|
|
|
|
|
|
|
|
case TR_ANNOUNCE_EVENT_STOPPED:
|
|
|
|
return TAU_ANNOUNCE_EVENT_STOPPED;
|
|
|
|
|
|
|
|
default:
|
|
|
|
return TAU_ANNOUNCE_EVENT_NONE;
|
2011-03-13 00:18:11 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
static struct tau_announce_request* tau_announce_request_new(
|
|
|
|
tr_announce_request const* in,
|
|
|
|
tr_announce_response_func callback,
|
2017-04-19 12:04:45 +00:00
|
|
|
void* user_data)
|
2011-03-13 00:18:11 +00:00
|
|
|
{
|
2017-04-19 12:04:45 +00:00
|
|
|
struct evbuffer* buf;
|
|
|
|
struct tau_announce_request* req;
|
2017-04-20 16:02:19 +00:00
|
|
|
tau_transaction_t const transaction_id = tau_transaction_new();
|
2011-03-13 00:18:11 +00:00
|
|
|
|
2011-03-14 14:15:58 +00:00
|
|
|
/* build the payload */
|
2017-04-19 12:04:45 +00:00
|
|
|
buf = evbuffer_new();
|
|
|
|
evbuffer_add_hton_32(buf, TAU_ACTION_ANNOUNCE);
|
|
|
|
evbuffer_add_hton_32(buf, transaction_id);
|
|
|
|
evbuffer_add(buf, in->info_hash, SHA_DIGEST_LENGTH);
|
|
|
|
evbuffer_add(buf, in->peer_id, PEER_ID_LEN);
|
|
|
|
evbuffer_add_hton_64(buf, in->down);
|
|
|
|
evbuffer_add_hton_64(buf, in->leftUntilComplete);
|
|
|
|
evbuffer_add_hton_64(buf, in->up);
|
|
|
|
evbuffer_add_hton_32(buf, get_tau_announce_event(in->event));
|
|
|
|
evbuffer_add_hton_32(buf, 0);
|
|
|
|
evbuffer_add_hton_32(buf, in->key);
|
|
|
|
evbuffer_add_hton_32(buf, in->numwant);
|
|
|
|
evbuffer_add_hton_16(buf, in->port);
|
2011-03-13 00:18:11 +00:00
|
|
|
|
2011-03-14 14:15:58 +00:00
|
|
|
/* build the tau_announce_request */
|
2017-04-19 12:04:45 +00:00
|
|
|
req = tr_new0(struct tau_announce_request, 1);
|
|
|
|
req->created_at = tr_time();
|
2011-03-14 14:15:58 +00:00
|
|
|
req->transaction_id = transaction_id;
|
|
|
|
req->callback = callback;
|
|
|
|
req->user_data = user_data;
|
2017-04-19 12:04:45 +00:00
|
|
|
req->payload_len = evbuffer_get_length(buf);
|
|
|
|
req->payload = tr_memdup(evbuffer_pullup(buf, -1), req->payload_len);
|
2011-10-14 00:27:14 +00:00
|
|
|
req->response.seeders = -1;
|
|
|
|
req->response.leechers = -1;
|
|
|
|
req->response.downloads = -1;
|
2017-04-19 12:04:45 +00:00
|
|
|
memcpy(req->response.info_hash, in->info_hash, SHA_DIGEST_LENGTH);
|
2011-03-14 14:15:58 +00:00
|
|
|
|
2017-04-19 12:04:45 +00:00
|
|
|
evbuffer_free(buf);
|
2011-03-14 14:15:58 +00:00
|
|
|
return req;
|
2011-03-13 00:18:11 +00:00
|
|
|
}
|
|
|
|
|
2017-04-19 12:04:45 +00:00
|
|
|
static void tau_announce_request_free(struct tau_announce_request* req)
|
2011-03-13 00:18:11 +00:00
|
|
|
{
|
2017-04-19 12:04:45 +00:00
|
|
|
tr_free(req->response.tracker_id_str);
|
|
|
|
tr_free(req->response.warning);
|
|
|
|
tr_free(req->response.errmsg);
|
|
|
|
tr_free(req->response.pex6);
|
|
|
|
tr_free(req->response.pex);
|
|
|
|
tr_free(req->payload);
|
|
|
|
tr_free(req);
|
2011-03-13 00:18:11 +00:00
|
|
|
}
|
|
|
|
|
2017-04-20 16:02:19 +00:00
|
|
|
static void tau_announce_request_finished(struct tau_announce_request const* request)
|
2011-03-13 00:18:11 +00:00
|
|
|
{
|
2012-12-05 17:29:46 +00:00
|
|
|
if (request->callback != NULL)
|
2017-04-19 12:04:45 +00:00
|
|
|
{
|
|
|
|
request->callback(&request->response, request->user_data);
|
|
|
|
}
|
2011-03-13 00:18:11 +00:00
|
|
|
}
|
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
static void tau_announce_request_fail(
|
|
|
|
struct tau_announce_request* request,
|
|
|
|
bool did_connect,
|
|
|
|
bool did_timeout,
|
2017-04-20 16:02:19 +00:00
|
|
|
char const* errmsg)
|
2011-03-13 00:18:11 +00:00
|
|
|
{
|
|
|
|
request->response.did_connect = did_connect;
|
|
|
|
request->response.did_timeout = did_timeout;
|
2017-04-19 12:04:45 +00:00
|
|
|
request->response.errmsg = tr_strdup(errmsg);
|
|
|
|
tau_announce_request_finished(request);
|
2011-03-13 00:18:11 +00:00
|
|
|
}
|
|
|
|
|
2017-04-19 12:04:45 +00:00
|
|
|
static void on_announce_response(struct tau_announce_request* request, tau_action_t action, struct evbuffer* buf)
|
2011-03-13 00:18:11 +00:00
|
|
|
{
|
2017-04-20 16:02:19 +00:00
|
|
|
size_t const buflen = evbuffer_get_length(buf);
|
2011-03-26 10:22:25 +00:00
|
|
|
|
2011-03-22 15:19:54 +00:00
|
|
|
request->response.did_connect = true;
|
|
|
|
request->response.did_timeout = false;
|
2011-03-13 00:18:11 +00:00
|
|
|
|
2017-04-30 16:25:26 +00:00
|
|
|
if (action == TAU_ACTION_ANNOUNCE && buflen >= 3 * sizeof(uint32_t))
|
2011-03-13 00:18:11 +00:00
|
|
|
{
|
2017-04-19 12:04:45 +00:00
|
|
|
tr_announce_response* resp = &request->response;
|
|
|
|
resp->interval = evbuffer_read_ntoh_32(buf);
|
|
|
|
resp->leechers = evbuffer_read_ntoh_32(buf);
|
|
|
|
resp->seeders = evbuffer_read_ntoh_32(buf);
|
2021-08-15 09:41:48 +00:00
|
|
|
resp->pex = tr_peerMgrCompactToPex(
|
|
|
|
evbuffer_pullup(buf, -1),
|
|
|
|
evbuffer_get_length(buf),
|
|
|
|
NULL,
|
|
|
|
0,
|
2017-04-19 12:04:45 +00:00
|
|
|
&request->response.pex_count);
|
|
|
|
tau_announce_request_finished(request);
|
2011-03-13 00:18:11 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2017-04-19 12:04:45 +00:00
|
|
|
char* errmsg;
|
2011-03-14 14:15:58 +00:00
|
|
|
|
2017-04-30 16:25:26 +00:00
|
|
|
if (action == TAU_ACTION_ERROR && buflen > 0)
|
2017-04-19 12:04:45 +00:00
|
|
|
{
|
|
|
|
errmsg = tr_strndup(evbuffer_pullup(buf, -1), buflen);
|
|
|
|
}
|
2011-03-14 14:15:58 +00:00
|
|
|
else
|
2017-04-19 12:04:45 +00:00
|
|
|
{
|
|
|
|
errmsg = tr_strdup(_("Unknown error"));
|
|
|
|
}
|
2011-03-13 00:18:11 +00:00
|
|
|
|
2017-04-19 12:04:45 +00:00
|
|
|
tau_announce_request_fail(request, true, false, errmsg);
|
|
|
|
tr_free(errmsg);
|
2011-03-13 00:18:11 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/****
|
|
|
|
*****
|
|
|
|
***** TRACKERS
|
|
|
|
*****
|
|
|
|
****/
|
|
|
|
|
|
|
|
struct tau_tracker
|
|
|
|
{
|
2017-04-19 12:04:45 +00:00
|
|
|
tr_session* session;
|
2011-03-13 00:18:11 +00:00
|
|
|
|
2017-04-19 12:04:45 +00:00
|
|
|
char* key;
|
|
|
|
char* host;
|
2011-03-13 00:18:11 +00:00
|
|
|
int port;
|
|
|
|
|
2017-04-19 12:04:45 +00:00
|
|
|
struct evdns_getaddrinfo_request* dns_request;
|
|
|
|
struct evutil_addrinfo* addr;
|
2011-03-13 00:18:11 +00:00
|
|
|
time_t addr_expiration_time;
|
|
|
|
|
2011-03-20 15:28:41 +00:00
|
|
|
time_t connecting_at;
|
2011-03-13 00:18:11 +00:00
|
|
|
time_t connection_expiration_time;
|
|
|
|
tau_connection_t connection_id;
|
|
|
|
tau_transaction_t connection_transaction_id;
|
|
|
|
|
2011-03-17 18:51:31 +00:00
|
|
|
time_t close_at;
|
|
|
|
|
2011-03-13 00:18:11 +00:00
|
|
|
tr_ptrArray announces;
|
|
|
|
tr_ptrArray scrapes;
|
|
|
|
};
|
|
|
|
|
2017-04-19 12:04:45 +00:00
|
|
|
static void tau_tracker_upkeep(struct tau_tracker*);
|
2011-03-13 00:18:11 +00:00
|
|
|
|
2017-04-19 12:04:45 +00:00
|
|
|
static void tau_tracker_free(struct tau_tracker* t)
|
2011-03-13 00:18:11 +00:00
|
|
|
{
|
2017-06-08 07:24:12 +00:00
|
|
|
TR_ASSERT(t->dns_request == NULL);
|
2015-12-31 14:17:37 +00:00
|
|
|
|
2017-04-30 16:25:26 +00:00
|
|
|
if (t->addr != NULL)
|
2017-04-19 12:04:45 +00:00
|
|
|
{
|
|
|
|
evutil_freeaddrinfo(t->addr);
|
|
|
|
}
|
|
|
|
|
|
|
|
tr_ptrArrayDestruct(&t->announces, (PtrArrayForeachFunc)tau_announce_request_free);
|
|
|
|
tr_ptrArrayDestruct(&t->scrapes, (PtrArrayForeachFunc)tau_scrape_request_free);
|
|
|
|
tr_free(t->host);
|
|
|
|
tr_free(t->key);
|
|
|
|
tr_free(t);
|
2011-03-13 00:18:11 +00:00
|
|
|
}
|
|
|
|
|
2017-04-20 16:02:19 +00:00
|
|
|
static void tau_tracker_fail_all(struct tau_tracker* tracker, bool did_connect, bool did_timeout, char const* errmsg)
|
2011-03-13 00:18:11 +00:00
|
|
|
{
|
|
|
|
/* fail all the scrapes */
|
2021-09-12 17:41:49 +00:00
|
|
|
tr_ptrArray* reqs = &tracker->scrapes;
|
2017-04-19 12:04:45 +00:00
|
|
|
|
2017-05-13 22:38:31 +00:00
|
|
|
for (int i = 0, n = tr_ptrArraySize(reqs); i < n; ++i)
|
2017-04-19 12:04:45 +00:00
|
|
|
{
|
2021-09-12 17:41:49 +00:00
|
|
|
auto* req = static_cast<struct tau_scrape_request*>(tr_ptrArrayNth(reqs, i));
|
|
|
|
tau_scrape_request_fail(req, did_connect, did_timeout, errmsg);
|
2017-04-19 12:04:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
tr_ptrArrayDestruct(reqs, (PtrArrayForeachFunc)tau_scrape_request_free);
|
2021-09-12 17:41:49 +00:00
|
|
|
*reqs = {};
|
2011-03-13 00:18:11 +00:00
|
|
|
|
|
|
|
/* fail all the announces */
|
|
|
|
reqs = &tracker->announces;
|
|
|
|
|
2017-05-13 22:38:31 +00:00
|
|
|
for (int i = 0, n = tr_ptrArraySize(reqs); i < n; ++i)
|
2017-04-19 12:04:45 +00:00
|
|
|
{
|
2021-09-12 17:41:49 +00:00
|
|
|
auto* req = static_cast<struct tau_announce_request*>(tr_ptrArrayNth(reqs, i));
|
|
|
|
tau_announce_request_fail(req, did_connect, did_timeout, errmsg);
|
2017-04-19 12:04:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
tr_ptrArrayDestruct(reqs, (PtrArrayForeachFunc)tau_announce_request_free);
|
2021-09-12 17:41:49 +00:00
|
|
|
*reqs = {};
|
2011-03-13 00:18:11 +00:00
|
|
|
}
|
|
|
|
|
2017-04-19 12:04:45 +00:00
|
|
|
static void tau_tracker_on_dns(int errcode, struct evutil_addrinfo* addr, void* vtracker)
|
2011-03-13 00:18:11 +00:00
|
|
|
{
|
2021-09-12 17:41:49 +00:00
|
|
|
auto* tracker = static_cast<struct tau_tracker*>(vtracker);
|
2011-03-13 00:18:11 +00:00
|
|
|
|
2014-01-20 23:18:52 +00:00
|
|
|
tracker->dns_request = NULL;
|
2011-03-13 00:18:11 +00:00
|
|
|
|
2017-04-30 16:25:26 +00:00
|
|
|
if (errcode != 0)
|
2011-03-13 00:18:11 +00:00
|
|
|
{
|
2017-04-19 12:04:45 +00:00
|
|
|
char* errmsg = tr_strdup_printf(_("DNS Lookup failed: %s"), evutil_gai_strerror(errcode));
|
|
|
|
dbgmsg(tracker->key, "%s", errmsg);
|
|
|
|
tau_tracker_fail_all(tracker, false, false, errmsg);
|
|
|
|
tr_free(errmsg);
|
2011-03-13 00:18:11 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2017-04-19 12:04:45 +00:00
|
|
|
dbgmsg(tracker->key, "DNS lookup succeeded");
|
2011-03-13 00:18:11 +00:00
|
|
|
tracker->addr = addr;
|
2017-04-30 16:30:03 +00:00
|
|
|
tracker->addr_expiration_time = tr_time() + 60 * 60; /* one hour */
|
2017-04-19 12:04:45 +00:00
|
|
|
tau_tracker_upkeep(tracker);
|
2011-03-13 00:18:11 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-04-20 16:02:19 +00:00
|
|
|
static void tau_tracker_send_request(struct tau_tracker* tracker, void const* payload, size_t payload_len)
|
2011-03-13 00:18:11 +00:00
|
|
|
{
|
2017-04-19 12:04:45 +00:00
|
|
|
struct evbuffer* buf = evbuffer_new();
|
|
|
|
dbgmsg(tracker->key, "sending request w/connection id %" PRIu64 "\n", tracker->connection_id);
|
|
|
|
evbuffer_add_hton_64(buf, tracker->connection_id);
|
|
|
|
evbuffer_add_reference(buf, payload, payload_len, NULL, NULL);
|
2020-09-10 23:50:46 +00:00
|
|
|
(void)tau_sendto(tracker->session, tracker->addr, tracker->port, evbuffer_pullup(buf, -1), evbuffer_get_length(buf));
|
2017-04-19 12:04:45 +00:00
|
|
|
evbuffer_free(buf);
|
2011-03-13 00:18:11 +00:00
|
|
|
}
|
|
|
|
|
2017-04-19 12:04:45 +00:00
|
|
|
static void tau_tracker_send_reqs(struct tau_tracker* tracker)
|
2011-03-20 15:28:41 +00:00
|
|
|
{
|
2017-06-08 07:24:12 +00:00
|
|
|
TR_ASSERT(tracker->dns_request == NULL);
|
|
|
|
TR_ASSERT(tracker->connecting_at == 0);
|
|
|
|
TR_ASSERT(tracker->addr != NULL);
|
2017-06-13 02:24:09 +00:00
|
|
|
|
|
|
|
time_t const now = tr_time();
|
|
|
|
|
2017-06-08 07:24:12 +00:00
|
|
|
TR_ASSERT(tracker->connection_expiration_time > now);
|
2011-03-20 15:28:41 +00:00
|
|
|
|
2017-06-13 02:24:09 +00:00
|
|
|
tr_ptrArray* reqs = &tracker->announces;
|
2017-04-19 12:04:45 +00:00
|
|
|
|
2017-05-13 22:38:31 +00:00
|
|
|
for (int i = 0, n = tr_ptrArraySize(reqs); i < n; ++i)
|
2017-04-19 12:04:45 +00:00
|
|
|
{
|
2021-09-12 17:41:49 +00:00
|
|
|
auto* req = static_cast<struct tau_announce_request*>(tr_ptrArrayNth(reqs, i));
|
2017-04-19 12:04:45 +00:00
|
|
|
|
2017-04-30 16:25:26 +00:00
|
|
|
if (req->sent_at == 0)
|
2017-04-19 12:04:45 +00:00
|
|
|
{
|
|
|
|
dbgmsg(tracker->key, "sending announce req %p", (void*)req);
|
2011-03-20 15:28:41 +00:00
|
|
|
req->sent_at = now;
|
2017-04-19 12:04:45 +00:00
|
|
|
tau_tracker_send_request(tracker, req->payload, req->payload_len);
|
|
|
|
|
|
|
|
if (req->callback == NULL)
|
|
|
|
{
|
|
|
|
tau_announce_request_free(req);
|
|
|
|
tr_ptrArrayRemove(reqs, i);
|
2011-03-20 15:28:41 +00:00
|
|
|
--i;
|
|
|
|
--n;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
reqs = &tracker->scrapes;
|
2017-04-19 12:04:45 +00:00
|
|
|
|
2017-05-13 22:38:31 +00:00
|
|
|
for (int i = 0, n = tr_ptrArraySize(reqs); i < n; ++i)
|
2017-04-19 12:04:45 +00:00
|
|
|
{
|
2021-09-12 17:41:49 +00:00
|
|
|
auto* req = static_cast<struct tau_scrape_request*>(tr_ptrArrayNth(reqs, i));
|
2017-04-19 12:04:45 +00:00
|
|
|
|
2017-04-30 16:25:26 +00:00
|
|
|
if (req->sent_at == 0)
|
2017-04-19 12:04:45 +00:00
|
|
|
{
|
|
|
|
dbgmsg(tracker->key, "sending scrape req %p", (void*)req);
|
2011-03-20 15:28:41 +00:00
|
|
|
req->sent_at = now;
|
2017-04-19 12:04:45 +00:00
|
|
|
tau_tracker_send_request(tracker, req->payload, req->payload_len);
|
|
|
|
|
|
|
|
if (req->callback == NULL)
|
|
|
|
{
|
|
|
|
tau_scrape_request_free(req);
|
|
|
|
tr_ptrArrayRemove(reqs, i);
|
2011-03-20 15:28:41 +00:00
|
|
|
--i;
|
|
|
|
--n;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-04-19 12:04:45 +00:00
|
|
|
static void on_tracker_connection_response(struct tau_tracker* tracker, tau_action_t action, struct evbuffer* buf)
|
2011-03-20 15:28:41 +00:00
|
|
|
{
|
2017-04-20 16:02:19 +00:00
|
|
|
time_t const now = tr_time();
|
2011-03-20 15:28:41 +00:00
|
|
|
|
|
|
|
tracker->connecting_at = 0;
|
|
|
|
tracker->connection_transaction_id = 0;
|
|
|
|
|
2012-12-05 17:29:46 +00:00
|
|
|
if (action == TAU_ACTION_CONNECT)
|
2011-03-20 15:28:41 +00:00
|
|
|
{
|
2017-04-19 12:04:45 +00:00
|
|
|
tracker->connection_id = evbuffer_read_ntoh_64(buf);
|
2011-03-20 15:28:41 +00:00
|
|
|
tracker->connection_expiration_time = now + TAU_CONNECTION_TTL_SECS;
|
2017-04-19 12:04:45 +00:00
|
|
|
dbgmsg(tracker->key, "Got a new connection ID from tracker: %" PRIu64, tracker->connection_id);
|
2011-03-20 15:28:41 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2017-04-19 12:04:45 +00:00
|
|
|
char* errmsg;
|
2017-05-01 15:47:49 +00:00
|
|
|
size_t const buflen = buf != NULL ? evbuffer_get_length(buf) : 0;
|
2011-03-20 15:28:41 +00:00
|
|
|
|
2017-04-30 16:25:26 +00:00
|
|
|
if (action == TAU_ACTION_ERROR && buflen > 0)
|
2017-04-19 12:04:45 +00:00
|
|
|
{
|
|
|
|
errmsg = tr_strndup(evbuffer_pullup(buf, -1), buflen);
|
|
|
|
}
|
2011-03-20 15:28:41 +00:00
|
|
|
else
|
2017-04-19 12:04:45 +00:00
|
|
|
{
|
|
|
|
errmsg = tr_strdup(_("Connection failed"));
|
|
|
|
}
|
2011-03-20 15:28:41 +00:00
|
|
|
|
2017-04-19 12:04:45 +00:00
|
|
|
dbgmsg(tracker->key, "%s", errmsg);
|
|
|
|
tau_tracker_fail_all(tracker, true, false, errmsg);
|
|
|
|
tr_free(errmsg);
|
2011-03-20 15:28:41 +00:00
|
|
|
}
|
|
|
|
|
2017-04-19 12:04:45 +00:00
|
|
|
tau_tracker_upkeep(tracker);
|
2011-03-20 15:28:41 +00:00
|
|
|
}
|
|
|
|
|
2017-04-19 12:04:45 +00:00
|
|
|
static void tau_tracker_timeout_reqs(struct tau_tracker* tracker)
|
2011-03-20 15:28:41 +00:00
|
|
|
{
|
2017-04-19 12:04:45 +00:00
|
|
|
tr_ptrArray* reqs;
|
2017-04-20 16:02:19 +00:00
|
|
|
time_t const now = time(NULL);
|
2017-05-01 15:47:49 +00:00
|
|
|
bool const cancel_all = tracker->close_at != 0 && (tracker->close_at <= now);
|
2011-03-20 15:28:41 +00:00
|
|
|
|
2017-04-30 16:25:26 +00:00
|
|
|
if (tracker->connecting_at != 0 && tracker->connecting_at + TAU_REQUEST_TTL < now)
|
2017-04-19 12:04:45 +00:00
|
|
|
{
|
|
|
|
on_tracker_connection_response(tracker, TAU_ACTION_ERROR, NULL);
|
2011-03-20 15:28:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
reqs = &tracker->announces;
|
2017-04-19 12:04:45 +00:00
|
|
|
|
2017-05-13 22:38:31 +00:00
|
|
|
for (int i = 0, n = tr_ptrArraySize(reqs); i < n; ++i)
|
2017-04-19 12:04:45 +00:00
|
|
|
{
|
2021-09-12 17:41:49 +00:00
|
|
|
auto* req = static_cast<struct tau_announce_request*>(tr_ptrArrayNth(reqs, i));
|
2017-04-19 12:04:45 +00:00
|
|
|
|
2017-04-30 16:25:26 +00:00
|
|
|
if (cancel_all || req->created_at + TAU_REQUEST_TTL < now)
|
2017-04-19 12:04:45 +00:00
|
|
|
{
|
|
|
|
dbgmsg(tracker->key, "timeout announce req %p", (void*)req);
|
|
|
|
tau_announce_request_fail(req, false, true, NULL);
|
|
|
|
tau_announce_request_free(req);
|
|
|
|
tr_ptrArrayRemove(reqs, i);
|
2011-03-20 15:28:41 +00:00
|
|
|
--i;
|
|
|
|
--n;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
reqs = &tracker->scrapes;
|
2017-04-19 12:04:45 +00:00
|
|
|
|
2017-05-13 22:38:31 +00:00
|
|
|
for (int i = 0, n = tr_ptrArraySize(reqs); i < n; ++i)
|
2017-04-19 12:04:45 +00:00
|
|
|
{
|
2021-09-12 17:41:49 +00:00
|
|
|
auto* req = static_cast<struct tau_scrape_request*>(tr_ptrArrayNth(reqs, i));
|
2017-04-19 12:04:45 +00:00
|
|
|
|
2017-04-30 16:25:26 +00:00
|
|
|
if (cancel_all || req->created_at + TAU_REQUEST_TTL < now)
|
2017-04-19 12:04:45 +00:00
|
|
|
{
|
|
|
|
dbgmsg(tracker->key, "timeout scrape req %p", (void*)req);
|
|
|
|
tau_scrape_request_fail(req, false, true, NULL);
|
|
|
|
tau_scrape_request_free(req);
|
|
|
|
tr_ptrArrayRemove(reqs, i);
|
2011-03-20 15:28:41 +00:00
|
|
|
--i;
|
|
|
|
--n;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-04-20 16:02:19 +00:00
|
|
|
static bool tau_tracker_is_idle(struct tau_tracker const* tracker)
|
2011-03-17 18:51:31 +00:00
|
|
|
{
|
2017-04-19 12:04:45 +00:00
|
|
|
return tr_ptrArrayEmpty(&tracker->announces) && tr_ptrArrayEmpty(&tracker->scrapes) && tracker->dns_request == NULL;
|
2011-03-17 18:51:31 +00:00
|
|
|
}
|
|
|
|
|
2017-07-04 18:22:26 +00:00
|
|
|
static void tau_tracker_upkeep_ex(struct tau_tracker* tracker, bool timeout_reqs)
|
2011-03-13 00:18:11 +00:00
|
|
|
{
|
2017-04-20 16:02:19 +00:00
|
|
|
time_t const now = tr_time();
|
|
|
|
bool const closing = tracker->close_at != 0;
|
2011-03-13 00:18:11 +00:00
|
|
|
|
|
|
|
/* if the address info is too old, expire it */
|
2017-04-19 12:04:45 +00:00
|
|
|
if (tracker->addr != NULL && (closing || tracker->addr_expiration_time <= now))
|
|
|
|
{
|
|
|
|
dbgmsg(tracker->host, "Expiring old DNS result");
|
|
|
|
evutil_freeaddrinfo(tracker->addr);
|
2011-03-13 00:18:11 +00:00
|
|
|
tracker->addr = NULL;
|
|
|
|
}
|
|
|
|
|
2011-03-13 06:38:54 +00:00
|
|
|
/* are there any requests pending? */
|
2017-04-19 12:04:45 +00:00
|
|
|
if (tau_tracker_is_idle(tracker))
|
|
|
|
{
|
2011-03-13 00:18:11 +00:00
|
|
|
return;
|
2017-04-19 12:04:45 +00:00
|
|
|
}
|
2011-03-13 00:18:11 +00:00
|
|
|
|
2011-03-13 06:38:54 +00:00
|
|
|
/* if we don't have an address yet, try & get one now. */
|
2015-12-31 14:17:37 +00:00
|
|
|
if (!closing && tracker->addr == NULL && tracker->dns_request == NULL)
|
2011-03-13 06:38:54 +00:00
|
|
|
{
|
|
|
|
struct evutil_addrinfo hints;
|
2017-04-19 12:04:45 +00:00
|
|
|
memset(&hints, 0, sizeof(hints));
|
2011-03-13 06:38:54 +00:00
|
|
|
hints.ai_family = AF_UNSPEC;
|
|
|
|
hints.ai_socktype = SOCK_DGRAM;
|
|
|
|
hints.ai_protocol = IPPROTO_UDP;
|
2017-04-19 12:04:45 +00:00
|
|
|
dbgmsg(tracker->host, "Trying a new DNS lookup");
|
2021-08-15 09:41:48 +00:00
|
|
|
tracker->dns_request = evdns_getaddrinfo(
|
|
|
|
tracker->session->evdns_base,
|
|
|
|
tracker->host,
|
|
|
|
NULL,
|
|
|
|
&hints,
|
|
|
|
tau_tracker_on_dns,
|
2017-04-19 12:04:45 +00:00
|
|
|
tracker);
|
2011-03-13 00:18:11 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
dbgmsg(
|
|
|
|
tracker->key,
|
|
|
|
"addr %p -- connected %d (%zu %zu) -- connecting_at %zu",
|
|
|
|
(void*)tracker->addr,
|
|
|
|
(int)(tracker->connection_expiration_time > now),
|
|
|
|
(size_t)tracker->connection_expiration_time,
|
|
|
|
(size_t)now,
|
2017-04-19 12:04:45 +00:00
|
|
|
(size_t)tracker->connecting_at);
|
2011-03-20 15:28:41 +00:00
|
|
|
|
2011-03-13 00:18:11 +00:00
|
|
|
/* also need a valid connection ID... */
|
2017-04-30 16:25:26 +00:00
|
|
|
if (tracker->addr != NULL && tracker->connection_expiration_time <= now && tracker->connecting_at == 0)
|
2011-03-13 06:38:54 +00:00
|
|
|
{
|
2017-04-19 12:04:45 +00:00
|
|
|
struct evbuffer* buf = evbuffer_new();
|
2011-03-20 15:28:41 +00:00
|
|
|
tracker->connecting_at = now;
|
2017-04-19 12:04:45 +00:00
|
|
|
tracker->connection_transaction_id = tau_transaction_new();
|
|
|
|
dbgmsg(tracker->key, "Trying to connect. Transaction ID is %u", tracker->connection_transaction_id);
|
|
|
|
evbuffer_add_hton_64(buf, 0x41727101980LL);
|
|
|
|
evbuffer_add_hton_32(buf, TAU_ACTION_CONNECT);
|
|
|
|
evbuffer_add_hton_32(buf, tracker->connection_transaction_id);
|
2020-09-12 13:17:18 +00:00
|
|
|
(void)tau_sendto(tracker->session, tracker->addr, tracker->port, evbuffer_pullup(buf, -1), evbuffer_get_length(buf));
|
2017-04-19 12:04:45 +00:00
|
|
|
evbuffer_free(buf);
|
2011-03-13 00:18:11 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2017-07-04 18:22:26 +00:00
|
|
|
if (timeout_reqs)
|
|
|
|
{
|
|
|
|
tau_tracker_timeout_reqs(tracker);
|
|
|
|
}
|
2011-03-13 00:18:11 +00:00
|
|
|
|
2017-04-30 16:25:26 +00:00
|
|
|
if (tracker->addr != NULL && tracker->connection_expiration_time > now)
|
2017-04-19 12:04:45 +00:00
|
|
|
{
|
|
|
|
tau_tracker_send_reqs(tracker);
|
|
|
|
}
|
2011-03-13 00:18:11 +00:00
|
|
|
}
|
|
|
|
|
2017-07-04 18:22:26 +00:00
|
|
|
static void tau_tracker_upkeep(struct tau_tracker* tracker)
|
|
|
|
{
|
|
|
|
tau_tracker_upkeep_ex(tracker, true);
|
|
|
|
}
|
|
|
|
|
2011-03-13 00:18:11 +00:00
|
|
|
/****
|
|
|
|
*****
|
|
|
|
***** SESSION
|
|
|
|
*****
|
|
|
|
****/
|
|
|
|
|
|
|
|
struct tr_announcer_udp
|
|
|
|
{
|
|
|
|
/* tau_tracker */
|
|
|
|
tr_ptrArray trackers;
|
|
|
|
|
2017-04-19 12:04:45 +00:00
|
|
|
tr_session* session;
|
2011-03-13 00:18:11 +00:00
|
|
|
};
|
|
|
|
|
2017-04-19 12:04:45 +00:00
|
|
|
static struct tr_announcer_udp* announcer_udp_get(tr_session* session)
|
2011-03-13 00:18:11 +00:00
|
|
|
{
|
2017-04-19 12:04:45 +00:00
|
|
|
struct tr_announcer_udp* tau;
|
2011-03-13 00:18:11 +00:00
|
|
|
|
2012-12-05 17:29:46 +00:00
|
|
|
if (session->announcer_udp != NULL)
|
2017-04-19 12:04:45 +00:00
|
|
|
{
|
2011-03-13 00:18:11 +00:00
|
|
|
return session->announcer_udp;
|
2017-04-19 12:04:45 +00:00
|
|
|
}
|
2011-03-13 00:18:11 +00:00
|
|
|
|
2017-04-19 12:04:45 +00:00
|
|
|
tau = tr_new0(struct tr_announcer_udp, 1);
|
2021-09-12 17:41:49 +00:00
|
|
|
tau->trackers = {};
|
2011-03-13 00:18:11 +00:00
|
|
|
tau->session = session;
|
|
|
|
session->announcer_udp = tau;
|
|
|
|
return tau;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Finds the tau_tracker struct that corresponds to this url.
|
|
|
|
If it doesn't exist yet, create one. */
|
2017-04-20 16:02:19 +00:00
|
|
|
static struct tau_tracker* tau_session_get_tracker(struct tr_announcer_udp* tau, char const* url)
|
2011-03-13 00:18:11 +00:00
|
|
|
{
|
|
|
|
int port;
|
2017-04-19 12:04:45 +00:00
|
|
|
char* host;
|
|
|
|
char* key;
|
|
|
|
struct tau_tracker* tracker = NULL;
|
2011-03-13 00:18:11 +00:00
|
|
|
|
|
|
|
/* see if we've already got a tracker that matches this host + port */
|
2017-04-19 12:04:45 +00:00
|
|
|
tr_urlParse(url, TR_BAD_SIZE, NULL, &host, &port, NULL);
|
|
|
|
key = tr_strdup_printf("%s:%d", host, port);
|
|
|
|
|
2017-05-13 22:38:31 +00:00
|
|
|
for (int i = 0, n = tr_ptrArraySize(&tau->trackers); tracker == NULL && i < n; ++i)
|
2017-04-19 12:04:45 +00:00
|
|
|
{
|
2021-09-12 17:41:49 +00:00
|
|
|
auto* tmp = static_cast<struct tau_tracker*>(tr_ptrArrayNth(&tau->trackers, i));
|
2017-04-19 12:04:45 +00:00
|
|
|
|
|
|
|
if (tr_strcmp0(tmp->key, key) == 0)
|
|
|
|
{
|
2011-03-13 00:18:11 +00:00
|
|
|
tracker = tmp;
|
2017-04-19 12:04:45 +00:00
|
|
|
}
|
2011-03-13 00:18:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* if we don't have a match, build a new tracker */
|
2012-12-05 17:29:46 +00:00
|
|
|
if (tracker == NULL)
|
2011-03-13 00:18:11 +00:00
|
|
|
{
|
2017-04-19 12:04:45 +00:00
|
|
|
tracker = tr_new0(struct tau_tracker, 1);
|
2011-03-13 00:18:11 +00:00
|
|
|
tracker->session = tau->session;
|
|
|
|
tracker->key = key;
|
|
|
|
tracker->host = host;
|
|
|
|
tracker->port = port;
|
2021-09-12 17:41:49 +00:00
|
|
|
tracker->scrapes = {};
|
|
|
|
tracker->announces = {};
|
2017-04-19 12:04:45 +00:00
|
|
|
tr_ptrArrayAppend(&tau->trackers, tracker);
|
|
|
|
dbgmsg(tracker->key, "New tau_tracker created");
|
2011-03-13 00:18:11 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2017-04-19 12:04:45 +00:00
|
|
|
tr_free(key);
|
|
|
|
tr_free(host);
|
2011-03-13 00:18:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return tracker;
|
|
|
|
}
|
|
|
|
|
|
|
|
/****
|
|
|
|
*****
|
|
|
|
***** PUBLIC API
|
|
|
|
*****
|
|
|
|
****/
|
|
|
|
|
2017-04-19 12:04:45 +00:00
|
|
|
void tr_tracker_udp_upkeep(tr_session* session)
|
2011-03-13 06:38:54 +00:00
|
|
|
{
|
2017-04-19 12:04:45 +00:00
|
|
|
struct tr_announcer_udp* tau = session->announcer_udp;
|
2011-03-13 06:38:54 +00:00
|
|
|
|
2012-12-05 17:29:46 +00:00
|
|
|
if (tau != NULL)
|
2017-04-19 12:04:45 +00:00
|
|
|
{
|
|
|
|
tr_ptrArrayForeach(&tau->trackers, (PtrArrayForeachFunc)tau_tracker_upkeep);
|
|
|
|
}
|
2011-03-13 06:38:54 +00:00
|
|
|
}
|
|
|
|
|
2017-04-20 16:02:19 +00:00
|
|
|
bool tr_tracker_udp_is_idle(tr_session const* session)
|
2011-03-17 18:51:31 +00:00
|
|
|
{
|
2017-04-19 12:04:45 +00:00
|
|
|
struct tr_announcer_udp* tau = session->announcer_udp;
|
2011-03-17 18:51:31 +00:00
|
|
|
|
2012-12-05 17:29:46 +00:00
|
|
|
if (tau != NULL)
|
2017-04-19 12:04:45 +00:00
|
|
|
{
|
2017-05-13 22:38:31 +00:00
|
|
|
for (int i = 0, n = tr_ptrArraySize(&tau->trackers); i < n; ++i)
|
2017-04-19 12:04:45 +00:00
|
|
|
{
|
2021-09-12 17:41:49 +00:00
|
|
|
auto const* tracker = static_cast<struct tau_tracker const*>(tr_ptrArrayNth(&tau->trackers, i));
|
|
|
|
if (!tau_tracker_is_idle(tracker))
|
2017-04-19 12:04:45 +00:00
|
|
|
{
|
2011-03-22 15:19:54 +00:00
|
|
|
return false;
|
2017-04-19 12:04:45 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2011-03-17 18:51:31 +00:00
|
|
|
|
2011-03-22 15:19:54 +00:00
|
|
|
return true;
|
2011-03-17 18:51:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* drop dead now. */
|
2017-04-19 12:04:45 +00:00
|
|
|
void tr_tracker_udp_close(tr_session* session)
|
2011-03-17 18:51:31 +00:00
|
|
|
{
|
2017-04-19 12:04:45 +00:00
|
|
|
struct tr_announcer_udp* tau = session->announcer_udp;
|
2011-03-17 18:51:31 +00:00
|
|
|
|
2012-12-05 17:29:46 +00:00
|
|
|
if (tau != NULL)
|
2011-03-17 18:51:31 +00:00
|
|
|
{
|
|
|
|
session->announcer_udp = NULL;
|
2017-04-19 12:04:45 +00:00
|
|
|
tr_ptrArrayDestruct(&tau->trackers, (PtrArrayForeachFunc)tau_tracker_free);
|
|
|
|
tr_free(tau);
|
2011-03-17 18:51:31 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* start shutting down.
|
|
|
|
This doesn't destroy everything if there are requests,
|
|
|
|
but sets a deadline on how much longer to wait for the remaining ones */
|
2017-04-19 12:04:45 +00:00
|
|
|
void tr_tracker_udp_start_shutdown(tr_session* session)
|
2011-03-17 18:51:31 +00:00
|
|
|
{
|
2017-04-20 16:02:19 +00:00
|
|
|
time_t const now = time(NULL);
|
2017-04-19 12:04:45 +00:00
|
|
|
struct tr_announcer_udp* tau = session->announcer_udp;
|
2011-03-17 18:51:31 +00:00
|
|
|
|
2012-12-05 17:29:46 +00:00
|
|
|
if (tau != NULL)
|
2011-03-17 18:51:31 +00:00
|
|
|
{
|
2017-05-13 22:38:31 +00:00
|
|
|
for (int i = 0, n = tr_ptrArraySize(&tau->trackers); i < n; ++i)
|
2011-03-17 18:51:31 +00:00
|
|
|
{
|
2021-09-12 17:41:49 +00:00
|
|
|
auto* tracker = static_cast<struct tau_tracker*>(tr_ptrArrayNth(&tau->trackers, i));
|
2017-04-19 12:04:45 +00:00
|
|
|
|
2015-12-31 14:17:37 +00:00
|
|
|
if (tracker->dns_request != NULL)
|
2017-04-19 12:04:45 +00:00
|
|
|
{
|
|
|
|
evdns_getaddrinfo_cancel(tracker->dns_request);
|
|
|
|
}
|
|
|
|
|
2011-03-17 18:51:31 +00:00
|
|
|
tracker->close_at = now + 3;
|
2017-04-19 12:04:45 +00:00
|
|
|
tau_tracker_upkeep(tracker);
|
2011-03-17 18:51:31 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-03-17 04:16:19 +00:00
|
|
|
/* @brief process an incoming udp message if it's a tracker response.
|
|
|
|
* @return true if msg was a tracker response; false otherwise */
|
2017-04-20 16:02:19 +00:00
|
|
|
bool tau_handle_message(tr_session* session, uint8_t const* msg, size_t msglen)
|
2011-03-13 00:18:11 +00:00
|
|
|
{
|
2017-04-19 12:04:45 +00:00
|
|
|
struct tr_announcer_udp* tau;
|
2011-03-13 00:18:11 +00:00
|
|
|
tau_transaction_t transaction_id;
|
2017-04-19 12:04:45 +00:00
|
|
|
struct evbuffer* buf;
|
2011-03-13 00:18:11 +00:00
|
|
|
|
2017-04-30 16:25:26 +00:00
|
|
|
if (session == NULL || session->announcer_udp == NULL)
|
2017-04-19 12:04:45 +00:00
|
|
|
{
|
2011-03-22 15:19:54 +00:00
|
|
|
return false;
|
2017-04-19 12:04:45 +00:00
|
|
|
}
|
|
|
|
|
2017-04-30 16:25:26 +00:00
|
|
|
if (msglen < sizeof(uint32_t) * 2)
|
2017-04-19 12:04:45 +00:00
|
|
|
{
|
2011-03-22 15:19:54 +00:00
|
|
|
return false;
|
2017-04-19 12:04:45 +00:00
|
|
|
}
|
2011-03-13 00:18:11 +00:00
|
|
|
|
2011-03-14 14:15:58 +00:00
|
|
|
/* extract the action_id and see if it makes sense */
|
2017-04-19 12:04:45 +00:00
|
|
|
buf = evbuffer_new();
|
|
|
|
evbuffer_add_reference(buf, msg, msglen, NULL, NULL);
|
2021-09-12 17:41:49 +00:00
|
|
|
auto const action_id = tau_action_t(evbuffer_read_ntoh_32(buf));
|
2017-04-19 12:04:45 +00:00
|
|
|
|
|
|
|
if (!is_tau_response_message(action_id, msglen))
|
|
|
|
{
|
|
|
|
evbuffer_free(buf);
|
2011-03-22 15:19:54 +00:00
|
|
|
return false;
|
2011-03-13 00:18:11 +00:00
|
|
|
}
|
|
|
|
|
2011-03-14 14:15:58 +00:00
|
|
|
/* extract the transaction_id and look for a match */
|
2011-03-13 00:18:11 +00:00
|
|
|
tau = session->announcer_udp;
|
2017-04-19 12:04:45 +00:00
|
|
|
transaction_id = evbuffer_read_ntoh_32(buf);
|
|
|
|
|
2017-05-13 22:38:31 +00:00
|
|
|
for (int i = 0, n = tr_ptrArraySize(&tau->trackers); i < n; ++i)
|
2011-03-13 00:18:11 +00:00
|
|
|
{
|
2017-04-19 12:04:45 +00:00
|
|
|
tr_ptrArray* reqs;
|
2021-09-12 17:41:49 +00:00
|
|
|
auto* tracker = static_cast<struct tau_tracker*>(tr_ptrArrayNth(&tau->trackers, i));
|
2011-03-13 00:18:11 +00:00
|
|
|
|
|
|
|
/* is it a connection response? */
|
2017-04-30 16:25:26 +00:00
|
|
|
if (tracker->connecting_at != 0 && transaction_id == tracker->connection_transaction_id)
|
2011-03-13 00:18:11 +00:00
|
|
|
{
|
2017-04-19 12:04:45 +00:00
|
|
|
dbgmsg(tracker->key, "%" PRIu32 " is my connection request!", transaction_id);
|
|
|
|
on_tracker_connection_response(tracker, action_id, buf);
|
|
|
|
evbuffer_free(buf);
|
2011-03-22 15:19:54 +00:00
|
|
|
return true;
|
2011-03-13 00:18:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* is it a response to one of this tracker's announces? */
|
|
|
|
reqs = &tracker->announces;
|
2017-04-19 12:04:45 +00:00
|
|
|
|
2017-05-13 22:38:31 +00:00
|
|
|
for (int j = 0, jn = tr_ptrArraySize(reqs); j < jn; ++j)
|
2017-04-19 12:04:45 +00:00
|
|
|
{
|
2021-09-12 17:41:49 +00:00
|
|
|
auto* req = static_cast<struct tau_announce_request*>(tr_ptrArrayNth(reqs, j));
|
2017-04-19 12:04:45 +00:00
|
|
|
|
2017-04-30 16:25:26 +00:00
|
|
|
if (req->sent_at != 0 && transaction_id == req->transaction_id)
|
2017-04-19 12:04:45 +00:00
|
|
|
{
|
|
|
|
dbgmsg(tracker->key, "%" PRIu32 " is an announce request!", transaction_id);
|
|
|
|
tr_ptrArrayRemove(reqs, j);
|
|
|
|
on_announce_response(req, action_id, buf);
|
|
|
|
tau_announce_request_free(req);
|
|
|
|
evbuffer_free(buf);
|
2011-03-22 15:19:54 +00:00
|
|
|
return true;
|
2011-03-13 00:18:11 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* is it a response to one of this tracker's scrapes? */
|
|
|
|
reqs = &tracker->scrapes;
|
2017-04-19 12:04:45 +00:00
|
|
|
|
2017-05-13 22:38:31 +00:00
|
|
|
for (int j = 0, jn = tr_ptrArraySize(reqs); j < jn; ++j)
|
2017-04-19 12:04:45 +00:00
|
|
|
{
|
2021-09-12 17:41:49 +00:00
|
|
|
auto* req = static_cast<struct tau_scrape_request*>(tr_ptrArrayNth(reqs, j));
|
2017-04-19 12:04:45 +00:00
|
|
|
|
2017-04-30 16:25:26 +00:00
|
|
|
if (req->sent_at != 0 && transaction_id == req->transaction_id)
|
2017-04-19 12:04:45 +00:00
|
|
|
{
|
|
|
|
dbgmsg(tracker->key, "%" PRIu32 " is a scrape request!", transaction_id);
|
|
|
|
tr_ptrArrayRemove(reqs, j);
|
|
|
|
on_scrape_response(req, action_id, buf);
|
|
|
|
tau_scrape_request_free(req);
|
|
|
|
evbuffer_free(buf);
|
2011-03-22 15:19:54 +00:00
|
|
|
return true;
|
2011-03-13 00:18:11 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* no match... */
|
2017-04-19 12:04:45 +00:00
|
|
|
evbuffer_free(buf);
|
2011-03-22 15:19:54 +00:00
|
|
|
return false;
|
2011-03-13 00:18:11 +00:00
|
|
|
}
|
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
void tr_tracker_udp_announce(
|
|
|
|
tr_session* session,
|
|
|
|
tr_announce_request const* request,
|
|
|
|
tr_announce_response_func response_func,
|
2017-04-19 12:04:45 +00:00
|
|
|
void* user_data)
|
|
|
|
{
|
|
|
|
struct tr_announcer_udp* tau = announcer_udp_get(session);
|
|
|
|
struct tau_tracker* tracker = tau_session_get_tracker(tau, request->url);
|
|
|
|
struct tau_announce_request* r = tau_announce_request_new(request, response_func, user_data);
|
|
|
|
tr_ptrArrayAppend(&tracker->announces, r);
|
2017-07-04 18:22:26 +00:00
|
|
|
tau_tracker_upkeep_ex(tracker, false);
|
2017-04-19 12:04:45 +00:00
|
|
|
}
|
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
void tr_tracker_udp_scrape(
|
|
|
|
tr_session* session,
|
|
|
|
tr_scrape_request const* request,
|
|
|
|
tr_scrape_response_func response_func,
|
2017-04-19 12:04:45 +00:00
|
|
|
void* user_data)
|
|
|
|
{
|
|
|
|
struct tr_announcer_udp* tau = announcer_udp_get(session);
|
|
|
|
struct tau_tracker* tracker = tau_session_get_tracker(tau, request->url);
|
|
|
|
struct tau_scrape_request* r = tau_scrape_request_new(request, response_func, user_data);
|
|
|
|
tr_ptrArrayAppend(&tracker->scrapes, r);
|
2017-07-04 18:22:26 +00:00
|
|
|
tau_tracker_upkeep_ex(tracker, false);
|
2011-03-13 00:18:11 +00:00
|
|
|
}
|