aboutsummaryrefslogtreecommitdiff
path: root/src/or/connection_or.c
Commit message (Expand)AuthorAge
* simplify: options.OnionRouter==1 iff options.ORPort>0•••svn:r857 Roger Dingledine2003-11-20
* removed unused variable; silence warning•••svn:r844 Nick Mathewson2003-11-19
* revert part of that last change•••time for bed svn:r840 Roger Dingledine2003-11-18
* make more sure we can't end up with two connections to the same OR•••fix leaked pk in connection_tls_finish_handshake svn:r839 Roger Dingledine2003-11-18
* bugfix: don't ask for ->next of an expired circuit•••bugfix: keep going when a circ fails in circuit_n_conn_open (make circuit_enumerate_by_naddr_nport obsolete) bugfix: make circuit_n_conn_open only look at circ's that start at us bugfix: only try circuit_n_conn_open if we're an OP. Otherwise we expect connections to always already be up. bugfix: when choosing path length, pay attention to whether the directory says a router is down. bugfix: when picking good exit, skip routers which are known to be down (more work needs to be done on this one) svn:r838 Roger Dingledine2003-11-18
* Simplify post-TLS-handshake checks, and add check for correct nickname•••svn:r834 Nick Mathewson2003-11-18
* make dir parsing robust to invalid but well-formed descriptors•••svn:r800 Roger Dingledine2003-11-12
* Rename aci to circ_id throughout.•••svn:r784 Nick Mathewson2003-11-11
* move closer to being able to reload config on HUP•••rename APPort to SocksPort introduce new tor_free() macro svn:r642 Roger Dingledine2003-10-21
* Example code to get nickname from cert•••svn:r628 Nick Mathewson2003-10-19
* Build without warnings on OS X.•••svn:r595 Nick Mathewson2003-10-15
* change WARNING to WARN•••and fix a few typos svn:r571 Roger Dingledine2003-10-10
* Refactor, rename, and clarify•••svn:r569 Nick Mathewson2003-10-09
* 0.0.2pre11, new license•••svn:r564 Roger Dingledine2003-10-08
* Update LICENSE and copyright dates.•••svn:r560 Nick Mathewson2003-10-08
* more details to track a warning in tls handshakes•••plus make exit policy comparisons not always reject svn:r559 Roger Dingledine2003-10-07
* wrap strdup; prefer time() to gettimeofday()•••svn:r538 Roger Dingledine2003-10-04
* refactor so connection_write_to_buf() never fails•••svn:r537 Roger Dingledine2003-10-04
* my_routerinfo, router_is_me, and learn_my_address are obsolete•••ACIs are decided now by strcmp'ing nicknames, rather than comparing addr:port svn:r529 Roger Dingledine2003-10-01
* fix the SSL_read() bug again. this time for sure!•••svn:r518 Roger Dingledine2003-09-30
* move the tls handshake stuff to connection_or•••svn:r510 Roger Dingledine2003-09-30
* Write necessary backends for online directory generation. I think.•••svn:r503 Nick Mathewson2003-09-27
* clean up receiver buckets; prepare for payloads in relay_end; note a few bugs•••svn:r502 Roger Dingledine2003-09-27
* connection_new() can't ever fail•••svn:r497 Roger Dingledine2003-09-27
* first pass: obey log convention•••ERR is if something fatal just happened WARNING is something bad happened, but we're still running. The bad thing is either a bug in the code, an attack or buggy protocol/implementation of the remote peer, etc. The operator should examine the bad thing and try to correct it. (No error or warning messages should be expected. I expect most people to run on -l warning eventually.) NOTICE is never ever used. INFO means something happened (maybe bad, maybe ok), but there's nothing you need to (or can) do about it. DEBUG is for everything louder than INFO. svn:r486 Roger Dingledine2003-09-26
* various bugfixes and updates•••redo all the config files for the new format (we'll redo them again soon) fix (another! yuck) segfault in log_fn when input is too large tor_tls_context_new() returns -1 for error, not NULL fix segfault in check_conn_marked() on conn's that die during tls handshake make ORs also initialize conn from router when we're the receiving node make non-dirserver ORs upload descriptor to every dirserver on startup add our local address to the descriptor add Content-Length field to POST command revert the Content-Length search in fetch_from_buf_http() to previous code fix segfault in memmove in fetch_from_buf_http() raise maximum allowed headers/body size in directory.c svn:r484 Roger Dingledine2003-09-25
* Refactor buffers; implement descriptors.•••'buf_t' is now an opaque type defined in buffers.c . Router descriptors now include all keys; routers generate keys as needed on startup (in a newly defined "data directory"), and generate their own descriptors. Descriptors are now self-signed. Implementation is not complete: descriptors are never published; and upon receiving a descriptor, the directory doesn't do anything with it. At least "routers.or" and orkeygen are now obsolete, BTW. svn:r483 Nick Mathewson2003-09-25
* cleanups, bugfixes, more verbose logs•••Fixed up the assert_*_ok funcs some (more work remains) Changed config so it reads either /etc/torrc or the -f arg, never both Finally tracked down a nasty bug with our use of tls: It turns out that if you ask SSL_read() for no more than n bytes, it will read the entire record from the network (and maybe part of the next record, I'm not sure), give you n bytes of it, and keep the remaining bytes internally. This is fine, except our poll-for-read looks at the network, and there are no bytes pending on the network, so we never know to ask SSL_read() for more bytes. Currently I've hacked it so if we ask for n bytes and it returns n bytes, then it reads again right then. This will interact poorly with our rate limiting; we need a cleaner solution. svn:r481 Roger Dingledine2003-09-24
* phase out non-tls handshake, now that tls is stable.•••svn:r470 Roger Dingledine2003-09-16
* clean up exported api's•••svn:r461 Roger Dingledine2003-09-16
* refactor connects into connection_connect()•••svn:r460 Roger Dingledine2003-09-16
* reshuffle functions for cleaner organization•••svn:r451 Roger Dingledine2003-09-12
* tls works between routers now too•••things are still a bit shaky svn:r450 Roger Dingledine2003-09-12
* tls works with onion proxies now.•••svn:r449 Roger Dingledine2003-09-12
* collect info from peer we just handshaked with•••svn:r439 Roger Dingledine2003-09-11
* Make crypto structures private to crypto.c•••svn:r437 Nick Mathewson2003-09-10
* tls infrastructure now in place, give or take•••svn:r434 Roger Dingledine2003-09-08
* more futzing towards tls•••not there yet svn:r429 Roger Dingledine2003-09-07
* general cleanup and reabstraction, to prepare for tls•••svn:r426 Roger Dingledine2003-09-05
* remove bandwidth negotation from the code•••we still use bandwidth on a per-connection basis for rate limiting. but it's unclear if we need this infrastructure in addition to the total-bandwidth rate limiting that we also do. i'll leave both infrastructures in, and we'll remove the per-connection one if it starts rotting too much. svn:r413 Roger Dingledine2003-08-25
* fix a mild memory leak (10 bytes each time an OR connected to an OR)•••svn:r410 Roger Dingledine2003-08-25
* Attempt to make sockets code work right on windows.•••svn:r398 Nick Mathewson2003-08-14
* Start of port to win32. Missing are:••• - signal support - forking for DNS farm - changes for async IO - daemonizing In other words, some files still don't build, and the ones that do build, do nonblocking IO incorrectly. I'm also not checking in the project files till I have a good place for them. svn:r380 Nick Mathewson2003-08-12
* src/or•••svn:r371 Nick Mathewson2003-07-30
* fix many bugs in package_window handling•••svn:r363 Roger Dingledine2003-07-03
* simplify fetch_from_buf; cull idle dnsworkers.•••svn:r354 Roger Dingledine2003-06-25
* My copy of cpp is not DWIM-compliant; I guess, as a workaround, I should defi...•••svn:r343 Nick Mathewson2003-06-21
* Reorder connection_or and make unexported functions static. Partially conver...•••svn:r342 Nick Mathewson2003-06-21
* Change many files to new log_fn format•••svn:r333 Nick Mathewson2003-06-17
* Do not use pseudorandom nonces•••svn:r321 Nick Mathewson2003-06-14