aboutsummaryrefslogtreecommitdiff
path: root/src/or/buffers.c
Commit message (Expand)AuthorAge
...
| * | | Pull up more data when parsing socks messages•••Previously, we only looked at up to 128 bytes. This is a bad idea since socks messages can be at least 256+x bytes long. Now we look at up to 512 bytes; this should be enough for 0.2.2.x to handle all valid SOCKS messages. For 0.2.3.x, we can think about handling trickier cases. Fixes 2330. Bugfix on 0.2.0.16-alpha. Nick Mathewson2011-01-10
* | | | Merge remote branch 'rransom/bug2327-v2'Nick Mathewson2011-01-03
|\ \ \ \
| * | | | Don't throw away incomplete SOCKS proxy responses.•••Introduced in 9796b9bfa6a757780d6185547e4baf739c53cdac. Robert Ransom2010-12-29
| * | | | Use evbuffer_pullup properly in fetch_from_evbuffer_socks_client.•••evbuffer_pullup does nothing and returns NULL if the caller asks it to linearize more data than the buffer contains. Introduced in 9796b9bfa6a757780d6185547e4baf739c53cdac. Reported by piebeer; fixed with help from doors. Robert Ransom2010-12-29
* | | | | Merge remote branch 'origin/maint-0.2.2'Nick Mathewson2011-01-03
|\ \ \ \ \ | |/ / / / |/| / / / | |/ / /
| * | | Merge remote branch 'origin/maint-0.2.1' into maint-0.2.2•••Conflicts: src/common/test.h src/or/test.c Nick Mathewson2011-01-03
| |\ \ \ | | | |/ | | |/|
| | * | Bump copyright statements to 2011Nick Mathewson2011-01-03
* | | | Merge branch 'maint-0.2.2'Roger Dingledine2010-12-19
|\| | | | |_|/ |/| |
| * | Merge remote branch fix_security_bug_021 into fix_security_bug_022•••Conflicts: src/common/memarea.c src/or/or.h src/or/rendclient.c Nick Mathewson2010-12-15
| |\|
| | * Make payloads into uint8_t.•••This will avoid some signed/unsigned assignment-related bugs. Nick Mathewson2010-12-15
| | * Disable logging to control port connections in buf_shrink_freelists.•••If buf_shrink_freelists calls log_warn for some reason, we don't want the log call itself to throw buf_shrink_freelists further off the rails. Robert Ransom2010-11-12
| | * Move the original log_info call out of the core of buf_shrink_freelists.•••Sending a log message to a control port can cause Tor to allocate a buffer, thereby changing the length of the freelist behind buf_shrink_freelists's back, thereby causing an assertion to fail. Fixes bug #1125. Robert Ransom2010-11-12
* | | Merge remote branch 'origin/maint-0.2.2'Nick Mathewson2010-11-15
|\| |
| * | Move controller event for socks warning into log_unsafe_socks_warningNick Mathewson2010-11-15
* | | Merge remote branch 'origin/maint-0.2.2'•••Conflicts: src/or/buffers.c Nick Mathewson2010-11-15
|\| |
| * | Rate-limit unsafe socks warning•••Pick 5 seconds as the limit. 5 seconds is a compromise here between making sure the user notices that the bad behaviour is (still) happening and not spamming their log too much needlessly (the log message is pretty long). We also keep warning every time if safesocks is specified, because then the user presumably wants to hear about every blocked instance. (This is based on the original patch by Sebastian, then backported to 0.2.2 and with warnings split into their own function.) Sebastian Hahn2010-11-15
* | | Merge remote branch 'origin/maint-0.2.2'Nick Mathewson2010-11-12
|\| |
| * | Avoid perma-blocking the controller on bug in shrink_freelist•••In all likelihood, this bug would make Tor assert, but if it doesn't, let's not have two bugs. Nick Mathewson2010-11-12
| * | Disable logging to control port connections in buf_shrink_freelists.•••If buf_shrink_freelists calls log_warn for some reason, we don't want the log call itself to throw buf_shrink_freelists further off the rails. Robert Ransom2010-11-12
| * | Move the original log_info call out of the core of buf_shrink_freelists.•••Sending a log message to a control port can cause Tor to allocate a buffer, thereby changing the length of the freelist behind buf_shrink_freelists's back, thereby causing an assertion to fail. Fixes bug #1125. Robert Ransom2010-11-12
* | | Remove XXXs about improving buf_t API: bufferevents are the futureNick Mathewson2010-10-15
* | | Fix whitespace in bufferevents branchNick Mathewson2010-09-27
* | | Document and/or fix stuff found by Sebastian in code review•••Thanks to Sebastian for his code-review of the bufferevents patch series.x Nick Mathewson2010-09-27
* | | Some bufferevents related fixes and pointers for nickmSebastian Hahn2010-09-27
* | | Get zlib compression working with bufferevents.Nick Mathewson2010-09-27
* | | Implement SOCKS-client support for buffereventsNick Mathewson2010-09-27
* | | Get SSL connections and linked connections working with bufferevents.•••Clients are now verified to work and build circuits correctly. There are still a few warnings given here and there that I need to look into. Nick Mathewson2010-09-27
* | | Add a 0-pullup version of fetch_from_evbuffer_socksNick Mathewson2010-09-27
* | | Documentation for inspect_evbufferNick Mathewson2010-09-27
* | | Add pullup-free version of fetch_from_evbuffer_httpNick Mathewson2010-09-27
* | | Fix more remaining users of inbuf/outbuf to handle bufferevents instead.Nick Mathewson2010-09-27
* | | Add a fetch_from_evbuffer_httpNick Mathewson2010-09-27
* | | Refactor SOCKS parsing code to handle evbuffers.•••Now all of the logic is in a parse_socks() function that gets data from a buf_t or evbuffer-specific wrapper. Nick Mathewson2010-09-27
* | | Clone fetch_var_cell_from_buf() for evbuffers.Nick Mathewson2010-09-27
* | | Add a new connection_fetch_from_buf_line() that can handle buffereventsNick Mathewson2010-09-27
* | | Teach read_event/write_event manipulators about bufferevents.•••Add an --enable-bufferevents config switch. Nick Mathewson2010-09-27
* | | Remove never-actually-finished code to use readv and writev for IO.•••We'll get this feature for free with bufferevents, so there's no good reason to clone it in Tor. Nick Mathewson2010-09-27
|/ /
* | A start at a patch for bug 1943 (alignment issues)Roger Dingledine2010-09-20
* | Make buf_shrink_freelists warn, not crash, when n_to_skip is too high•••This mitigates bug 1125, but doesn't fix its root cause (whatever that is). Nick Mathewson2010-08-10
* | Create reasons.hSebastian Hahn2010-07-27
* | Create control.hSebastian Hahn2010-07-27
* | Create connection_or.hSebastian Hahn2010-07-27
* | Create connection_edge.hSebastian Hahn2010-07-27
* | Create config.hSebastian Hahn2010-07-27
* | Create buffers.hSebastian Hahn2010-07-27
* | Rename log.h to torlog.h•••This should make us conflict less with system files named "log.h". Yes, we shouldn't have been conflicting with those anyway, but some people's compilers act very oddly. The actual change was done with one "git mv", by editing Makefile.am, and running find . -name '*.[ch]' | xargs perl -i -pe 'if (/^#include.*\Wlog.h/) {s/log.h/torlog.h/; }' Nick Mathewson2010-07-09
* | Add option to not warn when getting an IP instead of hostnameSebastian Hahn2010-06-07
* | Merge remote branch 'origin/maint-0.2.1'•••Conflicts: src/common/test.h src/or/test.c Nick Mathewson2010-02-27
|\|
| * Update Tor Project copyright yearsNick Mathewson2010-02-27
* | Merge branch 'safelogging2'•••Conflicts: ChangeLog Nick Mathewson2009-12-15
|\ \