| Commit message (Expand) | Author | Age |
* | Fix a nigh-impossible overflow in cpuworker.c•••When we compute the estimated microseconds we need to handle our
pending onionskins, we could (in principle) overflow a uint32_t if
we ever had 4 million pending onionskins before we had any data
about how onionskins take. Nevertheless, let's compute it properly.
Fixes bug 8210; bugfix on 0.2.4.10. Found by coverity; this is CID
980651.
| Nick Mathewson | 2013-02-11 |
* | Merge remote-tracking branch 'public/bug8208' | Nick Mathewson | 2013-02-11 |
|\ |
|
| * | Check whether ei is non-NULL before altering it.•••This fixes a crash bug if we fail to generate an extrainfo
descriptor.
Fixes bug 8208; bugfix on 0.2.3.16-alpha.
| Nick Mathewson | 2013-02-11 |
* | | Fix a copy-and-paste issue found by coverity•••Fixes CID 980650; bugfix on 0.2.4.10-alpha.
| Nick Mathewson | 2013-02-11 |
* | | Merge remote-tracking branch 'public/bug8158' | Nick Mathewson | 2013-02-11 |
|\ \ |
|
| * | | Coalesce identical adjacent microdescriptor vote lines. | Nick Mathewson | 2013-02-08 |
* | | | Refactor resolve_my_address() so logs are more accurate / helpful•••It returns the method by which we decided our public IP address
(explicitly configured, resolved from explicit hostname, guessed from
interfaces, learned by gethostname).
Now we can provide more helpful log messages when a relay guesses its IP
address incorrectly (e.g. due to unexpected lines in /etc/hosts). Resolves
ticket 2267.
While we're at it, stop sending a stray "(null)" in some cases for the
server status "EXTERNAL_ADDRESS" controller event. Resolves bug 8200.
| Roger Dingledine | 2013-02-11 |
* | | | Merge remote-tracking branch 'public/bug7801_v2' | Nick Mathewson | 2013-02-11 |
|\ \ \ |
|
| * | | | changes file for bug7801 | Nick Mathewson | 2013-02-08 |
| |/ / |
|
* | | | Merge remote-tracking branch 'public/signof_enum' | Nick Mathewson | 2013-02-08 |
|\ \ \
| |/ /
|/| | |
|
| * | | Have autoconf check whether enums are signed.•••Fixes bug 7727; fix on 0.2.4.10-alpha.
| Nick Mathewson | 2013-02-07 |
| * | | Use a nicely written autoconf macro to determine the sign of a type•••This beats our old implementation, which wouldn't work when cross-compiling
| Nick Mathewson | 2013-02-07 |
* | | | Merge remote-tracking branch 'origin/maint-0.2.3' | Nick Mathewson | 2013-02-08 |
|\ \ \
| | |/
| |/| |
|
| * | | Merge remote-tracking branch 'origin/maint-0.2.2' into maint-0.2.3 | Nick Mathewson | 2013-02-08 |
| |\ \ |
|
| | * | | Update to the February 2013 GeoIP database. | Karsten Loesing | 2013-02-08 |
* | | | | Merge remote-tracking branch 'public/easy_ratelim'•••Conflicts:
src/or/connection.c
| Nick Mathewson | 2013-02-07 |
|\ \ \ \
| |_|_|/
|/| | | |
|
| * | | | Wrapper function for the common rate-limited-log pattern. | Nick Mathewson | 2012-12-26 |
* | | | | Merge remote-tracking branch 'arma/bug7054' | Nick Mathewson | 2013-02-07 |
|\ \ \ \ |
|
| * | | | | Say "KBytes" rather than "KB" in the man page•••(for various values of K), to further reduce confusion about whether
Tor counts in units of memory or fractions of units of memory. Fixes
bug 7054.
| Roger Dingledine | 2012-10-06 |
* | | | | | Merge remote-tracking branch 'public/bug7816_023'•••Conflicts:
src/common/util.c
| Nick Mathewson | 2013-02-07 |
|\ \ \ \ \ |
|
| * | | | | | Fix various small leaks on error cases•••Spotted by coverity, bug 7816, bugfix on various versions.
| Nick Mathewson | 2012-12-28 |
| * | | | | | Avoid leaking headers received from SSL proxy•••Fixes part of 7816. Spotted by coverity. Fix on 0.2.2.1-alpha.
| Nick Mathewson | 2012-12-28 |
| * | | | | | Fix memory leak in safe-cookie authentication code•••Coverity spotted this. Bug 7816. Fix on 0.2.3.13-alpha.
| Nick Mathewson | 2012-12-28 |
* | | | | | | Merge remote-tracking branch 'public/bug7816_024' | Nick Mathewson | 2013-02-07 |
|\ \ \ \ \ \ |
|
| * | | | | | | Fix an impossible-in-normal-operation leaks in dirvote•••Spotted by coverity; partial fix for 7816; bugfix on 0.2.0.5-alpha.
| Nick Mathewson | 2012-12-28 |
| * | | | | | | Fix a leak-on-error case in 0.2.4 spotted by coverity•••This one hits if the snprintf() fails when we're writing our IPv6
exit policy. It's new in 0.2.4.7-alpha. Part of bug 7816.
| Nick Mathewson | 2012-12-28 |
| | |_|/ / /
| |/| | | | |
|
* | | | | | | Merge branch 'bug7902' | Nick Mathewson | 2013-02-07 |
|\ \ \ \ \ \ |
|
| * | | | | | | When we get an END cell before CONNECTED, don't report SOCKS success•••Bug 7902; fix on 0.1.0.1-rc.
| Nick Mathewson | 2013-01-16 |
* | | | | | | | Merge branch 'ticket8161_squashed' | Nick Mathewson | 2013-02-07 |
|\ \ \ \ \ \ \ |
|
| * | | | | | | | Changes file for path use bias threshold changes. | Mike Perry | 2013-02-07 |
* | | | | | | | | Merge branch 'bug8121_squashed' | Nick Mathewson | 2013-02-07 |
|\ \ \ \ \ \ \ \ |
|
| * | | | | | | | | Tolerate curve25519 backends where the high bit of the pk isn't ignored•••Right now, all our curve25519 backends ignore the high bit of the
public key. But possibly, others could treat the high bit of the
public key as encoding out-of-bounds values, or as something to be
preserved. This could be used to distinguish clients with different
backends, at the cost of killing a circuit.
As a workaround, let's just clear the high bit of each public key
indiscriminately before we use it. Fix for bug 8121, reported by
rransom. Bugfix on 0.2.4.8-alpha.
| Nick Mathewson | 2013-02-07 |
* | | | | | | | | | Merge remote-tracking branch 'public/bug8151' | Nick Mathewson | 2013-02-05 |
|\ \ \ \ \ \ \ \ \
| |_|/ / / / / / /
|/| | | | | | | | |
|
| * | | | | | | | | Include a flag-thresholds line in each vote to describe flag cutoffs•••Implements ticket 8151.
| Nick Mathewson | 2013-02-04 |
* | | | | | | | | | fold in changes for 0.2.4.10-alpha | Roger Dingledine | 2013-02-04 |
|/ / / / / / / / |
|
* | | | | | | | | Merge branch 'bug8146_etc' | Nick Mathewson | 2013-02-04 |
|\ \ \ \ \ \ \ \
| |/ / / / / / /
|/| | | | | | | |
|
| * | | | | | | | When we mark a node as a sybil, mark it down and reset its uptime to 0•••This prevents bug 8147, where such nodes would accrue points towards
Guard, Fast, HSDir, and so on.
Fixes bug 8147.
| Nick Mathewson | 2013-02-04 |
| * | | | | | | | Ignore tiny bandwidths entirely when computing thresholds•••Another bug 8145 fix.
| Nick Mathewson | 2013-02-04 |
| * | | | | | | | Increase the minimum value for the Fast flag to 4096.•••Fix for 8145.
| Nick Mathewson | 2013-02-04 |
| * | | | | | | | When computing performance thresholds, ignore omitted-as-sybil nodes.•••Fixes bug 8146.
| Nick Mathewson | 2013-02-04 |
* | | | | | | | | Fix compilation with --disable-curve25519 option•••The fix is to move the two functions to format/parse base64
curve25519 public keys into a new "crypto_format.c" file. I could
have put them in crypto.c, but that's a big file worth splitting
anyway.
Fixes bug 8153; bugfix on 0.2.4.8-alpha where I did the fix for 7869.
| Nick Mathewson | 2013-02-04 |
|/ / / / / / / |
|
* | | | | | | | Merge remote-tracking branch 'public/feature7706' | Nick Mathewson | 2013-02-01 |
|\ \ \ \ \ \ \ |
|
| * | | | | | | | When excluding nodes by country, exclude {??} and {A1} too•••This is ticket 7706, reported by "bugcatcher." The rationale here
is that if somebody says 'ExcludeNodes {tv}', then they probably
don't just want to block definitely Tuvaluan nodes: they also want
to block nodes that have unknown country, since for all they know
such nodes are also in Tuvalu.
This behavior is controlled by a new GeoIPExcludeUnknown autobool
option. With the default (auto) setting, we exclude ?? and A1 if
any country is excluded. If the option is 1, we add ?? and A1
unconditionally; if the option is 0, we never add them.
(Right now our geoip file doesn't actually seem to include A1: I'm
including it here in case it comes back.)
This feature only takes effect if you have a GeoIP file. Otherwise
you'd be excluding every node.
| Nick Mathewson | 2013-01-17 |
* | | | | | | | | Merge remote-tracking branch 'public/bug7708_023_v3_squashed' | Nick Mathewson | 2013-02-01 |
|\ \ \ \ \ \ \ \ |
|
| * | | | | | | | | Fix serious breakage in connection_handle_write_impl•••When we first implemented TLS, we assumed in conneciton_handle_write
that a TOR_TLS_WANT_WRITE from flush_buf_tls meant that nothing had
been written. But when we moved our buffers to a ring buffer
implementation back in 0.1.0.5-rc (!), we broke that invariant: it's
possible that some bytes have been written but nothing.
That's bad. It means that if we do a sequence of TLS writes that ends
with a WANTWRITE, we don't notice that we flushed any bytes, and we
don't (I think) decrement buckets.
Fixes bug 7708; bugfix on 0.1.0.5-rc
| Nick Mathewson | 2013-02-01 |
| | |_|_|_|_|/ /
| |/| | | | | | |
|
* | | | | | | | | Merge branch 'rename_log_7599' | Nick Mathewson | 2013-02-01 |
|\ \ \ \ \ \ \ \ |
|
| * | | | | | | | | Remove old wrapper code and defines for keeping log() and log(3) apart•••This is the non-automated portion of bug 7599.
| Nick Mathewson | 2013-02-01 |
* | | | | | | | | | Help us track bug 8093:•••Improve the log message when "Bug/attack: unexpected sendme cell
from client" occurs.
| Roger Dingledine | 2013-02-01 |
|/ / / / / / / / |
|
* | | | | | | | | Merge branch 'double-0-check' | Nick Mathewson | 2013-01-31 |
|\ \ \ \ \ \ \ \ |
|
| * | | | | | | | | Detect platforms where memset(0) doesn't set doubles to 0.0.•••This is allowed by the C statndard, which permits you to represent
doubles any way you like, but in practice we have some code that
assumes that memset() clears doubles in structs. Noticed as part of
7802 review; see 8081 for more info.
| Nick Mathewson | 2013-01-29 |