diff options
author | David Goulet <dgoulet@torproject.org> | 2022-02-14 13:40:45 -0500 |
---|---|---|
committer | David Goulet <dgoulet@torproject.org> | 2022-02-16 13:59:30 -0500 |
commit | 7eb543787873230e4fd51da42b74a9a771840cd9 (patch) | |
tree | 5c6e239d20f29798b081c703e37a9dd169b995e4 /src/feature/dirauth | |
parent | 52d1c1fd311c9d552b32108a7e92ea2be76e090c (diff) | |
download | tor-7eb543787873230e4fd51da42b74a9a771840cd9.tar.gz tor-7eb543787873230e4fd51da42b74a9a771840cd9.zip |
dirauth: Reject EOL 0.3.5.x relays
Closes #40559
Signed-off-by: David Goulet <dgoulet@torproject.org>
Diffstat (limited to 'src/feature/dirauth')
-rw-r--r-- | src/feature/dirauth/process_descs.c | 17 |
1 files changed, 2 insertions, 15 deletions
diff --git a/src/feature/dirauth/process_descs.c b/src/feature/dirauth/process_descs.c index a75f516dca..7d61247e23 100644 --- a/src/feature/dirauth/process_descs.c +++ b/src/feature/dirauth/process_descs.c @@ -404,21 +404,8 @@ dirserv_rejects_tor_version(const char *platform, static const char please_upgrade_string[] = "Tor version is insecure or unsupported. Please upgrade!"; - /* Versions before Tor 0.3.5 are unsupported. - * - * Also, reject unstable versions of 0.3.5, since (as of this writing) - * they are almost none of the network. */ - if (!tor_version_as_new_as(platform,"0.3.5.7")) { - if (msg) - *msg = please_upgrade_string; - return true; - } - - /* Series between Tor 0.3.6.x and 0.4.5.5-rc inclusive are unsupported. - * Reject them. 0.3.6.0-alpha-dev only existed for a short time, before it - * was renamed to 0.4.0.0-alpha-dev. */ - if (tor_version_as_new_as(platform,"0.3.6.0-alpha-dev") && - !tor_version_as_new_as(platform,"0.4.5.6")) { + /* Anything before 0.4.5.6 is unsupported. Reject them. */ + if (!tor_version_as_new_as(platform,"0.4.5.6")) { if (msg) { *msg = please_upgrade_string; } |