- Sep 03, 2012
-
-
Roger Dingledine authored
Reserve it for when new directory information arrives in response to a fetch. Resolves ticket 6760.
-
- Aug 27, 2012
-
-
Nick Mathewson authored
Fix for #6251
-
Nick Mathewson authored
We've had over two months to fix them, and didn't. Now we need 0.2.3.x stable. Yes, it would be cool to get this working in 0.2.3.x, but not at the expense of delaying every other feature that _does_ work in 0.2.3.x. We can do a real fix in 0.2.4.
-
Nick Mathewson authored
This can create a remote crash opportunity for/against directory authorities.
-
Nick Mathewson authored
This is important, since otherwise an attacker can use timing info to probe the internal network. Also, add an option (ExtendAllowPrivateAddresses) so that TestingTorNetwork won't break. Fix for bug 6710; bugfix on all released versions of Tor.
-
Nick Mathewson authored
-
-
- Aug 24, 2012
-
-
Nick Mathewson authored
This comes at the cost of making its failure message a little less friendly, but since when do assertion failures count as user-friendly?
-
Nick Mathewson authored
-
Mike Perry authored
We were effectively resetting our counts, and the rounding error leads to incorrect log messages.
-
Mike Perry authored
Also make a couple of them less scary. We'll do a separate, additional commit on 0.2.4.x to bump them back up again.
-
Mike Perry authored
This should eliminate a lot of notices for Directory Authorities and other situations where circuits built without using guard nodes.
-
- Aug 23, 2012
-
-
Linus Nordberg authored
Move extend_info_from_router() from circuitbuild.c to router.c and make it static. Add get_configured_bridge_by_orports_digest() and have get_configured_bridge_by_routerinfo() and node_is_a_configured_bridge() use it. We now consider all OR ports of a bridge when looking for it. Move node_get_*_orport to nodelist.c. Fix a cut'n'paste error in header of nodelist.h. Add node_assert_ok(). Add router_get_all_orports(). It's duplicating code from node_get_all_orports(). Worth fixing at the cost of complicating the API slightly?
-
Nick Mathewson authored
-
- Aug 21, 2012
-
-
Linus Nordberg authored
The my_apparent_addr is still unused, apart from now being logged in the "Got good NETINFO cell" info message.
-
Nick Mathewson authored
There was some code in the "err:" block that would always log a warning, reporting an "unknown error" if we hadn't set err_msg. But there were also plenty of "goto err" blocks that did their own logging, and never set err_msg at all. Now we should only log when we have an error message to log. This fixes bug 6638, from no released Tor version.
-
- Aug 20, 2012
-
-
Linus Nordberg authored
Closes #6364.
-
- Aug 19, 2012
-
-
Linus Nordberg authored
Closes #6362.
-
- Aug 17, 2012
-
-
Nick Mathewson authored
-
Nick Mathewson authored
Failure to do this would lead to double-free cases and similar, especially when the exit's DNS was broken. See bug 6472 for full details; this is a fix for 6472. Anonymous patch from "cypherpunks" on trac.
-
Nick Mathewson authored
Long ago, before we had cell queues, it was necessary to maybe call connection_handle_write() from connectino_write_to_buf_impl() on OR connections, so that we wouldn't get into a loop of reading infinite amounts of data and queueing it all on an outbuf before bothering to write any data. If that doesn't sounds like what our code does now, you're right: right now, we won't stick more than OR_CONN_HIGHWATER bytes of cells on an outbuf, and we won't suck more than CELL_QUEUE_HIGHWATER_SIZE cells off any edge connection. So, there's no more call for that code. Removing this code will simplify our data flow, and that should be something we can all get behind.
-
Closes #6423.
-
Nick Mathewson authored
Apparently, (void)writev is not enough to suppress the "you are ignoring the return value!" warnings on Linux. Instead, remove the whole warning/error logic when compiling openbsd_malloc for Tor: we can't use it.
-
Nick Mathewson authored
-
Linus Nordberg authored
Resolves #6621.
-
- Aug 16, 2012
-
-
Mike Perry authored
Also promote log messages to notice and rate-limit them.
-
Mike Perry authored
This is done to avoid spurious warns. Additional log lines are also added to try to track down the codepaths where we are somehow overcounting success counts.
-
- Aug 15, 2012
-
-
Nick Mathewson authored
The warning fixes are: - Only define issetugid if it's missing. - Explicitly ignore the return value of writev. - Explicitly cast the retval of readlink() to int. The 64-bit problems are related to just storing a size_t in an int. Not cool! Use a size_t instead. Fix for bug 6379. Bugfix on 0.2.0.20-rc, which introduced openbsd-malloc.
-
Nick Mathewson authored
Apparently, we weren't actually detecting wildcardedness when parsing them: whoops! bug 6244. Bugfix on 0.2.3.9-alpha
-
Nick Mathewson authored
This patch extracts the inner part of config_register_addressmaps -- the part that knows about detecting wildcard addresses addresses -- and makes it into a new function. The new function is deliberately not moved or reindented, so that the diff is smaller. I need this to fix bug 6244.
-
Nick Mathewson authored
Extend cells aren't allowed to have a stream_id, but we were only blocking them when they had a stream_id that corresponded to a connection. As far as I can tell, this change is harmless: it will make some kinds of broken clients not work any more, but afaik nobody actually make a client that was broken in that way. Found while hunting for other places where we made the same mistake as in 6271. Bugfix on d7f50337 back from May 2003, which introduced telescoping circuit construction into 0.0.2pre8.
-
- Aug 14, 2012
-
-
Nick Mathewson authored
Found by George, who gets a cookie.
-
- Aug 13, 2012
-
-
Nick Mathewson authored
This function never actually did us any good, and it added a little complexity. See the changes file for more info.
-
- Aug 09, 2012
-
-
Nick Mathewson authored
-
Nick Mathewson authored
-
Nick Mathewson authored
Thanks to the changes we started making with SocksPort and friends in 0.2.3.3-alpha, any of our code that did "if (options->Sockport)" became wrong, since "SocksPort 0" would make that test true whereas using the default SocksPort value would make it false. (We didn't actually do "if (options->SockPort)" but we did have tests for TransPort. When we moved DirPort, ORPort, and ControlPort over to the same system in 0.2.3.9-alpha, the problem got worse, since our code is littered with checks for DirPort and ORPort as booleans. This code renames the current linelist-based FooPort options to FooPort_lines, and adds new FooPort_set options which get set at parse-and-validate time on the or_options_t. FooPort_set is true iff we will actually try to open a listener of the given type. (I renamed the FooPort options rather than leave them alone so that every previous user of a FooPort would need to get inspected, and so that any new code that forgetfully uses FooPort will need fail to compile.) Fix for bug 6507.
-
-
-
-
-